/* ====== Font : Open Sans , Poppins ====== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



/* ============= 01. Reset section ============= */



/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    background-color:#e8e8e8;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

button:focus {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

select {
    user-select: none;
}

label {
    font-weight: normal;
}

iframe {
    width: 100%;
}


/* =====  End of 01. Reset  ====== */


/* ===== 02. Global Style ===== */



.card-text p {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px !important;

}

button {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
   
}

a {
    font-size: 16px;
    
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease;

}

/* === Global buttons start ==== */


.globalBtn{
    text-decoration: none;
    text-transform: capitalize;
    padding: 8px 24px;
    list-style-type: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    color: #FFFFFF;
    border-radius: 5px;
    background: #fb8e26;
    border: none;
    display: table;
    min-width:129px;
}
.globalBtn:hover {
   color: #ffffff !important;
   background: #1a1a1a;
}

.globalBtn a{color: #fff}

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

.globalBtnActive{
    text-decoration: none;
    color: #060606;
    text-transform: capitalize;
    padding: 12px 12px !important;
    border: 2px solid #444444;
    width: 150px;
    border-radius: 7px;
    background: #fff;
}

.globalBtnActive:hover {
    color: #FB8E26;
    border: 2px solid #FB8E26 !important;
    background: #fff;
}

.globalBtnActive button {
    border: 1px solid #FB8E26 !important;
    padding: 16px 36px !important;
}

.globalBtnActive li {
    list-style-type: none;
    cursor: pointer;
    border: 2px solid #FB8E26 !important;
    color: #FB8E26;
    font-size: 16px;
    border-radius: 0.5em;
    font-weight: bold;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}

.globalBtnActive i {
    margin-left: 11px;
    transition: 0.3s ease-in-out;
}

.globalBtnActive:hover i {
    transform: translateX(7px);
}

.globalBtnActive li span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #FB8E26;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.9s ease;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.globalBtnActive li:hover .globalBtnActive a {
    color: #FB8E26 !important;
}

.globalBtnActive li span {
    transform: translateY(0) scale(2);
}

.globalBtnActive li:hover span {
    transform: translateY(45px) scale(0);
}

.globalBtnActive li span:nth-child(1) {
    --n: 1;
}

.globalBtnActive li span:nth-child(2) {
    --n: 2;
}

.globalBtnActive li span:nth-child(3) {
    --n: 3;
}

.globalBtnActive li span:nth-child(4) {
    --n: 4;
}

.globalBtn.whatsappcss {
    background: linear-gradient(45deg, #075E54, #25D366);
    border-bottom: 2px solid #21e16d;
}

.modal-dialog{max-width: 800px}
.modal-body {
    line-height: 26px;
}

/* === Global buttons end === */

/* === animation icon === */
@keyframes animation {
    0% {
        top: 0px;
    }

    50% {
        top: 10px;
    }

    100% {
        top: 0px;
    }
}

/* === End of animation icon === */

/* === video play button animation icon === */
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* === End of video play button animation icon === */

/* === Change background in autofill textbox ==== */
input,
input:hover,
input:focus,
input:active {
    transition: background-color 5000s ease-in-out 0s;
}

/* === End of Change background in autofill textbox ==== */

/* === animation image === */
@keyframes animationTwo {
    0% {
        left: 0px;
    }

    50% {
        left: 10px;
    }

    100% {
        left: 0px;
    }
}

/* === End of animation image === */

/* === button back to top ====*/
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    padding: 17px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #FB8E26;
    color: #FFFFFF;
}

#backToTopBtn:hover {
    background-color: #021F41;
    color: #ffffff;
}

/* === Enf of button back to top ====*/

/* =====  End of 02. Global style  ===== */


/*Form Design*/

#quick-form form {
    background-color: #FFFFFF;
    padding: 30px 30px;
    border-radius:10px;
}

#quick-form input,
#quick-form select {
    outline: none;
    border: none;
    background-color: transparent;
    font-family: 'Open Sans', sans-serif;
    border-bottom: 1px solid #9B9B9B;
    color: #9B9B9B !important;
}

#quick-form input,
#quick-form input:hover,
#quick-form input:focus,
#quick-form input:active {
    -webkit-text-fill-color: #9B9B9B !important;

}

#quick-form input {
    padding: 3px 0 10px 0;
    width: 100%;

}


#quick-form input:hover,
#quick-form select:hover {
    border-bottom: 1px solid #FB8E26;
}

#quick-form select {
    cursor: pointer;
    width: 100%;
    padding: 5px 10px 5px 0;
}

#quick-form input::placeholder,
#quick-form textarea::placeholder {
    color: #888888;
}


input[type="date"]:hover {
    cursor: pointer;
}

input[type="date"] {
    color: #9B9B9B !important;
}

#quick-form form button {
    text-decoration: none;
    text-transform: capitalize;
    padding: 8px 24px;
    list-style-type: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    color: #FFFFFF;
    border-radius: 5px;
    background: #fb8e26;
    border: none;
        transition: all 0.3s ease;
}

#quick-form form li {
    border: none !important;
}

#quick-form form button:hover {
    color: #FFFFFF;
}

#quick-form-message {
    position: fixed;
    display: none;
    background-color: rgba(255, 255, 255);
    color: #000000;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
    text-align: center;
    width: 60%;
    padding: 103px 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    top: 23%;
    z-index: 3;
    right: 19%;
    border-radius: 40px;
}

#quick-form form h6 {
    color: #FB8E26;
    padding-bottom: 15px;
}

