* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

p{
  display: inline-block;
}

main {
  font-family: "Poppins", serif;
  overflow-x: hidden;
}

.sec-spacer {
  padding: 60px 0;
}

.sm-spacer {
  padding: 20px 0;
}

:root {
  --pri-head-clr: #464e4f;
  --pri-btn-color: #e36414;
  --pri-sub-tit: #e36414;
  --pri-btn-text: #e36414;
  --pri-border-clr: #e36414;
  --sec-color: #082c4c;
  --highligh-clr: #e36414;
  --banner-bg: #e36414;
  --banner-text: #FFF
}

.highlight {
  color: var(--highligh-clr);
}

ul,
li {
  list-style: none;
}

.sub-title {
  color: var(--pri-sub-tit);
  font-weight: 300;
  letter-spacing: 2px;
}



.f-w {
  color: #FFF !important;
}

.bttn {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 38px;
  font-weight: 500;
  font-size: 14px;
}

.btn-fill {
  background-color: #082c4c;
  color: #fff;
  transition: all 0.3s linear;
}

.btn-fill:hover{
  background-color:#1d64ff ;
}

.btn-wrapper {
  display: flex;
  justify-content: space-evenly;
  margin-top: 16px;
}

.bttn>.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eeeeee4d;
  background-color: #ffffff1a;
  border-radius: 50%;
  /* padding: 5px; */
  margin-right: 5px;

}

.bttn>.icon i {
  font-size: 18px;
  margin: 5px;
}

.title {
  color: var(--pri-head-clr);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;

}



/* navbar */
.navbar {

  width: 100%;
  top: 0;
  z-index: 999;
  background-color: #FFF;
}

.navbar.sticky {
  position: fixed;
  top: 0;

  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar.sticky .navbar-nav .nav-link {
  color: #000;
}

.nav-main {
  border-bottom: 1px solid #ffffff41;
}

.navbar-nav .nav-link {
  color: #000000;
  margin: 0 12px;

}

.navbar-toggler {
  background-color: #e36414 !important;
  color: #fff !important;
}

@media (max-width:1199px) {
  .navbar-nav .nav-link {
    color: #000;
  }
}

@media(max-width:999px) {
  .navbar {
    position: relative !important;
    background-color: #fff;
  }
}


@media (min-width:999px) {
  .offcanvas-body {
    align-items: center;
  }
}

@media (max-width:500px){
  .navbar-brand img{
    width: 180px;
  }
}

/* banner */

.banner-slider {
  overflow: hidden;
  max-height: 100vh;
}

.carousel-item img {
  width: 100%;
  height: 100%;
}

.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 5;
}

.banner-slider .carousel-control-prev i,
.banner-slider .carousel-control-next i {
  border-radius: 50%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px dashed #fff;
}


.carousel-item {
  height: 100%;
  width: 100%;
}


.carousel-item .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.banner-content h1 {
  font-weight: 800;
  font-size: 3.438rem;
  color: #fff;
}

.banner-slider .carousel-indicators {
  z-index: 5;
}

.banner-slider .carousel-indicators li.active {
  background: rgb(255, 255, 255) !important;
}

.banner-slider .carousel-indicators li {
  background: rgb(139, 137, 137) !important;
}

@media screen and (max-width:999px) {
  .banner-content h1 {

    font-size: 1.563rem;

  }
}


.banner-slider .banner-content {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.banner-slider .carousel-item.active .banner-content {
  opacity: 1;
}

.banner-slider .carousel-item.active h1 {
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-slider .carousel-item.active img {
  animation: zoom 10s ease-in forwards;
  animation-delay: 1s;
}

/* @keyframes zoom{
    0%{
        transform:  scale(1);
    }
    100%{
        transform: scale(1.1);
    }
} */

.swiper-button-next,
.swiper-button-prev {
  margin: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffffff46;
  font-size: 20px;
  background-color: #ffffff38;
  border-radius: 50%;
  padding: 15px 20px;
}


@media (max-width:999px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.featured-imagebox-country {
  flex-grow: 1;
  text-align: center;
  overflow: visible;
  padding: 7px;
  box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
  border-radius: 5px;
  display: flex;
}


.featured-content {
  position: relative;
  text-align: start;
  padding: 20px 25px 23px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.ratings {
  color: rgb(255, 200, 0);
  font-size: 14px;
}

.cmt-box-view-content-inner {
  display: flex;
  flex-direction: column;

}

.featured-imagebox-country .featured-content-icon {
  transform: translateY(-65px);
  margin-bottom: -50px;
  transition: all .4s;
}


.featured-imagebox-country .featured-content-icon img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  border: 3px solid #fff;
  box-shadow: 0 0px 10px 0 rgba(18, 29, 39, 0.16);
}


.featured-imagebox-country .featured-title a {
  color: #000;
  
}

.featured-desc p {
  font-size: 16px;
  color: #464e4f;
}


/* destination */
.destination {
  background-color: var(--sec-color);
}

.dest-carou {
  display: flex;
}


.dest-carou>.item {
  flex-grow: 1;
}

.dest-carou .owl-stage {
  padding: 20px 0;
  display: flex;
}

.dest-carou .owl-stage .owl-item {
  flex-grow: 1;
}

.dest-carou .owl-stage .owl-item .item {
  height: 100%;
}

.dest-carou .item {
  display: flex;
}

.dest-carou .owl-nav {
  position: absolute;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
  background-color: red;
}


.dest-carou .owl-prev {
  position: absolute;
  left: 0;
  background-color: #f1f1f1 !important;

}

.dest-carou .owl-next {
  position: absolute;
  right: 0;
  background-color: #f1f1f1 !important;
}

.dest-carou .owl-next span,
.dest-carou .owl-prev span {
  padding: 20px;
  color: #1d64ff;
  font-size: 30px;
  font-weight: 600;
}

.cmt-btn {
  position: relative;
}

.cmt-btn::after {
  position: absolute;
  content: '';
  right: -20px;
  height: 2px;
  top: 50%;
  width: 15px;
  background-color: #1d64ff;
}

.cmt-btn::before {
  position: absolute;
  content: '>';
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}


/* services */
.service-box {
  text-align: center;
  overflow: hidden;
  background-color: #f7f7f7;
  /* box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10); */
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}

.service-box:hover  .service-thumbnal img{
  transform: scale(1.1);
}

.service-box .service-thumbnal img{
  transition: all 0.5s linear;

}

.service-box.sec .service-thumbnal {
  position: relative;
}

.service-box.sec .service-thumbnal .ratings {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-box .featured-title a {
  color: #000;
}


.service-thumbnal {

  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;

}

.abts-right-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;

  padding: 30px;
  padding-top: 60px;
}

.service-box .featured-title .head{
  margin-top: -35px;
  padding: 6px 0;
  background-color: #e36414;
  color: #FFF;
  border-radius: 100px;
}


.img1-box {
  grid-column: 3 / span 8;
  grid-row: 1;
  overflow: hidden;
  position: relative;
  background-color: rgb(245, 245, 245);
  height: fit-content;
  width: fit-content;
  border-radius: 50%;
  margin: 20px;
  top: 45%;
  transform: translateY(-50%);
}

.circle1 {
  grid-column: 3 / span 8;
  grid-row: 1;
  position: relative;
  height: 100%;
  width: 100%;

  border-radius: 50%;
  /* border: 1px solid rgb(227, 227, 227); */
  box-shadow: 0 0 2px #1d65ff67, inset 0 0 1px #1d65ff54;
  animation: rotate 100s linear infinite;
}


@keyframes rotate {
  0% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes rotate-clockwise {
  0% {
    transform: rotate(-360deg);
  }

  100% {
    transform: rotate(0);
  }
}

.circle2 {

  grid-column: 2 / span 10;
  grid-row: 1;
  position: relative;
  height: 100%;

  width: 100%;
  border-radius: 50%;
  /* border: 1px solid rgb(227, 227, 227); */
  box-shadow: 0 0 2px #1d65ff67, inset 0 0 1px #1d65ff54;
  animation: rotate-clockwise 90s linear infinite;


}

@media(max-width:999px) {
  .circle2 {
    height: 350px;

  }


}

.img1 {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.flg {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 30 !important;
}

.flag1 {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 16%;
  left: 10px;

}


.flag2 {
  height: 50px;
  width: 50px;
  position: absolute;
  right: 15%;
  top: 20px;
}

.flag3 {
  position: absolute;
  top: 30px;
  left: 75px;

  height: 25px;
  width: 25px;
}

.flag4 {
  position: absolute;
  height: 60px;
  width: 60px;
  bottom: -35px;

  left: 50%;
}

.flag5 {
  position: absolute;
  height: 70px;
  width: 70px;
  right: 0;
  bottom: 80px;
}


.background {
  -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
  background-color: #d6ebff;
  flex: none;
  inset: -100px 0;
  mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
  overflow: visible;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}


/* STICKY SOCIAL ICON */
.pulse i {
  position: relative;
  z-index: 20;
  top: 16px;
  font-size: 30px;
}

.pulse {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px !important;
  color: white;
  border-radius: 50px;
  text-align: center;

  z-index: 9000;
}

.pulse.btn-whats {
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 200, 0, 1);
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
}

.btn-call {
  height: 60px;
  bottom: 130px;
  right: 40px;
  background-color: #0077b6;
}

.pulse.pulse.btn-whats:hover {
  background-color: rgba(0, 150, 0, 1);
  color: white;
}

.my-float {
  margin-top: 15px;
}

@-webkit-keyframes pulse-btn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}

.pulse a {
  color: #fff;
}





/* TESTIMONIAL */
.testimonial {
  position: relative;

}

.testimonial::after {
  content: '';

}

.gradient-background {
  position: absolute;
  z-index: 1;
  border-radius: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 38.40px auto;
  background-image: url(../images/dot.svg);
  border: 0;
}

.gradient {
  -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%) add;
  flex: none;
  inset: 0;
  mask: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%) add;
  opacity: .12;
  position: absolute;
  z-index: 1;

}

.testimonial .wrapper {
  position: relative;
  z-index: 5;
}

.background {
  -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
  background-color: #eaf1f8;
  flex: none;
  inset: -100px 0;
  mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.testi-content {
  background-color: #fff;
  height: 100%;
  min-height: 200px;
  padding: 60px 30px 20px 30px;
}

.testimonial>.container {
  position: relative;
  z-index: 2;
}

.testimonial-carousel {

  max-height: none !important;
  display: flex !important;
  height: 100% !important;
}

.testimonial .owl-carousel .owl-stage-outer {
  height: max-content !important;

  max-height: none !important;
  height: 100% !important;
}

.testimonial .item {
  height: max-content;
}

.testimonial .owl-item {
  padding: 40px 0;
}

.testimonial .testi-content {
  position: relative;
  margin: 16px;
  margin-top: 0 !important;
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.07);
  height: fit-content;
}

.testimonial .testi-content .quote {
  position: absolute;
  z-index: 20;
  height: 90px;
  width: 90px;
  top: -50px;
  right: 0;
}

.athr-text {
  font-style: italic;
  color: rgb(113, 113, 113);
}

.athr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.place {
  color: rgb(113, 113, 113);
  font-size: 14px;
  margin-left: 10px;
}

.athr .athr-img {
  height: 50px;
  width: 50px;
}

.testimonial .rating i {
  font-size: 19px;
  color: rgb(255, 213, 0);
}


@media(max-width:999px) {
  .testimonial .testi-content {

    margin: 0;

  }

  .testimonial-carousel {
    padding: 0;

  }
}



.footer {
  background-color: #011f31;
  margin-top: -7px;
}

.footer-title {
  color: #FFF;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
  width: fit-content;
}


.footer-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  background-color: var(--pri-border-clr);
  height: 2px;
  width: 40%;
  border-radius: 20px;
}

