* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Muli", sans-serif;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

html, body {
  height: 100%;
}

h1, h2, h3, h4 {
  font-family: "Merriweather", sans-serif;
}

.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
}
.nav__menu-icon {
  font-size: 20px;
  height: 20px;
  cursor: pointer;
  display: none;
}
.nav__links {
  display: flex;
}
.nav__link {
  color: #1B1839;
  font-weight: 700;
  padding: 10px 18px;
  display: block;
  transition: all 200ms ease-in-out;
  border-radius: 5px;
}
.nav__link:hover, .nav__link:focus {
  background: #F0F0F9;
}
.nav__btn {
  padding: 16px 24px;
  background: #35C2CF;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  margin-left: 18px;
}
.nav__btn:hover, .nav__btn:focus {
  background: #4ac8d4;
}

.wrapper {
  background-image: url(../assets/img/aerial-view-of-people-swimming-on-sea-4327786_i8jjks_c_scale\,w_1400.jpg);
  background-size: cover;
  background-position: center;
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero {
  max-width: 1400px;
  min-width: 1000px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__heading {
  color: #fff;
  max-width: 50%;
  font-size: 42px;
}
.hero__form {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
.hero__form-group {
  position: relative;
}
.hero__form-input-icon {
  color: #5F5D74;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  height: 20px;
}
.hero__form-input {
  outline: none;
  border: none;
  padding: 16px 16px 16px 42px;
  width: 300px;
  color: #1B1839;
  font-size: 16px;
}
.hero__form-btn {
  color: #fff;
  background: #F89259;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.hero__form-btn:hover, .hero__form-btn:focus {
  background: #f9a271;
}

.footer {
  padding: 20px;
  margin-top: auto;
}
.footer__offers {
  display: flex;
  border-radius: 10px;
  flex-wrap: wrap;
  margin: -5px;
  background: #fff;
  padding: 10px 10px;
}
.footer__card {
  background: #fff;
  padding: 10px 20px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 260px;
  border-radius: 10px;
}
.footer__card-title {
  color: #1B1839;
}
.footer__card-price {
  color: #5F5D74;
  font-weight: 700;
  margin: 8px 0;
  display: inline-block;
}
.footer__card-benefit {
  display: flex;
  align-items: center;
  color: #6E6C81;
  padding: 8px 16px;
  background: #F0F0F9;
  border-radius: 9999px;
}
.footer__card-benefit-icon {
  font-size: 20px;
  height: 20px;
  margin-right: 8px;
}

@media only screen and (max-width: 1000px) {
  .hero {
    min-width: 100%;
  }
  .hero__heading {
    max-width: 100%;
  }
}
@media only screen and (max-width: 720px) {
  .wrapper {
    height: auto;
  }

  .hero__form {
    flex-direction: column;
    width: 100%;
  }
  .hero__form-group {
    width: 100%;
  }
  .hero__form-input {
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }
  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    flex-direction: column;
    background: #fff;
    transform: translateX(-200px);
    transition: all 300ms ease-in-out;
    opacity: 0;
  }
  .nav__links.active {
    transform: translateX(0);
    opacity: 1;
  }
  .nav__link {
    padding: 18px;
  }
  .nav__menu-icon {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */
