@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:300,regular,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,regular,500,600,700,300italic,600italic,700italic&display=swap");
@import url("https://fonts.googleapis.com/css?family=Epilogue:800,900,800italic&display=swap");
@import url("https://fonts.googleapis.com/css?family=Righteous:regular&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a :focus, a :active {
  outline: none;
  text-decoration: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
}

input, button, textarea {
  font-family: inherit;
}

input ::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button ::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Roboto";
  font-size: 1rem;
  background-color: #fff;
  color: #060A3F;
}

.container {
  margin: 0 auto;
  max-width: 1340px;
  height: 100%;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

button {
  color: #060A3F;
  background-color: transparent;
}

.none {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}

input {
  font-family: "Josefin Sans";
}

body {
  background-color: #fff;
  font-family: "Roboto";
}

body.lock {
  overflow: hidden;
}

.header {
  min-height: 100%;
  background-image: url("../img/header__background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(347deg, rgba(46, 47, 59, 0) 0%, #03062E 94.9%);
}
.header__row {
  padding: 39px 0;
  width: 100%;
  position: fixed;
  z-index: 10;
  transition: 0.3s;
}
.header__body {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  align-items: center;
}
.header__logo {
  color: #FFF;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  font-family: "Righteous";
  cursor: pointer;
}
.header__logo span {
  color: #FFC800;
}
.header__logo:hover {
  text-decoration: none;
}
.header__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  gap: 25px;
  flex-wrap: wrap;
}
.header__link {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  position: relative;
  transition: 0.3s;
}
.header__link::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -3px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.header__link:hover::before {
  width: 100%;
  left: 0;
  background-color: #439a11;
}
.header__link:hover {
  color: #449814;
}
.header__sign {
  color: #FFC800;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-left: 5px;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
  border-radius: 3px 0px 3px 3px;
  padding: 10px 20px;
  overflow: hidden;
  z-index: 3;
}
.header__sign::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 20%;
  top: -100%;
  border-radius: 3px 0px 3px 3px;
  background-color: rgba(4, 255, 63, 0.6);
  transition: 0.25s;
  z-index: -1;
}
.header__sign:hover::before {
  right: 0;
  top: 0;
}
.header__sign:hover {
  color: #fff;
}