.footer .links{
  display: inline-block;
}

.links li {
  position: relative;
  margin: 8px 0;

}

.links li::before {
  content: '>';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ebebeb;
}

.links>li>a {
  color: #FFF;

}

.footer-bottom {
  border-top: 1px solid #ffffff26;
}

.footer-bottom>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width:999px) {
  .footer-bottom>.container {
    flex-direction: column;
  }
}

.footer-bottom span {
  color: #b7bbbb87;
  font-size: 14px;
}

.footer-bottom span a {
  color: #ffffffa6;
}

.footer-widget{
  height: 100%;
}

.footer-widget .adrs {
  display: flex;
  gap: 16px;

}

.footer-widget .adrs i {
  color: #FFF;
}

.footer-widget .adrs-text {
  color: #b7bbbb;
}

.footer-widget .adrs-text>a {
  color: #b7bbbb;
}

.footer-widget p {
  color: #b7bbbb87;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  align-items: center;

}

.footer-socials .icon {
  margin: 0 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.footer-socials .icon a {
  font-size: 24px;
  color: #FFF;
  padding: 10px;
}

/* about us */


.abts-wrapper {

  display: flex;
  justify-content: center;

}
.abt-ftr-inner{
  height: 100%;
}

.abts-wrapper .abts-right-inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 80%;
}

