@import url(font.css);
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #222327;
  --text-color: #002248;
  --main-color: #3685FB;
}

a {
  text-decoration: none;
}

.nav__content {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 28px 12%;
  transition: all 0.5s ease;
  font-family: "air" !important;
  font-weight: 400 !important;
  border-bottom: 2px solid white;
}
@media (max-width: 991px) {
  .nav__content {
    background: white;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 3px;
}

.logo span {
  color: var(--text-color);
  font-size: 1.7rem;
}

.nav__bar {
  display: flex;
  font-family: "mont";
  font-weight: 700;
}

.nav__bar a {
  color: white;
  font-size: 1.1rem;
  padding: 5px 0;
  margin: 0px 30px;
  transition: all 0.5s ease;
  position: relative;
}
.nav__bar a:hover::after {
  width: 100%;
}
.nav__bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 4px;
  background-color: var(--main-color);
  width: 0;
  transition: width 0.2s;
}

.nav__bar a.active {
  color: #00B3A0;
}

.nav__register {
  display: flex;
  align-items: center;
}

.ddl {
  position: relative;
  height: 50px;
  width: 100%;
  text-align: initial;
}

.ddl::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 20px;
  width: 12px;
  height: 2px;
  background: black;
  z-index: 99;
  transform: rotate(-40deg);
  transition: 0.5s;
}

.ddl::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 28px;
  width: 12px;
  height: 2px;
  background: black;
  z-index: 99;
  transform: rotate(40deg);
  transition: 0.5s;
}

.ddl.active::after {
  right: 28px;
}

.ddl.active::before {
  right: 20px;
}

.ddl-input {
  width: 100px;
  height: 100%;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 20px;
  outline: none;
  border: 2px solid #3685FB;
  background: none;
}

.ddl.active .ddl-options {
  visibility: visible;
  opacity: 1;
}

.ddl .ddl-options {
  position: absolute;
  width: 100%;
  top: 55px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  z-index: 999;
  border: 1px solid #e9e9e9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.ddl .ddl-options > div {
  padding: 10px 20px;
  cursor: pointer;
}

.ddl .ddl-options > div:hover {
  color: #fff;
  background: var(--bs-primary);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #3685FB;
}

.user {
  display: flex;
  align-items: center;
}

.user i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 7px;
}

#menu-icon {
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 10001;
  display: none;
}
@media (max-width: 991px) {
  #menu-icon {
    color: #002248;
  }
}

.header__logo {
  width: 250px;
}
@media (max-width: 569px) {
  .header__logo {
    width: 170px;
  }
}
@media (max-width: 342px) {
  .header__logo {
    width: 150px;
  }
}

.trip {
  background-image: url(../img/header-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1000px;
}

.trip__header {
  height: 1000px;
}

.trip__content {
  position: relative;
}

@media (max-width: 1399px) {
  .header__img {
    position: absolute;
    top: 75px;
  }
}

.header__img1 {
  position: absolute;
  top: -380px;
  left: 100px;
}
@media (max-width: 1399px) {
  .header__img1 {
    top: -315px;
  }
}

.header__img2 {
  position: absolute;
  left: 145px;
}
@media (max-width: 1399px) {
  .header__img2 {
    top: 75px;
  }
}

.header__img3 {
  position: absolute;
  top: -315px;
  right: -170px;
}
@media (max-width: 1399px) {
  .header__img3 {
    top: -235px;
    right: -300px;
  }
}

.header__img4 {
  position: absolute;
  top: -325px;
  right: 110px;
}
@media (max-width: 1399px) {
  .header__img4 {
    top: -245px;
    right: -25px;
  }
}
@media (max-width: 1199px) {
  .header__img4 {
    display: none;
  }
}

.trip__img-block {
  position: absolute;
  z-index: 1;
  left: 200px;
  top: 170px;
}
@media (max-width: 670px) {
  .trip__img-block {
    left: 41px;
    top: 300px;
  }
}
@media (max-width: 450px) {
  .trip__img-block {
    left: -10px;
  }
}

.teaser-block {
  display: inline-block;
  vertical-align: top;
  width: 320px;
  height: 430px;
  margin: 0 auto 1%;
  border: 10px solid white;
  border-radius: 200px;
  position: relative;
  background: white;
  overflow: hidden;
  text-align: left;
}
.teaser-block .trip__img-1 {
  text-align: center;
  position: relative;
  height: 280px;
  padding-bottom: 40px;
}
.teaser-block .trip__img-1 .weather-symbol {
  position: absolute;
  z-index: 200;
  left: 50%;
  transform: translateY(70px) translateX(-50%);
}
.teaser-block .trip__img-1 h1 {
  position: absolute;
  z-index: 200;
  color: white;
  text-align: center;
  font-size: 42px;
  left: 50%;
  transform: translateY(90px) translateX(-50%);
}
.teaser-block .trip__img-1 .hour {
  position: absolute;
  z-index: 200;
  color: white;
  text-align: center;
  font-size: 22px;
  font-weight: light;
  left: 50%;
  transform: translateY(160px) translateX(-50%);
}
.teaser-block .trip__img-1 img {
  width: 100%;
  display: block;
  transform: scale(1.4);
  top: 0;
  position: absolute;
  transition: 0.3s margin-top, 0.1s transform;
}

.teaser-block2 {
  display: inline-block;
  vertical-align: top;
  width: 400px;
  height: 530px;
  margin: 0 auto 1%;
  border: 10px solid white;
  border-radius: 200px;
  position: relative;
  background: white;
  overflow: hidden;
  text-align: left;
}
.teaser-block2 .trip__img-1 {
  text-align: center;
  position: relative;
  height: 280px;
  padding-bottom: 40px;
}
.teaser-block2 .trip__img-1 .weather-symbol {
  position: absolute;
  z-index: 200;
  left: 50%;
  transform: translateY(70px) translateX(-50%);
}
.teaser-block2 .trip__img-1 h1 {
  position: absolute;
  z-index: 200;
  color: white;
  text-align: center;
  font-size: 42px;
  left: 50%;
  transform: translateY(90px) translateX(-50%);
}
.teaser-block2 .trip__img-1 .hour {
  position: absolute;
  z-index: 200;
  color: white;
  text-align: center;
  font-size: 22px;
  font-weight: light;
  left: 50%;
  transform: translateY(160px) translateX(-50%);
}
.teaser-block2 .trip__img-1 img {
  width: 100%;
  display: block;
  transform: scale(1.4);
  top: 0;
  position: absolute;
  transition: 0.3s margin-top, 0.1s transform;
}
@media (max-width: 450px) {
  .teaser-block2 {
    width: 300px;
  }
}

.trip__title {
  color: white;
  font-size: 50px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 1199px) {
  .trip__title {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .trip__title {
    font-size: 30px;
  }
}

.trip__text {
  color: white;
  opacity: 0.7;
  font-family: "mont";
  font-weight: 400;
}
@media (max-width: 350px) {
  .trip__text {
    font-size: 18px;
  }
}

.trip__text-start {
  font-family: "mont";
  font-weight: 400;
}

.header__btn-parrent .trip__btn {
  color: white;
  width: 170px;
  height: 60px;
  background: #3685FB;
  border: none;
  border-radius: 10px;
  transition: 0.2s linear;
}
.header__btn-parrent .trip__btn:hover {
  color: #3685FB;
  background: white;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  transition: 0.2s linear;
}

.trip__btn {
  color: white;
  width: 170px;
  height: 60px;
  background: #3685FB;
  border: none;
  border-radius: 10px;
  transition: 0.2s linear;
}

.trip__btn:hover {
  color: #3685FB;
  background: white;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  transition: 0.2s linear;
}

.book__content {
  position: relative;
}

.book__form {
  background: white;
  position: absolute;
  border-radius: 20px;
  box-shadow: 0px 40px 170px 0px rgba(0, 34, 72, 0.3254901961);
}
@media (max-width: 1199px) {
  .book__form {
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 200px;
  }
}
@media (max-width: 991px) {
  .book__form {
    top: 150px;
  }
}
@media (max-width: 650px) {
  .book__form {
    width: 100%;
  }
}
.book__form input {
  font-size: 16px;
  font-family: "mont";
  font-weight: 700;
  border: 2px solid var(--main-color) !important;
  text-align: center;
}
@media (max-width: 1199px) {
  .book__form input {
    margin-left: 0 !important;
  }
}
.book__form select {
  border: none;
  font-family: "mont";
  font-weight: 700;
  margin: 30px;
}
.book__form button {
  width: 200px;
  height: 123px;
  border: none;
  font-family: "mont";
  font-weight: 700;
  background: #3685FB;
  border-radius: 0px 20px 20px 0px;
  transition: 0.2s linear;
}
.book__form button:hover {
  color: #3685FB !important;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  background: none;
  transition: 0.2s linear;
}
@media (max-width: 1199px) {
  .book__form button {
    width: 100%;
    border-radius: 0px 0px 20px 20px;
  }
}

.lang-button {
  position: relative;
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 991px) {
  .lang-button button {
    color: #002248 !important;
  }
}

.button {
  background-color: transparent;
  color: #212121;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: bold;
  border: 2px solid #3685FB;
  border-radius: 15px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  font-size: 13px;
  position: absolute;
  z-index: 1;
  min-width: 200px;
  background-color: white;
  border: 2px solid #3685FB;
  border-radius: 0px 15px 15px 15px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  color: black;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  transition: 0.1s;
}

.dropdown-content a:hover {
  background-color: #3685FB;
  color: #212121;
}

.dropdown-content a:focus {
  background-color: white;
  color: #3685FB;
}

.dropdown-content #top:hover {
  border-radius: 0px 13px 0px 0px;
}

.dropdown-content #bottom:hover {
  border-radius: 0px 0px 13px 13px;
}

.lang-button:hover button {
  border-radius: 15px 15px 0px 0px;
}

.lang-button:hover .dropdown-content {
  display: block;
}

.instruction {
  margin-top: 150px;
}

.instruction__text h4 {
  font-family: "mont";
  font-weight: 400;
}
.instruction__text h1 {
  color: #002248;
  font-size: 50px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 470px) {
  .instruction__text h1 {
    font-size: 30px;
  }
}

.b__box {
  background: #000;
  width: 370px;
  height: 500px;
  position: relative;
  border: 6px solid white;
  border-radius: 10px;
}

.b__title h5 {
  color: white;
  font-size: 20px;
  font-family: "mont";
  font-weight: 700;
}
.b__title p {
  color: white;
  font-size: 18px;
  font-family: "mont";
  font-weight: 400;
}

.b__title2 i {
  color: #FFD751;
}
.b__title2 p {
  color: white;
  font-size: 18px;
  font-family: "air";
  font-weight: 400;
}

.b__btn button {
  color: white;
  width: 170px;
  height: 40px;
  background: #3685FB;
  border: none;
  border-radius: 10px;
  transition: 0.2s linear;
}

.b__btn button:hover {
  color: #3685FB;
  background: white;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  transition: 0.2s linear;
}

.imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 3px;
}

.imgBx img:hover {
  opacity: 0;
}

.b__content {
  position: absolute;
  bottom: 20px;
  left: 5%;
  width: 90%;
  height: 100px;
  transition: 0.5s;
  overflow: hidden;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid white;
  background: linear-gradient(0deg, rgba(0, 34, 72, 0.3), rgba(0, 34, 72, 0.3));
}