.header__row.scroll {
  padding: 10px 0;
  background-color: rgba(20, 158, 20, 0.8274509804);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.header__burger {
  display: none;
}

@media (max-width: 860px) {
  .header .header__body {
    gap: 8px;
  }
  .header .header__row {
    justify-content: center;
    padding: 19px 0;
  }
  .header .header__row.scroll {
    padding: 6px 0;
  }
  .header .header__sign {
    margin-left: auto;
  }
  .header .header__list {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 25px;
    height: 100vh;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    background-color: rgba(3, 6, 46, 0.8352941176);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    left: -100%;
    transition: 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .header__list .header__link {
    font-size: 36px;
  }
  .header .header__row.active.scroll {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .header .header__logo {
    position: relative;
    z-index: 1;
  }
  .header .header__burger {
    display: block;
    width: 35px;
    height: 25px;
    position: relative;
    cursor: pointer;
  }
  .header .header__burger::after, .header .header__burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #fff;
    transition: 0.4s;
  }
  .header .header__burger::after {
    top: 0;
  }
  .header .header__burger::before {
    bottom: 0;
  }
  .header .header__burger span {
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #fff;
    top: 11px;
    transition: 0.4s;
  }
  .header .header__burger.active::after {
    top: 11px;
    transform: rotate(-45deg);
  }
  .header .header__burger.active::before {
    bottom: 11px;
    transform: rotate(45deg);
  }
  .header .header__burger.active span {
    opacity: 0;
  }
  .header .header__row.active .header__list {
    left: 0;
  }
  .header .header__container {
    padding: 0 15px;
  }
  .header .header__container .header__content {
    padding: 90px 0 30px 0;
  }
  .header .header__container .header__memory {
    flex: 0 0 85%;
  }
  .header .header__container .header__memory_title {
    font-size: 50px;
  }
  .header .header__container .header__memory_text {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .header .header__container .header__memory_link {
    color: #030A4D;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 333%;
    text-transform: capitalize;
    border-radius: 10px;
    background: #FFC800;
    border: 2px solid #FFC800;
    padding: 1px 52px;
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    transition: 0.3s;
  }
  .header .header__container .header__memory_link:hover {
    background: #ffac12;
    transform: scale(1.01);
  }
}
.header__container {
  position: relative;
  padding-left: 8%;
  padding-right: 2.5%;
  height: 100%;
}
.header__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 150px 0 70px 0px;
}
.header__memory {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  flex: 0 0 75%;
  gap: 15px;
}
.header__memory_title {
  font-family: "Josefin Sans";
  font-size: 66px;
  font-weight: 600;
  line-height: normal;
}
.header__memory_text {
  font-size: 28px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 40px;
}
.header__memory_link {
  color: #030A4D;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 333%;
  text-transform: capitalize;
  border-radius: 10px;
  background: #FFC800;
  border: 2px solid #FFC800;
  padding: 1px 52px;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.3s;
}
.header__memory_link:hover {
  background: #ffac12;
  transform: scale(1.01);
}
.header__follow {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 45px;
  padding-top: 50px;
}
.header__follow_title {
  color: #FFF;
  font-family: "Epilogue";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  transform: rotate(90deg);
  display: block;
}
.header__follow_link {
  font-size: 16px;
  transition: 0.3s;
}
.header__follow_link:hover {
  color: #5fe313;
}
.header__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 570px) {
  .wrapper .header .header__memory {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .wrapper .header .header__memory .header__memory_link {
    padding: 7px 30px;
    font-size: 18px;
    line-height: 200%;
  }
  .wrapper .header .header__memory .header__memory_text {
    font-size: 18px;
  }
  .wrapper .header .header__memory .header__memory_title {
    font-size: 39px;
  }
  .wrapper .header .header__content {
    flex-direction: column;
  }
  .wrapper .header .header__follow {
    flex-direction: row;
    padding-top: 30px;
    gap: 10px;
  }
  .wrapper .header .header__follow_title {
    transform: rotate(0deg);
    font-size: 19px;
  }
  .wrapper .header .header__icon {
    flex-direction: row;
  }
  .wrapper .header .header__follow_link {
    font-size: 20px;
  }
}
.places {
  padding: 50px 0px 30px 0px;
  position: relative;
}
.places:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 14, 39, 0) 0%, #040E27 72.28%);
}
.places__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}
.places__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.places__title {
  flex: 1 1 26%;
  text-align: center;
  width: 100%;
  font-size: 21px;
  font-weight: 300;
  text-transform: capitalize;
}
.places__title span {
  font-size: 15px;
  padding-left: 10px;
}
.places__content {
  flex: 1 1 65%;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.places__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.places__column .place__text {
  font-size: 22px;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
.places__img {
  position: relative;
}
.places__img img {
  max-width: 100%;
  height: 100%;
}
.places__img span {
  position: absolute;
  width: 100%;
  bottom: -2px;
  height: 7px;
  background-color: rgba(255, 200, 0, 0.75);
  left: 0;
  border-radius: 5px;
  transition: 0.4s;
}
.places__img:hover span {
  height: 101%;
  background-color: rgba(255, 200, 0, 0.45);
}
.places__img:hover .places__play {
  color: #000;
  font-size: 45px;
  opacity: 0.8;
}
.places__play {
  cursor: pointer;
  opacity: 0.7;
  position: absolute;
  left: 50%;
  bottom: 10%;
  font-size: 40px;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.4s;
}
.places__play:hover {
  color: #00ff1a;
}

@media (max-width: 530px) {
  .wrapper .places {
    padding: 10px 0;
  }
  .wrapper .places .places__body {
    gap: 15px;
  }
  .wrapper .places .places__body .places__content {
    flex: 1 1 100%;
    justify-content: center;
    gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
  .wrapper .places .places__body .places__column {
    flex: 0 0 46%;
    max-width: 280px;
    gap: 10px;
  }
  .wrapper .places .places__body .place__text {
    font-size: 16px;
  }
  .wrapper .places .places__body .places__title {
    font-size: 18px;
  }
  .wrapper .places .places__body .places__play {
    font-size: 34px;
    bottom: 1%;
  }
}
@media (max-width: 1024px) {
  .places {
    padding: 20px 0;
  }
  .places .places__body {
    flex-direction: column;
  }
  .places .places__body .places__content {
    flex: 1 1 100%;
    justify-content: space-around;
  }
  .places .places__body .places__column {
    flex: 0 0 31%;
    max-width: 270px;
    gap: 10px;
  }
  .places .places__body .place__text {
    font-size: 18px;
  }
  .places .places__body .places__title {
    font-size: 20px;
  }
}
.about {
  padding: 150px 0;
}
.about__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 50%;
  width: 100%;
}
.about__title {
  color: #020953;
  font-family: "Josefin Sans";
  font-size: calc(36px + 2.6865671642vw);
  font-weight: 600;
  line-height: 113.636%;
}
.about__sabtitle {
  color: #060A3F;
  font-size: calc(13px + 0.9701492537vw);
  font-weight: 400;
  line-height: 120%;
  font-family: "Josefin Sans";
}
.about__text {
  color: rgba(6, 10, 64, 0.5);
  font-size: calc(12.5px + 0.9328358209vw);
  font-weight: 300;
  line-height: 140%;
}
.about__link {
  color: #060A3F;
  font-size: calc(12px + 0.9701492537vw);
  font-weight: 400;
  line-height: 120%;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  transition: 0.3s;
  font-family: "Josefin Sans";
}
.about__link span {
  margin-left: 13px;
  font-size: calc(11px + 0.8208955224vw);
  color: #FFC800;
  padding-top: 3px;
  transition: 0.3s;
}
.about__link:hover span {
  margin-left: 25px;
}
.about__link:hover {
  color: #064d04;
}
.about__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 90px 0 90px 0;
  overflow: hidden;
}
.about__img img {
  max-width: 100%;
  max-height: 690px;
  border-radius: 90px 0 90px 0;
  transition: 0.5s;
}
.about__img img:hover {
  transform: scale(1.05);
}

@media (max-width: 660px) {
  .wrapper .about {
    padding: 40px 0;
  }
  .wrapper .about .about__body {
    justify-content: center;
    flex-direction: column;
    gap: 35px;
  }
  .wrapper .about .about__body .about__content {
    gap: 10px;
    flex: 0 0 100%;
  }
  .wrapper .about .about__body .about__title {
    font-size: calc(38px + 2.8358208955vw);
    line-height: 113.636%;
  }
  .wrapper .about .about__body .about__sabtitle {
    font-size: calc(15px + 1.1194029851vw);
  }
  .wrapper .about .about__body .about__text {
    font-size: calc(14.5px + 1.0820895522vw);
    line-height: 140%;
  }
  .wrapper .about .about__body .about__link {
    font-size: calc(14px + 1.0447761194vw);
    line-height: 120%;
  }
  .wrapper .about .about__body .about__link span {
    margin-left: 13px;
    font-size: calc(11px + 0.8208955224vw);
    padding-top: 3px;
  }
  .wrapper .about .about__body .about__img img {
    max-height: 490px;
  }
}
@media (max-width: 940px) {
  .about {
    padding: 60px 0;
  }
}
.titles {
  text-align: left;
}
.titles h1 {
  color: #020953;
  font-family: "Josefin Sans";
  font-size: calc(36px + 2.6865671642vw);
  font-weight: 600;
  line-height: 113.636%;
}
.titles p {
  font-size: calc(14.5px + 1.0447761194vw);
  font-weight: 400;
  line-height: 312.5%;
  font-family: "Josefin Sans";
}

.services {
  padding-bottom: 130px;
}
.services__body {
  display: flex;
  flex-direction: column;
  gap: 85px;
}
.services__title {
  text-align: left;
}
.services__title h1 {
  color: #020953;
  font-family: "Josefin Sans";
  font-size: calc(36px + 2.6865671642vw);
  font-weight: 600;
  line-height: 113.636%;
}
.services__title p {
  font-size: calc(13px + 0.9701492537vw);
  font-weight: 400;
  line-height: 312.5%;
}
.services__box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
.services__column {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services__img {
  padding: 20px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.25);
  margin-bottom: 40px;
}
.services__img span {
  display: flex;
  padding: 35px;
  background-color: #FFC800;
  font-size: calc(42px + 3.1343283582vw);
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.services__img span:hover {
  transform: scale(1.02);
}
.services__sabtitle {
  color: #020953;
  font-family: "Josefin Sans";
  font-size: calc(12px + 0.9328358209vw);
  font-weight: 600;
  line-height: 74.286%;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.services__sabtext {
  color: rgba(0, 0, 0, 0.5);
  font-size: calc(9px + 0.671641791vw);
  font-weight: 300;
  line-height: 108.333%;
}

@media (max-width: 550px) {
  .wrapper .services {
    padding-bottom: 35px;
  }
  .wrapper .services__body {
    gap: 25px;
  }
  .wrapper .services__title p {
    font-size: calc(13px + 0.9701492537vw);
    line-height: 200%;
  }
  .wrapper .services__box {
    row-gap: 20px;
    justify-content: center;
  }
  .wrapper .services__column {
    flex: 0 0 100%;
    max-width: 350px;
  }
  .wrapper .services__img {
    padding: 10px;
    margin-bottom: 20px;
  }
  .wrapper .services__img span {
    padding: 20px;
    font-size: calc(43px + 3.2089552239vw);
  }
  .wrapper .services__sabtitle {
    font-size: calc(16px + 1.2313432836vw);
    margin-bottom: 10px;
  }
  .wrapper .services__sabtext {
    font-size: calc(12px + 0.8955223881vw);
  }
}
@media (max-width: 924px) {
  .services {
    padding-bottom: 60px;
  }
  .services__body {
    gap: 35px;
  }
  .services__title p {
    font-size: calc(14px + 0.9701492537vw);
  }
  .services__box {
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 35px;
    justify-content: space-around;
  }
  .services__column {
    flex: 0 0 45%;
    max-width: 300px;
  }
  .services__img {
    padding: 15px;
    margin-bottom: 30px;
  }
  .services__img span {
    padding: 25px;
    font-size: calc(45px + 3.3582089552vw);
  }
  .services__sabtitle {
    font-size: calc(16px + 1.2313432836vw);
    margin-bottom: 15px;
  }
  .services__sabtext {
    font-size: calc(12px + 0.8955223881vw);
  }
}
.travel {
  padding: 45px 0;
  background-color: #040E27;
}
.travel__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 13px;
  color: #fff;
}
.travel__title {
  font-size: 25px;
  font-weight: 104%;
  white-space: nowrap;
  font-family: "Josefin Sans";
  flex: 0 0 24%;
}
.travel__form {
  display: flex;
  gap: 6px;
  width: 100%;
  justify-content: space-between;
}
.travel__input {
  font-size: 16px;
  font-weight: 300;
  line-height: 162%;
  background-color: transparent;
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  max-width: 260px;
  width: 100%;
  color: rgba(255, 255, 255, 0.7137254902);
}
.travel__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7137254902);
}
.travel__input::placeholder {
  color: rgba(255, 255, 255, 0.7137254902);
}
.travel .choices {
  width: 100%;
  max-width: 260px;
  margin-bottom: 0;
}
.travel .choices .choices__inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  background-color: #040E27;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7137254902);
}
.travel .choices .choices__list--dropdown {
  background-color: rgba(3, 6, 46, 0.9098039216);
  border-radius: 8px;
  padding: 5px;
  height: 214px;
  top: -200px;
}
.travel .choices .choices__list--dropdown .choices__item {
  font-size: 16px;
  padding: 11px;
  font-family: "Josefin Sans";
}
.travel .choices .choices__list--single {
  padding: 14px 18px;
}
.travel .choices[data-type*=select-one]:after {
  border-color: rgba(255, 255, 255, 0.7137254902) transparent transparent;
  border-width: 7.5px 7px;
  margin-top: -4.5px;
  transition: 0.2s;
  z-index: 11;
  right: 15.5px;
}
.travel .choices[data-type*=select-one].is-open:after {
  margin-top: -14.5px;
  transform: rotate(-180deg);
  transition: 0.2s;
}
.travel .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: rgba(12, 38, 105, 0.8235294118);
}
.travel__button {
  color: #040E27;
  font-size: 18px;
  line-height: 162.5%;
  border-radius: 8px;
  background: #FFC800;
  padding: 15px 50px;
  font-family: "Josefin Sans";
  transition: 0.3s;
  border-bottom: 6px solid #ff8401;
}
.travel__button:hover {
  transform: scale(1.03);
}
.travel__button:active {
  border-bottom: 6px solid #FFC800;
  transform: translateY(6px);
}

