body {
  margin: 0;
  padding: 0;

  font-family: 'Prompt', sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-family: serif;
}

h2 {
  font-family: serif;
}

h3 {
  font-family: serif;
}

h4 {
  font-family: serif;
}
h5 {
  font-family: serif;
}

h6 {
  font-family: serif;
}

div {
  font-family: serif;
}

.header {
  position: fixed;
  top: 0;

  height: 80px;
  width: 100%;

  background-color: rgb(170, 170, 170);
}

.header .container {
  height: 100%;
}

.header * {
  color: white;
}

.header__logo {
  color: rgb(240, 240, 240);
  font-size: 24px;
  font-family: 'Prompt', sans-serif;
}

.header__nav {
  display: flex;
}

.header__item {
  display: block;

  width: 60px;
  height: 4px;

  background-color: rgb(217, 217, 217);
}

.header__item + .header__item {
  margin-left: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;

  box-sizing: border-box;
}

.container * {
  box-sizing: border-box;
}

.section:first-of-type {
  margin-top: 78px;
  padding-top: 50px;
  padding-bottom: 50px;

  background-color: rgb(221, 221, 221);
}

.section .container {
  max-width: 1180px;
}

.section + .section {
  margin-top: 100px;
}

.section:last-of-type {
  margin-bottom: 100px;
}

.text {
  display: block;

  width: 95%;
  height: 20px;

  background-color: rgb(186, 186, 186);
}

.text.-center {
  margin-left: auto;
  margin-right: auto;
}

.text + .text {
  margin-top: 10px;
}

.text + .button {
  margin-top: 40px;
}

.text:last-of-type {
  width: 80%;
}

.col-12 {
  width: 100%;
}

.col-8 {
  width: 66%;
}

.col-7 {
  width: 55%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 40%;
}

.col-4 {
  width: 30%;
}

.button {
  border: none;
  padding: 14px 40px;
  border-radius: 100px;

  background-color: black;
  cursor: pointer;

  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
}

.item .image {
  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  margin-top: 80px;
  padding: 30px;
  width: 100%;
  margin-bottom: 40px;

  background-color: rgb(221, 221, 221);
}

.item svg {
  min-height: 100px;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .button {
    width: 100%;
  }

  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-12 {
    width: 100%;
    margin-bottom: 40px;
  }

  .col-4:empty {
    display: none;
  }

  .container {
    margin-bottom: -40px;
  }

  .section:first-of-type .container {
    flex-direction: column-reverse;
  }

  .item .image {
    margin-top: 40px;
  }
}
