@import url("https://fonts.googleapis.com/css2?family=Aleo:ital@0;1&family=Josefin+Sans:wght@100..700&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Josefin Sans";
  color: #FFFFFF;
}

.banner {
  height: 860px;
  width: 100%;
  background-image: url(../assets/img/HeaderBackground.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024) {
  .banner {
    height: auto;
    padding: 50px 20px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-image: url(../assets/img/HeaderBackground0.75x.png);
  }
}
@media screen and (max-width: 576px) {
  .banner {
    background-image: url(../assets/img/HeaderBackground0.5x.png);
  }
}
.banner__container {
  display: grid;
  place-items: center;
  max-width: 1360px;
  height: 860px;
}
.banner__logo {
  margin: 200px 0 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
}
@media screen and (max-width: 1024) {
  .banner__logo {
    font-size: 36px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .banner__logo {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (max-width: 576px) {
  .banner__logo {
    font-size: 24px;
    line-height: 28px;
  }
}
.banner__title {
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: 0.29em;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  width: 345px;
}
@media screen and (max-width: 768px) {
  .banner__title {
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .banner__title {
    font-size: 16px;
    line-height: 20px;
  }
}

.search__form {
  display: flex;
  align-items: center;
  width: 647px;
  height: 60px;
  border: 2px solid #ddd;
  overflow: hidden;
  transition: border-color 0.3s ease;
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .search__form {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .search__form {
    height: 50px;
  }
}

.search__form:hover {
  border-color: #5373FD;
  cursor: text;
}

input[type=search] {
  border: none;
  outline: none;
  padding: 10px 15px;
  font-size: 14px;
  width: 505px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  input[type=search] {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  input[type=search] {
    width: 60%;
    height: 50px;
  }
}

input[type=search]::placeholder {
  color: #999999;
  font-weight: 400;
  letter-spacing: 0.2em;
}

input[type=search]:focus {
  outline: none;
}

.header__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Aleo";
  color: #FFFFFF;
  letter-spacing: 0.1em;
  background-color: #5373FD;
  border: none;
  cursor: pointer;
  width: 139px;
  height: 54px;
}
@media screen and (max-width: 480px) {
  .header__button {
    width: 120px;
    height: 50px;
    font-size: 12px;
  }
}

.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll__text {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
}
.scroll__img {
  margin-top: 10px;
}

.navigation {
  width: 100%;
  background-color: #5373FD;
}

.container__nav {
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 1360px;
  height: 85px;
  padding: 0 40px;
}
@media screen and (max-width: 992px) {
  .container__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 135px;
  }
}

.nav__logo {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin: 30px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 992px) {
  .nav__logo {
    margin-top: 0;
  }
}

.burger_toggle {
  display: none;
}

.burger_menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 200;
}
.burger_menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .burger_menu {
    display: flex;
  }
}

.menu {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 35px;
  gap: 2vw;
}
@media screen and (max-width: 992px) {
  .menu {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #5373FD;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 20px;
  }
}
.menu__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Aleo";
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.burger_toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.burger_toggle:checked ~ .burger_menu span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger_toggle:checked ~ .burger_menu span:nth-child(2) {
  opacity: 0;
}
.burger_toggle:checked ~ .burger_menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.why {
  background-image: url(../assets/img/WhyBackground.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 715px;
}
@media screen and (max-width: 768px) {
  .why {
    background-image: url(../assets/img/WhyBackground0.75x.png);
    height: auto;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .why {
    background-image: url(../assets/img/WhyBackground0.5x.png);
  }
}
.why__box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1360px;
}
@media screen and (max-width: 992px) {
  .why__box {
    flex-direction: column-reverse;
    height: auto;
    gap: 20px;
  }
}

.content {
  width: 645px;
  height: 325px;
}
@media screen and (max-width: 1280px) {
  .content {
    width: 48%;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .content {
    width: 80%;
    height: auto;
    display: grid;
    place-items: center;
  }
}
@media screen and (max-width: 768px) {
  .content {
    width: 70%;
  }
}
.content__title {
  font-family: "Aleo";
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .content__title {
    font-size: 28px;
    line-height: 32px;
  }
}
.content__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75em;
  letter-spacing: 0.1em;
  margin: 0 auto;
  height: 168px;
}
@media screen and (max-width: 992px) {
  .content__text {
    height: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768) {
  .content__text {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.1em;
  }
}
.content__button {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Aleo";
  color: #FFFFFF;
  letter-spacing: 0.1em;
  background: linear-gradient(-135deg, #5373FD 50%, #486BFE 50%);
  border: none;
  cursor: pointer;
  width: 215px;
  height: 60px;
  margin-top: 25px;
}
@media screen and (max-width: 992px) {
  .content__button {
    margin-top: 20px;
  }
}
.content__button:hover {
  transform: scale(1.05);
}

.images {
  width: 424px;
  height: 456px;
}
@media screen and (max-width: 992px) {
  .images {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .images {
    width: 720px;
    height: 220px;
  }
}

.images__lake {
  width: 350px;
  height: 220px;
}
@media screen and (max-width: 992px) {
  .images__lake {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .images__lake {
    width: 255px;
    height: 160px;
  }
}

.images__mountains {
  width: 350px;
  height: 220px;
  margin-left: 70px;
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .images__mountains {
    margin-left: 10px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .images__mountains {
    width: 255px;
    height: 160px;
  }
}

.steps {
  width: 100%;
  height: 305px;
  background-color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .steps {
    height: auto;
    padding: 40px 0;
  }
}
.steps__container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  height: 23vh;
  max-width: 1320px;
  gap: 100px;
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .steps__container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
}
.steps__iconbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .steps__iconbox {
    width: 100%;
  }
}
.steps__title {
  font-family: "Aleo";
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
}
@media screen and (max-width: 992px) {
  .steps__title {
    font-size: 28px;
    line-height: 32px;
  }
}

.icon {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.svg_line {
  background: url(../assets/img/Line.svg) no-repeat center;
  position: absolute;
  width: 63%;
  height: 38%;
  top: -50px;
  left: 18%;
  display: flex;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .svg_line {
    display: none;
  }
}

.booknow1 {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  /*justify-content: center;*/
  width: 100%;
  height: 715px;
  background-image: url(../assets/img/bookNow1.png);
}
@media screen and (max-width: 768px) {
  .booknow1 {
    background-image: url(../assets/img/bookNow1.0.75x.png);
    height: auto;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .booknow1 {
    background-image: url(../assets/img/bookNow1.0.5x.png);
  }
}

.container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
  }
}
.container__card {
  width: 645px;
  height: 345px;
  background-color: rgba(35, 35, 35, 0.9);
  margin: 220px 80px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .container__card {
    width: 100%;
    height: auto;
    margin: 40px 40px;
  }
}
.container__title {
  font-weight: 300;
  font-size: 20px;
  margin: 0 auto;
}
.container__title2 {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin: 25px 0;
}
.container__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75em;
  letter-spacing: 0.1em;
}
.container__button {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Aleo";
  color: #FFFFFF;
  letter-spacing: 0.1em;
  background: linear-gradient(-135deg, #5373FD 50%, #486BFE 50%);
  border: none;
  cursor: pointer;
  width: 215px;
  height: 60px;
  margin-top: 25px;
}

.booknow2 {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  /*justify-content: center;*/
  width: 100%;
  height: 715px;
  justify-content: flex-end;
  background-image: url(../assets/img/bookNow2.png);
}
@media screen and (max-width: 768px) {
  .booknow2 {
    background-image: url(../assets/img/bookNow2.0.75x.png);
    height: auto;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .booknow2 {
    background-image: url(../assets/img/bookNow2.0.5x.png);
  }
}

.container2 {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .container2 {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
  }
}
.container2__card_right {
  width: 645px;
  height: 345px;
  background-color: rgba(35, 35, 35, 0.9);
  margin-top: 220px;
  margin-right: 80px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .container2__card_right {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
}
.container2__title_right {
  font-weight: 300;
  font-size: 20px;
  margin: 0 auto;
}
.container2__title_right2 {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  margin: 25px 0;
}
.container2__text_right {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75em;
  letter-spacing: 0.1em;
}
.container2__button_right {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Aleo";
  color: #FFFFFF;
  letter-spacing: 0.1em;
  background: linear-gradient(-135deg, #5373FD 50%, #486BFE 50%);
  border: none;
  cursor: pointer;
  width: 215px;
  height: 60px;
  margin-top: 25px;
}

.tourist {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  /*justify-content: center;*/
  width: 100%;
  height: 715px;
  background-image: url(../assets/img/TouristSay.png);
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .tourist {
    height: 925px;
  }
}
@media screen and (max-width: 768px) {
  .tourist {
    background-image: url(../assets/img/BG0.75x.png);
    height: auto;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .tourist {
    background-image: url(../assets/img/BG0.0.5x.png);
  }
}
.tourist__title {
  font-family: "Aleo";
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .tourist__title {
    font-size: 28px;
    margin: 40px 0;
  }
}

.review {
  max-width: 1360px;
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 110px 120px;
}
@media screen and (max-width: 1024px) {
  .review {
    width: 960px;
    height: 335px;
    margin: 0 30px 120px;
  }
}
@media screen and (max-width: 992px) {
  .review {
    width: 720px;
    height: 645px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .review {
    height: 925px;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .review {
    height: 980px;
  }
}
.review__foto {
  width: 380px;
  height: 310px;
}
@media screen and (max-width: 1024px) {
  .review__foto {
    width: 320px;
    height: 335px;
  }
}
@media screen and (max-width: 992px) {
  .review__foto {
    width: 720px;
    height: 335px;
  }
}
@media screen and (max-width: 768px) {
  .review__foto {
    width: 720px;
  }
}
@media screen and (max-width: 576px) {
  .review__foto {
    width: 540px;
    height: 335px;
  }
}
.review__content {
  background-color: #333333;
  width: 760px;
  height: 310px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .review__content {
    width: 640px;
    height: 335px;
  }
}
@media screen and (max-width: 992px) {
  .review__content {
    width: 720px;
    height: 310px;
  }
}
@media screen and (max-width: 576px) {
  .review__content {
    width: 540px;
    height: 365px;
  }
}
.review__title {
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}
.review__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75em;
  letter-spacing: 0.1em;
}

.foto {
  width: 380px;
  height: 310px;
}
@media screen and (max-width: 1024px) {
  .foto {
    width: 320px;
    height: 335px;
  }
}
@media screen and (max-width: 992px) {
  .foto {
    width: 720px;
    height: 335px;
  }
}
@media screen and (max-width: 576px) {
  .foto {
    width: 540px;
    height: 335;
  }
}

.footer {
  width: 100%;
  height: 270px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer {
    height: auto;
    padding: 20px 0;
  }
}
.footer__title {
  text-transform: uppercase;
  margin: 0;
}
.footer__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2em;
}

.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  cursor: pointer;
}

.icon_social:hover {
  transform: scale(1.5);
}/*# sourceMappingURL=main.css.map */