:root {
    --theme-color: #ff3e3b;
    --theme-dark: #380338;
    --theme-color2: #FFAC00;
    --title-color: #1F1F1F;
    --body-color: #797E88;
    --smoke-color: #F8F8F8;
    --smoke-color2: #F6F6F6;
    --smoke-color3: #F2F2F2;
    --black-color: #000000;
    --black-color2: #141414;
    --black-color3: #130513;
    --black-color4: #100010;
    --gray-color: #FDF8EA;
    --light-color: #829592;
    --black-color5: #22272E;
    --black-color6: #2D333D;
    --black-color7: #0E0E13;
    --white-color: #ffffff;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #D8DDE1;
    --th-border-color2: #2F343B;
    --th-border-color3: #252A31;
    --th-border-color4: #353B45;
    --th-border-color5: #49515C;
    --th-border-color6: #383D46;
    --title-font: "Nunito", sans-serif;
    --body-font: "Nunito", sans-serif;
    --caveat-font: "Caveat", cursive;
    --icon-font: "Font Awesome 6 Free";
    --main-container: 1290px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
    --th-body-background: #ffffff;
    --transition: 0.4s ease-in-out;
}

.fw-medium {
    font-weight: 500 !important;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit;
}.box-title a{
    color: inherit;
}

a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    letter-spacing: 0.03em;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.buy-now-btn {
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: #ffffff;
    background-color: #82b440;
    padding: 10px 20px;
    box-shadow: 0 1px 20px 1px var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    z-index: 10000;
}

/* Keep this part */

.buy-now-btn {
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: #ffffff;
    background-color: #82b440;
    padding: 10px 20px;
    box-shadow: 0 1px 20px 1px var(--color-primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    z-index: 10000;
}

/* WhatsApp Button */

.buy-now-btn.btn-2 {
    top: auto;
    bottom: 20px;
    left: auto;
    right: 20px;
    padding: 10px;
    font-size: 50px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    box-shadow: 0 1px 8px 1px #f2f2f2;
}

/* Call Button */

.buy-now-btn.btn-3 {
    top: auto;
    bottom: 20px;
    right: auto;
    left: 20px;
    padding: 10px;
    font-size: 35px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    box-shadow: 0 1px 8px 1px #f2f2f2;
}

.buy-now-btn:hover {
    background-color: var(--theme-color);
    color: #ffffff;
}

/* Updated Animation */

@keyframes rubberBand2 {
    0% {
        transform: translateY(-50%) scale(1);
    }
    30% {
        transform: translateY(-50%) scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: translateY(-50%) scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: translateY(-50%) scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: translateY(-50%) scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: translateY(-50%) scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

@keyframes rubberBand3 {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation trigger */

.buy-now-btn.animate {
    animation: rubberBand2 1s ease-in-out;
}

.buy-now-btn.animate.btn-3,
.buy-now-btn.animate.btn-2 {
    animation: rubberBand3 1s ease-in-out;
}

@media(max-width:768px) {
    .buy-now-btn {
        padding: 6px 8px;
        font-size: 11px;
        right: 7px;
    }
    .buy-now-btn.btn-3 {
        width: 55px;
        height: 55px;
        font-size: 27px;
    }
    .buy-now-btn.btn-2 {
        width: 55px;
        height: 55px;
        font-size: 40px;
    }
}

.single-section {
    position: relative;
    img {
        max-height: 350px;
        object-fit: cover;
        border-radius: 15px;
    }
}

.single-section .image_section {
    position: relative;
}

.single-section .image_section .view-all {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
    margin-bottom: 0;
    padding: 10px;
    text-transform: capitalize;
    color: white;
    font-weight: 800;
    line-height: 1;
}

.single-section .image_section .slider-thumbnail {
    margin-top: 5px;
    overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide>div {
    margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.single-section .facility_sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    margin-top: 20px;
}

.single-section .facility_sec .icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 50px;
    position: relative;
}

.single-section .facility_sec .icon-box svg {
    width: 30px;
    height: auto;
    fill: var(--theme-color2);
}

.single-section .facility_sec .icon-box .content {
    margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
    margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
    content: "";
    width: 1px;
    height: 25px;
    background-color: var(--theme-color2);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
    display: none;
}

.single-section .description-section .menu-top {
    margin-top: 30px;
    padding: 12px 0;
    background-color: white;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
    color: var(--theme-color2);
    text-transform: uppercase;
    font-weight: 700;
    padding: 17px 30px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
    color: var(--theme-color2);
    border-bottom: 2px solid var(--theme-color2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
    display: none;
}

.single-section .description-section .menu-top.sticky {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    padding: 16px 0;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
    padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
    margin-top: 0;
    margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
    text-transform: uppercase;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
    margin-top: 20px;
    padding: 30px;
    background-color: white;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery>div:nth-child(-n+3) {
    margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .list-view {
    margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
    width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
    margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
    padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
    margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
    position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    font-size: 22px;
    display: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+3) {
    margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
    text-transform: capitalize;
    font-weight: 700;
    color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
    margin-right: 5px;
    width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
    margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
    display: block;
    text-transform: capitalize;
    line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
    font-size: 8px;
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.map iframe {
    width: 100%;
    height: 420px;
    margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-left: 10px;
    font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
    font-size: 14px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
    border-top: 1px solid #f9f9f9;
    padding-top: 12px;
    margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
    color: #212121;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.6;
}

.single-section .description-section .description-details.full-slider .menu-part {
    margin-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
    margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
    padding: 0;
    background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
    margin-bottom: 15px;
    background-color: white;
    border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
    border: none;
    border-bottom: 2px solid var(--theme-color2);
    color: var(--theme-color2);
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--theme-color2);
    color: var(--theme-color2);
}

.single-section .description-section.tab-section .menu-top.sticky {
    background-color: white;
    margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
    margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
    margin-top: 0;
}

.single-section .single-sidebar {
    background-color: white;
    padding: 20px;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
    text-transform: capitalize;
    font-weight: 700;
    margin-top: -4px;
}

.single-section .single-sidebar p {
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
    font-size: 13px;
    margin-right: 10px;
    color: rgba(0, 0, 0, 0.59);
}

.single-section .single-sidebar .newsletter-sec {
    padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
    margin-top: 15px;
    text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
    padding: 6px 14px;
    font-size: 14px;
    text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
    position: relative;
    margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
    height: 100px;
    width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.0001;
    z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--theme-color2);
    text-transform: capitalize;
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    z-index: 0;
    font-weight: 600;
    margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
    color: var(--theme-color2);
    font-weight: 700;
    text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
    font-size: 10px;
    margin-right: 5px;
    color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
    color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
    margin-left: auto;
    text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
    color: rgba(0, 0, 0, 0.4);
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--theme-color2);
}

.single-section .single-sidebar .book-btn-section .btn-rounded {
    padding: 6px 14px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 0;
}

.single-section .single-sidebar .contact-title {
    color: var(--theme-color2);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
    text-transform: capitalize;
    color: var(--theme-color2);
    font-size: 14px;
    font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
    margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin-top: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
    width: 40px;
    margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
    font-size: 12px;
    margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
    margin-left: 20px;
}

.single-section .single-sidebar .social-box {
    margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
    font-size: 14px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: white;
    padding: 9px;
    background-color: var(--theme-color2);
    border-radius: 100%;
    width: 32px;
    height: 32px;
    text-align: center;
    margin-right: 3px;
}

.single-section .single-sidebar+.single-sidebar {
    margin-top: 30px;
}

.single-section .single-sidebar .order-cart .cart-items {
    margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color2);
    font-weight: 500;
    margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
    width: 120px;
    margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
    padding: 5px 10px;
    font-size: 10px;
    line-height: 1;
    background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
    padding: 2px;
    width: 50px;
    text-align: center;
    border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
    padding-left: 25px;
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
    content: "";
    left: 0;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid green;
    top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
    content: "";
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: green;
    position: absolute;
    border-radius: 100%;
    top: 5px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6 {
    padding-left: 25px;
    position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:after {
    content: "";
    left: 0;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid red;
    top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:before {
    content: "";
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: red;
    position: absolute;
    border-radius: 100%;
    top: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
    float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
    margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
    text-align: center;
    margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
    margin-bottom: 20px;
    opacity: 0.5;
}

.single-section .single-sidebar .order-cart .empty-cart p {
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    color: rgba(0, 0, 0, 0.64);
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    background-color: var(--theme-color2);
}

/*float  buttons*/

.fixed__btns {
    position: fixed;
    right: 0;
    left: 50%;
    bottom: 6px;
    background-color: transparent;
    width: 94%;
    height: 50px;
    z-index: 99;
    padding: 0;
    gap: 11px;
    overflow: hidden;
    display: flex;
    transform: translateX(-50%);
}

.float {
    position: relative;
    width: 100%;
    height: 100%;
    color: #FFF;
    border-radius: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
    border-radius: 30px;
    letter-spacing: -0.02em;
    img {
        width: 23px;
        margin-right: 5px;
    }
    span {
        font-weight: 600;
    }
}
@media(min-width: 768px){
.float_whatsapp {
    background-color: #25D366;
}

.float-popup {
    background-color: var(--theme-color2);
    color: #fff;
}

.float:hover {
    color: #000;
}

.float-call {
    background-color: var(--theme-color);
    font-size: 15px;
    font-weight: 100 !important;
}

.float-mail {
    background-color: var(--theme-color2);
    font-size: 15px;
    font-weight: 100 !important;
}
}

.my-float {
    margin-top: 5px;
    color: #25d366;
}

.my-call {
    margin-top: 5px;
}

@media(min-width:768px) {
    .float_whatsapp {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 175px !important;
        height: 40px;
        border-radius: 10px;
        animation: float 1s ease-in-out infinite;
    }
    .fixed__btns {
        background-color: transparent;
        height: 0;
        transform: none;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
        /* Moves up */
    }
    100% {
        transform: translateY(0);
    }
}

.phone_res-float-btn {
    width: 100%;
    display: flex;
    position: fixed;
    bottom: 0 !important;
    z-index: 111;
}

.phone_res-float-btn a {
    width: 50% !important;
    border-radius: 0;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #bababa;
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    color: #000;
}

.phone_res-float-btn .button__1 {
    position: relative;
    left: 0 !important;
    border-top-left-radius: 20px;
}

.phone_res-float-btn .button__2 {
    position: relative;
    border-top-right-radius: 20px;
    right: 0 !important;
}

.phone_res-float-btn img {
    width: 25px;
    height: 25px;
}

.terms-content h3 {
    font-weight: 600;
    font-size: 30px;
}

.terms-list li {
    list-style: auto !important;
    display: block !important;
}

.sidebar-item {
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item>h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    color: #000;
    border-bottom: 2px solid var(--theme-color2);
}

.title-1 h4,
.title-1 h3 {
    font-weight: 600;
    font-size: 30px;
    position: relative;
    margin-bottom: 45px;
}

.title-1 h4:before,
.title-1 h3:before {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    content: "";
    background-color: var(--theme-color2);
}

.sidebar-category {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-category li {
    list-style: none;
    margin-bottom: 1px;
    width: 100%;
    margin-bottom: 5px;
}

.sidebar-category li .active {
    background: var(--theme-color2);
    color: #FFF;
}

.sidebar-category li a {
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 6px;
}

.sidebar-category li a:hover {
    background: var(--theme-color2);
    color: #fff;
}

.sidebar-category li a:after {
    content: "\f061";
    font-family: 'Font Awesome 6 Free';
    float: right;
    font-weight: 900;
}

.bg-banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.same-section-spacing {
    padding: 100px 0 100px;
}

.bg-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.banner-box {
    .breadcrumb {
        background-color: transparent;
    }
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb {
    display: inherit !important;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    padding: 10px 0;
}

.breadcrumb {
    background: transparent;
    padding: 10px 0;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb-item a {
    font-weight: 600;
}

.banner-box {
    .breadcrumb-item.active {
        color: #fff;
    }
}

.banner-box {
    .breadcrumb-item+.breadcrumb-item::before {
        color: #fff;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {}

.banner-box h2 {
    margin-bottom: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
}

@media(max-width:768px) {
    .banner-box h2 {
        font-size: 30px;
    }
}

.forum-main-image {
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid var(--theme-color2);
}

.forum-main-image img {
    width: 100%;
}

.forum-main-image img {
    border-radius: 5px;
    margin-bottom: 0;
}

.forum-details h3 {
    font-size: 35px;
    margin-bottom: 30px;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

@media(max-width:768px) {
    .spad {
        padding: 50px 0 50px;
    }
}

a.meanmenu-reveal {
    display: none
}

.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: relative;
    background: #070337;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px 13px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 3px;
    margin-top: 3px
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #070337;
    margin-top: 44px
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 10px 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #e0e3ed;
    text-decoration: none;
    text-transform: uppercase
}

.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 10px 10%;
    text-shadow: none !important;
    visibility: visible
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: 0;
    margin-bottom: 0
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 10px 15%
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 10px 20%
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 10px 25%
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 26px;
    height: 32px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: transparent;
    border: none !important;
    font-size: 14px
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.mean-remove {
    display: none !important
}



.single-section .h2,
.single-section .h3 {
    color: #000;
    font-weight: 600;
}

/*service pages*/

.single-section .detail .h3,
.single-section .detail h3 {
    color: #000;
    font-weight: 600;
}

/*sidelist*/

.single-section .sidebar-item {
    margin-bottom: 30px;
    position: relative;
    background-color: transparent;
    box-shadow: none;
    border-radius: 10px;
}

/*book now*/

.booking-page .card {
    border: none;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
}

.booking-page .card-header {
    background-color: var(--theme-color2);
    text-align: center;
    border: 0;
}

.booking-page .card-header .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 15px 0;
    color: #fff;
}

.booking-page .row>* {
    margin-top: 12px;
}

.booking-page label {
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
}

.booking-page label span {
    color: #ff0000;
    padding-left: 5px;
}

.mb-30 {
    margin-bottom: 30px;
}

.bg-light-dark {
    background-image: linear-gradient(180deg, rgba(var(--white-rgb), 0.07) 42.67%, #f8ffe8 89.38%);
}

.single-service-wrap {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.single-service-wrap .destination {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 157.143%;
    letter-spacing: 0.42px;
    margin-top: -7px;
    i {
        font-size: 18px;
        color: var(--theme-color2);
    }
}

.single-service-wrap:hover img {
    transform: scale(1.1);
    transition: 0.4s;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
    background: #fff;
    color: #fa4318;
    color: var(--theme-color2);
}

.single-service-wrap .thumb {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    transition: 0.3s;
    margin-inline: auto;
}

.single-service-wrap:hover .thumb {
    border-color: var(--theme-color2);
}

.single-service-wrap:hover .thumb img {
    transition: 0.3s;
}

.single-service-wrap .thumb:after {
    left: -30px;
}

.single-service-wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-service-wrap .details .icon {
    background: #fff;
    height: 39px;
    line-height: 50px;
    margin-left: auto;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    width: 40px;
    top: 0px;
    right: 15px;
    font-size: 20px;
    color: var(--theme-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid var(--theme-color2);
}

.single-service-wrap .details {
    position: relative;
    margin-left: 136px;
    padding: 35px 25px;
    margin-top: -120px;
    z-index: 1;
}

@media(max-width:768px) {
    .single-service-wrap .details {
        margin-left: 20px;
    }
}

.single-service-wrap .details:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 0px;
    background-color: #ffffff;
    -ms-transform: skewY(2deg);
    transform: skewY(2deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    z-index: -1;
}

.single-service-wrap .detailes_top {
    margin-bottom: 12px;
}

.single-service-wrap .border-layer {
    position: absolute;
    left: -12px;
    top: -30px;
    z-index: -2;
    width: 32px;
    bottom: -10px;
    border: 4px solid var(--theme-color2);
    -ms-transform: skewY(20deg);
    transform: skewY(20deg);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.single-service-wrap:hover .border-layer {
    -ms-transform: skewY(-20deg);
    transform: skewY(-20deg);
}

.single-service-wrap h5 {
    transition: all 0.3s ease-in;
    position: relative;
    color: #222;
    font-size: 24px;
    margin-top: -10px;
    line-height: 0.9;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 00;
    font-weight: 600;
}

.single-service-wrap .details p {
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    text-align: left;
}

.single-service-wrap .details .btn-wrap .read-more-text {
    color: #080c24;
    color: #222;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
    display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
    color: #fff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    transition: all 0.3s ease-in;
    width: 26px;
}

.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
    background: #fa4318;
    background: var(--theme-color2);
    border-radius: 50%;
    margin-left: auto;
    text-align: center;
}

.service-details-wrap .thumb .icon {
    height: 70px;
    line-height: 68px;
    margin-bottom: -70px;
    position: relative;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
}

.service-details-wrap .thumb .icon img {
    width: auto;
}

.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 23px 0 -0.5em 0;
    list-style-type: none;
    position: relative;
}

.breadcumb-wrapper:before {
    mix-blend-mode: multiply;
}

[data-overlay="theme"]:before {
    background-color: #000;
}

[data-overlay]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.4;
}

.breadcumb-title {
    color: #Fff;
}

.breadcumb-menu li {
    display: inline-block;
    margin-right: 3px;
    padding-right: 3px;
    list-style: none;
    position: relative;
}

.breadcumb-menu li:after {
    content: "\f061";
    position: relative;
    margin-left: 6px;
    font-weight: 900;
    font-size: 15px;
    font-family: "Font Awesome 6 Free";
}

.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcumb-menu li:last-child:after {
    display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    white-space: normal;
    word-break: break-word;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.breadcumb-title {
    margin: -0.15em 0 -0.18em 0;
    line-height: 1.1;
    font-weight: 800;
}

@media (min-width: 1300px) {
    .breadcumb-title {
        font-size: 49px;
    }
}

.breadcumb-wrapper {
    background-color: #000;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.breadcumb-wrapper .breadcumb-content {
    padding: 130px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcumb-wrapper:before {
    mix-blend-mode: multiply;
}

.breadcumb-wrapper .breadcumb-thumb {
    position: relative;
    z-index: 1;
    text-align: end;
    margin: -124px -50px 0px 0;
}

/* Large devices */

@media (max-width: 1199px) {
    .breadcumb-wrapper .breadcumb-content {
        --space: 90px;
    }
    .breadcumb-menu {
        margin: 25px 0 -0.5em 0;
    }
    .breadcumb-menu li,
    .breadcumb-menu a,
    .breadcumb-menu span {
        font-size: 16px;
    }
}

/* Medium devices */

@media (max-width: 991px) {
    .breadcumb-wrapper {
        text-align: center;
    }
    .breadcumb-wrapper .breadcumb-content {
        --space: 80px;
    }
}

/* Small devices */

@media (max-width: 767px) {
    .breadcumb-wrapper .breadcumb-content {
        padding: 70px 0;
    }
}

/* Extra small devices */

@media (max-width: 575px) {
    .breadcumb-wrapper .breadcumb-content {
        padding: 70px 0;
    }
    .breadcumb-title {
        font-size: 27px;
    }
}

.single-section {
    position: relative;
    padding: 35px 0;
}

.single-service-details {
    position: relative;
}

.single-service-details img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.single-service-details .title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.333;
    font-weight: 700;
}

.single-service-details strong,
.single-service-details b {
    font-size: 17px;
    font-weight: 700;
}

.single-service-details a {
    color: var(--theme-color);
    transition: 0.2s;
}

.single-service-details a:hover {
    color: var(--theme-color);
}

.single-service-details .content-box {
    margin: 0 0 0 0;
    padding: 15px 30px;
    position: relative;
}

.single-service-details .content-box ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.single-service-details .content-box ul li {
    display: block;
    position: relative;
}

.single-service-details .content-box ul li:before {
    position: relative;
    content: '\f0a4';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme-color);
    margin-right: 5px;
}

.single-section .sidebar-weight .inner-box {
    position: relative;
    display: block;
    background: #e4eef3;
    padding: 100px 30px 40px 30px;
}

.single-section .sidebar-weight .inner-box .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.single-section .sidebar-weight .inner-box .bg-layer:before {
    position: absolute;
    content: '';
    background-color: #222;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
}

.single-section .sidebar-weight .inner-box .logo {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin-bottom: 26px;
}

.single-section .sidebar-weight .inner-box .mini-title {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: var(--theme-color);
}

.single-section .sidebar-weight .inner-box h2 {
    display: block;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 8px;
    color: #fff;
}

.single-section .sidebar-weight .inner-box p {
    margin-bottom: 22px;
    color: #fff;
}

.single-section .sidebar-weight .inner-box .theme-btn {
    padding: 13px 30px;
}

.single-section .ripped-shape {
    position: absolute;
    transform: scaleY(-1);
    width: 100%;
    height: 488px;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
    border-radius: 0;
}

.single-section .content-box {
    z-index: 2;
}

.sidebar-weight {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.single-section .text-box {
    margin-bottom: 32px;
}

.single-section .content {
    padding-bottom: 20px;
}

.single-section .image_row img {
    border-radius: 12px;
}

.single-section .content .single-item .icon-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

@media(max-width:992px) {
    .single-service-details {
        margin-bottom: 20px;
    }
}

@media(max-width:768px) {
    .single-service-details .content-box {
        padding: 10px;
    }
    .single-service-details .title {
        margin-bottom: 12px;
        font-size: 25px;
        line-height: 1.1;
        font-weight: 800;
    }
    .single-service-details .content-box ul li {
        margin-bottom: 5px;
    }
    .single-service-details img {
        max-height: 300px;
        min-height: 300px;
    }
}


.float {
    img {
        width: 23px;
        margin-right: 5px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
        /* Moves up */
    }
    100% {
        transform: translateY(0);
    }
}

.fixed__btns {
    position: fixed;
    right: 0;
    left: 50%;
    bottom: 6px;
    background-color: transparent;
    width: 94%;
    height: 50px;
    z-index: 99;
    padding: 0;
    gap: 11px;
    overflow: hidden;
    display: flex;
    transform: translateX(-50%);
}

@media(min-width:768px) {
    .float_whatsapp,
    .float-call {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 175px !important;
        height: 40px;
        border-radius: 10px;
        animation: float 1s ease-in-out infinite;
    }
    .float-call {
        right: auto;
        left: 20px;
    }
    .fixed__btns {
        background-color: transparent;
        height: 0;
        transform: none;
    }
    .float_whatsapp {
    background-color: #25D366;
}

}
@media(max-width:768px){
    .float{
        background-color: #fff;
        color: #000;
        cursor: pointer;
        border: 2px solid #000;
        border-radius: 30px;
        span{
            font-weight: 700;
        line-height: 1;
        letter-spacing: -0.02em;
        font-size: 11px;
        }
    }
    .fixed__btns{
        height: 35px;
        gap: 3px;
    }
}

header.active .main-header--two .mobile-nav__btn span {
    background-color: #fff;
}

.main-header--two.active .main-menu .main-menu__list>li>a {
    color: #fff;
}

.main-header--two.active .main-menu .main-menu__list>li.current a {
    color: var(--theme-color);
}

.main-header__logo img {
    border: 3px solid #000;
    padding: 4px;
    width: 140px;
    border-radius: 10px;
}

.main-header--two.active .main-header__logo img {
    border-color: #fff;
}

@media(max-width:768px) {
    .tripex-about-sec .tripex-image-box .tripex-image.image-one img {
        height: auto;
    }
    .tripex-about-sec .tripex-image-box .tripex-image.image-one {
        left: -20px;
    }
    .tripex-about-sec .tripex-image-box .tripex-image.image-two {
        display: none;
    }
    .tripex-about-sec .tripex-image-box .tripex-award-card {
        margin-left: 0;
        margin-inline: auto;
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.single-section {
    .accordion-item {
        border-radius: 30px !important;
    }
    .accordion-item {
        margin: 0 0 20px 0;
        background-color: #fff;
        border-radius: 30px;
    }
    .accordion-item .accordion-header {
        margin-bottom: 0;
        border-radius: 30px;
        overflow: hidden;
    }
    .accordion-item:last-child {
        margin-bottom: 0;
    }
    .accordion-button {
        border: none;
        padding: 0 5px 0 30px;
        font-size: 16px;
        font-weight: 700;
        color: var(--theme-color);
        text-align: left;
        gap: 10px;
        height: 60px;
    }
    .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: var(--theme-color2) !important;
    }
    .accordion-button:not(.collapsed):after {
        transform: rotate(0);
        content: "\f068";
        background-color: var(--theme-color2);
        color: #fff;
    }
    .accordion-button.collapsed {
        color: #000;
    }
    .accordion-button:after {
        content: "\f067";
        font-family: var(--icon-font);
        font-weight: 900;
        border: none;
        width: 50px;
        height: 50px;
        background-image: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color2);
        color: #fff;
        font-size: 20px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        background-image: none !important;
    }
    .accordion-button:focus {
        box-shadow: none;
    }
    .accordion-body {
        padding: 20px 60px 23px 30px;
        font-size: 14px;
    }
    .accordion-body p {
        color: #767676;
    }
    .accordion-body p:last-child {
        margin-bottom: 0;
    }
}

.single-section h2 {
    font-size: 30px;
}

.single-section h3 {
    font-size: 25px;
}

.single-section.small-section img {
    margin-bottom: 10px;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: 8px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.table thead {
    background-color: #212529;
    color: #fff;
    font-weight: 600;
}

.table th,
.table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fdfdfd;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

@media (max-width: 576px) {
    .table th,
    .table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}

.header-logo {
    padding: 3px 0;
}

.header-logo img {
    width: 111px !important;
    background: #fff;
    position: absolute;
    z-index: 11;
    border-radius: 0 0 0px 24px;
    top: 3px;
}

.contact-logo img {
    background-color: #ffffff;
    border-radius: 50%;
}

.contact-box2 .logo-area {
    padding: 17px 0;
    a img {
        width: 123px;
        background-color: #ffffff;
        border-radius: 50%;
    }
}

@media(max-width: 768px) {
    .header-logo {
        padding: 4px 0;
    }
    .header-logo img {
        width: 77px;
    }
}

.mobile-logo img {
    width: 160px;
}

.self_box {
    position: relative;
    border: 1px solid #c3c3c3;
    background-color: #fff;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
}

.self_box .content {
    padding: 15px;
}

.self_box img {
    width: 100%;
    height: 220px;
    min-height: 220px;
    object-fit: contain;
}

.self_box .self_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.self_box ul {
    font-size: 14px;
    letter-spacing: -0.02em;
}

.self_box .multi_btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.self_box .multi_btn a {
    padding: 10px 15px;
}

.single-section .self_box .multi_btn a {
    color: #fff;
}

.single-section .self_box {
    background-color: #fff;
}

@media(min-width: 768px) {
    .header-layout3 .menu-top {
        padding: 0 30px;
    }
    .main-menu>ul>li,
    .menu-style2>ul>li {
        margin-inline: 15px;
    }
}

.single-section.small-section .col-lg-8 img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
    z-index: 0;
    box-shadow: none;
}

.homesection {
    background: var(--theme-color);
}

.form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-btn {
    width: 48%;
    margin: 0px 26%;
    border-radius: 30px;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
    z-index: 0;
    box-shadow: none;
}

.trip-form {
  display: table;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 3px 26px #00000029;
  border-radius: 25px;
  padding: 20px;
  position: relative;
  z-index: 5;
}

.trip-form .form-group {
  margin-bottom: 10px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2px 5px;
}
.trip-form .form-group label{
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}
.trip-form .form-group i{
    font-size: 11px;
    color: #111;
    margin-right: 2px;
}

.trip-form h4 {
  font-size: 19px;
  font-weight: 600;
  color: #ff3e3b;
}

.trip-form h4 span {
  font-size: 14px;
  color: #00171f;
  display: table;
  margin: 0px 0 10px;
}

.trip-form input,
.trip-form select {
  height: 25px;
  font-size: 13px;
  box-shadow: unset;
  outline: 0;
  border: 0;
  padding: 0;
}

.trip-form input:focus,
.trip-form select:focus {
    box-shadow: none;
}

.trip-form input::placeholder,
.trip-form select::placeholder {
    color: #a3a3a3;
}

@media(min-width: 768px) {
    .home_form .form_section {
        margin-top: -80px;
        position: relative;
        max-width: 100%;
    }
    .home_form .form_section .form-group{
        margin-bottom: 0;
    }
        .home_form .form_section .col-lg-auto{
        width: 20%;
    }
    .home_form .form_section .btn-default{
        padding: 16.5px 20px;
        width: 100%;
    }
}

@media(max-width: 768px) {
    .home_form .form_section {
        margin-top: -25px;
        width: 96%;
        margin-inline: auto;
    }

    .form_section {
        padding: 10px 15px 15px;
        border: 1px solid var(--theme-color);
        margin-bottom: 20px;
    }
    .te-about-image-card.style-2 .te-company-foundation-wrapper {
        padding: 5px;
    }
    .te-about-image-card.style-2 .te-company-foundation-wrapper .te-company-foundation {
        padding: 15px;
    }
    .about-video-area {
        margin-bottom: 10px;
    }
    .about3-section-area .about-widget-images .img1 img {
        height: 400px;
    }
    .about3-section-area .about-widget-images .content-area {
        padding: 10px;
    }
    .about3-section-area .about-widget-images .content-area .arrow {
        margin-top: 10px;
    }
    .about3-section-area .about-widget-images .content-area .arrow a {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    .mini-content {
        padding: 20px 40px 20px 10px;
    }
    .owl-carousel .mini-content {
        padding: 20px 40px 20px 10px;
    }
    .mini-content h4 {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 0;
        letter-spacing: -0.04em;
    }
    .about3-section-area .about-widget-images .content-area .text a {
        font-family: "Jost", sans-serif;
        font-size: 14px;
        letter-spacing: -0.04em;
        font-style: normal;
        font-weight: 600;
        line-height: 1;
    }
    .service-details .content .te-title-wrapper .title-inner .title {
        font-size: 32px;
        line-height: 1.2;
    }
}

.col-lg-4 .form_section {
    margin-bottom: 20px;
}

@media(max-width:900px) {
    .single-section.small-section .row {
        flex-direction: column-reverse;
    }
    .single-section.small-section .form_section .row {
        flex-direction: column;
    }
    .single-section .sidebar-item {
        display: none;
    }
}

@media(min-width:992px) {
    .single-section .common-booking-form .form_section {
        margin-bottom: 20px;
    }
}

.single-section .common-booking-form .form_section {
    border: 1px solid var(--theme-color);
}

.borderTop {
    border-top: 1px solid #e6e6e6;
}

.fotDPLink {
    opacity: .9;
    padding: 10px 0;
}

.fl {
    float: left;
}

.fotDPLink a {
    color: #000;
    font-size: 13px;
    line-height: 1;
    margin-inline: 4px;
    letter-spacing: -0.02em;
    padding-bottom: 5px;
    transition: 0.2s linear;
}

.fotDPLink a:hover {
    color: var(--theme-color);
    font-weight: 600;
}

.footerWrap {
    font-weight: 600;
    font-style: normal;
    color: #000 !important;
}

.fotDPLink p {
    line-height: 1;
    font-size: 13px;
    margin-bottom: 10px;
    strong {
        padding-right: 10px;
        font-size: 16px;
    }
}

.footer-partner-list {
    padding: 5 0;
    color: #000;
    font-size: 13px;
}

.footer-partner-list span {
    color: #000;
    font-weight: bold;
}

.footer-partner-list a {
    color: #000;
    font-weight: 500;
}

.footer-partner-list img {
    width: 62%;
}

.blog3-section-area {
    position: relative;
    z-index: 1;
}

.blog3-section-area .blog-boxarea {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.blog3-section-area .blog-boxarea:hover .img1 img {
    transform: scale(1.1) rotate(4deg);
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .img1 {
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .img1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s;
    height: 400px;
}

.blog3-section-area .blog-boxarea .content-area {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
    transition: all 0.4s;
    position: relative;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -110px;
}

.blog3-section-area .blog-boxarea .content-area ul li {
    display: inline-block;
}

.blog3-section-area .blog-boxarea .content-area ul li a {
    color: #081511;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .content-area ul li a img {
    margin: -5px 4px 0 0;
}

.blog3-section-area .blog-boxarea .content-area ul li span {
    color: #CDCDD0;
    display: inline-block;
    transition: all 0.4s;
    margin: 0 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog3-section-area .blog-boxarea .content-area ul li span {
        margin: 0 8px;
    }
}

.blog3-section-area .blog-boxarea .content-area a {
    color: #081511;
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .content-area a:hover {
    color: var(--theme-color);
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .content-area a.readmore {
    color: #081511;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    display: block;
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .content-area a.readmore:hover {
    color: var(--theme-color);
    transition: all 0.4s;
}

.blog3-section-area .blog-boxarea .content-area a.readmore i {
    margin-left: 4px;
    transform: rotate(-45deg);
}

.space24 {
    height: 24px;
}

@media(max-width: 768px) {
    .blog3-section-area .blog-boxarea .img1 img {
        height: 300px;
    }
    .te-section-title .title {
        line-height: 1;
        background-position: left 0% bottom -12%;
    }
    .te-info-card.style-3 {
        padding: 15px;
    }
    .te-info-card.style-3 .te-image-wrapper .image {
        height: 250px;
    }
    .te-info-card.style-3 .te-info-card-inner {
        gap: 0;
    }
}

.why_card {
    position: relative;
    padding: 1rem;
    box-shadow: -3px 3px 10px 0 #9b9b9b, 0 3px 3px 0 #9b9b9b;
    border-radius: 8px;
}

.why_card .why_icon {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    box-shadow: -3px 3px 10px 0 #9b9b9b, 0 3px 3px 0 #9b9b9b;
    margin-bottom: 15px;
    border-radius: 10px;
}

.why_card .why_icon img {
    width: 70px;
    height: auto;
}

.why_card .title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #000;
}

.why_card p {
    font-size: 15px;
    /* line-height: 1.5; */
    letter-spacing: -0.02em;
}

@media(min-width:768px) {
    .main_auto {
        width: auto;
    }
}

@media(max-width:768px) {
    .content-area .content-box {
        border-radius: 10px;
        padding: 10px;
    }
    .why_card {
        margin-bottom: 15px;
    }
}

.cabs_btn {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--theme-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.brand-logo img {
    width: 180px;
}

.header-area .container-fluid {
    padding: 0 70px;
}

@media (max-width: 1550px) {
    .header-area .container-fluid {
        padding: 0 24px;
    }
}

.header-top {
    padding: 6px 0;
}

@media (max-width: 991px) {
    .header-top {
        display: none;
    }
}

.header-top .te-header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px 60px;
}

.header-top .header-top-info {
    display: flex;
    gap: 0 24px;
}

.header-top .te-header-contact-info {
    display: flex;
    align-items: center;
    gap: 10px 33px;
    flex-wrap: wrap;
}

.header-top .te-header-contact-info span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Kumbh Sans", sans-serif;
}

.header-top .te-header-contact-info span i {
    color: #ffffff;
}

.header-top .te-header-contact-info span.te-contact-info-item {
    gap: 0 7px !important;
}

.header-top .te-header-contact-info span a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Kumbh Sans", sans-serif;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .header-top .header-top-btn {
        display: none;
    }
}

.header-top .header-top-btn a {
    position: relative;
    padding: 12px 46px;
    font-size: 18px;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    margin-bottom: -100px;
    display: inline-block;
    font-weight: 900;
    z-index: 2;
}

.header-top .header-top-btn a:hover:after {
    transition: all 0.5s ease-out;
    background-color: var(--theme-color);
}

.header-top .header-top-btn a:after {
    position: absolute;
    content: "";
    border-radius: 0 0 10px 10px;
    background-color: var(--theme-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease-out;
}

.header-top .te-social-profile {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-end;
}

.header-top .te-social-profile .te-social-profile-label {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    color: #151422;
    margin-right: 14px;
}

.header-top .te-social-profile a {
    font-size: 16px;
    color: #ffffff;
    transition: all 0.5s ease-out;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
}

.header-top .te-social-profile a:hover {
    transition: all 0.5s ease-out;
    color: #ffffff;
    background-color: var(--theme-color);
}

.te-header-menu-area {
    width: 100%;
    z-index: 999;
    transition: all 0.5s ease-out;
}

.te-header-menu-area.te-sticky-header {
    width: 100%;
    z-index: 999;
    transition: all 0.5s ease-out;
    position: relative;
    border-bottom: 4px solid #262760;
}

.te-header-menu-area.te-sticky_menu {
    left: 0;
    right: 0;
    top: 0;
    position: fixed !important;
    z-index: 9999;
    box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}

.te-header-menu-area.te-sticky_menu .te-logo {
    height: 84px;
}

.te-header-menu-area.te-sticky_menu .te-logo:after {
    display: none;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-standard-logo {
    display: none;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-sticky-logo {
    display: block;
}

.te-header-menu-area.te-sticky_menu .te-logo .te-sticky-logo img {
    width: 170px;
    transition: all 0.5s ease-out;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li.te-active>a:after {
    bottom: 20px;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li a {
    transition: all 0.5s ease-out;
    color: #182B54;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .te-header-menu-area.te-sticky_menu .te-main-menu ul li a {
        padding: 33px 14px;
    }
}

.te-sticky_menu .text-white {
    color: #182B54 !important;
}

.te-header-menu-area.te-sticky_menu .te-main-menu ul li ul li a {
    padding: 10px 20px;
}

.te-header-menu-area.te-sticky_menu .te-header-btn .te-quote-btn {
    background-color: var(--theme-color);
}

.te-header-menu-area.te-sticky_menu .te-header-btn .te-search-btn {
    color: #151422;
}

.te-header-menu-area .te-header-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1199px) {
    .te-header-menu-area .te-header-menu-wrapper {
        gap: 20px;
    }
}

.te-header-menu-area .te-logo {
    position: relative;
    z-index: 999;
    height: 86px;
    display: flex;
    align-items: center;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .te-header-menu-area .te-logo {
        height: 100px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .te-header-menu-area .te-logo {
        height: 80px;
    }
}

.te-header-menu-area .te-logo .te-standard-logo img {
    transition: all 0.5s ease-out;
    background: #fff;
    border-radius: 5px;
    padding: 2px;
}

.te-header-menu-area .te-logo .te-sticky-logo {
    display: none;
}

@media only screen and (max-width: 767px) {
    .te-header-menu-area .te-logo .te-sticky-logo {
        width: 170px;
    }
}

.te-header-menu-area .te-logo .te-sticky-logo img {
    transition: all 0.5s ease-out;
    background: #fff;
    border-radius: 5px;
    padding: 2px;
}

.te-header-menu-area .te-logo .te-retina-logo {
    display: none;
}

.te-menu-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: end;
}

.te-main-menu ul {
    margin: 0;
    padding: 0;
    position: relative;
}

.te-main-menu ul li {
    display: inline-block;
    padding: 0;
    position: relative;
}

.te-main-menu ul li.te-active {
    position: relative;
}

.te-main-menu ul li.te-active>a:after {
    color: var(--theme-color);
    font-size: 13px;
    margin-left: 5px;
}

.te-main-menu ul li.te-dropdown>a:after {
    visibility: visible;
    font-size: 13px;
    display: inline-block;
    margin-left: 5px;
}

.te-main-menu ul li.te-dropdown .te-dropdown>a:after {
    visibility: visible;
    font-size: 13px;
}

.te-main-menu ul li ul.te-submenu li.te-active>a {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.te-main-menu ul li ul.te-submenu li.te-active>a:after {
    color: #ffffff;
    font-size: 13px;
}

.te-main-menu ul li a {
    display: block;
    padding: 8px 11px;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.5s ease-out;
    position: relative;
    color: #000;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: initial;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .te-main-menu ul li a {
        padding: 8px 14px;
    }
}

.te-main-menu ul li a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    margin-top: -5px;
    visibility: hidden;
    font-size: 0;
    display: none;
}

.te-main-menu ul li a:hover {
    color: var(--theme-color);
}

.te-main-menu ul li a:hover:after {
    color: var(--theme-color);
}

.te-main-menu ul li:hover>ul {
    visibility: visible;
    transition: all 300ms ease;
    opacity: 1;
    transform: scaleY(1);
}

.te-main-menu ul li ul li:hover ul {
    visibility: visible;
    top: -2px;
}

.te-main-menu ul ul {
    background-color: #ffffff;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    visibility: hidden;
    z-index: 99999;
    transition: all 300ms ease;
    border-top: 2px solid var(--theme-color);
    box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
    transform-origin: top;
    transform: scaleY(0);
    max-height: 400px;
    overflow: auto;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.te-main-menu ul ul li {
    float: none;
    width: 210px;
}

.te-main-menu ul ul li ul {
    visibility: hidden;
}

.te-main-menu ul ul li i {
    float: right;
}

.te-main-menu ul ul li a {
    line-height: initial;
    padding: 10px 20px;
    color: #151422;
    border-bottom: 1px solid #E3E3E3;
    margin-left: 0;
    font-size: 16px;
}

.te-main-menu ul ul li a:hover {
    background-color: var(--theme-color);
    color: #ffffff;
}

.te-main-menu ul ul li a:hover:after {
    color: #ffffff;
}

.te-main-menu ul ul li:last-child a {
    border-bottom: 0px;
}

.te-main-menu ul ul ul {
    left: 100%;
    transition: all 0.3s ease 0s;
    opacity: 0;
    border-top: 0px;
    border-top: 2px solid var(--theme-color);
}

.te-animation {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.te-slideUpIn {
    -webkit-animation-name: slideUpIn;
    animation-name: slideUpIn;
}

.te-header-btn {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
    gap: 20px;
}

.te-header-btn .te-icon {
    width: 72px;
    background-color: var(--theme-color);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.5s ease-out;
}

.te-header-btn .te-icon:hover {
    background-color: var(--theme-color);
    color: #151422;
    transition: all 0.5s ease-out;
}

@media only screen and (max-width: 1399px) {
    .te-header-btn {
        display: none;
    }
}

.te-header-btn .te-cta-btn {
    display: inline-flex;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    gap: 0;
    flex-shrink: 0;
    flex-direction: column;
}

.te-header-btn .te-cta-btn span {
    color: #ffffff;
    font-size: 16px;
}

.te-header-btn .te-cta-btn a {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.te-header-btn .te-cta-btn a i {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 900;
    margin-right: 10px;
}

.te-header-btn .te-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 0.6px;
    color: #ffffff;
    border: 1px solid var(--theme-color);
    padding: 19px 27px;
    transition: all 0.5s ease-out;
    flex-shrink: 0;
    border-radius: 50px;
}

.te-header-btn .te-quote-btn:hover {
    background-color: var(--theme-color);
    color: #ffffff;
    transition: all 0.5s ease-out;
}

.te-header-btn .te-search-btn {
    color: #ffffff;
    font-size: 18px;
}

.te-search-form-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    z-index: 999;
    visibility: hidden;
    transition: all 0.5s ease-out;
}

.te-search-form-wrapper.te-active {
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease-out;
}

.te-search-form-wrapper .te-search-form-inner {
    width: 768px;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.te-search-form-wrapper .te-search-form-inner .te-search-content-filed {
    display: flex;
    align-items: center;
    gap: 30px;
}

.te-search-form-wrapper .te-search-form-inner .te-search-content-filed .te-search-close {
    cursor: pointer;
    font-size: 30px;
    color: #ffffff;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form {
    background: #FFFFFF;
    box-shadow: 0px 30px 70px rgba(208, 225, 242, 0.3);
    border-radius: 5px;
    padding: 15px 30px;
    flex: 1;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input {
    display: flex;
    align-items: center;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input .te-search-icon {
    display: flex;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form .te-search-form-input button.te-submit-search-btn {
    padding: 15px 24px !important;
}

.te-search-form-wrapper .te-search-form-inner .te-search-form input[type="search"] {
    margin-top: 0 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 12px !important;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .header-area.style-1 .te-header-menu-area.te-sticky-header {
        position: unset;
    }
}

.header-area.style-1 .te-header-btn .te-quote-btn {
    background-color: var(--theme-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.style-1 .te-header-menu-area .te-logo .te-standard-logo {
        display: none;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .header-area.style-1 .te-header-menu-area .te-logo .te-standard-logo {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.style-1 .te-header-menu-area .te-logo .te-sticky-logo {
        display: block;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .header-area.style-1 .te-header-menu-area .te-logo .te-sticky-logo {
        display: block;
    }
}

.header-area.style-2 .te-header-menu-area.te-sticky-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-area.style-2 .te-sticky_menu .te-header-menu-wrapper .te-logo-wrapper {
    display: block;
    width: unset;
}

.header-area.style-2 .te-sticky_menu .te-header-btn .te-cta-btn {
    display: none;
}

.header-area.style-2 .te-sticky_menu .te-menu {
    margin-left: auto;
}

.header-area.style-2 .te-sticky_menu .te-mobile-menu-bar a i {
    color: #151422;
}

.header-area.style-2 .header-area-wrapper {
    display: flex;
    width: 100%;
    position: relative;
}

.header-area.style-2 .header-area-wrapper .header-inner {
    width: 100%;
}

.header-area.style-2 .header-area-wrapper .logo-wrapper {
    padding: 0 40px;
    position: absolute;
    z-index: 9;
    top: 0;
    height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.style-2 .header-area-wrapper .logo-wrapper {
        display: none !important;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .header-area.style-2 .header-area-wrapper .logo-wrapper {
        display: none !important;
    }
}

.header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
    display: none;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
        display: block;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .header-area.style-2 .te-header-menu-wrapper .te-logo-wrapper {
        display: block;
    }
}

@media (max-width: 991px) {
    .header-area.style-2 .te-mobile-menu-bar a i {
        color: #ffffff;
    }
}

.header-area.style-3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 30px 0;
}

.header-area.style-3 .te-header-menu-row {
    background-color: #ffffff;
}

.header-area.style-3 .te-header-menu-area .te-logo {
    padding-left: 20px;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu {
    padding-left: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-menu-container {
    padding: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-menu-row {
    padding: 0;
    background-color: transparent;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-btn {
    padding-right: 0;
}

.header-area.style-3 .te-header-menu-area.te-sticky_menu .te-header-btn .te-quote-btn {
    color: #ffffff;
}

.header-area.style-3 .te-header-btn {
    padding-right: 10px;
}

.header-area.style-3 .te-header-btn .te-quote-btn {
    color: #182B54;
}

.header-area.style-3 .te-main-menu ul li a {
    color: #151422;
}

.header-area.style-3 .te-main-menu ul li ul li a:hover {
    color: #ffffff;
}

.header-area.style-4 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area.style-4 .te-menu {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area.style-4 .topbar-two-wrapper {
        padding-left: 240px !important;
    }
}

.header-area.style-4 .te-sticky_menu {
    padding-left: 0 !important;
}

@media (max-width: 991px) {
    .header-area.style-4 .te-sticky_menu {
        padding-top: 0 !important;
    }
}

.header-area.style-4 .te-sticky_menu .te-header-menu-wrapper .te-logo-wrapper {
    display: block;
    width: unset;
}

.header-area.style-4 .te-sticky_menu .te-menu {
    margin-left: auto;
}

.header-area.style-4 .te-header-menu-wrapper .te-logo-wrapper {
    display: none;
}

.header-area.style-4 .header-area-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    background-color: #ffffff;
}

.header-area.style-4 .header-area-wrapper .header-inner {
    width: 100%;
}

.header-area.style-4 .header-area-wrapper .logo-wrapper {
    background-color: var(--theme-color);
    padding: 0 40px;
    position: absolute;
    z-index: 9;
    top: 0;
    height: 100%;
}

@media (max-width: 991px) {
    .header-area.style-4 .header-area-wrapper .logo-wrapper {
        position: unset;
        height: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area.style-4 .header-area-wrapper .logo-wrapper {
        height: 90px;
    }
}

.header-area.style-4 .te-header-menu-area,
.header-area.style-4 .topbar-two-wrapper {
    padding-left: 240px;
}

@media (max-width: 991px) {
    .header-area.style-4 .te-header-menu-area,
    .header-area.style-4 .topbar-two-wrapper {
        padding-left: 0;
        padding-top: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area.style-4 .te-header-menu-area,
    .header-area.style-4 .topbar-two-wrapper {
        padding-left: 0;
    }
}

.header-area.style-4 .te-main-menu ul li a {
    color: #151422;
    padding: 30px 17px;
}

.header-area.style-4 .te-main-menu ul li ul li a {
    padding: 10px 20px;
}

.header-area.style-4 .te-main-menu ul li ul li a:hover {
    color: #ffffff;
}

.header-area.style-4 .te-header-btn .social-profile {
    display: flex;
    gap: 25px;
    padding-right: 30px;
}

.header-area.style-4 .te-header-btn .social-profile a {
    color: #757474;
}

.header-area.style-4 .te-header-btn .social-profile a:hover {
    color: var(--theme-color);
}

.header-top-two {
    background-color: #182B54;
    padding: 15px 0;
}

@media (max-width: 991px) {
    .header-top-two {
        display: none;
    }
}

.header-top-two .topbar-two-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px 20px;
}

.header-top-two .topbar-two-wrapper .topbar-two-contact {
    display: flex;
    gap: 10px 40px;
}

.header-top-two .topbar-two-wrapper .single-contact {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    position: relative;
}

.header-top-two .topbar-two-wrapper .single-contact:first-child:before {
    display: none;
}

.header-top-two .topbar-two-wrapper .single-contact:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.header-top-two .topbar-two-wrapper .single-contact .contact-icon {
    font-size: 40px;
    color: var(--theme-color);
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text {
    display: flex;
    flex-direction: column;
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text .contact-label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    color: #ffffff;
}

.header-top-two .topbar-two-wrapper .single-contact .contact-text .contact-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    letter-spacing: -0.8px;
    font-family: "Jost", sans-serif;
    color: #ffffff;
}

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #151422;
    border-top: 1px solid #dfe2e9;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 600;
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
    border: 1px solid #dfe2e9 !important;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #151422;
    line-height: 30px;
    top: 0;
    font-weight: 400;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li.dropdown-opened a.mean-expand.mean-clicked {
    background-color: var(--theme-color);
    border-color: var(--theme-color) !important;
}

.mean-container .mean-nav ul li.dropdown-opened a.mean-expand.mean-clicked i {
    color: #ffffff;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
    color: #ffffff;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    color: #ffffff;
}

.te-mobile-menu-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.te-mobile-menu-bar a i {
    color: #151422;
    font-size: 22px;
}

.te-menu-sidebar-area {
    position: fixed;
    right: -485px;
    top: 0;
    width: 465px;
    height: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 9999;
}

@media (max-width: 560px) {
    .te-menu-sidebar-area {
        width: 350px;
    }
}

.te-menu-sidebar-area .te-menu-sidebar-logo {
    display: inline-block;
    width: 180px;
}

.te-menu-sidebar-area .te-menu-sidebar-wrapper {
    position: relative;
    padding: 40px;
}

.te-menu-sidebar-area.active {
    right: 0;
}

.te-menu-sidebar-area .te-menu-sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
}

.te-menu-sidebar-area .te-menu-sidebar-close .te-menu-sidebar-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 55px;
    width: 55px;
    background-color: var(--theme-color);
    color: #ffffff;
}

.te-menu-sidebar-area .te-menu-sidebar-close .te-menu-sidebar-close-btn:hover {
    background-color: var(--theme-color);
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-menu-sidebar-title {
    margin-bottom: 5px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info {
    display: flex;
    align-items: center;
    gap: 0 24px;
    padding: 6px 0;
    flex-wrap: wrap;
    flex-direction: column;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #151422;
    font-size: 16px;
    font-weight: 400;
    font-family: "Kumbh Sans", sans-serif;
    width: 100%;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span.te-contact-info-item {
    gap: 0 10px !important;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #151422;
    font-size: 16px;
    font-weight: 400;
    font-family: "Kumbh Sans", sans-serif;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-header-contact-info span a:hover {
    color: var(--theme-color);
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile {
    margin-top: 20px;
    border-top: 1px solid #dfe2e9;
    width: 100%;
    padding-top: 20px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile a {
    color: #151422;
    font-size: 22px;
}

.te-menu-sidebar-area .te-menu-sidebar-content .te-menu-sidebar-single-widget .te-social-profile a:hover {
    color: var(--theme-color);
}

.te-body-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
}

.te-body-overlay.active {
    opacity: 1;
    visibility: visible;
}

.te-body-overlay:hover {
    cursor: pointer;
}

.portfolio-slider-card {
    position: relative;
    transition: all 0.5s ease-out;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.portfolio-slider-card.style-1 {
    top: 0;
    box-shadow: none;
    overflow: hidden;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.portfolio-slider-card.style-1 .content {
    background-color: #F4F5FA;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-out;
}

.portfolio-slider-card.style-1:hover {
    top: -15px;
}

.portfolio-slider-card.style-1:hover .content {
    visibility: visible;
    opacity: 1;
    bottom: 0;
    transition: all 0.5s ease-out;
}

.portfolio-slider-card .image {
    position: relative;
    height: 400px;
}

.portfolio-slider-card .image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.portfolio-slider-card .content {
    background-color: #ffffff;
    padding: 15px 20px;
    width: 100%;
}

.portfolio-slider-card .content .title {
    font-family: "Jost", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 37.8px;
    letter-spacing: -0.54px;
}

.portfolio-slider-card .content .sub-title {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: var(--theme-color);
}

.portfolio-slider-wrapper .slick-list {
    margin: 0 -15px;
    overflow: visible;
}

.portfolio-slider-wrapper .slick-list .slick-slide {
    margin: 0 15px;
    transition: all 0.5s ease-out;
}

.portfolio-slider-wrapper .slick-arrow {
    display: none !important;
}

.portfolio-slider-card.style-2 {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.portfolio-slider-card.style-2 .image {
    height: 353px;
}

.portfolio-slider-card.style-2 .content {
    background-color: #ffffff;
}

.slider-area {
    overflow: hidden;
    position: relative;
}

.slider-area.style-1 .te-single-slider .te-slider-shape-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.slider-area.style-1 .te-single-slider .te-slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.slider-area.style-1 .te-single-slider .te-slider-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(0.8);
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-title,
.slider-area .te-slider-wrapper .slick-active .te-slider-title,
.slider-area .te-slider-wrapper .slick-active .te-slider-short-desc,
.slider-area .te-slider-wrapper .slick-active .te-slider-btn-wrapper {
    -webkit-animation-name: MovefadeUp;
    animation-name: MovefadeUp;
    -webkit-animation-fill-mode: both;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-title {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-title {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-desc {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-btn-wrapper {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

.slider-area .te-slider-wrapper .slider-arrow-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #151422;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    padding: 0;
    right: 12px;
    border-radius: 50px;
    margin-right: calc((100% - 1320px) / 2);
    z-index: 9;
    transition: all 0.5s ease-out;
}

/*.button_form{
    margin-left: 40px;
}*/

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .slider-area .te-slider-wrapper .slider-arrow-btn {
        margin-right: calc((100% - 1140px) / 2);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .te-slider-wrapper .slider-arrow-btn {
        margin-right: calc((100% - 960px) / 2);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .te-slider-wrapper .slider-arrow-btn {
        margin-right: calc((100% - 720px) / 2);
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-slider-wrapper .slider-arrow-btn {
        margin: 0 auto;
    }
}

.slider-area .te-slider-wrapper .slider-arrow-btn.prev-btn {
    margin-top: -55px;
}

.slider-area .te-slider-wrapper .slider-arrow-btn:hover {
    background-color: var(--theme-color);
    color: #ffffff;
}

.slider-area .te-slider-wrapper .slick-dots {
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 46px;
    transform: translateY(-50%);
    z-index: 2;
    flex-direction: column;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-slider-wrapper .slick-dots {
        display: none !important;
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-right: 30px;
        bottom: 70px;
        top: unset;
        left: unset;
        right: unset;
        transform: none;
    }
}

.slider-area .te-slider-wrapper .slick-dots li {
    display: inline-block;
    line-height: 0;
    outline: 1px solid transparent;
    border: 4px solid transparent;
    border-radius: 50px;
    transition: all 0.5s ease-out;
}

.slider-area .te-slider-wrapper .slick-dots li button {
    font-size: 2px;
    text-indent: -9999px;
    padding: 0;
    width: 10px;
    height: 10px;
    background-color: var(--theme-color);
    border-radius: 50px;
    position: relative;
    transition: all 0.5s ease-out;
}

.slider-area .te-slider-wrapper .slick-dots li button:hover {
    background-color: var(--theme-color);
    transition: all 0.5s ease-out;
}

.slider-area .te-slider-wrapper .slick-dots li.slick-active {
    transition: all 0.5s ease-out;
    outline: 1px solid var(--theme-color);
}

.slider-area .te-slider-wrapper .slick-dots li.slick-active button {
    transition: all 0.5s ease-out;
}

.slider-area .te-single-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: #182B54;
    height: 550px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider {
        background-image: none !important;
        height: 365px;
    }
}

.slider-area .te-single-slider .te-slider-container {
    display: flex;
    padding: 130px 0 130px
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider .te-slider-container {
        flex-direction: column-reverse;
        padding: 80px 0 120px;
        text-align: center;
    }
    .slider-area.style-1 .te-single-slider .te-slider-img img {
        filter: brightness(0.8);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .te-single-slider .te-slider-container {
        padding: 100px 0;
        align-items: center;
    }
}

.slider-area .te-single-slider .te-slider-container .te-slider-column {
    width: 80%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider .te-slider-container .te-slider-column {
        width: 100%;
    }
}

.slider-area .te-single-slider .te-slider-content-wrapper {
    position: relative;
    z-index: 99;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-short-title {
    font-family: "Niconne", cursive;
    font-size: 31px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #fff;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-title {
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-size: 75px;
    font-weight: 600;
    line-height: 85px;
    letter-spacing: -3px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-title {
        font-size: 60px;
        line-height: 1;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-title {
        font-size: 48px;
        line-height: 1;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-title {
        font-size: 42px;
        line-height: 1;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-title {
        font-size: 38px;
        line-height: 1;
        margin-bottom: 20px;
    }
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-short-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-short-desc {
        font-size: 18px;
        line-height: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-short-desc {
        font-size: 18px;
        line-height: 32px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-short-desc {
        font-size: 18px;
        line-height: 32px;
    }
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper {
    padding-top: 52px;
    display: flex;
    align-items: center;
    gap: 27px;
    flex-wrap: wrap-reverse;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper {
        padding-top: 30px;
        justify-content: center;
    }
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-theme-btn {
    flex-shrink: 0;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-call-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-call-btn .te-icon {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    flex-shrink: 0;
    border: 1px solid var(--theme-color);
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ripple 4s infinite;
    box-shadow: 0 0 0 0 var(--theme-color);
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-call-btn .te-content {
    display: flex;
    flex-direction: column;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-call-btn .te-content .te-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #335371;
}

.slider-area .te-single-slider .te-slider-content-wrapper .te-slider-content .te-slider-btn-wrapper .te-call-btn .te-content .te-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #ffffff;
}

.slider-area .te-single-slider .te-slider-image {
    position: relative;
    z-index: 2;
    margin-top: inherit;
    animation: MoveLeftRight 2s linear infinite alternate;
    text-align: right;
}

.slider-area .te-single-slider .te-slider-image .slider-feature {
    display: inline-flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: var(--theme-color);
    border-radius: 5px;
}

.slider-area .te-single-slider .te-slider-image .slider-feature .single-slider-feature {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.slider-area .te-single-slider .te-slider-image .slider-feature .single-slider-feature .slider-feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slider-area .te-single-slider .te-slider-image .slider-feature .single-slider-feature .slider-feature-content .title {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 900;
    line-height: 55px;
}

.slider-area .te-single-slider .te-slider-image .slider-feature .single-slider-feature .slider-feature-content .sub-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 0;
}

.slider-area .te-single-slider .te-slider-image .slider-feature .single-slider-feature .slider-feature-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(21, 20, 34, 0.1);
    justify-content: center;
}

.slider-area.style-2 .te-single-slider .te-slider-img {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 9;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area.style-2 .te-single-slider .te-slider-img {
        display: none;
    }
}

.slider-area.style-2 .te-single-slider .te-slider-img:before {
    position: absolute;
    left: -20px;
    height: 100%;
    width: 20px;
    top: 190px;
    background-color: var(--theme-color);
    content: "";
}

.slider-area.style-2 .te-single-slider .te-slider-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding-top: 106px;
}

.slider-area.style-2 .te-single-slider .te-slider-container {
    padding-top: 236px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area.style-2 .te-single-slider .te-slider-container {
        padding-top: 200px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area.style-2 .te-single-slider .te-slider-container {
        padding-top: 100px;
    }
}

.slider-area.style-2 .te-single-slider .te-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #182B54;
    opacity: 0.95;
}

.slider-area.style-3 {
    overflow: visible;
}

.slider-area.style-3 .te-single-slider {
    background-color: rgba(24, 43, 84, 0.03);
    overflow: visible;
}

.slider-area.style-3 .te-single-slider .te-slider-title {
    flex-shrink: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area.style-3 .te-single-slider .te-slider-title {
        font-size: 48px;
        line-height: initial;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area.style-3 .te-single-slider .te-slider-title {
        font-size: 38px;
        line-height: initial;
    }
}

.slider-area.style-3 .te-single-slider .te-slider-content .te-slider-short-desc {
    color: #182B54;
}

.slider-area.style-3 .te-single-slider .te-slider-content-wrapper {
    display: flex;
    gap: 30px;
}

@media (max-width: 1199px) {
    .slider-area.style-3 .te-single-slider .te-slider-content-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}

.slider-area.style-3 .te-single-slider .te-slider-container {
    flex-direction: column;
    padding-top: 165px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area.style-3 .te-single-slider .te-slider-container {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area.style-3 .te-single-slider .te-slider-container {
        padding-bottom: 80px;
    }
}

.slider-area.style-3 .te-single-slider .te-slider-container .te-slider-column {
    width: 100%;
}

.slider-area.style-4 .te-single-slider .te-slider-container {
    padding: 290px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area.style-4 .te-single-slider .te-slider-container {
        padding-top: 150px;
        padding-bottom: 200px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .slider-area.style-4 .te-single-slider .te-slider-container {
        padding-top: 120px;
        padding-bottom: 250px;
    }
}

.slider-area.style-4 .te-single-slider .te-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(408.47% 100% at 0% 50.05%, rgba(24, 43, 84, 0.96) 0%, rgba(24, 43, 84, 0) 100%);
}

.background-gray-light {
    background-color: #262760;
}

.mini-content {
    position: absolute;
    bottom: 11px;
    background: #fff;
    width: 90%;
    padding: 15px 40px 15px 15px;
    border-radius: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.mini-content h4 {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
}

.mini-content .icon_c {
    width: 40px;
    height: 40px;
    background-color: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    float: right;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
}

ul.custom-flex {
    list-style: none;
    padding: 0;
    display: flex;
    margin-bottom: 0;
    padding: 3px 0;
    align-items: center;
    flex-wrap: wrap;
}

ul.custom-flex li a i {
    color: var(--theme-color);
}

.header_top .rightside ul {
    justify-content: flex-end;
}

.header_top .leftside ul>li>a {
    margin: 3px 10px 3px 0px;
    line-height: 30px;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    color: #fff;
    border-radius: 50%;
}

.header_top .leftside ul>li:hover>a {
    background-color: #111111;
    border-color: #111111;
    color: #fff;
}

.custom_navs {
    padding: 5px 5px 5px 30px;
    background: #fff;
    border-radius: 57px;
}

.mobile_top_bar {
    background-color: #fff;
    padding: 4px;
}

.mobile_top_bar .button {
    padding: 5px 14px;
    border: 1px solid #d1d1d1;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    gap: 8px;
    a {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}

.mobile_top_bar .button.whatsapp_button {
    background-color: #25d366;
}

.mobile_top_bar .button:hover {
    background-color: #262760;
}

@media(max-width: 768px) {
    .header_top {
        display: none;
    }
    .custom_navs {
        padding: 5px 10px 5px 10px;
        background: #fff;
        border-radius: 57px;
        align-items: flex-end !important;
        justify-content: space-around;
        width: max-content;
        margin-left: auto;
    }
}

.slider-area {
    overflow: hidden;
    position: relative;
}

.slider-area.style-1 .te-single-slider .te-slider-shape-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.slider-area.style-1 .te-single-slider .te-slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.slider-area.style-1 .te-single-slider .te-slider-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: brightness(0.8);
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-title,
.slider-area .te-slider-wrapper .slick-active .te-slider-title,
.slider-area .te-slider-wrapper .slick-active .te-slider-short-desc,
.slider-area .te-slider-wrapper .slick-active .te-slider-btn-wrapper {
    -webkit-animation-name: MovefadeUp;
    animation-name: MovefadeUp;
    -webkit-animation-fill-mode: both;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-title {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-title {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-short-desc {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.slider-area .te-slider-wrapper .slick-active .te-slider-btn-wrapper {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}

.slider-area .te-slider-wrapper .slider-arrow-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #151422;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    padding: 0;
    right: 12px;
    border-radius: 50px;
    margin-right: calc((100% - 1320px) / 2);
    z-index: 9;
    transition: all 0.5s ease-out;
}

.te-main-menu ul li {
    display: inline-block;
    padding: 0;
    position: relative;
}

.te-sticky_menu .header_top .leftside ul>li>a {
    border-color: #182B54;
}

.te-sticky_menu .header_top .leftside ul>li>a:hover {
    color: #fff;
}

.te-sticky_menu .custom_navs {
    padding: 2px 2px 2px 30px;
    border: 3px solid var(--theme-color);
    margin-bottom: 2px;
}

.vs-blog {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.5s ease;
    border: 1px solid var(--theme-color);
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.4);
}

.vs-blog:hover {
    box-shadow: none;
}

.vs-blog .blog-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 50% 0;
}

.vs-blog .blog-img a {
    display: block;
    width: 100%;
}

.vs-blog .blog-img .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.vs-blog .blog-img .play-btn>i {
    font-size: 48px;
    color: var(--theme-color);
    background-color: var(--theme-color);
}

.vs-blog .blog-img .play-btn::before,
.vs-blog .blog-img .play-btn::after {
    background-color: var(--theme-color);
}

.vs-blog .blog-img .play-btn:hover i {
    color: #fff;
}

.vs-blog .blog-img .play-btn:hover::before,
.vs-blog .blog-img .play-btn:hover::after {
    background-color: var(--theme-color2);
}

.vs-blog .blog-img .slick-prev.slick-arrow {
    left: 5%;
}

.vs-blog .blog-img .slick-next.slick-arrow {
    left: auto;
    right: 5%;
}

.vs-blog .blog-img__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1) rotate(0deg);
    transition: all 0.6s ease-in-out;
}

.vs-blog .blog-img::before,
.vs-blog .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    background-color: var(--title-color);
    right: 0;
    left: 0;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.vs-blog .blog-img::after {
    top: 0;
    opacity: 0.35;
}

.vs-blog .blog-img::before {
    bottom: 0;
    opacity: 0.35;
}

.vs-blog .blog-date {
    background-color: var(--theme-color);
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border-radius: 6px;
    padding: 5px 25px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    /* transform: translateX(-50%); */
    max-width: max-content;
    width: 100%;
    z-index: 2;
    transition: all 0.5s ease;
}

.vs-blog .blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1;
    margin-bottom: 12px;
    color: #000;
}

.vs-blog .blog-title>a:hover {
    color: var(--theme-color2);
}

.vs-blog .blog-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    transition: all 0.5s ease;
}

@media (max-width: 1199px) {
    .vs-blog .blog-content {
        padding: 15px;
    }
}

.vs-blog .vs-btn {
    background-color: var(--theme-color);
    display: inline-block;
    padding: 8px 32px;
}

.vs-blog .vs-btn::after,
.vs-blog .vs-btn::before {
    background-color: var(--theme-color);
}

.te-theme-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 100px;
    background-color: var(--tz-prime-c);
}

.te-theme-btn:hover {
    background-color: var(--tz-title-color);
    color: #fff;
}

.cab-service-section {
    position: relative;
}

.cab-service-section .nav-tabs {
    border: 0;
    justify-content: center;
    gap: 35px;
}

.cab-service-section .nav-link {
    border: 1px solid var(--theme-color);
    box-shadow: 3px 3px 0px rgb(255, 62, 59, 0.8);
    border-radius: 10px;
    padding: 10px 33px;
    color: #3e3e3e;
    font-size: 20px;
    transition: 0.5s;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: 0.3s;
}
.cab-service-section .nav-link:hover{
    border: 1px solid var(--theme-color);
    box-shadow: -3px -3px 0px rgb(255, 62, 59, 0.8);
}

.cab-service-section .nav-link.active {
    color: #ffffff;
    background-color: var(--theme-color);
    border-color: #fff;
}

.cabs_box {
    box-shadow: -8px 8px var(--theme-color), 4px -4px var(--theme-color);
    background: #f9f9f9;
    padding: 30px;
    position: relative;
    margin-top: 50px;
    border-radius: 15px;
    border: 1px solid transparent;
    h2 {
        font-size: 30px;
        color: #222;
        font-family: var(--accent-font);
        margin-bottom: 13px;
    }
    p.text-secondary {
        font-size: 20px;
        font-family: var(--accent-font);
        margin-bottom: 10px;
        color: #000;
        font-weight: 500;
    }
    p {
        font-family: var(--accent-font);
        font-size: 18px;
        strong {
            font-size: 20px;
        }
    }
}
.cabs_box:before{
    width: 1px;
    background-color: var(--theme-color);
    height: calc(100% + 3px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    position: absolute;
}
@media(max-width: 768px) {
    .tz-ser-feat-item {
        margin-bottom: 20px;
    }
    .cabs_box:before{
        display: none;
    }
    .tz-ser-feat-item:last-child {
        margin-bottom: 20px;
    }
    .te-sticky_menu .custom_navs {
        padding: 2px 10px 2px 10px;
    }
    .te-header-menu-area.te-sticky_menu {
        top: -45px;
    }
    .cab-service-section .nav-tabs {
        gap: 10px;
    }
    .cab-service-section .nav-link {
        border: 1px solid transparent;
        box-shadow: 0 0 5px #c3c3c3;
        border-radius: 10px;
        padding: 6px 19px;
        color: #3e3e3e;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -0.02em;
        transition: 0.3s;
    }
}

.th-header {
    position: relative;
    z-index: 41;
}

.th-header .icon-btn {
    border-radius: 99px;
}

.th-header .menu-area {
    position: relative;
    z-index: 2;
}

.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    -webkit-animation: stickyAni 0.4s ease-in-out;
    animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

@keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: var(--title-color);
}

.main-menu a:hover {
    color: var(--theme-color);
}

.main-menu>ul>li {
    margin: 0 15px;
}

.main-menu>ul>li>a {
    padding: 17px 0;
}

.main-menu>ul>li>a:hover {
    color: var(--theme-color);
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li:has(.sub-menu)>a:after,
.main-menu ul li:has(.mega-menu)>a:after,
.main-menu ul li.menu-item-has-children>a:after {
    content: "\f107";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    font-weight: 600;
    top: 0;
    font-size: 0.9em;
    color: var(--title-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.main-menu ul li:has(.sub-menu)>a:hover:after,
.main-menu ul li:has(.mega-menu)>a:hover:after,
.main-menu ul li.menu-item-has-children>a:hover:after {
    content: "\f106";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: var(--theme-color);
}

.main-menu ul li:last-child {
    margin-right: 0 !important;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1) translateX(0%);
    -ms-transform: scaleY(1) translateX(0%);
    transform: scaleY(1) translateX(0%);
    z-index: 9;
}

.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 230px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 4px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 10px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border-bottom: 3px solid var(--theme-color);
    max-height: 400px;
    overflow: auto;
    width: 300px;
}

.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 30px;
}

.main-menu ul.sub-menu {
    padding: 4px 13px 3px 8px;
    left: -27px;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 9px;
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f105";
    float: right;
    top: 1px;
    display: inline-block;
}

.main-menu ul.sub-menu li:has(.sub-menu)>a:hover:after,
.main-menu ul.sub-menu li:has(.mega-menu)>a:hover:after,
.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
    content: "\f105";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
    line-height: 1.1;
    padding: 8px;
}

.main-menu ul.sub-menu li a:before {
    content: "\f0a4";
    position: absolute;
    top: 8px;
    left: 10px;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    color: var(--theme-color);
    font-weight: 900;
    opacity: 0;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
    padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
}

.main-menu .mega-menu-wrap {
    position: static;
}

@media (max-width: 1500px) {
    .main-menu>ul>li {
        margin: 0 13px;
    }
}

.menu-style1>ul>li {
    margin: 0 14px;
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .menu-style1>ul>li {
        margin: 0 10px;
    }
}

.menu-style1>ul>li>a {
    padding: 17px 0;
    color: var(--white-color);
}

.menu-style1>ul>li>a:hover {
    color: var(--theme-color2);
}

.menu-style1 ul li:has(.sub-menu)>a:after,
.menu-style1 ul li:has(.mega-menu)>a:after,
.menu-style1 ul li.menu-item-has-children>a:after {
    color: var(--white-color);
}

.simple-icon {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 24px;
    position: relative;
}

.simple-icon:has(.badge) {
    padding-right: 8px;
}

.simple-icon .badge {
    top: -8px;
    right: 0;
    font-size: 12px;
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.header-button .icon-btn .badge {
    font-size: 12px;
    top: 0;
    right: 0;
    background: var(--theme-color2);
    color: var(--title-color);
}

.header-button .icon-btn:hover .badge {
    background: var(--theme-color);
    color: var(--white-color);
}

.social-links .social-title {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    margin: 0 10px 0 0;
    color: var(--body-color);
}

.social-links a {
    font-size: 14px;
    display: inline-block;
    color: var(--body-color);
    margin: 0 15px 0 0;
}

.social-links a:last-child {
    margin-right: 0 !important;
}

.social-links a:hover {
    color: var(--theme-color);
}

.header-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-logo .site_name span {
    font-size: inherit;
    color: var(--theme-color);
}

@media(max-width:992px) {
    .header-logo .site_name span {
        color: #fff;
    }
}

.header-logo a:hover {
    color: var(--white-color);
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--body-font);
}

.header-links li:not(:last-child) {
    margin: 0 55px 0 0;
}

.header-links li:not(:last-child):after {
    content: '';
    height: 16px;
    width: 1px;
    background-color: var(--white-color);
    position: absolute;
    top: 0px;
    right: -30px;
    margin-top: 5px;
}

.header-links li>i {
    margin-right: 11px;
    color: var(--white-color);
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
    color: var(--light-color);
}

.header-links a:hover {
    color: var(--white-color);
}

.header-links b,
.header-links strong {
    font-weight: 600;
    margin-right: 6px;
}

.header-links.social-links li:not(:last-child) {
    margin: 0 35px 0 0;
}

.header-links.social-links li:not(:last-child):after {
    right: -20px;
}

.header-notice {
    margin: 0;
}

.header-top {
    padding: 6px 0;
    background-color: var(--black-color2);
    border-bottom: 1px solid var(--th-border-color6);
}

.dropdown-link {
    position: relative;
}

.dropdown-link>a {
    color: var(--body-color);
}

.dropdown-link>a i {
    color: var(--theme-color);
    margin-right: 5px;
}

.dropdown-toggle::after {
    content: "\f078";
    border: none;
    font-family: var(--icon-font);
    vertical-align: middle;
    font-weight: 400;
    margin-left: 6px;
    margin-top: -1px;
}

.dropdown-menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    top: calc(100% + 6px) !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    padding: 8px 20px !important;
    text-align: center;
    border-color: var(--th-border-color);
}

.dropdown-menu li {
    padding-right: 0;
    margin-right: 0;
}

.dropdown-menu li:after {
    display: none;
}

.dropdown-menu li a {
    display: block;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a {
    color: var(--title-color) !important;
}

.dropdown-menu a:hover {
    color: var(--theme-color) !important;
}

.dropdown-menu:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    background-color: var(--white-color);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid var(--th-border-color);
    border-left: 1px solid var(--th-border-color);
}

.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    gap: 15px;
}

.header-icons .icon-btn {
    font-size: 18px;
}

.header-icons .icon-btn .badge {
    font-size: 12px;
    top: 0;
    right: 0;
}

.header-icons .icon-btn:hover .badge {
    background-color: var(--title-color);
}

.header-search {
    position: relative;
}

.header-search input {
    height: 46px;
    border: 1px solid var(--th-border-color);
    width: 500px;
    max-width: 100%;
    /* Large devices */
}

.header-search input:focus {
    border-color: var(--theme-color);
}

@media (max-width: 1199px) {
    .header-search input {
        max-width: 350px;
    }
}

.header-search button {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    width: 50px;
    height: 46px;
    line-height: 45px;
    text-align: center;
    padding: 0;
    border-radius: 0 99px 99px 0;
}

.menu-expand {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--theme-color2);
    padding: 17px 25px;
    width: 100%;
    /* Medium Large devices */
}

@media (max-width: 1299px) {
    .menu-expand {
        font-size: 15px;
    }
}

.menu-expand i {
    margin-right: 15px;
}

.menu-expand:hover {
    color: var(--white-color);
}

.info-card-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    /* Large devices */
}

.info-card-wrap .info-card {
    border-left: 2px solid var(--th-border-color);
    padding-left: 40px;
}

.info-card-wrap .info-card:first-child {
    border-left: 0;
    padding-left: 0;
}

@media (max-width: 1199px) {
    .info-card-wrap {
        gap: 30px;
    }
    .info-card-wrap .info-card {
        border: 0;
        padding-left: 0;
    }
}

.info-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* Extra large devices */
    /* Medium devices */
}

.info-card:first-child {
    border-left: 0;
    padding-left: 0;
}

.info-card .box-icon {
    position: relative;
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    font-size: 10px;
    color: var(--white-color);
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    background-color: var(--theme-color);
    border-radius: 50%;
}

.info-card .box-icon .bg-shape2,
.info-card .box-icon .bg-shape1 {
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    z-index: -1;
}

.info-card .box-icon .bg-shape2 {
    background: var(--theme-color2);
    z-index: -2;
    inset: 2px 0 -2px 0;
}

.info-card .box-text {
    margin: -0.3em 0 0 0;
    font-size: 14px;
    color: var(--body-color);
}

.th-widget-about .about-text {
    margin-bottom: 32px;
    margin-top: -0.5em;
    margin-top: 20px;
    color: #fff;
}

.th-widget-about {
    max-width: 315px;
}

.info-card .box-title {
    margin: 0 0 -0.2em 0;
    font-size: 24px;
    font-weight: 700;
}

header .info-card .box-title {
    font-size: 17px;
    font-weight: 500;
    text-transform: lowercase;
}

@media (max-width: 1500px) {
    .info-card .box-title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .info-card .box-title {
        font-size: 18px;
    }
}

.info-card.style2 .box-icon {
    border-radius: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.info-card.style2 .box-title {
    font-size: 20px;
    font-weight: 600;
}

/* Header default ---------------------------------- */

.header-default {
    margin-bottom: -30px;
}

.header-default .menu-top {
    padding: 0px 0px;
}

.header-social-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick_contact {
    display: inline-block;
    margin-left: 10px;
}

.quick_btn {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 30px;
    border: 1px solid #d1d1d1;
    background-color: var(--theme-color2);
    transition: 0.4s;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin-block: 5px;
    animation: colorBlink 5s infinite;
}

@keyframes colorBlink {
    0% {
        background: red;
        border-color: red;
    }

    25% {
        background: orange;
        border-color: orange;
    }

    50% {
        background: green;
        border-color: green;
    }

    75% {
        background: blue;
        border-color: blue;
    }

    100% {
        background: red;
        border-color: red;
    }
}

.quick_btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.header-default .menu-top .header-notice {
    display: none;
    color: var(--title-color);
    /* Medium devices */
}

@media (max-width: 991px) {
    .header-default .menu-top .header-notice {
        display: block;
    }
}

.header-default .menu-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-default .menu-area .menu-area-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fill-available;
    justify-content: end;
    background: var(--theme-color);
    padding: 0 50px 0 30px;
    border-radius: 50px;
}

.header-default .menu-area .header-button {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header-default .menu-area .header-button .btn-theme {
    padding: 22.5px 48px;
}

.header-default .main-menu>ul>li>a {
    color: var(--white-color);
}

.header-default .main-menu>ul>li>a:hover {
    color: #fff;
}

.header-default .main-menu>ul>li:has(.sub-menu)>a:after,
.header-default .main-menu>ul>li:has(.mega-menu)>a:after,
.header-default .main-menu>ul>li.menu-item-has-children>a:after {
    color: var(--white-color);
}

.header-default .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-default .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-default .main-menu>ul>li.menu-item-has-children>a:hover:after {
    color: var(--theme-color2);
}

.header-default .header-notice {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    color: var(--white-color);
}

.header-default .header-button {
    gap: 0;
}

.header-default .sticky-wrapper.sticky {
    background: var(--white-color);
    padding: 15px 0;
}

@media (min-width: 1700px) {
    .header-default {
        --main-container: 1760px;
    }
}

/* Extra large devices */

@media (max-width: 1200px) {
    .header-social-col {
        display: none;
    }
    .header-default .header-notice {
        display: none;
    }
}

/* Medium devices */

@media (max-width: 991px) {
    .header-default {
        margin-bottom: -40px;
    }
    .header-default .menu-top {
        padding: 10px 0px;
    }
}

/* Small devices */

@media (max-width: 767px) {
    .header-default {
        margin: 0;
        padding: 15px 0;
    }
}

/* Extra small devices */

@media (max-width: 575px) {
    .header-default .header-logo h2 {
        font-size: 36px;
    }
    .header-default .header-logo img {
        max-width: 160px;
    }
}

/* Extra small devices */

@media (max-width: 375px) {
    .header-default .menu-area .menu-area-wrap {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    .header-default .header-button .icon-btn {
        --btn-size: 50px;
    }
}

@media (max-width: 360px) {
    .header-default .header-logo img {
        max-width: 130px;
    }
    .header-logo {
        padding-top: 20.5px;
        padding-bottom: 20.5px;
    }
    .header-logo img {
        max-width: 130px;
    }
}

/* Header 1 ---------------------------------- */

.header-layout1 .header-logo {
    margin-right: 80px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header-layout1 .menu-top {
    padding: 6px 0px;
}

.header-layout1 .menu-top .header-notice {
    display: none;
    color: var(--title-color);
    /* Medium devices */
}

@media (max-width: 991px) {
    .header-layout1 .menu-top .header-notice {
        display: block;
    }
}

.header-layout1 .menu-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-layout1 .menu-area .menu-area-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fill-available;
    background: var(--theme-color);
    padding: 0 18px 0 30px;
    border-radius: 50px;
}

.header-layout1 .menu-area .header-button {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header-layout1 .menu-area .header-button .btn-theme {
    padding: 22.5px 48px;
}

.header-layout1 .main-menu>ul>li>a {
    color: var(--white-color);
}

.header-layout1 .main-menu>ul>li>a:hover {
    color: var(--theme-color2);
}

.header-layout1 .main-menu>ul>li:has(.sub-menu)>a:after,
.header-layout1 .main-menu>ul>li:has(.mega-menu)>a:after,
.header-layout1 .main-menu>ul>li.menu-item-has-children>a:after {
    color: var(--white-color);
}

.header-layout1 .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-layout1 .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-layout1 .main-menu>ul>li.menu-item-has-children>a:hover:after {
    color: var(--theme-color2);
}

.header-layout1 .header-notice {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    color: var(--white-color);
}

.header-layout1 .header-button {
    gap: 0;
}

.header-layout1 .sticky-wrapper {
    padding: 10px 0;
}

.header-layout1 .sticky-wrapper.sticky {
    background: var(--white-color);
    padding: 10px 0;
}

@media (min-width: 1700px) {
    .header-layout1 {
        --main-container: 1760px;
    }
}

@media (max-width: 1699px) {
    .header-layout1 .header-notice {
        display: none;
    }
    .header-layout1 .menu-area .menu-area-wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 15px;
    }
}

/* Medium Large devices */

@media (max-width: 1299px) {
    .header-layout1 .header-logo {
        margin-right: 30px;
    }
}

/* Medium devices */

@media (max-width: 991px) {
    .header-layout1 .sticky-wrapper {
        padding: 0;
    }
    .header-layout1 .sticky-wrapper.sticky {
        padding: 0;
    }
}

/* Extra small devices */

@media (max-width: 575px) {
    .header-layout1 .header-logo {
        margin-right: 0;
    }
    .header-layout1 .header-logo h2 {
        font-size: 36px;
    }
    .header-layout1 .header-logo img {
        max-width: 160px;
    }
}

/* Extra small devices */

@media (max-width: 375px) {
    .header-layout1 .header-button .icon-btn {
        --btn-size: 50px;
    }
}

/* Header 2 ---------------------------------- */

.header-layout2 {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
}

.header-layout2 .header-logo {
    margin-right: 80px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header-layout2 .menu-top {
    padding: 6px 0px;
}

.header-layout2 .menu-top .header-notice {
    display: none;
    color: var(--title-color);
    /* Medium devices */
}

@media (max-width: 991px) {
    .header-layout2 .menu-top .header-notice {
        display: block;
    }
}

.header-layout2 .menu-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-layout2 .menu-area .menu-area-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fill-available;
    background: var(--theme-color);
    padding: 0 18px 0 30px;
    border-radius: 50px;
}

.header-layout2 .menu-area .header-button {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}

.header-layout2 .menu-area .header-button .btn-theme {
    padding: 22.5px 48px;
}

.header-layout2 .main-menu>ul>li>a {
    color: var(--white-color);
}

.header-layout2 .main-menu>ul>li>a:hover {
    color: var(--theme-color2);
}

.header-layout2 .main-menu>ul>li:has(.sub-menu)>a:after,
.header-layout2 .main-menu>ul>li:has(.mega-menu)>a:after,
.header-layout2 .main-menu>ul>li.menu-item-has-children>a:after {
    color: var(--white-color);
}

.header-layout2 .main-menu>ul>li:has(.sub-menu)>a:hover:after,
.header-layout2 .main-menu>ul>li:has(.mega-menu)>a:hover:after,
.header-layout2 .main-menu>ul>li.menu-item-has-children>a:hover:after {
    color: var(--theme-color2);
}

.header-layout2 .header-notice {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-left: auto;
    color: var(--white-color);
}

.header-layout2 .header-button {
    gap: 10px;
    margin-left: 10px;
}

.header-layout2 .sticky-wrapper {
    padding: 10px 0;
}

.header-layout2 .sticky-wrapper.sticky {
    background: var(--white-color);
    padding: 10px 0;
}

@media (min-width: 1700px) {
    .header-layout2 {
        --main-container: 1760px;
    }
}

@media (max-width: 1699px) {
    .header-layout2 .header-notice {
        display: none;
    }
    .header-layout2 .menu-area .menu-area-wrap {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 15px;
    }
}

/* Medium Large devices */

@media (max-width: 1299px) {
    .header-layout2 .header-logo {
        margin-right: 30px;
    }
    .header-layout2 .header-button {
        margin-left: 0;
        gap: 0;
    }
}

/* Medium devices */

@media (max-width: 991px) {
    .header-layout2 .sticky-wrapper {
        padding: 0;
    }
    .header-layout2 .sticky-wrapper.sticky {
        padding: 0;
    }
}

/* Extra small devices */

@media (max-width: 575px) {
    .header-layout2 .header-logo {
        margin-right: 0;
    }
    .header-layout2 .header-logo h2 {
        font-size: 36px;
    }
    .header-layout2 .header-logo img {
        max-width: 160px;
    }
}

/* Extra small devices */

@media (max-width: 375px) {
    .header-layout2 .header-button .icon-btn {
        --btn-size: 50px;
    }
}

.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
    padding-bottom: 10px;
    padding-top: 15px;
    display: block;
    text-align: center;
    background-color: var(--smoke-color2);
}

.th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
    display: block;
}

.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
}

.th-mobile-menu ul li a:before {
    content: '\f105';
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: 900;
    margin-right: 10px;
    display: inline-block;
}

.th-mobile-menu ul li.th-active>a {
    color: var(--theme-color);
}

.th-mobile-menu ul li.th-active>a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
    padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand:before {
    content: '\f067';
    font-family: var(--icon-font);
    font-weight: 900;
}

.th-mobile-menu ul .menu-item-has-children>a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
}

.th-mobile-menu ul .menu-item-has-children.th-active>a .th-mean-expand:before {
    content: '\f068';
}

.th-mobile-menu ul .menu-item-has-children.th-active>a:after {
    content: "\f068";
}

.th-mobile-menu>ul {
    padding: 0 40px;
}

.th-mobile-menu>ul>li:last-child {
    border-bottom: none;
}

.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 5px;
}

.th-menu-toggle:hover {
    background-color: var(--title-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
    margin-right: 10px;
}

.th-menu-toggle.style-text-white {
    color: var(--white-color);
}

@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 270px;
    }
    .th-mobile-menu>ul {
        padding: 0 20px;
    }
}
.th-social{
    padding: 2px 0;
}
.th-social a {
    display: inline-block;
    width: 29px;
    height: 29px;
    line-height: 28px;
    background-color: transparent;
    border: 1px solid var(--th-border-color);
    font-size: 11px;
    text-align: center;
    margin-right: 7px;
    border-radius: 50%;
    color: #fff;
}

.th-social a.facebook {
    background-color: #3b5998;
    /* Facebook blue */
    color: white;
}

.th-social a.twitter {
    background-color: #1da1f2;
    /* Twitter blue */
    color: white;
}

.th-social a.youtube {
    background-color: #ff0000;
    /* YouTube red */
    color: white;
}

.th-social a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    /* Instagram pink */
    color: white;
}

.th-social a:last-child {
    margin-right: 0;
}

.th-social a:hover {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white-color);
}

.th-social.color-theme a {
    color: var(--body-color);
    border-color: var(--theme-color);
}

.th-social.style2 a {
    background: var(--smoke-color);
    border: 0;
    color: var(--title-color);
    font-size: 18px;
}

.th-social.style2 a:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

.th-social.style3 a {
    --icon-size: 40px;
}

.th-social.style4 a {
    --icon-size: 40px;
    line-height: 42px;
    border-radius: 50%;
    background: var(--th-border-color);
    color: var(--title-color);
    border: 0;
}

.th-social.style4 a:hover {
    background: var(--theme-color2);
    color: var(--white-color);
}

.th-social.style5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.th-social.style5 a {
    background: var(--white-color);
    color: var(--body-color);
    margin: 0;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
    border: 0;
    line-height: 48px;
}

.th-social.style5 a:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

.th-social.style6 a {
    background: var(--smoke-color);
    border: 0;
    color: var(--theme-dark);
    font-size: 16px;
    --icon-size: 40px;
    line-height: 42px;
}

.th-social.style6 a:hover {
    background: var(--theme-color2);
    color: var(--white-color);
}

.courses-section .course-namecard{
  box-shadow:0px 3px 8px rgba(0, 0, 0, 0.161);
  border-radius: 10px;
  border-color: #d1d1d1;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 5px solid var(--theme-color);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: row;-webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.courses-section .course-namecard i{    
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--theme-color);
  border: 1px solid #282568;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #fff;
}
.courses-section .course-namecard:hover{
  border: 1px solid #d1d1d1;
}
.courses-section .course-namecard:hover i{
  box-shadow: none;
}
.tour_box{
    position: relative;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 5px 5px 6px rgba(0,0,0,0.4);
    border: 2px solid #000;
    margin-bottom: 18px;
    background-color: #fff;
}
.bg-light .tour_box{
    background-color: #fff9f9;
}
.tour_inner{
    display: flex;
    flex-wrap: wrap;
}
.tour_inner h3{
    font-size: 23px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.tour_inner p{
    font-size: 15px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.tour_img{
    width: 45%;
    border-radius: 15px;
    overflow: hidden;
}
.tour_img img{
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.tour_cont{
    width: 55%;
    padding-left: 22px;
}
.tour_detailes{
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    margin-bottom: 0;
    display: block;
}
.tour_bottom_detailes{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tour_bottom{
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}
.multiple_buttons{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 28px;
    gap: 25px;
}
.multiple_buttons .grid_btn{
    width: 100%;
}
.multiple_buttons .grid_btn a{
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: -0.02em;
    border-radius: 30px;
}
.multiple_buttons .whatsapp_btn a{
    background: #25D366;
    color: #fff;
}
.multiple_buttons .whatsapp_btn a:hover{
    background: var(--theme-color);
    color: #000;
}

.multiple_buttons .dropdowne_btn a{
    background: #0000ff;
    color: #fff;
}
.multiple_buttons .dropdowne_btn a:hover{
    background: var(--theme-color);
    color: #000;
}
.multiple_buttons .dropdown-menu {
    border-radius: 10px;
    border: 1px solid #D8D8D8;
    background: #fff;
    width: 300px;
    z-index: 9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    left: auto;
    transition: all 0.4s ease-out;
    right: 0;
    font-size: 14px;
    top: calc(100% + -5px) !important;
}
@media (min-width: 992px) {
    .multiple_buttons .dropdown:hover .dropdown-menu {
        display: block;
    }
}
/*# POP Up */

.main-popup {
  display: none; /* Hide popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.main-popup .form-control, .main-popup .form-select{
    height: 46px;
    border-radius: 0;
    border: 0;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid #d4d4d4;
    margin-block: 0 20px;
    padding: 8px;
    color: #767676;
}
.main-popup .form-control:hover, .main-popup .form-select:hover,
.main-popup .form-control:focus, .main-popup .form-select:focus{
    border-color: #000;
    box-shadow: none;

}
.main-popup textarea{
    height: 90px;
    min-height: 90px;
}
.main-popup hr{
    margin: 5px 0;
    background-color: #fff;
}
.main-popup .form-control:focus, .main-popup .form-select:focus{
    box-shadow: none !important;
}
.main-popup .form-control::placeholder, .main-popup .form-select::placeholder, .main-popup textarea::placeholder{
    transition: 0.3s;
    color: #767676;
}
.main-popup .form-control:focus::placeholder, .main-popup .form-select:focus::placeholder, .main-popup textarea:focus::placeholder{
    opacity: 0;
}
.main-popup.active {
  display: flex; /* Show when active */
}
.main-popup .card_top{
    background-image: url(../images/pop_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    height: 150px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-position: center;
    width: 100%;
}
.pop_heading{
    font-size: 24px;
    font-weight: 700;
    padding-inline: 15px;
    margin-block: 10px 0;
    line-height: 1;
    color: #000;
}
.sub_heading{
    color: #f1f1f1;
    font-size: 16px;
    text-align: center;
    margin-top: -6px;
}
.main-popup .card_top:before{
    content: '';
    background-color: #222;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.nhjborder{
    border-right: 4px solid var(--theme-color);
}
@media(max-width:768px){
    .nhjborder{
        border-right: 0;
    }
}
.main-popup .card_top h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 80%;
    text-align: center;
    line-height: 1.2;
    font-size: 24px;
    font-family: 'FontAwesome';
    letter-spacing: 2px;
}
.main-popup form{    
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    margin-inline: auto;
    margin-block: 5px 15px;
    padding-block: 0;
}
@media(max-width: 768px){
/*.main-popup svg{
    fill: #000;
}*/
.order_last{
    order: -1;
}
}
.outer-popup {
    width: 100%;
    max-width: 570px;
    margin: 0px auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0px 0px 12px #8a8a8a;
    height: fit-content;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--theme-color);
}
.outer-popup .btn-default{
    border: 2px solid #000;
    color: #000;
    padding: 11px 30px;
    background: transparent;
}
@media(max-width:768px){
    .outer-popup{
        max-width: 90%;
    }
}
.outer-popup .th-btn{
    background-color: var(--theme-color2);
}
.outer-popup .th-btn:before{
    background-color: #d1d1d1;
}
.pop_opter{
    padding: 0;
}
.pop_img{
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    video{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.close-popup {
  width: 100%;
  text-align: right;
  margin: -6px;
}

.close-popup-span {
    padding-right: 0rem;
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 3;
}

.popup-heading {
  margin-top: 0.5rem;
  color: #323232;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 600;
}

.popup-heading > span {
  font-weight: 600;
  color: #03a84e;
  text-transform: uppercase;
}
.form_enquiry_caption_course{
  color: #fff;
}
.pop_upgroup label span{
  color: #fff;
}
.pop_upgroup label{
  font-weight: 600;
  color: #fff;
}
.form__btn{
  background-color: var(--theme-color);
}
.form__btn:hover{
  background-color: #fff;
}
.outer-popup .pop_upgroup label span{
  color: red;
}
.outer-popup .pop_upgroup label{
  font-weight: 600;
  color: #000;
}
.popup-btn {
  font-size: 0.9rem;
  color: white;
  display: none;
  background-color: rgb(27, 27, 95);
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  display: block;
  margin: 1rem auto;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 500;
}

.popup-btn:hover {
  background-color: rgb(15, 15, 53);
}

.cross-after-text {
  justify-content: space-between;
  align-items: center;
  margin-left: 1rem;
  display: flex;
  cursor: pointer;
  position: fixed;
  bottom: 6rem;
}

.gift-div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 7.5rem; */
  width: 12rem;
  animation: updown 1s ease-in infinite;
}
.gift-div img {
  position: relative;
  height: 100%;
  width: 100%;
}
@media(max-width: 500px){
  .enquiry_btn{
    padding: 6px 13px;
  }
}
.btn-default{
    cursor: pointer;
}
.tour_inner p{
    margin-bottom: 0;
}

button.close{
    background-color: transparent;
    border: 1px solid var(--theme-color);
    outline: none;
    font-size: 22px;
    padding: 1px 4px 3px;
    line-height: 0.8;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
@media(max-width: 768px){
    .tour_img{
        width: 100%;
    }
    .tour_cont{
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    .tour_inner p{
        margin-bottom: 10px;
    }
    .tour_bottom_detailes{
        flex-direction:column;
        gap: 10px;
    }
    .header-default .header-logo{
        padding: 7px;
    }
    .header-logo img{
        width: 78px !important;
        position: relative;
    }
    .header-default{
        padding: 0 0 5px;
    }
    .header-default .menu-area .menu-area-wrap{
        justify-content: flex-start;
    }
        .header-default .menu-top {
        padding: 0px 0px 5px;
        margin-bottom: 5px;
        border-bottom: 1px solid var(--theme-color);
    }
    .info-card-wrap{
        padding-top: 5px;
    }
    .video-counter-content p{
        font-weight: 13px;
    }
    .video-counter-item .icon-box{
        margin-right: 2px;
    }
    .cabs_box{
        margin-top: 30px;
        padding: 15px;
    }
    .section-title h2 br{
            display: none;
        }
}
.footer-section-two {
  background-image: url("../images/footer-bg-two.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.footer-section-two:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: -1;

}
.footer-section-two .footer-contact-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  margin-inline: auto;
}
.footer-section-two .footer-contact-wrapper .footer-content {
  text-align: center;
  padding: 20px;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-contact-wrapper .footer-content {
    padding: 60px 20px;
}
}
.footer-section-two .footer-contact-wrapper .footer-content .footer-logo {
  margin-bottom: 23px;
  a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    img{
        width: 200px;
        background-color: #fff;
        border-radius: 10px;
        border: 3px solid var(--theme-color);
        height: auto;        
    }
    .site_name{
        color: #fff;
    }
}
}
.footer_lists {
    display: block;
    width: 100%;
    padding: 10px;
}
.footer_lists ul {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.footer_lists ul li {
    display: inline;
}
.footer_lists ul li a {
    padding: 5px 5px;
    color: #fff;
    display: inline;
    font-size: 15px;
    position: relative;
    span{
        position: relative;
        right: -3px;
        font-size: 9px;

    }
}
.footer_lists ul li a:hover{
    color: var(--theme-color);
}

@media(max-width:768px){
    .footer_lists ul li a{
        font-size: 10px;
        display: inline-block;
        letter-spacing: -0.02em;
        padding: 2px;
    }
    .footer_lists{
        padding-inline: 0;
        margin-inline: -15px;
    }
    .footer_lists ul li {
        display: inline-block;
    }
}
.footer-section-two .footer-contact-wrapper .footer-content .from-inner {
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 47px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-section-two .footer-contact-wrapper .footer-content .from-inner {
    max-width: 100%;
}
}
.footer-section-two .footer-contact-wrapper .footer-content .from-inner input {
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 30px;
  background-color: transparent;
  border: none;
  color: rgb(102, 102, 102);
  font-size: 16px;
  font-family: var(--theme-font);
  text-transform: capitalize;
  width: 100%;
  height: 48px;
  padding: 10px 20px;
}
.footer-section-two .footer-contact-wrapper .footer-content .from-inner input::-moz-placeholder {
  color: rgba(16, 12, 8, 0.4);
}
.footer-section-two .footer-contact-wrapper .footer-content .from-inner input::placeholder {
  color: rgba(16, 12, 8, 0.4);
}
.footer-section-two .footer-contact-wrapper .footer-content h3 {
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 30.12px;
  color: var(title-color);
  margin-bottom: 10px;
}
.footer-section-two .footer-contact-wrapper .footer-content P {
  font-family: var(--theme-heading-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-section-two .site_name span{
    color: var(--theme-color);
}
.footer-section-two .widget-title h4 {
  color: #fff;
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 16px;
}
.footer-section-two .widget-title{
    position: relative;
    padding-bottom: 20px;
}
.footer-section-two .widget-title:after{
    position: absolute;
    content: '';
    left: 3px;
    bottom: 33px;
    background-color: #fff;
    height: 1px;
    width: 80px;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-widget .widget-title h4 {
    font-size: 20px;
}
}
.footer-section-two .footer-widget .widget-title.two {
  margin-bottom: 22px;
}
.footer-section-two .footer-widget .payment-partners {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer-section-two .footer-widget .payment-partners {
    padding-bottom: 20px;
}
}
@media (max-width: 576px) {
  .footer-section-two .footer-widget .payment-partners {
    padding-bottom: 0;
}
}
.footer-section-two .footer-widget .menu-right-paragraph p {
  font-family: var(--theme-heading-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-widget .menu-right-paragraph p {
    font-size: 14px;
    line-height: 22px;
}
}
.footer-section-two .footer-widget .gallery-img {
  position: relative;
  border-radius: 6px;
}
.footer-section-two .footer-widget .gallery-img img {
  border-radius: 6px;
  width: 100%;
}
.footer-section-two .footer-widget .gallery-img .icon-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 166, 39, 0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: 0.3s;
}
.footer-section-two .footer-widget .gallery-img .icon-area i {
  color: var(--white-color);
  font-size: 24px;
}
.footer-section-two .footer-widget .gallery-img:hover .icon-area {
  transform: scale(1);
  opacity: 1;
}
.footer-section-two .footer-widget .menu-container .widget-list {
  padding: 0;
  margin: 0;
}
.footer-section-two .footer-widget .menu-container .widget-list li {
  margin-bottom: 15px;
  line-height: 1;
  transition: 0.3s;
  position: relative;
  display: block;
  transform: translateX(0);
}
@media (max-width: 1199px) {
  .footer-section-two .footer-widget .menu-container .widget-list li {
    margin-bottom: 15px;
}
}
.footer-section-two .footer-widget .menu-container .widget-list li:last-child {
  margin-bottom: 0;
}
.footer-section-two .footer-widget .menu-container .widget-list li a {
  color: #fff;
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-widget .menu-container .widget-list li a {
    font-size: 16px;
}
}
@media (max-width: 576px) {
  .footer-section-two .footer-widget .menu-container .widget-list li a {
    font-size: 16px;
}
}
.footer-section-two .footer-widget .menu-container .widget-list li a:hover {
  color: var(--theme-color);
}
.footer-section-two .footer-widget .menu-container .widget-list li::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--white-color);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: 0.35s;
}
.footer-section-two .footer-widget .menu-container .widget-list li:hover {
  transform: translateX(10px);
}
.footer-section-two .footer-widget .menu-container .widget-list li:hover::after {
  opacity: 1;
}
.footer-section-two .single-contact {
  max-width: 241px;
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .footer-section-two .single-contact {
    margin-bottom: 20px;
}
}
.footer-section-two .single-contact li {
  margin-bottom: 27px;
}
.footer-section-two .single-contact li:last-child {
  margin-bottom: 0;
}
.footer-section-two .single-contact li .icon-and-call {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  i{
    color: var(--theme-color);
}
svg path{
    fill: var(--theme-color);
}
}
.footer-section-two .single-contact li .icon-and-call span {
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white-color);
  margin: 0;
}
.footer-section-two .single-contact li a {
  font-family: var(--theme-heading-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
  transition: 0.3s;
}
.footer-section-two .single-contact li a:hover {
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .footer-section-two .footer-right-area {
    display: flex;
    flex-wrap: wrap;
}
}
@media (max-width: 576px) {
  .footer-section-two .footer-right-area {
    gap: 0;
    margin-bottom: 20px;
}
}
.footer-section-two .footer-right-area .payment-partner .widget-title h5 {
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
}
.footer-section-two .footer-right-area .payment-partner .icons ul {
  display: flex;
  align-items: center;
  gap: 23px;
}
.footer-section-two .footer-right-area .payment-partner .icons ul li img {
  border-radius: 4px;
}

@media (max-width: 991px) {
  .footer-section-two .footer-bottom {
    margin-top: 30px;
}
}
@media (max-width: 767px) {
  .footer-section-two .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}
}
@media (max-width: 576px) {
  .footer-section-two .footer-bottom {
    padding: 20px 0;
}
}
.footer-section-two .footer-bottom .copy-write-area p {
  font-family: var(--theme-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-bottom .copy-write-area p {
    font-size: 14px;
}
}
.footer-section-two .footer-bottom .copy-write-area p a {
  font-family: var(--theme-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: var(--theme-color);
  margin: 0;
  transition: 0.3s;
}
.footer-section-two .footer-bottom .copy-write-area p a:hover {
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-section-two .footer-bottom .copy-write-area p a {
    font-size: 14px;
}
}

.footer-section-two .footer-bottom .footer-social-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-section-two .footer-bottom .footer-social-list h3 {
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white-color);
  margin: 0;
}
@media (max-width: 991px) {
  .footer-section-two .footer-bottom .footer-social-list h3 {
    font-size: 17px;
}
}
.footer-section-two .footer-bottom .footer-social-list ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-section-two .footer-bottom .footer-social-list ul li a {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid rgba(17, 17, 17, 0.25);
  transition: 0.3s;
  color: var(--theme-color);
}
.footer-section-two .footer-bottom .footer-social-list ul li a:hover{
    color: #fff;
}
@media (max-width: 991px) {
  .footer-section-two .footer-bottom .footer-social-list ul li a {
    height: 30px;
    width: 30px;
}
}
.footer-section-two .footer-bottom .footer-social-list ul li a svg path {
  transition: 0.3s;
  fill: #222;
}
.footer-section-two .footer-bottom .footer-social-list ul li:hover a {
  background-color: var(--theme-color);
}
.footer-section-two .footer-bottom .footer-social-list ul li:hover a svg path {
  fill: var(--white-color);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
}
to {
    opacity: 1;
    transform: scale(1);
}
}
@media(max-width:768px) {
    .site_name {
        font-size: 22px;
        span {
            font-size: 20px;
        }
    }
    .vs-services-style1 .title-area {
        margin-bottom: 20px;
    }
    .vs-services-style1 .btn-theme {
        margin-bottom: 20px;
    }
    .main_part {
        padding: 15px 10px;
    }
    .footer-bottom {
        padding-bottom: 50px;
    }
}

.footer_contact_box{
    padding: 20px 0;
    border-block:1px solid rgba(255,255,255,0.4);
}
.footer_contact_box .contact_box{
    display: flex
    ;
    align-items: center;
    justify-content: start;
    background: transparent;
    border: none;
    gap: 10px;
    .icon{
        width: 60px;
        min-width: 60px;
        height: 60px;
        display: flex
        ;
        align-items: center;
        justify-content: center;
        font-size: 27px;
        background-color: var(--theme-color);
        color: #fff;
        border-radius: 50%;
    }
    .h3{
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.02em;
        margin-bottom: 4px;
        color: #fff;
    }
    .text{

        font-size: 17px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
    }
}
.footer_contact_box .contact_box .text:hover{
    color: var(--theme-color);
}
.quick_links{
 padding: 20px 0 50px;
 position: relative;
 .links{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 87px;
}
li{
    display: block;
    a{
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }
}
}
.footer-section-two .footer-bottom {
  padding: 30px 0 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section-two .footer-social-list {
    display: flex
    ;
    align-items: center;
    gap: 20px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 30px;
    border-radius: 30px;
}
.footer-section-two .footer-social-list h3 {
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white-color);
  margin: 0;
}
@media (max-width: 991px) {
  .footer-section-two .footer-social-list h3 {
    font-size: 17px;
}
}
.footer-section-two .footer-social-list ul {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 20px;
}
.footer-section-two .footer-social-list ul li a {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(17, 17, 17, 0.25);
  transition: 0.3s;
  background-color: var(--theme-color);
}
.footer-section-two .footer-social-list ul li a:hover{
    color: var(--theme-color);
    background-color: #fff !important;
}
@media (max-width: 991px) {
  .footer-section-two .footer-social-list ul li a {
    height: 30px;
    width: 30px;
}
}
.footer-section-two .footer-social-list ul li a svg path {
  transition: 0.3s;
  fill: #222;
}
.footer-section-two .footer-social-list ul li:hover a {
  background-color: var(--theme-color);
}
.footer-section-two .footer-social-list ul li:hover a svg path {
  fill: var(--white-color);
}
.quick_links li a:hover{
    color: var(--theme-color);
}

.about-content .about-items {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 30px
}


.about-content .about-items .about-icon-items {
    display: flex;
    align-items: center;
    width: 50%;
    gap: 16px;
    padding-right: 50px;
}
.about-content .about-items .about-icon-items img{
    width: 20px;
    min-width: 20px;
    filter: hue-rotate(157deg) brightness(0.8);
}
.about-content .about-items p{
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: -0.02em;
}
.about-content .about-items .text {
    position: relative;
    width: 50%;
    padding-left: 50px;
}

.about-content .about-items .text:before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--theme-color);
    width: 2px;
    height: 41px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .about-content .about-items .text:before {
        display:none
    }
}

.about-content .theme-btn {
    background-color: var(--theme-color2)
}

.about-content .theme-btn:before {
    background-color: var(--theme-color)
}

.about-wrapper-3 {
    padding: 40px 0
}

@media (max-width: 1199px) {
    .about-wrapper-3 {
        padding:0
    }
}
@media(max-width: 768px){
    .hero .section-title h3{
        font-size: 14px;
        line-height: 1.2;
    }
    .hero .section-title h1{
        font-size: 41px;
    }
    .hero .section-title p{
        display: none;
    }
    .hero.hero-slider-layout .hero-slide .slider_bg_img{
        width: 100%;
        clip-path: none;
    }
    .hero.hero-slider-layout .hero-slide{
        padding: 60px 0 150px;
    }
    .btn-default, .btn-default.btn-highlighted{
        padding: 10px 17px;
    }
    .about-us-image2{
        width: 250px;
        height: auto;
        right: 0;
    }
    .hero-nav-btn{

        bottom: 45px;
        flex-direction: row;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-btn-prev, .hero-btn-next{
        width: 30px;
        height: 30px;
    }
    .hero-btn-prev::before, .hero-btn-next::before{
        font-size: 13px;
    }
    .hero .section-title{
        margin-bottom: 15px;
    }
    .hero-content {
    padding: 11px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}
.about-us-img img{
    height: auto;
}
.about-content .about-items .about-icon-items{
    padding-right: 10px;
}
.about-content .about-items .text{
    padding-left: 10px;
}
.about-content .about-items .about-icon-items h5{
    font-size: 16px;
    font-weight: 700;
}
.destination-slider .slick-slide{
    margin-inline: 10px;
}
.video-wrapper .video-image .video-btn{
    line-height: 60px;
    width: 60px;
    height: 60px;
}
.multiple_buttons{
    gap: 5px;
}
.section-title{
    margin-bottom: 30px;
}
.testimonial-wrapper-2 .testimonial-image{
    height: auto;
}
.testimonial-wrapper-2 .testimonial-content .testimonial-card-items{
    padding: 20px;
}
.footer-bottom .footer-wrapper p{
    text-align: center;
    padding-bottom: 00px;
}
.multiple_buttons{
    flex-wrap: wrap;
}
.multiple_buttons .grid_btn {
    width: 48%;
}
.multiple_buttons .dropdowne_btn{
    order: 1;
}
}
.fixed_socios{
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    gap: 5px;
    left: 5px;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
}
.fixed_socios a{
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    min-height: 35px;
    max-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    background-color: #ffffff;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid #000;
}
.fixed_socios a:hover{
    background-color: var(--theme-color);
    color: #fff;
}
@media(max-width: 768px){
    .fixed_socios a{
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    font-size: 12px;
}
}
@media(min-width: 768px){
    .fixed_sidebar{
        position: sticky;
        top: 10px;
    }
}