@media (max-width:999px){
  .abts-wrapper .abts-right-inner {
    
    width: 95%;
  }
}

.abts-wrapper .abts-right-inner  .abt-img-patrn{
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 2;
  object-fit: cover;
}

.abts-wrapper .abts-right-inner img {
  max-height: 500px;
}

.abt-ftr {
  position: relative;
  z-index: 5;
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px;
  margin-top: 20px;
  border-radius: 10px;
}


@media (min-width:1200px){
  

  .abt-ftr-wrapper{
    margin-top: -140px;
  }
  
}


.abt-ftr-btn a {
  color: var(--pri-btn-color) !important;
}

.abt-ftr-text {
  margin-bottom: 0 !important;
  filter: opacity(0.8);
  font-size: 15px;
}

.abt-note .note-content {
  display: flex;
  align-items: center;
}

.abts-left-inner p {
  filter: opacity(0.7);
}

.abt-note .note-no {
  background-color: var(--pri-sub-tit);
  color: #FFF;
  padding: 5px 18px;
  border-radius: 50%;
  margin-right: 12px;
}

.note-text {
  filter: opacity(0.8);
}

/* property */
.prpty {
  background-color: var(--sec-color);
}

.prpty-icon {
  height: 50px;
  width: 50px;
  margin-bottom: 14px;

}

.prpty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 30px 30px;
  border: 1px solid #ffffff51;
  border-radius: 30px;
  border-top-width: 2px;
  border-bottom-width: 2px;
  transition: all 0.5s linear;
}

.prpty-box>span {
  color: #FFF;
  filter: opacity(0.8);
}

.prpty-box:hover {
  border-top: 2px solid var(--pri-border-clr);
  border-bottom: 2px solid var(--pri-border-clr);
}

.prpty-title {
  color: #FFF;
  font-weight: 500;
}

.prpty-btn a {
  padding: 10px 16px;
  color: var(--pri-btn-text);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.prpty-btn a > .no{
  font-weight: 700;
}


/* BANNER CONTACT */
.banner-contact {
  position: relative;
  background-image: url(../images/banner.jpg);
  height: 500px;
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.banner-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000bb;
}

.banner-contact-text {
  position: relative;
}

.banner-title {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
}

.banner-desc {
  color: #ced4da;
}