@media (max-width: 993px) {
  .travel {
    padding: 45px 0;
  }
  .travel__body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 23px;
  }
  .travel__title {
    font-size: 25px;
    flex: 0 0 24%;
  }
  .travel__form {
    flex-direction: column;
  }
  .travel__input {
    padding: 10px 18px;
    max-width: 100%;
  }
  .travel .choices {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .travel .choices .choices__list--single {
    padding: 10px 18px;
  }
  .travel .choices .choices__list--dropdown {
    padding: 3px;
    height: 204px;
    top: -180px;
  }
  .travel .choices .choices__list--dropdown .choices__item {
    font-size: 14px;
    padding: 11px;
    font-family: "Josefin Sans";
  }
  .travel .choices[data-type*=select-one]:after {
    z-index: 3;
    right: 21px;
  }
  .travel__button {
    font-size: 16px;
    padding: 10px 50px;
  }
}
.destination {
  padding: 125px 0;
}
.destination__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: -25px;
}
.destination__title {
  padding-left: 25px;
}
.destination__container {
  position: relative;
}
.destination__slide {
  overflow: hidden;
}
.destination__img {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
  overflow: hidden;
}
.destination__img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.destination__img:hover .destination__box {
  background: linear-gradient(180deg, rgba(6, 10, 64, 0) 10.83%, rgba(6, 10, 64, 0.95) 100%);
  transition: 0.4s;
  height: 60%;
}
.destination__img:hover img {
  transform: scale(1.05);
}
.destination__img:hover h1, .destination__img:hover p {
  transform: scale(1.07);
}
.destination__box {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  left: 50%;
  gap: 5px;
  transform: translateX(-50%);
  height: 50%;
  background: linear-gradient(180deg, rgba(6, 10, 64, 0) 20.83%, rgba(6, 10, 64, 0.75) 100%);
  width: 100%;
  padding-bottom: 20px;
  transition: 0.4s;
}
.destination__box h1 {
  color: #FFC800;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  transition: 0.5s;
}
.destination__box p {
  color: #FFF;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  transition: 0.5s;
}

