@font-face {
    font-family: 'Briem Hand';
    src: url('../fonts/BriemHand-Bold.woff2') format('woff2'),
        url('../fonts/BriemHand-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html{
  font-size: 62.5%;
}
img{
  max-width: 100%;
  height: auto;
}
body{
  font-family: "Poppins", sans-serif;  
  font-size: 1.6rem;
  color: #3F3D3D;
}
svg.fair_icon {
    fill: none;
    width: 1.6rem;
    height: 1.6rem;
}
svg.fair_icon.icon_star.empty{
  opacity: 0.5;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal; 
  color: #09283C; 
  margin: 0 0 1.2rem;
}
h2, h2{
  font-size: 4.4rem;
  line-height: 1.1;
}
h3, .h3{
  font-size: 3rem;
  line-height: 1.1;
}
img{
  transition: .4s;
}
.title-wrapper-with-link{
  margin-bottom: 4rem;
}
.subheading{
  font-family: "Poppins", sans-serif;  
  text-transform: uppercase;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  margin-bottom: 1.2rem;
}
.text-center .subheading{
  justify-content: center;
}
.subheading svg.fair_icon{
  width: 1.8rem;
  height: 1.8rem;
}
.font-secondary{
  font-family: "Just Another Hand", cursive;  
}
.font-bg-text{
  font-family: 'Briem Hand';
}
.container-fluid{
  --bs-gutter-x: 3rem;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
  max-width: 1464px;
  --bs-gutter-x: 3rem;
}
.row{
  --bs-gutter-x: 3rem;
}

.form-group .field{
  margin-bottom: 2.5rem;
}
.form-group .field .form-control{
  font-size: 1.6rem;
  padding: 1rem .5rem;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #CED7E0;
  box-shadow: none !important;
}
.form-group .field .form-control.error{
  margin-top: 0;
}
.form-group .field textarea.form-control{
  height: 13rem;
  resize: none;
}

.button-wrapper{
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: center;
}
.section .button-wrapper:only-child{
  margin-top: 0;
}


.btn{
  padding: 1.5rem 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  font-size: 1.6rem;
  border-radius: 4rem;
  line-height: 2.6rem;
  border: none;
  text-transform: capitalize;
  transition: 0.4s;
}
.btn svg.fair_icon{
  width: 2.4rem;
  height: 2.4rem;
}
.btn.btn-primary{
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
  color: #000;
}
.btn.btn-primary:hover{
  background: linear-gradient(104.61deg, #FFC8A2 -19.26%, #F4A261 92.94%);
  color: #000;
}
.btn.btn-light{
  background: #F1F1F1;
}
.btn.btn-light:hover{
  background: linear-gradient(104.61deg, #FFC8A2 -19.26%, #F4A261 92.94%);
  color: #000;
}

.light-bg{
  background: #FBFBFA;
}

.site-header{
  color: #fff;
  padding: 2.2rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s;
}
.site-header.scrolled{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, .8) 100%);
  padding: .6rem 0;
}
.site-logo{
  display: flex;
  align-items: center;
  column-gap: 3.6rem;
  max-width: 50rem;
}
.site-header a{
  color: #fff;
  text-decoration: none;
}
.site-header a:hover{
  color: currentColor;
}
.drawer-menu{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1031;
  width: 100%;
  height: 100% !important;
}
.drawer-overlay{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.menu-wrapper{
  background: linear-gradient(0deg, #09283C, #09283C), radial-gradient(122.85% 172.17% at 100% 0%, rgba(226, 187, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  box-shadow: 0px 1px 24px 0px rgba(255, 255, 255, 0.05);
  height: 100%;
  max-width: 34.4rem;
  margin-left: auto;
  border-radius: 5rem 0 0 0;
  padding: 4rem 6rem 4rem 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  transform: translateX(120%);
  transition: 0.4s;
}
.show .menu-wrapper{
  transform: translateX(0);
}
.menu-wrapper .navbar-nav{
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}
.menu-wrapper .navbar-nav li{
  border-bottom: 1px solid rgba(230, 230, 230, 0.1);
  margin-bottom: 2rem;
}
.menu-wrapper .navbar-nav li .nav-link{
  padding: 1rem 0 1rem 2rem;
}
.menu-wrapper .navbar-toggler{
  margin-left: auto;
  position: sticky;
  top: 0;
  background: #09283C;
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  z-index: 1;
  color: rgba(156, 163, 175, 1);
}
.menu-wrapper .bottom-info{
  margin-top: 3rem;
  padding-left: 2rem;
}
.drawer-menu .navbar-nav .dropdown-menu {
  position: static !important;
  width: 100%;
  min-width: 0;
  transform: none !important;
  background: none;
  border: none;
  padding: 0 0 0 4rem;
}
.drawer-menu .navbar-nav .dropdown-menu li:last-child{
  border-bottom: none;
}
.drawer-menu .navbar-nav .nav-item.dropdown{
  width: 100%;
  flex-wrap: wrap;
}
.drawer-menu .navbar-nav .dropdown-menu li:not(:last-child){
  border-bottom: none;
}
.drawer-menu .navbar-nav .dropdown-menu li a{
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  color: #fff;
  text-decoration: none;
}
.drawer-menu .navbar-nav .nav-item.dropdown .dropdown-toggle{
  padding: 0;
  top: 1rem;
}
.drawer-menu .navbar-nav .dropdown-menu li a.active{
  background: none;
  color: #fff !important;
}

.site-header .navbar-nav{
  column-gap: 3rem;
  padding: 0 2rem;
}
.site-header .navbar-nav .nav-link{
  font-size: 1.6rem;
  font-weight: 500;
  padding: .8rem;
}
.site-header .navbar-nav .nav-item:last-child .nav-link{
  animation: blinkText infinite 2s;
}
.call-info a{
  color: currentColor;
}
.site-header .navbar-nav .nav-link:hover, .call-info a:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.navbar-nav .nav-link.show{
  color: #fff;
}
.navbar-nav .nav-link.active{
  color: #E5C479;
}
.navbar-nav .nav-item.dropdown{
  display: inline-flex;
}
.navbar-nav .nav-item.dropdown .nav-link:not(.dropdown-toggle){
  padding-right: 3rem;
}
.navbar-nav .nav-item.dropdown .dropdown-toggle{
  padding: .8rem 0;
  position: absolute;
  right: 0.8rem;
}
.site-header .navbar-nav .nav-item.dropdown .dropdown-toggle{
  pointer-events: none;
}
.navbar-nav .nav-item.dropdown .dropdown-toggle svg.fair_icon{
  width: 1.2rem;
  height: 1.2rem;
}
.site-header .navbar-nav .nav-item.dropdown:hover .dropdown-menu{
  display: block;
}
.navbar-nav .dropdown-menu{
  min-width: 22.2rem;
  font-size: 1.6rem;
  top: 100%;
}
.navbar-nav .dropdown-menu li:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar-nav .dropdown-menu li a{
  padding: 1rem 1.5rem;
  display: inline-block;
  width: 100%;
  color: #000;
}
.navbar-nav .dropdown-toggle:after{
  content: none;
}
.navbar-nav .dropdown-menu li a.active{
  color: #E5C479 !important;
}

.dropdown-item.active, .dropdown-item:active{
  background: #fff;
  color: rgba(9, 40, 60, 1) !important;
}
.dropdown-item:focus, .dropdown-item:hover{
  background: none;
}

.site-header .btn.btn-primary{
  background: #fff;
  text-transform: capitalize;
  border: 1px solid #fff;
  line-height: 2.4rem;
}

.site-header .btn.btn-primary:hover{
  background: #09283C;
  color: #fff;
}
.site-header .icon-btn{
  flex: 0 0 5.6rem;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 5.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .2rem;
  border: none;
}
.site-header .icon-btn svg.fair_icon{
  width: 2.8rem;
  height: 2.8rem;
}

.call-info{
  column-gap: 1rem;
  margin-bottom: 2rem;
}
.call-info span{
  font-size: 1.2rem;
  color: rgba(156, 163, 175, 1);
}
.call-info .icon{
  width: 4.5rem;
  height: 4.5rem;
  color: rgba(244, 162, 97, 1);
}
.call-info .icon svg.fair_icon{
  width: 100%;
  height: 100%;
}
.call-info a{
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}

.main-slider{
  padding-bottom: 16rem;
}
.main-slider .banner-slide{
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  color: #fff;
  height: auto;
}
.main-slider .banner-slide :is(.container, .row, .container-fluid){
  height: 100%;
}
.main-slider .banner-slide .slide-img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: ellipse(130% 100% at 50% 0%);
  z-index: -1;
  background: #000;
}
.main-slider .banner-slide .slide-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .2;
}

.main-slider :is(h1, h2, h3, h4){
  color: #fff;
}
.main-slider .banner-content{
  max-width: 70rem;
  padding-top: 15rem;
  padding-bottom: 15rem;
  align-self: center;
}
.main-slider h2{
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.main-slider h1{
  font-size: 6rem;
  line-height: 7.5rem;
}
.main-slider h1 strong{
  font-weight: normal;
  color: #F4A261;
}
.main-slider .button-wrapper{
  margin-top: 3.2rem;
}
.main-slider .btn.btn-primary:not(:hover){
  background: #fff;
}
.main-slider .btn.btn-outline-primary {
  border: 1px solid #fff;
  color: #fff;
  line-height: 2.4rem;
}
.main-slider .btn.btn-outline-primary:hover{
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
  color: #000;
}
.main-slider .banner-right-img{
  margin-bottom: -16rem;
  margin-right: -6rem;
  padding-top: 15rem;
}
.main-slider .banner-right-img img{
  margin-right: -14.5rem;
}
.main-slider .bg-text{
  position: absolute;
  top: 4.7rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18rem;
  color: #fff;
  opacity: 0.04;
  pointer-events: none;
}

.section{
  padding: 4rem 0;
}

.about-section{
  position: relative;
  z-index: 0;
  /*background-image: url(../images/about-shadow.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;*/
  padding-top: 0;
}
.about-section:after {
  content: '';
  width: 100%;
  height: 180%;
  position: absolute;
  top: 30%;
  right: 0;
  z-index: -1;
  background: url(../images/about-shadow.png) no-repeat left center;
  background-size: auto 100%;
  transform: translateY(-50%);
  pointer-events: none;
}
.about-section:before{
  content: '';
  position: absolute;
  top: -90px;
  left: 0;
  width: 380px;
  aspect-ratio: 1 / 1;
  background: url(../images/gp.svg) no-repeat;
  background-size: 100%;
  pointer-events: none;
  z-index: -1;
}

.about-section .bg-text{
  position: absolute;
  top: -10rem;
  left: 50%;
  opacity: 0.03;
  font-size: 18rem;
  line-height: 1.5;
  pointer-events: none;
}

.about-images{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  column-gap: 2.5rem;
  row-gap: 1.6rem;
  max-width: 550px;
  position: relative;
  z-index: 0;
}
.about-images:before{
  content: '';
  position: absolute;
  bottom: 40px;
  left: -130px;
  width: 150px;
  aspect-ratio: 1 / 1;
  background: url(../images/gp-2.svg) no-repeat;
  background-size: 100%;
  pointer-events: none;
  z-index: -1;
}
.about-images > div{
  overflow: hidden;
}
.about-images img{
  object-fit: cover;
}
.about-images > div:hover img{
  transform: scale(1.1);
}
.about-images .about-first{
  grid-row: span 2 / span 2;
  border-radius: 20rem 20rem 0 20rem;
}

.about-images .about-second{
  border-radius: 20rem 20rem 20rem 0;
}
.about-images .about-third{
  border-radius: 20rem 0 20rem 20rem;
}

.about-images .about-first img{
  width: 100%;
  height: 100%;
  border-radius: 20rem 20rem 0 20rem;
  transform-origin: top left;
}
.about-images .about-second img{
  aspect-ratio: 1/1;
  border-radius: 20rem 20rem 20rem 0;
  transform-origin: top right;
}
.about-images .about-third img{
  aspect-ratio: 1/1;
  border-radius: 20rem 0 20rem 20rem;
  transform-origin: bottom left;
}

.business-places-section{
  background-image: url(../images/bg-city.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.business-places-section:before{
  content: '';
  background: #fff;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.swiper-slider-fullview{
  overflow: hidden;
}
.swiper-slider-fullview .swiper{
  overflow: initial;
}
.swiper-slider-fullview .swiper .swiper-pagination{
  position: static;
  line-height: 1;
  margin-top: 4rem;
}
.swiper-slider-fullview .swiper .swiper-pagination .swiper-pagination-bullet{
  width: .8rem;
  height: .8rem;
  border-radius: .8rem;
  border: 1px solid #09283C;
  background-color: #09283C;
  opacity: 1;
}
.swiper-slider-fullview .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 2.4rem;
  background-color: transparent;
}
.place-item{
  max-width: 44rem;
  height: auto;
}
.place-item .place-item-inner{
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.place-item .place-img{
  display: inline-block;
  width: 100%;
  padding-top: 95%;
  overflow: hidden;
  border-radius: 2.5rem;
  position: relative;
}
.place-item .place-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
  transform-origin: bottom left;
}
.place-item:hover .place-img img{
  transform: scale(1.1);
}
.place-item .place-info{
  margin-top: -9rem;
  position: relative;
  background-color: #fff;
  padding: 2rem;
  margin-right: -4rem;
  margin-left: 4rem;
  box-shadow: 0px 1px 24px 0px #0000000D;
  border-radius: 2rem;
  font-size: 1.4rem;
  flex: 1 1 auto;
}
.place-item .place-info .icon{
  position: absolute;
  top: 0;
  right: 4rem;
  border-radius: 0 0 4rem 4rem;
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
}
.place-item .place-info .icon:hover{
  background: linear-gradient(104.61deg, #FFC8A2 -19.26%, #F4A261 92.94%);
}
.place-item .place-info h3{
  font-size: 2.4rem;
  padding-right: 85px;
}
.place-item .place-info h3 a{
  text-decoration: none;
  color: currentColor;
}
.place-item .place-info :is(.place-location, .place-time){
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1.2rem;
}
.place-item .place-info .place-description{
  margin-top: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  vertical-align: middle;
}


.service-section{
  background: url(../images/bg-2.png) #09283C no-repeat bottom center;
  background-size: 100%;
  color: #fff;
  position: relative;
  z-index: 0;
}
.service-section .bg-text{
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18rem;
  color: #fff;
  opacity: 0.04;
  pointer-events: none;
}
.service-section:after{
  content: '';
  position: absolute;
  left: 2.1rem;
  bottom: 11.1rem;
  background: url(../images/service-graphice-1.png) no-repeat;
  z-index: -1;
  width: 16.5rem;
  height: 24.1rem;
  pointer-events: none;
}
.service-section hr{
  border-top: 2px solid rgba(253, 248, 237, 0.2);
  margin: 6rem 0;
}
.service-section .services-slider{
  background: url(../images/map.png) no-repeat center;
  background-size: auto 100%;
  margin-bottom: 4rem;
}
.service-section :is(h2, h3){
  color: #fff;
}
.service-item .service-item-inner{
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding-top: 138%;
  z-index: 0;
  overflow: hidden;
  border-radius: 50rem;
}
.service-item .service-item-inner:before{
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.service-item .service-item-inner:after{
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
}
.service-item .service-item-inner img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item .service-item-inner:hover img{
  filter: blur(8px);
}
.service-item .service-item-inner .service-content{
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  margin-bottom: -8rem;
  transition: 0.4s;
}
.service-item .service-item-inner:hover .service-content{
  top: 0;
  margin-bottom: 0;
}
.service-item .service-item-inner .service-content h3{
  font-size: 3rem;
  color: #fff;
  margin-bottom: 3rem;
}
.service-item .service-item-inner .service-content .service-description{
  height: 7.2rem;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.col-heading-content{
  max-width: 45%;
}
.website-overview{
  max-width: 55%;
}
.website-overview ul{
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  column-gap: 3rem;
  row-gap: 3rem;
}
.website-overview li{
  background: #072030;
  border-radius: 1rem;
  font-weight: 500;
  padding: 3.5rem 2.5rem 1.5rem;
  flex: 1 1 auto;
  width: calc(33.33% - 3rem * 2 / 3); 
  min-height: 19.7rem;
}
.website-overview li .number{
  font-size: 5rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
}


.about-holiday-sec{
  position: relative;
  z-index: 0;
}
.about-holiday-sec:after{
  content: '';
  width: 100%;
  height: 160%;
  position: absolute;
  bottom: -80%;
  right: 0;
  z-index: -1;
  background: url(../images/about-shadow-right.png) no-repeat right center;
  background-size: auto 100%;
  pointer-events: none;
}

.testimonial-sec{
  overflow: hidden;
  position: relative;
  padding: 0;
  background: url(../images/testimonial-vector.png) no-repeat top right;
}
.testimonial-sec .outer-img{
  background: #fff;
  position: relative;
  z-index: 2;
}
.left-img{
  float: right;
  width: 50vw;
}

.swiper.testimonial-slider{
  overflow: initial;
}

:is(.swiper-button-next, .swiper-button-prev):after{
  content: none;
}
:is(.swiper-button-next, .swiper-button-prev){
  position: static;
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
  width: 4.8rem;
  height: 4.8rem;
  color: #000;
  transform: none;
  margin: 4rem 0 0;
  box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.06);
}
:is(.swiper-button-next, .swiper-button-prev).swiper-button-disabled{
  opacity: 1;
  background: #fff;
}
:is(.swiper-button-next, .swiper-button-prev) svg.fair_icon{
  width: 1.8rem;
  height: 1.8rem;
}
.swiper-button-next{
  margin-left: 1rem;
}

.testimonial-slider .swiper-slide{
  height: auto;
}
.testimonial-slider .swiper-slide.testimonial-item:not(.swiper-slide-active){
  opacity: 0;
  visibility: hidden;
}
.testimonial-item-inner {
    box-shadow: 18px 15px 35px 0px #00000017;
    background: #fff;
    padding: 3.2rem 3.6rem 3.2rem 2.4rem;
    border-radius: 2.4rem;
    height: 100%;
}
.testimonial-item .user-img{
  width: 5.6rem;
  height: 5.6rem;
}
.testimonial-item .user-img img{
  object-fit: cover;
  aspect-ratio: 1/1;
}
.testimonial-item .user-info{
  padding-left: 1.6rem;
}
.testimonial-item .user-info h5{
  font-size: 1.8rem;
  margin: 0 0 .8rem;
}
.testimonial-item .user-info .review{
  line-height: 1;
  display: inline-flex;
  align-items: center;
  color: #FFBE40;
}
.testimonial-item .testimonial-content{
  margin-top: 2.4rem;
  font-size: 1.5rem;
}
.testimonial-item .testimonial-content h4{
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin: 0 0 1.2rem;
}
.testimonial-item .testimonial-content p:last-child{
  margin-bottom: 0;
}


.gallery-sec{
  background: url(../images/about-shadow.png) no-repeat left top;
  background-size: auto 100%;
  position: relative;
  z-index: 0;
}
.gallery-sec:after{
  content: '';
  width: 184px;
  height: 484px;
  position: absolute;
  right: 0;
  bottom: 80px;
  background: url(../images/net.png) no-repeat right top;
  pointer-events: none;
  z-index: -1;
}
.galleries{
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  column-gap: 1.6rem;
  row-gap: 1.6rem;
}
.galleries .gallery-item{
  display: flex;
  align-items: center;
  justify-content: center;
}
.galleries .gallery-item .image-wrapper{
  display: inline-block;
  width: 100%;
  padding-top: 80%;
  border-radius: 2.4rem;
  overflow: hidden;
  position: relative;
}
.galleries .gallery-item img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  object-fit: cover;
  transition: 0.4s;
}
.galleries .gallery-item:hover img{
  transform: scale(1.1);
}
.galleries :is(.gallery-item:nth-child(1), .gallery-item:nth-child(3), .gallery-item:nth-child(5)){
  grid-row: span 2 / span 2;
}
.galleries .gallery-item:nth-child(3) .image-wrapper{
  padding-top: calc(160% + 1.6rem);
}
.mt-40{
  margin-top: 4rem;
}





.site-footer{
  background: url(../images/footer-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 0;
  color: #fff;
}
.site-footer:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(1, 18, 28, 0.7), rgba(1, 18, 28, 0.7)), linear-gradient(180deg, rgba(1, 18, 28, 0.5) 0%, #01121C 93.95%);
  z-index: -1;
}
.site-footer a{
  color: #fff;
  text-decoration: none;
}
.site-footer ul{
  margin-bottom: 0;
}
.site-footer .top-logos{
  margin: 2.5rem 0 2rem;
}
.site-footer .top-logos ul{
  width: 100%;
}
.site-footer .top-logos ul:before, .site-footer .top-logos ul:after{
  content: '';
  flex: 1 1 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.site-footer .top-logos img{
  top: 0;
  position: relative;
}
.site-footer .top-logos img:hover{
  top: -1rem;
}
.footer-block-heading{
  font-size: 2.6rem;
  text-transform: capitalize;
  font-family: "Marcellus", serif;
  margin-bottom: 2rem;
}
.footer-block-heading:after{
  content: '';
  display: block;
  width: 3.8rem;
  height: .2rem;
  background: #fff;
  border-radius: 1px;
  margin-top: .6rem;
}
.footer-links li:not(:last-child){
  margin-bottom: 1.6rem;
}
.footer-links li a{
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.footer-links li a:hover{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.footer-links li a svg.fair_icon{
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  margin-right: 1.6rem;
}

.social-links{
  column-gap: 2rem;
  row-gap: 1rem;
}
.social-links li{
  margin-bottom: 0;
}
.social-links a{
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-links a:hover{
  background: #fff;
  color: #09283C;
}
.social-links a svg.fair_icon{
  width: 1.8rem;
  height: 1.8rem;
}
.facebook{
  background: #3D5A96;
  color: #fff;
}
.instagram{
  background: linear-gradient(180.19deg, #7024C4 0.17%, #C21975 41.57%, #C74C4D 70.15%, #E09B3D 99.83%);
  color: #fff;
}
.linkedin{
  background: #007AB7;
  color: #fff;
}
.youtube{
  background: #F52929;
  color: #fff;
}



.copyight{
  padding-bottom: 2rem;
}
.copyight p{
  margin: 0;
}
.copyight hr{
  margin: 2.5rem 0 2.5rem;
  border-color: rgba(255, 255, 255, .3);
}

/* listing */
section.section.place-listing{
  padding-top: 11.5rem;
  background-image: url(../images/texture-bg.png);
}
.exhibitors-package{
  background-image: url(../images/texture-bg.png);
}
.place-list-item{
  border: 1px solid rgba(230, 230, 230, 0.7);
  padding: 1.4rem 0;
  border-radius: 2rem;
  margin-bottom: 3rem;
  background: #fff;
}
.place-list-item .place-img{
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
}
.place-list-item .place-img img{
  aspect-ratio: 1/.6;
  border-radius: 2rem;
  width: 100%;
  object-fit: cover;
}
.place-list-item .place-img:hover img{
  transform: scale(1.1);
}
.place-list-item .col-left{
  width: 40%;
  max-width: 40%;
}
.place-list-item .col-right{
  width: 60%;
  max-width: 60%;
}
.place-list-item .place-info .icon{
  position: absolute;
  top: 0;
  right: 4rem;
  border-radius: 0 0 4rem 4rem;
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
}
.place-list-item .place-info .icon:hover{
  background: linear-gradient(104.61deg, #FFC8A2 -19.26%, #F4A261 92.94%);
}
.place-list-item .place-info h3{
  font-size: 2.4rem;
}
.place-list-item .place-info h3 a{
  text-decoration: none;
  color: currentColor;
}
.place-list-item .place-info h3 a:hover{
  color: #363539;
  font-weight: 600;
}
.place-list-item .place-info :is(.place-location, .place-time){
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1.2rem;
}
.place-list-item .place-info .place-description{
  margin-top: .8rem;
  width: 100%;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.place-list-item .place-info .packages{
  margin-top: 3rem;
}
.place-list-item .place-info .packages ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
  padding: 0;
  margin-bottom: 0;
  column-gap: 1.2rem;
  row-gap: .8rem;
}
.place-list-item .place-info .packages ul li a{
  padding: 1.2rem 2rem;
  background: #F1F1F1;
  border-radius: 4rem;
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  text-align: center;
  border: 1px solid currentColor;
}
.place-list-item .place-info .packages ul li.active a, .place-list-item .place-info .packages ul li:hover a{
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
}
.post-navigation a{

  color: currentColor;

  text-decoration: none;

}

.sidebar .recent-posts a{

  color: currentColor;

  text-decoration: none;

}

.sidebar .recent-posts img{

  vertical-align: middle;

}

.sidebar h3{

  font-size: 2rem;

  border-bottom: 1px solid #ddd;

  padding-bottom: 1rem;

  margin-bottom: 2rem;

}

.page-banner{
  background: #01121C;
  color: #fff;
  padding: 12rem 0 16rem;
  position: relative;
}
.page-banner.with-search{
  padding: 12rem 0 4.4rem;
}
.page-banner > img.img-banner{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .2;
}
.page-banner .container{
  position: relative;
  z-index: 2;
}
.page-banner h1{
  font-size: 5rem;
  color: #fff;
  margin: 0;
}
.page-banner .col-12 + *{
  margin-top: 3rem;
}
.page-banner .col-12:not([aria-label="breadcrumb"]){
  margin-top: 5rem;
}
.page-banner .breadcrumb{
  color: #fff;
  margin-bottom: 0;
}
.page-banner .breadcrumb .breadcrumb-item{
  color: #E5C479;
}
.page-banner .breadcrumb .breadcrumb-item a{
  color: #fff;
  text-decoration: none;
}
.page-banner .breadcrumb .breadcrumb-item a:hover{
  color: #E5C479;
}
.breadcrumb-item+.breadcrumb-item::before{
  content: '';
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-right: 1.6rem;
  margin-left: .8rem;
  margin-top: 7px;
}


.search-form{
  background: #fff;
  color: #82828A;
  border-radius: 10rem;
  padding: 2.6rem 3.7rem;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #E6E6E6;
  text-align: left;
  max-width: 1200px;
  column-gap: 1rem;
  row-gap: 1.5rem;
  margin: 0 auto;
}
.search-form .field-group{
  flex: 1 1 0;
  max-width: 500px;
  border-left: 1px solid #DFDFDF;
  padding-left: 1rem;
}
.search-form .field-group:first-child{
  border-left: none;
  padding-left: 0;
}
.search-form .field-group.first{
  max-width: calc(22% - 1rem * 3/4);
  flex: 0 0 calc(22% - 1rem * 3/4);
}
.search-form .field-group.second{
  max-width: calc(30% - 1rem * 3/4);
  flex: 0 0 calc(30% - 1rem * 3/4);
}
.search-form .field-group.third{
  max-width: calc(26% - 1rem * 3/4);
  flex: 0 0 calc(26% - 1rem * 3/4);
}
.search-form .form-submit{
  max-width: calc(22% - 1rem * 3/4);
  flex: 0 0 calc(22% - 1rem * 3/4);
  text-align: right;
  align-content: center;
}
.search-form .form-submit .btn{
  padding: 1rem 2.4rem;
}
.search-form .field-group label{
  display: block;
  color: #363539;
  font-size: 18px;
  font-weight: 600;
  padding: 0 .6rem;
}
.search-form .field-group select{
  border: none;
  background: url(../images/select-arrow.svg) no-repeat right center;
  appearance: none;
  line-height: 2.4rem;
  padding: 0 3rem 0 .6rem;
  color: #82828A;
  outline: none;
  width: 100%;
}
.page-banner + .section{
  margin-top: -10rem;
  background: #fff;
  position: relative;
  border-radius: 8rem 8rem 0 0;
  min-height: 10rem;
}
.page-banner + .section.light-bg{
  background: #F9FAFB;
}

.field-group .select2-container{
  width: 100% !important;
}
.select2-dropdown{
  border-top: 1px solid #aaa !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: #09283C !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
  outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding-right: 5px !important;
}
.search-form .select2-container--default .select2-selection--multiple{
  white-space: nowrap;
}
.search-form .select2-container--default .select2-selection--multiple:after{
  content: '';
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: 0;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.search-form .select2-container--default .select2-selection--multiple .select2-selection__rendered{
  white-space: nowrap;
  max-width: calc(100% - 37px);
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  margin-bottom: 0;
}
.field-group .select2-container--default .select2-selection--multiple .select2-selection__choice{
  border: none;
  background: none;
  padding-left: 0;
}
.field-group .select2-container--default .select2-selection--multiple .select2-selection__choice:not(:last-child):after{
  content: ',';
}
.field-group .select2-container--default .select2-selection--multiple .select2-selection__choice__display{
  padding-right: 0;
}
.field-group .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  display: none;
}

.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple{
  border: none !important;
  padding: 0 !important;
}
.select2-container--default .select2-selection--multiple textarea{
  margin-top: 0 !important;
  line-height: 2.8rem;
  height: 2.8rem !important;
  margin-left: 0 !important;
  padding-left: 5px !important; 
}

.top-content{
  margin-bottom: 4rem;
  font-size: 1.8rem;
}
.top-content p:last-child{
  margin-bottom: 0;
}
.service-block:not(:last-child){
  margin-bottom: 2rem;
}
.service-block .service-block-inner{
  box-shadow: 0px 1px 24px 0px #0000000D;
  padding: 20px;
  border-radius: 20px;
}
.service-block h3{
  font-size: 2.2rem;
  margin: 0 0 1.2rem;
}
.service-block h3 img{
  width: 5rem;
  height: 5rem;
  object-fit: scale-down;
  object-position: center;
}
.service-block p:last-child{
  margin-bottom: 0;
}


.section.internal-tabs{
  padding: 0;
  background: #E5C479;
}
.section.internal-tabs.sticky{
  position: sticky;
  border-radius: 0;
  z-index: 2;
}
.page-banner + .section.internal-tabs.sticky{
  min-height: 0;
}
.section.internal-tabs .tabing{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 6rem;
}
.section.internal-tabs .tabing li{
  flex: 1 1 0;
  border-right: 1px solid #E2BB65;
  position: relative;
}
.section.internal-tabs .tabing li:first-child{
  border-left: 1px solid #E2BB65;
}
.section.internal-tabs .tabing li.active:after{
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 2.6rem;
  background: url(../images/icons/polygon.svg) no-repeat;
  z-index: 1;
  margin-top: -1rem;
}
.section.internal-tabs .tabing li a{
  color: #000;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.2rem;
  width: 100%;
  padding: 2.2rem 1rem;
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  font-size: 1.5rem;
}
.section.internal-tabs.sticky .tabing li a{
  padding: .8rem 1rem;
  row-gap: .8rem;
}
.section.internal-tabs .tabing li.active a{
  background: #E2BB65;
}
.section.internal-tabs .tabing li a img{
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  transition: none;
}
.section.internal-tabs.sticky .tabing li a img{
  width: 3rem;
  height: 3rem;
}

#about-trip, #visitor-package, #tour-itinerary, #choice-of-hotels, #gallery, #reviews{
  scroll-margin-top: calc(var(--header-height) + var(--tabs-height));
}




/*why-visit*/
.section.why-visit{
  background-image: url(../images/flight-img-left-bg.png), url(../images/mountain.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
}
.section.why-visit .img-bg{
  background: url(../images/bg-style.png) no-repeat center top;
}
.accordion-button{
  font-size: 2.4rem;
  font-weight: normal;
  font-family: "Marcellus", serif;
}
.gap-y-4{
  row-gap: 1.6rem;
}
.card{
  padding: 3rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #3F3D3D;
}
.card .card-title{
  font-size: 2.2rem;
  color: #09283C;
  margin: 0 0 1.2rem;
}
.card p:last-child{
  margin-bottom: 0;
}
.list-style-stylish ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.list-style-stylish{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-style-stylish li{
  background: url(../images/list-type-arrow.svg) no-repeat left top;
  padding-left: 3rem;
}
.list-style-stylish li:not(:last-child){
  margin-bottom: 2rem;
}
.content-boxes{
  display: block;
  column-count: 1;
}
.box-content{
  break-inside: avoid;
}

.reviews-sec .testimonial-item{
  height: auto;
}
.reviews-sec .testimonial-item .testimonial-item-inner{
  height: 100%;
}

.photo-items{
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
}
.photo-items .photo-item{
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  padding-top: 35.8rem;
  width: calc(33.33% - 2rem * 2/3);
}
.photo-items .photo-item.small{
  width: calc(25% - 2rem * 2/3);
}
.photo-items .photo-item.medium{
  width: calc(30% - 2rem * 2/3);
}
.photo-items .photo-item.large{
  width: calc(45% - 2rem * 2/3);
}
.photo-items .photo-item img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  transition: 0.4s;
}
.photo-items .photo-item:hover img{
  transform: scale(1.05);
}
.photo-items .photo-item a:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  opacity: 1;
  visibility: hidden;
}
.photo-items .photo-item a:hover:before{
  opacity: 1;
  visibility: visible;
}

.review-slider{
  padding: 4rem 0;
}
.review-slider .testimonial-item{
  max-width: 56rem;
}
.review-slider .testimonial-item:not(.swiper-slide-active) .testimonial-item-inner{
  box-shadow: none;
}

.disclaimer-content .col{
  background: #09283C;
  box-shadow: 18px 15px 35px 0px #00000017;
  color: #fff;
  position: relative;
  padding: 3rem 5rem 3rem 29rem;
  border-radius: 2rem 2rem 0 0;
  margin-top: 3rem;
}
.disclaimer-content .col img{
  position: absolute;
  max-width: 330px;
  left: -3.3rem;
  bottom: 0;
}
.disclaimer-content h5{
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0 0 .8rem;
}

.key-mangament-member{
  column-gap: 3.2rem;
  row-gap: 3rem;
}
.key-mangament-team{
  width: 100%;
  max-width: 29.4rem;
}
.team-img{
  position: relative;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.team-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 100%;
}
.key-mangament-team h3{
  font-size: 2.2rem;
  margin: 2.4rem 0 .8rem;
}
.key-mangament-team .team-meta{
  color: #4834D4;
}
.team-social{
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}
.team-social li{
  display: inline-block;
  vertical-align: middle;
}
.team-social img{
  width: 2.8rem;
}
.team-members{
  column-gap: 2.4rem;
  row-gap: 2.4rem;
}
.team-members .team-member{
  width: calc(30% - 2.4rem * 4/5);
}
.team-members .team-member .team-member-img{
  position: relative;
  padding-top: 125%;
  overflow: hidden;
  border-radius: 2rem;
}
.team-members .team-member .team-member-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2rem;
}
.team-members .team-member h3{
  font-size: 1.6rem;
  font-weight: normal;
  color: #26262A;
  text-transform: uppercase;
  border-radius: 2rem;
  border: 1px solid #26262A;
  padding: .2rem 1.2rem;
  display: inline-block;
  margin: 1.6rem 0 .8rem;
}
.team-members .team-member .team-meta{
  font-size: 1.4rem;
  color: #5F6155;
  text-transform: uppercase;
}

.videoes-list{
  column-gap: 1.2rem;
  row-gap: 1.2rem;
}
.videoes-list .video-item{
  background: #fff;
  border-radius: 2rem;
  width: calc(25% - 1.2rem * 3/4);
  box-shadow: 0px 1px 24px 0px #0000000D;
}
.videoes-list .video-item iframe{
  width: 100%;
  border-radius: 2rem 2rem 0 0;
  aspect-ratio: 16/9;
  height: auto;
}
.videoes-list .video-item h3{
  font-size: 1.5rem;
  padding: 1.2rem;
}

.testimonial-items .testimonial-item{
  margin-bottom: 3rem;
}
.testimonial-items .testimonial-item .testimonial-item-inner{
  border: 1px solid rgba(230, 230, 230, 0.7)
}

.map-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-img iframe{
  width: 100%;
  height: 100%;
}

.cms-pages h2{
  font-size: 3rem;
  margin: 3rem 0 1.2rem;
}
.cms-pages h2:first-child{
  margin-top: 0;
}
.cms-pages ul{
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
}
.cms-pages ul li{
  background: url(../images/list-type-arrow.svg) no-repeat left top;
  padding-left: 3rem;
}
.cms-pages ul li:not(:last-child){
  margin-bottom: 2rem;
}
.cms-pages p a{
  color: #09283C;
}

.section.map-contact-sec{
  padding-top: 5rem;
  background-image: url(../images/map-grey.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}
form.contact-form{
  background: #fff;
  border-radius: 2rem;
  padding: 5rem;
}

.contact-info-blocks{
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 2rem;
}
.contact-info-blocks .contact-info-block{
  border: 1px solid #E6E6E6B2;
  padding: 4rem 2rem;
  text-align: center;
  width: calc(25% - 2rem * 3/4);
  max-width: calc(25% - 2rem * 3/4);
  border-radius: 2rem;
  box-shadow: 0px 1px 24px 0px rgba(0, 0, 0, 0.05);
}
.contact-info-blocks .contact-info-block .icon{
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 8.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 24px 0px #0000000D;
  border: 1px solid #F5F5F7;
  margin: 0 0 2rem;
  background: rgba(9, 40, 60, 0.1);
}
.contact-info-blocks .contact-info-block h4{
  font-size: 2.2rem;
  margin-bottom: .6rem;
}
.contact-info-blocks .contact-info-block h3{
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.contact-info-blocks .contact-info-block p{
  margin-bottom: .4rem;
}
.contact-info-blocks .contact-info-block p:last-child{
  margin-bottom: 0;
}
.contact-info-blocks .contact-info-block p a{
  color: currentColor;
  text-decoration: none;
}
.contact-info-blocks .contact-info-block.social-block{
  background: #F4F6F8;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info-blocks .contact-info-block .social-links{
  justify-content: center;
  margin-bottom: 0;
}

.address-blocks{
  margin-top: 6rem;
}
.address-block{
  border: 1px solid #E6E6E6B2;
  padding: 3rem 2rem 4rem;
  border-radius: 2rem;
  height: 100%;
  background: #fff;
}
.address-block h4{
  margin-left: -2rem;
  background: linear-gradient(270deg, rgba(9, 40, 60, 0) 0%, rgba(9, 40, 60, 0.2) 100%);
  width: max-content;
  padding: .3rem 1.2rem .3rem 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.address-block .icon-row{
  padding: 0 0 0 3rem;
  position: relative;
}
.address-block .icon-row .fair_icon{
  position: absolute;
  top: .5rem;
  left: 0;
}
.address-block .icon-row a{
  text-decoration: none;
  color: currentColor;
}


.about-company blockquote{
  margin-top: 3rem;
  background: rgba(249, 250, 251, 1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 2.4rem 2.4rem 2.4rem 6.4rem;
  border-radius: 2rem;
  background-image: url(../images/quote.svg);
  background-repeat: no-repeat;
  background-size: 2rem 3rem;
  background-position: 2.4rem center;
}

.sec-vision-mission{
  background: linear-gradient(0deg, #09283C, #09283C),
radial-gradient(122.85% 172.17% at 100% 0%, rgba(226, 187, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  color: #fff;
  position: relative;
  z-index: 0;
}
.sec-vision-mission:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img-bg-5.png);
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
}
.sec-vision-mission:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img-bg-6.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  z-index: -1;
}
.sec-vision-mission :is(h1, h2, h3, h4, h5, h6){
  color: #fff;
}
.sec-vision-mission .box{
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 20px 2px rgba(255, 255, 255, 0.1);
  padding: 5rem 1.5rem 2.4rem;
  border-radius: 2rem;
  height: 100%;
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: rgba(208, 210, 215, 1);
}
.sec-vision-mission .box .icon {
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 7.4rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 3rem;
}
.sec-vision-mission .box h3{
  font-size: 2rem;
  font-weight: 600;
}
.sec-vision-mission .box p:last-child{
  margin-bottom: 0;
}

.what-we-sec .heading-box{
  margin-bottom: 1.4rem;
}
.what-we-sec .heading-box .heading-box-inner{
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 24px 0px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.what-we-sec .heading-box .icon{
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 5.4rem;
  background: rgba(9, 40, 60, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  padding: 1rem;
}
.what-we-sec .heading-box h4{
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.4rem;
  background: linear-gradient(270deg, rgba(9, 40, 60, 0) 0%, rgba(9, 40, 60, 0.2) 100%);
  padding-left: 3rem;
  margin-left: -3rem;
  margin-bottom: 0;
  align-self: center;
}
.what-we-sec .heading-box h5{
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  margin-top: 3rem;
}
.what-we-sec .heading-box p{
  width: 100%;
}

.founder-message{
  background-image: url(../images/about-founder.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
.founder-message h2{
  margin-bottom: 2rem;
}
.founder-messagr-block{
  border: 1px solid rgba(230, 230, 230, 0.7);
  box-shadow: 0px 1px 24px 0px rgba(0, 0, 0, 0.05);
  background: rgba(249, 250, 251, 1);
  padding: 3rem 5rem;
  max-width: 705px;
  margin: 0 auto;
}
.founder-messagr-block h4{
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 2rem 0 0;
}

.about-company .about-images:before{
  content: none;
}

.about-information{
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  row-gap: 3rem;
  margin: 4rem 0;
  font-size: 1.6rem;
}
.about-information > div{
  flex: 0 0 calc(25% - 4rem * 3/4);
  max-width: calc(25% - 4rem * 3/4);
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  display: flex;
  column-gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}
.about-information > div a{
  text-decoration: none;
  color: currentColor;
}
.about-information > div a:hover{
  color: #F4A261;
}
.about-information > div .icon{
  flex: 0 0 4.4rem;
  max-width: 4.4rem;
}
.about-place-extra-info{
  display: flex;
  flex-wrap: wrap;
  column-gap: 6rem;
  row-gap: 3rem;
}
.about-place-extra-info .info-block{
  flex: 0 0 calc(50% - 6rem * 1/2);
  max-width: calc(50% - 6rem * 1/2);
  padding: 4rem 2rem 2.5rem;
  background: #fff;
  box-shadow: 0px 1px 24px 0px #0000000D;
  border-radius: 2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.4rem;
  row-gap: 1.5rem;
  place-content: flex-start;
}
.about-place-extra-info .info-block h5{
  font-size: 1.6rem;
  font-weight: 600;
  color: #3F3D3D;
  /* flex: 0 0 16rem; */
  font-family: "Poppins", sans-serif; 
  /* text-transform: uppercase; */
  align-self: flex-start;
  margin: 0 0 1rem;
}
.about-place-extra-info .info-block .content{
  /* flex: 0 0 calc(100% - 20rem); */
  margin-bottom: 1.5rem;
}
.about-place-extra-info .info-block .content p:last-child{
  margin-bottom: 0;
}
.about-place-extra-info .info-block p{
  width: 100%;
}
.about-place-extra-info .info-block ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
}
.about-place-extra-info .info-block ul li{
  /* flex: 0 0 calc(50% - 4rem * 1/2);
  max-width: calc(50% - 4rem * 1/2); */
  width: 100%;
}


.package-list-item{
  background: #fff;
  border: 1px solid rgba(230, 230, 230, 0.7);
  padding: 1.4rem 0;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.package-list-item:last-child{
  margin-bottom: 0;
}
.package-list-item .package-img{
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  position: relative;
}
.package-list-item .package-img img{
  aspect-ratio: 1/.6;
  border-radius: 2rem;
  width: 100%;
  object-fit: cover;
}
.package-list-item .package-img:hover img:not(.small-logo){
  transform: scale(1.1);
}
.package-list-item .package-img img.small-logo{
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  z-index: 1;
  height: 60px;
  object-fit: scale-down;
  object-position: right;
}
.package-list-item .col-left{
  width: 40%;
  max-width: 40%;
}
.package-list-item .col-right{
  width: 60%;
  max-width: 60%;
}
.package-list-item .package-top-info{
  display: flex;
  justify-content: space-between;
  column-gap: 5rem;
}
.package-list-item .package-top-info .package-pricing{
  flex: 0 0 18rem;
  text-align: center;
}
.package-list-item .package-top-info .price{
  font-size: 2.8rem;
  font-weight: 500;
}
.package-list-item .package-top-info .package-pricing .btn{
  padding: 1.1rem 2rem;
}
.package-list-item .package-info h3{
  font-size: 2.8rem;
}
.package-list-item .package-info h3 a{
  text-decoration: none;
  color: currentColor;
}
.package-list-item .package-info .package-description{
  margin-top: .8rem;
  width: 100%;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.package-list-item .package-info .package-facility{
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E7EBFF
}
.package-list-item .package-info .package-facility ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
  column-gap: 2rem;
  row-gap: 2rem;
}
.package-list-item .package-info .package-facility ul li{
  flex: 0 0 calc(25% - 2rem * 3/4);
  max-width: calc(25% - 2rem * 3/4);
  display: flex;
  align-items: center;
  color: #09283C;
  column-gap: 1.4rem;
}
.package-list-item .package-info .package-facility ul li.disabled{
  filter: grayscale(1);
  opacity: 0.8; 
}
.package-list-item .package-info .package-facility ul li .icon{
  border: 1px solid #F5F5F7;
  box-shadow: 0px 1px 24px 0px #0000000D;
  background: #FFFFFF;
  flex: 0 0 5.6rem;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 5.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.section.about-trip:not(.light-bg){
  background: linear-gradient(0deg, #09283C, #09283C),
radial-gradient(122.85% 172.17% at 100% 0%, rgba(226, 187, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  color: #fff;
}
.section.about-trip:not(.light-bg) :is(h1, h2, h3, h4, h5, h6){
  color: #fff;
}


.visitor-package{
  background-color: #F9FAFB;
  background-image: url(../images/line-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.packages-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 2rem;
}
.packages-list ul li{
  width: 25rem;
  box-shadow: 0px 2px 0px 0px #0000000F;
  background: #F4F6F8;
  border-radius: 16rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.packages-list ul li .icon{
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 100%;
  background: #09283C;
  padding: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 4rem;
}
.packages-list ul li .icon img{
  width: 32px;
  height: 32px;
}
.packages-list ul li .package-meta{
  padding: 3rem 2.4rem 6rem 2.4rem;
  background: #fff;
  border-radius: 0 0 16rem 16rem;
  box-shadow: 0px 2px 0px 0px #0000000F;
  text-align: center;
  font-size: 1.4rem;
  flex: 1 1 0;
  width: 100%;
}
.packages-list ul li .h3{
  font-size: 2rem;
  font-family: "Marcellus", serif;
  font-weight: normal;
  color: #09283C;
  margin-bottom: .4rem;
}
.packages-list ul li p{
  margin-bottom: 0;
}

.packages-list ul.about-information li{
  width: calc(33.33% - 2rem * 2/3);
  box-shadow: 0px 2px 0px 0px #0000000F;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  flex-direction: row;
  column-gap: 2rem;
}
.packages-list ul.about-information li .icon{
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 100%;
  background: #09283C;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 4rem;
}
.packages-list ul.about-information li .icon img{
  width: 32px;
  height: 32px;
}
.packages-list ul.about-information li .package-meta{
  text-align: left;
  font-size: 1.4rem;
  flex: 1 1 0;
  width: 100%;
  background: none;
  box-shadow: none;
  padding: 0;
}



.tour-itinerary{
  background: linear-gradient(0deg, #09283C, #09283C),
radial-gradient(122.85% 172.17% at 100% 0%, rgba(226, 187, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  color: #fff;
}
.tour-itinerary :is(h1, h2, h3, h4, h5, h6){
  color: #fff;
}

.tour-itinerary .accordion-item{
  background: none;
  color: #fff;
  padding: 2rem 0;
  border-color: rgba(255, 255, 255, 0.1);
}
.tour-itinerary .accordion-item:first-child{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tour-itinerary .accordion-item:last-child{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tour-itinerary .accordion-item .accordion-button{
  background: none;
  color: #fff;
  line-height: 1.25;
  font-size: 2.4rem;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.tour-itinerary .accordion-item .accordion-button::after{
  content: none;
}
.tour-itinerary .accordion-item .accordion-button:focus{
  box-shadow: none;
  outline: none;
}
.tour-itinerary .accordion-item .accordion-button span{
  padding: .3rem 1.2rem;
  border-radius: 1rem;
  font-size: 1.8rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  font-family: "Poppins", sans-serif; 
  font-weight: 500;
  line-height: 2.7rem;
  margin-right: 2rem;
}
.tour-itinerary .accordion-item .accordion-body{
  padding: .8rem 0 0;
}
.tour-itinerary .accordion-item .accordion-body p{
  margin-bottom: 0;
}

.choice-of-hotels{
  background-color: #F9FAFB;
  background-image: url(../images/bg-light-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.choice-of-hotels-gallery{
  margin-bottom: 3rem;
}
.choice-of-hotels-gallery .gallery-item{
  overflow: hidden;
}
.choice-of-hotels-gallery .gallery-item img{
  aspect-ratio: 16/6;
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.hotels-list{
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0px 2px 0px 0px #0000000F;
  height: 100%;
}
.hotel-list-item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #E6E6E6B2;
  box-shadow: 0px 1px 24px 0px #0000000D;
  margin-bottom: 1.2rem;
  cursor: pointer;
}
.hotel-list-item.active{
  background-color: #E5C479;
}
.hotel-list-item .content{
  width: 60%;
  padding: 2rem;
  font-size: 1.4rem;
}
.hotel-list-item .content h4{
  font-size: 2rem;
}
.hotel-list-item .content h4 a{
  color: currentColor;
  text-decoration: none;
}
.hotel-list-item .content p{
  margin-bottom: 0;
}
.hotel-list-item .img-box{
  width: 40%;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
  align-self: stretch;
}
.hotel-list-item .img-box img{
  border-radius: 0 2rem 2rem 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.choice-of-hotels .arrow-navigation{
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  justify-content: center;
}
.choice-of-hotels .arrow-navigation :is(.swiper-button-next, .swiper-button-prev){
  margin-top: 0;
  background: #fff;
  width: 3rem;
  height: 3rem;
}
.choice-of-hotels .arrow-navigation :is(.swiper-button-next, .swiper-button-prev) svg.fair_icon{
  width: 1.2rem;
  height: 1.2rem;
}

.content-boxes{
  display: block;
  /* column-count: 2;
  column-gap: 2rem; */
}
.content-boxes .box-content{
  background: #F9FAFB;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #E6E6E6B2;
  margin-bottom: 2rem;
  break-inside: avoid;
}
.content-boxes .box-content h3{
  margin-bottom: 2rem;
}
section.section.photo-gallery-sec{
  padding-top: 0;
}

.page-banner + section.section.photo-gallery-sec{
  padding-top: 6rem;
}


/*Login CSS Start*/
.login-page{
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 30px;
}
.login-page h2{
  margin-bottom: 3rem;
  text-align: center;
}
.login-page h2:after{
  content: '';
  display: block;
  margin: 2rem auto 0;
  width: 40px;
  background: #09283C;
  height: 3px;
}
.action-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.action-btn a{
  color: currentColor;
  text-decoration: none;
}
.action-btn a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.error{
  margin-top: .7rem;
  color: #ff0000;
}
.form-group .field{
  position: relative;
}
.form-group .field .toggle-password{
  position: absolute;
  right: 0;
  top: 3.5rem;
  cursor: pointer;
}
.form-group .field .toggle-password:not(.fa-eye-slash) .icon_eye-slash{
  display: none;
}
.form-group .field .toggle-password.fa-eye-slash .icon_eye{
  display: none;
}

.login-page .form-group .field input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgba(255, 255, 255, 1)) !important;
    color: fieldtext !important;
    -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 40rem #ffff inset !important;
}
.login-page input:-webkit-autofill,
.login-page input:-webkit-autofill:hover, 
.login-page input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 40rem #ffff inset !important;
}


/*Dashboard CSS start*/
/* Dashboard */
.dashboard-with-sidebar{
    padding: 75px 0;
}
.dashboard-menu{
    flex: 0 0 auto;
    width: 320px;
}
.dashboard-menu .navbar-toggler{
  display: none;
}
.dashboard-menu .dashboard-navigation{
    background: linear-gradient(0deg, #09283C, #09283C), radial-gradient(122.85% 172.17% at 100% 0%, rgba(226, 187, 101, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    color: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    margin: 0;
    list-style: none;
}
.dashboard-menu .dashboard-navigation li{
    margin: 0 0 4px;
}
.dashboard-menu .dashboard-navigation a{
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-size: 1.6rem;
  border-radius: .6rem;
  line-height: 2.6rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}
.dashboard-menu .dashboard-navigation li:not(.active) a:hover{
    opacity: 0.85;
}
.dashboard-menu .dashboard-navigation li.active a{
  background: linear-gradient(104.61deg, #F4A261 -19.26%, #FFC8A2 92.94%);
  color: #000;    
}

.dashboard-menu .dashboard-navigation a .icon{
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dashboard-content{
    padding-left: 40px;
    line-height: 26px;
    max-width: calc(100% - 320px);
}

.dashboard-content h2{
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}
.dashboard-content h4{
    font-size: 18px;
}
.dashboard-content a:not(.btn){
    color: #0471AE;
    text-decoration: none;
}
.dashboard-content .important p a{
    color: currentColor;
}
.dashboard-content a.text-truncate{
    display: inline-block;
    width: 100%;
}
.dashboard-content a:not(.btn):hover{
    text-decoration: underline;
}

.dashboard-box{
    margin-top: 10px;
}
.dashboard-box .inner-box{
    background-color: #fff;
    padding: 40px 15px;
    height: 100%;
    border-radius: 8px;
}
.dashboard-box .inner-box .counting{
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.dashboard-box .inner-box p{
    margin: 0;
}
.dashboard-content .account-alerts{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgb(var(--bs-warning-rgb));
}
.dashboard-content .account-alerts ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.dashboard-content .account-alerts ul li{
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
.dashboard-content .account-alerts ul li a{
    background: #FFAC00;
    color: #000;
    padding: 3px 7px;
    border-radius: 4px;    
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    transition: 0.4s;
}
.dashboard-content .account-alerts ul li a:hover{
    text-decoration: none;
    background: #4BB4EF;
    color: #fff;
}
.dashboard-content .account-alerts ul li .icon{
    margin-right: 10px;
    color: #00CBBA;
    fill: currentColor;
    position: absolute;
    left: 0;
    top: 2px;
}

.dashboard-content .profile-tabs{
    margin: 15px 0 30px;
}
.dashboard-content .profile-tabs ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 10px;
}
.dashboard-content .profile-tabs ul li{
    flex: 1 1 0;
}
.dashboard-content .profile-tabs ul a{
     background-color: #fff;
     border-radius: 4px;
     padding: 10px 20px;
     color: #000;
     line-height: 24px;
     display: inline-block;
     transition: 0.4s;
     width: 100%;
     text-align: center;
}
.dashboard-content .profile-tabs ul li.active a, .dashboard-content .profile-tabs ul a:hover{
    background-color: #4BB4EF;
    color: #fff;
    text-decoration: none;
}

.dashboard-content a.icon-btn{
    color: #fff;
}
.dashboard-content .form-actions {
  display: flex;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}

.title-with-link-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.title-with-link-wrapper h2{
    margin-bottom: 0;
}
.title-with-link-wrapper h3{
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}
.dashboard-content .table{
    margin-bottom: 30px;
}
.dashboard-content .table th{
    padding: 10px 15px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
}
.dashboard-content .table td{
    vertical-align: middle;
    padding: 7px 15px;
    font-size: 14px;
}
.dashboard-content .table td.col-qualification{
    width: 160px;
}
.dashboard-content .table td.col-institute{
    width: 200px;
}
.dashboard-content .table td.col-grade{
    width: 80px;
}
.dashboard-content .table td.col-date{
    width: 80px;
}
.dashboard-content .table td.col-status{
    width: 140px;
}
.dashboard-content .table td.col-action{
    width: 100px;
}
.dashboard-content .table td.col-action .icon-btn + .icon-btn{
    margin-left: 7px;
}
.dashboard-content .table td .status{
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.dashboard-content .table td:not(:first-child){
  min-width: 160px;
}
.instruction{
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

.uploadContainer input#file{
    display: none;
}
.uploadContainer .upload-area{
    border: 2px dotted #ccc;
    background-color: #E5FCFB;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}
.uploadContainer .upload-area h2{
    margin: 0;
}
.uploadContainer .fileblock{
    display: none;
}
.uploadContainer .upload-area .uploadIcon{
    width: 30px;
    height: 30px;
    fill: currentColor;
    color: #000;
    margin-bottom: 20px;
}
.fileblock{
    border: 2px dotted #ccc;
    background-color: #E5FCFB;
    text-align: left;
    padding: 10px;
}
.closefile{
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    line-height: 30px;
    background-color: var(--bs-btn-bg);
    color: var(--bs-btn-color);
    font-size: 20px;
}
.closefile:hover{
    background-color: var(--bs-btn-hover-bg);
}


.bg-heighlight1{
    animation: svgColor1 2s infinite;
}
.bg-heighlight2{
    animation: svgColor2 2s infinite;
}
.bg-heighlight3{
    animation: svgColor3 2s infinite;
}
/*Dashboard CSS end*/

nav[aria-label="Pagination Navigation"]{
  width: 100%;
}
nav[aria-label="Pagination Navigation"] > div:first-child{
  display: none;
}
nav[aria-label="Pagination Navigation"] > div{
  display: flex;
  justify-content: center;
  align-items: center;
}
nav[aria-label="Pagination Navigation"] > div + div{
  margin-top: 2rem;
}
nav[aria-label="Pagination Navigation"] > div + div > div:first-child{
  display: none;
}
nav[aria-label="Pagination Navigation"] > div span{
  display: inline-block;
  vertical-align: middle;
  box-shadow: none !important;
}
nav[aria-label="Pagination Navigation"] > div p{
  margin-bottom: 0;
}
nav[aria-label="Pagination Navigation"] a{
  text-decoration: none;
  color: currentColor;
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
}
nav[aria-label="Pagination Navigation"] > div > div > span > a, nav[aria-label="Pagination Navigation"] > div > div > span > span{
  padding: 3px !important;
  line-height: 28px;
  width: 36px;
  text-align: center;
  height: 36px;
  vertical-align: middle;
  border-radius: 3px;
}
nav[aria-label="Pagination Navigation"] span[aria-current="page"]{
  margin: 0 0 0 3px;
  vertical-align: middle;
}
nav[aria-label="Pagination Navigation"] span[aria-current="page"],
nav[aria-label="Pagination Navigation"] a:hover{
  background: linear-gradient(104.61deg, #FFC8A2 -19.26%, #F4A261 92.94%);
}
nav[aria-label="Pagination Navigation"] span[aria-current="page"] span{
  padding: 0 !important;
  width: 100%;
  background-color: transparent !important;
  border: none !important;
}
nav[aria-label="Pagination Navigation"] a svg{
  width: 2.4rem;
  height: 2.4rem;
}
nav[aria-label="Pagination Navigation"] span[aria-disabled="true"]{
  display: none;
}


.modal-title{
  font-size: 2rem;
}
.modal-header{
  padding: 2.4rem;
}

.modal-body form.contact-form{
  padding: 1.4rem;
}
.modal-body form.contact-form .form-control{
  padding: 1rem 1.5rem;
  line-height: 2.4rem;
  font-size: 1.6rem;
}
.modal-body form.contact-form textarea.form-control{
  height: 120px;
}
.modal-body form.contact-form a{
  color: #F4A261;
}
.rating-badge{
  background-color: #fff9db;
  color: #860;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  border: 1px solid #ffec99;
  position: absolute;
  top: 2rem;
  right: 2rem;
}


@media screen and (min-width: 1400px){
  .container-fluid{
    --bs-gutter-x: 12rem;
  }
}
@media screen and (min-width: 992px){
  .text-lg-start .subheading{
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1600px){
  .btn{
    padding: 1rem 2.4rem;
  }
  .site-header .navbar-nav{
    column-gap: 1rem;
  }
  .main-slider .banner-right-img img{
    margin-right: 0;
  }
  .main-slider h1{
    font-size: 4rem;
    line-height: 5rem;
  }
  .service-section:after{
    bottom: 2rem;
    width: 110px;
    background-size: 100%;
    height: 165px;
  }

}
@media screen and (max-width: 1399px){
  .site-logo{
    column-gap: 2rem;
    max-width: 45rem;
  }
}
@media screen and (max-width: 1365px){
  .site-header .navbar-nav .nav-link{
    padding: 0.8rem 0;
    font-size: 1.4rem;
  }
  .section.internal-tabs .tabing li a{
    padding: 2.2rem 1rem;
  }
  .dashboard-content{
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
  
  .search-form .field-group.first {
    max-width: calc(21% - 1rem * 3/4);
    flex: 0 0 calc(21% - 1rem * 3/4);
  }
  .search-form .field-group.third {
    max-width: calc(25% - 1rem * 3/4);
    flex: 0 0 calc(25% - 1rem * 3/4);
  }
  .search-form .form-submit {
    max-width: calc(24% - 1rem * 3/4);
    flex: 0 0 calc(24% - 1rem * 3/4);
  }

}
@media screen and (max-width: 1199px){
  h2{
    font-size: 3.6rem;
  }
  .section{
    padding: 4.5rem 0;
  }
  .main-slider{
    padding-bottom: 3rem;
  }
  .main-slider .bg-text, .about-section .bg-text, .service-section .bg-text{
    font-size: 12rem;
  }
  .main-slider .banner-content{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
  .main-slider .banner-right-img{
    margin-bottom: -5rem;
  }
  .main-slider .button-wrapper{
    column-gap: 1rem;
  }
  .main-slider .button-wrapper .btn{
    padding: 1rem 1.5rem;
  }
  .main-slider h1 {
    font-size: 4.4rem;
    line-height: 5rem;
  }
  .main-slider h2{
    font-size: 3.6rem;
  }
  .website-overview li .number{
    font-size: 3.8rem;
  }
  .service-section:after{
    bottom: 2rem;
    width: 10.5rem;
    height: 15rem;
    background-size: contain;
  }
  .section.testimonial-sec{
    padding: 0;
  }
  .footer-block-heading{
    font-size: 2.2rem;
  }

  .search-form .field-group.first {
    max-width: calc(25% - 1rem * 2/3);
    flex: 0 0 calc(25% - 1rem * 2/3);
  }
  .search-form .field-group.second {
    max-width: calc(45% - 1rem * 2/3);
    flex: 0 0 calc(45% - 1rem * 2/3);
  }
  .search-form .field-group.third {
    max-width: calc(30% - 1rem * 2/3);
    flex: 0 0 calc(30% - 1rem * 2/3);
  }
  .search-form .form-submit {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .team-members .team-member {
    width: calc(25% - 2.4rem * 3/4);
  }
  .page-banner + section.section.photo-gallery-sec{
    padding-top: 4.5rem;
  }
  .photo-items .photo-item{
    padding-top: 24rem;
  }
  form.contact-form{
    padding: 3rem;
  }
  .map-img{
    margin-top: 2rem;
  }
  .address-blocks{
    margin-top: 4.5rem;
  }
  .card{
    padding: 2rem;
  }
  .videoes-list .video-item{
    width: calc(33.33% - 1.2rem * 2/3);
  }

  .about-information > div{
    flex: 0 0 calc(50% - 4rem * 1 / 2);
    max-width: calc(50% - 4rem * 1 / 2);
  }
  .about-place-extra-info .info-block{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .package-list-item .package-info .package-facility ul li{
    flex: 0 0 calc(33.33% - 2rem * 2 / 3);
    max-width: calc(33.33% - 2rem * 2 / 3);
  }
  .packages-list ul{
    column-gap: 1.6rem;
  }
  .packages-list ul li{
    width: 22rem;
  }
}
@media screen and (max-width: 991px){
  .text-center.text-lg-start .button-wrapper{
    justify-content: center;
  }
  .main-slider .banner-content{
    text-align: center;
    max-width: 100%;
    padding-bottom: 2rem;
  }
  .main-slider .banner-content .button-wrapper{
    justify-content: center;
  }
  .main-slider .banner-content{
    padding-top: 12rem;
  }
  .main-slider .banner-right-img{
    padding-top: 0;
  }
  .main-slider .banner-right-img img{
    margin: 0 auto;
    display: block;
    max-height: 460px;
  }
  .about-section{
    text-align: center;
  }
  .about-section .bg-text{
    left: 0;
    text-align: center;
    width: 100%;
  }
  .about-images{
    margin: 0 auto;
  }
  .about-section .subheading{
    justify-content: center;
  }
  .about-section .button-wrapper{
    justify-content: center;
  }
  .about-section .row{
    row-gap: 3rem;
  }
  .about-holiday-sec .row{
    row-gap: 3rem;
  }
  .place-item{
    max-width: 38rem;
  }
  .service-section:after{
    content: none;
  }
  .col-heading-content{
    max-width: 100%;
    text-align: center;
  }
  .website-overview{
    max-width: 100%;
    margin-top: 2rem;
  }
  .left-img {
    width: 100%;
    margin-left: calc(-.5 * var(--bs-gutter-x));
    float: none;
    margin-bottom: 3rem;
  }
  .testimonial-sec .subheading{
    justify-content: center;
  }
  .testimonial-sec h2{
    text-align: center;
  }
  .galleries{
    column-gap: 0.6rem;
    row-gap: 0.6rem;
  }
  .galleries .gallery-item:nth-child(3) .image-wrapper{
    padding-top: calc(160% + .6rem);
  }
  .site-footer .top-logos img{
    max-height: 7rem;
  }
  .site-footer ul.footer-links{
    margin-bottom: 3rem;
  }

  .page-banner{
    padding: 12rem 0;
  }
  .page-banner.with-search{
    padding: 12rem 0 1rem;
  }
  .page-banner .col-12:not([aria-label="breadcrumb"]){
    margin-top: 3rem;
  }
  .page-banner + .section{
    border-radius: 3rem 3rem 0 0;
  }
  .page-banner + .section{
    margin-top: -7rem;
    min-height: 7rem;
  }
  .page-banner h1{
    font-size: 3.6rem;
  }
  .sec-vision-mission .row{
    row-gap: 2rem;
  }

  .contact-info-blocks .contact-info-block{
    width: calc(50% - 2rem * 1/2);
    max-width: calc(50% - 2rem * 1/2);
  }
  .about-company{
    text-align: center;
  }
  .about-company .subheading{
    justify-content: center;
  }
  .about-company blockquote{
    text-align: left;
  }
  .team-members .team-member {
    width: calc(33.33% - 2.4rem * 2/3);
  }
  .section.why-visit .img-bg{
    margin-top: 2rem;
  }
  .videoes-list .video-item{
    width: calc(50% - 1.2rem * 1/2);
  }

  .search-form{
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
  .search-form .field-group{
    max-width: calc(33.33% - 1rem * 2/3);
  }
  .search-form .form-submit{
    width: 100%;
    text-align: center;
  }
  section.section.place-listing{
    padding-top: 8rem;
  }
  .place-list-item .col-left {
    width: 30%;
    max-width: 30%;
  }
  .place-list-item .col-right {
    width: 70%;
    max-width: 70%;
  }
  .package-list-item .col-left, .package-list-item .col-right{
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .package-list-item .col-right{
    margin-top: 2rem;
  }
  .hotel-list-item .content h4{
    font-size: 1.8rem;
  }
  .section.internal-tabs .tabing{
    padding: 0 2rem;
  }

  .packages-list ul.about-information li{
    width: calc(50% - 2rem * 1/2);
  }

  .dashboard-menu{
    width: 250px;
  }
  .dashboard-content{
    max-width: calc(100% - 250px);
  }
}

@media screen and (max-width: 767px){
  body{
    font-size: 1.4rem;
  }
  h2{
    font-size: 2.4rem;
  }
  h3, .h3{
    font-size: 2.2rem;
  }
  .section{
    padding: 3.6rem 0;
  }
  .btn{
    padding: 1rem 2.4rem;
    column-gap: .7rem;
  }
  .btn svg.fair_icon {
    width: 1.6rem;
    height: 1.6rem;
  }
  .button-wrapper{
    margin-top: 2.4rem;
  }
  .site-header{
    padding: 1rem 0;
  }
  .site-logo {
    column-gap: 1rem;
    row-gap: 1rem;
    max-width: 20rem;
    flex-direction: column;
    justify-content: center;
    position: relative;
  } 
  .menu-wrapper{
    padding: 4rem 4rem 4rem 0;
  }
  .main-slider{
    padding-bottom: 3rem;
  }
  .main-slider .bg-text{
    top: 8.7rem;
  }
  .main-slider h2{
    font-size: 3rem;
  }
  .main-slider h1{
    font-size: 3rem;
    line-height: 3.6rem;
  }
  .main-slider .bg-text, .about-section .bg-text, .service-section .bg-text{
    font-size: 6rem;
  }
  .about-section .bg-text{
    top: -3.6rem;
  }
  .about-section:before{
    content: none;
  }
  .website-overview ul{
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
  .website-overview li{
    width: calc(50% - 1.5rem * 1 / 2);
    min-height: 0;
  }
  .title-wrapper-with-link{
    text-align: center;
    margin-bottom: 2.4rem;
  }
  .title-wrapper-with-link .subheading{
    justify-content: center;
  }
  .title-wrapper-with-link .text-end{
    text-align: center !important;
  }
  .search-form .form-submit .btn{
    width: 100%;
  }
  .search-form .form-submit .btn.btn-secondary{
    margin-top: 5px;
  }
  .service-section hr{
    margin: 3rem 0;
  }
  .service-section .bg-text{
    top: -2rem;
  }
  .service-item .service-item-inner .service-content h3{
    font-size: 2rem;
  }
  .about-holiday-sec:after{
    content: none;
  }
  .gallery-sec:after{
    content: none;
  }
  .galleries{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .galleries .gallery-item:nth-child(n+3){
    display: none;
  }
  .service-section .services-slider{
    margin-bottom: 2.4rem;
  }
  .place-item{
    max-width: 30rem;
  }
  .place-item .place-info{
    margin-left: 1rem;
    padding: 2rem 1rem;
  }
  .place-item .place-info h3{
    font-size: 2rem;
  }
  .section.testimonial-sec{
    background: none;
  }
  :is(.swiper-button-next, .swiper-button-prev){
    margin-top: 2.4rem;
    margin-bottom: .8rem;
  }
  .site-footer .top-logos ul{
    flex-wrap: wrap;
  }
  .site-footer .top-logos ul li{
    width: 50%;
  }
  .site-footer .top-logos ul:before, .site-footer .top-logos ul:after{
    content: none;
  }

  .site-footer .mobile-accordion .footer-block-heading{
    position: relative;
  }
  .site-footer .mobile-accordion .footer-block-heading:after{
    height: 1px;
    width: 100%;
  }
  .site-footer .mobile-accordion.open .footer-block-heading:after{
    opacity: 0;
  }
  .site-footer .mobile-accordion .footer-block-heading:before{
    content: '';
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 1rem;
    right: .4rem;
  }
  .site-footer .mobile-accordion.open .footer-block-heading:before{
    transform: rotate(-135deg);
    top: 1.5rem;
  }
  .site-footer .mobile-accordion .footer-links{
    display: none;
  }
  .site-footer .mobile-accordion.open .footer-links{
    display: block;
  }


  .about-images{
    column-gap: 1rem;
    row-gap: 1rem;
  }

  .page-banner + .section{
    border-radius: 1.6rem 1.6rem 0 0;
  }

  .page-banner{
    padding: 9rem 0 11rem;
  }
  .page-banner.with-search{
    padding: 9rem 0 3rem;
  }
  .page-banner .col-12:not([aria-label="breadcrumb"]){
    margin-top: 2rem;
  }
  .page-banner .breadcrumb{
    font-size: 1.2rem;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .page-banner .breadcrumb .breadcrumb-item{
    scroll-snap-align: center;
    display: flex;
    align-items: center;
  }
  .breadcrumb-item+.breadcrumb-item::before{
    margin-left: .2rem;
    margin-right: 1rem;
    margin-top: .4rem;
  }
  .breadcrumb-item svg.fair_icon{
    width: 1.4rem;
    height: 1.4rem;
  }
  .page-banner h1{
    font-size: 2.8rem;
  }

  .about-company .row{
    row-gap: 3rem;
  }
  .about-company blockquote{
    padding: 1.6rem 1.6rem 1.6rem 4.4rem;
    background-position: 1.4rem 1rem;
  }
  .what-we-sec .heading-box .heading-box-inner{
    padding: 1.6rem;
  }
  .what-we-sec .heading-box h4{
    margin-left: -1.6rem;
  }
  .contact-info-blocks .contact-info-block{
    width: 100%;
    max-width: 100%;
  }
  .team-members{
    column-gap: 1.2rem;
    row-gap: 1.2rem;
  }
  .team-members .team-member {
    width: calc(50% - 1.2rem * 1/2);
  }
  .page-banner + section.section.photo-gallery-sec{
    padding-top: 3.6rem;
  }
  .photo-items .photo-item.small, .photo-items .photo-item.large, .photo-items .photo-item.medium{
    width: 100%;
  }
  form.contact-form{
    padding: 1.6rem;
  }
  .address-blocks{
    margin-top: 3.6rem;
  }
  .top-content{
    font-size: 1.6rem;
  }
  .service-block .service-block-inner{
    padding: 16px;
  }
  .service-block h3{
    font-size: 1.8rem;
  }
  .service-block h3 img{
    width: 3.6rem;
    height: 3.6rem;
  }
  .card{
    padding: 1rem;
  }
  .card .card-title{
    font-size: 1.8rem;
  }
  .videoes-list .video-item{
    width: 100%;
  }
  .testimonial-items .testimonial-item{
    margin-bottom: 1.6rem;
  }
  .testimonial-item-inner{
    padding: 1.6rem;
  }

  .search-form{
    border-radius: 1.6rem;
    padding: 1.6rem;
  }
  .search-form .field-group{
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #DFDFDF;
  }
  .search-form .field-group.first {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .search-form .field-group.second {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .search-form .field-group.third {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .search-form .field-group select{
    width: 100%;
  }
  section.section.place-listing{
    padding-top: 6rem;
  }
  .place-list-item .col-left, .place-list-item .col-right{
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .place-list-item .col-right{
    padding-top: 1.6rem;
  }
  .place-list-item .place-info h3{
    font-size: 2rem;
  }
  .place-list-item .place-info .packages{
    margin-top: 1.6rem;
  }
  .place-list-item .place-info .packages ul{
    column-gap: .6rem;
    row-gap: .6rem;
  }
  .place-list-item .place-info .packages ul li a{
    padding: .7rem 1rem;
  }

  .dashboard-menu{
    width: 100%;
  }
  .dashboard-content{
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-top: 3rem;
    max-width: 100%;
  }
  .dashboard-content .form-actions {
    justify-content: center;
  }
  .dashboard-content .form-actions .btn{
    min-width: 200px;
  }

  .about-trip .title-wrapper-with-link{
    margin-bottom: 2rem;
  }
  .about-information{
    row-gap: 1.6rem;
  }
  .about-information > div{
    flex: 0 0 100%;
    max-width: 100%;  
    padding: 1.6rem;
  }
  .about-information > div .icon{
    flex: 0 0 3.2rem;
    max-width: 3.2rem;
  }
  .about-place-extra-info .info-block{
    padding: 2rem 1.6rem;
    row-gap: 0;
  }
  .about-place-extra-info .info-block h5, .about-place-extra-info .info-block .content{
    flex: 1 1 100%;
  }
  .about-place-extra-info .info-block ul li {
    flex: 0 0 100%;
    max-width: 100%;
    background-size: 1.6rem;
    padding-left: 2.2rem;
  }
  .list-style-stylish li{
    background-size: 1.6rem;
    padding-left: 2.2rem;
    line-height: 1.8rem;
  }
  .list-style-stylish li:not(:last-child){
    margin-bottom: 1rem;
  }

  .package-list-item .package-top-info{
    flex-direction: column;
    row-gap: 1.6rem;
  }
  .package-list-item .package-top-info .package-pricing{
    flex: 1 1 100%;
    text-align: left;
  }
  .package-list-item .package-info h3{
    font-size: 2.2rem;
  }
  .package-list-item .package-info .package-facility ul{
    column-gap: 1.2rem;
    row-gap: 1.2rem;
  }
  .package-list-item .package-info .package-facility ul li {
    flex: 0 0 calc(50% - 1.2rem * 1 / 2);
    max-width: calc(50% - 1.2rem * 1 / 2);
  }
  .package-list-item .package-info .package-facility ul li .icon{
    flex: 0 0 4.4rem;
    width: 4.4rem;
    height: 4.4rem;
    padding: .5rem;
  }
  .review-slider{
    padding: 2rem 0 4rem;
  }
  .disclaimer-content .col{
    padding: 1.6rem;
    text-align: center;
    margin-top: 0;
  }
  .disclaimer-content .col img{
    display: none;
  }
  .packages-list ul li{
    width: 25rem;
  }
  .content-boxes{
    column-count: 1;
  }
  .section.internal-tabs .tabing{
    padding: 0 .5rem;
    min-height: 7rem;
  }
  .section.internal-tabs .tabing li a{
    font-size: 0;
    row-gap: 0;
    padding: 1rem .5rem;
    justify-content: center;
  }
  .section.internal-tabs .tabing li a img{
    width: 3rem;
    height: 3rem;
  }
  .section.internal-tabs .tabing li.active:after{
    width: 2rem;
    height: 1.6rem;
    background-size: auto 100%;
    left: calc(50% - 1rem);
    margin-top: -0.5rem;
  }
  .tour-itinerary .accordion-item .accordion-button{
    font-size: 2rem;
  }
  .tour-itinerary .accordion-item .accordion-button span{
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  .tour-itinerary .accordion-item{
    padding: 1rem 0;
  }
  .hotel-list-item{
    border-radius: 1rem;
  }
  .hotel-list-item .img-box, .hotel-list-item .img-box img{
    border-radius: 0 1rem 1rem 0;
  }
  .hotel-list-item .content{
    padding: 1rem;
  }
  .content-boxes .box-content{
    padding: 1.6rem;
  }
  .hotels-list{
    padding: 1rem;
  }
  .team-members .team-member h3{
    font-size: 1.3rem;
    padding: .4rem 1rem;
  }
  .team-members .team-member .team-meta{
    font-size: 1.2rem;
  }
  .disclaimer-content .col{
    margin-top: 1rem;
  }
  .photo-items .photo-item{
    width: 100%;
  }
  .packages-list ul.about-information{
    row-gap: 1rem;
  }
  .packages-list ul.about-information li{
    width: 100%;
  }
  .packages-list ul.about-information li .icon{
    margin: 0;
  }
  .package-list-item .package-img img.small-logo{
    width: 60px;
    height: 60px;
  }
}

@keyframes blinkText{
  0%{
    color: #fff;
  }
  100%{
    color: #E5C479;
  }
}



