/*CSS Template 1.4 by J - Updated July 2026*/
/*Search (CTRL+F) Keywords:
[Fonts] 
[Presets] 
[Floating_CTA] 
[Settings] 
[Gaps] 
[Contact_Form] 
[Map_Presets] 
[Text_Presets] 
[Button_Presets] 
[Slick_Slider_Presets] 
[Image_Presets] 
[Animation_Presets] 
[Formats] 
[Position_Presets] 
[Flex/Grid_Presets] 
[Banner] 
[Custom]*/

/*[Fonts]*/
/*====================================================================================================*/
@font-face {
    font-family: poppins;
    font-weight: 100;
    src: url("./fonts/Poppins-Thin.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 200;
    src: url("./fonts/Poppins-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 300;
    src: url("./fonts/Poppins-Light.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 400;
    src: url("./fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 500;
    src: url("./fonts/Poppins-Medium.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 600;
    src: url("./fonts/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 700;
    src: url("./fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 800;
    src: url("./fonts/Poppins-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 900;
    src: url("./fonts/Poppins-Black.ttf") format("truetype");
}


/*[Presets]*/
/*====================================================================================================*/
:root {
    --theme-font-family: "poppins";
    --theme-title-font-family: "tactic-sans";
    --fa-brand: "Font Awesome 7 Brands";
    --fa-icon: "Font Awesome 7 Free";
    --font-size-1: 40px;
    --font-size-2: 30px;
    --font-size-3: 27px;
    --font-size-4: 25px;
    --font-size-5: 23px;
    --font-size-6: 20px;
    --font-size-7: 18px;
    --font-size-t: 16px;
    --font-size-s: 14px;
    --row-gap: 100px;
    --side-gap: 100px;
    --inner-row-gap: 35px;
    --inner-side-gap: 35px;
    --inner-large-row-gap: 50px;
    --inner-large-side-gap: 50px;
    --map-height: 400px;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --theme-color: #FFB700;
    --second-theme-color: #D89900;
    --transition-effect: all 0.3s ease-in-out;
    --transition-out-effect: all 0.3s ease-out;
    --transition-in-effect: all 0.3s ease-in;
    --gsap-effect-fast: all 0.5s ease-out;
    --gsap-effect: all 1s ease-out;
    --gsap-effect-slow: all 1.5s ease-out;
    --home-banner-size: auto;
    --banner-size: 4 / 1;
    --banner-mini-title: 1.058vw;
    --banner-title: 2.865vw;
}

@media only screen and (max-width:999.98px) {
    :root {
        --home-banner-size: 2 / 1;
        --banner-size: 3 / 1;
        --banner-mini-title: 1.6vw;
        --banner-title: 5vw;
    }
}

@media only screen and (max-width:767.98px) {
    :root {
        --font-size-1: 30px;
        --font-size-2: 27px;
        --font-size-3: 25px;
        --font-size-4: 23px;
        --font-size-5: 20px;
        --font-size-6: 18px;
        --font-size-7: 18px;
        --row-gap: 70px;
        --side-gap: 15px;
        --inner-row-gap: 25px;
        --inner-side-gap: 15px;
        --inner-large-row-gap: 35px;
        --inner-large-side-gap: 15px;
        --map-height: 300px;
        --home-banner-size: 3 / 2;
        --banner-size: 2 / 1;
        --banner-mini-title: 2.083vw;
        --banner-title: 6.51vw;
    }
}

@media only screen and (max-width:449.98px) {
    :root {
        --home-banner-size: 1 / 1;
        --banner-size: 3 / 2;
        --banner-mini-title: 3.556vw;
        /* --banner-title:11.111vw; */
    }
}

/*[Floating_CTA]*/
/*====================================================================================================*/
.floating-button {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 80px;
    right: 19px;
    font-size: 20px;
    background-color: #4F6ACA;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.floating-button * {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger {
    background-color: #4F6ACA;
    /* animation: 2.5s wiggle ease infinite; */
    /* animation-delay: 1s; */
    width: auto;
    min-width: 50px;
}

.floating-button:not(.float-btn-trigger) {
    opacity: 0;
}

.floating-button.float-btn-trigger .icon-trigger {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: 2.5s wiggle ease infinite;
    animation-delay: 1s;
    position: relative;
}

.floating-button.float-btn-trigger .chat-with-us {
    padding-inline: 0 0;
    font-size: 16px;
    text-transform: capitalize;
    overflow: hidden;
    text-indent: -100px;
    transform: scale(0);
    transform-origin: 100% 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 0;
}

.floating-button.float-btn-trigger .chat-with-us.pop {
    padding-inline: 15px 0;
    text-indent: 0;
    transform: scale(1);
    width: auto;
}

.floating-button.float-btn-trigger #open-float {
    opacity: 1;
}

.floating-button.float-btn-trigger #close-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.floating-button.floating-button_mail {
    background-color: rgba(0, 114, 198, 1);
}

.floating-button.floating-button_phone {
    background-color: rgba(220, 16, 16, 1);
}

.floating-button.floating-button_whatsapp {
    background-color: rgba(37, 211, 102, 1);
}

/*when toogle*/
.floating-button.float-btn-trigger.toogle .icon-trigger {
    animation: none;
}

.floating-button.toogle:not(.float-btn-trigger) {
    opacity: 1;
}

.floating-button.float-btn-trigger.toogle #open-float {
    opacity: 0;
}

.floating-button.float-btn-trigger.toogle #close-float {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg);
}

.floating-button.floating-button_mail.toogle {
    bottom: 140px;
}

.floating-button_phone.toogle {
    bottom: 200px;
}

.floating-button_whatsapp.toogle {
    bottom: 260px;
}

/*animation for trigger*/
@keyframes wiggle {
    0% {
        transform: scale(1), rotate(0);
    }

    9.375% {
        transform: scale(1.1) rotate(0);
    }

    18.75% {
        transform: scale(1.1) rotate(-3deg);
    }

    28.125% {
        transform: scale(1.1) rotate(20deg);
    }

    37.5% {
        transform: scale(1.1) rotate(-15deg);
    }

    46.875% {
        transform: scale(1.1) rotate(5deg);
    }

    56.25% {
        transform: scale(1.1) rotate(-1deg);
    }

    65.625% {
        transform: scale(1.1) rotate(0);
    }

    75% {
        transform: scale(1) rotate(0);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

/*when mobile only*/
@media only screen and (max-width: 767.98px) {
    .floating-button {
        bottom: 10px;
        right: 15px;
    }

    .floating-button.floating-button_mail.toogle {
        bottom: 70px;
    }

    .floating-button_phone.toogle {
        bottom: 130px;
    }

    .floating-button_whatsapp.toogle {
        bottom: 190px;
    }

    #side-contact {
        position: fixed;
        background: #fff;
        width: 100%;
        height: 70px;
        bottom: 0;
        right: -100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        z-index: 999;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        /*padding-right: 70px;*/
    }

    #side-contact.toogle {
        right: 0;
    }

    #side-contact a.floating-button:not(.float-btn-trigger) {
        position: initial;
        opacity: 1;
    }

    .floating-button.float-btn-trigger .chat-with-us.pop {
        padding-inline: 15px 0;
        text-indent: 0;
        transform: scale(1);
        animation: none;
    }

    .floating-button.float-btn-trigger.toogle .chat-with-us.pop {
        padding-inline: 0 0;
        text-indent: -1000px;
        transform: scale(0);
    }

}

/*[Settings]*/
/*====================================================================================================*/
.error404 #main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error404 #main .ct-container {
    padding-block: var(--row-gap) !important;
}

.error404 .ct-no-results .ct-search-form {
    display: none !important;
}

.ct-container,
.ct-container-full {
    margin-inline: 0;
    padding-inline: var(--side-gap);
    width: 100%;
    max-width: none;
}

.blog #main>.ct-container,
.blog #main>.ct-container-full,
.archive #main>.ct-container,
.archive #main>.ct-container-full,
.woocommerce #main>.ct-container,
.woocommerce #main>.ct-container-full {
    padding-block: var(--row-gap);
}

/* .current-menu-parent>a,
.current-menu-item>a,
.current-page-ancestor>a,
.current_page_parent>a,
.current-product_cat-ancestor>a,
.current-product-ancestor>a,
.current-category-ancestor>a,
.current-post-ancestor>a {
    color: var(--theme-link-active-color, var(--theme-link-hover-color)) !important;
    font-weight: 700 !important;
} */

/* @media only screen and (max-width:999.98px) {

    .current-menu-parent>span>a,
    .current-menu-item>span>a,
    .current-page-ancestor>span>a,
    .current_page_parent>span>a,
    .current-product_cat-ancestor>span>a,
    .current-product-ancestor>span>a,
    .current-category-ancestor>span>a,
    .current-post-ancestor>span>a {
        color: var(--theme-link-active-color, var(--theme-link-hover-color)) !important;
        font-weight: 700 !important;
    }
} */

/*remove wpbakery animations for mobile*/
@media only screen and (max-width:767.98px) {
    body .wpb_animate_when_almost_visible {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-animation: none;
        -moz-animation: none;
        -o-animation: none;
        animation: none;
    }
}

.is-width-constrained {
    width: 100% !important;
}

.page .hero-section {
    display: none !important;
}

@media only screen and (max-width: 999.98px) {
    #main [data-sidebar] {
        grid-row-gap: 0;
    }

    .iksm-widget .iksm-container {
        opacity: 0;
        height: 0;
        visibility: hidden;
        /*transition:var(--transition-effect);*/
    }

    .iksm-widget .iksm-container.display {
        opacity: 1;
        height: auto;
        visibility: visible;
    }

    .iksm-widget .widget-title {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        /*border: 1px solid var(--grey-80);*/
        margin-bottom: 0;
        transition: var(--transition-effect);
    }

    .iksm-widget .widget-title.minus {
        margin-bottom: 15px;
    }

    .iksm-widget .widget-title:after {
        content: '\f054' !important;
        font-family: var(--fa-icon);
        font-size: 15px;
        font-weight: 900;
        transition: var(--transition-effect);
    }

    .iksm-widget .widget-title.minus:after {
        font-size: 15px;
        font-weight: 900;
        transform: rotate(90deg);
    }
}

.ct-sidebar {
    margin-bottom: 35px;
}

.archive.category #main>.ct-container,
.single-post #main>.ct-container {
    padding-bottom: calc(var(--row-gap) - 35px);
}

.wpb_text_column ul,
.wpb_text_column ol {
    padding-left: 20px;
}

.wpb_text_column ol>li {
    margin-bottom: 10px;
}

.woocommerce.single-product .woocommerce-product-gallery {
    margin-bottom: 35px;
}

.woocommerce.single-product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 35px;
}

.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-top: calc(var(--row-gap) - 35px) !important;
}

.woocommerce.single-product .woocommerce-Tabs-panel {
    padding-top: 0 !important;
}

.woocommerce.single-product .woocommerce-tabs>.tabs.wc-tabs {
    display: none !important;
}

.woocommerce #main>.ct-container,
.woocommerce #main>.ct-container-full {
    padding-block: var(--row-gap);
}

.woocommerce.single-product .woocommerce-Tabs-panel>.wpb-content-wrapper {
    width: 100%;
}

.hero-section {
    width: 100%;
}

.vc_tta-container {
    margin-bottom: 35px !important;
}

/*[Gaps]*/
/*====================================================================================================*/
.row-gap {
    padding-top: var(--row-gap) !important;
    padding-bottom: calc(var(--row-gap) - 35px) !important;
}

.row-gap-equal {
    padding-top: var(--row-gap) !important;
    padding-bottom: var(--row-gap) !important;
}

.row-gap-t {
    padding-top: var(--row-gap) !important;
}

.row-gap-b {
    padding-bottom: calc(var(--row-gap) - 35px) !important;
}

.row-gap-b-equal {
    padding-bottom: var(--row-gap) !important;
}

.no-pad {
    margin-inline: 0;
}

.no-pad>.wpb_column>.vc_column-inner {
    padding-inline: 0;
}

.box-side-gap {
    padding-inline: var(--inner-side-gap) !important;
}

.box-row-gap {
    padding-block: var(--inner-row-gap) !important;
}

.box-side-gap-xl {
    padding-inline: var(--inner-large-side-gap) !important;
}