.destination__container .slick-list {
  overflow: hidden;
}

/* Лента слайдов */
.destination__container .slick-track {
  display: flex;
  gap: 25px;
}

/* Стрелка */
.destination__container .slick-arrow {
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 21px;
  height: 14px;
  font-size: 0;
}

/* Стрелка влево */
.destination__container .slick-arrow.slick-prev {
  right: 420px;
  background: url("../img/arrow_downward_24px.svg") 0 0/100% no-repeat;
  transition: 0.3s;
}

/* Стрелка вправо */
.destination__container .slick-arrow.slick-next {
  background: url("../img/Group 7.png") 0 0/100% no-repeat;
  right: 1.5%;
  transition: 0.3s;
}

/* Стрелка не активная */
.destination__container .slick-arrow.slick-prev.slick-disabled {
  background-image: url("../img/Group 83.png");
  background-size: contain;
  transform: rotate(360deg);
  opacity: 0.5;
}

.destination__container .slick-arrow.slick-next.slick-disabled {
  background-image: url("../img/Group 83.png");
  background-size: contain;
  transform: rotate(180deg);
  opacity: 0.5;
}

/* Точки (булиты) */
.slick-dots {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-right: 60px;
}

.slick-dots li {
  transition: 0.3s;
  list-style: none;
}
.slick-dots li:hover {
  background-color: rgba(238, 255, 4, 0.6784313725);
  border-radius: 50%;
}