#quick-form{
    position: sticky;
    top:20px;
}

.quick-form-container{
    position: sticky;
    top: 10px;
}

/*Form design End*/





/* ====== 1.1 Header section ====== */
#hero .header-slider {
 height: 100%;
}

.header-slider .item, 
.header-slider .owl-stage-outer,
.header-slider .owl-stage,
.header-slider .owl-item{
    height: 100%;
}

.header-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-slider .item:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    background: #0000002b;
}




.bannerText{
    position: absolute;
    width: 100%;
    top: 10vw;
    z-index:1;
}

.header-content {
    width: 100%;
    position: absolute;
    z-index: 99;
}
#innerPages .header-content {
    background: #fff;
    position: relative;
    box-shadow: 6px 0 5px rgba(0,0,0,0.5);
}
#innerPages #about form,
#innerPages #about .aboutImg{
    margin-top: 0;
}
#innerPages .nav-link {
    color: #1a1a1a;
}
#innerPages{
    padding: ;
}
.inner-bannerImage{
    width: 100%;
    height: 300px;
    position: absolute;
    overflow: hidden;
    top: 0;
    z-index: -1;
}
.inner-bannerImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.inner-herro-banner {
    padding: 90px 0 94px 0 !important;
}
#packages{
    padding: 0px 0 90px 0;
    background: #f3f3f3;
}
.destination-carousel{
height: 68vh;
    overflow: hidden;
    background: #fff;
    margin-bottom: 60px;
    margin-top: 30px;
    border-radius: 20px;
}
.destination-carousel .item{
    width: 100%;
    height: 100%;
}

.destination-carousel .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.package-hotels-gallery{}
.package-hotels-gallery {
    margin-bottom: 30px;
}
.package-hotels-gallery .swiper-slide{}
.package-hotels-gallery .swiper-slide img{}


.package-title{margin-bottom: 20px;}
.package-title h3{
    font-weight: 900;
    font-size: 25px;
}
header {padding:10px 0;}
.navbar-brand img {width: 200px;}

header nav a {
    padding: 0 4px;
}

header nav a:hover {
    color: #FB8E26;
}

header .nav-item {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.nav-link {
    color: #1a1a1a;
}

header .nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 3px;
    display: block;
    width: 0;
    height: 5px;
    background: #FB8E26;
    transition: width .5s ease-in-out;
}

header .nav-item:hover::after {
    width: 91%;
    transform: scaleY(1);
    border-bottom-color: #FB8E26;
}

.navbar-toggler {
    background-color: #FB8E26 !important;
}

.active {
    color: #FB8E26 !important;
}

.pages-active {
    color: #FB8E26 !important;
}

.navbar-toggler i {
    color: #FFFFFF;
}

header hr {
    margin: 5px 0 1rem 0 !important;
    color: inherit;
    background-color: #FFFFFF;
    border: 0;
    opacity: 1;
    height: 1px;
}

nav .dropdown-item {
    color: #021f41;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: transparent;
    color: #FB8E26 !important;
}

nav .dropdown-menu li {
    padding: 8px 10px 8px 14px;
}

.navbar {
    background: #fff;
    padding: 15px 0px;
    border-radius: 10px;
}

/* sidebar start*/
.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #9a9b9a;
    border-radius: 10px;
}

aside {
    position: relative;
    z-index: 11;
}

.sidebar {
    padding: 25px 0;
    background-color: white;
    display: inline-block;
    position: fixed;
    top: 0;
    width: 320px;
    left: -500px;
    transition: 0.6s ease-in-out;
    height: 100%;
    overflow: scroll;
    text-align: left;
}

.sidebar img {
    width: 170px;
}

.sidebar button {
    padding: 10px 20px;
    margin: 18px 12px 0 0;
    border: 1px solid black;
    background-color: #FB8E26;
    font-size: 17px;
}

.btn-close {
    --bs-btn-close-color: #FFFFFF;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgb(251 142 38 / 25%);
    opacity: 1;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: none;
}

.btn-outline-primary {
    border-color: #021f41;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-outline-primary:active:focus {
    box-shadow: none
}

.btn-close i {
    filter: brightness(0) invert(1);
}

.btn-close:focus {
    box-shadow: none;
}

.sidebar ul {
    padding: 14px 0;
}

.sidebar ul li:last-child {
    padding-bottom: 0 !important;
}

.sidebar li {
    padding: 10px 0px !important;
    width: 112px;
}

.sidebar a {
    padding-left: 16px !important;
    color: #021f41;
}

.card-body {
    padding: 0 1rem;
}

.btn-outline-primary {
    --bs-btn-border-color: #021f41;
}

.btn-outline-primary:hover {
    background-color: #FB8E26;
    border: none;
}

.btn-outline-primary:hover i {
    color: white;
}

.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: #FB8E26 !important;
    border-color: #FB8E26;
}

.btn-outline-primary:hover {
    color: #FFFFFF;
}

.sidebar-toggle {
    left: 0;
}

.more {
    display: flex;
    justify-content: space-between;
}

.more a:first-child {
    padding: 7px 0 0 16px !important;
}

.btn-outline-primary {
    margin: 7px 14px 0 0;
    padding: 0 14px 0 0 !important;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#collapseExample a {
    padding: 7px 0 !important;
}

.sidebar .card {
    border: none;
}

/* sidebar end*/
/* ====== End 1.1 Header section ====== */


    /* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ====== 1.2 hero section ====== */
#hero {
    padding: 0px 0 0 0;
    margin-top: 0px;
    height: calc(100vh - 70px);
    overflow: hidden;
    background: #000;
}
#hero h1 {
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
    font-size: 150px;
}
#hero h1 span{
    color: #FFFFFF;
    text-align: center;
}

#hero p {
    color: #FFFFFF;
    padding: 20px 170px 20px 170px;
    text-align: center;
    font-size: 23px;
}
#hero .globalBtn{
    margin: 0 auto;
}

#hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
        opacity: 0.75;
}

/* ====== End 1.2 Hero section ====== */

/* ====== 1.3 features section ====== */
#features {
    margin-top: -207px;
    background-color: rgba(2, 31, 65, 0.7);
    padding: 31px 0 30px 0;
    position: relative;
    z-index: 1;
}

#features h6 {
    padding: 8px 0 5px 0;
    color: #FFFFFF;
    text-align: left;
}

#features p {
    padding: 5px 0;
    color: #FFFFFF;
    text-align: left;
}

#features .col-md-3 div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px 0 0;
}

#features .col-md-3 {
    position: relative;
    display: inline-block;
}

#features .col-md-3::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 11px;
    display: block;
    width: 0;
    height: 5px;
    background: #FB8E26;
    transition: width .5s ease-in-out;
}

#features .col-md-3:hover::after {
    width: 91%;
    transform: scaleY(1);
}

img[alt="featureIcon"]:hover {
    position: relative;
    animation-name: animation;
    animation-duration: 0.5s;
    animation-iteration-count: 2;
}

/* ====== End 1.3 features section ====== */

/* ====== 1.4 about section ====== */

/*CKEDITOR FrontEnd image and text Css Start */

.details-content-image,
.tourCardsDetails{width: 100%;}

.content-banner{width: 100%;}

.content-banner .image, 
.content-banner .image-inline,
.tourCardsDetails .image, 
.tourCardsDetails .image-inline{position: relative;}


.content-banner .image-style-block-align-right,
.tourCardsDetails .image-style-block-align-right{margin-left: auto;margin-right: 0;}


.content-banner .image-style-align-right,
.content-banner .image-style-side,
.tourCardsDetails .image-style-align-right,
.tourCardsDetails .image-style-side{float: right;margin-left: 45px;max-width: 50%;}


.content-banner .image-style-align-left
.tourCardsDetails .image-style-align-left{float: left;margin-right: 45px;}

.content-banner .table 
.tourCardsDetails .table {
    display: table;
    margin: 0.9em auto;
}


.content-banner .image.image_resized,
.tourCardsDetails .image.image_resized {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}

.content-banner .image,
.tourCardsDetails .image {
    clear: both;
    display: block;
    min-width: 50px;
    text-align: center;
}



.content-banner .image-style-side,
.tourCardsDetails .image-style-side {
    float: right;
    margin-left: 15px;
    max-width: 50%;
}

.content-banner .image_resized,
.tourCardsDetails .image_resized {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}
.content-banner .image_resized img,
.tourCardsDetails  .image_resized img {
    width: 100%;
    margin-bottom: 20px;
}



.content-banner hr,
.tourCardsDetails hr{
    float: left;
    width: 100%;
    margin: 40px 0;
}


.content-banner .page-break {
    align-items: center;
    clear: both;
    display: flex;
    justify-content: center;
    padding: 5px 0;
    position: relative;
}


/*CKEDITOR Front End image and text Css End */
#about {
    margin:60px 0;
}
#about h1{
    font-size: 36px;
    line-height: normal;
}
#about h2{
    font-size:28px;
    line-height: normal;
}
#about h3 {
    font-size: 22px;
    line-height:28px;
}

#about h4{
     font-size: 18px;
    line-height:22px;
}

.aboutus h1{
    font-size: 36px;
    line-height: normal;
}
.aboutus h2{
    font-size:28px;
    line-height: normal;
}




#about-message {
    position: fixed;
    display: none;
    background-color: rgba(255, 255, 255);
    color: #000000;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
    text-align: center;
    width: 60%;
    padding: 103px 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    top: 23%;
    z-index: 3;
    right: 19%;
    border-radius: 40px;
}




#about form h6 {
color: #000;
    padding-bottom: 1px;
    font-size: 15px;
    line-height: normal;
}

.aboutImg img {
    width: 100%;
}

.aboutImg img:hover {
    position: relative;
    animation-name: animationTwo;
    animation-duration: 0.5s;
    animation-iteration-count: 2;
}

#about .aboutImg {
    margin-top: -5.5rem;
    position: relative;
}

#about .customer {
    background-color: #021F41;
    padding: 20px 0;
}

#about .customer,
#about .experience h2 {
    color: #FFFFFF;
}

#about .experience p {
    text-align: center;
    color: #FFFFFF;
}

#about .experience {
    background-color: #FB8E26;
    width: 195px;
    padding: 47px 36px;
    border-radius: 50%;
    position: absolute;
    bottom: 60px;
    left: -134px;
}

#about h4 {
    color: #FB8E26;
    padding: 10px 0 20px 0;
}

#about .col-md-9 p {
    color: #565656;
    padding: 20px 0 10px 0;

}

.about {
    margin-bottom: 0 !important;
}

#about .homeAbout{
    margin-top: -130px;
    position: relative;
    z-index: 999;
}

.aboutus{padding: 80px 0;}
.aboutus p{    display: table;
    padding: 5px 0;}
.aboutus p strong{display: table;
    padding: 2px 0;}



.title{position:relative;display:block;font-size:36px;line-height:44px;font-weight:700;}
.sec-title p{color:#7c7e84;font-size:17px;line-height:27px;font-weight:400;text-transform:none;margin:13px 0 0;}
.single-team-member{
    position: relative;
    display: flex;
    margin-bottom: 50px;
    transition: all 500ms ease;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.single-team-member .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
    width: 210px;
    height: 200px;
}
.single-team-member .img-holder img{
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms ease;
    max-height: 306px;
    height: 100%;
    object-fit: cover;
        object-position: top center;
}
.single-team-member:hover .img-holder img{transform:scale(1.05) rotate(0deg);}
.single-team-member .name{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 24px 24px;
    transition: all 700ms ease 600ms;
    width: calc(100% - 200px);
    text-align: left;
}
.single-team-member:hover .name{-webkit-box-shadow:0px 3px 15px 1px #F3F3F3;box-shadow:0px 3px 15px 1px #F3F3F3;}
.single-team-member .name p{
    color: #000;
    position: relative;
    display: inline-block;
    background: #ffffff;
    margin: 0;
    line-height: 20px;
    padding: 0;
    z-index: 1;
    font-size: 15px;
}
.single-team-member .name p span{position:relative;display:inline-block;background:#ffffff;padding:0 10px;color:#828282;line-height:20px;margin:0;z-index:2;font-size: 14px;}
.single-team-member .name h3{color:#27282c;font-weight:600;margin:8px 0 0;    font-size: 16px;}


/* ====== End 1.4 about section ====== */

/* ====== 1.5 special offer section ====== */


.place_title{    margin-bottom: 30px;}
.place_title h1{font-size: 50px;font-weight: 900;    line-height: normal;}
.place_title p{
    color: #ffffff;
    background: #ff5400;
    display: inline-block;
    padding: 3px 8px;
    font-size: 16px;
}
.place_details h2{font-size: 40px;font-weight: 700; line-height: normal;}
.place_details h3{font-size: 32px;font-weight: 700; line-height: normal;}
.place_details h4{font-size: 24px;font-weight: 700; line-height: normal;}
.place_details h5{font-size: 22px;font-weight: 700; line-height: normal;}
.place_details p{font-size: 15px;font-weight: 400; }

#special {
    margin: 0;
    background-color: #fff;
    padding: 50px 0;
}

#special img {
    width: 100%;
    transition: 0.3s ease-in-out;
        height: 100%;
}

#special h3 {
    color: #FB8E26;
    padding: 35px 0 20px 20px;
}

#special p {
    padding: 0 0 20px 20px;
    color: #FFFFFF;
}

#special .special-heading{
    text-align: center;
}
#special .special-heading h4{
    color: #FB8E26;
    padding-bottom: 10px;

}
#special .special-heading h2{
    color: #262626;
}


#special .placeName{
    position: absolute;
    color: #fff;
    min-width: 90px;
    margin: 10px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    padding: 0 10px;
}

.offer-Info{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0px 20px 20px 20px;
}
#special .offer-Info h3{
    font-size: 17px;
    color: #fff;
    padding: 0;
    display: flex;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: normal;
}

#special .offer-Info ul{
    display: inline-flex;
    gap: 5px;
}

#special .offer-Info ul li{
    width: 15px;
    height: 15px;
    display: flex;
    color: #fff;

}
#special .offer-Info ul li img{
    width: 100%;
    height: 100%;
}
.offer .offer-Info a{
    padding: 0 !important;
    width: 90px;
    color: #ffffff;
    background: #fb8e26;
    border-radius: 4px;
    font-weight: 400;
    font-size: 13px;
    height: 31px;
    align-items: center;
    display: flex;
    justify-content: center;

}
.offer {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: table;
}
.offer a{
    display: table;
}

.offer::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(3deg, #0000008c, #28282800);
    position: absolute;
    top:0;
    left: 0;
}

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

.offer a{
    width: 100%;
    height: 100%;
}


.overlaytwo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, #021F41 0%, rgb(255 255 255 / 11%) 80%, transparent 100%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.4s ease;
}

.offer:hover {
    transform: scale(1.04);
        box-shadow: 0px 10px 39px -4px rgb(114 114 114 / 62%);
}

.offer:hover .overlaytwo {
    height: 100%;
}

.overlaytwo .overlay_text {
    position: absolute;
    width: 100%;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlaytwo .overlay_text h3 {
    color: #ffffff !important;
    padding: 0 !important;
}

.overlaytwo .overlay_text a {
    color: #FFFFFF;
    border-radius: 40px;
    margin-top: 50px;
}

.special {
    background-color: transparent !important;
    padding: 0 0 50px 0 !important;
    margin: 0 0 50px 0 !important;
}

.special p {
    color: #262626 !important;
}

/* ====== End 1.5 special offer section ====== */

/* ====== 1.6 tours section ====== */
#tour {
    background-image: url(../images/why-choose-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 50px 0;
}

#tour h4 {
    color: #FB8E26;
    padding-bottom: 10px;
}

#tour h2 {
    color: #262626;
}

#tour p:first-child {
    color: #000;
}

#tour .tourPara {
    width: 70%;
}
.tourCardsBox{

}