.box-side-gap-xl {
    padding-inline: var(--inner-large-row-gap) !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-85 {
    padding-top: 85px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-95 {
    padding-left: 95px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-95 {
    padding-right: 95px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-95 {
    margin-bottom: 95px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-65 {
    margin-left: 65px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-75 {
    margin-left: 75px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-85 {
    margin-left: 85px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-95 {
    margin-left: 95px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-65 {
    margin-right: 65px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-75 {
    margin-right: 75px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-85 {
    margin-right: 85px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-95 {
    margin-right: 95px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

@media only screen and (max-width:767.98px) {
    .m-pt-0 {
        padding-top: 0px !important;
    }

    .m-pt-5 {
        padding-top: 5px !important;
    }

    .m-pt-10 {
        padding-top: 10px !important;
    }

    .m-pt-15 {
        padding-top: 15px !important;
    }

    .m-pt-20 {
        padding-top: 20px !important;
    }

    .m-pt-25 {
        padding-top: 25px !important;
    }

    .m-pt-30 {
        padding-top: 30px !important;
    }

    .m-pt-35 {
        padding-top: 35px !important;
    }

    .m-pt-40 {
        padding-top: 40px !important;
    }

    .m-pt-45 {
        padding-top: 45px !important;
    }

    .m-pt-50 {
        padding-top: 50px !important;
    }

    .m-pt-55 {
        padding-top: 55px !important;
    }

    .m-pt-60 {
        padding-top: 60px !important;
    }

    .m-pt-65 {
        padding-top: 65px !important;
    }

    .m-pt-70 {
        padding-top: 70px !important;
    }

    .m-pt-75 {
        padding-top: 75px !important;
    }

    .m-pt-80 {
        padding-top: 80px !important;
    }

    .m-pt-85 {
        padding-top: 85px !important;
    }

    .m-pt-90 {
        padding-top: 90px !important;
    }

    .m-pt-95 {
        padding-top: 95px !important;
    }

    .m-pt-100 {
        padding-top: 100px !important;
    }

    .m-pb-0 {
        padding-bottom: 0px !important;
    }

    .m-pb-5 {
        padding-bottom: 5px !important;
    }

    .m-pb-10 {
        padding-bottom: 10px !important;
    }

    .m-pb-15 {
        padding-bottom: 15px !important;
    }

    .m-pb-20 {
        padding-bottom: 20px !important;
    }

    .m-pb-25 {
        padding-bottom: 25px !important;
    }

    .m-pb-30 {
        padding-bottom: 30px !important;
    }

    .m-pb-35 {
        padding-bottom: 35px !important;
    }

    .m-pb-40 {
        padding-bottom: 40px !important;
    }

    .m-pb-45 {
        padding-bottom: 45px !important;
    }

    .m-pb-50 {
        padding-bottom: 50px !important;
    }

    .m-pb-55 {
        padding-bottom: 55px !important;
    }

    .m-pb-60 {
        padding-bottom: 60px !important;
    }

    .m-pb-65 {
        padding-bottom: 65px !important;
    }

    .m-pb-70 {
        padding-bottom: 70px !important;
    }

    .m-pb-75 {
        padding-bottom: 75px !important;
    }

    .m-pb-80 {
        padding-bottom: 80px !important;
    }

    .m-pb-85 {
        padding-bottom: 85px !important;
    }

    .m-pb-90 {
        padding-bottom: 90px !important;
    }

    .m-pb-95 {
        padding-bottom: 95px !important;
    }

    .m-pb-100 {
        padding-bottom: 100px !important;
    }

    .m-pl-0 {
        padding-left: 0px !important;
    }

    .m-pl-5 {
        padding-left: 5px !important;
    }

    .m-pl-10 {
        padding-left: 10px !important;
    }

    .m-pl-15 {
        padding-left: 15px !important;
    }

    .m-pl-20 {
        padding-left: 20px !important;
    }

    .m-pl-25 {
        padding-left: 25px !important;
    }

    .m-pl-30 {
        padding-left: 30px !important;
    }

    .m-pl-35 {
        padding-left: 35px !important;
    }

    .m-pl-40 {
        padding-left: 40px !important;
    }

    .m-pl-45 {
        padding-left: 45px !important;
    }

    .m-pl-50 {
        padding-left: 50px !important;
    }

    .m-pl-55 {
        padding-left: 55px !important;
    }

    .m-pl-60 {
        padding-left: 60px !important;
    }

    .m-pl-65 {
        padding-left: 65px !important;
    }

    .m-pl-70 {
        padding-left: 70px !important;
    }

    .m-pl-75 {
        padding-left: 75px !important;
    }

    .m-pl-80 {
        padding-left: 80px !important;
    }

    .m-pl-85 {
        padding-left: 85px !important;
    }

    .m-pl-90 {
        padding-left: 90px !important;
    }

    .m-pl-95 {
        padding-left: 95px !important;
    }

    .m-pl-100 {
        padding-left: 100px !important;
    }

    .m-pr-0 {
        padding-right: 0px !important;
    }

    .m-pr-5 {
        padding-right: 5px !important;
    }

    .m-pr-10 {
        padding-right: 10px !important;
    }

    .m-pr-15 {
        padding-right: 15px !important;
    }

    .m-pr-20 {
        padding-right: 20px !important;
    }

    .m-pr-25 {
        padding-right: 25px !important;
    }

    .m-pr-30 {
        padding-right: 30px !important;
    }

    .m-pr-35 {
        padding-right: 35px !important;
    }

    .m-pr-40 {
        padding-right: 40px !important;
    }

    .m-pr-45 {
        padding-right: 45px !important;
    }

    .m-pr-50 {
        padding-right: 50px !important;
    }

    .m-pr-55 {
        padding-right: 55px !important;
    }

    .m-pr-60 {
        padding-right: 60px !important;
    }

    .m-pr-65 {
        padding-right: 65px !important;
    }

    .m-pr-70 {
        padding-right: 70px !important;
    }

    .m-pr-75 {
        padding-right: 75px !important;
    }

    .m-pr-80 {
        padding-right: 80px !important;
    }

    .m-pr-85 {
        padding-right: 85px !important;
    }

    .m-pr-90 {
        padding-right: 90px !important;
    }

    .m-pr-95 {
        padding-right: 95px !important;
    }

    .m-pr-100 {
        padding-right: 100px !important;
    }

    .m-mt-0 {
        margin-top: 0px !important;
    }

    .m-mt-5 {
        margin-top: 5px !important;
    }

    .m-mt-10 {
        margin-top: 10px !important;
    }

    .m-mt-15 {
        margin-top: 15px !important;
    }

    .m-mt-20 {
        margin-top: 20px !important;
    }

    .m-mt-25 {
        margin-top: 25px !important;
    }

    .m-mt-30 {
        margin-top: 30px !important;
    }

    .m-mt-35 {
        margin-top: 35px !important;
    }

    .m-mt-40 {
        margin-top: 40px !important;
    }

    .m-mt-45 {
        margin-top: 45px !important;
    }

    .m-mt-50 {
        margin-top: 50px !important;
    }

    .m-mt-55 {
        margin-top: 55px !important;
    }

    .m-mt-60 {
        margin-top: 60px !important;
    }

    .m-mt-65 {
        margin-top: 65px !important;
    }

    .m-mt-70 {
        margin-top: 70px !important;
    }

    .m-mt-75 {
        margin-top: 75px !important;
    }

    .m-mt-80 {
        margin-top: 80px !important;
    }

    .m-mt-85 {
        margin-top: 85px !important;
    }

    .m-mt-90 {
        margin-top: 90px !important;
    }

    .m-mt-95 {
        margin-top: 95px !important;
    }

    .m-mt-100 {
        margin-top: 100px !important;
    }

    .m-mb-0 {
        margin-bottom: 0px !important;
    }

    .m-mb-5 {
        margin-bottom: 5px !important;
    }

    .m-mb-10 {
        margin-bottom: 10px !important;
    }

    .m-mb-15 {
        margin-bottom: 15px !important;
    }

    .m-mb-20 {
        margin-bottom: 20px !important;
    }

    .m-mb-25 {
        margin-bottom: 25px !important;
    }

    .m-mb-30 {
        margin-bottom: 30px !important;
    }

    .m-mb-35 {
        margin-bottom: 35px !important;
    }

    .m-mb-40 {
        margin-bottom: 40px !important;
    }

    .m-mb-45 {
        margin-bottom: 45px !important;
    }

    .m-mb-50 {
        margin-bottom: 50px !important;
    }

    .m-mb-55 {
        margin-bottom: 55px !important;
    }

    .m-mb-60 {
        margin-bottom: 60px !important;
    }

    .m-mb-65 {
        margin-bottom: 65px !important;
    }

    .m-mb-70 {
        margin-bottom: 70px !important;
    }

    .m-mb-75 {
        margin-bottom: 75px !important;
    }

    .m-mb-80 {
        margin-bottom: 80px !important;
    }

    .m-mb-85 {
        margin-bottom: 85px !important;
    }

    .m-mb-90 {
        margin-bottom: 90px !important;
    }

    .m-mb-95 {
        margin-bottom: 95px !important;
    }

    .m-mb-100 {
        margin-bottom: 100px !important;
    }

    .m-ml-0 {
        margin-left: 0px !important;
    }

    .m-ml-5 {
        margin-left: 5px !important;
    }

    .m-ml-10 {
        margin-left: 10px !important;
    }

    .m-ml-15 {
        margin-left: 15px !important;
    }

    .m-ml-20 {
        margin-left: 20px !important;
    }

    .m-ml-25 {
        margin-left: 25px !important;
    }

    .m-ml-30 {
        margin-left: 30px !important;
    }

    .m-ml-35 {
        margin-left: 35px !important;
    }

    .m-ml-40 {
        margin-left: 40px !important;
    }

    .m-ml-45 {
        margin-left: 45px !important;
    }

    .m-ml-50 {
        margin-left: 50px !important;
    }

    .m-ml-55 {
        margin-left: 55px !important;
    }

    .m-ml-60 {
        margin-left: 60px !important;
    }

    .m-ml-65 {
        margin-left: 65px !important;
    }

    .m-ml-70 {
        margin-left: 70px !important;
    }

    .m-ml-75 {
        margin-left: 75px !important;
    }

    .m-ml-80 {
        margin-left: 80px !important;
    }

    .m-ml-85 {
        margin-left: 85px !important;
    }

    .m-ml-90 {
        margin-left: 90px !important;
    }

    .m-ml-95 {
        margin-left: 95px !important;
    }

    .m-ml-100 {
        margin-left: 100px !important;
    }

    .m-mr-0 {
        margin-right: 0px !important;
    }

    .m-mr-5 {
        margin-right: 5px !important;
    }

    .m-mr-10 {
        margin-right: 10px !important;
    }

    .m-mr-15 {
        margin-right: 15px !important;
    }

    .m-mr-20 {
        margin-right: 20px !important;
    }

    .m-mr-25 {
        margin-right: 25px !important;
    }

    .m-mr-30 {
        margin-right: 30px !important;
    }

    .m-mr-35 {
        margin-right: 35px !important;
    }

    .m-mr-40 {
        margin-right: 40px !important;
    }

    .m-mr-45 {
        margin-right: 45px !important;
    }

    .m-mr-50 {
        margin-right: 50px !important;
    }

    .m-mr-55 {
        margin-right: 55px !important;
    }

    .m-mr-60 {
        margin-right: 60px !important;
    }

    .m-mr-65 {
        margin-right: 65px !important;
    }

    .m-mr-70 {
        margin-right: 70px !important;
    }

    .m-mr-75 {
        margin-right: 75px !important;
    }

    .m-mr-80 {
        margin-right: 80px !important;
    }

    .m-mr-85 {
        margin-right: 85px !important;
    }

    .m-mr-90 {
        margin-right: 90px !important;
    }

    .m-mr-95 {
        margin-right: 95px !important;
    }

    .m-mr-100 {
        margin-right: 100px !important;
    }
}

/*[Contact_Form]*/
/*====================================================================================================*/
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    row-gap: 35px;
    margin-bottom: 35px;
}

.form label {
    color: #5B5B5B;
    text-transform: uppercase;
    font-size: var(--font-size-6);
}

.form #msg,
.form #recaptcha {
    grid-column: 1/3;
}

@media only screen and (max-width:767.98px) {
    .form {
        grid-template-columns: 1fr;
    }

    .form #msg,
    .form #recaptcha {
        grid-column: 1/2;
    }
}

.form input,
.form textarea,
.form select,
.form input:focus,
.form textarea:focus,
.form select:focus {
    border-radius: 0;
    border: 1px solid #0D0E141A !important;
    color: #0D0E14;
    background-color: #ffffff;
    text-transform: none;
}

::-webkit-input-placeholder {
    color: #0D0E14;
    font-size: 16px;
    font-weight: 400;
}

.form .enquiry::placeholder {
    color: #0D0E14;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}

#send {
    position: relative;
    width: fit-content;
    display: flex;
}

#send .wpcf7-spinner {
    position: absolute;
    right: -65px;
    top: 5px;
}

/*[Map_Presets]*/
.map-frame {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.map-frame .wpb_gmaps_widget {
    margin-bottom: 0;
}

.map-frame .wpb_gmaps_widget>.wpb_wrapper {
    padding: 0 !important;
}

.map-frame iframe {
    max-height: var(--map-height);
}

.map-frame .wpb_gmaps_widget .wpb_wrapper {
    background-color: transparent;
}

/*[Text_Presets]*/
/*====================================================================================================*/

body,
p,
em,
ol,
ul,
li,
tr,
th,
td,
dl,
ins,
sub,
sup,
big,
cite,
form,
small,
label,
table,
figure,
button,
legend,
strike,
address,
caption,
fieldset,
blockquote {
    line-height: 1.5;
    --theme-line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    --theme-line-height: 1.3;
}

.text-graphik {
    font-family: var(--theme-font-family) !important;
}

span.add {
    display: inline-block;
    padding-right: 0.35em;
}

span.add:last-child {
    padding-right: 0;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-just {
    text-align: justify !important;
}

.fs-1 {
    font-size: var(--font-size-1);
}

.fs-2 {
    font-size: var(--font-size-2);
}

.fs-3 {
    font-size: var(--font-size-3);
}

.fs-4 {
    font-size: var(--font-size-4);
}

.fs-5 {
    font-size: var(--font-size-5);
}

.fs-6 {
    font-size: var(--font-size-6);
}

.fs-7 {
    font-size: var(--font-size-7);
}

.fs-t {
    font-size: var(--font-size-t);
}

.fs-s {
    font-size: var(--font-size-s);
}

@media only screen and (max-width:999.98px) {
    .t-text-left {
        text-align: left !important;
    }

    .t-text-right {
        text-align: right !important;
    }

    .t-text-center {
        text-align: center !important;
    }

    .t-text-just {
        text-align: justify !important;
    }
}

@media only screen and (max-width:767.98px) {
    .m-text-left {
        text-align: left !important;
    }

    .m-text-right {
        text-align: right !important;
    }

    .m-text-center {
        text-align: center !important;
    }

    .m-text-just {
        text-align: justify !important;
    }
}

.text-white {
    color: var(--white-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-theme {
    color: var(--theme-color) !important;
}

.upper {
    text-transform: uppercase !important;
}

.lower {
    text-transform: lowercase !important;
}

.cap {
    text-transform: capitalize !important;
}

.main-title {
    font-size: var(--font-size-2);
    color: var(--black-color);
    font-weight: 700;
    text-transform: capitalize;
}

.mini-title {
    font-size: var(--font-size-s);
    color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
}

.subtitle {
    font-size: var(--font-size-3);
    color: var(--black-color);
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500,
.fw-500 strong,
.strong-500 strong {
    font-weight: 500 !important;
}

.fw-600,
.fw-600 strong,
.strong-600 strong {
    font-weight: 600 !important;
}

.fw-700,
.fw-700 strong,
.strong-700 strong {
    font-weight: 700 !important;
}

.fw-800,
.fw-800 strong,
.strong-800 strong {
    font-weight: 800 !important;
}

.fw-900,
.fw-900 strong,
.strong-900 strong {
    font-weight: 900 !important;
}

.no-br br {
    display: none !important;
}

@media only screen and (max-width:767.98px) {
    .m-no-br br {
        display: none !important;
    }
}

/*[Button_Presets]*/
/*====================================================================================================*/
.all-btn {
    margin-bottom: 35px;
}

.all-btn .vc_general.vc_btn3 {
    padding: 10px 25px;
    background-image: none;
    position: relative;
    transition: var(--transition-effect);
    font-weight: 400;
    font-size: var(--font-size-s);
}

/*[Slick_Slider_Presets]*/
/*====================================================================================================*/
.slick-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    color: #D9D9D9;
    padding: 0;
}

.slick-dots button {
    font-size: 0 !important;
}

.slick-dots li {
    list-style-type: none;
    position: relative;
}

.slick-dots li {
    font-size: 0;
    height: 8px;
    width: 8px;
    background-color: #D9D9D9;
    cursor: pointer;
    border-radius: 50%;
}

.slick-dots li:hover,
.slick-dots .slick-active {
    background-color: var(--theme-color);
}

.slick-arrow {
    font-size: 0;
    background-color: transparent !important;
    cursor: pointer;
    position: absolute;
    z-index: 9;
}

.slick-next {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.slick-prev {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.slick-arrow:before {
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    background-color: transparent !important;
    font-size: 20px;
    font-family: var(--fa-icon);
    aspect-ratio: 1 / 1;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color);
    transition: var(--transition-effect);
    font-weight: 900;
    z-index: 9;

}

.slick-arrow:hover:before {
    background-color: var(--theme-color) !important;
    color: #ffffff;
}

.slick-next:before {
    content: '\f061';
}

.slick-prev:before {
    content: '\f060';
}

@media only screen and (max-width:767.98px) {
    .slick-arrow:before {
        width: 40px;
        height: 40px;
    }

    .slick-next {
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

    .slick-prev {
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
    }
}

/*[Image_Presets]*/
/*====================================================================================================*/
.full-w-img,
.full-w-img .vc_figure,
.full-w-img .vc_single_image-wrapper,
.full-w-img img {
    width: 100%;
}

.full-h-img,
.full-h-img .vc_figure,
.full-h-img .vc_single_image-wrapper,
.full-h-img img {
    height: 100%;
}

.full-w-img.full-h-img img {
    object-fit: cover;
}

.absolute-img {
    margin-bottom: 0;
    padding-bottom: 35px;
}

.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper:has(.absolute-img) {
    position: relative;
}

@media only screen and (min-width:768px) {
    .absolute-img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper:has(.absolute-img) {
        height: 100%;
    }
}




/*@supports not (-webkit-touch-callout: none) {*/
/*    .bg-para {*/
/*        background-repeat: no-repeat;*/
/*        background-size: cover !important;*/
/*    }*/
/*}*/

.zoom-effect>.vc_figure {
    overflow: hidden !important;
}

.zoom-effect>.vc_figure img {
    transition: var(--transition-effect);
}

.zoom-effect>.vc_figure:hover img {
    transform: scale(1.1);
}

.border-radius {
    border-radius: var(--border-radius);
    overflow: hidden !important;
}

.border-radius-tl {
    border-top-left-radius: var(--border-radius);
    overflow: hidden !important;
}

.border-radius-tr {
    border-top-right-radius: var(--border-radius);
    overflow: hidden !important;
}

.border-radius-bl {
    border-bottom-left-radius: var(--border-radius);
    overflow: hidden !important;
}

.border-radius-br {
    border-bottom-right-radius: var(--border-radius);
    overflow: hidden !important;
}

/*[Formats]*/
/*====================================================================================================*/
#main {
    counter-reset: counter;
}

.number-counter {
    counter-increment: counter;
}

.number-counter::before {
    content: counter(counter, decimal-leading-zero) ". ";
}

/*[Animation_Presets]*/
/*====================================================================================================*/
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.delay-6 {
    animation-delay: 1.2s;
}

.delay-7 {
    animation-delay: 1.4s;
}

.delay-8 {
    animation-delay: 1.6s;
}

.delay-9 {
    animation-delay: 1.85s;
}

.delay-10 {
    animation-delay: 2s;
}

.delay-11 {
    animation-delay: 2.2s;
}

.delay-12 {
    animation-delay: 2.4s;
}

.delay-13 {
    animation-delay: 2.6s;
}

.delay-14 {
    animation-delay: 2.8s;
}

.delay-15 {
    animation-delay: 3s;
}

.delay-16 {
    animation-delay: 3.2s;
}

.delay-17 {
    animation-delay: 3.4s;
}

.delay-18 {
    animation-delay: 3.6s;
}

.delay-19 {
    animation-delay: 3.8s;
}

.delay-20 {
    animation-delay: 4s;
}


.fade-in-75,
.fade-in-66,
.fade-in-50,
.fade-up-66,
.fade-up-50,
.fade-up-75,
.fade-down-66,
.fade-down-50,
.fade-down-75,
.fade-left-75,
.fade-left-66,
.fade-left-50,
.fade-right-66,
.fade-right-50,
.fade-right-75,
#footer [data-column="widget-area-1"],
#footer [data-column="widget-area-2"],
#footer [data-column="widget-area-3"],
#footer [data-column="widget-area-4"],
#footer [data-column="widget-area-5"],
#footer [data-column="widget-area-6"] {
    transition: var(--gsap-effect);
    will-change: transform;
}

.fade-in-66,
.fade-in-50,
.fade-in-75 {
    transition: var(--gsap-effect-fast);
    will-change: opacity;
}

/*[Position_Presets]*/
/*====================================================================================================*/
.mw-100 {
    max-width: 100px;
}

.mw-150 {
    max-width: 150px;
}

.mw-200 {
    max-width: 200px;
}

.mw-250 {
    max-width: 250px;
}

.mw-300 {
    max-width: 300px;
}

.mw-350 {
    max-width: 350px;
}

.mw-400 {
    max-width: 400px;
}

.mw-450 {
    max-width: 450px;
}

.mw-500 {
    max-width: 500px;
}

.mw-550 {
    max-width: 550px;
}

.mw-600 {
    max-width: 600px;
}

.mw-650 {
    max-width: 650px;
}

.mw-700 {
    max-width: 700px;
}

.mw-750 {
    max-width: 750px;
}

.mw-800 {
    max-width: 800px;
}

.mw-850 {
    max-width: 850px;
}

.mw-900 {
    max-width: 900px;
}

.mw-950 {
    max-width: 950px;
}

.mw-1000 {
    max-width: 1000px;
}

.mw-10p {
    max-width: 10%;
}

.mw-15p {
    max-width: 15%;
}

.mw-20p {
    max-width: 20%;
}

.mw-25p {
    max-width: 25%;
}

.mw-30p {
    max-width: 30%;
}

.mw-35p {
    max-width: 35%;
}

.mw-40p {
    max-width: 40%;
}

.mw-45p {
    max-width: 45%;
}

.mw-50p {
    max-width: 50%;
}

.mw-55p {
    max-width: 55%;
}

.mw-60p {
    max-width: 60%;
}

.mw-65p {
    max-width: 65%;
}

.mw-70p {
    max-width: 70%;
}

.mw-75p {
    max-width: 75%;
}

.mw-80p {
    max-width: 80%;
}

.mw-85p {
    max-width: 85%;
}

.mw-90p {
    max-width: 90%;
}

.mw-95p {
    max-width: 95%;
}

.mw-100p {
    max-width: 100%;
}

.position-left {
    margin-right: auto;
}

.position-right {
    margin-left: auto;
}

.position-center {
    margin-inline: auto;
}

@media only screen and (max-width:767.98px) {
    .m-mw-100 {
        max-width: 100px;
    }

    .m-mw-150 {
        max-width: 150px;
    }

    .m-mw-200 {
        max-width: 200px;
    }

    .m-mw-250 {
        max-width: 250px;
    }

    .m-mw-300 {
        max-width: 300px;
    }

    .m-mw-350 {
        max-width: 350px;
    }

    .m-mw-400 {
        max-width: 400px;
    }

    .m-mw-450 {
        max-width: 450px;
    }

    .m-mw-500 {
        max-width: 500px;
    }

    .m-mw-550 {
        max-width: 550px;
    }

    .m-mw-600 {
        max-width: 600px;
    }

    .m-mw-650 {
        max-width: 650px;
    }

    .m-mw-700 {
        max-width: 700px;
    }

    .m-mw-750 {
        max-width: 750px;
    }

    .m-mw-800 {
        max-width: 800px;
    }

    .m-mw-850 {
        max-width: 850px;
    }

    .m-mw-900 {
        max-width: 900px;
    }

    .m-mw-950 {
        max-width: 950px;
    }

    .m-mw-1000 {
        max-width: 1000px;
    }

    .m-mw-10p {
        max-width: 10%;
    }

    .m-mw-15p {
        max-width: 15%;
    }

    .m-mw-20p {
        max-width: 20%;
    }

    .m-mw-25p {
        max-width: 25%;
    }

    .m-mw-30p {
        max-width: 30%;
    }

    .m-mw-35p {
        max-width: 35%;
    }

    .m-mw-40p {
        max-width: 40%;
    }

    .m-mw-45p {
        max-width: 45%;
    }

    .m-mw-50p {
        max-width: 50%;
    }

    .m-mw-55p {
        max-width: 55%;
    }

    .m-mw-60p {
        max-width: 60%;
    }

    .m-mw-65p {
        max-width: 65%;
    }

    .m-mw-70p {
        max-width: 70%;
    }

    .m-mw-75p {
        max-width: 75%;
    }

    .m-mw-80p {
        max-width: 80%;
    }

    .m-mw-85p {
        max-width: 85%;
    }

    .m-mw-90p {
        max-width: 90%;
    }

    .m-mw-95p {
        max-width: 95%;
    }

    .m-mw-100p {
        max-width: 100%;
    }

    .m-position-left {
        margin-right: auto;
    }

    .m-position-right {
        margin-left: auto;
    }

    .m-position-center {
        margin-inline: auto;
    }
}

/*[Flex/Grid_Presets]*/
/*====================================================================================================*/
.flex-col {
    display: flex !important;
    flex-direction: column !important;
}

.flex-row {
    display: flex !important;
    flex-direction: row !important;
}

.grid-box {
    display: grid !important;
}

.flex-row.full>*,
.flex-col.full>*,
.grid-box>* {
    width: 100%;
}

.btn-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.btn-flex-row>.wpb_column {
    width: fit-content;
}

.grid-column-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-column-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-column-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-column-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-column-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-35 {
    gap: 35px;
}

.gap-40 {
    gap: 40px;
}

.gap-45 {
    gap: 45px;
}

.gap-50 {
    gap: 50px;
}

.x-gap-10 {
    column-gap: 10px;
}

.x-gap-15 {
    column-gap: 15px;
}

.x-gap-20 {
    column-gap: 20px;
}

.x-gap-25 {
    column-gap: 25px;
}

.x-gap-30 {
    column-gap: 30px;
}

.x-gap-35 {
    column-gap: 35px;
}

.x-gap-40 {
    column-gap: 40px;
}

.x-gap-45 {
    column-gap: 45px;
}

.x-gap-50 {
    column-gap: 50px;
}

.y-gap-10 {
    row-gap: 10px;
}

.y-gap-15 {
    row-gap: 15px;
}

.y-gap-20 {
    row-gap: 20px;
}

.y-gap-25 {
    row-gap: 25px;
}

.y-gap-30 {
    row-gap: 30px;
}

.y-gap-35 {
    row-gap: 35px;
}

.y-gap-40 {
    row-gap: 40px;
}

.y-gap-45 {
    row-gap: 45px;
}

.y-gap-50 {
    row-gap: 50px;
}

@media only screen and (min-width:1000px) {
    .d-flex-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .d-flex-row {
        display: flex !important;
        flex-direction: row !important;
    }

    .d-grid-box {
        display: grid !important;
    }

    .d-flex-row.full>*,
    .d-flex-col.full>*,
    .d-grid-box>* {
        width: 100%;
    }

    .d-grid-column-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .d-grid-column-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .d-grid-column-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .d-grid-column-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .d-grid-column-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .d-gap-10 {
        gap: 10px;
    }

    .d-gap-15 {
        gap: 15px;
    }

    .d-gap-20 {
        gap: 20px;
    }

    .d-gap-25 {
        gap: 25px;
    }

    .d-gap-30 {
        gap: 30px;
    }

    .d-gap-35 {
        gap: 35px;
    }

    .d-gap-40 {
        gap: 40px;
    }

    .d-gap-45 {
        gap: 45px;
    }

    .d-gap-50 {
        gap: 50px;
    }

    .d-x-gap-10 {
        column-gap: 10px;
    }

    .d-x-gap-15 {
        column-gap: 15px;
    }

    .d-x-gap-20 {
        column-gap: 20px;
    }

    .d-x-gap-25 {
        column-gap: 25px;
    }

    .d-x-gap-30 {
        column-gap: 30px;
    }

    .d-x-gap-35 {
        column-gap: 35px;
    }

    .d-x-gap-40 {
        column-gap: 40px;
    }

    .d-x-gap-45 {
        column-gap: 45px;
    }

    .d-x-gap-50 {
        column-gap: 50px;
    }

    .d-y-gap-10 {
        row-gap: 10px;
    }

    .d-y-gap-15 {
        row-gap: 15px;
    }

    .d-y-gap-20 {
        row-gap: 20px;
    }

    .d-y-gap-25 {
        row-gap: 25px;
    }

    .d-y-gap-30 {
        row-gap: 30px;
    }

    .d-y-gap-35 {
        row-gap: 35px;
    }

    .d-y-gap-40 {
        row-gap: 40px;
    }

    .d-y-gap-45 {
        row-gap: 45px;
    }

    .d-y-gap-50 {
        row-gap: 50px;
    }
}

@media only screen and (max-width:999.98px) {
    .t-flex-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .t-flex-row {
        display: flex !important;
        flex-direction: row !important;
    }

    .t-grid-box {
        display: grid !important;
    }

    .t-flex-row.full>*,
    .t-flex-col.full>*,
    .t-grid-box>* {
        width: 100%;
    }

    .t-grid-column-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .t-grid-column-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .t-grid-column-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .t-grid-column-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .t-grid-column-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .t-gap-10 {
        gap: 10px;
    }

    .t-gap-15 {
        gap: 15px;
    }

    .t-gap-20 {
        gap: 20px;
    }

    .t-gap-25 {
        gap: 25px;
    }

    .t-gap-30 {
        gap: 30px;
    }

    .t-gap-35 {
        gap: 35px;
    }

    .t-gap-40 {
        gap: 40px;
    }

    .t-gap-45 {
        gap: 45px;
    }

    .t-gap-50 {
        gap: 50px;
    }

    .t-x-gap-10 {
        column-gap: 10px;
    }

    .t-x-gap-15 {
        column-gap: 15px;
    }

    .t-x-gap-20 {
        column-gap: 20px;
    }

    .t-x-gap-25 {
        column-gap: 25px;
    }

    .t-x-gap-30 {
        column-gap: 30px;
    }

    .t-x-gap-35 {
        column-gap: 35px;
    }

    .t-x-gap-40 {
        column-gap: 40px;
    }

    .t-x-gap-45 {
        column-gap: 45px;
    }

    .t-x-gap-50 {
        column-gap: 50px;
    }

    .t-y-gap-10 {
        row-gap: 10px;
    }

    .t-y-gap-15 {
        row-gap: 15px;
    }

    .t-y-gap-20 {
        row-gap: 20px;
    }

    .t-y-gap-25 {
        row-gap: 25px;
    }

    .t-y-gap-30 {
        row-gap: 30px;
    }

    .t-y-gap-35 {
        row-gap: 35px;
    }

    .t-y-gap-40 {
        row-gap: 40px;
    }

    .t-y-gap-45 {
        row-gap: 45px;
    }

    .t-y-gap-50 {
        row-gap: 50px;
    }
}

@media only screen and (max-width:767.98px) {
    .m-flex-col {
        display: flex !important;
        flex-direction: column !important;
    }

    .m-flex-row {
        display: flex !important;
        flex-direction: row !important;
    }

    .m-grid-box {
        display: grid !important;
    }

    .m-flex-row.full>*,
    .m-flex-col.full>*,
    .m-grid-box>* {
        width: 100%;
    }

    .m-grid-column-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .m-grid-column-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .m-grid-column-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .m-grid-column-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .m-grid-column-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .m-gap-10 {
        gap: 10px;
    }

    .m-gap-15 {
        gap: 15px;
    }

    .m-gap-20 {
        gap: 20px;
    }

    .m-gap-25 {
        gap: 25px;
    }

    .m-gap-30 {
        gap: 30px;
    }

    .m-gap-35 {
        gap: 35px;
    }

    .m-gap-40 {
        gap: 40px;
    }

    .m-gap-45 {
        gap: 45px;
    }

    .m-gap-50 {
        gap: 50px;
    }

    .m-x-gap-10 {
        column-gap: 10px;
    }

    .m-x-gap-15 {
        column-gap: 15px;
    }

    .m-x-gap-20 {
        column-gap: 20px;
    }

    .m-x-gap-25 {
        column-gap: 25px;
    }

    .m-x-gap-30 {
        column-gap: 30px;
    }

    .m-x-gap-35 {
        column-gap: 35px;
    }

    .m-x-gap-40 {
        column-gap: 40px;
    }

    .m-x-gap-45 {
        column-gap: 45px;
    }

    .m-x-gap-50 {
        column-gap: 50px;
    }

    .m-y-gap-10 {
        row-gap: 10px;
    }

    .m-y-gap-15 {
        row-gap: 15px;
    }

    .m-y-gap-20 {
        row-gap: 20px;
    }

    .m-y-gap-25 {
        row-gap: 25px;
    }

    .m-y-gap-30 {
        row-gap: 30px;
    }

    .m-y-gap-35 {
        row-gap: 35px;
    }

    .m-y-gap-40 {
        row-gap: 40px;
    }

    .m-y-gap-45 {
        row-gap: 45px;
    }

    .m-y-gap-50 {
        row-gap: 50px;
    }
}

/* [Banner] */
/*====================================================================================================*/
.home-banner-sec {
    background-color: var(--grey-19-color);
    position: relative !important;
}

/* .home-banner > .wpb_column > .vc_column-inner > .wpb_wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: calc(var(--row-gap) * -1);
    left: calc(var(--side-gap) * -1.5);
    aspect-ratio: 612/768;
    width: auto;
    height: calc(100% + var(--row-gap));
    background-size: contain;
    background-image: url(./images/banner-icon.webp);
    z-index: -1;
    opacity: 0.03;
} */

.home-banner-sec,
.home-banner,
.home-banner>.wpb_column>.vc_column-inner {
    aspect-ratio: var(--home-banner-size);
}

@media only screen and (min-width: 1000px) {

    .home-banner-sec,
    .home-banner,
    .home-banner>.wpb_column>.vc_column-inner {
        height: calc(100vh + 20px) !important;
        /* width: 100% !important; */
    }
    
      
}

/* .home-banner > .wpb_column {
    position: absolute;
} */

.home-banner>.wpb_column>.vc_column-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--row-gap) !important;
    padding-bottom: var(--row-gap) !important;
    padding-right: var(--side-gap) !important;
    padding-left: var(--side-gap) !important;
    background-position: top !important;
    position: relative;
}

@media only screen and (max-width:767.98px) {
    .home-banner>.wpb_column>.vc_column-inner {
        background-position: 70% !important;
    }

    .home-banner>.wpb_column>.vc_column-inner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 0;
        background: var(--white-color);
        background-blend-mode: multiply;
        opacity: 0.2;
        z-index: 0;
        border-radius: calc(var(--row-gap) / 2);
    }

    .home-banner>.wpb_column>.vc_column-inner>.wpb_wrapper {
        position: relative;
        z-index: 1;
    }
}

.home-banner>.wpb_column>.vc_column-inner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(285deg, rgba(145, 179, 191, 0.30) 0.1%, rgba(179, 203, 206, 0.30) 99.9%);
    background-blend-mode: multiply;
    opacity: 0.3;
}

@media only screen and (min-width:1000px) {
    .home-banner>.wpb_column:first-child>.vc_column-inner:before {
        display: none;
    }
    
    .bg-para {
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover !important;
    }
}

.home-banner>.wpb_column>.vc_column-inner>.wpb_wrapper {
    z-index: 2 !important;
    position: relative !important;
    /*height: 100% !important;*/
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: calc(var(--row-gap) + 35px);
}

.home-banner-title {
    font-size: var(--banner-title);
    color: var(--white-color);
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}

.home-banner-title-s {
    font-size: calc(var(--banner-title) / 57 * 30);
    margin-bottom: 0 !important;
    line-height: 1 !important;
}


@media only screen and (min-width:1000px) {

    .home-banner-mini-title,
    .home-banner-title {
        margin-bottom: 20px;
    }
}

.banner-btn {
    opacity: 0;
}

.banner-btn {
    opacity: 1;
    transition: var(--gsap-effect-slow);
    transition-delay: 1.5s;
}

.pass .home-banner-title,
.pass .banner-btn,
.pass .home-banner-text {
    opacity: 1;
    animation: opacityDown 0.3s forwards;
}

@keyframes opacityUp {
    to {
        opacity: 1;
    }
}

@keyframes opacityDown {
    to {
        opacity: 0;
    }
}

.dot-trigger-wrapper {
    display: block;
    position: absolute;
    bottom: var(--inner-side-gap);
    left: calc(var(--side-gap) / 3 * 2);
    bottom: var(--row-gap);
    transform: translate(0, 100%);
    z-index: 49;
}

@media only screen and (max-width:999.98px) {
    .dot-trigger-wrapper {
        bottom: 35px;
        transform: translate(0, 0);
    }
}

.dot-trigger-wrapper>.wpb_wrapper {
    display: flex;
    gap: 15px;
}

.dot-trigger {
    aspect-ratio: 1/1;
    width: 10px;
    height: 10px;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: var(--transition-effect);
    cursor: pointer;
    opacity: 0.5;
}

.dot-trigger.active,
.dot-trigger:hover {
    background-color: var(--white-color);
    opacity: 1;
}

.home-banner>.wpb_column {
    z-index: 3;
    transform: translate(0) scale(0.5);
    opacity: 0;
    transition: var(--transition-effect) !important;
}

.home-banner>.wpb_column.pass {
    transform: translate(0, 100%) scale(0.7);
    transition: var(--gsap-effect) !important;
    z-index: 8;
}

.home-banner>.wpb_column {
    z-index: 5;
    opacity: 1;
    transform: translate(0) scale(1);
    transition: var(--gsap-effect) !important;
}

.home-banner-text {
    font-size: calc(var(--banner-mini-title) * 1.1);
    font-weight: 400;
    max-width: 35vw;
    color: var(--white-color);
}

@media only screen and (max-width:999.98px) {
    .home-banner-text {
        max-width: 75vw;
    }
}

@media only screen and (max-width:767.98px) {
    .home-banner-text {
        max-width: 100%;
    }
}

.banner-mini-title {
    animation: 0.5s wakeUp ease-out forwards 0.7s;
    transform: rotate3d(1, 0, 0, 90deg);
    transform-origin: bottom;
}

@keyframes wakeUp {
    0% {
        transform: rotate3d(1, 0, 0, 90deg);
    }

    100% {
        transform: rotate3d(1, 0, 0, 0deg);
    }
}

.home-banner-title {
    animation: 0.7s slideTitle ease-out forwards 1s;
    transform: translateX(min(-50vw, calc(-100% - var(--side-gap))));
    opacity: 0;
}

.banner-title {
    animation: 0.7s slideTitle ease-out forwards 1.5s;
    transform: translateX(min(-50vw, calc(-100% - var(--side-gap))));
    font-weight: 500;
    opacity: 0;
    margin-bottom: 10px;
}

@keyframes slideTitle {

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.home-banner-text {
    animation: 1s opacityUp ease-out forwards 1.5s;
    opacity: 0;
}

.banner-text {
    animation: 1s opacityUp ease-out forwards 2s;
    opacity: 0;
}

.banner-img {
    animation: 2s opacityUp ease-out forwards 1s;
    opacity: 0;
}

.banner-title {
    font-size: calc(var(--banner-title) * 0.95);
    color: var(--white-color);
    font-weight: 600;
    line-height: 1.3;
}

.banner-sec {
    aspect-ratio: var(--banner-size);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: var(--row-gap) calc(var(--side-gap) - 15px) !important;
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* .banner-sec > .vc_row {
    padding-top:35px;
} */

.banner-sec:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(11, 26, 52, 0.00) 0%, rgba(11, 26, 52, 0.20) 100%);
    z-index: 0;
}

/* 20px */
.col-gap-20 {
    margin-inline: -20px !important;
}

.vc_section[data-vc-full-width]>.col-gap-20 {
    margin-inline: -5px !important;
}

.col-gap-20>.wpb_column>.vc_column-inner {
    padding-inline: 20px !important;
}

/* 25px */
.col-gap-25 {
    margin-inline: -25px !important;
}

.vc_section[data-vc-full-width]>.col-gap-25 {
    margin-inline: -10px !important;
}

.col-gap-25>.wpb_column>.vc_column-inner {
    padding-inline: 25px !important;
}

/* 30px */
.col-gap-30 {
    margin-inline: -30px !important;
}

.vc_section[data-vc-full-width]>.col-gap-30 {
    margin-inline: -15px !important;
}

.col-gap-30>.wpb_column>.vc_column-inner {
    padding-inline: 30px !important;
}

/* 35px */
.col-gap-35 {
    margin-inline: -35px !important;
}

.vc_section[data-vc-full-width]>.col-gap-35 {
    margin-inline: -20px !important;
}

.col-gap-35>.wpb_column>.vc_column-inner {
    padding-inline: 35px !important;
}

/* 40px */
.col-gap-40 {
    margin-inline: -40px !important;
}

.vc_section[data-vc-full-width]>.col-gap-40 {
    margin-inline: -25px !important;
}

.col-gap-40>.wpb_column>.vc_column-inner {
    padding-inline: 40px !important;
}

/* 45px */
.col-gap-45 {
    margin-inline: -45px !important;
}

.vc_section[data-vc-full-width]>.col-gap-45 {
    margin-inline: -30px !important;
}

.col-gap-45>.wpb_column>.vc_column-inner {
    padding-inline: 45px !important;
}

/* 50px */
.col-gap-50 {
    margin-inline: -50px !important;
}

.vc_section[data-vc-full-width]>.col-gap-50 {
    margin-inline: -35px !important;
}

.col-gap-50>.wpb_column>.vc_column-inner {
    padding-inline: 50px !important;
}

/* 
.banner-sec:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: calc(var(--side-gap) * -0.5);
    aspect-ratio: 612/768;
    width: auto;
    height: calc(100% + var(--row-gap));
    background-size: cover;
    background-image: url(./images/banner-icon.webp);
    z-index: 0;
    opacity: 0.05;
} */

.vc_parallax .vc_parallax-inner {
    background-position: 50% 50%;
}

.home-banner-mini-title {
    font-size: var(--banner-mini-title);
    font-weight: 400;
    padding-inline: calc(var(--banner-mini-title) * 2.1);
    padding-block: calc(var(--banner-mini-title) * 0.35);
    color: var(--white-color);
    text-transform: capitalize;
    border-radius: calc(var(--banner-mini-title) * 1.7) 0 0 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(7.5px);
    width: fit-content;
}

.closer-corner-sec {
    margin-inline: calc(var(--side-gap) / 3 * -2);
    overflow: hidden;
    border-radius: calc(var(--row-gap) / 2);
    width: calc(100% + (var(--side-gap) / 3 * 4)) !important;
}

.home-banner>.wpb_column>.vc_column-inner:before {
    content: '';
    display: block !important;
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(59.14% 59.14% at 50% 50%, rgba(11, 26, 52, 0.00) 0%, rgba(11, 26, 52, 0.50) 100%);
    background-blend-mode: multiply;
}

.home-banner-btn-box>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: max(1vw, 15px);
    justify-content: flex-start;
    align-items: center;
}

@media only screen and (max-width:767.98px) {
    .home-banner-btn-box>.wpb_column>.vc_column-inner>.wpb_wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.full-col-img{
    display: block;
    height: 100%;
    margin-bottom: 0;
}

.full-col-img *{
    display: block;
    width:100%;
    height: 100% !important;
}

.full-col-img img{
    object-fit: cover;
    object-position: center;
}


/*[Custom]*/
/*====================================================================================================*/

/*Layout #main-container {*/
/*    position: relative;*/
/*}*/

/*#main-container:before,*/
/*#main-container:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    display: block;*/
/*    top: 0;*/
/*    width: 1px;*/
/*    height: 100%;*/
/*    background-color: red;*/
/*    z-index: 999;*/
/*}*/

/*#main-container:before {*/
/*    left: var(--side-gap);*/
/*}*/

/*#main-container:after {*/
/*    right: var(--side-gap);*/
/*}*/

.home-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading {
    font-family: var(--theme-font-family);
    color: #F3F3F3;
    font-weight: 500;
    font-size: 56px;
    margin-bottom: var(--inner-row-gap);
}

.home-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading b {
    font-weight: 300 !important;
}

.home-sec {
    padding-top: 150px !important;
}

/* Base triangle */
.triangle {
    position: relative;
}

.triangle::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}

/* Right-facing corner */
.home-row .triangle-right .wpb_wrapper p::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 12px solid #FFB700;
    border-left: 12px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
}

.home-row .vc_btn3:hover {
    color: #242424 !important;
    background-color: var(--theme-color) !important;
}

.home-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
    font-size: var(--font-size-7);
}

.home-second-inner>.wpb_column>.vc_column-inner>.wpb_wrapper{
    position:relative;
    align-content: center;
}

.home-second-inner .wpb_wrapper>.wpb_single_image:nth-child(2)>.vc_figure {
    display: inline-block;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25) !important;
    border-radius: 20px;
    margin-bottom: 35px;
}

.home-second-inner .wpb_wrapper>.wpb_single_image:nth-child(2)>.vc_figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-second-inner .vc_btn3:hover {
    color: #242424 !important;
    background-color: var(--theme-color) !important;
}


.home-second-inner>.wpb_column:last-child .wpb_text_column {
    color: #616161;
    font-weight: 400;
    text-align: justify;
}

.home-second-sec {
    position: relative;
}

.home-second-sec::before {
    content: "";
    position: absolute;
    width: 46vw;
    aspect-ratio: 885 / 587;
    height: auto;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0.1;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
    transform: translate(30%, 30%);
}

.home-second-sec>* {
    position: relative;
    z-index: 1;
}

.badge .vc_single_image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--second-theme-color);
    overflow: visible;
}

.badge .vc_single_image-wrapper img {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
}

/* rotating circular text */
.badge .vc_single_image-wrapper::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 3;
    border-radius: 50%;
    background-image: url(./images/Group-60.webp);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    animation: spin 40s linear infinite;
}

@keyframes badgeTextRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: 5;
}

.home-second-inner>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_single_image:last-child {
    padding-right: 75px;
    padding-top: 75px;
}

.home-second-inner:before {
    display: none;
}

.home-second-inner:after {
    display: none;
}

.home-second-inner{
    margin-bottom:65px;
}

.home-second-inner .vc_do_btn {
    margin-bottom: var(--inner-row-gap);
}

span.count {
    color: #242424;
    font-size: 64px;
    font-weight: 500;
}

span.symbol {
    color: var(--theme-color);
    font-size: 64px;
    font-weight: 500;
}

.home-counter-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:first-child {
    margin-bottom: 0px !important;
}

.home-counter-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:last-child {
    font-size: 18px;
    color: #616161;
}


.home-third-inner>.wpb_column:last-child .wpb_text_column {
    text-align: justify;
}

.home-counter-row:before {
    display: none;
}

.home-counter-row:after {
    display: none;
}

.home-counter-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.home-counter-row>.wpb_column {
    width: fit-content;
}

.home-third-inner>.wpb_column:last-child .vc_btn3 {
    padding: 0px;
    background: transparent;
    border: 0px;
    color: var(--second-theme-color);
    font-weight: 500;
    font-size: var(--font-size-t);
}

.home-third-inner .triangle-right .vc_btn3::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid #FFB700;
    border-left: 8px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.home-third-inner .triangle-right .vc_btn3:hover::after {
    transform: rotate(45deg);
}

.home-services-row .vc_column_container {
    position: relative;
}

.home-services-row .vc_figure {
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.1);
}


.home-services-row .wpb_singleimage_heading {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    margin: 0 !important;
    padding: 15px;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    transition: var(--transition-effect);
}

.home-services-row .wpb_single_image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 80%);
}

.home-services-row .wpb_wrapper .vc_btn3 {
    padding: 0px;
    background: transparent !important;
    border: 0px;
    color: var(--second-theme-color) !important;
    font-weight: 500;
    font-size: var(--font-size-t);
}

.home-services-row .triangle-right .vc_btn3::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid #FFB700;
    border-left: 8px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.home-services-row .triangle-right .vc_btn3:hover::after {
    transform: rotate(45deg);
}

.home-services-row .service-button {
    position: absolute;
    z-index: 3;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-effect);
}


.home-services-row .service-button {
    position: absolute;
    z-index: 3;
    left: 15px;
    right: 15px;
    bottom: 15px;
    margin: 0;
    padding: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: var(--transition-effect);
}

.home-services-row .wpb_wrapper {
    position: relative;
}

/* Hover */
.home-services-row .wpb_wrapper:hover .service-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Move heading ABOVE the button */
.home-services-row .wpb_wrapper:hover .wpb_singleimage_heading {
    transform: translateY(-30px);
}

.small-title {
    display: flex;
    font-size: 16px;
    color: var(--second-theme-color);
    font-weight: 500;
    column-gap: 10px;
    align-items: center;
    white-space: nowrap;
    margin-bottom: var(--inner-row-gap);
}

.small-title:before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--second-theme-color);
}


.why-choose-sec>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading {
    justify-content: center;
}

.why-choose-sec .big-title {
    margin-inline: auto;
    margin-bottom: var(--inner-large-row-gap);
}

.icon-card {
    width: 60px;
    height: 60px;
    background: #E3A000;
    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-effect);
}

.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:hover .icon-card {
    background: #F6F1E6;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}


.icon-card svg {
    width: 35px !important;
    height: 35px !important;
}


/* Default: white icon */
.icon-card svg path {
    fill: #FFFFFF !important;
    transition: var(--transition-effect);
}

/* Hover: gold icon */
.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:hover .icon-card svg path {
    fill: #E3A000 !important;
}


.icon-card>.wpb_wrapper {
    display: flex;
    align-items: center;
}

.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
}

.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:last-child .vc_custom_heading {
    color: #242424;
    font-weight: 500;
    font-size: 22px;
}

.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:last-child .wpb_text_column {
    color: #616161;
    font-weight: 400;
    font-size: var(--font-size-t);
    margin-bottom: 10px;
}

.choose-details .vc_btn3 {
    padding: 0px !important;
    background: transparent !important;
    border: 0px !important;
    color: var(--second-theme-color) !important;
    font-weight: 500 !important;
    font-size: var(--font-size-t) !important;
}

.why-choose-inner .triangle-right .vc_btn3::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid #FFB700;
    border-left: 8px solid transparent;
    margin-left: 8px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:hover .vc_btn3::after {
    transform: rotate(45deg);
}

.why-choose-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 70px;
}

.why-choose-inner:before {
    display: none;
}

.why-choose-inner:after {
    display: none;
}

.why-choose-inner>.wpb_column:first-child .choose-details::before {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: #E2E2E2;
    display: block;
    z-index: 10;
}

.why-choose-inner>.wpb_column:nth-child(2) .choose-details::before {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    width: 1px;
    height: 100%;
    background: #E2E2E2;
    display: block;
    z-index: 10;
}

.home-third-sec{
    position:relative;
    isolation:isolate;
}

.home-third-sec::before {
    content: "";
    position: absolute;
    width: 37.5vw;
    aspect-ratio: 720 / 505;
    height: auto;
    top: 25%;
    right: -15%;
    border-radius: 720px;
    opacity: 0.2;
    background: #FFE29A;
    filter: blur(150px);
    z-index: -1;
}

.home-third-sec::after {
    content: "";
    position: absolute;
    width: 34vw;
    aspect-ratio: 654 / 505;
    height: auto;
    top: 75%;
    left: -15%;
    border-radius: 654px;
    opacity: 0.2;
    background: #FFE29A;
    filter: blur(150px);
    z-index: -1;
}

