@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-bold-rounded/css/uicons-bold-rounded.css");
:root {
  --root-element: 20px;
  --bg-gradient: linear-gradient(to right, #00a4c1, #0070cb);
  --text_white: #fff;
  --primary-color: #0070cb;
  --subheading_font: "Sour Gummy", sans-serif;
  --heading_font: "Audiowide", sans-serif;
  --body_font: "Poppins", sans-serif;
  --body-text: #5c5c5c;
}

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

body {
  font-family: var(--body_font);
  color: var(--body-text);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading_font);
}

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

.preLoader {
  width: 100%;
  position: fixed;
  z-index: 99999;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(1);
  align-items: center;
  background: var(--primary-color);
  transition: 0.5s;
  transform-origin: center;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 50px;
  height: 50px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.preLoader p {
  font-size: 1.5rem;
  color: var(--text_white);
}

.item_title {
  width: 100%;
  display: block;
  text-align: center;
}

.item_title h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

.header_main {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.header {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: inline-block;
  color: var(--text_white);
}

a.mailBtn {
  text-align: center;
  padding: 0.8125rem 1.25rem;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 0.625rem;
  background: var(--primary-color);
  transition: 0.3s linear;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 1px solid var(--text_white);
}

a.mailBtn span {
  color: var(--text_white);
  position: relative;
}
a.mailBtn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--bg-gradient);

  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}

a.mailBtn:hover::before {
  width: 120%;
}

.Banner_sec {
  width: 100%;
  display: flex;
  background: url("../images/bg_4.jpg") no-repeat top;
  background-size: cover;
  min-height: 34.6875rem;
  align-items: center;
  justify-content: start;
  position: relative;
}

.Banner_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  bottom: 0;
  right: 0;
  opacity: 0.3;
}

.banner_main {
  position: relative;
  z-index: 9;
  width: 100%;
  text-align: center;
}

.sub_heading {
  color: var(--text_white);
  font-size: 1.8rem;
  font-family: var(--subheading_font);
  display: inline-block;
}

.sub_heading span {
  display: inline-block;
  background: url("../images/brush_bg.png") no-repeat center;
  background-size: cover;
  padding: 0.75rem 1.25rem;
  margin: -0.75rem -1.25rem;
}

.banner_main h1 {
  font-size: 2.8rem;
  color: var(--text_white);
  margin: 1rem 0;
}

.banner_main p {
  color: var(--text_white);
  margin-bottom: 1rem;
}

.about_sec {
  width: 100%;
  float: left;
  padding: 5rem 0;
}

.about_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.about_left {
  width: 53%;
  float: left;
}

.about_left img {
  width: 100%;
  height: 100%;
}

.about_right {
  width: 45%;
  float: right;
}

.about_right h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about_right p {
  margin-bottom: 0.8rem;
  color: var(--body-text);
}

.top_dest_sec {
  width: 100%;
  float: left;
  padding: 3.125rem 0 5rem;
}

.top_dest_main {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 1.875rem;
}

.slider_element {
  position: absolute;
  width: 100%;
  top: -4px;
  left: 0;
  height: 1.875rem;
  z-index: 9;
}

.slider_element img {
  width: 100%;
  height: 100%;
}

.slider_element.bottom {
  top: auto;
  bottom: -4px;
  transform: rotate(180deg);
}
.dest_slider {
  width: 100%;
  float: left;
}

.dest_box {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.dest_box::before {
  content: "";
  position: absolute;
  top: -105%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  transition: 0.5s;
}

.dest_box:hover::before {
  top: 0;
}

.dest_image {
  width: 100%;
  height: 25rem;
  float: left;
}

.dest_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest_name {
  position: absolute;
  width: 9.375rem;
  height: 9.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0070cbad;
  left: 50%;
  top: -100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: var(--text_white);
  transition: 0.5s linear 0.3s;
  outline: 2px solid var(--text_white);
  outline-offset: 10px;
}

.dest_name h3 {
  font-size: 1.5rem;
  text-align: center;
}

.dest_box:hover .dest_name {
  top: 50%;
}

.dest_slider .slick-next,
.dest_slider .slick-prev {
  width: 3.4375rem;
  height: 3.4375rem;
  background: var(--primary-color);
  right: -1.875rem;
  z-index: 9;
  border-radius: 50%;
  position: absolute;
  outline: 5px solid #fff;
  top: 50%;
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
  transform-origin: center;
  transition: 0.3s;
}

.dest_slider .slick-prev {
  left: -1.875rem;
}

.dest_slider .slick-next::before,
.dest_slider .slick-prev::before {
  content: "\e08f";
  font-family: "uicons-bold-rounded";
  font-size: 1.7rem;
  color: var(--text_white);
}
.dest_slider .slick-prev::before {
  content: "\e08e";
}

.dest_slider .slick-next:hover,
.dest_slider .slick-prev:hover {
  transform: scale(1.1) translateY(-50%);
}

.deals_sec {
  width: 100%;
  float: left;
  padding: 3.125rem 0 5rem;
}

.deals_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3.125rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.deals_box {
  width: 48%;
  display: block;
  text-align: left;
  background: url("../images/offer_1.jpg") no-repeat center;
  background-size: cover;
  padding: 1.25rem;
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}

.deals_box.offer2 {
  background: url("../images/offer_2.jpg") no-repeat center / cover;
}

.deals_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0070cb8c;
  top: 0;
  left: 0;
  z-index: 0;
  /* border-radius: 12.5rem; */
}

.offer_txt {
  width: 100%;
  max-width: 65%;
  position: relative;
}

.offer_txt h3 {
  font-size: 1.8rem;
  margin-top: 1.6rem;
  color: var(--text_white);
}

.offer_txt p {
  color: #f3f3f3;
  margin-top: 1rem;
}

.offer_txt .mailBtn {
  font-size: 1.1rem;
  padding: 0.625rem 1.5625rem;
  margin-top: 1.3rem;
}

.vacation_spot_sec {
  width: 100%;
  float: left;
  padding: 3.125rem 0 2.5rem;
}

.vacation_spot_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2.5rem;
}

.vacation_spot_box {
  width: 33%;
  float: left;
  position: sticky;
  top: 80px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.vacation_spot_inner {
  width: 100%;
  height: 20.75rem;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden !important;
  position: relative;
}

.spot_image {
  width: 100%;
  height: 100%;
  float: left;
}

.spot_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vacation_spot_inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  top: -100%;
  left: 0;
  transition: 0.5s;
}

.spot_name {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0070cbad;
  color: var(--text_white);
  border-radius: 100%;
  transform: translateY(-50%);
  transition: 0.5s ease 0.8s;
}

.spot_name h3 {
  font-size: 1.5rem;
}

.vacation_spot_inner:hover::before {
  top: 0;
}

.vacation_spot_inner:hover .spot_name {
  top: 50%;
}

.newLetter_sec {
  width: 100%;
  padding-bottom: 6rem;
  float: left;
}

.newsletter_main {
  width: 100%;
  display: block;
  background: url("../images/newsletter_bg.jpg") no-repeat center / cover;
  margin-top: 2rem;
  border-radius: 20px;
  padding: 4.375rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.newsLetter_text {
  position: relative;
  width: 100%;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}

.newsLetter_text h2 {
  font-size: 2rem;
  color: var(--text_white);
  margin-bottom: 0.5rem;
  text-shadow: 4px 0px 0px var(--primary-color);
}

.newsLetter_text p {
  color: var(--text_white);
  margin-bottom: 1rem;
}

.footer_sec {
  width: 100%;
  float: left;
  padding: 2rem 0 0;
  position: relative;
  /* background: url("../images/footer_bg.jpg") center no-repeat; */
  background-size: cover;
  position: relative;
  background-color: var(--primary-color);
}

.footer_sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/texture.jpg") no-repeat center;
  background-size: cover;
  top: 0;
  opacity: 0.6;

  left: 0;
}

.footer_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
}

.footer_text {
  width: 100%;
  float: left;
  margin-bottom: 6rem;
}

.footer_sec h2 {
  color: var(--primary-color);
  font-size: 2rem;
  /* margin-bottom: 0.8rem; */
}

.footer_sec a {
  font-size: 1.25rem;
  color: var(--primary-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  gap: 10px;
}

.footer_sec a i {
  font-size: 2rem;
  margin-top: 10px;
}

.footer_sec a span {
  font-weight: bold;
  text-shadow: 2px 1px 0px #fff;
  transition: 0.3s;
}

.footer_sec a:hover span {
  text-shadow: -2px 1px 0px #fff;
}

.copyright {
  width: 100%;
  float: left;
  text-align: center;
  border-top: 2px solid var(--primary-color);
  position: relative;
}

.copyright p {
  color: var(--primary-color);
  margin: 0.5rem 0;
}

/* responsive css start here */

@media (max-width: 992px) {
  .Banner_sec {
    height: 28.6875rem;
  }
  .about_sec {
    padding: 5rem 0 1rem;
  }
  .about_left,
  .about_right {
    width: 100%;
  }
  .about_right {
    text-align: center;
  }

  .deals_sec {
    padding-bottom: 0rem;
  }

  .deals_box {
    width: 100%;
    margin-bottom: 1.5rem;
    background-position: center top;
  }

  .deals_box.offer2 {
    background-position: center top;
  }

  .top_dest_sec {
    padding: 3.125rem 0 1rem;
  }
  .vacation_spot_sec {
    padding-bottom: 0rem;
  }

  .newLetter_sec {
    padding-bottom: 3rem;
  }
  .newsletter_main {
    padding: 1rem 0;
  }
  .vacation_spot_box {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 530px) {
  html {
    font-size: 13px;
  }
  .offer_txt,
  .newsLetter_text {
    max-width: 100%;
  }
  .newsLetter_text {
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  html {
    font-size: 12px;
  }
  .sub_heading span {
    margin-top: 1rem;
  }
}

/* @KeyFrames */

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