.tourCards figure {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tourCards img {
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    object-fit: cover;
}

.tourCards img:hover {
    transform: scale(0.9);
}



.tourCards .tourCardsBox{
    background-color: #FFFFFF;
    padding: 0 ;
    padding-bottom: 30px;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 6px 14px -6px rgba(24, 39, 75, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.tourCards h6 {
    color: #e73700;
    padding: 25px 30px 0 30px !important;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
}



.tourCards a {
    color: #757575;
    width: 118px;
    display: flex;
    height:36px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    gap: 5px;
    background: #e9e9e9;
    border-bottom: 2px solid #c9c9c9;
}

.tourCards a:hover i {
    transform: translateX(7px);
}

.tourCards a:hover {
    color: #FB8E26;
}

.tourCards a:hover i {
    color: #FB8E26;
}

.tourCardsDetails{
    min-height: 80px;
    overflow: hidden;
    width: 100%;
    padding:0 30px;
    margin-bottom: 30px;
}

.tourCardsDetails p{
    font-size: 15px !important;
    line-height: 22px !important;
}

.tourCardsDetails h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;

}

.tourCardsDetails h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;

}

.tourCardsDetails h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;

}

.tourCardsDetails h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;

}

.tourCardsDetails h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    padding: 10px 0;
    text-align: right;
}

.tourCardsDetailsPrice{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.tourCardsDetailsPrice p{

}

.tourCardsDetailsPrice p span{

}

.tourCardsDetailsPrice h5{
    align-items: center;
    display: flex;
    gap: 10px;
}

.tourCardsDetailsPrice h5 span {
        font-size: 13px;
        position: relative;
}

.tourCardsDetailsPrice h5 span:before {
    width: 46px;
    background: red;
    right: 0;
    height: 1px;
    position: absolute;
    top: 6px;
    content: '';
    transform: translate(-50%, -50%) rotate(-8deg);
    left: 50%;
    top:50%;

}

.tourCardsDetailsPrice p{}


.tourCardsDetails h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.tourCardsDetails p {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}
.tourCardsDetails a {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tourCardsDestinations{}
.tourCardsDestinations ul{    
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    gap: 0px 20px;
    margin-top: 20px;
}
.tourCardsDestinations ul li{
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    gap: 5px;
        align-items: center;
}
.tourCardsDestinations ul li:before{
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #919191;
    right: -11px;
}

.tourCards .tourCardsDestinations i{color: #df1900;}

.tourCardsDestinations ul li:last-child:before{
    content: unset;
}

.tourCardsButtons{
display: flex;
    padding: 0 30px;
    justify-content: space-between;
    width: 100%;
}

.tourCards{
    display: flex;
    width: 100%;
    padding: 0px 26px;
    align-items: center;
    justify-content: space-between;
}
.tourCards .whatsappcss a{
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    color: #FFFFFF;
    border-radius: 5px;
    border: none;
    display: flex;
    width: 115px;
    background: linear-gradient(324deg, #0a8b43, #12c354);
    border-bottom: 2px solid #05602c;
    margin: auto;
    height:36px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
}
.tourCards .whatsappcss a i{
    color: #fff;
}


.tourCards i {
    color: #1e1e1e;
    transition: 0.3s ease-in-out;
    margin-left: 0px;
    font-size: 13px;
}




/* ====== End 1.6 tours section ====== */

/* ====== 1.7 why choose us section ====== */
#choose {
    margin: 0 0 100px 0;
}

.chooseBg {
    position: relative;
        padding: 50px 0;
    text-align: center;
}

.chooseBg::before {
    content: "";
    background: url('../images/choose-img.webp') no-repeat center center/cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.8;
}

.chooseBg::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#choose h4 {
    color: #FB8E26;
    padding-bottom: 6px;
}

#choose h2 {
    color: #FFFFFF;
}

#choose h6 {
    color: #FB8E26;
    padding-bottom: 10px;
    padding-top: 20px;
}

#choose a {
    color: #FFFFFF;
}

#choose a:hover {
    border: 1px solid #FB8E26;
}

.chooseCrads {
}

.chooseCrads .col-md-4 div {
    background: linear-gradient(180deg, #FFF 0%, #FCF7E2 100%);
    text-align: center;
    padding: 40px 30px;
}

.chooseCrads .col-md-4 div:hover {
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.12);
}

.chooseCrads .col-md-4 {
    display: flex;
    justify-content: center;
}

.chooseCrads figure {
    background-color: #FB8E26;
    display: inline-block;
    padding: 14px 14px;
    border-radius: 50%;
}

.chooseCrads img {
    width: 40px;
}

.chooseCrads .col-md-4:hover figure {
    position: relative;
    animation-name: animation;
    animation-duration: 0.5s;
    animation-iteration-count: 2;
}

.chooseCrads p {
    color: #9B9B9B;
    text-align: center;
}

/* ====== End 1.7 why choose us section ====== */

/* ====== 1.8 services section ====== */\

#services{
    padding: 50px 0 80px 0;
   
}
.services {
    background: #fff;
    width: 100%;
    padding: 100px 0 70px 0;
}
.services .col-md-3:nth-child(5) {
    margin: 0;
    padding: 0;
}

.services .col-md-3:nth-child(5) img {
    width: 58px;
}
/* ====== End 1.8 services section ====== */

/* ====== 1.9 what we do section ====== */
#weDo {
    margin: 50px 0;
}

.weDo-video {
    object-fit: cover;
    position: relative;
}

#weDo img {
    width: 100%;
}

#weDo .col-md-6 {
    padding: 0;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 3px;
    height: 27px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    border: 1px solid #FB8E26;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #FB8E26;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 200ms;
    background-color: #FB8E26;
}

.video-play-button span {
    color: #FFFFFF;
    display: block;
    position: relative;
    z-index: 3;
    margin-top: 3px;
    width: 0;
    height: 0;
    font-size: 30px;
    left: -7px;
    top: -3px;
}