.b__box:hover .b__content {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

/*===Product-slider=================================*/
.slider__text h5 {
  color: #00B3A0;
  font-size: 18px;
  font-family: "mont";
  font-weight: 400;
}
@media (max-width: 767px) {
  .slider__text h5 {
    text-align: center;
  }
}
.slider__text h1 {
  color: #002248;
  font-size: 42px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 767px) {
  .slider__text h1 {
    text-align: center;
  }
}
@media (max-width: 470px) {
  .slider__text h1 {
    font-size: 30px;
  }
}
.slider__text p {
  font-size: 18px;
  font-family: "mont";
  font-weight: 400;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .slider__text p {
    width: 100%;
    text-align: center;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-slider {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F8F8F8;
}
@media (max-width: 1199px) {
  .product-slider {
    margin-top: 400px;
  }
}
@media (max-width: 1100px) {
  .product-slider {
    margin-top: 700px;
  }
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product-slider-heading {
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #313131;
}

.slider-btns {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
@media (max-width: 767px) {
  .slider-btns {
    justify-content: center;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  position: static !important;
  transform: translate(0, 0);
  margin: 10px 0px 0px 10px !important;
  background: #FFFFFF;
  border-radius: 5px;
  transition: 0.2s linear;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: white !important;
  background: #3685FB;
  transition: 0.2s linear;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
}

@media (max-width: 500px) {
  .product-slider-heading {
    text-align: center;
    font-size: 1.3rem;
  }
  .product-slider {
    width: 100%;
  }
  .product-img a,
  .product-img {
    height: 230px;
  }
  .product-img a img {
    animation: none;
  }
  .product-img-back {
    display: none;
  }
}
@media (max-width: 400px) {
  .product-img a,
  .product-img {
    height: 190px;
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333333;
  transition: opacity 0.75s, visibility 0.75s;
  z-index: 99999;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.pl {
  display: block;
  width: 9.375em;
  height: 9.375em;
}

.pl__arrows,
.pl__ring-rotate,
.pl__ring-stroke,
.pl__tick {
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.pl__arrows {
  animation-name: arrows42;
  transform: rotate(45deg);
  transform-origin: 16px 52px;
}

.pl__ring-rotate,
.pl__ring-stroke {
  transform-origin: 80px 80px;
}

.pl__ring-rotate {
  animation-name: ringRotate42;
}

.pl__ring-stroke {
  animation-name: ringStroke42;
  transform: rotate(-45deg);
}

.pl__tick {
  animation-name: tick42;
}

.pl__tick:nth-child(2) {
  animation-delay: -1.75s;
}

.pl__tick:nth-child(3) {
  animation-delay: -1.5s;
}

.pl__tick:nth-child(4) {
  animation-delay: -1.25s;
}

.pl__tick:nth-child(5) {
  animation-delay: -1s;
}

.pl__tick:nth-child(6) {
  animation-delay: -0.75s;
}

.pl__tick:nth-child(7) {
  animation-delay: -0.5s;
}

.pl__tick:nth-child(8) {
  animation-delay: -0.25s;
}

/* Animations */
@keyframes arrows42 {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
@keyframes ringRotate42 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(720deg);
  }
}
@keyframes ringStroke42 {
  from, to {
    stroke-dashoffset: 452;
    transform: rotate(-45deg);
  }
  50% {
    stroke-dashoffset: 169.5;
    transform: rotate(-180deg);
  }
}
@keyframes tick42 {
  from, 3%, 47%, to {
    stroke-dashoffset: -12;
  }
  14%, 36% {
    stroke-dashoffset: 0;
  }
}
.guideline {
  background-image: url(../img/guideline-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed !important;
  height: 90vh;
  position: relative;
}

.guideline__bg {
  position: absolute;
  right: 0;
  height: 100%;
  width: 80%;
}
@media (max-width: 991px) {
  .guideline__bg {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .guideline__bg {
    display: none;
  }
}

.guideline__bg2 {
  position: absolute;
  display: none;
}
@media (max-width: 767px) {
  .guideline__bg2 {
    display: block;
    bottom: -55px;
    width: 100%;
    height: 70%;
  }
}

.guideline__compas {
  position: absolute;
  bottom: -100px;
  left: 43%;
}
@media (max-width: 767px) {
  .guideline__compas {
    bottom: -235px;
    left: 40%;
  }
}
@media (max-width: 570px) {
  .guideline__compas {
    left: 35%;
  }
}
@media (max-width: 450px) {
  .guideline__compas {
    bottom: -285px;
  }
}
@media (max-width: 420px) {
  .guideline__compas {
    bottom: -315px;
    left: 32%;
  }
}
@media (max-width: 350px) {
  .guideline__compas {
    left: 27%;
  }
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}
.guideline__play {
  float: left;
  margin: 40px;
  width: 130px;
  height: 130px;
  color: #00B3A0;
  font-size: 40px;
  text-align: center;
  background: white;
  border-radius: 50%;
  animation: shadow-pulse 2s infinite;
}

.dialog__parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog__block {
  padding: 25px 25px;
  background: white;
  width: 1200px;
  border-radius: 33px;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 513px) {
  .dialog__block {
    padding: 25px 0;
  }
}
@media (max-width: 425px) {
  .dialog__block {
    width: 100%;
  }
}

.dialog__block::backdrop {
  animation: fadeIn 0.3s ease both;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.dialog__block .x {
  filter: grayscale(1);
  border: none;
  background: none;
  position: absolute;
  top: 15px;
  right: 10px;
  transition: ease filter, transform 0.3s;
  cursor: pointer;
  transform-origin: center;
}

.dialog__block .x:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.dialog__side {
  width: 70px;
  background: #3685FB;
  border-radius: 28px 9px 10px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .dialog__side {
    height: 1330px;
  }
}
@media (max-width: 583px) {
  .dialog__side {
    display: none;
  }
}

.modal__info-block {
  margin: 20px;
}

.modal__info-block .modal__price {
  border-bottom: 2px solid #b9b9b9;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.modal__info-block .modal__price h1 {
  font-size: 30px;
  font-family: "monta";
  font-weight: 700;
}

.modal__info-block .modal__price h2 {
  font-size: 20px;
  font-family: "monta";
  font-weight: 700;
  margin-top: 10px;
}

.modal__info-block .modal__info {
  border-bottom: 2px solid #b9b9b9;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.modal__info-block .modal__info h1 {
  color: #3685FB;
  font-size: 20px;
  font-family: "monta";
  font-weight: 700;
}

.modal__info-block .modal__info ul {
  margin-left: 20px;
}

.modal__info-block .modal__info ul li {
  font-family: "monta";
  font-weight: 500;
}

.dialog__register {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  margin: 20px;
  padding: 10px;
}

.dialog__register p {
  color: #00B3A0;
  font-size: 18px;
  font-family: "mont";
  font-weight: 400;
}

.dialog__register .dialog__form .dialog__form-block {
  border-bottom: 2px solid #b9b9b9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.dialog__register .dialog__form .dialog__form-block i {
  color: white;
  font-size: 30px;
  background: #3685FB;
  border-radius: 10px;
  padding: 15px 20px;
  margin-right: 20px;
}

.dialog__register .dialog__form .dialog__form-block h1 {
  font-size: 30px;
  font-family: "mont";
  font-weight: 400;
}

.dialog__register .dialog__form .dialog__form-block label {
  font-family: "mont";
  font-weight: 400;
}

.dialog__register .dialog__form .dialog__form-block input {
  border: 2px solid #b9b9b9;
  padding: 5px;
  border-radius: 6px;
}

.modal__bg {
  position: relative;
}
@media (max-width: 1110px) {
  .modal__bg {
    display: none;
  }
}

.modal__bg img {
  width: 100%;
  height: 100%;
  border-radius: 0px 40px 40px 0px;
}

.modal__bg .modal__tour {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 30px;
}

.modal__bg .modal__tour img {
  width: 200px;
}

.modal__form {
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 420px) {
  .modal__form {
    margin: 0;
  }
}

.modal__form h1 {
  font-size: 30px;
  font-family: "monta";
  font-weight: 700;
  text-align: center;
}

.modal__form h6 {
  font-size: 20px;
  font-family: "monta";
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal__form h6 span {
  margin: 20px;
}

.form__info {
  border-bottom: 2px solid #b9b9b9;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .form__info {
    flex-direction: column;
  }
}

.card__book h4 {
  color: #3685FB;
  font-size: 30px;
  font-family: "monta";
  font-weight: 500;
}
@media (max-width: 991px) {
  .card__book h4 {
    text-align: center;
  }
}
@media (max-width: 490px) {
  .card__book h4 {
    font-size: 25px;
  }
}

.form__input label {
  font-family: "monta";
  font-weight: 500;
  margin-bottom: 10px;
}

.form__date {
  width: 100%;
}

.form__input {
  width: 100%;
}

.form__input input {
  border: 2px solid #b9b9b9;
  font-family: "monta";
  font-weight: 500;
  border-radius: 5px;
  padding: 5px;
}

.card__book .card__title i {
  color: white;
  font-size: 30px;
  background: #3685FB;
  padding: 15px 20px;
  border-radius: 10px;
}

.card__book .card__title h3 {
  font-size: 18px;
  font-family: "monta";
  font-weight: 500;
}
@media (max-width: 490px) {
  .card__book .card__title h3 {
    text-align: center;
  }
}

.form__btn {
  font-family: inherit;
  font-size: 20px;
  background: #3685FB;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  margin-top: 20px;
}

.form__btn span {
  display: block;
  margin-right: 0.3em;
  transition: all 0.3s ease-in-out;
}

.form__btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.form__btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.form__btn:hover svg {
  transform: translateX(-3.5em) rotate(43deg) scale(2.1);
}

.form__btn:hover span {
  transform: translateX(12em);
}

.form__btn:active {
  transform: scale(0.95);
}

.pay__content h4 {
  font-size: 30px;
  font-family: "monta";
  font-weight: 700;
}
@media (max-width: 490px) {
  .pay__content h4 {
    padding-bottom: 20px;
  }
}

.pay__btn {
  color: white;
  background: #3685FB;
  width: 400px;
  height: 50px;
  font-size: 18px;
  font-family: "monta";
  font-weight: 500;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.2s linear;
}
@media (max-width: 490px) {
  .pay__btn {
    width: 100%;
  }
}

.pay__btn:hover {
  color: #3685FB;
  background: none;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  transition: 0.2s linear;
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
.guideline__parent {
  height: 90vh;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .guideline__block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1399px) {
  .guideline__box {
    margin-top: 200px;
  }
}
@media (max-width: 991px) {
  .guideline__box {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.guideline__box h5 {
  color: #00B3A0;
  font-size: 18px;
  font-family: "mont";
  font-weight: 400;
}
@media (max-width: 991px) {
  .guideline__box h5 {
    text-align: center;
  }
}
.guideline__box h1 {
  color: #002248;
  font-size: 42px;
  font-family: "mont";
  font-weight: 700;
}
@media (max-width: 991px) {
  .guideline__box h1 {
    text-align: center;
  }
}
@media (max-width: 470px) {
  .guideline__box h1 {
    font-size: 30px;
  }
}
.guideline__box p {
  font-size: 18px;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .guideline__box p {
    text-align: center;
  }
}

.success__header {
  height: 100vh;
}
@media (max-width: 1199px) {
  .success__header {
    height: 160vh;
  }
}
@media (max-width: 991px) {
  .success__header {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .success__header {
    height: 200vh;
  }
}

.success__child {
  display: flex;
  justify-content: end;
}
@media (max-width: 1199px) {
  .success__child {
    justify-content: center;
    margin-left: 100px;
  }
}
@media (max-width: 1150px) {
  .success__child {
    margin-left: 0;
  }
}
@media (max-width: 670px) {
  .success__child {
    margin-top: 100px;
  }
}
@media (max-width: 570px) {
  .success__child {
    margin-top: 250px;
  }
}
@media (max-width: 450px) {
  .success__child {
    margin-top: 360px;
  }
}
@media (max-width: 420px) {
  .success__child {
    margin-top: 500px;
  }
}
@media (max-width: 370px) {
  .success__child {
    margin-top: 600px;
  }
}
@media (max-width: 350px) {
  .success__child {
    margin-top: 700px;
  }
}

.success__title {
  font-family: "mont";
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1199px) {
  .success__title {
    text-align: center;
  }
}
@media (max-width: 515px) {
  .success__title {
    font-size: 35px;
  }
}

@media (max-width: 1199px) {
  .success__text-start {
    text-align: center;
    margin-top: 200px;
  }
}
@media (max-width: 670px) {
  .success__text-start {
    margin-top: 250px;
  }
}

.success__text {
  font-family: "mont";
  font-weight: 400;
  opacity: 0.8;
}
@media (max-width: 1199px) {
  .success__text {
    text-align: center;
  }
}

.success__img-block {
  position: absolute;
  z-index: 1;
  left: -140px;
  top: 170px;
}

#success__counter {
  background: none;
  list-style: none;
  display: flex;
}
@media (max-width: 1199px) {
  #success__counter {
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 570px) {
  #success__counter {
    flex-direction: column;
    align-items: center;
  }
}
#success__counter li {
  color: #3685FB;
  width: 200px;
  height: 150px;
  text-align: center;
  font-size: 30px;
  border: 2px solid rgba(54, 133, 251, 0.3215686275);
  border-radius: 10px;
  margin-right: 20px;
  font-family: "mont";
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 570px) {
  #success__counter li {
    margin-top: 20px;
  }
}
#success__counter li p {
  color: #222327;
  font-size: 18px;
  font-weight: 400;
}
#success__counter span.percent:after {
  content: "+";
  display: inline-block;
}

.large-container {
  position: static;
  max-width: 1580px;
  padding: 0px 30px;
  margin: 0 auto;
}

.testimonial-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 210px;
  overflow: hidden;
}
@media (max-width: 570px) {
  .testimonial-section {
    margin-top: 200px;
  }
}
@media (max-width: 440px) {
  .testimonial-section {
    margin-top: 350px;
  }
}
@media (max-width: 375px) {
  .testimonial-section {
    margin-top: 450px;
  }
}
@media (max-width: 355px) {
  .testimonial-section {
    margin-top: 550px;
  }
}
.testimonial-section:before {
  position: absolute;
  left: -200px;
  top: 22%;
  background-image: url(../img/ring-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 701px;
  height: 756px;
  content: "";
  animation: fa-spin 20s infinite alternate;
}
.testimonial-section .sec-title {
  position: relative;
  margin-bottom: 125px;
  top: -75px;
}
.testimonial-section .sec-title .testimonial-title {
  color: #00B3A0;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "mont";
  font-weight: 700;
}
.testimonial-section .sec-title h2 {
  color: #002248;
  font-size: 40px;
  font-family: "mont";
  font-weight: 400;
  margin-top: 20px;
}
.testimonial-section .testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 -50px;
}

.testimonial-block {
  position: relative;
  padding: 50px;
}
.testimonial-block .inner-box {
  padding: 80px 105px;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(226, 222, 232, 0.75);
}
@media (max-width: 420px) {
  .testimonial-block .inner-box {
    padding: 80px 50px;
  }
}
.testimonial-block .text {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 32px;
  color: #282331;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Muli", sans-serif;
}
.testimonial-block .info-box {
  position: relative;
  padding-left: 115px;
  padding-top: 10px;
}
.testimonial-block .info-box .thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 82px;
  width: 82px;
}
.testimonial-block .info-box .thumb img {
  border: 6px solid #e5e6fa;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  width: 100%;
  box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35);
}
.testimonial-block .info-box .name {
  position: relative;
  display: block;
  font-size: 21px;
  line-height: 1.2em;
  color: #382c4d;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Niramit", sans-serif;
}
.testimonial-block .info-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #8053f7;
  font-weight: 400;
  font-family: "Muli", sans-serif;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  right: 75px;
  bottom: 70px;
}
.testimonial-carousel .owl-next,
.testimonial-carousel .owl-prev {
  position: relative;
  display: inline-block;
  height: 75px;
  width: 75px;
  line-height: 75px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 300ms ease;
}
.testimonial-carousel .owl-next:hover,
.testimonial-carousel .owl-prev:hover {
  background-color: #00B3A0 !important;
  box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75);
}

.arrow-right,
.arrow-left {
  position: relative;
  display: inline-block;
  height: 9px;
  width: 43px;
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-right {
  background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}

.testimonial-section .thumb-layer {
  position: absolute;
  right: 30px;
  top: 120px;
}
.testimonial-section .thumb-layer .image {
  position: relative;
  margin-right: 0;
}
.testimonial-section .thumb-layer .image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 430px) {
  .testimonial-section .thumb-layer .image img {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .sec-title {
    margin-bottom: 50px;
  }
  .testimonial-block {
    padding: 0;
  }
  .testimonial-block .inner-box {
    box-shadow: none;
    border: 2px solid #f1f1f1;
  }
  .testimonial-carousel .owl-nav {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    text-align: center;
  }
  .testimonial-carousel .owl-next,
  .testimonial-carousel .owl-prev {
    border: 2px solid #f1f1f1;
  }
}
@media only screen and (max-width: 1366px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
@media (max-width: 870px) {
  .gallery__text {
    flex-direction: column;
  }
}
.gallery__text p {
  color: #00B3A0;
  font-size: 18px;
  font-family: "mont";
  font-weight: 700;
}
.gallery__text h1 {
  color: #002248;
  width: 507px;
  font-size: 40px;
  font-family: "mont";
  font-weight: 400;
}
@media (max-width: 540px) {
  .gallery__text h1 {
    width: 100%;
  }
}

.gallery__btn {
  color: white;
  width: 250px;
  height: 60px;
  background: #3685FB;
  border: none;
  border-radius: 10px;
  transition: 0.2s linear;
}
.gallery__btn:hover {
  color: #3685FB;
  background: none;
  border: 2px solid #3685FB;
  box-shadow: 0 0 0 5px rgba(59, 131, 246, 0.3725490196);
  transition: 0.2s linear;
}

.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 3500px;
}
.slider .slide img {
  width: 320px;
  height: 450px;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
}

.contacts__box {
  background: #e4edf9;
  border-radius: 40px;
}
@media (max-width: 991px) {
  .contacts__box {
    text-align: center;
  }
}
@media (max-width: 490px) {
  .contacts__box .row {
    flex-direction: column;
  }
}
.contacts__box .contacts__content {
  padding: 50px;
}
.contacts__box .contacts__content p {
  color: #00B3A0;
  font-size: 18px;
  font-family: "mont";
  font-weight: 700;
}
.contacts__box .contacts__content h1 {
  color: #002248;
  font-size: 50px;
  font-family: "mont";
  font-weight: 400;
}
@media (max-width: 450px) {
  .contacts__box .contacts__content h1 {
    font-size: 35px;
  }
}
.contacts__box .contacts__content h4 {
  color: black;
  font-size: 20px;
  opacity: 0.8;
  font-family: "mont";
  font-weight: 400;
}
.contacts__box .contacts__content a {
  color: #002248;
  text-decoration: none;
  font-family: "mont";
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
}
.contacts__box .contacts__content a:hover {
  color: #00B3A0;
}
@media (max-width: 490px) {
  .contacts__box .contacts__img img {
    width: 100%;
  }
}

.footer__content {
  padding: 50px;
  border-bottom: 1.5px solid rgba(105, 118, 135, 0.1019607843);
}
@media (max-width: 991px) {
  .footer__content {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .footer__content .footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer__content .footer__links {
  display: flex;
}
@media (max-width: 991px) {
  .footer__content .footer__links {
    justify-content: center;
    align-items: center;
  }
}
.footer__content .footer__links ul {
  list-style: none;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .footer__content .footer__links ul {
    flex-direction: column;
    justify-content: center;
  }
}
.footer__content .footer__links ul li {
  font-size: 18px;
  font-family: "mont";
  font-weight: 700;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .footer__content .footer__links ul li {
    margin-right: 0;
    margin-top: 20px;
  }
}
.footer__content .footer__links ul li a {
  color: #002248;
  text-decoration: none;
}
.footer__content .footer__links ul li a:hover {
  color: #3685FB;
}
.footer__content .footer__social {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 991px) {
  .footer__content .footer__social {
    justify-content: center;
    margin-top: 30px;
  }
}
.footer__content .footer__social i {
  color: #002248;
  font-size: 30px;
  margin-left: 20px;
}
.footer__content .footer__social i:hover {
  color: #00B3A0;
}

.footer__by {
  color: #000;
  font-size: 18px;
  opacity: 0.8;
  font-family: "mont";
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1399px) {
  .instruction__block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  .b__content p {
    font-size: 18px !important;
  }
}
@media (max-width: 1280px) {
  .nav__bar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}
@media (max-width: 1199px) {
  .trip__parrent {
    flex-direction: column-reverse;
  }
  .trip__child {
    display: flex;
    justify-content: center;
  }
  .trip__text-start {
    text-align: center;
    margin-top: 100px;
  }
  .trip__text {
    text-align: center;
  }
  .trip__btn-parrent {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
  }
  .gallery__btn-parrent {
    margin-top: 30px;
  }
  .instruction {
    position: relative;
    top: 300px;
  }
}
@media (max-width: 1100px) {
  .instruction {
    top: 650px;
  }
}
@media (max-width: 991px) {
  #menu-icon {
    display: block;
  }
  .nav__bar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 270px;
    /* height: 29vh; */
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all 0.5s ease;
  }
  .nav__bar a {
    color: white;
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
  }
  .nav__bar a:hover {
    color: var(--text-color);
    transform: translateY(5px);
  }
  .nav__bar a.active {
    color: var(--text-color);
  }
  .nav__bar.open {
    right: 2%;
  }
}
@media (max-width: 767px) {
  .carousel__btn {
    flex-direction: column;
  }
}
@media (max-width: 670px) {
  .success__img-block {
    left: 41px;
    top: 300px;
  }
}
@media (max-width: 535px) {
  .trip__text-start {
    margin-top: 280px;
  }
  .success__text-start {
    margin-top: 280px;
  }
}
@media (max-width: 450px) {
  .success__img-block {
    left: -10px;
  }
}
@media (max-width: 370px) {
  .trip__text-start {
    margin-top: 150px;
  }
  .success__text-start {
    margin-top: 350px;
  }
}
.modal-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}

.book__box.active .overlay {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}

.book__box.active .modal-box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-box i {
  font-size: 70px;
  color: #4070f4;
}

.modal-box h2 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  color: #333;
}

.modal-box h3 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-align: center;
}

.modal-box .buttons {
  margin-top: 25px;
}

.modal-box button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;
}

.success__page {
    background-image: url(../img/success-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
}
.success__page .success__block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}
.success__page .success__block .success__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.success__page .success__block .success__content h1 {
    color: white;
    font-size: 30px;
    font-family: "mont";
    font-weight: 700;
    text-align: center;
}
.success__page .success__block .success__content p {
    color: #B4B4B4;
    font-size: 20px;
    font-family: "mont";
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}
.success__page .success__block .success__content img {
    width: 50%;
    margin-top: 20px;
}
@media (max-width: 480px) {
    .success__page .success__block .success__content img {
        width: 80%;
    }
}
.success__page .success__block .success__content button {
    color: white;
    width: 140px;
    height: 40px;
    background: #3685FB;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: "mont";
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}/*# sourceMappingURL=style.css.map */
