* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #2D2D2D;
}

.main {
  height: 800px;
  background-color: #59aedf;
}

.footer {
  height: 300px;
  background-color: #313131;
}

.section {
  height: 800px;
  background-color: #83c5da;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  font-size: 42px;
}
.section:nth-child(odd) {
  background-color: #cdda83;
}

.header {
  padding: 25px 0px;
  background-color: white;
}

.header__row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.header__logo {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.625;
}

.nav {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  z-index: 1;
}
.nav a {
  margin-right: 60px;
  color: #2D2D2D;
  text-decoration: none;
}
.nav a:last-child {
  margin-right: 0;
}
.nav a:hover {
  color: #358bee;
}

@media (max-width: 899px) {
  .nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #2D2D2D;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
  }

  .nav a {
    margin-right: 0;
    margin-top: 35px;
    font-size: 28px;
    color: #fff;
  }

  .nav.nav--active {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition: all 0.2s ease-in;
  }
}
.nav-icon {
  width: 30px;
  height: 25px;
  display: none;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 899px) {
  .nav-icon {
    display: -webkit-box;
    display: flex;
  }
}

.nav-icon__middle {
  position: relative;
  width: 30px;
  height: 5px;
  background-color: black;
}
.nav-icon__middle::before, .nav-icon__middle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 5px;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  background-color: black;
}
.nav-icon__middle::before {
  top: -10px;
}
.nav-icon__middle::after {
  top: 10px;
}

/* Active state */
.nav-icon.nav-icon--active {
  position: fixed;
  top: 40px;
  right: 30px;
}

.nav-icon.nav-icon--active .nav-icon__middle {
  background-color: transparent;
}
.nav-icon.nav-icon--active .nav-icon__middle::before, .nav-icon.nav-icon--active .nav-icon__middle::after {
  top: 0;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
  background-color: #fff;
}
.nav-icon.nav-icon--active .nav-icon__middle::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-icon.nav-icon--active .nav-icon__middle::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*# sourceMappingURL=main.css.map */