/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Slider Sectiion
  - Destination Section
  - Gallery Section
  - Counter Section
  - Contact Section
  - Scroll Top
  - Destinantions-Detail Page
  - StandAlone Page
  - Destinations 
  - Media Queries
*/

/* ===================================
    Fonts
====================================== */

@import url('css2.css');
@import url('css21.css');

/* ===================================
    Scrollbar
====================================== */

/*html {
  scroll-behavior: smooth;
}
*/
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
width: 12px;
background: white;
border-left: 0 solid white;
border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
background: #003b95;
width: 0;
height: 25%;
transition: .5s ease;
cursor: pointer;
}

/* ===================================
    General
====================================== */

body{
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a{
  text-decoration: none;
}
/*Text Classes*/
.heading{
  font-size: 40px;
  color: #5b5b5b;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}

.subheading{
  font-size: 20px;
  color: #696969;
  font-weight: 400;
}

.text{
  font-size: 16px;
  color: #696969; 
  font-weight:400;
}

/*Social Icons*/

.social-icons ul {
  margin-bottom: 0;
}
.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  list-style: none;
}
.social-icons ul li a {
/*overflow: hidden;*/
  border-radius: 50%;
  display: block;
  color: #3d3d3d;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}
/*Social icons background hover*/
.icon-hover:hover {color: #4d9cca !important; transition: all 0.5s ease; background-color: #fff;}

.facebook-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff !important; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover{color: #fff !important;  transition: all .5s ease; 
  background:linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%)!important;}
.gmail-hover:hover {color: #fff !important; transition: all 0.5s ease; background-color: #D44638;}


/*Button*/
.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #fff;
  border: 2px solid transparent;
  text-transform: uppercase;
  transition: all .5s ease !important;
}
.btn.button {
  font-size: 14px !important;
  font-weight: 500;
  color: #fff;
  padding: 9px 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.btn.btn-rounded {
  border-radius: 50px;
}
.btn.green-btn {
  background: #12b975;
  border-color: #12b975;
  color: #fff;
}

/*Button hover*/
.btn.btn-hvr-blue:hover {
  background-color: #003b95; 
  border-color: #003b95;
  color: #fff;
}
.btn.btn-hvr-grey:hover{
  background-color: #5b5b5b; 
  border-color: #5b5b5b;
  color: #fff;
}

/* ===================================
    Loader
====================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #ffffff;
  z-index: 999;
  overflow: hidden;
}
.center {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 100px;
  height: 100px;
}
.loader > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: #003b95;
  transform: scale(0);
  transform-origin: center center;
  animation: loader 2s infinite linear;
}
.loader > div:nth-of-type(1), .loader > div:nth-of-type(5), .loader > div:nth-of-type(9) {
    animation-delay: 0.4s;
}
.loader > div:nth-of-type(4), .loader > div:nth-of-type(8) {
    animation-delay: 0.2s;
}
.loader > div:nth-of-type(2), .loader > div:nth-of-type(6) {
    animation-delay: 0.6s;
}
.loader > div:nth-of-type(3) {
    animation-delay: 0.8s;
}

@keyframes loader {
  0% {
      transform: scale(0);
  }
  40% {
      transform: scale(1);
  }
  80% {
      transform: scale(1);
  }
  100% {
      transform: scale(0);
  }
}

/* ===================================
    Navbar
====================================== */

.navbar {
  padding: 0;
  z-index: 111;
  background-color: transparent !important;
  height: 90px;
  width: 100%;
}
.navbar .navbar-brand{
  background-color: #003b95;
  border: 1px solid #003b95;
  border-radius: 50%;
  padding: 5px 5px;
  width: 70px;
  height: 70px;
  line-height: 50px;
  margin-right: 0.5rem;
  text-align: center;
  overflow: hidden;
}
.navbar .number{
  position: absolute;
  right:15px;
}

.navbar .number p{
  font-size: 24px;
  margin-bottom: 0;
  color: #fff; 
  font-family: 'Oswald', sans-serif;
}

.navbar .navbar-nav {
  margin-left: 20rem;
}

.navbar .navbar-nav .nav-link {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  padding: 6px 6px;
  margin-left: 30px;
  margin-right: 50px;
  transition: .5s ease;
  border: 2px solid transparent;
  display: block;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.navbar .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
  color: #fff;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fff;
}

.navbar .navbar-nav .button {
  margin-left: 30px;
}

.navbar-fixed-top.scrolled {
  transition: .2s linear;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: animationFade;
  background-color: #fff !important;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.navbar-fixed-top.scrolled .nav-link{
  color: #5b5b5b;
}
.navbar-fixed-top.scrolled .nav-link:hover{
  color:#5b5b5b;
}
.navbar-fixed-top.scrolled .nav-link:hover:after{
  background: #5b5b5b;
}
.navbar-fixed-top.scrolled .number p{
  color: #12b975;
}
.navbar-fixed-top.scrolled .sidemenu_btn span{
  background: #5b5b5b;
}
.navbar-fixed-top.scrolled 
.navbar-nav .nav-link.active {
  color:#5b5b5b;
}
.navbar-fixed-top.scrolled 
.sidemenu_btn:hover span:first-child
{
  background-color: #5b5b5b;
}
.navbar-fixed-top.scrolled 
.sidemenu_btn:hover span:last-child{
  background-color: #5b5b5b;
}
.navbar-fixed-top.scrolled 
.sidemenu_btn:hover span:nth-child(2){
  background-color: #5b5b5b;
}
/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  left: 0;
  top: 20px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: #fff;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}


/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 45%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 2032;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform .5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-top: 40px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #5b5b5b;
  padding: 2px 0 3px 0 !important;
  font-size: 35px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #5b5b5b;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}


/*Side overlay*/

#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.image {
  position: absolute;
  top: 30px;
  right: 50px;
}


/*side close btn*/

.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 31px;
  left: 50px;
  cursor: pointer;
  border: solid 1px #5b5b5b;
}

.header-appear~.side-menu .btn-close {
  top: 50px;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: ' ';
  height: 28px;
  width: 2px;
  background: #5b5b5b;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  display: block;
}

/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #5b5b5b;
  font-size: 15px;
}
.side-menu-footer .social-icons ul li{
  display: inline-block;
}
.side-menu-footer .social-icons ul li a {
  color: #5b5b5b;
}
.side-menu-footer .social-icons ul li a:hover{
  background-color: #5b5b5b;
  color: #fff;
}


@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===================================
    Slider Section
====================================== */
.slider-area .slider-overlay {
    background-color: rgb(0 59 149 / 80%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    z-index: 11;
    align-items: center;
}
.slider-area .slider-carousel .item {
  width: 100%;
  height: 100vh;
  background-size:cover;
}
.slider-area .slider-overlay .subheading{
  color:#fff;
  margin-bottom: 25px;
}
.slider-area .slider-overlay .heading{
  color: #fff;
  font-size: 72px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.slider-area .slider-overlay .text{
  color: #fff;
}

/*slider social*/
.social-icons .slider-social{
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}

.social-icons .slider-social li{
  list-style: none;
  display: block ; 
}
.social-icons .slider-social a{
  color: #fff;
}
/*slider form*/
.slider-form{
  top: 67%;
  left: 0;
  right: 0;
  z-index: 11;
  position: absolute;
  transform: translateY(100%);
}
.slider-form .contact-form{
  background-color: #FFFFFF;
  padding: 15px 0;
}
.slider-form .contact-form .form-group{
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.slider-form .contact-form label{
  margin-bottom: 0;
 color: #8799a3;
  position: relative;
  left: 13px;
  z-index: 11;
  font-size: 17px;
}
.slider-form .contact-form input{
  color: #495057;
  font-size: 16px;
  height: 50px;
  padding: 25px;
}
.slider-form .contact-form .form-control{
  border-radius: 0;
  border:solid 2px transparent;
  margin-bottom: 0;
  border-right: solid 2px #eceef2;;
}

.slider-form .contact-form .form-control:last-child{
  border-right: none;
}
.slider-form .contact-form input::placeholder{
  /*color: #8799a3;*/
  color: #495057;
  font-size: 16px;
}
.slider-form .form-group select {
  width:120px;
  -webkit-appearance: none;
}
.slider-form .form-group #location{
  width:200px;
}
.slider-form .form-group .form-control .red{
  color: green !important;
}
.slider-form .button-center .button{
  margin-left: 10px;
  padding: 15px 35px !important;
}
.form-control:focus {
  border-color: #80bdff00;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}


/* ===================================
    Destination-Section
====================================== */
.destination-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.destination-section .heading{
  font-size: 60px;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}

.destination-section .heading span{
  color: #12b975;
}
.destination-section  .subheading{
  font-size: 18px;
  color: #202020;
}
.destination-section .row-1, .row-2, .row-3{
  margin-bottom: 80px;
}
.destination-section .card{
  border:1px solid transparent;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.destination-section .card .card-body{
  z-index: 1;
  transition: all .5s ease;
}
.destination-section .card .card-title{
  color:#202020;
}
.destination-section .card .card-title span{
  color: #12b975;
  font-size: 30px;
  right: 30px;
  bottom:35px;
  position: absolute;
}
.destination-section .card .card-text .checked, .half-checked{
  color: #ffc600;
}
.destination-section .button-center{
  text-align: center;
}
.destination-section .button {
  width: 50%;
}
.destination-section .card:hover .card-body{
  background-color: #12b975;
  transition: all .5s ease;
}
.destination-section .card:hover .card-title span{
  color: #fff;
}
.destination-section .card:hover .card-title{
  color: #fff !important;
}
.destination-section .card:hover{
  overflow:hidden;
}
.destination-section .card:hover img{
transform: scale(1.1);
transition: 0.5s ease;
}
/* ===================================
    Gallery-Section
====================================== */
.gallery-section{
  padding-bottom: 0;
  position: relative;
}

    .gallery-section .detail-box {
        position: absolute;
        width: 50%;
        height: 76%;
        top: 60px;
        z-index: 1;
        background: rgb(0 59 149 / 90%);
    }

.gallery-section .detail-box .text-box{
  background: transparent;
  padding: 25px;
  position: absolute;
}
/*.gallery-section .detail-box .text-box .text{
padding-right:105px;
}*/
.gallery-section .detail-box .text-box .subheading span{
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin-right: 8px;
  margin-bottom: 4px;
}

.gallery-section .detail-box .text-box .subheading{
  color: #fff;
  text-align: left;
  margin-bottom: 35px;
}

.gallery-section .detail-box .text-box .heading{
  color: #fff;
  text-align: left;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.gallery-section .detail-box .text-box .text{
  color: #fff;
  text-align: left;
  font-weight: 300;
  margin-bottom: 60px;
}

.gallery-section .detail-box .text-box .button-center{
  text-align: left;
}

/*Carousel Buttons*/
.gallery-section .icons {
  top: 78%;
  left: 54%;
  z-index: 1;
  position: absolute;
  transform: translate(-50%,-50%);
}

.gallery-section  .icons i {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.gallery-section  .icons .customPrevBtn{
  margin-right: 10px;
}
.gallery-section  .icons .customNextBtn{
  margin-left: 10px;
}

/* ===================================
    Counter-Section
====================================== */
.counter-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.counter-section .text-column{
  margin-top: 20px;
}
.counter-section .text-column .heading{
  margin-bottom: 30px;
  text-transform: uppercase;
}
.counter-section .text-column .text{
  padding-right: 95px;
}
.counter-section .img-column img{
  display: flex;
  justify-content: center;
  margin-left:120px;
}
.counter-section .row-1{
  margin-bottom: 60px;
}
.counter-section .num_counter .media i{
  font-size: 36px;
  color: #12b975;
}
.counter-section .num_counter .media .media-body .subheading{
  font-size: 36px;
  font-weight: 500;
  color: #12b975;
}
.counter-section .num_counter .media .media-body .text{
  font-size: 20px;
}

/* ===================================
    Testimonial-Section
====================================== */
.testimonial-section{
  background: url("../image/testimonial.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
    .testimonial-section .bg-overlay {
        width: 100%;
        height: 50%;
        left: 0;
        right: 0;
        top: 0;
        background: rgb(0 59 149 / 90%);
        position: absolute;
    }
.testimonial-section .testimonial-carousel .customer-img-overlay{
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
}
.testimonial-section .testimonial-carousel .customer-container{
  position: relative;
  padding-bottom: 300px;
  padding-top: 300px;
}
.testimonial-section .testimonial-carousel .fa-quote-left{
  color: #fff;
  font-size: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.testimonial-section .testimonial-carousel .carousel-text{
  color: #fff;
  font-weight: 300;
  padding-left: 350px;
  padding-right: 350px;
}
.testimonial-section .testimonial-carousel  .customer-img{
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 160px;
  height: 160px;
  position: absolute;
  transform: translate(-50%,-50%);
  background-color: transparent; 
}
.testimonial-section .testimonial-carousel .customer-detail{
  left:50%;
  top: 78%;
  position: absolute;
  transform: translate(-50%,-50%);
}
.testimonial-section .testimonial-carousel 
.customer-detail .text{
  color: #000;
}
.testimonial-section .testimonial-carousel 
.customer-detail .subheading{
  font-size: 18px;
  color: #000;
}

.testimonial-section .testimonial-carousel .customer-detail .customer-social-icons ul {
  margin-bottom: 0;
}
.testimonial-section .testimonial-carousel .customer-detail .customer-social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 2px;
  margin-left: 2px;
  list-style: none;
}
.testimonial-section .testimonial-carousel .customer-detail .customer-social-icons  ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: inline-block;
  color: #000;;
  height: 30px;
  line-height: 30px;
  width: 30px;
  border: 1px solid transparent;
  text-align: center;
}

/* ===================================
    Contact Section
====================================== */
.contact-section{
  padding-top: 120px;
  padding-bottom: 120px;
}
.contact-section .text-section .subheading{
  margin-bottom: 20px;
  color:#12b975;
  font-size: 18px;
}
.contact-section .text-section .heading{
  margin-bottom: 40px;
  text-transform: uppercase;
}
.contact-section .text-section .text{
  color:#3d3d3d;
}
.contact-section .text-section .social-icons{
  margin-top: 48px;
}
.contact-section .text-section .social-icons ul li{
  margin-left: 0;
  margin-right: 0;
}
.contact-section .text-section .social-icons ul li a{
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.contact-section .form-section{
  margin-top: 135px;
}
.contact-section .form-section .form-control{
  padding: 1.7rem;
  border-radius: 0;
  margin-bottom:28px;
}
.contact-section .form-section .button-center{
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
}
.contact-section .form-section .button{
  width: 100%;
  text-transform: none;
}
.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: 0 0 0 0.2rem transparent;
}

/* ===================================
   Scroll Top
====================================== */

.scroll-top-arrow, .scroll-top-arrow:focus {
  font-size: 23px;
  line-height: 47px;
  color: #fff;
  background-color: #003b95;
  display: none;
  height: 45px;
  width: 45px;
  cursor: pointer;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  text-decoration: none;
  z-index: 80;
  border-radius: 50px;
  transition: all .3s ease-in-out;
}

.scroll-top-arrow:hover {
    background-color: #5b5b5b; 
}

/* ===================================
    Destinantions-Detail Page
====================================== */
.detail-banner{
  background: linear-gradient( rgba(77,156,202, 0.8), rgba(77,156,202, 0.8) ), url('../img/detail-banner.jpg');
  height:70vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}

.detail-banner .heading{
  font-size:60px;
  color:#fff;
  text-transform: uppercase;
  padding-bottom: 16px
}
.detail-banner .img-section{
  position: absolute;
  top: 75px;
  right: 150px
}
.detail-banner .text-section .text-area{
  position: absolute;
  left:124px;
  padding-top: 8rem;
  z-index: 111;
}

/*HEADING SECTION*/
.heading-section{
  padding-top: 120px;
}

.detail-body .des-detail-sec .heading{
 margin-bottom: 40px;
 text-transform: uppercase;
}

.detail-body{
 margin-top: 50px;
}

.detail-body .button-center{
  margin-bottom: 20px;
}

/*DESTINATION DETAIL*/

.destination-detail-slider img{
  width: 100%;
}

.detail-body .swiper-slide img {
  height: auto;
}

.detail-body .destination-list .product-single-price {
  margin-bottom: 10px;
}

.detail-body .destination-list .destination-checklist{
  margin-top: 20px;
}
.detail-body .destination-detail{
  margin-top: 50px;
}
.detail-body .destination-list .destination-checklist ul{
  padding-left: 0;
  margin-bottom: 20px;
}

.detail-body .destination-detail .destination-checklist ul li{
  list-style: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}

.detail-body .destination-detail .destination-checklist ul li i{
  color:  #12b975;
}
.detail-body .destination-list .destination-detail .product-single-price{
  margin-top: 20px;
}

.detail-body .destination-list  .share-product-details .share-product-icons{
  padding: 0;
}

.detail-body .destination-list .social-icons li p{
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

.detail-body .destination-list  .social-icons li{
  margin-right: 15px;
  display: inline-block;
}

.detail-body .destination-list .social-icons ul li a{
  color: #000;
  height: 30px;
  line-height: 32px;
  width: 30px;
  font-size: 14px;
  text-align: center;
}


/*SWIPER SLIDER CODE*/
.wrapper{
  max-height: 360px;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.destination-detail-slider .swiper-slide{
  width: 96%;
}
.destination-detail-slider .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

.Thumbs{
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
}
.Thumbs .swiper-slide {
  opacity: 0.4;
}
.Thumbs .swiper-slide-active {
  opacity: 1;
}

.remove-margins{
  margin: 0;
}


.property-addtional-info {
  list-style-position: outside;
  padding: 0;
  margin: 0 0 0;
  margin-left: 25px;
  list-style: none;
}

.property-addtional-info li{
  margin-bottom: 10px;
}


.property-addtional-info li i{
  display: inline-block;
  margin-right: 2px;
  color: #ff431e;
}


.property-addtional-info li p{
  display: inline-block;
  font-size: 17px;
}

/*CUSTOMER REVIEWS SECTION */
.customer-reviews .review-area{
  border: 1px solid #d3d3d3;
  padding: 30px 15px;
}
.customer-reviews .heading{
  letter-spacing: 0;
  margin-bottom: 50px;
  margin-top: 30px !important;
}

.customer-reviews .reviews .media{
  margin-bottom: 60px;
  margin-top: 16px;
}
.customer-reviews .reviews .text{
  font-size: 16px;
}
.customer-reviews .reviews .media-body{
  padding-left: 30px;
  border-left: 1px solid #d3d3d3;
}
.customer-reviews .reviews .media-body span{
  color: #d3d3d3;
}
.customer-reviews .reviews .media-body .heading{
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 0;
}

.customer-reviews .checked-star{
  color: #ffc600 ;
}
.customer-reviews .half-checked{
  color: #ffc600 ;
}
.customer-reviews .getin_form .user-rating li{
  display: inline-block;
  color: #ffc600;
}

.customer-reviews .btn.button{
  padding: 9px 52px !important;
}

/*DESTINANTIONS SECTION*/
.destination-section .card-title{
  color: #212121;
}
.destination-section .card .card-titile{
  transition: all .5s ease;
}
.destination-section .card:hover .card-title {
  color: #d4b610;
  transition: all .5s ease;
}
.destinationsec-1 .heading{
  text-align: left;

}
/* ===================================
    StandAlone page
====================================== */

/*BANNER*/
.banner{
  background: linear-gradient( rgba(77,156,202, 0.8), rgba(77,156,202, 0.8) ), url('../img/standalone-banner.jpg');
  height:70vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}
.banner .header-text{
  position: absolute;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}
.banner .heading{
  font-size:60px;
  color:#fff;
  text-transform: uppercase;
  padding-bottom: 16px;
}

.page-breadcrumb li{
  display: inline-block;
  font-size: 18px;
  font-weight:500;
  color: #fff;
}
.page-breadcrumb li a{
  color:#fff; 
  margin-right: 5px;
  transition:all 0.3s ease;
}
.page-breadcrumb li i{
  color: #fff;
}

/*MAIN PAGE START*/
.main-page{
  float:left;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
.main-page .standalone-heading .heading{
  font-size: 50px;
}
 
.main-page .standalone-area .heading{
 font-size:40px;
 margin-bottom: 20px;
}
.main-page .row-image{
  position: relative;
}
.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.standalone-area .standalone-row{
  margin-bottom: 40px;
}
.standalone-area .standalone-row:last-child{
  margin-bottom: 0;
}
 .main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
}  

.standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 30px;
}

/* IMAGE HOVER*/
.standaloneoverlay {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  background-color:  #003b95;
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: #003b95;
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}

/*FOOTER*/
footer{
  padding-bottom: 120px;
}

/* ===================================
    Destinations page
====================================== */
.destination-banner{
  background: linear-gradient( rgba(77,156,202, 0.8), rgba(77,156,202, 0.8) ), url('../img/destination-banner.jpg');
  height:70vh;
  background-size: cover;
  display: flex;
  align-items: center;    
}
.destination-banner .header-text{
  position: absolute;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}
.destination-banner .heading{
  font-size:60px;
  color:#fff;
  text-transform: uppercase;
  padding-bottom: 16px;
}


/* ===================================
    Media Queries
====================================== */

/*Banner*/
@media (width: 1920px){
/*Navbar*/
.navbar .navbar-nav{
  margin-left: 27rem;
}
/*Slider Section*/
.slider-area .item img{
  background-size: cover;
  width: 100%;
  height: 100vh;
}
.banner .banner-text{
  top:33%;
}
/*Gallery Section*/
.gallery-section .detail-box{
  height: 68%;
  width: 45%;
  top: 120px;
}

.gallery-section .detail-box .text-box{
  top: 25px;
  text-align: justify;
  padding: 50px 220px 50px 40px;
}
.gallery-section .detail-box .text-box .text{
  text-align: justify;
  padding-right: 0;

}
.gallery-section .icons i{
  font-size: 50px;
}
.gallery-section .detail-box .text-box .text{
  margin-bottom: 70px;
}
.gallery-section .icons{
  top: 69%;
  left: 61%;
}
/*Testimonial section*/
.testimonial-section .testimonial-carousel .carousel-text{
  padding-left: 600px;
  padding-right: 600px;
}
.testimonial-section .testimonial-carousel .customer-container{
  padding-bottom: 295px;
  padding-top: 295px;
}
}
@media (width: 1600px){
.gallery-section .detail-box{
  width: 43%;
  height: 68%;
  top: 104px;
}
.gallery-section .detail-box .text-box{
  padding: 38px;
}
.gallery-section .detail-box .text-box .text{
  padding-right: 40px;
}
.gallery-section .icons{
  top:75%;
}
}
@media (max-width: 1200px){
  /*Navbar*/
.navbar{
  background-color: #fff !important;
}
.navbar .navbar-brand{
  margin-left: 30px;
}
.navbar .navbar-nav{
  margin-left: 4rem;
}
.navbar .navbar-nav .nav-link{
  color: #5b5b5b;
}
.sidemenu_btn span {
  background: #5b5b5b; 
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  background-color: #5b5b5b;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #5b5b5b;
}
.navbar .number p{
  color: #12b975;
}
/*Slider Section Start*/
.slider-area{
  padding-top: 5rem;
}
.slider-area .slider-overlay{
  top:618px;
  bottom: 78px;
}
.slider-area .text-area{
  margin-bottom: 10rem;
}
.slider-area .slider-overlay .text{
  font-size: 17px;
}
.social-icons .slider-social{
  top:64%;
}
/*Slider Form*/
.slider-form{
  top:78%;
}
.slider-form .button-center .button{
  padding: 15px 16px !important;
}
.slider-form .form-group #location{
  width: 115px;
}
.slider-form .contact-form .form-group select{
  width: 100px;
}
/*Gallery Section Start*/
.gallery-section .detail-box{
  width: 55%;
  height: 92%;
  top: 18px;
}
.gallery-section .detail-box .text-box{
  padding: 16px;
  top:10px;
}
.gallery-section .detail-box .text-box .heading{
  font-size: 36px;
  margin-bottom: 30px;
}
.gallery-section .detail-box .text-box .subheading{
  margin-bottom: 30px
}
.gallery-section .icons{
  top:83%;
  left: 54%;
}
.gallery-section .detail-box .text-box .text{
  padding-right: 0;
  margin-bottom: 35px;
}
/*Testimonial Section*/
.testimonial-section .testimonial-carousel .carousel-text{
  padding-left: 30px;
  padding-right: 30px;
}
/*Contact Section*/
.contact-section .text-section .text{
  font-size: 17px;
}
}
@media (max-width: 992px){
  /*WoW Animation*/
.wow {
  visibility: visible !important;
  animation: none !important;
}
  /*Navbar*/
.navbar .navbar-brand{
  margin-left: 35px;
}

/*Side Menu*/
.side-menu{
  width: 100%;
}
/*Slider section*/
.slider-area .slider-overlay{
  bottom: 140px;
  top: 484px;
}
.slider-area .text-area{
  margin-bottom: 0;
}
.social-icons .slider-social{
  display: none;
}

/*Slider Form*/
.slider-form{
  bottom: 490px;
  position: relative;
}
.slider-form .contact-form{
  background-color: transparent; 
}
.slider-form .button-center{
  text-align: center;
  margin-top: 20px;
}
.slider-form .button-center .button{
  margin-left: 0;
  width: 100%;
}
.slider-form .contact-form select{
  margin-top: 5px;
  margin-bottom: 5px;
}
 .slider-form .contact-form .fa-user{
  margin-top: 5px;
  margin-right: 15px !important;
}
  .slider-form .contact-form .fa-users{
  margin-top: 5px;
}
.slider-form .form-group #location{
  width: 500px;
}
/*Destination section*/
.destination-section {
  padding-top: 0;
}
.destination-section .card{
  margin-bottom: 60px;
}
.destination-section .row-2, .row-3{
  margin-bottom: 0;
}
/*Gallery section*/
.gallery-section .detail-box{
  position: relative;
  top: auto;
  transform: translateY(0%);
  color: white;
  width: 100%;
  background: #fff;
  text-align: center;
}
.gallery-section .detail-box .text-box{
  position: relative;
}
.gallery-section .detail-box .text-box .heading{
  color:#5b5b5b;
  font-size: 40px;
  text-align: center;
}
.gallery-section .detail-box .text-box .subheading{
  text-align: center;
  color: #696969;
}
.gallery-section .detail-box .text-box .subheading span{
  background-color: #696969;
}
.gallery-section .detail-box .text-box .text{
  text-align: center;
  color: #5b5b5b;
  font-size: 17px;
}
.gallery-section .detail-box .text-box .button-center{
  text-align: center;
}
.gallery-section .icons i{
  display: none;
}
/*Counter Section*/
.counter-section .text-column{
  text-align: center;
  margin-bottom: 40px;
}
.counter-section .text-column .text{
  padding-right: 0;
  font-size: 17px;
}
.counter-section  .row-2{
  margin-bottom: 0;
}
.counter-section .img-column{
  text-align: center;
}
.counter-section .img-column img{
  display: inline-block; 
  margin-left: 0; 
  justify-content: center; 
}
.counter-section .num_counter .media{
  display: block;
  text-align:center;
  margin-bottom: 40px;
}
.counter-section .num_counter .media i{
  margin-right: 0 !important
}
/*Testimonial section*/
.testimonial-section .testimonial-carousel .carousel-text{
  padding-left: 0;
  padding-right: 0;
}
/*Contact section*/
.contact-section .text-section{
  text-align: center;
}
.contact-section .text-section .text{
  font-size: 16px;
}
/*Scroll Top*/
.scroll-top-arrow{
  display: none !important;
}
/*Destinantions Detail Page*/
.detail-banner .heading{
  font-size: 50px;
}
.detail-body .des-detail-sec .heading{
  font-size: 32px;
}
.customer-reviews .heading{
  text-align: center;
}
.detail-body .destination-list .product-single-price{
  margin-top: 40px;
}
.customer-reviews .reviews .media{
  display: block;
}
.customer-reviews .reviews .media-body{
  padding-left: 0;
  border-left: 1px solid transparent;
}
.customer-reviews .reviews .media .text{
  text-align: center;
}
.destinationsec-1 .heading{
  text-align: center;
}
.destinationsec-1{
  padding-top: 120px !important;
}
/*Destinations Page*/
.dest-sec1{
  padding-top: 120px;
}
/*StandAlone*/
.main-page .text{
  font-size: 17px;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 50px;
}
.standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 0;
}

.main-page .standalone-row .row-image{
  margin-bottom: 50px;
}
.standalone-row:nth-child(3) .row-image{
  margin-bottom: 0;
}
}
@media (max-width: 767px){

  /*Navbar*/
.navbar{
  height: 80px;
}
.navbar .navbar-brand{
  margin-left: 15px;
  width: 55px;
  height: 55px;
  line-height: 37px;
}
.navbar .number p{
  display: none;
}
.sidemenu_btn{
  left: 83% !important;
}
  /*Side Menu*/
.side-nav .navbar-nav .nav-link{
  font-size: 30px;
}
  /*Slider area*/
.slider-area .slider-overlay{
  bottom: 160px;
  top: 277px;
}
.slider-area .slider-overlay .heading{
  font-size: 40px;
}
.slider-area .slider-overlay .text br{
   display: none;
}
.slider-area .slider-overlay .text{
  font-size: 16px;
}
/*Slider Form*/
.slider-form{
  bottom: 505px;
}

/*Destination section*/
.destination-section .heading{
  font-size: 32px;
}
.destination-section .button{
  width: 100%;
}
/*Gallery Section*/
.gallery-section .detail-box .text-box .heading{
  font-size: 32px;
}
.gallery-section .detail-box .text-box .text{
  font-size: 16px;
}
/*Counter Section*/
.counter-section .text-column .heading{
  font-size: 32px;
}
.counter-section .text-column .text{
  font-size: 16px;
}
/*Testimonial Section*/
.testimonial-section .testimonial-carousel .customer-container{
  padding-bottom: 425px;
}
.testimonial-section .testimonial-carousel .carousel-text{
  margin-left: 10px;
  margin-right: 10px;
}
.testimonial-section .testimonial-carousel .fa-quote-left{
  margin-top: 25px;
  margin-bottom: 25px;
}
/*Destinantions Detail Page*/
.detail-banner .heading{
  font-size: 37px;
}
/*StandAlone*/
.banner .heading{
  font-size: 45px;
}
.main-page .text{
  font-size: 16px;
}
/*Destination Page*/
.destination-banner .heading{
  font-size: 45px;
}
footer .text{
  font-size: 13px;
}
}
@media (max-width: 370px){
  /*Side Menu*/
  .side-nav .navbar-nav .nav-link{
  font-size: 25px;
}
/*Slider Area*/
.slider-area .slider-overlay{
  bottom: 85px;
  top: 269px;
}
.slider-form{
  bottom: 442px;
}
  /*Destination Page*/
.destination-banner .heading{
  font-size: 45px;
}
}