.home-process-inner .vc_btn3 {
    border-radius: 79px;
    border: 1px solid var(--theme-color);
    transition: var(--transition-effect);
}

.home-process-inner .vc_btn3:hover {
    background: var(--theme-color) !important;
}

.home-process-inner>.wpb_column:first-child .wpb_text_column {
    color: #E4E4E4;
}

.home-process-card {
    border-radius: 15px;
    background: #F6F6F6;
    margin: 0px;
    transition: var(--transition-effect);
}

.home-process-card:hover {
    background: var(--second-theme-color);
    transform: translateY(-10px);
}

.home-process-card>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(1) {
    font-size: 56px;
    color: #797979;
    font-weight: 300;
    transition: var(--transition-effect);
}

.home-process-card>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(1) b {
    font-size: 56px;
    color: var(--theme-color);
    font-weight: 300;
    transition: var(--transition-effect);
}

.home-process-card>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading:nth-child(2) {
    font-size: 23px;
    font-weight: 500;
    transition: var(--transition-effect);
    margin-bottom: 15px;
}

.home-process-card>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(3) {
    font-size: 18px;
    font-weight: 300;
    color: #616161;
    transition: var(--transition-effect);
}

.home-process-inner>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 15px;
}

.home-process-card:hover .wpb_text_column {
    color: #fff !important;
    transition: var(--transition-effect);
}

.home-process-card:hover .wpb_text_column b {
    color: var(--theme-color) !important;
    transition: var(--transition-effect);
}

.home-process-card:hover .vc_custom_heading {
    color: #fff !important;
    transition: var(--transition-effect);
}

.home-process-card>.wpb_column>.vc_column-inner>.wpb_wrapper {
    padding-top: 15px;
    padding-inline: 15px;
}

.home-process-sec {
    position: relative;
}

.home-process-sec::before {
    content: "";
    position: absolute;
    left: 5%;
    bottom: -12%;
    width: 38vw;
    aspect-ratio: 739 / 535;
    background-image: url(./images//processbg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.home-pilihan-sec>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading {
    justify-content: center;
}

.home-pilihan-card>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper {
    border-radius: 15px;
    background: #F6F1E6;
    transition: var(--transition-effect);
    padding: var(--inner-row-gap);
    transition: var(--transition-effect);
}

.home-pilihan-card>.wpb_column:first-child .vc_custom_heading {
    color: #242424;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
}

.home-pilihan-card>.wpb_column:first-child .wpb_text_column {
    color: #616161;
    font-size: var(--font-size-t);
    margin-bottom: 20px;
}

.home-pilihan-card>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper {
    border-radius: 15px;
    background: #282828;
    transition: var(--transition-effect);
    padding: var(--inner-row-gap);
    transition: var(--transition-effect);
}

.home-pilihan-card>.wpb_column:last-child .vc_custom_heading {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
}

.home-pilihan-card>.wpb_column:last-child .wpb_text_column {
    color: #DADADA;
    font-size: var(--font-size-t);
    margin-bottom: 20px;
}

.home-pilihan-card>.wpb_column:first-child .triangle-left .wpb_wrapper p::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 14px solid var(--second-theme-color);
    border-left: 14px solid transparent;
    margin-right: 20px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.home-pilihan-card>.wpb_column:last-child .triangle-left .wpb_wrapper p::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 14px solid var(--theme-color);
    border-left: 14px solid transparent;
    margin-right: 20px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.home-pilihan-card>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper:hover,
.home-pilihan-card>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.20);
    transition: var(--transition-effect);
}

.home-third-inner>.wpb_column:last-child .wpb_text_column {
    color: #E3E3E3;
    font-size: var(--font-size-t);
}

.home-table-inner>.wpb_column:last-child .wpb_text_column {
    color: #616161;
    font-size: var(--font-size-t);
}

.home-table {
    width: 100%;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    color: #555;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.home-table th,
.home-table td {
    border: none !important;
    outline: none !important;
}

.home-table thead th {
    background: var(--second-theme-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
}

.home-table thead th:first-child {
    border-top-left-radius: 10px;
}

.home-table thead th:last-child {
    border-top-right-radius: 10px;
}

/* Normal cells */
.home-table tbody td {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 10px 20px;
}

/* Alternating row colors */
.home-table tbody tr:nth-child(even) td {
    background: #F6F1E6;
}

.home-table tbody tr:nth-child(odd) td {
    background: #fff;
}

/* Bottom rounded corners */
.home-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.home-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .home-table {
        min-width: 800px;
    }

    .home-table thead th,
    .home-table tbody td {
        font-size: 18px;
        padding: 14px 12px;
    }
}

.home-table-row-2>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(2),
.home-table-row-2>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(3) {
    color: #8C8C8C;
}

.home-table-row-2>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(2) {
    margin-bottom: 0px;
}

.home-pilihan-sec {
    position: relative;
}

.home-pilihan-sec:before {
    content: "";
    position: absolute;
    width: 46vw;
    aspect-ratio: 885 / 587;
    height: auto;
    top: 6%;
    right: -18%;
    border-radius: 885px;
    opacity: 0.1;
    background: #FFE29A;
    filter: blur(150px);
    z-index: 0;
}

.small-title.cta {
    display: flex;
    font-size: 16px;
    color: var(--white-color);
    font-weight: 500;
    column-gap: 10px;
    align-items: center;
    white-space: nowrap;
    margin-bottom: var(--inner-row-gap);
}

.small-title.cta:before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--white-color);
}

.cta-sec .big-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: var(--row-gap);
}

.cta-sec .big-title b {
    font-weight: 400;
    font-size: 32px;
}

.cta-inner>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper {
    position: relative;
    border-radius: 20px;
    border: 1px solid #565656;
    background: #221800;
    padding-inline: var(--inner-large-row-gap);
    padding-top: var(--inner-large-row-gap);
    overflow: hidden;
}

.cta-inner .vc_btn3 {
    background: #00D619 !important;
    display: flex;
    align-items: center;
}

.cta-inner .vc_btn3:hover {
    background: transparent !important;
    border: 1px solid #00D619;
}

.cta-inner .vc_btn3::after {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-left: 15px;
    vertical-align: middle;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><g clip-path="url(%23clip0_21_786)"><path d="M0.583333 28.0024C0.428167 28.0024 0.277667 27.9406 0.166833 27.8263C0.00700001 27.6629 -0.0431667 27.4226 0.0396667 27.2091L2.21317 21.5566C0.763 19.3038 0 16.6986 0 14.0024C0 6.28261 6.28017 0.00244141 14 0.00244141C21.7198 0.00244141 28 6.28261 28 14.0024C28 21.7223 21.7198 28.0024 14 28.0024C11.382 28.0024 8.83283 27.2721 6.6115 25.8861L0.779333 27.9686C0.715167 27.9919 0.649833 28.0024 0.583333 28.0024ZM6.685 24.6576C6.797 24.6576 6.90783 24.6891 7.0035 24.7521C9.09183 26.1159 11.5115 26.8369 14 26.8369C21.0758 26.8369 26.8333 21.0794 26.8333 14.0036C26.8333 6.92777 21.0758 1.17027 14 1.17027C6.92417 1.17027 1.16667 6.92777 1.16667 14.0036C1.16667 16.5679 1.92033 19.0436 3.34833 21.1623C3.4545 21.3198 3.47667 21.5204 3.409 21.6978L1.58433 26.4426L6.489 24.6914C6.552 24.6693 6.6185 24.6576 6.685 24.6576Z" fill="white"/><path d="M17.5 21.0024C15.6672 21.0024 12.1485 18.8103 10.6703 17.3321C9.19217 15.8528 7 12.3341 7 10.5024C7 8.61711 8.60417 7.00244 9.91667 7.00244H11.0833C11.305 7.00244 11.508 7.12844 11.606 7.32794C11.6072 7.32911 12.3095 8.75711 12.7692 9.65311C13.2872 10.6646 12.313 11.8546 11.7588 12.4158C11.9572 12.9244 12.4203 13.9324 13.2452 14.7573C14.07 15.5821 15.078 16.0464 15.5867 16.2436C16.1467 15.6883 17.3367 14.7129 18.3493 15.2333C19.2453 15.6941 20.6722 16.3953 20.6733 16.3953C20.874 16.4944 21 16.6974 21 16.9191V18.0858C21 19.3994 19.3842 21.0024 17.5 21.0024ZM9.91667 8.16911C9.2575 8.16911 8.16667 9.25994 8.16667 10.5024C8.16667 11.8546 10.073 15.0828 11.4963 16.5061C13.0515 18.0613 16.2493 19.8358 17.5 19.8358C18.7425 19.8358 19.8333 18.7449 19.8333 18.0858V17.2819C19.355 17.0463 18.452 16.5983 17.8162 16.2716C17.5432 16.1246 16.7137 16.7091 16.1875 17.3053C16.037 17.4756 15.8025 17.5409 15.5878 17.4791C15.5143 17.4581 13.7865 16.9471 12.4203 15.5809C11.0542 14.2148 10.5443 12.4869 10.5222 12.4134C10.4592 12.1964 10.528 11.9631 10.696 11.8138C11.291 11.2876 11.872 10.4616 11.7297 10.1839C11.4042 9.55044 10.9573 8.64744 10.7217 8.16911H9.91667Z" fill="white"/></g><defs><clipPath id="clip0_21_786"><rect width="28" height="28" fill="white"/></clipPath></defs></svg>');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-inner>.wpb_column:last-child .wpb_wrapper>.wpb_single_image:last-child img {
    border-radius: 20px;
}

.cta-inner>.wpb_column:last-child .wpb_single_image {
    margin-bottom: 0px;
}

.cta-inner>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper>* {
    position: relative;
}

.cta-inner>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper:before {
    content: "";
    position: absolute;
    width: 48vw;
    aspect-ratio: 924 / 507;
    height: auto;
    top: 44%;
    right: -23%;
    border-radius: 924px;
    opacity: 0.2;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
}

.cta-sec .badge {
    position: absolute;
    top: 20%;
    left: -18%;
    right: auto;
    z-index: 5;
}

@media only screen and (min-width: 1000px) {
    #header [data-row="middle"] {
        margin-top: 15px;
        margin-left: var(--row-gap);
        margin-right: var(--row-gap);
        border-radius: 72px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12.5px);
        padding-right: 15px;
        padding-left: 30px;
    }

    #header .ct-container {
        padding: 0;
    }
}


#header-menu-1 .ct-menu-link {
    font-weight: 500;
    transition: var(--transition-effect)
}

#header-menu-1 .ct-menu-link:active {
    font-weight: 600 !important;
}

#header-menu-1 li.current-menu-item>.ct-menu-link,
#header-menu-1 li.current-menu-parent>.ct-menu-link,
#header-menu-1 li.current-menu-ancestor>.ct-menu-link {
    font-weight: 600 !important;
}

[data-column="widget-area-1"] .company-name {
    color: #fff;
    font-size: 18px;
}


[data-column="widget-area-1"] .company-name small {
    color: #E4E4E4;
    font-size: 14px;
    font-weight: 300 !important;
}

[data-column="widget-area-2"] .contact-item .label {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
}

[data-column="widget-area-2"] .contact-item .value {
    margin: 0;
    font-size: 16px;
    color: #EAEAEA;
    font-weight: 300;
}

[data-column="widget-area-2"] .contact-card {
    display: flex;
    flex-direction: column;
    gap: var(--inner-row-gap);
}


.about-us-banner .badge .vc_single_image-wrapper {
    scale:1.2;
}


.about-us-banner .badge .vc_single_image-wrapper img {
    width: 100px;
    height: 100px;
}

.about-second-row::before {
    content: "";
    position: absolute;
    width: 46vw;
    aspect-ratio: 885 / 587;
    height: auto;
    top: 0;
    left: 18%;
    border-radius: 885px;
    opacity: 0.1;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
}

.about-second-row>* {
    position: relative;
    z-index: 1;
}

.about-second-inner .wpb_wrapper>.wpb_single_image:nth-child(1)>.vc_figure {
    display: inline-block;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25) !important;
    border-radius: 20px;
}

.about-second-inner .wpb_wrapper>.wpb_single_image:nth-child(1)>.vc_figure img {
    display: block;
    width: 100%;
    height: auto;
}


.about-second-inner .vc_btn3:hover {
    color: #242424 !important;
    background-color: var(--theme-color) !important;
}

.big-title {
    font-weight: 500;
    font-size: var(--font-size-1);
    margin-bottom: var(--inner-row-gap);
}

.about-second-inner>.wpb_column:last-child .wpb_text_column {
    color: #616161;
    font-weight: 400;
    text-align: justify;
}

.about-second-inner {
    display: flex;
    padding-bottom: var(--inner-row-gap);
}

.about-counter-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:first-child {
    margin-bottom: 0px !important;
}

.about-counter-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:last-child {
    font-size: 18px;
    color: #616161;
}

.about-counter-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: block;
}

.about-counter-row:after {
    display: none;
}

.about-counter-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}


.about-misi-row .badge {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: 5;
    transform: translate(25%, 50%) !important;
}


@media only screen and (max-width:767.98px) {

    .home-sec {
        padding-top: 100px !important;
        padding-bottom: 0;
    }

    .home-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading {
        font-size: 30px;
    }

    .home-sec.main {
        padding-top: 100px !important;
        padding-bottom: 35px !important;
    }

    .home-second-inner {
        display: flex;
        flex-direction: column;
        margin-bottom:35px;
    }


    .home-pilihan-card {
        display: flex;
        flex-direction: column;
        gap: 15px
    }

    .home-pilihan-card:after {
        display: none;
    }

    .home-pilihan-card:before {
        display: none;
    }

    .home-second-inner>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_single_image:last-child {
        padding-right: 0px;
        padding-top: 0px;
    }

    .home-services-row .vc_figure img {
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    .home-services-row .service-button {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .home-services-row .wpb_singleimage_heading {
        transform: translateY(-35px);
    }

    /* Disable hover movement on mobile */
    .home-services-row .wpb_wrapper:hover .service-button {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .home-services-row .wpb_wrapper:hover .wpb_singleimage_heading {
        transform: translateY(-35px);
    }

    .home-services-row .triangle-right .vc_btn3::after {
        transform: rotate(45deg);
    }

    .home-services-row .triangle-right .vc_btn3:hover::after {
        transform: rotate(0deg);
    }

    .home-third-inner .triangle-right .vc_btn3::after {
        transform: rotate(45deg);
    }

    .why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper .vc_btn3::after {
        transform: rotate(45deg);
    }

    .home-table {
        width: 100%;
        min-width: 0;
        font-size: 14px;
        border-radius: 8px;
    }

    .home-table thead th {
        font-size: 14px;
        padding: 10px 8px;
        white-space: normal;
    }

    .home-table tbody td {
        font-size: 14px;
        padding: 10px 8px;
        white-space: normal;
    }

    .home-table thead th:first-child {
        border-top-left-radius: 8px;
    }

    .home-table thead th:last-child {
        border-top-right-radius: 8px;
    }

    .home-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }

    .home-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }

    .home-table-row-2>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:nth-child(2) {
        margin-bottom: 10px;
    }

    .cta-sec .badge {
        position: absolute;
        top: -10%;
        right: 0;
        left: auto;
        z-index: 5;
    }

    .cta-inner>.wpb_column:last-child .wpb_wrapper>.wpb_single_image:last-child .vc_single_image-wrapper {
        border-radius: 20px;
        padding-top: 35px;
    }

    .about-misi-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_single_image:last-child {
        padding-right: 0px !important;
    }

    .about-misi-row .badge {
        position: absolute;
        top: 0 !important;
        left: auto;
        right: 0 !important;
        z-index: 5;
        transform: translate(0% , 0%) !important;
    }

    .about-us-sec .badge .vc_single_image-wrapper {
        width: 150px !important;
        height: 150px !important;
    }

    .about-us-sec .badge .vc_single_image-wrapper img {
        width: 90px !important;
        height: 90px !important;
    }

    .services-row>.wpb_column:last-child {
        padding-left: 0px !important;
    }

    .reverse-services-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .services-row>.wpb_column:last-child>.vc_column-inner {
        padding-top: 0px !important;
    }

    .reverse-services-row>.wpb_column:first-child>.vc_column-inner {
        padding-top: 0px !important;
    }

    .row-gap-same {
        padding-block: 0px !important;
    }

    .services-sec>.vc_row:first-child .wpb_single_image {
        padding-top: 35px;
    }
    
    
    .services-sec>.vc_row .wpb_single_image {
    padding-bottom: 35px;
    }

    .about-us-banner .badge .vc_single_image-wrapper img {
        width: 70px;
        height: 70px;
    }

    .about-us-banner .badge .vc_single_image-wrapper {
        width: 130px;
        height: 130px;
    }

    .about-us-banner .badge {
        top: 0% !important;
        right: 0% !important;
        transform: translate(0, -50%) !important;
    }

    .about-counter-row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }

    .counter-second-sec .wpb_column:not(:last-child)>.vc_column-inner>.wpb_wrapper::after {
        display: none !important;
    }

    /*[data-header="type-1:sticky:shrink"] .ct-toggle>.ct-icon {*/
    /*    fill: var(--theme-color) !important;*/
    /*}*/

    [data-column="widget-area-3"]::before {
        display: none;
    }
    
    .about-us-banner .badge .vc_single_image-wrapper {
        scale:1.0;
    }
    
    .services-sec .row-gap-same{
        padding-top:35px !important;
        padding-bottom:35px !important;
    }
    
    .services-head .vc_custom_heading {
        font-size: 25px !important;
    }

    .reverse-services-row>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper .vc_custom_heading {
        font-size: 25px !important;
    }
    
    span.count {
        font-size: 40px;
    }
    
    span.symbol {
        font-size: 40px;
    }

    .home-second-inner .badge {
        top: 0% !important;
        right: 0% !important;
        transform: translate(0, -40%) !important;
    }
    
    .home-second-inner .badge .vc_single_image-wrapper img {
        width: 70px;
        height: 70px;
    }
    
    .home-second-inner .badge .vc_single_image-wrapper {
        width: 130px;
        height: 130px;
        scale:1.0;
    }

    .big-title {
        font-size: 30px;
        margin-bottom: var(--inner-row-gap);
    }


}



.cta-content a.all-btn {
    transform: none !important;
    transition: none !important;
    margin-bottom: 70px;
}

.cta-content a.all-btn:hover {
    transform: none !important;
}

.ct-toggle>.ct-icon {
    fill: white !important;
}

@media only screen and (max-width:1000px) {
    .why-choose-inner {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0px !important;
    }

    .home-services-row>.wpb_column {
        width: 100%;
    }

    .why-choose-inner>.wpb_column {
        width: 100%;
    }

    .why-choose-inner> .wpb_column:not(:last-child):after{
        content:"";
        width: 100% !important;
        height: 1px !important;
        background: #E2E2E2;
        display: block;
        position: relative;
    }

    .why-choose-inner>.wpb_column:not(:last-child){
        margin-bottom:35px;
    }

    .contact-form-inner {
        margin-bottom: 25px;
    }


    .address-row>.wpb_column:not(:first-child)::before {
        content: "";
        display: block !important;
        position: static !important;
        width: 50% !important;
        height: 1px !important;
        margin-inline: auto !important;
        margin-bottom: 25px;
    }

    .about-counter-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        justify-items: center;
    }

    .counter-second-sec .wpb_column:not(:first-child)::before {
    display:none;
    }

    .home-counter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-direction: row;
        justify-items: center;
    }
    
    .why-choose-inner>.wpb_column:not(:last-child) .choose-details::before {
    display:none;
    }
    
    .home-services-row .vc_figure img {
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

}


/*@media only screen and (max-width:1300px) {*/
/*    .why-choose-inner {*/
/*        gap: 50px;*/
/*    }*/

/*    .why-choose-inner>.wpb_column:first-child .choose-details::before {*/
/*        content: "";*/
/*        position: absolute;*/
/*        top: 0;*/
/*        right: -25px;*/
/*        width: 1px;*/
/*    }*/

/*    .why-choose-inner>.wpb_column:nth-child(2) .choose-details::before {*/
/*        content: "";*/
/*        position: absolute;*/
/*        top: 0;*/
/*        right: -25px;*/
/*        width: 1px;*/
/*    }*/
/*}*/

.tentang-second-inner>.wpb_column:first-child .wpb_wrapper>.wpb_text_column:nth-child(3)>.wpb_wrapper {
    color: #616161;
    font-size: var(--font-size-t);
}

.tentang-second-inner>.wpb_column:first-child .wpb_wrapper>.wpb_text_column:nth-child(4)>.wpb_wrapper {
    display: flex;
    color: var(--second-theme-color);
    font-size: 20px;
    font-weight: 500;
    flex-direction: column;
    gap: 10px;
}

.tentang-second-inner>.wpb_column:first-child .wpb_wrapper>.wpb_text_column:nth-child(4)>.wpb_wrapper::before {
    content: "";
    display: block;
    width: 24px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="31" height="21" viewBox="0 0 31 21" fill="none"><path d="M10.5315 21H0L8.91781 0H15.7123L10.5315 21ZM25.8192 21H15.2877L24.2055 0H31L25.8192 21Z" fill="%23FFB700"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.row-gap-same {
    padding-block: calc(var(--row-gap) - 35px);
}

section.counter-second-sec span.count {
    color: #fff !important;
}

.about-counter-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:last-child {
    color: #C8C8C8 !important;
}

.tentang-second-sec::before {
    content: "";
    position: absolute;
    width: 39vw;
    aspect-ratio: 755 / 521;
    height: auto;
    top: 11%;
    left: 39%;
    border-radius: 755px;
    opacity: 0.1;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
}

.tentang-second-sec {
    position: relative;
}

.tentang-second-inner .wpb_wrapper>.wpb_single_image:nth-child(1)>.vc_figure {
    display: inline-block;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25) !important;
    border-radius: 20px;
}

.misi-img{
    padding-bottom:35px;
}

.misi-img .vc_figure {
    display: inline-block;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25) !important;
    border-radius: 20px;
}

.counter-second-sec .wpb_column>.vc_column-inner>.wpb_wrapper {
    position: relative;
    width: fit-content;
    margin-inline: auto;
}

.counter-second-sec .wpb_column:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #ADADAD;
    z-index: 0;
}

.counter-second-sec .wpb_column>.vc_column-inner>.wpb_wrapper>* {
    position: relative;
    z-index: 1;
}

.visi-inner>.wpb_column>.vc_column-inner .vc_custom_heading {
    color: #242424;
    font-weight: 500;
    font-size: 22px;
}

.misi-inner>.wpb_column>.vc_column-inner .vc_custom_heading {
    color: #242424;
    font-weight: 500;
    font-size: 22px;
}


.why-choose-inner>.wpb_column>.vc_column-inner>.wpb_wrapper:last-child .vc_custom_heading {
    color: #242424;
    font-weight: 500;
    font-size: 22px;
}

.misi-inner>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
}

/* Icon */
.misi-inner>.wpb_column>.vc_column-inner>.wpb_wrapper>.icon-card {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Heading */
.misi-inner>.wpb_column>.vc_column-inner>.wpb_wrapper>.vc_custom_heading {
    grid-column: 2;
    grid-row: 1;
}

/* Description */
.misi-inner>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
    grid-column: 2;
    grid-row: 2;
    color: #616161;
}


.services-row>.wpb_column:first-child .vc_figure {
    border-radius: 20px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
}

.services-row>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper .vc_custom_heading {
    font-weight: 600;
    font-size: 32px;
}

.service-number {
    color: var(--theme-color);
    font-weight: 500 !important;
}

.services-head>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: flex;
    gap: 20px;
}

.services-inner-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
    color: var(--second-theme-color);
}

.services-inner-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column:not(:last-child) {
    margin-bottom: 10px;
}


.services-inner-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column p::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 14px solid var(--second-theme-color);
    border-left: 14px solid transparent;
    margin-right: 20px;
    vertical-align: middle;
    transform: rotate(0deg);
    transition: var(--transition-effect);
}

.services-row>.wpb_column:last-child {
    padding-left: var(--inner-side-gap);
}

.services-sec .vc_btn3:hover {
    color: #242424 !important;
    background-color: var(--theme-color) !important;
}


.reverse-services-row>.wpb_column:last-child .vc_figure {
    border-radius: 20px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
}

.reverse-services-row>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper .vc_custom_heading {
    font-weight: 600;
    font-size: 32px;
}

.about-us-banner {
    height: 500px;
    position: relative;
    overflow: visible !important;
}

.about-us-banner .badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    transform: translate(-75%, -50%);
}

.about-us-banner>.wpb_column {
    height: 100%;
}

.about-us-banner>.wpb_column>.vc_column-inner {
    height: 100%;
}

/* Contact form container */
.wpcf7-form {
    width: 100%;
}

/* Text inputs + textarea */
.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    box-sizing: border-box;
    background: #F2F2F2 !important;
    border: none;
    border-radius: 15px;
    color: #616161 !important;
    font-size: 20px;
    outline: none;
    padding: 0 28px;
}

.wpcf7 .wpcf7-recaptcha {
    width: auto;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    color: inherit;
    font-size: inherit;
    outline: none;
}

/* Focus state */
.wpcf7-form-control:not(.wpcf7-submit):focus,
.wpcf7-form-control:not(.wpcf7-submit):active {
    background: #F2F2F2 !important;
    color: #616161 !important;
    outline: none;
    box-shadow: none;
}

/* Name + Email */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email {
    height: 56px;
}

/* Message */
.wpcf7-form-control.wpcf7-textarea {
    height: 200px;
    padding-top: 20px;
    resize: none;
}

/* Placeholder */
.wpcf7-form-control::placeholder,
.wpcf7-form-control:focus::placeholder {
    color: #616161 !important;
    opacity: 1 !important;
}

/* Spacing between fields */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

/* Submit button */
.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 79px;
    background: var(--second-theme-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-effect);
}

/* Button hover */
.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--theme-color);
}

/* Paragraph spacing */
.wpcf7-form p {
    margin: 0 0 24px;
}

.wpcf7-form p:last-of-type {
    margin-bottom: 0;
}

/* Contact form content */
.contact-form-inner>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.contact-form-inner>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper>.wpb_text_column b {
    font-size: 14px;
    font-weight: 300;
}

/* Contact form layout */
.wpb_row.contact-form-inner>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: end;
    column-gap: 25px;
}

.contact-form-inner .wpb_single_image,
.contact-form-inner .wpb_text_column {
    margin-bottom: 0 !important;
}

.contact-form-inner .wpb_single_image figure {
    margin-bottom: 0;
}

.contact-form-row>.wpb_column:first-child>.vc_column-inner>.wpb_wrapper>.vc_custom_heading:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ADADAD;
    margin-block: var(--inner-large-row-gap);
}

.contact-form-inner img{
        width: 100px;
}

.address-row>.wpb_column>.vc_column-inner>.wpb_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.address-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column.wpb_text_column:nth-child(2) {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px !important;
}

.address-row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column.wpb_text_column:nth-child(3) {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.address-row .icon-card {
    margin-bottom: 15px !important;
}

.address-row>.wpb_column:not(:first-child) {
    position: relative;
}

.address-row>.wpb_column:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ADADAD;
}

.address-sec::before {
    content: "";
    position: absolute;
    width: 44vw;
    aspect-ratio: 845 / 417;
    height: auto;
    bottom: -41%;
    left: 13%;
    border-radius: 845px;
    opacity: 0.2;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
}

.address-sec {
    padding-top: 85px !important;
    padding-bottom: 50px !important;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-sec::before {
    content: "";
    position: absolute;
    width: 39vw;
    aspect-ratio: 755 / 249;
    height: auto;
    left: -16%;
    top: 34%;
    border-radius: 755px;
    opacity: 0.2;
    background: #FFE29A;
    filter: blur(150px);
    z-index: 0;
}

.home-sec::after {
    content: "";
    position: absolute;
    width: 39vw;
    aspect-ratio: 755 / 249;
    height: auto;
    left: 55%;
    top: 70%;
    border-radius: 755px;
    opacity: 0.2;
    background: #FFE29A;
    filter: blur(150px);
    z-index: 0;
}

/* footer csk*/

#footer {
    background-image: url('./images/footer-bg.webp');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.page-id-279 #footer [data-row="top"] {
    display: none;
}

.page-id-282 #footer [data-row="top"],
.page-id-282 #footer [data-row="middle"] {
    display: none;
}

.page-id-282 #footer {
    background: none !important;
}

/* CTA normal state */
.cta-btn>.ct-menu-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 160px !important;
    height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;

    border-radius: 999px !important;
    border: 0 !important;

    background: #E3A900 !important;
    color: #fff !important;

    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;

    box-shadow: none !important;
    transition: var(--transition-effect) !important;
}

/* Hover */
.cta-btn>.ct-menu-link:hover {
    background: #FFB700 !important;
    color: #242424 !important;
}

.cta-btn.current-menu-item>.ct-menu-link {
    background: #FFB700 !important;
    color: #242424 !important;
}

.page-id-24 .cta-btn>.ct-menu-link {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.page-id-24 .cta-btn>.ct-menu-link:hover {
    background: #FFB700 !important;
    border-color: #FFB700 !important;
    color: #242424 !important;
}

.cta-btn{
    padding-left:25px;
}

.cta-inner {
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
}

.cta-content {
    width: 60%;
    position: relative;
    border-radius: 20px;
    border: 1px solid #565656;
    background: #221800;
    padding: var(--inner-large-row-gap);
    overflow: hidden;
}

.cta-content>* {
    position: relative;
    z-index: 1;
}

.cta-content::before {
    content: "";
    position: absolute;
    width: 48vw;
    aspect-ratio: 924 / 507;
    height: auto;
    top: 44%;
    right: -23%;
    border-radius: 924px;
    opacity: 0.2;
    background: #FFB300;
    filter: blur(150px);
    z-index: 0;
}

/* Heading */
.cta-content .big-title {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: var(--row-gap);
}

.cta-content .big-title strong {
    font-weight: 400;
    font-size: 32px;
}


/* Images */
.cta-images {
    width: 40%;
    position: relative;
}

.cta-images .full-w-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.cta-images .badge {
    position: absolute;
    top: 30%;
    left: calc(var(--inner-side-gap) / -2);
    z-index: 5;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--second-theme-color);
    overflow: visible;
    transform: translate(-50%, -50%);
}

.cta-images .badge img {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    box-sizing: border-box;
}

.cta-images .badge::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 3;

    border-radius: 50%;
    background-image: url('./images/Group-60.webp');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;

    animation: spin 40s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* WhatsApp button */
.cta-inner .all-btn {
    background: #00D619;
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.cta-inner .all-btn:hover {
    background: transparent;
    border: 1px solid #00D619;
}


.cta-inner .all-btn::after {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    margin-left: 15px;
    vertical-align: middle;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><g clip-path="url(%23clip0_21_786)"><path d="M0.583333 28.0024C0.428167 28.0024 0.277667 27.9406 0.166833 27.8263C0.00700001 27.6629 -0.0431667 27.4226 0.0396667 27.2091L2.21317 21.5566C0.763 19.3038 0 16.6986 0 14.0024C0 6.28261 6.28017 0.00244141 14 0.00244141C21.7198 0.00244141 28 6.28261 28 14.0024C28 21.7223 21.7198 28.0024 14 28.0024C11.382 28.0024 8.83283 27.2721 6.6115 25.8861L0.779333 27.9686C0.715167 27.9919 0.649833 28.0024 0.583333 28.0024ZM6.685 24.6576C6.797 24.6576 6.90783 24.6891 7.0035 24.7521C9.09183 26.1159 11.5115 26.8369 14 26.8369C21.0758 26.8369 26.8333 21.0794 26.8333 14.0036C26.8333 6.92777 21.0758 1.17027 14 1.17027C6.92417 1.17027 1.16667 6.92777 1.16667 14.0036C1.16667 16.5679 1.92033 19.0436 3.34833 21.1623C3.4545 21.3198 3.47667 21.5204 3.409 21.6978L1.58433 26.4426L6.489 24.6914C6.552 24.6693 6.6185 24.6576 6.685 24.6576Z" fill="white"/><path d="M17.5 21.0024C15.6672 21.0024 12.1485 18.8103 10.6703 17.3321C9.19217 15.8528 7 12.3341 7 10.5024C7 8.61711 8.60417 7.00244 9.91667 7.00244H11.0833C11.305 7.00244 11.508 7.12844 11.606 7.32794C11.6072 7.32911 12.3095 8.75711 12.7692 9.65311C13.2872 10.6646 12.313 11.8546 11.7588 12.4158C11.9572 12.9244 12.4203 13.9324 13.2452 14.7573C14.07 15.5821 15.078 16.0464 15.5867 16.2436C16.1467 15.6883 17.3367 14.7129 18.3493 15.2333C19.2453 15.6941 20.6722 16.3953 20.6733 16.3953C20.874 16.4944 21 16.6974 21 16.9191V18.0858C21 19.3994 19.3842 21.0024 17.5 21.0024ZM9.91667 8.16911C9.2575 8.16911 8.16667 9.25994 8.16667 10.5024C8.16667 11.8546 10.073 15.0828 11.4963 16.5061C13.0515 18.0613 16.2493 19.8358 17.5 19.8358C18.7425 19.8358 19.8333 18.7449 19.8333 18.0858V17.2819C19.355 17.0463 18.452 16.5983 17.8162 16.2716C17.5432 16.1246 16.7137 16.7091 16.1875 17.3053C16.037 17.4756 15.8025 17.5409 15.5878 17.4791C15.5143 17.4581 13.7865 16.9474 12.4203 15.5809C11.0542 14.2148 10.5443 12.4869 10.5222 12.4134C10.4592 12.1964 10.528 11.9631 10.696 11.8138C11.291 11.2876 11.872 10.4616 11.7297 10.1839C11.4042 9.55044 10.9573 8.64744 10.7217 8.16911H9.91667Z" fill="white"/></g><defs><clipPath id="clip0_21_786"><rect width="28" height="28" fill="white"/></clipPath></defs></svg>');

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


/* Mobile */
@media (max-width: 767.98px) {

    .cta-inner {
        flex-direction: column;
    }

    .cta-content,
    .cta-images {
        width: 100%;
    }
   
    .tentang-second-sec {
        margin-bottom:35px;
    }

}

.ct-breadcrumbs .first-item a {
    font-weight: 400;
}

.ct-breadcrumbs .last-item {
    color: #FFB700;
    font-weight: 500;
}

#footer [data-column="widget-area-1"] img {
    height:100px !important;
    width:100px !important;
}


#footer [data-column="widget-area-3"] {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

/* Widget title */
#footer [data-column="widget-area-3"] .widget-title {
    text-align: left !important;
    margin-bottom: 15px !important;
}

/* Footer menu */
#footer [data-column="widget-area-3"] #menu-footer-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 15px !important;
    font-weight: 300;
    font-size: 16px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#footer [data-column="widget-area-2"] .textwidget {
    font-size: 16px;
    font-weight: 300;
}


/* Menu links */
#footer [data-column="widget-area-3"] #menu-footer-menu li a {
    display: inline-block;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.about-misi-row .badge .vc_single_image-wrapper::after {
    background-image: url(./images/Group-misi.webp) !important;
}

#footer [data-row="top"] .ct-container {
    padding-bottom: 0px;
}

@media only screen and (max-width:767.98px) {
    .cta-images .badge {
        position: absolute;
        top: calc(35px / -2) !important;
        left: 50%;
        z-index: 5;
    }

    #footer [data-column="widget-area-3"] #menu-footer-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        font-weight: 300;
        font-size: 16px;
        margin: 10px !important;
        padding: 0 !important;
        list-style: none !important;
        flex-wrap: wrap;
    }

    .home-pilihan-sec>.vc_row:first-child>.wpb_column>.vc_column-inner>.wpb_wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .why-choose-sec .big-title {
        margin-inline: 0 !important;
        text-align: left !important;
    }

    .why-choose-sec>.vc_row:first-child>.wpb_column>.vc_column-inner>.wpb_wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-us-banner {
        height: 300px !important;
    }

    .cta-content .big-title {
        margin-bottom: 35px;
    }
    
    
}

@media only screen and (max-width: 999.98px) {

    #footer [data-column="widget-area-3"] #menu-footer-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        font-weight: 300;
        font-size: 16px;
        margin: 0px !important;
        padding: 0 !important;
        list-style: none !important;
        flex-wrap: wrap;
    }

    #footer .widget-menu>li:not(:last-child) {
        border-right: 1px solid #fff;
        padding-right: 10px !important;
        margin-right: 10px !important;
    }
}

[data-column="copyright"] {
    padding-block: 10px;
}

.page-id-282 [data-column="copyright"] {
    width: 100%;
    border-top: 1px solid #C6C6C6;
}

.page-id-282 [data-column="copyright"] .ct-footer-copyright {
    color: #242424;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

.ct-footer .ct-container .widget-title {
    font-weight: 600;
}

.main {
    padding-top: 250px !important;
    padding-bottom: 80px !important;
}

.about-misi-sec {
    position: relative;
    isolation: isolate;
}

.about-misi-sec::before {
    content: "";
    position: absolute;
    left: auto;
    top: 0%;
    right: -20%;
    width: 35%;
    aspect-ratio: 107 / 81;
    background-image: url(./images//bg2.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.08;
}

[data-column="widget-area-3"]::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #767676;
}

@media only screen and (min-width:768px) {
    .services-row{
        padding-bottom:100px !important;
    }
    
    .reverse-services-row{
        padding-bottom:100px !important;
    }
}

@media only screen and (max-width:469px) {
    .home-process-inner>.wpb_column:last-child>.vc_column-inner>.wpb_wrapper {
        display: flex;
        flex-direction: column;
    }
    
}

.about-misi-row>.wpb_column:first-child >.vc_column-inner>.wpb_wrapper{
        position: relative !important;
        padding-right:50px;
}

@media only screen and (max-width:767.98px) {
.about-misi-row>.wpb_column:first-child >.vc_column-inner>.wpb_wrapper{
        padding-right:0px ;
}
}
    