/* Активная точка */
.slick-dots li.slick-active {
  border-radius: 50%;
  background-color: #FFC800;
}

/* Элемент точки */
.slick-dots li button {
  color: #040E27;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  padding: 7px 15px;
}

@media (max-width: 924px) {
  .destination {
    padding: 55px 0;
  }
  .destination__body {
    gap: 10px;
    margin-left: -15px;
  }
  .destination__title {
    padding-left: 15px;
  }
  .destination__img {
    min-height: 100%;
    max-height: 300px;
    margin-bottom: 20px;
  }
  .destination__img img {
    -o-object-position: bottom;
       object-position: bottom;
    max-height: 100%;
  }
  .destination__box {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    left: 50%;
    gap: 5px;
    transform: translateX(-50%);
    height: 50%;
    background: linear-gradient(180deg, rgba(6, 10, 64, 0) 20.83%, rgba(6, 10, 64, 0.75) 100%);
    width: 100%;
    padding-bottom: 20px;
    transition: 0.4s;
  }
  .destination__box h1 {
    color: #FFC800;
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
    transition: 0.5s;
  }
  .destination__box p {
    color: #FFF;
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
    transition: 0.5s;
  }
  .slick-track {
    gap: 15px;
  }
  /* Стрелка влево */
  .slick-arrow.slick-prev {
    left: 10px;
    bottom: 8px;
  }
  /* Стрелка вправо */
  .slick-arrow.slick-next {
    right: 10px;
    bottom: 8px;
  }
  /* Точки (булиты) */
  .slick-dots {
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 40px;
  }
  /* Элемент точки */
  .slick-dots li button {
    font-size: 20px;
    padding: 4px 10px;
  }
}
@media (max-width: 540px) {
  .destination__container .slick-dots li:not(:nth-child(-n+6)) {
    display: none;
  }
  .destination__container .slick-dots:after {
    content: "...";
    display: list-item;
    list-style: none;
    text-align: center;
    width: 100%;
  }
}
.subscribe {
  background: url("../img/sub-back.png") no-repeat;
  background-size: cover;
  padding: 45px 0;
  position: relative;
}
.subscribe .subscribe__body {
  display: flex;
  align-items: center;
  gap: 25px;
}
.subscribe__title {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  color: #FFF;
  gap: 20px;
}
.subscribe__title h1 {
  font-size: calc(17px + 1.2686567164vw);
  font-weight: 400;
  line-height: normal;
}
.subscribe__title p {
  font-size: calc(10px + 0.8208955224vw);
  font-weight: 300;
  line-height: 112.5%;
}
.subscribe__form {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}
.subscribe__email {
  border-radius: 8px;
  background: #FFF;
  padding: 17px 24px;
  max-width: 477px;
  width: 100%;
  font-size: 20px;
  color: #040E27;
}
.subscribe__email::-moz-placeholder {
  color: rgba(0, 0, 0, 0.9);
  font-size: calc(10px + 0.7462686567vw);
  font-weight: 300;
  font-family: "Josefin Sans";
  line-height: 135%;
}
.subscribe__email::placeholder {
  color: rgba(0, 0, 0, 0.9);
  font-size: calc(10px + 0.7462686567vw);
  font-weight: 300;
  font-family: "Josefin Sans";
  line-height: 135%;
}
.subscribe__button {
  color: #040E27;
  font-size: calc(10px + 0.7462686567vw);
  line-height: 135.5%;
  border-radius: 8px;
  background: #FFC800;
  padding: 20px 41px;
  font-family: "Josefin Sans";
  transition: 0.3s;
  border-bottom: 6px solid #ff8401;
}
.subscribe__button:hover {
  transform: scale(1.03);
}
.subscribe__button:active {
  border-bottom: 6px solid #FFC800;
  transform: translateY(6px);
}