.weDo-content {
    background-color: #021F41;
}

#weDo h2 {
    color: #FFFFFF;
    padding: 0 64px 0 45px;
}

#weDo h4 {
    color: #FB8E26;
    margin: 0 0 15px 45px;
}

#weDo p {
    color: #FFFFFF;
    margin: 25px 0 25px 0;
    padding: 0 78px 0 45px;
}

#weDo .globalBtnActive {
    margin-left: 50px;
}

.weDo {
    background-image: url(../images/bg/bg-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding-bottom: 100px;
    margin-bottom: 0 !important;
}

/* ====== End 1.9 what we do section ====== */

/* ====== 1.10 our team section ====== */
#team {
    padding:50px 0;
}

#team h2 {
    padding: 20px 0 0px 0;
}

#team h4 {
    color: #FB8E26;
}

#team .globalBtnActive{ margin: 0 auto;}


.teamCard {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

#team img {
    width: 100%;
    transition: 0.3s ease-in-out;
    object-fit: cover;
}

#team h6:first-child {
    color: #000000;
    padding: 40px 0 0 20px;
}

#team p {

}

.overlaythree {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(356deg, rgba(2, 0, 36, 1) 0%, rgba(2, 31, 65, 0.6) 35%, transparent 100%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.4s ease;
}

.teamCard:hover {
    transform: scale(0.9);
}

.teamCard:hover .overlaythree {
    height: 100%;
}

.overlay_text {
    position: absolute;
    width: 100%;
    bottom: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#team a {
    padding: 0;
    
}

.overlay_text i {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 9px 11px 9px 10px;
    font-size: 21px;
    border-radius: 50%;
    transition: 400ms;
    cursor: pointer;
    background-color: transparent;
}

.overlay_text a:first-child i {
    padding: 9px 13px 9px 13px;
}

.overlay_text a:nth-child(2) i {
    padding: 9px 10px 10px 11px;
}

.overlay_text i:hover {
    color: #FB8E26;
    background-color: #FFFFFF;
    transition: 400ms;
}

.team-cards {
    margin-top: 80px !important;
}

/* ====== End 1.10 our team section ====== */

/* ====== 1.11 faq section ====== */
/*#faq {
    background-image: url('../images/faq-img.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    margin-bottom: 0px;
}*/

#faq {
    background:#fff;
    padding-bottom: 50px;
}

#faq .accordion-button:not(.collapsed) {
    color: #FB8E26;
    background-color: #FFFFFF;
    box-shadow: none;
}

#faq p {
    color: #9b9b9b;
}

.accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

#faq .accordion-button {
    color: #262626;
    background-color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 1rem 0;
}

#faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

#faq .accordion {
    --bs-accordion-border-color: none;
    border: none;
    padding-top: 20px;
}

#faq .accordion-button:not(.collapsed)::after {
    background-image: url("../images/line.png") !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 3px;
}

#faq .accordion-button::after {
    background-image: url("../images/plus2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



.faq-section {
    background-color: #FFFFFF;
    padding: 60px 60px 50px 60px;
}

#faq h4 {
    color: #FB8E26;
    padding-bottom: 20px;
    text-align: center;
}

#faq h2 {
    text-align: center !important;
    color: #262626;
}

.faq {
    background-image: none !important;
    background-color: #FFFFFF;
    margin-bottom: 0 !important;
    padding: 40px 0 50px 0;
}

/* ====== End 1.11 faq section ====== */

/* ====== 1.12 testimonials section ====== */
#testimonials {
    margin: 100px 0;
}

#testimonials p {
    color: #9B9B9B;
    text-align: center;
}

#testimonials h4 {
    color: #FB8E26;
}

#testimonials h2 {
    padding: 20px 450px 40px 0;
    color: #262626;
}

#testimonials .col-md-4 {
    background-color: #FFFFFF;
    padding: 30px 30px;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
}

#testimonials img {
    clip-path: circle(50% at 50% 50%);
    width: 65px;
}

#testimonials h6 {
    padding: 14px 0 4px 0;
}

#testimonials i {
    font-size: 20px;
    color: #FB8E26;
}

.testimonial-card {
    margin-top: 80px !important;
}

/* ====== End 1.12 testimonials section ====== */

/* ====== 1.13 logoipsum section ====== */
#logoipsum {
    margin: 50px 0 0 0;
    padding: 60px 0;
    background-color: #FFFFFF;
}

#logoipsum img {
    width: 180px;
}

/* ====== End 1.13 logoipsum section ====== */

/* ====== 1.14 start planning section ====== */
#planning {
    position: relative;
    padding: 50px 0;
}

.planningContent {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 85%;
    border:1px solid #dddddd;
    margin: 0 auto;
}

.planningContentBox h3{
        font-size: 25px;
    line-height: normal;
    font-weight: bold;
}


.planningContentImageBox {
    content: "";
    background: url('../images/footer-image7.webp') no-repeat center center/cover;
    width: 500px;
    height:400px;

}
.planningContentBox{
        width: calc(100% - 530px);
            padding: 0 40px;

}


/* ====== End 1.14 start planning section ====== */

/* ====== 1.15 blog section ====== */
.packge_hotels {
    margin-top: 50px;
}
.details_hotels_info_box{display: flex;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 5px 0px rgba(0,0,0,0.1);
}
.hotelImag{width:140px;height:140px;}
.hotelImag img{width: 100%;height: 100%; object-fit: cover}

.hotelImagInfo{width: calc(100% - 140px);
    margin-left: 30px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;}
.hotelImagInfo .placeName{
    color: #000000;
    background: #ffe600;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 21px;
    font-size: 13px;
    padding: 0 10px;
}
.hotelImagInfo h3{
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
}
.hotelImagInfo p{    font-size: 15px;}

.hotelImagInfo ul{display: inline-flex;    gap: 3px;}
.hotelImagInfo ul li{list-style:none}

.hotelImagInfo a{
    display: inline-flex;
    width: max-content;
    align-items: center;
    font-size: 13px;
    border-radius: 5px;
    color: #113293;
    font-weight: 600;
    margin-bottom: 8px;
    gap: 8px;
}
.packge_hotels{}
.packge_hotels h4{  
    margin: 0 0px 20px 0;
    color: #262523;
    font-weight: 900;
    font-size: 25px;
}


/* ========= Gallery Page Start ========= */

#gallery{padding: 50px 0 90px 0;}

.gallery-item {
    position: relative;
    margin-bottom: 29px;
    padding: 7px;
    background: #ffff;
    box-shadow: 0 3px 0px 0 rgb(0 0 0 / 18%);
    border-radius: 1px;
}
.gallery-box{
margin-top: 30px;
}
.rtj {
  position: relative;
}
.gallery-item .rtj:hover:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 102%;
    background: linear-gradient( 176deg, #03a9f42b 0%, #03a9f442 47%, #2196f3e3 100% );
    opacity: 9;
    transition: all 0.3s ease 0s;
    border-radius: 0;
}
.sub_tittle_gallery {
    font-style: normal;
    line-height: 1.1;
    color: #12265a;
    font-size: 13px;
    font-weight: 400;
    padding: 15px 2px 10px;
    text-align: center;
}
.gallery-item img {
  max-width: 100%;
  height: auto;
}
.gallery-item .gallery-desc {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 25px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gallery-item .gallery-desc .image-popup {
  display: inline-block;
  width: 50px;
  line-height: 50px;
  height: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 55px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.gallery-item:hover .gallery-desc .image-popup {
  opacity: 9;
}
.galleryTabs{margin-bottom: 15px}
.galleryTabs ul {display: flex;gap: 10px;justify-content: center;}
.galleryTabs ul li{}
.galleryTabs ul li a{
    background: #c5c5c5;
    padding: 8px 13px;
    color: #fff;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.galleryTabs ul li.active a{
        background: #fb8e26;
}



/*gallery_popup*/

.gallery .item img {
  width: 100%;
  height: auto;
}

.gallery_modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 0 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.gallery_modal .modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-width: 100%;
}
.gallery_modal .close {
  color: #f1f1f1;
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.gallery_modal .close:hover,
.gallery_modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#carouselExampleCaptions .carousel-item {
  height: 88vh;
}
#carouselExampleCaptions .carousel-item img {
}


/* ========== Gallery Page End ============ */





/* ====== 1.16 newsletter section ====== */
#newsletter {
    padding: 60px 0;
}

#newsletter h4 {
    color: #FB8E26;
}

#newsletter h2 {
    color: #262626;
    padding: 20px 350px 30px 0;
}

#newsletter p {
    color: #9B9B9B;
}

#newsletter form {
    display: flex;
}

#newsletter input {
    border: 1px solid #FB8E26;
    outline: none;
    padding: 17px 163px 19px 20px;
    padding: 16px 20px 17px 20px;
    border-radius: 40px;
    margin-right: 8px;
    width: 350px;
    font-size: 16px;
}

#newsletter li {
    border: none !important;
}


#newsletter button {
    color: #FFFFFF;
    border-radius: 40px;
    background-color: transparent;
    transition: 0.7s ease-in-out;
}

#newsletter button:hover {
    color: #FB8E26;
}

#newsletter-message {
    position: fixed;
    display: none;
    display: none;
    background-color: rgba(255, 255, 255);
    color: #000000;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
    text-align: center;
    width: 60%;
    padding: 103px 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    top: 23%;
    z-index: 3;
    right: 19%;
    border-radius: 40px;
}

/* ====== End 1.16 newsletter section ====== */

/* ====== 1.17 footer section ====== */
footer {
    background-color:#f7f8fa;
    padding: 60px 0 30px 0;
}

footer h4 {
       color: #302b28;
    padding: 0 0 25px 0;
    font-size: 18px;
    font-weight: 700;
}
footer .address {
    padding:0;
    gap: 13px;
    display: flex;
    flex-direction: column;
}



.footer-links a {
    padding: 0 0 10px 0 !important;
}

.footer-links a {
    color: #3e3e3e;
}

.footer-links a:hover {
    color: #FB8E26;
}

.address p {
    color: #3e3e3e;
    padding-left: 0px;
    transition: 0.3s ease;
}

.address p:hover {
    color: #FB8E26;
}

.address i {
    color: #FB8E26;
}

.address div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reservation p {
    color: #3e3e3e;
    padding: 0 70px 0 0;
}

footer hr {
    color: white;
    margin-top: 2.5rem !important;
}




.sub-footer p {
    color: #3e3e3e;
    font-size: 14px;
    text-align: right;
}

.sub-footer img {
    width: 210px;
}

.sub-footer a {
    padding: 0 !important;
}

/* ====== End 1.17 footer section ====== */

/* ====== End 2.1 hero section ====== */
.header-about {
    position: relative;
}

.header-about::before {
    content: "";
    background: url('../images/about-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-about::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero {
    padding: 90px 0 90px 0;
}

.hero h2 {
    color: #FFFFFF;
}

.hero a {
    color: #FFFFFF;
    padding: 0 !important;
}

.hero a:hover {
    color: #FB8E26
}

.hero li {
    color: #FFFFFF !important;
    font-weight: 700;
}

.hero i {
    color: #FB8E26;
    font-size: 18px;
}

.breadcrumb-item {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
}

/* ====== End 2.1 hero section ====== */

/* ====== 3.1 hero section ====== */
.header-services {
    position: relative;
}

.header-services::before {
    content: "";
    background: url('../images/services-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-services::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 3.1 hero section ====== */

/* ====== 4.1 hero section ====== */
.header-blog {
    position: relative;
}

.header-blog::before {
    content: "";
    background: url('../images/blog-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-blog::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 4.1 hero section ====== */

/* ====== 5.1 hero section ====== */
.header-destination {
    position: relative;
}

.header-destination::before {
    content: "";
    background: url('../images/destinations-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-destination::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 5.1 hero section ====== */

/* ====== 6.1 hero section ====== */
.header-testimonials {
    position: relative;
}

.header-testimonials::before {
    content: "";
    background: url('../images/testimonials-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-testimonials::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 6.1 hero section ====== */

/* ====== 7.1 hero section ====== */
.header-faq {
    position: relative;
}

.header-faq::before {
    content: "";
    background: url('../images/faq-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-faq::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 7.1 hero section ====== */

/* ====== 8.1 hero section ====== */
.header-team {
    position: relative;
}

.header-team::before {
    content: "";
    background: url('../images/team-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-team::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 8.1 hero section ====== */

/* ======9.1 hero section ====== */
.header-contact {
    position: relative;
}

.header-contact::before {
    content: "";
    background: url('../images/contact-hero-img.webp') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.header-contact::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ====== End 9.1 hero section ====== */

/* ====== 9.2 contact section ====== */
#contact {
    background: linear-gradient(to bottom, #021F41 70%, #FFFFFF 70%);
    padding: 70px 0 70px 0;
}

#contact h4 {
    color: #FB8E26;
    padding-bottom: 25px;
}

#contact h2 {
    color: #FFFFFF;
    padding-bottom: 20px;
}

#contact p {
    color: #FFFFFF;
    padding: 0 500px 30px 0;
}

#contact h5 {
    color: #fff;
}
#contact h7 {
    color: #000;
    font-weight: 600;
    font-size: 17px;
}

.socialIcon a{
    border: 1px solid #c6c6c6;
    background: #1f1e1d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
        color: #fff;
}


#contact .fa-regular {
    color: #FB8E26;
    font-size: 30px;
}

#contact .row {
    margin: 0;
}

#contact .col-md-8 {
    padding: 40px 60px;
}

#contact input {
    outline: none;
    border: none;
    border-bottom: 1px solid #FB8E26;
    width: 100%;
    color: #9b9b9b;
    padding-bottom: 6px
}

#contact input,
#contact input:hover,
#contact input:focus,
#contact input:active {
    -webkit-text-fill-color: #9B9B9B !important;

}

#contact form div {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px;
}

textarea {
    outline: none;
    border: none;
    border-bottom: 1px solid #FB8E26;
    width: 100%;
    color: #9b9b9b;
    padding-bottom: 0;
}

#contact .globalBtnActive li {
    border: none !important;
}

#contact .globalBtnActive button {
    width: 100%;
}

#contact ul {
    width: 100%;
}

#contact .col-md-4 {
    background-color: #FB8E26;
    padding: 0 100px;
}

#contact .col-md-4 i {
    color: #FFFFFF;
    font-size: 47px;
}

#contact .col-md-4 i:hover {
    color: #021F41;
}

#contact .address p {
    padding: 0 !important;
    text-align: center;
}

.address{padding: 70px 0 70px 0}

.address a:hover p {
    color: #021F41 !important;
}

#contact .col-md-4 h3 {
    color: #FFFFFF;
    padding-bottom: 20px;
    text-align: left;
}

#contact .col-md-4 a {
    padding: 0 !important;
}

#contact button {
    color: #FFFFFF;
    border-radius: 40px;
    background-color: transparent;
    transition: 0.7s ease-in-out;
}

#contact button:hover {
    color: #FB8E26;
}

#contact .col-md-8,
#contact .col-md-4 {
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
}

#contact-message {
    position: fixed;
    display: none;
    visibility: hidden;
    display: none;
    background-color: rgba(255, 255, 255);
    color: #000000;
    box-shadow: 0px 10px 39px -4px rgba(24, 39, 75, 0.10), 0px 5.747572422027588px 12.932037353515625px -4.310678958892822px rgba(24, 39, 75, 0.12);
    text-align: center;
    width: 60%;
    padding: 103px 0 !important;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    top: 23%;
    z-index: 3;
    right: 19%;
    border-radius: 40px;
}

/* ====== End 9.2 contact section ====== */

/* ====== 10.1. Coming Soon/404 section ====== */
.pg h3 {
    color: #FB8E26;
    padding-bottom: 25px;
}

.pg h4 {
    color: #FFFFFF;
}

.pg p {
    color: #FFFFFF;
}

.pg .row {
    height: 100vh;
}

.pg .col-lg-6 {
    background-color: rgba(38, 38, 38, 0.6);
    padding: 80px 90px;
}

.page404 {
    position: relative;
}

.page404::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/404-img.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.coming {
    position: relative;
}

.coming::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/comingsoon-img.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

/* ====== 10.1. Coming Soon/404 section ====== */