* {
    box-sizing: border-box;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Museo_Sans_Semibold";
    src: url(../fonts/poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url(../fonts/poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(../fonts/poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: "coverd";
    src: url(../fonts/CoveredByYourGrace-Regular.ttf);
}

@font-face {
    font-family: "Rancho-Regular";
    src: url(../fonts/Rancho-Regular.ttf);
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url(../fonts/Montserrat/static/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url(../fonts/Montserrat/static/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: "Museo_Sans_Regular";
    src: url(../fonts/museo_sans_ssv/Museo_Sans_300/MuseoSans-300.otf);
}

@font-face {
    font-family: "Museo_Sans_Semibold";
    src: url(../fonts/museo_sans_ssv/Museo_Sans_500/MuseoSans_500.otf);
}

@font-face {
    font-family: "Grandstander-Bold";
    src: url(../fonts/Grandstander/static/Grandstander-Bold.ttf);
}

.text-capitalize {
    text-transform: capitalize;
}

html,
body {
    -webkit-user-drag: none;
}

body {
    background-color: #fafafd;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    font-family: "Museo_Sans_Regular";
    color: #000;
    font-size: 17px;
    line-height: 23px;
    padding: 0;
    margin: 0;
}

.form-control::placeholder {
    color: #c7c7c7;
}

.container {
    width: 100%;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

img {
    max-width: 100%;
}

a,
a:hover {
    text-decoration: none;
}

section {
    /* padding-top: 150px; */
    padding-top: 120px;
    /* padding-bottom: 150px; */
    padding-bottom: 125px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100%;
    background-color: #333333;
    color: #fff;
    flex-direction: column;
}

.hero-wrapper.cc-orange {
    background-color: #ffa500;
    color: #000;
}

.hero-clipping-wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    overflow: hidden;
    width: 100%;
}

.hero-clipping-wrapper,
.hero-section {
    height: 100vh;
    min-height: 900px;
}

.handlebar_wrapper {
    position: absolute;
    left: 90%;
    top: 0%;
    right: auto;
    bottom: 0%;
    display: none;
    width: 1px;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

.handlebar_image {
    position: absolute;
    top: 35%;
    max-width: none;
}

.header-logo img {
    height: 50px;
}

.hero-wrapper-title {
    font-size: 60px;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    font-family: "Montserrat-Bold";
    margin: auto;
    left: 0px;
    right: 0px;
}

.header-logo,
.menu-dropdown {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.header.mystyle .menu-dropdown .dropbtn {
    background-color: #333333;
}

.menu-dropdown .dropbtn {
    background-color: #ffffff54;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    font-family: "Montserrat-Bold";
}

.menu-dropdown .dropbtn svg {
    margin-left: 15px;
}

.menu-dropdown {
    position: absolute;
    display: inline-block;
    right: 30px;
    left: auto;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    right: 0;
    top: 60px;
    border-radius: 15px;
    padding: 16px 10px;
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-family: "Montserrat-Bold";
    font-size: 16px;
    white-space: nowrap;
}

.menu-dropdown a:hover {
    color: #ffa500;
}

.menu-dropdown .show {
    display: block;
}

.hero-custom-slider {
    overflow: hidden;
    padding-bottom: 5%;
}

.hero-custom-slider-inner {
    display: flex;
    padding: 20px;
    transform: translateX(0);
    transition: 0.1s;
    /* animation: marqueeInteraction 80s linear infinite 2s ; */
    animation: 80s linear 2s infinite marqueeInteraction;
}

@keyframes marqueeInteraction {
    /* 0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    } */

    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-2240px, 0, 0);
    }
}


@keyframes showCards {
    0% {
        transform: translateY(100%);
    }

    80% {
        transform: translateY(100%);
    }
                                
    100% {
        transform: translateY(-20%);
    }
}

.hero-custom-slider-inner img {
    border-radius: 15px;
    width: 260px;
    margin-right: 20px;
}
/* .hero-custom-slider-inner img:first-child{
    margin-right: 0px !important;
} */
.section-title {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 95px;
    /* margin-bottom: 120px; */
}

.section-title-des {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title-h2 {
    font-size: 60px;
    font-family: "Montserrat-Bold";
    margin-bottom: 0;
    line-height: 1.4;
}

@keyframes lineanimation {
    0% {
        stroke-dashoffset: 1;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.animation-title {
    position: relative;
}

.animation-title svg {
    position: absolute;
    z-index: -1;
}

.better-svg {
    bottom: -20%;
    right: 10%;
    width: 260px;
}

.james-svg {
    left: -6%;
    bottom: -7%;
    width: 190px;
}

.animation-title svg path {
    stroke-width: 0;
}

.active .animation-title svg path,
.guide-introduction-section:hover .animation-title svg path,
.how-are-make-section:hover .animation-title svg path,
.b2b-mid-section:hover .animation-title svg path,
.wht-not-travel-section:hover .animation-title svg path,
.destination-details-section:hover .animation-title svg path,
.memorable-section:hover .animation-title svg path,
.advance-section:hover .animation-title svg path,
.how-are-make-section:hover .animation-title svg,
.faq-section:hover .animation-title svg path,
.like-to-do-section:hover path,
.plan-organize-section:hover .animation-title svg,
.plan-card-content:hover svg,
.and-much-more-card-title:hover {
    stroke-dasharray: 1;
    stroke-dashoffset: 2;
    animation: lineanimation 1s cubic-bezier(0.4, 0, 0.2, 1) alternate;
    stroke-width: 5;
}

ul {
    padding: 0;
    margin: 0;
}

.nav-pills {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    position: relative;
}

.nav-pills:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 6px;
    background: #dfdfdf;
    border-radius: 5px;
    z-index: -1;
}

.nav-pills li {
    position: relative;
}

.nav-pills li button {
    background: transparent !important;
    color: #000 !important;
    font-family: "Museo_Sans_Semibold";
    font-size: 24px;
    line-height: 30px;
    padding: 7px 40px 30px;
    text-align: left;
}

.nav-pills li button.active {
    color: #3a9ec1 !important;
}

.nav-pills li button.active:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 6px;
    background: #3a9ec1;
    border-radius: 5px;
}

.like-to-do-section .nav-pills {
    margin-top: 100px;
}

.plan-organize-section .animation-title svg {
    /* left: 45%; */
    left: 0;
    right: 0;
    margin: auto;
    width: 90px;
    z-index: 1;
}

.plan-card {
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 20px #bbb7b7;
    margin: 0 15px 40px;
}

.plan-card-content,
.plan-card-image,
.plan-card {
    border-radius: 15px;
}

.plan-card-image {
    min-height: 350px;
    height: 30vh;
    object-fit: cover;
    transition: 3s;
    transform: scale(1);
    width: 100%;
}

.plan-card:hover .plan-card-image {
    transform: scale(1.3);
}

.plan-card-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0000006b;

}

.plan-card-content h4 {
    font-size: 24px;
    font-family: "Montserrat-Bold";
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.plan-organize-section .section-title {
    margin-bottom: 200px;
}

.plan-card-svg {
    position: absolute;
    opacity: 0;
}

.plan-card-content:hover .plan-card-svg {
    opacity: 1;
}

.faq-main .header .menu-dropdown .dropbtn {
    background-color: #333333;
}

.faq-main .head-ul a,
.faq-main .head-ul a:hover {
    color: #000;
}

.faq-main .head-ul a:hover::after {
    filter: invert(1);
}

footer {
    overflow: hidden;
    padding-top: 200px;
    position: relative;
    padding-bottom: 120px;
}

.footer-bg {
    width: 200vw;
    height: 1000px;
    background-image: linear-gradient(180deg, #f0ac2e, #ffa500, #feb834);
    border-radius: 50%;
    left: -30vw;
    position: absolute;
    top: 0;
    animation: footeranim 10s infinite;
    z-index: -1;
}

@keyframes footeranim {
    0% {
        left: -30vw;
    }

    50% {
        left: -60vw;
    }

    100% {
        left: -30vw;
    }
}

.footer-content.text-center {
    font-family: "Museo_Sans_Semibold";
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.footer-form {
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
}

.footer-form-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.footer-form-inner .form-control {
    height: 70px;
    padding: 10px 30px;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 60px;
    font-size: 18px;
    padding-right: 90px;
    transition: 0.5s;
    font-family: "Montserrat-Bold";
}

.footer-form-inner .form-control:focus {
    box-shadow: 0 0 0 7px #ffffff5c !important;
}

.footer-submit-button {
    outline: none;
    box-shadow: none;
    border: 0;
    background: #f44336;
    border-radius: 60px;
    height: 60px;
    width: 60px;
    flex: 0 0 60px;
    position: absolute;
    right: 5px;
    top: 5px;
    transition: 0.3s;
}

.footer-submit-button:hover {
    background: #46277e;
}

.and-much-more-title {
    margin-bottom: 50px;
    font-size: 30px;
    font-family: "Montserrat-Bold";
    color: #f44336;
    line-height: 30px;
}

.soon-label {
    font-size: 20px;
    background: #f44336;
    color: #fff;
    font-family: 'Poppins-Regular';
    padding: 4px 14px 5px;
    border-radius: 30px;
    margin-left: 10px;
}

.and-much-more-list {
    position: relative;
    list-style-type: none;
}

.and-much-more-card {
    position: relative;
}

.and-much-more-card-title {
    font-size: 40px;
    font-family: "Museo_Sans_Semibold";
    transition: 0.5s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.and-much-more-card .content {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 300px;
    transition: 0.5s;
    opacity: 0;
}

.and-much-more-list li {
    margin-bottom: 30px;
}

.and-much-more-card .content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.and-much-more-list li h5:hover+.content {
    opacity: 1;
    z-index: 1;
}

.and-much-more-list li:nth-child(1) h5:hover {
    color: #673ab7;
}

.and-much-more-list li:nth-child(2) h5:hover {
    color: #ff9800;
}

.and-much-more-list li:nth-child(3) h5:hover {
    color: #4caf50;
}

.and-much-more-list li:nth-child(4) h5:hover {
    color: #e91e63;
}

.and-much-more-list li:nth-child(5) h5:hover {
    color: #607d8b;
}

.and-much-more-list li:nth-child(6) h5:hover {
    color: #2196f3;
}

.and-much-more-list li.common .and-much-more-card-title {
    opacity: 0.2;
}

.and-much-more-list li.common .and-much-more-card-title.active {
    opacity: 1;
}

.and-much-svg {
    position: absolute;
    left: -10%;
    top: -70%;
    opacity: 0;
    width: 410px;
}

.and-much-more-card-title:hover .and-much-svg {
    opacity: 1;
}

.and-much-btn {
    border: 0;
    background: transparent;
    padding: 0;
    display: none;
}

/* .animation-title svg.holidays-svg {
    top: 45%;
    width: auto;
    left: 1%;
    height: 90px;
} */
.tail-svg {
    bottom: -13px;
    width: auto;
    left: 115px;
    height: 106px;
}

.tail-svg-1 {
    left: -3px;
    top: -40px;
    width: 310px;
}

video {
    max-width: 100%;
}

.holiday-video {
    width: 100%;
}

.like-to-do-section,
.explain-smart-section {
    padding-bottom: 0;
}

.category-nav button {
    background: transparent;
    border: 0;
    padding: 0;
}

.category-nav button img {
    height: 130px;
    width: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e7e6e6;
    box-shadow: 0 0 0 5px #f5f5f5;
    transition: 0.5s;
    padding: 7px;
}

.category-nav {
    justify-content: center;
    margin-bottom: 50px;
}

.category-nav li button {
    padding: 18px;
}

.category-nav button.active img {
    border-color: #ffa500;
    box-shadow: 0 0 0 5px #ffeac2;
    /* box-shadow: 0 0 0 5px #ff572230; */
}

.how-are-make-section {
    background-color: #f5f5f5;
    margin-top: 120px;
}

.memorable-nav {
    justify-content: center;
    margin-bottom: 50px;
}

.memorable-nav .nav-link {
    border: 0;
    font-family: "Museo_Sans_Semibold";
    background: transparent;
    padding: 16px 30px;
    min-width: 225px;
    /* height: 62px;
    color: #000;
    font-size: 32px;
    line-height: 30px; */
    height: 76px;
    color: #000;
    font-size: 26px;
    line-height: 28px;
}

.nav-pills li:last-child .nav-link {
    padding-bottom: 10px;
}

.memorable-nav li {
    margin: 0 25px;
}

.guied-goeasy-title {
    z-index: 9;
}

.memorable-nav .nav-link.active {
    color: #fff;
    background-image: url(../images/about/brush3.png);
    min-width: 225px;
    /* min-width: 465px; */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
}

.memorable-nav .nav-item:nth-child(2) .nav-link.active {
    background-image: url(../images/about/brush2.png);
}

.memorable-nav .nav-item:nth-child(3) .nav-link.active {
    background-image: url(../images/about/brush6.png);
}

.timeline-ui {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 50px 0;
    margin: 100px 0 0;
}

.timeline-ui li {
    width: 40%;
    position: relative;
}

.timeline-ui li.right {
    text-align: left;
}

.timeline-ui li.left {
    text-align: right;
}

.timeline-ui li.right {
    margin-left: auto;
}

.timeline-ui li .content {
    box-shadow: 10px 10px 21px #0000000d;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background: #fff;
    /* animation: content_up 1s 0s both; */
    top: 0;
    opacity: 1;
}

.how-are-make-section.active .timeline-ui li .content {
    animation: content_up 1s 0s both;
}

.how-are-make-section.active .timeline-ui li .dot {
    animation: dot_anim 1s 0s both;
}

.how-are-make-section.active .timeline-ui li:after {
    animation: li_line 3s 0s both;
}

.how-are-make-section.active .timeline-ui:after {
    animation: tline 5s 0s both;
}



@keyframes content_up {
    0% {
        top: 60px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

.timeline-ui li:nth-child(1) .content {
    animation-delay: 1.5s;
}

.timeline-ui li:nth-child(2) .content {
    animation-delay: 2.5s;
}

.timeline-ui li:nth-child(3) .content {
    animation-delay: 3.8s;
}

.timeline-ui li:nth-child(4) .content {
    animation-delay: 5s;
}

.timeline-ui li .content .title {
    font-size: 20px;
    font-family: "Montserrat-Bold";
}

.timeline-ui li .content .text {
    margin: 0;
    font-size: 16px;
    font-family: "Museo_Sans_Regular";
}

.timeline-ui:after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 2px);
    height: 100%;
    background: #d1d1d1;
    width: 4px;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    /* animation: tline 5s 0s both; */
}



@keyframes tline {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.timeline-ui li:after {
    content: "";
    display: block;
    right: -25%;
    height: 4px;
    background: #d1d1d1;
    position: absolute;
    top: 50%;
    width: 28%;
    z-index: 0;
    /* animation: li_line 3s 0s both; */
}

.timeline-ui li:nth-child(1):after {
    animation-delay: 1.2s;
}

.timeline-ui li:nth-child(2):after {
    animation-delay: 2s;
}

.timeline-ui li:nth-child(3):after {
    animation-delay: 3s;
}

.timeline-ui li:nth-child(4):after {
    animation-delay: 4.6s;
}

@keyframes li_line {
    0% {
        width: 0%;
    }

    100% {
        width: 28%;
    }
}

.timeline-ui li.right:after {
    left: -25%;
    right: 0;
}

.timeline-ui li .dot {
    height: 20px;
    width: 20px;
    background: #4caf50;
    border-radius: 50%;
    position: absolute;
    right: calc(-25% - 10px);
    top: calc(50% - 10px);
    z-index: 1;
    box-shadow: 0 0 0 5px #4caf5045;
    /* animation: dot_anim 1s 0s both; */
    transform: scale(1);
}

@keyframes dot_anim {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.timeline-ui li:nth-child(1) .dot {
    animation-delay: 1.3s;
}

.timeline-ui li:nth-child(2) .dot {
    animation-delay: 2.3s;
}

.timeline-ui li:nth-child(3) .dot {
    animation-delay: 3.5s;
}

.timeline-ui li:nth-child(4) .dot {
    animation-delay: 4.8s;
}

.timeline-ui li.right .dot {
    left: calc(-25% - 10px);
}

.footer-menu-title {
    font-family: "Montserrat-Bold";
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    row-gap: 10px;
    column-gap: 30px;
}

/* .footer-menu li {
    margin-right: 35px;
} */

.footer-menu li a {
    color: #000;
    display: block;
    position: relative;
    padding-bottom: 4px;
}

.footer-menu li a:after {
    content: "";
    display: block;
    width: 20%;
    height: 1px;
    background: #000;
    transition: 0.3s;
}

.footer-menu li a:hover:after {
    width: 100%;
}

.social-menu {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
}


.social-menu li {
    margin-left: 20px;
}

.social-menu li a {
    font-size: 26px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* start about us page */


.header-bg {
    background-color: #242133;
    width: 100%;
    height: 110px;
}

.about-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    max-width: 400px;
}

.inner-main-title {
    color: #ffa500;
    position: relative;
    max-width: max-content;
    font-size: 35px;
    margin-bottom: 30px;
}

.inner-main-title::after {
    content: '';
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: #ffa500;
    border-radius: 10px;
    bottom: -12px;
    left: 0px;
}

.about-para {
    line-height: 30px;
    font-family: 'Museo_Sans_Regular';
    color: #fff;
    user-select: none;
}

.about-mid-title {
    user-select: none;
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Museo_Sans_Regular';
}

.about-section {
    background-image: url(../images/about/about-bg.png);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #242133;
}

.about-inner {
    position: absolute;
    height: 338px;
    width: 300px;
    right: -95px;
    background: #0000006b;
    background-image: url(../images/about/couple-traveler_45381-238.png);
    border-radius: 15px;
    bottom: -71px;
}

.btn {
    padding: 14px 50px;
    border-radius: 60px;
    color: #000;
    box-shadow: 5px 5px 5px #00000014;
    border: 2px solid #00000014;
    font-size: 18px;
    margin: 10px 0px;
    width: 100%;
    max-width: max-content;
    font-family: "Museo_Sans_Semibold";
}

.btn:focus {
    box-shadow: none;
}

.vision-title {
    font-size: 29px;
    line-height: 30px;
    color: #000;
    font-family: "Montserrat-Bold";
    margin-bottom: 30px;
}

.vision-content-box {
    /* margin-bottom: 30px; */
    display: flex;
    align-items: flex-start;
}

.vision-inner {
    margin-right: 30px;
}

.vision-section {
    padding: 80px 0px;
}

.vision-title {
    font-size: 29px;
    line-height: 30px;
    color: #000;
    font-family: "Montserrat-Bold";
    margin-bottom: 20px;
    user-select: none;
}

.vision-para {
    font-size: 17px;
    line-height: 28px;
    font-family: 'Museo_Sans_Regular';
    color: #000;
    user-select: none;
    margin-bottom: 0;
}

.about-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main {
    display: flex;
    justify-content: center;
}

.btn-radius,
.btn-radius:hover {
    color: #fff;
    background-image: linear-gradient(171deg, #c98506, #ffa500, #feb834);
}

/* end about page css */

/* start contact page css */
.contact-svg {
    /* width: max-content; */
    /* width: 200px; */
    height: 100px;
    top: 109%;
    left: 0;
    right: 0;
    margin: auto;
}

.contact-section-title .contact-svg {
    z-index: initial;
}


.destination-svg {
    width: 300px;
}

.destination-svg {
    width: auto;
    right: -4%;
    bottom: -56%;
    height: 43px;
}

.btn-submit {
    background: #ff5722;
    padding: 14px 60px;
    border-radius: 60px;
    color: #fff;
    box-shadow: 5px 5px 5px #00000014;
    border: 2px solid #00000014;
    font-size: 18px;
    margin: 10px 0px;
}

.form-label {
    color: #000;
    font-size: 18px;
    line-height: 20px;
    user-select: none;
    font-family: "Montserrat-Bold";
    margin-left: 20px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}

.form-control {
    border-radius: 25px;
    height: 54px;
    margin-bottom: 30px;
    width: 100%;
    padding: 10px 26px;
}

.form-control::placeholder {
    color: #2125295d;
    font-size: 15px;
    line-height: 15px;
    font-family: 'Poppins-Regular';
}

.btn-submit:hover {
    color: #fff;
}

.submit-btn-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-title {
    color: #ff5722;
    font-size: 39px;
}

.contact-title-rajasthan {
    color: #EEAD33;
    font-size: 39px;
}

.contact-title-himachal {
    color: #397c5d;
    font-size: 39px;
}

.contact-title-uttra {
    color: #57397c;
    font-size: 39px;
}

.contact-title-goa {
    color: #236578;
    font-size: 39px;
}

.contact-title-gujarat {
    color: #e36138;
    font-size: 39px;
}



/* end contact page css */


/* start faq css */
.faq-section {
    background-color: #fafafd;
    padding: 150px 0px 100px;
}

.faq-svg {
    top: -28%;
    width: auto;
    left: -15%;
    right: 0%;
    height: 95px;
}

.faq-title {
    font-size: 48px;
}

.faq-section-title .faq-svg {
    z-index: initial;
}

.faq-main .faq-acc-item {
    border-bottom: 1px solid #dad3d3;
}

.faq-main .faq-acc-button {
    color: #708090;
    font-size: 26px;
    line-height: 37px;
    font-family: "Montserrat-Bold";
    background-color: transparent;
    padding-left: 64px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq-acc-item {
    background: transparent;
    border-color: transparent;
}

.faq-main .faq-acc-body {
    padding-left: 62px;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 0;
    user-select: none;
    padding-bottom: 30px;
}

.faq-main .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.faq-main .faq-acc-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.faq-acc-item .accordion-button::after {
    position: absolute;
    left: 20px;
    height: 22px;
    width: 22px;
    margin: auto;
    background-size: 22px 22px;
    background-image: url('../images/about/plus.png');
}

.faq-acc-item .accordion-button:not(.collapsed)::after {
    background-image: url('../images/about/minus.png');
}


/* end faq css */


/* start b2b page */

.main-title-h1 {
    font-size: 45px;
    line-height: 49px;
    color: #fff;
    margin-bottom: 33px;
    font-family: "Museo_Sans_Semibold";
}

.main-title-h2 {
    font-size: 27px;
    line-height: 23px;
    color: #ffa500;
    margin-bottom: 16px;
    font-family: "Museo_Sans_Semibold";
}

.text-white {
    color: #fff !important;
}

.highlite-text {
    font-size: 18px;
    line-height: 28px;
    color: #ffa500;
    margin-bottom: 50px;
    font-family: "Museo_Sans_Regular";
}

.para-text {
    font-size: 21px;
    line-height: 29px;
    color: #fff;
    margin-bottom: 50px;
    font-family: "Museo_Sans_Regular";
}

.b2b-mid-inner-right-main {
    flex: 1;
    padding-left: 20px;

}

.b2b-mid-inner-left-main {
    margin-right: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 10px;
    max-width: 120px;
    flex: 0 0 120px;
    width: 100%;
}

.about-us .b2b-mid-main {
    height: 100%;
}

.b2b-mid-img {
    height: 150px;
    width: 150px;
    object-fit: fill;
}

.b2b-mid-content-box {
    background-color: #fff;
    box-shadow: 5px 1px 17px #0000000d;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    transition: 0.5s all;
    overflow: hidden;
}

.b2b-mid-content-box-ab {
    background-color: #fff;
    box-shadow: 5px 1px 17px #0000000d;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: 0.5s all;
    height: 100%;
    overflow: hidden;
}

.b2b-mid-section {
    padding: 80px 0px;
    background-color: #f5f5f5;
}

.b2b-experience-img {
    /* height: 500px; */
    width: 500px;
    object-fit: contain;
}

.b2b-experience-section {
    background: linear-gradient(45deg, #46277e, #31469f, #3a9ec1);
    padding: 50px 0px;
}

.experience-row {
    align-items: center;
}

.b2b-form-section {
    padding: 50px 0px 0px;
}

.main-title-h3 {
    font-size: 30px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Museo_Sans_Semibold";
}

.b2b-mid-titles {
    font-size: 21px;
    line-height: 32px;
    color: #870058;
    user-select: none;
    margin-bottom: 10px;
    font-family: "Museo_Sans_Semibold";
    position: relative;
}

.b2b-content-box {
    margin-bottom: 50px;
    width: 100%;
    margin-top: 45px;
}

.b2b-banner-img {
    height: 500px;
    background-attachment: fixed;
    width: 100%;
    border-radius: 50%;
    object-fit: contain;
    position: absolute;
    background-size: contain;
}

.b2b-mid-main-title {
    font-size: 29px;
    line-height: 30px;
    font-family: "Montserrat-Bold";
    color: #000;
    z-index: 9999;
}

.business-svg {
    width: auto;
    left: -9%;
    top: -55%;
    height: 130px;
}

.b2b-partner-img {
    height: 400px;
    width: 350px;
    object-fit: contain;
}

.main-experience-title {
    font-size: 40px;
    line-height: 35px;
    color: #fff;
    user-select: none;
    font-family: "Museo_Sans_Regular";
    line-height: 1.3;
}

.b2b-experience-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.b2b-section {
    background: linear-gradient(45deg, #46277e, #31469f, #3a9ec1);
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 80px;
}

.b2b-left-main {
    border-radius: 100%;
    position: relative;
}

.b2b-game-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 300px;
}


.b2b-form-content-main {
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 20px 0px 20px;
}

.b2b-game-content .btn-what-we-do {
    background-color: #fff !important;
    background-image: none;
    color: #000;
}

.b2b-form-control {
    background: rgba(255, 255, 255, 0.2);
}

.b2b-form-btn-box .b2b-form-btn {
    background-color: #ff5722;
    background-image: none;
}

.b2b-textarea {
    height: 150px;
}

.lets-title {
    text-align: center;
}

.b2b-form-btn-box {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* end b2b page css */

/* start guide page css */


.guide-section {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #242133;
    background-image: linear-gradient(#00000075, #00000075), url(../images/guide/travel-bg.png);
}

.guide-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-direction: column;
}

.guide-row {
    align-items: center;
}

.guide-title {
    color: #ffa500;
    font-size: 80px;
    margin-bottom: 23px;
    line-height: 1.2;
    font-family: 'Poppins-Medium';
    text-align: center;
}

.guide-para {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-family: 'Poppins-Regular';
    text-align: center;
}

.guide-zikzak-main {
    display: flex;
    width: 100%;
}

.guide-zikzak-left {
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
}

.guide-zikzak-right {
    width: 100%;
    max-width: 50%;
    flex: 0 0 50%;
}

.guide-left-main {
    height: 100vh;
    width: 100%;
    background-color: #f5f5f5;
}

.guide-right-main {
    background-color: #f5f5f5;

}

.guide-imgaes {
    min-height: 657px;
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
}

.guide-advance-main {
    display: flex;
    margin-bottom: 13px;
}


.wht-not-travel-section {
    padding: 100px 0px 30px;
    background-color: #ffffff;
}

.user-digites {
    font-size: 60px;
    line-height: 50px;
    color: #ff5722;
    margin-bottom: 20px;
}

.guide-owl-titles {
    font-size: 45px;
    line-height: 50px;
    color: #ff5722;
    margin-bottom: 20px;
}

.guide-help-main {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
    transition: 0.5s all;
}

.guide-help-mid-titles {
    font-size: 19px;
    line-height: 24px;
    color: #198754;
    font-family: 'Poppins-Medium';
    margin: 0px;
}

.guide-help-para {
    color: #000;
    margin: 10px 0px 0px 0px;
}

.guide-owl .owl-prev,
.guide-owl .owl-next {
    border: 2px solid #000 !important;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.guide-owl .owl-prev span,
.guide-owl .owl-next span {
    font-size: 35px;
    line-height: 25px;
}

.guied-span {
    font-family: "Museo_Sans_Regular";
    font-size: 30px;
    line-height: 36px;
    margin-left: 10px;
}

.guied-span-ab {
    font-family: "Museo_Sans_Regular";
    font-size: 15px;
    line-height: 23px;
    margin-left: 10px;
}

.guide-h2 {
    display: flex;
}

.goessy-svg {
    width: 229px;
    right: 83px;
    top: 31px;
}

.guied-advance-icons {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 20px;
}

.vision-mision-icons {
    height: 100%;
    width: 100%;
    object-fit: contain;
    margin-right: 20px;
}

.work-svg {
    width: auto;
    top: -21%;
    right: -15px;
    height: 89px;
    z-index: 1 !important;
}

.guied-goeasy-title {
    margin-bottom: 50px;
}


.memorable-title {
    margin-bottom: 50px;
}

.memorable-h3 {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.guide-introduction-points {
    font-size: 25px;
    line-height: 34px;
    color: #000;
    font-family: "Museo_Sans_Semibold";
}

.introduction-points-img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 20px;
    margin-top: 5px;
}

.guide-into-main {
    display: flex;
}

.destination-title {
    font-size: 80px;
    line-height: 1.2;
    text-align: center;
    font-family: "Montserrat-Bold";
    color: #fff;
    margin-bottom: 20px;
}

.memorable-section {
    padding: 80px 0px;
}

/* end guide page css */

/* start destination page */


.destination-left-main {
    position: relative;
}

.destination-img {
    height: 550px;
    width: 500px;
    object-fit: cover;
    /* border: 5px solid #000; */
    border-radius: 55px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.destination-content-section {
    background-color: #f5f5f5;
}

.destination-inner-img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    /* border: 5px solid #000; */
    border-radius: 25px 25px 25px 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.desti-inner-left {
    right: -32px;
    bottom: -75px;
}

.destination-inner-main {
    position: absolute;
}

.desti-titles {
    margin-bottom: 23px;
    font-size: 40px;
    line-height: 45px;
    font-family: "Montserrat-Bold";
    text-align: left;
}

.desti-inner-title {
    color: #3a9ec1;
}

.desti-para {
    color: #000;
    margin-bottom: 20px !important;
    text-align: left !important;
    font-family: "Museo_Sans_Regular";
}

.desti-left {
    justify-content: flex-start;
    display: flex;
}

.desti-right {
    justify-content: flex-end;
    display: flex;
}

.destination-right-main {
    position: relative;
}

.desti-inner-left {
    bottom: -78px;
    right: 0px;
}

.desti-inner-right {
    bottom: -78px;
    left: 0px;
}

.rajsthani-svg {
    width: auto;
    height: 152px;
    right: 0px;
    left: -15px;
    top: -79%;

}

.rajsthani-svg-1 {

    width: auto;
    height: 116px;
    right: 0px;
    left: -15px;
    top: -44%;
}

.destination-place-svg {
    right: 0px;
    left: 0px;
    /*  left: -38px; */
    margin: auto;
    /* width: 200px; */
    /* width: max-content; */
    height: 100px;
}

.contact-section-title .destination-place-svg {
    z-index: initial;
}

.desti-btn-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 100px;
    flex-wrap: wrap;
}

.desti-btn {
    cursor: pointer;
    color: #000;
    font-size: 18px;
    background-color: #ffa500;
    padding: 17px 60px;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
}

.desti-btn:hover {
    color: #fff;
}

.desti-btn::after {
    background-color: #31469f;
    border-radius: 3rem;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.desti-btn:hover::after {
    transform: translate(0, 0);
}

.desti-btn-main .desti-btn:last-child {
    margin-right: 0px;
}


.desti-slider-main {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes zoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 130%;
    }
}

.carousel-inner .item>.desti-slider-main {
    -webkit-animation: zoom 20s infinite;
    animation: zoom 20s infinite;
}



.slider-highlite-text {
    font-family: "Montserrat-Bold";
    color: #ffa500;
}


.destination-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.desti-tabs-main {
    margin-bottom: 150px;
}

.desti-tabs-main:last-child {
    margin-bottom: 0px;
}

.destination-carousel .owl-dot {
    height: 10px;
    width: 10px;
    background-color: #ffa50070 !important;
    border-radius: 50%;
    margin-right: 11px;
    margin-top: -60px;
    position: relative;
}

.destination-carousel .owl-dot.active {
    height: 15px;
    width: 15px;
    background-color: #ffa50078;
    border-radius: 50%;
}

/* end destination page */
.goessy-tagline {
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 33px;
    font-family: "Museo_Sans_Semibold";
    color: #870058;
}

.multiplayer-span-text {
    font-size: 17px;
    color: grey;
    font-family: "Museo_Sans_Regular";
    line-height: 24px;
    margin: 14px 0px 0px;
}

.travel-product-para {
    font-size: 17px;
    color: #000;
    font-family: "Museo_Sans_Regular";
    line-height: 24px;
    margin: 14px 0px 0px;
    text-align: left;
}

.travel-product-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.travel-product-content {
    background-color: #fff;
    box-shadow: 5px 1px 17px #0000000d;
    padding: 30px;
    border-radius: 20px;
}

.guide-usage-titles {
    font-size: 25px;
    line-height: 30px;
    color: #000;
    font-family: "Montserrat-Bold";
    text-align: center;
}

.guide-usage-imges {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 25px;
    text-align: center;
    height: 100px;
    width: 100px;
}

.guide-usage-section {
    padding: 50px 0px 0px;
}

.guide-usage-para {
    font-size: 16px;
    line-height: 25px;
    color: #000;
    font-family: 'Poppins-Regular';
    text-align: center;
    display: -webkit-box;
    /* -webkit-line-clamp: 4; */
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guide-usage-main {
    margin-bottom: 45px;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 0px 5px 15px 0px;
    padding: 30px;
    /* min-height: 290px; */
    border-radius: 20px;
    min-height: 416px;
}

.guide-intro-title {
    margin-bottom: 30px;
    font-size: 37px;
    line-height: 44px;
    font-family: "Montserrat-Bold";
    color: #198754;
}

section.guide-introduction-section {
    padding-bottom: 0px;
}

.b2b-mid-para {
    font-size: 16px;
    line-height: 30px;
    font-family: "Museo_Sans_Regular";
    color: #000;
    user-select: none;
    margin-bottom: 0;
}

.travel-svg {
    top: -54%;
    width: auto;
    right: -12%;
    margin: auto;
    height: 119px;
}

.journey-svg {
    width: auto;
    top: -42%;
    left: -14%;
    height: 120px;
}

.guide-note-text {
    text-align: center;
    font-size: 21px;
    line-height: 32px;
    font-family: 'Poppins-Regular';
}

.hero-wrapper-main-content {
    position: relative;
    /* height: 240px; */
    height: 159px;
}

.hero-text1,
.hero-text2,
.hero-text3 {
    animation: hero_text_anim 10s 0s infinite;
    position: absolute;

}

.hero-text2,
.hero-text3 {
    opacity: 0;
}

.hero-text2 {
    animation-delay: 5s;
}

.hero-text3 {
    animation-delay: 10s;
}

@keyframes hero_text_anim {
    0% {
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    53% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.travel-video {
    height: 300px;
    width: 500px;
    object-fit: cover;
    box-shadow: 15px 15px 40px #bcb7b7;
    border-radius: 16px;
}

.tail-illustator-img {
    height: 500px;
    width: 100%;
    object-fit: contain;
}

.affiliate-sections {
    padding: 100px 0px 0px;
}

.affiliate-section-banner {
    background-color: #242133;
    background-image: linear-gradient(#00000075, #00000075), url(../images/affiliate/affiliate-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    min-height: 600px;
}

h5.affiliate-program-titles {
    font-size: 30px;
    line-height: 43px;
    font-family: "Montserrat-Bold";
    margin-bottom: 30px;
    user-select: none;
}

.affiliate-img {
    height: 400px;
    width: 400px;
    object-fit: contain;
}

.affiliate-mid-titles {
    font-size: 40px;
    line-height: 40px;
    font-family: "Montserrat-Bold";
    margin-bottom: 35px;
}

.affiliate-para {
    font-size: 19px;
    line-height: 25px;
    font-family: 'Poppins-Regular';
    margin-bottom: 14px;
    text-transform: capitalize;
}

.affiliate-arrow {
    height: 30px;
    width: 30px;
    object-fit: contain;
    margin-right: 20px;
}

.affiliate-inner-main {
    display: flex;
}

.people-main {
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 0px 5px 15px 0px;
    padding: 10px;
    min-width: 200px;
    border-radius: 20px;
    margin-top: 50px;
    width: 100%;
}

.people-ul .people-li:nth-child(1) .people-main {
    background-color: #ffa500;
    color: #fff;
}

.people-ul .people-li:nth-child(2) .people-main {
    background-color: #3a9ec1;
    color: #fff;
}

.people-ul .people-li:nth-child(3) .people-main {
    background-color: #ff5722;
    color: #fff;
}

.people-ul .people-li:nth-child(4) .people-main {
    background-color: #000;
    color: #fff;
}

.people-ul .people-li:nth-child(5) .people-main {
    background-color: #198754;
    color: #fff;
}

.people-ul .people-li:nth-child(6) .people-main {
    background-color: #673ab7;
    color: #fff;
}

.people-ul .people-li:nth-child(7) .people-main {
    background-color: #4caf50;
    color: #fff;
}

.people-ul .people-li:nth-child(8) .people-main {
    background-color: #ffc107;
    color: #fff;
}

.people-ul .people-li:nth-child(9) .people-main {
    background-color: red;
    color: #fff;
}

.people-ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.people-li {
    width: calc(100% / 6);
    margin: 0px 15px;
    list-style-type: none;
}

.affiliate-people-text {
    margin-bottom: 0px;
}

.affiliate-people-row {
    justify-content: center;
}

.affiliate-program-section {
    padding: 100px 0px 0px;
}

.affiliate-people-sections {
    padding: 100px 0px 0px;
}

.counter-span-box {
    border-radius: 10px;
    font-size: 50px;
    background: -webkit-linear-gradient(#000, #c9c9c9, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Montserrat-Bold";
    min-width: 110px;
    display: inline-block;
    line-height: 1;
}

li.guide-advance-li {
    list-style-type: none;
}

.guide-advance-ul .guide-advance-li:nth-child(1) .guide-advance-main .counter-span-box {
    background: -webkit-linear-gradient(#198754, #198754, #198754);
    -webkit-background-clip: text;
}

.guide-advance-ul .guide-advance-li:nth-child(2) .guide-advance-main .counter-span-box {
    background: -webkit-linear-gradient(#ffa500, #ffa500, #ffa500);
    -webkit-background-clip: text;
}

.guide-advance-ul .guide-advance-li:nth-child(3) .guide-advance-main .counter-span-box {
    background: -webkit-linear-gradient(#ff5722, #ff5722, #ff5722);
    -webkit-background-clip: text;
}

.guide-advance-ul .guide-advance-li:nth-child(4) .guide-advance-main .counter-span-box {
    background: -webkit-linear-gradient(#3a9ec1, #3a9ec1, #3a9ec1);
    -webkit-background-clip: text;
}

.guide-advance-ul .guide-advance-li:nth-child(5) .guide-advance-main .counter-span-box {
    background: -webkit-linear-gradient(#46277e, #46277e, #46277e);
    -webkit-background-clip: text;
}




.destination-section-title {
    z-index: 99;
}

.destination-carousel-main {
    position: relative;
}


.go-loader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: #ffd07a;
}

.go-loader-inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.go-loader-logo {
    height: 60px;
    position: absolute;
    animation: loader-logo-anim 2.8s infinite;
}

@keyframes loader-logo-anim {
    0% {
        margin-top: 0;
        opacity: 1;
    }

    70% {
        margin-top: 0;
        opacity: 1;
    }

    100% {
        margin-top: -20%;
        opacity: 0;
    }
}

.go-loader-title {
    margin-top: 45vh;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;

}
.go-loader-title h3{
    font-size: 22px !important;
}
.go-loader-inner-main {
    animation: loader-title-anim 5.0s infinite;
    -webkit-animation: loader-title-anim 5.0s infinite;
}

@keyframes loader-title-anim {
    0% {
        margin-bottom: 0;
        opacity: 1;
    }

    70% {
        margin-bottom: 0;
        opacity: 1;
    }

    100% {
        margin-bottom: -20%;
        opacity: 0;
    }
}

.go-loader-anim span {
    height: 7px;
    width: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 2px;
}

.go-loader-anim:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.go-loader-anim span:nth-child(1) {
    left: 150px;
}

.go-loader-anim span:nth-child(2) {
    left: 300px;
}

.go-loader-anim span:nth-child(3) {
    left: 450px;
}

.go-loader-anim span:nth-child(4) {
    left: 600px;
}

.go-loader-anim span:nth-child(5) {
    left: 750px;
}

.go-loader-anim span:nth-child(7) {
    left: 900px;
}

.go-loader-anim span:nth-child(8) {
    left: 1050px;
}

.go-loader-anim span:nth-child(9) {
    left: 1200px;
}

.go-loader-anim- {
    width: 1000px;
    overflow: hidden;
}

.go-loader-anim {
    width: 1207px;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    animation: loader 8s linear infinite;
    animation-iteration-count: infinite;
    -webkit-animation: loader 8s linear infinite;
}

.go-loader-gradiant {
    position: relative;
}

.go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #ffd78d, #f9fafb);
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    right: 0px;
    top: 50%;
    z-index: 99;
}

.go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #ffd78d, #f9fafb);
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    left: 0px;
    top: 50%;
    z-index: 99;
}

@keyframes loader {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - -488px));
    }
}

/* .about-loader .go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #ffa500, #f9fafb);
}

.about-loader .go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #ffa500, #f9fafb);
} */

.about-loader {
    background-color: #8ae2ff;
}


.guide-loader {
    background-color: #5deaa8;
}

.guide-loader .go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #198754, #f9fafb);
}

.guide-loader .go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #198754, #f9fafb);
}


.destination-loader {
    background-color: #ffa3da;
}

.destination-loader .go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #ff5722, #f9fafb);
}

.destination-loader .go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #ff5722, #f9fafb);
}



.b2b-loader {
    background-color: #f99eff;
}

.b2b-loader .go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #3a9ec1, #f9fafb);
}

.b2b-loader .go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #3a9ec1, #f9fafb);
}



.affiliate-loader {
    background-color: #673ab7;
}

.affiliate-loader .go-loader-gradiant::before {
    background-image: linear-gradient(45deg, #673ab7, #f9fafb);
}

.affiliate-loader .go-loader-gradiant::after {
    background-image: linear-gradient(197deg, #673ab7, #f9fafb);
}

.hero-vedio-card {
    height: 376px;
    width: 296px;
    margin-right: 20px;
    flex-basis: 296px;
}

.hero-video {
    height: 376px;
    width: 296px;
    object-fit: cover;
    border-radius: 10px;
    min-width: 296px;
}

.destination-section {
    padding: 0px;
    position: relative;
    cursor: -webkit-grab;
}


.desti-img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    background: linear-gradient(#0000008c, #0000008c);
}

.desti-bg-immg-main {
    position: relative;
    height: 100vh;
}

.hold-btn,
.hold-btn:hover {
    user-select: none;
    color: #fff;
    font-family: "Rancho-Regular";
    font-size: 30px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #ffa500; */
    background-color: transparent;
    border: none;
    z-index: 9;
    position: absolute;
    left: 0;
    top: 70vh;
    height: 60px;
    right: 0;
    white-space: nowrap;
    box-shadow: none;
    cursor: pointer;
}

.hold-btn:hover {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) infinite;
}

.desti-bg-immg-main img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    width: 100%;
}

.desti-bg-immg-main img:nth-child(1) {
    visibility: visible;
}

.desti-hero-content:active+div img:nth-child(1) {
    animation: hold_img 6.8s infinite;
}

.desti-hero-content:active+div img:nth-child(2) {
    animation: hold_img s 0.2s infinite;
}

.desti-hero-content:active+div img:nth-child(3) {
    animation: hold_img 6.8s 0.4s infinite;
}

.desti-hero-content:active+div img:nth-child(4) {
    animation: hold_img 6.8s 0.6s infinite;
}

.desti-hero-content:active+div img:nth-child(5) {
    animation: hold_img 6.8s 0.8s infinite;
}

.desti-hero-content:active+div img:nth-child(6) {
    animation: hold_img 6.8s 1s infinite;
}

.desti-hero-content:active+div img:nth-child(7) {
    animation: hold_img 6.8s 1.2s infinite;
}

.desti-hero-content:active+div img:nth-child(8) {
    animation: hold_img 6.8s 1.4s infinite;
}

.desti-hero-content:active+div img:nth-child(9) {
    animation: hold_img 6.8s 1.6s infinite;
}

.desti-hero-content:active+div img:nth-child(10) {
    animation: hold_img 6.8s 1.8s infinite;
}

.desti-hero-content:active+div img:nth-child(11) {
    animation: hold_img 6.8s 2s infinite;
}

.desti-hero-content:active+div img:nth-child(12) {
    animation: hold_img 6.8s 2.2s infinite;
}

.desti-hero-content:active+div img:nth-child(13) {
    animation: hold_img 6.8s 2.4s infinite;
}

.desti-hero-content:active+div img:nth-child(14) {
    animation: hold_img 6.8s 2.6s infinite;
}

.desti-hero-content:active+div img:nth-child(15) {
    animation: hold_img 6.8s 2.8s infinite;
}

.desti-hero-content:active+div img:nth-child(16) {
    animation: hold_img 6.8s 3s infinite;
}

.desti-hero-content:active+div img:nth-child(17) {
    animation: hold_img 6.8s 3.2s infinite;
}

.desti-hero-content:active+div img:nth-child(18) {
    animation: hold_img 6.8s 3.4s infinite;
}

.desti-hero-content:active+div img:nth-child(19) {
    animation: hold_img 6.8s 3.6s infinite;
}

.desti-hero-content:active+div img:nth-child(20) {
    animation: hold_img 6.8s 3.8s infinite;
}

.desti-hero-content:active+div img:nth-child(21) {
    animation: hold_img 6.8s 4s infinite;
}

.desti-hero-content:active+div img:nth-child(22) {
    animation: hold_img 6.8s 4.2s infinite;
}

.desti-hero-content:active+div img:nth-child(23) {
    animation: hold_img 6.8s 4.6s infinite;
}

.desti-hero-content:active+div img:nth-child(24) {
    animation: hold_img 6.8s 4.8s infinite;
}

.desti-hero-content:active+div img:nth-child(25) {
    animation: hold_img 6.8s 5s infinite;
}

.desti-hero-content:active+div img:nth-child(26) {
    animation: hold_img 6.8s 5.2s infinite;
}

.desti-hero-content:active+div img:nth-child(27) {
    animation: hold_img 6.8s 5.4s infinite;
}

.desti-hero-content:active+div img:nth-child(28) {
    animation: hold_img 6.8s 5.6s infinite;
}

.desti-hero-content:active+div img:nth-child(29) {
    animation: hold_img 6.8s 5.8s infinite;
}

.desti-hero-content:active+div img:nth-child(30) {
    animation: hold_img 6.8s 6s infinite;
}

.desti-hero-content:active+div img:nth-child(31) {
    animation: hold_img 6.8s 6.2s infinite;
}

.desti-hero-content:active+div img:nth-child(32) {
    animation: hold_img 6.8s 6.4s infinite;
}

.desti-hero-content:active+div img:nth-child(33) {
    animation: hold_img 6.8s 6.6s infinite;
}

.desti-hero-content:active+div img:nth-child(34) {
    animation: hold_img 6.8s 6.8s infinite;
}

@keyframes hold_img {
    0% {
        visibility: visible;
    }

    9% {
        visibility: visible;
    }

    10% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}


.desti-hero-content {
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(#0000008c, #0000008c);
}

.header {
    position: fixed;
    top: 0;
    z-index: 999;
    /* background: #ffffff !important; */
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    bottom: 0;
    height: 101px;
    left: 0;
    right: 0;
    transition: 0.5s;
}

.inverted {
    background: #242133 !important;
}

.set-desti2 {
    position: relative;
    z-index: 1;
}

.rajsthani-svg2 {
    width: auto;
    height: 169px !important;
    right: 0px;
    left: -15px !important;
    top: -84% !important;
}

.rajsthani-svg3 {
    width: auto;
    height: 135px !important;
    right: 0px;
    left: -18px !important;
    top: -60% !important;
}

.rajsthani-svg4 {
    width: auto;
    height: 144px !important;
    right: 0px;
    left: -23px !important;
    top: -63% !important;
}

.rajsthani-svg5 {
    width: auto;
    height: 106px !important;
    right: 0px;
    left: -27px !important;
    top: -33% !important;
}

/* meet css */

.coverd-text {
    font-family: "Grandstander-Bold";
    font-size: 100px;
}

.desktop-none {
    display: none;
}

.desktop-head {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

.head-ul a {
    color: #000000;
    padding: 10px 0 25px;
    font-size: 15px;
    transition: .5s all;
    margin: 0 20px;
}

.head-u a {
    color: #000000;
    padding: 10px 20px;
    font-size: 15px;
    transition: .5s all;
}

.guide-help-main:hover,
.b2b-mid-content-box:hover {
    transition: all .7s;
    box-shadow: rgb(0 0 0 / 31%) 0px 13px 29px 0px;
}

.b2b-mid-content-box:hover {
    background-image: linear-gradient(45deg, #b9e1fb, #cff2ff, #FFFFFF);

}



.guide-help-main:hover,
.b2b-mid-content-box-ab:hover {
    transition: all .7s;
    box-shadow: rgb(0 0 0 / 31%) 0px 13px 29px 0px;
}

.b2b-mid-content-box-ab:hover {
    background-image: linear-gradient(45deg, #ffc4ff, #ffcbff, #FFFFFF);

}





.guide-help-main:hover,
.guide-usage-main:hover {
    background-image: linear-gradient(45deg, #f4c4f3, #fde5fd);
}

.guide-help-main:hover .guide-help-mid-titles {
    color: #000;
}

.pdf-btn {
    text-align: center;
    padding: 0 0 30px 0;
}

.pdf-img {
    margin-bottom: 15px;
}

.affiliate-text-black .guide-title {
    font-size: 55px;
}

.guide-usage-section .guide-usage-main:hover {
    background-image: linear-gradient(0deg, #2196f347, transparent);
}

.curve-text1 {
    color: #fff;
}

.curve-text2 {
    color: #fff;
}

.curve-text3 {
    color: #ffa500;
}

.curve-text4 {
    color: #FFA500;
}

.memorable-nav .nav-item:nth-child(4) .nav-link.active {
    background-image: url(../images/about/brush4.png);
}

.memorable-nav .nav-item:nth-child(5) .nav-link.active {
    background-image: url(../images/about/brush5.png);
}

.modal-backdrop {
    background-color: #475b70;
}

.modal-to-know .modal-content {
    border-radius: 14px;
    border: 0px;
    box-shadow: 0px 0px 10px #46434359;
    padding: 30px 15px 15px 15px;
}

.close-text-end {
    padding: 0px 15px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-text-end h5 {
    font-family: "Montserrat-Bold";
    margin-bottom: 0;
    line-height: 1.4;
    user-select: none;
    font-size: 26px;
}

.submit-end-modal {
    justify-content: end;
}

.head-ul a:hover {
    color: #ff5722;
}

.weplan-li-pad li button {
    padding: 7px 0px 30px 40px !important;
}

.flex-center-all {
    display: flex;
}

.hero-text1,
.hero-text2,
.hero-text3,
.section-title-h2,
.goessy-tagline,
.travel-product-para,
.plan-card-content h4,
.timeline-ui li .content .title,
.timeline-ui li .content .text,
.guide-h2,
.main-title-h1 {
    user-select: none;
}

.and-much-more-title,
.and-much-more-card-title,
.and-much-more-card .content p,
.footer-content.text-center,
.footer-menu-title,
.footer-menu li a,
.destination-title,
.para-text,
.desti-titles,
.guide-title,
.main-title-h3 {
    user-select: none;
}

.guide-introduction-points,
.guide-help-mid-titles,
.guide-help-para,
.guide-usage-titles,
.guide-usage-para,
.guide-note-text,
.affiliate-mid-titles,
.affiliate-inner-main,
.affiliate-para,
.main-title-h2 {
    user-select: none;
}

.head-ul a {
    display: inline-block;
    color: #FFFFFF;
    position: relative;
}

.head-ul a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.head-ul a:hover {
    color: #FFFFFF;
}

.head-ul a:hover:after {
    background-image: url(../images/menu_hover.svg);
    background-size: 390px 50px;
    animation: line 2s;
}


@keyframes line {
    0% {
        background-position-x: 390px;
    }
}

/* .mystyle .desktop-head {
    top: 32px;
} */

.mystyle .head-ul a {
    display: inline-block;
    color: #000000;
    position: relative;
}

.mystyle .head-ul a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mystyle .head-ul a:hover {
    color: #000000;
}

.mystyle .head-ul a:hover:after {
    background-image: url(../images/menu_black_hover.svg);
    background-size: 390px 50px;
    animation: line 2s;
}

/* .crousel-wrape {
    width: 100%;
    display: flex;
    position: sticky;
    height: 100vh;
    overflow: hidden;
    top: 0px;
} */

.gallery-wrape {
    width: 100%;
    padding: 0;
    background: linear-gradient(135deg);
    height: 450vh;
    position: relative;
    display: flex;
}

.gallery-wrape .frame-wrape {
    width: 100%;
    padding: 0;
    background: linear-gradient(135deg);
    height: 110vh;
    display: flex;
    position: sticky;
    top: 30px;
}

.crousel-wrape .carousel {
    position: relative;
    z-index: 1;
    pointer-events: none;
    width: 100%;
}

.crousel-wrape .carousel-item {
    display: block;
    --items: 10;
    --width: clamp(150px, 30vw, 300px);
    --height: clamp(200px, 40vw, 400px);
    --x: calc(var(--active) * 800%);
    --y: calc(var(--active) * 200%);
    --rot: calc(var(--active) * 120deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 10px;
    top: 50%;
    left: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.5);
    background: black;
    pointer-events: all;
    transform: translate(var(--x), var(--y)) rotate(var(--rot));
    transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.crousel-wrape .carousel-item .carousel-box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    opacity: var(--opacity);
    font-family: "Orelo-sw-db", serif;
}

.crousel-wrape .carousel-item .carousel-box:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.crousel-wrape .carousel-item .title {
    position: absolute;
    z-index: 1;
    color: #fff;
    bottom: 20px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 3vw, 30px);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.crousel-wrape .carousel-item .num {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 10vw, 80px);
}

.crousel-wrape .carousel-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
}

body.body-scroll-disable {
    overflow-y: hidden;
}

.guide-video-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-video-main .travel-video {
    width: 80%;
    height: auto;
}


.paralax-banner-wrape {
    /* background: red; */
    /* display: flex;
    justify-content: center; */
    /* top: 0;
    position: sticky;
    height: 6000px; */
    /* margin-bottom: 150vh; */
    height: 6000px;
}

.paralax-banner-wrape svg {
    /* display: block;
    width: 100%;
    height: 600px;
    top: 0;
    left: 0;
    z-index: 10; */
    /* display: block; */
    /* width: 100%;
    height: 100vh; */
    /* top: 0;
    left: 0;
    z-index: 10;
    vertical-align: top; */
    display: block;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
}

.paralax-banner-wrape .scrollElement {
    position: absolute;
    height: 6000px;
    width: 100px;
    top: 0;
    z-index: 0;
}

/* .inner-para {
    width: 100%;
    height: 100vh;
} */

.white-wrape {
    background: white;
    position: relative;
}






.text-paralax-wrape {
    /* align-items: center; */
    /* background-color: var(--bg); */
    background-color: #ffffff;
    color: var(--color);
    display: flex;

    justify-content: center;
    height: 1000vh;
    accent-color: red;
}

:root:has(#driver:checked) section {
    outline: 1rem dashed hsl(0 80% 50% / 0.5);
    background: hsl(0 80% 50% / 0.1);
}

.text-paralax-wrape p {
    width: 80vw;
    /*resize: both;
    */
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 10vmin 5vmin;
    animation: fill-up both linear;
    animation-timeline: --section;
    animation-range: cover;
    margin: 0;
    position: sticky;
    top: 30px;
}

@property --progress {
    initial-value: 0;
    syntax: '<number>';
    inherits: true;
}

.text-paralax-wrape p>span {
    outline-color: hsl(10 80% 50%);
    outline-offset: 1ch;
    font-size: clamp(2.75rem, 4vw + 1rem, 10rem);
    color: var(--color);
    text-decoration: none;
    background-image:
        /* First one is the highlight */
        linear-gradient(90deg, transparent calc(100% - 8ch), var(--accent) calc(100% - 8ch)), linear-gradient(90deg, var(--fill), var(--fill)), linear-gradient(90deg, var(--underline-color), var(--underline-color));
    background-size: var(--underline-block-width) var(--underline-width), var(--underline-block-width) var(--underline-width), 100% var(--underline-width);
    background-repeat: no-repeat;
    background-position-x: calc((var(--underline-block-width) * -0.5) + (var(--progress) * var(--underline-block-width) * 1)), calc((var(--underline-block-width) * -1) + (var(--progress) * var(--underline-block-width) * 1)), 0;
    background-position-y: 100%;
    color: tranparent;
    -webkit-background-clip: text;
    animation: color-in both ease-in-out;
    animation-timeline: --section;
    animation-range: cover 65% cover 100%;
    line-height: 1.25;
    font-family: "Montserrat-Bold";
    user-select: none;
}

.text-paralax-wrape section {
    /* margin: 100vh 0; */
    margin: 0;
    height: 100vh;
    /* width: 100vw; */
    view-timeline-name: --section;
    -webkit-animation-name: --section;
    padding-top: 0;
    position: sticky;
    top: 50px;
}

@keyframes fill-up {
    to {
        --progress: 0.75;
    }
}

@keyframes color-in {
    to {
        color: var(--finish-fill);
    }
}

iframe {
    width: 100%;
    height: 100%;
}

.destination-details-section.gallery-bg {
    background: linear-gradient(20deg, black, #220033);
    position: relative;
    top: 1px;
}

.destination-details-section.gallery-bg .section-title-h2 {
    color: #FFFFFF;
    font-size: clamp(44px, 3vw, 48px);
}

.p-b-0 {
    padding-bottom: 0;
}













.wrapper-icon {
    display: inline-flex;
    list-style: none;
    gap: 20px;
}

.wrapper-icon .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-icon .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-icon .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-icon .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper-icon .icon:hover span,
.wrapper-icon .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper-icon .facebook:hover,
.wrapper-icon .facebook:hover .tooltip,
.wrapper-icon .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper-icon .twitter:hover,
.wrapper-icon .twitter:hover .tooltip,
.wrapper-icon .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper-icon .instagram:hover,
.wrapper-icon .instagram:hover .tooltip,
.wrapper-icon .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper-icon .github:hover,
.wrapper-icon .github:hover .tooltip,
.wrapper-icon .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper-icon .youtube:hover,
.wrapper-icon .youtube:hover .tooltip,
.wrapper-icon .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}


.validation-message {
    color: #f00;
    font-size: 14px;
    line-height: 1;
    margin-top: -20px;
    /* margin-right: -6px; */
    margin-left: 16px;
    margin-bottom: 15px;
}

.lokally-text {
    font-family: "Grandstander-Bold";
}

.lokally-ai-text {
    font-family: "Grandstander-Bold";
}

.faq-acc-button .lokally-text {
    padding: 0px 5px;
}

.faq-acc-button .lokally-ai-text {
    padding: 0px 5px 0px 0px;
}

.lets-btn-flex {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.lets-btn-flex button, .lets-btn-flex button:hover, .modal-btn-flex button , .modal-btn-flex button:hover {
    background-color: #ff5722;
    background-image: none;
}

.modal-btn-flex {
    gap: 20px;
    display: flex;
}

/* .gio-targeted-bg{
    background-image: url(../images/gio-targeted.gif);
} */
.gio-targeted-bg {
    /* background-image: linear-gradient(45deg, #0000008c, #0000008c), url(../images/gio-targeted.gif); */
    height: 150px;
    /* background-size: 100% 100%; */
    width: 150px;
    margin: auto;
    display: flex;
}

.discripion-text {
    font-family: "Museo_Sans_Regular";
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    text-align: center;
}

.discription-title-text {
    font-family: "Museo_Sans_Regular";
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-text-lokally{
    color: #ff5722;
}
.astrick-sign{
    color: red;
}