@media (max-width: 830px) {
  .subscribe {
    padding: 25px 0;
  }
  .subscribe .subscribe__body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 25px;
  }
  .subscribe__title {
    flex: 0 0 100%;
    gap: 10px;
  }
  .subscribe__title h1 {
    font-size: calc(21px + 1.5671641791vw);
  }
  .subscribe__title p {
    font-size: calc(14px + 0.9701492537vw);
  }
  .subscribe__form {
    gap: 15px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 440px;
  }
  .subscribe__email {
    padding: 19px 20px;
    font-size: 18px;
  }
  .subscribe__email::-moz-placeholder {
    font-size: calc(13px + 0.9701492537vw);
  }
  .subscribe__email::placeholder {
    font-size: calc(13px + 0.9701492537vw);
  }
  .subscribe__button {
    font-size: calc(13px + 0.9701492537vw);
    padding: 16px 41px;
    width: 100%;
  }
}
.reviews {
  padding: 140px 0;
}
.reviews__body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.reviews__title {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews__title p {
  line-height: normal;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 51px;
  background: rgba(255, 200, 0, 0.15);
  padding: 70px 80px 60px 80px;
  width: 100%;
}
.reviews__main {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 50px;
}
.reviews__about {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 380px;
}
.reviews__person {
  display: flex;
  gap: 30px;
  align-items: center;
}
.reviews__person_img {
  border-radius: 50%;
  width: 82px;
  height: 82px;
  overflow: hidden;
  transition: 0.3s;
}
.reviews__person_img:hover {
  transform: scale(1.01);
}
.reviews__person_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews__person_text h1 {
  color: #040E27;
  font-size: calc(14px + 1.0447761194vw);
  font-weight: 500;
  line-height: 114.706%;
}
.reviews__person_text p {
  color: #040E27;
  font-size: calc(14px + 1.0447761194vw);
  font-weight: 300;
  line-height: 114.706%;
}
.reviews__tour {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews__tour_title {
  color: #040E27;
  font-size: calc(14.5px + 1.0447761194vw);
  font-weight: 300;
  line-height: 114.706%;
}
.reviews__tour_title span {
  font-weight: 400;
}
.reviews__tour_img {
  display: flex;
  gap: 18px;
}
.reviews__tour_img .reviews__tour_img_box {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}
.reviews__tour_img .reviews__tour_img_box img {
  transition: 0.3s;
  width: 100%;
}
.reviews__tour_img .reviews__tour_img_box img:hover {
  transform: scale(1.04);
}
.reviews__marks {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 100%;
  max-width: 590px;
}
.reviews__opt {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.reviews__opt_title {
  color: #040E27;
  font-size: calc(12.5px + 0.8955223881vw);
  font-weight: 400;
  line-height: 121.875%;
  width: 100%;
  max-width: 113px;
  white-space: nowrap;
}
.reviews__opt_bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #FFC800;
  font-size: calc(12.5px + 0.8955223881vw);
  line-height: 139.286%;
}
.reviews__overall {
  color: #040E27;
  font-size: calc(12.5px + 0.8955223881vw);
  font-weight: 400;
  line-height: 121.875%;
  width: 100%;
}
.reviews__overall span {
  padding: 11px 20px;
  background-color: #FFC800;
  border-radius: 50%;
  margin-left: 15px;
}
.reviews .gap {
  gap: 19px;
}
.reviews__quat {
  display: flex;
  gap: 24px;
  color: #040E27;
  text-align: justify;
  font-size: calc(11px + 0.7462686567vw);
  font-weight: 300;
  line-height: 126.923%;
  align-items: center;
}
.reviews__quat_top {
  color: rgba(255, 200, 0, 0.35);
  font-family: "Epilogue";
  font-size: calc(90px + 6.7164179104vw);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -18px;
  position: relative;
  bottom: 1px;
  height: -moz-max-content;
  height: max-content;
}
.reviews__quat_bottom {
  color: rgba(255, 200, 0, 0.35);
  font-family: "Epilogue";
  font-size: calc(90px + 6.7164179104vw);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -18px;
  position: relative;
  top: 120px;
  height: -moz-max-content;
  height: max-content;
}

meter {
  height: 10px;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
}

meter::-webkit-meter-bar {
  background-color: #040E27;
  border: none;
}

meter::-webkit-meter-optimum-value {
  background-color: #FFC800; /* Оптимальный цвет полоски (для WebKit браузеров) */
}

meter::-webkit-meter-suboptimum-value {
  background-color: #FFC800;
}

meter::-webkit-meter-even-less-good-value {
  background-color: #f44336;
}

meter::-moz-meter-bar {
  background-color: #ddd;
}

meter[value="100"]::-moz-meter-bar {
  background-color: #4caf50;
}

meter[value="50"]::-moz-meter-bar {
  background-color: #f44336;
}

@media (max-width: 540px) {
  .wrapper .reviews__opt {
    gap: 0px;
  }
  .wrapper .reviews__opt_title {
    max-width: 80px;
  }
  .wrapper .reviews__overall span {
    padding: 5px 10px;
    margin-left: 1px;
  }
  .wrapper .reviews__quat {
    gap: 5px;
    position: relative;
    font-size: calc(12px + 0.8955223881vw);
  }
  .wrapper .reviews__quat p {
    padding-left: 0px;
  }
  .wrapper .reviews__quat_top {
    top: -30px;
    left: 0;
    position: absolute;
    font-size: 70px;
  }
  .wrapper .reviews__quat_bottom {
    top: auto;
    position: absolute;
    font-size: 70px;
    bottom: -60px;
    right: 0;
  }
}
@media (max-width: 924px) {
  .reviews {
    padding: 45px 0;
  }
  .reviews__body {
    gap: 25px;
  }
  .reviews__title {
    gap: 5px;
  }
  .reviews__content {
    gap: 15px;
    border-radius: 31px;
    padding: 30px 15px;
  }
  .reviews__main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .reviews__about {
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }
  .reviews__person {
    gap: 15px;
    justify-content: center;
  }
  .reviews__person_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }
  .reviews__tour {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .reviews__tour_title {
    font-size: calc(15.5px + 1.0447761194vw);
  }
  .reviews__tour_img {
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
    gap: 10px;
  }
  .reviews__tour_img .reviews__tour_img_box {
    border-radius: 10px;
  }
  .reviews__marks {
    row-gap: 11px;
    width: 100%;
    max-width: 750px;
    text-align: left;
  }
  .reviews__opt {
    gap: 10px;
  }
  .reviews__opt_title {
    max-width: 100px;
  }
  .reviews__opt_bar {
    align-items: center;
    gap: 10px;
  }
  .reviews__overall {
    text-align: center;
  }
  .reviews__overall span {
    padding: 5px 12px;
    margin-left: 5px;
  }
  .reviews .gap {
    gap: 5px;
  }
  .reviews__quat {
    gap: 15px;
    font-size: calc(12px + 0.7462686567vw);
    line-height: 116.923%;
    align-items: center;
    max-width: 98%;
  }
  .reviews__quat p {
    padding-left: 8px;
  }
  .reviews__quat_top {
    top: -20px;
  }
  .reviews__quat_bottom {
    top: 90px;
  }
  .reviews .container {
    padding: 0 5px;
  }
  meter {
    max-width: 100%;
  }
}
.resent {
  padding: 30px 0 130px 0;
}
.resent__body {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.resent__title {
  color: #020953;
  font-family: "Josefin Sans";
  font-size: calc(36px + 2.6865671642vw);
  font-weight: 600;
  line-height: 113.636%;
}
.resent__column {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
.resent__box {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}
.resent__img {
  position: relative;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
}
.resent__img img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.resent__img:hover img {
  transform: scale(1.05);
}
.resent__img:hover .resent__img_title {
  background: linear-gradient(180deg, rgba(6, 10, 64, 0) 5.83%, rgba(6, 10, 64, 0.75) 100%);
  height: 65%;
}
.resent__img_title {
  position: absolute;
  color: #fff;
  height: 50%;
  left: 50%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(6, 10, 64, 0) 15.83%, rgba(6, 10, 64, 0.75) 100%);
  width: 100%;
  justify-content: center;
  bottom: 0;
  transform: translateX(-50%);
  color: #FFF;
  font-size: calc(11px + 0.8208955224vw);
  font-family: "Roboto";
  font-weight: 300;
  transition: 0.3s;
  line-height: 416.667%;
}
.resent__date {
  color: rgba(4, 14, 39, 0.6);
  font-size: calc(10px + 0.671641791vw);
  font-weight: 300;
  line-height: 220%;
}
.resent__text {
  color: #040E27;
  font-size: calc(10px + 0.7462686567vw);
  font-weight: 300;
  line-height: 153.333%;
}

@media (max-width: 530px) {
  .wrapper .resent {
    padding: 10px 0 30px 0;
  }
  .wrapper .resent__body {
    gap: 10px;
  }
  .wrapper .resent__box {
    flex: 0 0 95%;
    max-width: 380px;
  }
}
@media (max-width: 924px) {
  .resent {
    padding: 10px 0 40px 0;
  }
  .resent__body {
    gap: 20px;
  }
  .resent__column {
    justify-content: center;
    gap: 25px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
  .resent__box {
    flex: 0 0 46%;
  }
  .resent__img {
    margin-bottom: 6px;
  }
  .resent__img img {
    min-height: 270px;
  }
  .resent__img_title {
    font-size: calc(13px + 0.8955223881vw);
    line-height: 316.667%;
  }
  .resent__date {
    font-size: calc(11px + 0.7462686567vw);
  }
  .resent__text {
    font-size: calc(12px + 0.8955223881vw);
  }
}
.footer {
  padding: 80px 0 40px 0;
  background-color: #040E27;
  color: #fff;
}
.footer__body {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  color: #FFF;
  font-family: "Righteous";
  font-size: calc(15px + 1.1194029851vw);
  font-weight: 400;
  line-height: 212.5%;
}
.footer__logo span {
  color: #FFC800;
}
.footer__main {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 65px;
}
.footer__about {
  flex: 0 0 29%;
}
.footer__about_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__title {
  font-family: "Josefin Sans";
  font-size: calc(11px + 0.8955223881vw);
  font-weight: 400;
  line-height: 200%;
  margin-bottom: 18px;
}
.footer__text {
  font-size: calc(8px + 0.5970149254vw);
  font-weight: 300;
  line-height: 162.5%;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__icon {
  padding: 4px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  color: #020953;
  transition: 0.3s;
  border: 1px solid #020953;
}
.footer__icon:hover {
  color: #fff;
  background-color: #020953;
  border: 1px solid #fff;
}
.footer__nav {
  flex: 0 0 29%;
}
.footer__nav-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__link {
  position: relative;
}
.footer__link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2.5px;
  background-color: #fff;
  left: 50%;
  transition: 0.3s;
  top: -3px;
}
.footer__link:hover::before {
  width: 100%;
  left: 0;
}
.footer__sub {
  flex: 0 0 29%;
  display: flex;
  flex-direction: column;
}
.footer__form {
  margin-top: 18px;
  display: flex;
  width: 100%;
  height: 50px;
}
.footer__input {
  border: 1px solid #FFF;
  background-color: inherit;
  padding: 10px 13px;
  color: #fff;
  width: 100%;
  font-family: "Josefin Sans";
  font-size: 17px;
}
.footer__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 162.5%;
}
.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 162.5%;
}
.footer__button {
  color: #040E27;
  font-size: calc(8px + 0.5970149254vw);
  font-weight: 300;
  line-height: 162.5%;
  padding: 12px 10px;
  text-align: center;
  background-color: #FFC800;
}
.footer__copy {
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.footer__copy span {
  color: #FFC800;
}
.footer__copy .bold {
  font-weight: 400;
  color: #fff;
}

@media (max-width: 815px) {
  .footer {
    padding: 25px 0 15px 0;
  }
  .footer__logo {
    font-size: calc(19px + 1.4179104478vw);
    text-align: center;
  }
  .footer__main {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
  .footer__about {
    flex: 0 0 100%;
  }
  .footer__about_box {
    gap: 10px;
  }
  .footer__title {
    font-size: calc(16px + 1.1940298507vw);
    line-height: 180%;
    margin-bottom: 5px;
  }
  .footer__text {
    font-size: calc(11px + 0.7462686567vw);
    line-height: 130%;
  }
  .footer__social {
    gap: 16px;
  }
  .footer__nav {
    flex: 0 0 100%;
  }
  .footer__nav-nav {
    max-width: 300px;
    gap: 20px;
  }
  .footer__list {
    gap: 6px;
  }
  .footer__link::before {
    height: 1.5px;
  }
  .footer__sub {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  .footer__form {
    max-width: 500px;
    margin-top: 5px;
  }
  .footer__input {
    font-size: 17.5px;
  }
  .footer__input::-moz-placeholder {
    font-size: 16.5px;
  }
  .footer__input::placeholder {
    font-size: 16.5px;
  }
  .footer__button {
    font-size: calc(11.5px + 0.8208955224vw);
    padding: 12px 14px;
  }
  .footer__copy {
    font-size: 14.5px;
    line-height: 120%;
  }
}
@keyframes ldio-qizos2h49kq {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.ldio-qizos2h49kq div {
  position: absolute;
  width: 145px;
  height: 145px;
  border: 15px solid #ffc800;
  border-top-color: transparent;
  border-radius: 50%;
}

.ldio-qizos2h49kq div {
  animation: ldio-qizos2h49kq 1s linear infinite;
  top: 100px;
  left: 100px;
}

.loadingio-spinner-rolling-f9ddtcu2f6t {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}

.ldio-qizos2h49kq {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.ldio-qizos2h49kq div {
  box-sizing: content-box;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #03062E;
  z-index: 999999;
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}
.preloader__loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.preloader__persent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Josefin Sans";
  font-size: 32px;
  color: #fff;
}

.done {
  opacity: 0;
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */