:root {
    --the-black: #000;
    --the-white: #fff;
    --the-brown: #e22b2b;
    --the-gold: #008080;
    --the-gray: #F6F6F6;

}

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

@font-face {
    font-family: 'wanderwise';
    src: url('font/wanderwise.eot?61752532');
    src: url('font/wanderwise.eot?61752532#iefix') format('embedded-opentype'),
        url('font/wanderwise.woff2?61752532') format('woff2'),
        url('font/wanderwise.woff?61752532') format('woff'),
        url('font/wanderwise.ttf?61752532') format('truetype'),
        url('font/wanderwise.svg?61752532#wanderwise') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'wanderwise';
    src: url('../font/wanderwise.svg?61752532#wanderwise') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "wanderwise";
    font-style: normal;
    font-weight: normal;
    speak: never;

    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;

    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;

    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-youtube:before {
    content: '\e800';
}

/* '' */
.icon-linkedin:before {
    content: '\e801';
}

/* '' */
.icon-instagram:before {
    content: '\e802';
}

/* '' */
.icon-facebook:before {
    content: '\e803';
}

/* '' */
.icon-up:before {
    content: '\e804';
}

/* '' */
.icon-down:before {
    content: '\e805';
}

/* '' */
.icon-quote:before {
    content: '\e806';
}

/* '' */
.icon-menu:before {
    content: '\e807';
}

/* '' */
.icon-scroll-down:before {
    content: '\e808';
}

/* '' */




/*------------------------------------------------------------*/
html,
body,
a,
p,
ul,
li {
    font-family:  "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

body.no-scroll {
    overflow: hidden;
}

body {
    overflow-x: hidden;
}

a:hover {
    text-decoration: none !important;
}

.container {
    max-width: 90%;
}

button {
    outline: none !important;
}

a:hover {
    color: var(--the-blue);
}

/*--------------------------*/

.the-body-content {
    overflow: hidden;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

ul {
    padding: 0;
}


li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* .the-body-content ul li {
    position: relative;
    list-style-position: inside;
    list-style: none;
    font-size: 1.1em;
    font-family: "Inter", sans-serif;
    list-style: disc;
    list-style-position: outside;
    margin-left: 20px;
} */

a {
    color: var(--the-black);
    background-color: transparent;
    text-decoration: none;
}

.one-wrap:hover {
    background: transparent;
}

a img {
    transition: 500ms;
}


/* Scroll header*/
.header-container {
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.header-container .main-logo img {
    height: 142px;
    transition: all 0.3s ease;
}

/* SCROLL STATE */
.header-container.scrolled {
    background-color: var(--the-brown);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

.header-container.scrolled .main-logo,
.header-container.scrolled .dic-dream {
    display: none;
    /* hide logo and right CTA on scroll */
}

.header-container.scrolled .menu-trigger {
    float: right;
}

/* Optional: prevent layout shift */
.mst-flex {
    align-items: center;
    justify-content: space-between;
}

/*---------Banner----------*/
.banner-caption {
    padding-top: 3em;
    padding-bottom: 3em;
}



.container.banner {
    position: relative;
    margin-bottom: 5em;
}

.mk-bgimg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0 41px 0;
    height: 557px;
    background-color: var(--the-dark-gray);
    z-index: 0;
}

.mk-bgimg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.mk-bgimg h2 {
	font-weight: 400 !important;
	position: relative;
	font-size: 2em;
}

.mk-bgimg .container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: var(--the-white);
}


.actual-bread {
    position: relative;
    z-index: 8;
    top: -14em !important;
    background: transparent;
    margin-bottom: -5em;
    /* padding: 10px 0px 0 45px; */
}

.mk-page-title {
    color: var(--the-white);
    font-weight: 400;
}

.breadcrumb {
    color: var(--the-orange);
    font-weight: 600;
}

.breadcrumb a {
    color: var(--the-black);
    font-weight: 300;
}

.breadcrumb .icon-right-arrow {
    color: var(--the-black);
}

.ms-caption {
    margin-bottom: 0em;
    position: absolute;
    top: 50%;
    /* text-align: center; */
    display: block;
    /* width: 100%; */
    /* left: 0; */
}

.ms-caption li {
    list-style: disc;
    color: var(--the-gray);
    list-style-position: inside;
}

.mk-page-title .dot::after {
    content: "";
    background: var(--the-orange);
    height: 9px;
    width: 9px;
    display: inline-block;
    color: var(--the-orange);
    position: absolute;
    bottom: 6px;
    left: 2px;
}


/* .ms-caption span {
      font-size: 4em;
  } */

.mk-page-title {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--the-white);
}


/*
  .mk-bgimg {
      filter: brightness(80%);
  }
  */

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
}


/*--------------------------*/


/*for banner image*/

.the-actual-img {
    position: absolute;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0 40px 0;
    height: 500px;
    width: 100%;
    /* z-index: 9 !important; */
    top: 35%;
    right: 5%;
}

.mk-bgimg {
    position: relative;
}


/*-------------------------*/


/* Slider */
.dic-dream a {
    background: var(--the-white);
    padding: 14px 35px;
}

.header-container::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid var(--the-white);
    width: 100%;
    left: 0;
    z-index: 9;
    bottom: 0px;
}

.dic-dream a {
    background: var(--the-white);
    padding: 5px 10px;
    text-transform: uppercase;
    display: inline-block;
    max-width: 279px;
    text-align: center;
    transition: 500ms;
}

.dic-dream a:hover {
    background: var(--the-gold);
    color: var(--the-white);
}

/* Slider container and items full screen */
.slider-container,
#homeSlider,
#homeSlider .item {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

/* Flex center items */
#homeSlider .item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}

/* Background image wrapper */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Video background */
.slider-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay for darkening slides */
#homeSlider .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;
}

/* Caption container */
.slider-cap {
    color: var(--the-white);
    position: relative;
    z-index: 10;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    top: 3em;
}

/* Content wrapper styling */
.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 10;
}

/* Slider container base */
.slider-container {
    position: relative;
}

/* Item base */
.slider-container .item {
    position: relative;
}

/* Links styling */
.slider-link a {
    background: none;
    padding: 12px 0px;
    color: var(--the-main);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 2em;
    transition: 500ms;
    border-bottom: 2px dashed;
}

.slider-link a:hover {
    background: var(--the-main);
    color: var(--the-white);
}

/* Responsive overrides */

@media (max-width: 759px) {
    .slider-container {
        margin-left: 0%;
    }

    .big-caption h1 {
        font-size: 1.9em;
    }
}

@media (max-width: 600px) {
    #homeSlider .item {
        height: 100vh;
        background-attachment: scroll;
    }

    .slider-cap {
        top: 2em;
        padding: 0 10px;
        font-size: 0.9rem;
    }
}

@media (min-width: 601px) {
    #homeSlider .item {
        height: 100vh;
        background-attachment: scroll;
    }

    .big-caption h1 {
        font-size: 4em;
        width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 1000px) and (max-width: 1500px) {
    .slider-cap {
        top: 3em;
    }

}

/* Fixed header */
.header-container {
    position: fixed;
    z-index: 9;
    width: 100%;
    top: 0;
    padding-bottom: 7px;
}

.scroll-to-explore {
    position: absolute;
    bottom: 20px;
    right: 2%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    font-size: 16px;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-to-explore a {
    color: #fff;
    text-decoration: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}


/* Logo area*/
.main-logo {
    width: 150px;
    padding-top: 0px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.mst-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    justify-content: space-between;
}





/* Our Destinations */
.Our.Destinations {
    margin-top: 5em;
}

#destinationsSlider .owl-nav i {
    font-size: 3.2em;
    color: var(--the-green);
}

.the-destination-img img {
    max-height: 370px;
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
    min-height: 370px;
}

.inside-the-dest {
    background: rgba(0, 0, 0, 0.57);
    color: var(--the-white);
    padding: 15px 34px;
}

.destination-holder {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.0);
}

.the-destination-title {
    position: absolute;
    bottom: 45px;
    max-width: 533px;
    width: 100%;
}

.the-explore-title-style h2 {
    font-size: 3.2em;
    color: var(--the-main);
}

.explore-the-world {
    margin-top: 3em;
}

@media(min-width: 900px) {
    .the-destination-title-style p {
        width: 60%;
    }

    #destinationsSlider .owl-nav {
        position: absolute;
        right: 15%;
        top: -110px;
    }

    .service-title {
        font-size: 1.6em;
    }

    .grid-one .service-title,
    .grid-two .service-title,
    .grid-three .service-title,
    .grid-four .service-title {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        text-align: right;
    }

    .why-choose-us {
        margin-top: -6em;
    }
}


.the-destination-title {
    left: 50px;
}

#destinationsSlider::before {
    content: "";
    position: absolute;
    height: 370px;
    width: 60vw;
    background: var(--the-white);
    z-index: 9;
    top: 0px;
    left: -56vw;
}

.the-destination-title-style h2 {
    text-align: left;
    font-size: 3.2em;
    color: var(--the-main);
}

#destinationsSlider .owl-nav.disabled i {
    font-size: 3.5em;
    color: var(--the-green) !important;
}

#destinationsSlider-wrapper {
    overflow: hidden;
    /* clip any overflow on the left */
}

#destinationsSlider {
    padding-right: 50px;
    margin-right: -50px;
    padding-left: 0;
    margin-left: 0;
    position: relative;
    left: -78px;
}

#destinationsSlider .owl-stage-outer {
    overflow: visible;
}

#destinationsSlider .owl-stage {
    display: flex;
}

#destinationsSlider .item {
    margin-right: 20px;
}


/* ========================= */
/* === Mobile Fixes Below === */
/* ========================= */

@media (max-width: 899px) {
    #destinationsSlider {
        padding: 0;
        margin: 0;
        left: 0;
        overflow-y: auto;
        scrollbar-width: none;
    }

    #destinationsSlider .item {
        margin-right: 10px;
    }

    .the-destination-title {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        text-align: center;
        /* padding: 1em; */
    }

    .inside-the-dest {
        padding: 10px 20px;
    }

    .the-destination-img img {
        max-height: 240px;
    }

    #destinationsSlider::before {
        display: none;
        /* Remove the left overlay on mobile */
    }
}

/* Get Inspired */
.the-inspired-post-type.inside-page {
	display: flex;
	width: 100%;
	gap: 2em;
	flex-wrap: wrap;
}
.card .image {
    position: relative;
    overflow: hidden;
    transition: 1s;
}

.image:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.card {
    width: 100%;
    max-width: 380px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    transition: 1s;
}

.get-inspired {
    background: var(--the-gray);
    position: relative;
    margin-bottom: 7em;
    padding-bottom: 6em;
    padding-top: 5em;
}

.inspiration-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.country-tag {
    position: absolute;
    top: 57px;
    right: -58px;
    background: var(--the-gold);
    color: var(--the-white);
    padding: 4px;
    min-width: 149px;
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
}

.image img {
    max-width: 383px;
    max-height: 589px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inspiration p {
    text-transform: uppercase;
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
}

.text-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--the-white);
    padding: 2em;
}

.text-content h5 {
    font-family: 'poppins' !important;
    font-size: 1.2em;
    font-weight: 200;
    border-bottom: 2px dashed;
    padding-bottom: 10px;
    display: inline-block !important;
}

.inspiration-rotate {
    position: absolute;
    left: -5%;
    rotate: -90deg;
    top: 20%;
    text-transform: uppercase;
}

.example {
    text-transform: uppercase;
}

.get-inspired-container {
    margin: 0% 0% 0% 5%;
    background: var(--the-gray);
    padding: 6em 0;
    position: relative;
    padding-top: 7em;
}

.get-inspired-container::before {
    background: var(--the-gray);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: -10%;
    top: 0;
}

.inspired-text h2 {
    font-size: 2.8em;
    color: var(--the-brown);
}

.inspired-exerpt {
    max-width: 414px;
}

.inspiration p {
    text-transform: uppercase;
}

.inspired-content-wrapper {
    display: flex;
    gap: 3em;
    align-items: end;
    /* flex-wrap: wrap; */
    height: 100%;
}

.inspired-text {
    flex: 1 1 35%;
    max-width: 35%;
    position: relative;
    top: -58px;
}

.the-inspired-post-type {
    flex: 1 1 65%;
    max-width: 65%;
}
.the-inspired-post-type.inside-page{
	flex: 100% !important; 
	max-width: 100% !important;
}

@media(min-width: 900px) {
    #inspiredsSlider .owl-stage-outer::before {
        content: "";
        position: absolute;
        background: var(--the-gray);
        height: 100%;
        width: 200px;
        z-index: 9;
        left: -104px;
    }
}

@media (max-width: 768px) {
    .inspired-content-wrapper {
        flex-direction: column;
    }

    .inspiration-rotate {
        position: absolute;
        left: -11%;
        rotate: -90deg;
        top: 29%;
    }

    .inspired-text,
    .the-inspired-post-type {
        max-width: 100%;
        flex: 1 1 100%;
    }
}



/* Explore Slider */
@media(max-width:759px) {
    .slider-container {
        margin-left: 0%;
    }
}



@media(max-width:600px) {

    #exploreSlider .item {
        background-size: cover;
        height: 100vh;
        background-attachment: scroll;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media(min-width:601px) {
    #exploreSlider .item {
        background-size: cover;
        height: 100vh;
        background-attachment: scroll;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.explore-img img {
    max-height: 322px;
    max-width: 308px;
}

.explore-slider-caption-and-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.explore-link a {
    transition: 500ms;
    color: var(--the-white);
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    border-bottom: 2px dashed;
    padding-bottom: 9px;
}

.explore-link a:hover {
    color: var(--the-gold);
}

.continent-name h2 {
    color: var(--the-white);
    position: relative;
    z-index: 9;
    font-size: 5em;
    display: inline-block;
    margin: 0.5em 0;
}

/* Testimonial */
.Testimonials {
    position: relative;
    margin-bottom: 10em;
    margin-top: 5em;
}

.testimonial {
    position: absolute;
    transform: rotate(-90deg);
    top: 38% !important;
    text-transform: uppercase;
    left: -27px;
}

@media(min-width: 900px) {
    .testimonial {
        position: absolute;
        transform: rotate(-90deg);
        top: 43%;
        text-transform: uppercase;
    }
}

.testimonial {
    position: absolute;
    transform: rotate(-90deg);
    top: 43%;
    text-transform: uppercase;
}

.testimonial-title p {
    text-transform: uppercase;
}

.testimonial-title h2 {
    font-size: 2.8em;
    color: var(--the-brown);
}

.thetes-holder i {
    color: var(--the-gold);
    font-size: 1.2em;
}

.thetes-holder {
    text-align: center;
    margin-bottom: 1em;
    position: relative;
}

.testimonial-title {
    margin-bottom: 3em;
}

.testimonial-holder {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-holder::after {
    content: "";
    position: absolute;
    border-right: 2px solid #E5E3E5;
    height: 100%;
    top: 0;
    left: -15px;
}

.testimonial-holder.first::after {
    display: none;
}

.the-test-description {
    padding: 0em 15px;
    text-align: center;
}

/* News */

.news-events-img {
	margin-bottom: 1em;
}
/* Footer */


/* Page nation */
.pagination {
    justify-content: flex-end;
}

.pagination span {
    font-size: 1.2em;
}

.pagination span, .pagination a {
	border-radius: 5px;
	font-size: 15px;
	background: var(--the-gold);
	color: var(--the-brown);
	padding: 5px 10px;
	margin: 5px 5px 30px;
	color: var(--the-white) ;
}

.pagination span:hover,
.pagination a:hover {
    background: var(--the-black);
}

.pagination .current {
    background: var(--the-black);
}

/* Why Choose Us */
.the-number p {
    font-family: "Old Standard TT", serif !important;
    font-size: 1.8em;
    border: 2px dashed var(--the-gold);
    padding: 10px 25px;
    display: inline-block;
    border-radius: 50%;
    margin: 35px 0px 20px 0px;
}

.grid-one,
.grid-two,
.grid-three {
    max-width: 383px;
}

.W {
    color: var(--the-gold);
}

.why-w h2 {
    font-size: 2.8em;
}

.why-us-txt h3 {
    text-transform: uppercase;
    color: var(--the-brown);
}

.why-choose-us {
    margin: 6em 0;
}

.why-w {
    text-align: center;
    margin-bottom: 4em;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5em;
    justify-items: center;
}

.why-choose-us {
    position: absolute;
    transform: rotate(-90deg);
    left: -20px;
    text-transform: uppercase;
    top: -4px;
}

.why-w h3 {
    color: var(--the-brown);
}

.why-wanderwise {
    position: relative;
    margin-top: 6em;
}

@media (min-width: 900px) {
    .why-choose-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: repeat(5, 1fr);
        grid-template-areas: "grid-why-one grid-why-one . . grid-why-three grid-why-three""grid-why-one grid-why-one grid-why-two grid-why-two grid-why-three grid-why-three""grid-why-one grid-why-one grid-why-two grid-why-two grid-why-three grid-why-three""grid-why-one grid-why-one grid-why-two grid-why-two grid-why-three grid-why-three"". . grid-why-two grid-why-two . .";
        justify-content: space-between;
        justify-items: center;
    }

    .grid-one {
        grid-area: grid-why-one;
    }

    .grid-two {
        grid-area: grid-why-two;
    }

    .grid-three {
        grid-area: grid-why-three;
    }
}

@media (min-width: 1000px) {
    .why-w h2 {
        font-size: 4.8em;
    }
}

/* Subscription */
.the-content-section {
    background: var(--the-gray);
    padding: 5em 2em;
    max-height: 690px;
}

.sub-image img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

@media (min-width: 700px) {
    .the-subscribe-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        gap: 0px 0px;
        width: 100%;
        height: 100%;
        max-height: 760px;
    }

    .the-content-section {
        grid-area: 1 / 1 / 5 / 6;
    }

    .sub-image {
        grid-area: 2 / 5 / 4 / 8;
        position: relative;
        top: -5em;
        max-height: 530px;
    }

    .inside-sb-text {
        max-width: 70%;
        text-align: center;
    }
}

#mce-EMAIL {
    text-align: center;
}

#mc-embedded-subscribe:hover {
    color: var(--the-brown);
}

#mc-embedded-subscribe {
    background: transparent;
    display: inline-block;
    margin-top: 3em;
    border: none;
    border-bottom: 2px dashed;
    color: var(--the-gold);
    transition: 500ms;
    padding: 7px;
}

#mce-EMAIL {
    text-align: center;
    border: none;
    border-bottom: 2px solid var(--the-brown);
    padding: 8px;
    background: transparent;
    width: 80%;
}

.inside-sb-text h2 {
    font-size: 2.8em;
}

.to-center {
    margin-bottom: 3em;
}

.sub {
    text-transform: uppercase;
}

.subscribe-section {
    position: relative;
}

.journal {
    position: absolute;
    transform: rotate(-90deg);
    top: 43%;
    text-transform: uppercase;
}

/* Footer */

.fluid-container.for-footer a {
    transition: 500ms;
}

.fluid-container.for-footer a:hover {
    color: var(--the-gold) !important;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.7em !important;
    transition: background 0.9s;
}

/* .accordion-header:hover {
  background: #eaeaea;
} */

.accordion-icon {
    font-weight: bold;
    transition: transform 0.9s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, padding 0.7s ease;
    padding: 0 2px;
    /* horizontal padding only, vertical handled via JS */
}

.accordion-item.active .accordion-content {
    /* Remove max-height: 500px; to allow JS to control max-height dynamically */
    padding-top: 10px;
    padding-bottom: 10px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active h3::after {
    content: "\e804";
    font-family: 'wanderwise';
    position: relative;
    padding-left: 20px;
}

.accordion-item h3::after {
    content: "\e805";
    font-family: 'wanderwise';
    position: relative;
    padding-left: 20px;
}

.accordion-header {
    font-size: 1.7em !important;
}

.fluid-container.for-footer {
    background: var(--the-brown);
    color: var(--the-white);
    padding-top: 7em;
    margin-top: 3em;
}

.made-with-love {
    display: flex;
    align-items: baseline;
    gap: 6px;
}


.th-cr-wrapper {
    display: flex;
    justify-content: center;
    align-items: self-end;
    gap: 1em;
    position: relative;
    margin-top: 8em;
    padding-bottom: 1.2em;
    flex-wrap: wrap;
}

@media(min-width: 900px) {
    .th-cr-wrapper {
        display: flex;
        justify-content: center;
        align-items: self-end;
        gap: 1em;
        position: relative;
        margin-top: 8em;
        padding-bottom: 1.2em;
    }
}

.th-cr-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 1px solid var(--the-white);
    top: -40px;
}

.footer-socials i {
    color: var(--the-white);
    font-size: 1.5em;
}

.social-flex {
    display: flex;
    gap: 1em;
}

.footer-socials p {
    max-width: 400px;
}

.footer-flex-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;
    justify-content: space-between;
}

.call {
    position: relative;
    margin-bottom: 5em;
}

.accordion-container {
    display: inline-block;
}

@media (min-width: 1000px) {
    .postal h2 {
        max-width: 54%;
    }

    .footer-flex-items>* {
        flex: 1;
        min-width: 200px;
        /* prevents items from being too small on small screens */
    }
}

#menu-individual-tours-menu li a,
#menu-corporate-tours-menu li a {
    color: var(--the-black);
    color: var(--the-white);
}

.call p {
    text-transform: uppercase;
}


/* Scrolling text */
.the-text-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    top: -80px;
}

.scrolling-track {
    display: flex;
    width: max-content;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.the-text-slider.one .scrolling-track {
    animation: scroll-left 80s linear infinite;
    /* Slower */
}

.the-text-slider.two .scrolling-track {
    animation: scroll-right 80s linear infinite;
    /* Slower */
}


.scrolling-text {
    display: inline-block;
    font-size: 3em;
    color: rgba(219, 245, 254, 1);
    padding-right: 2em;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.the-text-slider.one .scrolling-text {
    color: var(--the-gold);
}

.the-text-slider.two .scrolling-text {
    color: var(--the-brown);
}

/* Seamless full-width scrolling */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@media (min-width: 1200px) {
    .scrolling-text {
        font-size: 4.5em;
    }
}


/* Tabs css and What We Offer*/
.tab-titles {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 1rem;
    font-weight: 200 !important;
    align-items: center;
    text-align: center;
}

.tab-contents {
    margin-top: 3em;
}

.tab-titles li {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.offet-text-holder {
    margin-bottom: 1.5em;
}

.tab-titles li {
    font-family: "Old Standard TT", serif !important;
    font-size: 1.8em;
    color: var(--the-brown);
}

.tab-titles li.active {
    border: none;
    background: var(--the-gold);
    padding: 20px;
    transition: 500ms;
    color: var(--the-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.offer-content h3 {
    font-size: 1.5em;
}

.offer-main-holder {
    margin: 0% 0% 0% 5%;
}

.offer-card {
    width: 300px;
    text-decoration: none;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: 500ms;
}

.offersSlider .owl-stage {
    padding-left: 0px !important;
}

.or-services {
    text-transform: uppercase;
}

.offer-image img {
    width: 100%;
    height: auto;
    max-width: 383px;
    max-height: 589px;
    object-fit: cover;
    transition: 500ms;
}

.what-we-offer {
    position: relative;
    margin-top: 6em;
}

.or-services {
    text-transform: uppercase;
    position: absolute;
    transform: rotate(-90deg);
    left: -17px;
    top: 8em;
}

@media (max-width: 900px) {
    .or-services {
        position: absolute;
        left: -42px;
    }

    .tab-titles li {
        font-size: 1.2em;
    }
}

.offet-text-holder h2 {
    font-size: 2.8em;
    color: var(--the-brown);
}

.offer-img-content {
    max-width: 383px;
    position: relative;
}

.offer-content {
    padding: 1rem;
    color: #333;
    transition: 1s;
}

.offer-content h3 {
    margin-top: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media (min-width: 900px) {
    .offer-card {
        position: relative;
        overflow: hidden;
        transition: transform 1s ease;
    }

    .tab-titles {
        max-width: 95%;
    }

    .tab-titles li {
        width: 50%;
    }

    .offer-content {
        position: absolute;
        bottom: 38px;
        width: 100%;
        padding: 1rem;
        color: var(--the-white);
        display: flex;
        flex-direction: column;
        gap: 1em;
        transform: translateY(86%);
        transition: transform 1s ease;
    }

    .offer-card:hover img {
        transform: scale(1.2);
        transition: transform 1s ease;
    }

    .offer-card:hover .offer-content {
        transform: translateY(0%);
    }

    .offer-img-content {
        overflow: hidden;
    }

}

/* Contact Details */
.coontct-details {
	background: var(--the-brown);
	color: var(--the-white);
	padding: 2.7em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: baseline;
	gap: 2em;
	outline: 6px solid var(--the-white);
	outline-offset: -30px;
}
.the-process ul li {
	list-style-type: none;
	margin: 0;
}
.the-process li span {
	color: var(--the-gold);
}
.the-process ul li {
	margin-bottom: 1.5em;
}
.the-process h3 {
	font-size: 2em;
	text-transform: uppercase;
	margin-bottom: 0.5em;
	margin-top: 2em;
}
.contact-intro p {
	font-size: 18px;
}
.wpcf7-form-control.wpcf7-date {
	width: 100%;
    height: 3.5em;
}
.wpcf7-form-control {
	height: 3.5em;
    width: 100%;
}
.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
	height: 100%;
	width: 100%;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
	width: 100%;
	background: var(--the-gold);
	border: none;
	color: var(--the-white);
	transition: 500ms;
}
.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
	background: var(--the-brown);
	color: var(--the-white);
}
.coontct-details h2 p {
	font-size: 1em;
	font-family: "Old Standard TT", serif !important;
}

/* What we offer landing page */
.offer-group-container {
	display: flex;
	gap: 2em;
	width: 100%;
	flex-wrap:  wrap;
}
.post-type-archive .offer-pst-type {
	width: 100%;
}
.post-type-archive .offer-card {
	width: 390px;
	text-decoration: none;
	overflow: hidden;
	background: #fff;
	position: relative;
	transition: 500ms;
}
.offer-group-container {
	display: flex;
	gap: 2em;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 4em;
}
.post-type-archive .offer-pst-type h2 {
	font-size: 2.8em;
	color: var(--the-brown);
}

.wp-singular .offer-card {
	width: 318px;
	text-decoration: none;
	overflow: hidden;
	background: #fff;
	position: relative;
	transition: 500ms;
}
.wp-singular .offer-content h3 {
	margin-bottom: 30px;
}
.wp-singular .offer-pst-type h2 {
	font-size: 2.8em;
	color: var(--the-brown);
	margin-bottom: 0.5em;
}
.fluid-container.for-footer a {
	color: var(--the-white);
}
.made-with-love {
	display: none;
	align-items: baseline;
	gap: 6px;
}
#wpcf7-f113-p114-o1 p label {
	color: var(--the-blue);
}