/*
CTC Separate Stylesheet
Updated: 2026-04-16 05:33:17
Theme Name: Lmacc
Theme URI: https://wordpress.org/themes/twentytwenty/
Template: twentytwenty
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor.
Version: 1.0
*/


/* ************************* Global ************************* */

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

:root {
    --primary: #1c3657;
    --secondary: #f7ca43;
    --accent: #f7f7f7;
    --white: #fff;
    --base: var(--black);

    --bg-primary: #f9f9f9;

    --black: #000;

    --title-font: "Staatliches", sans-serif;
    --body-font: "Montserrat", sans-serif;
    --base-transition: all .3s ease-in-out;
    --sub-font: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
}

html:has(.page-template-home) {
    scroll-padding-top: 120px;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--body-font);
    min-height: 100svh;
    color: var(--base);
}

img {
    vertical-align: top;
    width: 100%;
    height: auto;
}

body a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: currentColor;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: 400;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0 !important;
}

.h--1,
h1 {
    font-size: 60px;
    line-height: 1.2;
}

.h--2,
h2 {
    font-size: 48px;
    line-height: 1.2;
}

.h--3,
h3 {
    font-size: 36px;
    line-height: 1.2;
}

.h--4,
h4 {
    font-size: 30px;
    line-height: 1.2;
}

.h--5,
h5 {
    font-size: 24px;
    line-height: 1.2;
}

.h--6,
h6 {
    font-size: 20px;
    line-height: 1.2;
}

.text--primary {
    color: var(--primary);
}

.bg--primary {
    background-color: var(--bg-primary);
}

.text-xl {
    font-size: 18px;
    line-height: 1.5;
}

section {
    padding-block: 80px;
    padding-inline: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.block {
    display: flex;
    flex-direction: column;
}

.gap-s {
    gap: 2.5rem;
}

.gap-m {
    gap: 4rem;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}

.title-tag {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
}

.title-tag::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 60px;
    height: 2px;
    border-radius: 4px;
    left: 0;
    bottom: 0;
}

.btn-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: .8em 1.5em;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 4px;
    font-size: 16px;
    border: 2px solid transparent;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-white {
    color: var(--primary);
    background: var(--white);
}

.btn-white:hover {
    color: var(--white);
    background: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.grid-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.text--center {
    text-align: center;
}

.intro {
    max-width: 768px;
    margin-inline: auto;
    gap: 1.5em;
}

.text--center .title-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ************************* Global ************************* */

/******************* header *******************/
.site_header {
    padding: 20px;
    position: fixed;
    transition: all .3s linear;
    top: 0;
    z-index: 99;
    background: transparent;
    width: 100%;
}

.site_header .header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    position: relative;
}

.site_header .header_logo {
    position: relative;
    z-index: 4;
    width: 18%;
}

.site_header .header_logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

/* .site_header.custom_sticky .header_logo .logo {
	height: 80px;
} */
.site_header .header_menu .nav-menu {
    list-style: none;
}

@media (min-width:1025px) {

    .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
    .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
        filter: invert(1) !important;
    }

    .site_header .header_menu {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
    }

    .site_header .header_row>.btn_wrap {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .site_header .btn_wrap a {
        margin-left: auto;
    }

    .site_header .header_menu .nav-menu {
        display: flex;
        margin: 0;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .site_header .header_menu .mega_menu.menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: visible !important;
        display: flex;
        pointer-events: all;
    }

    .site_header .header_menu ul.nav-menu>li>a {
        position: relative;
        line-height: 1.5;
        display: inline-block;
        font-size: 16px;
        color: var(--primary);
        font-family: var(--body-font);
        font-weight: 600;
    }

    .site_header .header_menu .nav-menu li a:hover {
        color: var(--primary);
    }
}

.site_header .header_menu ul.nav-menu>li.menu-item-has-children {
    display: flex;
    gap: 6px;
    align-items: center;
    transition: all .3s ease-in-out;
    flex-wrap: wrap;
    cursor: pointer;
}

@media(max-width:1024px) {


    .header_menu__wrap,
    .site_header .header_row .btn-wrap {
        display: none;
    }

    .site_header .header_logo {
        width: auto;
    }

    body .mobile_toggle_icon {
        display: flex;
    }

    .pricing_plans_section .pricing_plans_wrapper .pricing_plan.best {
        scale: 1;
        margin-inline: 0px;
        order: -1;
        max-width: 493px;
        margin: auto;
        grid-column: 1/-1;
    }
}

.mobile_toggle_icon.active span {
    background-color: var(--primary) !important;
}

.header_mobile-menu {
    display: flex !important;
    position: fixed;
    width: 100vw;
    left: 100%;
    right: 0;
    background-color: var(--white);
    height: 100%;
    top: 0;
    padding-top: 120px;
    padding-inline: 25px;
    padding-bottom: 40px;
    transition: var(--base-transition);
}

.header_mobile-menu .btn_wrap a {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
}

.header_mobile_menu__wrap {
    overflow: auto;
    width: 100%;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.site_header .header_logo {
    width: auto;
}

.mobile_toggle_icon {
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    display: none;
}

.header_menu .mobile_toggle_icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0.1deg);
    transition: .25s ease-in-out;
    left: 0;
}

.site_header.custom_sticky .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

.header_menu .mobile_toggle_icon span:nth-of-type(1) {
    top: 0px;
}

.header_menu .mobile_toggle_icon span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.header_menu .mobile_toggle_icon span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(2) {
    opacity: 0;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

.header_open .header_mobile-menu {
    left: 0;
}

.header_mobile-menu .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-weight: 500;
}

.header_mobile-menu .btn_wrap {
    margin-top: 30px;
}

.header_mobile-menu .header_mobile_menu__wrap .btn-wrap {
    display: flex !important;
}

body.header_open {
    overflow: hidden;
}

.header_mobile-menu ul.nav-menu>li>a {
    color: var(--primary) !important;
}

.header_mobile-menu .nav-menu a[aria-current="page"] {
    color: var(--primary) !important;
}

header:not(.custom_sticky) .btn_wrap a {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.site_header .header_menu ul.nav-menu>li>a:hover::after {
    width: 100%;
}

.site_header .header_menu ul.nav-menu>li>a::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -0.17em;
    transition: var(--base-transition);
    transform-origin: left;
}

.site_header .menu-item-has-children li {
    width: 100%;
    list-style: none;
}

.site_header.custom_sticky {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--white);
}

body .site_footer .inner_wrap .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: unset !important;
}

.site_header .header_row .btn-wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7em 1.5em;
    gap: 6px;
    font-size: 14px;
}

.site_header .header_row .btn-wrap .btn .header-btn-icon {
    width: 20px;
}

.site_header .header_row .btn-wrap .btn:hover .header-btn-icon {
    filter: invert(0) brightness(100);
}

/******************* header *******************/
/* ************************** mega menu ************************** */
.site_header .header_menu .mega_menu>ul.sub-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: 0.3s all ease-in-out;
    min-width: 1010px;
    padding: 20px;
    margin: auto;
    transform: translateX(-50%);
    z-index: 10;
    list-style: none;
    gap: 20px;
    pointer-events: none;
    max-width: 1010px;
}

.site_header .header_menu .mega_menu>ul.sub-menu:before {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    top: -42px;
    background-color: #ffffff00;
    left: 0px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left {
    width: 50%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right {
    width: 50%;
    text-align: left;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right>ul.sub-menu {
    list-style: none;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #012d760d;
    border-radius: 8px;
    padding: 20px 20px;
    gap: 15px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_img {
    width: 100%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_img img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
    margin: auto;
    /* height: auto; */
    aspect-ratio: 435/280;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_content a {
    color: var(--text) !important;
    text-align: left;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn_wrap a {
    color: var(--white);
    background-color: var(--primary);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn_wrap a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a {
    display: flex;
    padding: 15px 50px 15px 15px !important;
    background-image: url(/wp-content/uploads/2026/04/caret-double-right.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center right 20px;
    color: var(--primary);
    font-size: 16px;
    line-height: 22px;
    border-radius: 5px;
    gap: 10px;
    font-weight: 600;
    flex-wrap: wrap;
    align-items: center;
    transition: var(--base-transition);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a:hover {
    background-position: center right 12px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>img {
    max-width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div>span {
    font-size: 14px;
    color: var(--base);
    font-weight: 400;
    line-height: 1.3;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div>strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a:hover {
    background-color: #012d760d;
}

.site_header .header_menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a .menu-description {
    display: block;
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
}

.site_header .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/uploads/2026/04/arrow-down-svgrepo-com.svg) !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block !important;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(11%) saturate(2676%) hue-rotate(174deg) brightness(92%) contrast(97%) !important;
}

.site_header .header_menu__wrap .nav-menu>li.mega_menu:hover>.sub-arrow {
    transform: rotate(180deg);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn {
    width: auto;
}

/* ************************** mega menu ************************** */
/* ************************** mega menu responsive  ************************** */
@media(max-width:1024px) {
    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right {
        display: none;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left {
        width: 100%;
    }

    /* .site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
        filter: brightness(0) saturate(100%) invert(48%) sepia(78%) saturate(4921%) hue-rotate(356deg) brightness(91%) contrast(92%) !important;
    }

    .site_header .header_mobile-menu .nav-menu>li.mega_menu:hover>span.sub-arrow {
        filter: brightness(0) saturate(100%) invert(56%) sepia(12%) saturate(1364%) hue-rotate(75deg) brightness(94%) contrast(88%) !important;
    } */

    .site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow.active {
        transform: rotate(-180deg);
    }

    .site_header .header_menu .mega_menu>ul.sub-menu {
        position: static;
        pointer-events: unset !important;
        min-width: auto;
        padding: 10px 20px;
        transform: unset;
        gap: 15px;
        margin: 0px 0px 10px 0px;
        max-width: 500px;
        box-shadow: unset;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        height: 100%;
        transform: none;
        transition: none;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a {
        padding: 10px 45px 10px 10px !important;
        background-color: unset;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu {
        gap: 5px;
    }

    /* ******* */
    body .site_header .header_mobile_menu__wrap ul.nav-menu>li.menu-item-has-children {
        position: relative;
    }

    body .site_header .header_mobile_menu__wrap ul.nav-menu>li {
        width: fit-content;
    }

    body .site_header .header_mobile_menu__wrap ul.nav-menu>li>a::after {
        display: none;
    }

/*     body .site_header .header_mobile_menu__wrap ul.nav-menu>li>a:hover {
        color: var(--accent) !important;
    } */
}

/* ************************** mega menu responsive  ************************** */
/* ************************** Footer ************************** */
.site-footer {
    background-color: #1e1919;
    color: var(--white);
    padding-block: 80px 30px;
    padding-inline: 20px;
}

.site-footer .copright_wrapper {
    margin-top: 45px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--white);
}

.site-footer .site-footer_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.site-footer .site-footer_row .site-footer_items {
    width: calc(24% - 15px);
}

.site-footer_items:first-child {
    width: calc(28% - 15px) !important;
}

.site-footer .site-footer_row .site-footer_items .widget_first {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.site-footer .site-footer_row .site-footer_items .widget_first p {
    max-width: 304px;
}

.site-footer .site-footer_row .social-icon {
    display: flex;
    gap: 20px;
}

.site-footer .site-footer_row .social-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    border-radius: 50%;
}

.site-footer .site-footer_row .social-icon a:hover {
    background-color: var(--primary);
}

.site-footer .site-footer_row .site-footer_items .widget_first .widget_media_image img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    /* border-radius: 38px 38px 0px 0px;
    border-radius: 50%;
    padding: 2px;
    background: #fff; */
}

.site-footer .site-footer_row .site-footer_items .widget .widget_nav_menu nav {
    margin-top: 24px;
}

.site-footer .site-footer_row .site-footer_items h2 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 36px;
}

.site-footer .site-footer_row li.widget_block:has(ul) {
    margin-top: 20px;
}

.site-footer .site-footer_row .site-footer_items ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer .site-footer_row .site-footer_items ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    list-style: none;
}

.site-footer .site-footer_row .site-footer_items ul li a {
    color: var(--white);
}

.site-footer .site-footer_row .site-footer_items ul li a:hover {
    color: var(--secondary) !important;
}

.site-footer .site-footer_row .site-footer_items ul li:has(a):hover::after {
    background-color: var(--secondary);
}

.site-footer .site-footer_row .site-footer_items ul li::after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background-color: var(--white);
    position: absolute;
    left: -20px;
    top: 8px;
    transition: var(--base-transition);
}

.site-footer .site-footer_row .site-footer_items .widget_third li {
    margin: 0px;
    list-style: none;
}

.site-footer .site-footer_row .site-footer_items .widget_fourth li {
    list-style: none;
}

.site-footer .site-footer_row .site-footer_items .widget_fourth .bb_logo {
    display: block;
    margin-top: 20px;
    padding: 12px 20px;
    display: inline-block;
    background-color: var(--accent);
    border-radius: 12px;
}

.site-footer .site-footer_row .site-footer_items .widget_fourth .bb_logo img {
    max-width: 170px !important;
    width: 100%;
}

/* ************************** Footer  ************************** */

/* ************************* form ************************* */
.hero-banner .form-card .form .gform_wrapper .gform_footer input[type="submit"] {
    padding: .8em 1.5em !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    border: 2px solid transparent !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-align: center !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    font-family: var(--body-font) !important;
    opacity: 1 !important;
}

.hero-banner .form-card .form .gform_wrapper .gform_footer input[type="submit"]:hover {
    background: var(--secondary) !important;
    color: var(--black) !important;
    border-color: var(--secondary) !important;
}

/* ************************* form ************************* */

/* ************************* Error ************************* */
.error-sec {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.error-sec .intro {
    align-items: center;
}

.error404 .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.error404 .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--primary);
}

.error404 .header_menu .mobile_toggle_icon span {
    background: var(--primary);

}

/* ************************* Error ************************* */
/* ************************* single content ************************* */

#site-content {
    padding-bottom: 80px;
    padding-top: 180px;
    padding-inline: 20px;
}

#site-content article {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

#site-content article ol,
#site-content article ul {
    padding-left: 1.5em;
    margin: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#site-content article h1,
#site-content article h2,
#site-content article h3,
#site-content article h4,
#site-content article h5,
#site-content article h6 {
    margin-top: 1em;
    margin-bottom: 0.3em;
}

#site-content article>*:first-child {
    margin-top: 0 !important;
}

#site-content article>*:last-child {
    margin-bottom: 0 !important;
}

#site-content article header .entry-header-inner .entry-title {
    margin-top: 0px;
}

.privacy-policy .site_header,
.post-template-default .site_header{
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a,
.post-template-default .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--primary);
}

.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li .sub-arrow,
.post-template-default .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li .sub-arrow{
    	background: var(--primary);
}
.privacy-policy .footer-nav-widgets-wrapper.header-footer-group {
    display: none;
}

.privacy-policy .header_menu .mobile_toggle_icon span,
.post-template-default .header_menu .mobile_toggle_icon span{
    background: var(--primary);
}

@media(max-width:768px) {
    #site-content {
        padding-bottom: 60px;
        padding-top: 150px;
    }
}

/* ************************* single content ************************* */
/* ************************* Hero Banner ************************* */
.hero-banner .hero-banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-banner .hero-banner_bg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.hero-banner .hero-banner_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, black, transparent);
}

.hero-banner .hero-banner_row {
    grid-template-columns: 1fr 40%;
    align-items: center;
    position: relative;
}

.hero-banner .container {
    padding-top: 120px;
}

.hero-banner .hero-banner_row .hero-banner_intro {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 767px;
    gap: 32px;
    margin: auto;
}


.hero-banner_row:not(:has(.hero-banner_video)) {
    text-align: center;
    grid-template-columns: 1fr;
}

.hero-banner .hero-banner_row .hero-banner_intro .hero-banner_inner {
    gap: 12px;
}

.hero-banner_row:not(:has(.hero-banner_video)) .btn-wrap {
    justify-content: center;
}

.hero-banner_row:not(:has(.hero-banner_video)) .title-tag::after {
    left: 50%;
    transform: translateX(-50%)
}

.hero-banner_row:not(:has(.hero-banner_video)) .hero-banner_inner {
    align-items: center;
}

.hero-banner .hero-banner_row .hero-banner_video {
    max-width: 558px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-banner .hero-banner_row .hero-banner_intro .hero-banner_inner ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
}

.hero-banner .hero-banner_row .hero-banner_video a {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.hero-banner .hero-banner_row .hero-banner_video a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 240px;
    aspect-ratio: 480/320;
    transform: scale(1);
    border-radius: 16px;
}

.hero-banner .hero-banner_row:has(.hero-banner_video) .hero-banner_intro {
    margin: 0px;
}

.play_btn::before,
.play_btn::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffd;
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--white);
    animation: button-ripple 3s infinite;
    opacity: 0.6;
    z-index: 0;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    z-index: 3;
}

.play_btn::after {
    animation-delay: 0.3s;
}

.play_btn::before {
    animation-delay: 0.9s;
}

@keyframes button-ripple {
    70% {
        box-shadow: 0 0 0 35px var(--white);
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 var(--white);
        opacity: 0;
    }
}

.rating-badge .rating-left {
    display: flex;
    gap: 10px;
}

.rating-badge {
    display: flex;
    gap: 10px;
    border: 1px solid var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
}

.rating-badge .avatars {
    display: flex;
    margin-right: -12px;
}

.rating-badge .avatars img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: -8px;
    border: 1px solid var(--white);
}

.rating-badge .avatars img:first-child {
    margin: 0px;
}

.rating-badge .rating-left .google-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.rating-badge .rating-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.rating-badge .rating-left .star-rating {
    display: flex;
    /* width: 100%; */
}

.rating-badge .rating-left .star-rating img {
    width: 18px;
    height: 18px;
}

.hero-banner .form-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 26px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.hero-banner .form-card .form-card_testimonial {
    display: flex;
    gap: 12px;
}

.hero-banner .form-card .form-card_testimonial .form-card_testimonial_img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-banner .form-card .form-card_testimonial .form-card_testimonial_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner .form-card .form-card_testimonial .form-card_testimonial_desc {
    font-size: 14px;
}

.hero-banner .form-card .form-card_features ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-banner .form-card .form-card_features ul li {
    position: relative;
    list-style: none;
    font-size: 14px;
    display: flex;
    gap: 4px;
    list-style: none;
}

.hero-banner .form-card .form-card_features ul li::before {
    content: '';
    background: url(/wp-content/uploads/2026/04/tick-svgrepo-com.svg);
    width: 18px;
    height: 18px;
    display: block;
    margin-top: 2px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-banner .form-card .form {
    padding: 10px 0px;
}

.hero-banner .form-card .form .gform_wrapper .gform-body .gform_fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-banner .form-card .form .gform_wrapper .gform-body .gform_fields input {
    border: 1px solid #ccc;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--black);
    outline: none !important;
}

.hero-banner .form-card .form .gform_wrapper .gform-body .gform_fields input:focus-visible {
    box-shadow: 0px 0px 1px 0px var(--secondary) !important;
}

.hero-banner .form-card .form .gform_wrapper .gform_validation_errors {
    display: none !important;
}

.hero-banner .form-card .form .gform_wrapper .gfield_error .validation_message {
    font-size: 12px;
    margin: 4px 0px 0px 4px;
}

.gform_confirmation_wrapper {
    border: 1px solid green;
    padding: 6px 10px;
    font-size: 12px;
}

.hero-banner .hero-banner_row .hero-banner_intro .hero-banner_inner .intro-content {
    padding-right: 80px;
}

.hero-banner .hero-banner_layer {
    position: absolute;
    /* background: red; */
    width: 50%;
    height: 159px;
    bottom: 1%;
    left: 40%;
    z-index: 1;
}

.hero-banner .hero-banner_layer img {
    transform: scaleY(-1) rotateZ(164deg);
    width: 38.2%;
    filter: brightness(0) saturate(100%) invert(88%) sepia(72%) saturate(2523%) hue-rotate(321deg) brightness(101%) contrast(94%);
}

/* ************************* Hero Banner ************************* */

/* ************************* Section 2 ************************* */
.premium_section .premium_inner {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.premium_section .premium_inner .premium_img-wrap {
    width: calc(20% - 17.6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .01);
    border: 5px solid var(--secondary);
    padding: 3.5%;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}

.premium_section .premium_inner .premium_img-wrap .premium_img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
}

/* ************************* Section 2 ************************* */

/* ************************* CTA Banner ************************* */

.cta-banner {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cta-banner__title {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
}

.cta-banner__desc {
    max-width: 768px;
    margin-inline: auto;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-banner .btn-wrap {
    justify-content: center;
}

/* ************************* CTA Banner ************************* */

/* ************************* Service Section ************************* */

.service-sec .service-inner {
    display: grid;
    grid-template-columns: 1fr 40%;
    align-items: center;
    gap: 60px;
}

.service-sec .service_left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.service-sec .service-item_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-sec .service-item_wrapper .service-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.service-sec .service-item .service-item_count {
    background: var(--primary);
    width: 70px;
    height: 70px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-sec .service-item .service-item_count h3 {
    color: var(--white);
    line-height: 1;
}

.service-sec .service-item .service-item_count h3::before {
    counter-increment: count;
    content: counter(count);
}

.service-sec .service-item_wrapper .service-item .service-item_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: calc(100% - 100px);
}

.service-sec .service_video {
    position: relative;
    max-width: 558px;
    border-radius: 16px;
    overflow: hidden;
}

.service-sec .service_video a {
    position: relative;
    display: block;
}

.service-sec .service_video img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* min-height: 260px; */
    /* aspect-ratio: 488/340; */
    /* transform: scale(1.3); */
}

.service-sec {
    counter-reset: count;
}

/* ************************* Service Section ************************* */

/* ************************* List Testimonial ************************* */

.list-testimonial__grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.list-testimonial__left {
    position: sticky;
    top: 170px;
}

.list-testimonial__left a {
    width: 100%;
    height: 100%;
    position: relative;
}

.list-testimonial__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.list-testimonial {
    display: grid;
    gap: 2rem;
    grid-template-rows: 1fr;
}

.lt-card {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .015);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.lt-card__desc {
    font-family: var(--sub-font);
}

.lt-card__author {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: center;
}

.lt-card__author-img img {
    width: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #ccc;
}

.lt-card__author-name {
    font-family: var(--title-font);
    font-size: 1rem;
}

.lt-card__author-pos {
    font-size: 0.75rem;
    font-family: var(--sub-font);
}

.lt-card::after {
    content: "\f10d";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--primary);
    font-size: 50px;
    line-height: 0.7;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(180deg);
}

/* ************************* List Testimonial ************************* */

/* ************************* Registration Banner ************************* */

.registration-banner {
    min-height: 100svh;
    display: flex;
    color: var(--white);
}

.registration-banner::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, black, transparent);
}

.registration-banner .container {
    z-index: 1;
    position: relative;
    padding-top: 86px;
}

.rb__inner {
    gap: 100px;
}

.rb__bottom {
    gap: 3rem;
}

.rb__meta {
    gap: 0.5rem;
}

.rb__meta-title {
    font-family: var(--title-font);
}

.rb__title {
    font-size: clamp(2.5rem, 3.879vw + 1.106rem, 4.5rem);
}

.rb__meta-value {
    font-weight: 600;
}

/* ************************* Registration Banner ************************* */

/* ************************* Registration About ************************* */

.rg-about__top,
.rg-about__bottom {
    gap: 2.5rem;
    grid-template-columns: 1fr 66.666%;
}

.rg-about__top-rigth img {
    aspect-ratio: 1205/725;
    object-fit: cover;
    border-radius: 12px;
}

.rg-about__top-left img {
    aspect-ratio: 890/664;
    object-fit: cover;
    border-radius: 12px;
}

.rg-about__top-left {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.rg-about__top-left svg {
    margin: auto;
    width: 25%;
    height: auto;
}

.rg-about__bottom {
    padding-top: 1rem;
}

.rg-about__bottom-right {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.rg-about__desc {
    border-top: 2px solid var(--primary);
    padding-top: 1.5rem;
}

.rg-events__table {
    grid-template-columns: 27% 44% 1fr;
    gap: 2rem;
}

.contents {
    display: contents;
}

.rg-events__divider {
    height: 2px;
    background: #E1E1E1;
    grid-column: 1/-1;
}

.btn-text__link {
    display: flex;
    align-items: center;
    gap: 0.5em;
    width: fit-content;
    text-decoration: underline;
    font-weight: 600;
    text-underline-offset: 0.25em;
    text-decoration-color: transparent;
}

.btn-text__link img {
    height: 1.2em;
    width: auto;
}

.rg-events__table-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.btn-text__link:hover {
    text-decoration-color: currentColor;
}

.rg-events__table-date {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rg-events__day {
    color: var(--primary);
    font-size: 82px;
    font-weight: 600;
    line-height: 1;
}

.rg-events__month {
    font-weight: 600;
    color: #2e2e2e;
    font-size: 22px;
    line-height: 1.3;
}

.rg-events__table-center:has(.rg-events__table-title) {
    justify-content: center;
}

.rg-events__table-title {
    font-size: 29px;
    font-weight: 400;
    font-family: var(--title-font);
    color: var(--primary);
}

.rg-events__table-right:has(.btn-wrap) {
    display: flex;
    align-items: center;
}

.rg-events__meta-list {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem 1rem;
    flex-wrap: wrap;
}

.rg-events__meta-item {
    display: flex;
    gap: 0.5em;
    font-weight: 500;
    font-size: 14px;
}

.rg-events__meta-item img {
    height: 1.2rem;
    width: auto;
    margin-top: 0.1em;
}

.rg-events__table-center {
    gap: 1rem;
}

/* ************************* Registration About ************************* */

/* ************************* Schedule ************************* */

.schedule-container {
    max-width: 992px;
    margin-inline: auto;
    width: 100%;
}

.schedule-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 40px;
}

.schedule-tab__item {
    font-weight: 600;
    background: var(--secondary);
    padding: 0.5em 1em;
    border-radius: 4px;
    transition: all .3s ease;
    cursor: pointer;
}

.schedule-tab__item:hover {
    color: var(--white);
    background: var(--primary);
}

.schedule-tab-content {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
}

.timeline-list {
    position: relative;
    gap: 1.5rem;
}

.timeline-list::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: auto;
    width: 3px;
    right: 0;
    bottom: 12%;
    margin: auto;
    background: var(--secondary);
}

.timeline-block {
    position: relative;
    display: table;
    width: 100%;
}

.timeline-bullet {
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    background: #fff;
    margin: auto;
    right: 0;
    z-index: 1;
}

.timeline-date {
    padding: 0;
    font-weight: 600;
    color: #5d5d5d;
    position: absolute;
    width: 100%;
    left: calc(100% + 40px);
    top: 0;
    font-size: 15px;
}

.timeline-content {
    position: relative;
    margin-left: 0;
    min-height: 50px;
    margin-bottom: 10px;
    width: calc(50% - 20px);
}

.timeline-title {
    text-align: right;
    font-family: var(--title-font);
    color: var(--primary);
    font-size: 18px;
}

.timeline-desc {
    text-align: right;
    font-size: 15px;
    color: #535862;
    font-weight: 500;
}

.timeline-block:nth-child(even) .timeline-date {
    left: auto;
    text-align: right;
    right: calc(100% + 40px);
}

.timeline-block:nth-child(even) .timeline-title,
.timeline-block:nth-child(even) .timeline-desc {
    text-align: left;
}

.timeline-block:nth-child(even) .timeline-content {
    margin-left: auto;
}

/* ************************* Schedule ************************* */

/* ************************* Stay Connected ************************* */

.sc__inner {
    grid-template-columns: 50% 1fr;
    gap: 10%;
}

.sc-rigth {
    padding-top: 7vw;
    position: relative;
}

.sc-left__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: sticky;
    top: 148px;
}

.sc-image__part1 img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.sc-image__part2 img {
    object-fit: cover;
    border-radius: 8px;
}

.sc-image__part2 {
    grid-column: 1/-1;
}

.sc-card {
    background: var(--secondary);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    justify-content: space-between;
    gap: 64px;
}

.sc-card__tag {
    font-weight: 600;
    font-family: var(--sub-font);
    text-transform: uppercase;
}

.sc-rigth .intro-content {
    margin-top: 12px;
}

.icon-list {
    margin-top: 4rem;
    gap: 3rem;
}

.icon-card {
    gap: 1rem;
}


.icon-card__icon svg {
    height: 1.5rem;
    width: auto;
    fill: #000;
}

.icon-card__icon {
    background: var(--secondary);
    width: fit-content;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.icon-card__title {
    margin-bottom: 0.5rem;
}

/* ************************* Stay Connected ************************* */

/* Hero Banner Inner Pages */
.hero-sec {
    color: white;
    padding-block: 120px;
}

.hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-sec .container {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) - 40px);
}

.hero-sec_row:not(:has(.hero-sec_video)) {
    text-align: center;
    grid-template-columns: 1fr;
}

.hero-sec .hero-sec_row .hero-sec_intro {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 767px;
    gap: 32px;
    margin: auto;
}

.hero-sec_row:not(:has(.hero-sec_video)) .title-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero-sec .hero-sec_row .hero-sec_intro .btn-wrap {
    margin-top: 32px;
}

.hero-sec_row:not(:has(.hero-sec_video)) .btn-wrap,
.sticky_image_sec .btn-wrap {
    justify-content: center;
}

.hero-sec .hero-sec_row .hero-sec_intro h1 {
    margin-bottom: 16px;
}

/* Hero Banner Inner Pages */
/* Partners Section */
.supplier_options .main_wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.supplier_options .title_wrap {
    text-align: center;
    align-items: center;
    gap: 15px;
    max-width: 950px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.supplier_options .main_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.supplier_options .main_row .col_wrap {
    width: 33.333%;
    padding: 15px;
}

.supplier_options .main_row .col_wrap center {
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.supplier_options .main_row .col_wrap img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin-bottom: 15px;
    object-fit: contain;
    aspect-ratio: 200/100;
}

/* Partners Section */
/* faq Section */
.faq_row {
    grid-template-columns: 43% 1fr;
    gap: 60px;
}

.faq__left {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 24px;
    justify-content: flex-end;
    height: 100%;
    /* min-height: 725px;
    max-width: 97.561%; */
}

.faq__right {
    justify-content: center;
}

/* faq Section */
/* Faq */
.accordion_wrapper {
    margin-top: 32px;
}

.accordion_item {
    padding-block: 20px;
    border-bottom: 1px solid #d5d8dc;
}

.accordion_item:first-child {
    border-top: 1px solid #d5d8dc;
}

.accordion_header {
    display: grid;
    grid-template-columns: 1fr 15px;
    gap: 30px;
    cursor: pointer;
}

.accordion_header img {
    margin-top: 7px;
}

.accordion_item.active .accordion_header img {
    transform: rotateZ(45deg);
}

.answer {
    display: none;
}

.accordion_item_answe_inner {
    padding-top: 12px;
}

/* Faq */
/* About sec */
.about-sec__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-sec__info {
    gap: 1.5rem;
}

.about-sec__desc ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-sec__desc ul li {
    list-style: none;
    position: relative;
    display: inline-block;
    padding-left: 26px;
}

.about-sec__desc ul li::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77.7 77.4'%3E%3Cpath fill='%23f7ca43' d='M.1 47.9c6.6 4.1 13.1 8.2 19.7 12.3.4.3 1 .1 1.3-.3l.2-.2c6.1-9.4 12.7-18.4 19.8-26.9C48.7 23.8 56.8 15.4 66 8c2.4-1.9 8.8-6.3 11.5-8 .2-.1.3.1.2.3-24.3 24.3-39.9 48.5-52.3 76.1-.6 1.2-2.2 1.4-3.1.4C14.9 67.1 7.4 57.6.1 47.9c-.1.1-.1 0 0 0z'/%3E%3C/svg%3E");
    width: 1em;
    height: 1.625em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    position: absolute;
    left: 0px;
    top: 4px;
}

.about-sec__img {
    position: relative;
    padding-right: 24px;
    padding-bottom: 24px;
    max-width: 600px;
}

.about-sec__img::before {
    position: absolute;
    content: '';
    left: 20px;
    bottom: 0px;
    background: linear-gradient(0deg, #1c3657 40%, #284c7c 100%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
}

.about-sec__img img {
    position: relative;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 548/450;
}

/* About sec */
/* Benefit Sec */
.benefit_sec .benefit_row .desc_wrapper {
    border-left: 1px solid var(--secondary);
    padding-left: 30px;
}

.benefit_inner {
    grid-template-columns: 48% 45%;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.benefit_inner__left {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-block: 70px;
    max-width: 800px;
}

.benefit_img_block {
    width: 100%;
    position: absolute;
    height: 100%;
}

.benefit_img_block img {
    object-fit: cover;
    position: absolute;
    border-radius: 24px;
    object-position: top center;
}

.benefit_img_block img:first-child {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc(50% - 10px);
    height: 90%;
}

.benefit_img_block img:nth-child(2) {
    width: 43%;
    right: 4%;
    top: 0;
    height: calc(50% - 10px);
}

.benefit_img_block img:nth-child(3) {
    width: calc(50% - 20px);
    right: 0;
    top: auto;
    bottom: 0;
    height: calc(50% - 10px);
}

.benefit_counter {
    background: var(--secondary);
    z-index: 2;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin: 0px 20px;
}

.number_cont_child:not(:last-child) {
    border-bottom: 1px solid currentColor;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.number_cont_box {
    text-align: center;
}

.number_cont_box_inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    gap: 10px;
    margin-bottom: 8px;
}

.number_cont_box_inner p {
    font-size: 36px;
    line-height: 1;
}

.number_cont_box span {
    font-size: 17px;
}

.benefit_inner__right {
    gap: 32px;
}

.benefit_icon_box {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.benefit_icon__wrap {
    border-radius: 50%;
    background: var(--secondary);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.benefit_icon__wrap img {
    height: 34px;
    width: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
}

.benefit_icon_box_content {
    gap: 8px;
}

.benefit_icon_box_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
}

/* Benefit Sec */
/* Team Section */
.team-member__list {
    --column: 3;
    --gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem var(--gap);
    align-items: stretch;
    justify-content: center;
}

.team-member__item {
    width: calc((100% / var(--column)) - (((var(--column) - 1) * var(--gap)) / var(--column)));
}

.team_member_popup {
    display: none;
}

.team-member__card {
    text-align: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 54, 110, 0.15);
    border-bottom: 3px solid var(--secondary);
    height: 100%;
    cursor: pointer;
}

.team-member__card-img img {
    aspect-ratio: 383/400;
    object-fit: cover;
}

.team-member__card-name {
    padding: 1.5rem 1rem;
    flex-grow: 1;
}

.team-member__card-name h3 {
    color: var(--secondary);
}

.team-member__card-name span {
    font-weight: 400;
    display: block;
    color: var(--black);
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.know_more {
    display: none;
    margin-top: auto;
}

.know_more a {
    position: relative;
    color: var(--secondary);
    font-family: var(--title-font);
    text-underline-offset: 0.25em;
    font-weight: 600;
}

.team_member_popup .popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.team_member_popup .main_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateY(-50%) translateX(-50%);
    height: calc(100vh - 40px);
    display: flex;
    width: calc(100vw - 40px);
}

.team_member_popup .content_wrapper {
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
}

.team_member_popup .content_wrapper .close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 20px;
}

.team_member_popup .content_wrapper .popup_data {
    display: flex;
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.team_member_popup .content_wrapper .popup_data .member_img {
    width: 40%;
}

.team_member_popup .content_wrapper .popup_data .member_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1/0.9;
}

.team_member_popup .content_wrapper .popup_data .about_member {
    width: 60%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
    overflow-y: scroll;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member__position {
    color: var(--secondary);
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member_content {
    padding-top: 10px;
}

/* Team Section */
/* Blog Listing */
.page-template-Blog-page .post_wrapper_sec .post_wrapper,
.thanku-blog_inner .post_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items,
.thanku-blog_inner .post_wrapper .post_items {
    width: calc(33.33% - 21.33px);
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0 15px 40px;
    border-radius: 17px;
    overflow: hidden;
}

.page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items .img_wrapper,
.thanku-blog_inner .post_wrapper .post_items .img_wrapper {
    height: 273px;
}

.page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items .img_wrapper img,
.thanku-blog_inner .post_wrapper .post_items .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items .content_wrapper,
.thanku-blog_inner .post_wrapper .post_items .content_wrapper {
    padding: 0 20px 20px;
}

.page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items a,
.thanku-blog_inner .post_wrapper .post_items a {
    position: absolute;
    inset: 0;
}

/* Blog Listing */
/* Single Post */
.single-post .post-meta-wrapper,
.single-post figure.featured-media,
.single-post .entry-categories {
    margin: 0;
    display: none;
}

#site-content article h1 {
    margin-bottom: 42px;
}

.single-post .post-inner h2,
.single-post .post-inner h3,
.single-post .post-inner h4,
.single-post .post-inner h5,
.single-post .post-inner h6 {
    margin: 35px 0 15px;
}

.single-post .post-inner ol,
.single-post .post-inner ul {
    padding-left: 15px;
    display: inline-block;
    vertical-align: top;
}

#site-content article {
    max-width: 940px;
    margin: auto;
    padding: 0 20px;
}

.table_content_wrapper {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 30px 30px 0;
    padding: 20px 12px 24px 16px;
    width: 250px;
    position: fixed;
    top: 200px;
    box-sizing: border-box;
}

.table_content_wrapper h3 {
    font-size: 24px;
    line-height: 1.41666667em;
}

.table_content_wrapper .progress_wrapper {
    background: #e0e0e0;
    height: 5px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.table_content_wrapper .progress_wrapper .progress_bar {
    height: 100%;
    background-color: var(--secondary);
    border-radius: 12px;
}

.table_content_wrapper .sync_wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.table_content_wrapper .sync_wrapper .sync_item {
    display: flex;
    align-items: center;
    padding: 4px 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color .2s ease-in-out;
    font-size: 14px;
    line-height: 22px;
}

.table_content_wrapper .sync_wrapper .sync_item:hover,
.table_content_wrapper .sync_wrapper .sync_item.active {
    background-color: #f4f4f4;
}

.single-post .comment-respond {
    max-width: 600px;
    margin-left: 0 !important;
}

.single-post .comment-respond input:not([type="checkbox"]):not([type="submit"]),
.single-post .comment-respond textarea {
    width: 100%;
    border: 1px solid #dbdbdb;
    padding: 6px 15px;
}

.single-post .comment-respond label {
    display: block;
    margin-bottom: 6px;
}

.comment-respond input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7em 1.5em;
    gap: 6px;
    font-size: 14px;
    font-family: inherit;
    background: var(--secondary);
    color: var(--black);
    border: 1px solid var(--secondary);
    transition: all .3s ease-in-out;
}

.comment-respond input[type="submit"]:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.consulation_sec {
    width: 100% !important;
    min-height: 250px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .75);
    background-color: #fbfaf8;
    margin-block: 20px !important;
}

.consulation_sec_inner {
    display: flex;
    width: 100%;
    min-height: 313px;
    background-color: #fbfaf8;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .75);
}

.consulation_sec_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    width: 60%;
    text-align: left;
    gap: 20px;
}

.consulation_sec_left h2 {
    margin: 0 !important;
}

.consulation_sec_right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px;
    width: 40%;
}

.single-post .hightlight_area {
    background-color: var(--bg-primary);
    padding: 35px;
    border-radius: 20px;
    margin-block: 40px 20px;
    position: relative;
}

.single-post .hightlight_area::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    display: block;
    top: -25px;
    background-color: var(--secondary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4.75C8.5 4.75 6.75 7.5 6.75 10c0 4 3 4.5 3 6v2.25a1 1 0 0 0 1 1h2.5a1 1 0 0 0 1-1V16c0-1.5 3-2 3-6 0-2.5-1.75-5.25-5.25-5.25ZM10 16.75h4' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 35px;
    background-position: center;
    background-repeat: no-repeat;
}

.pagination-single {
    margin-top: 40px;
    border-block: 1px solid var(--primary);
    padding-block: 20px;
}

.pagination-single hr {
    display: none;
}

.pagination-single-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.pagination-single-inner a {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.pagination-single-inner a.next-post {
    flex-direction: row-reverse;
    text-align: right;
}

/* Single Post */

/* Contact Page */
.choose-us-sec .choose-us_row .choose-us_inner {
    grid-template-columns: 1fr 1fr;
}

.choose-us_inner .intro-content ul {
    margin-top: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-us_inner .intro-content ul li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
}

.choose-us_inner .intro-content ul li .icon-bg {
    background: var(--secondary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

.choose-us_inner .intro-content ul li .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choose-us_inner .intro-content ul li .contact-list h6 {
    font-size: 20px;
    line-height: 1.2;
}

.choose-us-sec .choose-us_inner .choose-us_form {
    background-color: #eee;
    padding: 30px;
    border-radius: 10px;
}

.choose-us-sec .choose-us_inner .choose-us_form .gform_wrapper {
    margin-top: 24px;
}

body .gform_wrapper .gform_fields {
    gap: 20px;
}

body .gform_wrapper .gfield select,
body .gform_wrapper .gfield input,
body .gform_wrapper .gfield textarea {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 16px;
    color: var(--black);
    padding: 10px 16px;
    transition: all 500ms ease;
    line-height: 28px;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    outline: none !important;
    background-color: var(--white);
}

body .gform_wrapper .gform-footer input[type="submit"],
body .gform_wrapper .gform_footer input[type="submit"] {
    padding: .8em 1.5em !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    border-radius: 4px !important;
    font-size: 17px !important;
    border: 2px solid transparent !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-align: center !important;
    color: var(--white) !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    font-family: var(--body-font) !important;
    opacity: 1 !important;
}

body .gform_wrapper .gform-footer input[type="submit"]:hover,
body .gform_wrapper .gform_footer input[type="submit"]:hover {
    background: var(--secondary) !important;
    color: var(--black) !important;
    border-color: var(--secondary) !important;
}

.choose-us-sec .choose-us_map iframe {
    height: 500px !important;
    width: 100% !important;
}

/* Contact Page */
/* Events */
.event-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.events-sec.processing .event-wrapper::after,
.events-sec.processing .event-wrapper::before {
    content: "";
    position: absolute;
    pointer-events: unset;
    opacity: 1;
    animation-play-state: running;
}

.events-sec.processing .event-wrapper::before {
    inset: -10px;
    background-color: #FFF;
    z-index: 1;
}

.events-sec.processing .event-wrapper::after {
    z-index: 2;
    animation: spin 1.1s linear infinite;
    background: conic-gradient(transparent, transparent 12%, var(--primary));
    border-radius: 50%;
    width: 100px;
    height: 100px;
    inset: 0;
    margin: 100px auto;
}

.events-sec.processing .event-wrapper::before {
    opacity: 0.75;
}

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

.event-item {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #ccc;
    background: var(--accent);
}

.event-item>a {
    width: 100%;
}

.event-item .ova_thumbnail {
    position: relative;
}

.event-item .ova_thumbnail img {
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 10px;
}

.event-item .ova_thumbnail .status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 100px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.event-item .wrap_content {
    padding: 16px;
    position: relative;
}

.event-item .wrap_content .event_details {
    margin-bottom: 12px;
}

.event-item .wrap_content .event_details .time {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    right: 16px;
    font-size: 12px;
    justify-content: center;
    transform: translateY(-50%);
    background-color: var(--secondary);
    color: var(--black);
    border-radius: 50%;
    font-weight: 600;
    line-height: 1.35;
}

.event-item .wrap_content .event_details .venue {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.event-item .wrap_content .event_details .venue span {
    line-height: 0;
}

.event-item .wrap_content .event_details .venue svg {
    width: 16px;
}

.event-item .wrap_content .title {
    margin-bottom: 8px;
}

.event-item .wrap_content .except {
    margin-bottom: 24px;
    font-size: 14px;
}

.event-item .wrap_content .btn {
    border-radius: 12px;
}

/* Events */

/* *********************** thank you *************************** */

.thanks-banner .scroll-arrow {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-top: 20px;
}
.thanks-banner .scroll-arrow a {
	width: 50px;
	height: 50px;
	background: var(--secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 20px;
	transition: var(--base-transition);
}
.thanks-banner .scroll-arrow a:hover {
	background: var(--white);
}
.clandy-sec .clandy-wrap iframe {
	height:700px;
}
.clandy-sec .btn-wrap {
	justify-content: center;
	margin-top: 10px;
}
/* *********************** thank you *************************** */

/* *********************** Header *************************** */

:root {
    --header-height: 104px;
}

@media (max-width:575px) {
    :root {
        --header-height: 88px;
    }
}

html {
    scroll-padding-top: var(--header-height) !important;
}

.header_menu span.sub-arrow {
    width: 1.2em;
    height: 1.2em;
    background: #fff;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tZG93bi1pY29uIGx1Y2lkZS1jaGV2cm9uLWRvd24iPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==);
    mask-size: contain;
    mask-repeat: no-repeat;
    transition: all .3s ease;
}

.header_menu .menu-item-has-children {
    position: relative;
}

.header_menu .menu-item-has-children>.sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    padding: 10px 1.5rem;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, .4);
    z-index: 99;
    transition: 0.2s all ease-in-out;
    min-width: 210px;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

/* .header_menu .menu-item-has-children>.sub-menu::after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 30px;
    top: -20px;
    left: 0;
} */

.header_menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header_menu .menu-item-has-children:hover>a::after {
    width: 100% !important;
}

@media(min-width:1025px) {
.header_menu .menu-item-has-children>.sub-menu::after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 30px;
    top: -20px;
    left: 0;
}
    .header_menu .menu-item-has-children:hover>.sub-arrow {
        transform: rotate(180deg);
    }
}

.header_menu .menu-item-has-children>.sub-arrow.show {
    transform: rotate(180deg);
}

.header_menu .sub-menu>li>a {
    font-size: 14px;
    font-weight: 600;
    padding-block: 10px;
    color: var(--primary);
    border-radius: 4px;
    width: fit-content;
    position: relative;
}

.custom_sticky .header_menu span.sub-arrow {
    background: var(--primary);
}

.header_menu .sub-menu>li>a::after {
    content: '';
    position: absolute;
    width: 100%;
    background: var(--secondary);
    height: 2px;
    bottom: 8px;
    left: 0;
    transition: transform .3s;
    transform: scaleX(0);
    transform-origin: right center;
}

.header_menu .sub-menu>li>a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

@media(max-width:1024px) {
    .header_menu .menu-item-has-children>.sub-menu {
        opacity: 1;
        visibility: visible;
        position: relative;
        width: 100%;
        min-width: 0;
        box-shadow: unset;
        padding-block: 0;
        padding-inline: 1rem;
        display: none;
        transition: unset;
    }

    .header_menu span.sub-arrow {
        background: var(--primary);
    }
}

/* *********************** Header *************************** */

/* *********************** responsive *************************** */

@media (max-width: 1450px) {
    .single-post #site-content article {
        max-width: none;
        margin: 0 0 0 auto;
        width: calc(100% - 250px);
    }

    .single-post #site-content .container {
        max-width: none;
    }
}

@media (max-width: 1200px) {
    .site-footer .site-footer_row {
        gap: 30px;
    }
}

@media(max-width:1024px) {
    .grid-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title-tag {
        margin-bottom: 15px;
    }

    .hero-banner .hero-banner_row {
        grid-template-columns: 1fr;
    }

    .premium_section .premium_inner .premium_img-wrap {
        width: calc(33.33% - 14.66px);
    }

    .site-footer .site-footer_row .site-footer_items {
        width: 40% !important;
    }

    .hero-banner .hero-banner_layer {
        display: none;
    }

    .hero-banner .hero-banner_row .hero-banner_intro .hero-banner_inner .intro-content {
        padding-right: 0px;
    }

    .registration-banner .btn {
        width: 100%;
    }

    .rb__bottom {
        gap: 1.5rem;
    }

    .rg-about__top,
    .rg-about__bottom,
    .rg-about__bottom-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rg-about__top-left svg {
        display: none;
    }

    .rg-events__table-left {
        grid-column: 1/-1;
    }

    .rg-events__table {
        grid-template-columns: 1fr auto;
    }

    .sc__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sc-rigth {
        padding: 0;
    }

    .icon-list {
        margin-top: 3rem;
    }

    .table_content_wrapper {
        display: none;
    }

    .event-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-sec__grid,
    .benefit_inner {
        grid-template-columns: 1fr;
    }

    .list-testimonial__grid,
    .service-sec .service-inner {
        gap: 48px;
    }

    .single-post #site-content article {
        width: 100%;
        padding: 0;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member_content {
        scrollbar-width: thin;
        max-height: 490px;
        padding-right: 10px;
        overflow: auto;
    }

    .team_member_popup .content_wrapper .popup_data .about_member,
    .team_member_popup .content_wrapper .popup_data .member_img {
        width: 50%;
    }
}

@media(max-width:768px) {

    html:has(.page-template-home) {
        scroll-padding-top: 110px;
    }

    .h--1,
    h1 {
        font-size: 40px;
    }

    .h--2,
    h2 {
        font-size: 38px;
    }

    .h--3,
    h3 {
        font-size: 30px;
    }

    .h--4,
    h4 {
        font-size: 28px;
    }

    .premium_section .premium_inner .premium_img-wrap {
        width: calc(50% - 11px);
    }

    .site-footer .site-footer_row .site-footer_items {
        width: 100% !important;
    }

    .site-footer .site-footer_row .site-footer_items .widget_first p {
        max-width: 100%;
    }

    .error-sec {
        padding-top: 140px;
    }

    .rg-events__table-right {
        justify-content: flex-start;
    }

    .rg-events__table-date {
        margin-bottom: -1rem;
    }

    .rg-events__table {
        grid-template-columns: 1fr;
    }

    .intro {
        gap: 1em;
    }

    .hero-sec {
        padding-block: 80px;
    }

    .event-wrapper {
        gap: 24px;
    }

    .choose-us-sec .choose-us_row .choose-us_inner {
        grid-template-columns: 1fr;
    }

    body .gform_wrapper .gform_fields {
        gap: 12px;
    }

    .choose-us-sec .choose-us_inner .choose-us_form {
        padding: 20px;
    }

    .choose-us-sec .choose-us_map iframe {
        height: 300px !important;
    }

    .faq_row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq__left {
        min-height: 280px;
        max-width: 100%;
    }

    .supplier_options .main_row .col_wrap {
        width: 50%;
    }

    .page-template-Blog-page .post_wrapper_sec .post_wrapper,
    .thanku-blog_inner .post_wrapper {
        gap: 24px;
    }

    .page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items,
    .thanku-blog_inner .post_wrapper .post_items {
        width: calc(50% - 12px);
    }

    .team-member__list {
        --column: 2;
    }

    .benefit_counter {
        padding: 20px;
        max-width: 210px;
    }

    .number_cont_box_inner p {
        font-size: 32px;
        line-height: 1;
    }

    .list-testimonial__grid,
    .service-sec .service-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .consulation_sec_inner {
        flex-wrap: wrap;
    }

    .consulation_sec_left {
        padding: 20px;
        width: 100%;
    }

    .consulation_sec_right {
        width: 100%;
    }

    .list-testimonial__left {
        position: relative;
        top: 0;
    }

    .team_member_popup .content_wrapper .popup_data .about_member,
    .team_member_popup .content_wrapper .popup_data .member_img {
        width: 100%;
    }

    .team_member_popup .content_wrapper .popup_data {
        flex-direction: column-reverse;
    }

    .team_member_popup .content_wrapper .popup_data .about_member {
        padding: 32px 24px;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member_content {
        scrollbar-width: thin;
        max-height: 350px;
        padding-right: 10px;
        font-size: 14px;
    }
}

@media(max-width:575px) {
    .site-footer {
        padding-top: 60px;
    }

    .schedule-tab-content {
        padding-inline: 1rem;
    }

    .hero-banner .container {
        padding-top: 80px;
    }

    .h--1,
    h1 {
        font-size: 32px;
    }

    .h--2,
    h2 {
        font-size: 30px;
    }

    .h--3,
    h3 {
        font-size: 28px;
    }

    .h--4,
    h4 {
        font-size: 26px;
    }

    .h--5,
    h5 {
        font-size: 22px;
    }

    .title-tag {
        font-size: 14px;
        line-height: 1.4;
    }

    .btn {
        padding: .6em 1.2em;
        font-size: 15px;
    }

    .text-xl {
        font-size: 16px;
        line-height: 1.4;
    }

    section {
        padding-block: 60px;
    }

    .gap-m {
        gap: 2.6rem;
    }

    .rating-badge .rating-left .text {
        font-size: 12px;
    }

    .rating-badge .rating-left {
        gap: 7px;
    }

    .rating-badge .avatars img {
        width: 36px;
        height: 36px;
    }

    .site_header .header_logo img,
    .site-footer .site-footer_row .site-footer_items .widget_first .widget_media_image img {
        height: 64px;
    }

    .site_header {
        padding: 12px 20px;
    }

    .site-footer .site-footer_row .site-footer_items h2 {
        margin-bottom: 8px;
    }

    .site-footer .site-footer_row li.widget_block:has(ul) {
        margin-top: 8px;
    }

    .site-footer .site-footer_row .site-footer_items .widget_first {
        gap: 16px;
    }

    .registration-banner .btn {
        width: 100%;
    }

    .rb__bottom {
        gap: 1.5rem;
    }

    .rg-events__day {
        font-size: 70px;
    }

    .rg-events__month {
        font-size: 16px;
    }

    .rg-events__table-title {
        font-size: 24px;
    }

    .sc-left__inner {
        grid-template-columns: 1fr;
    }

    .sc-card {
        min-height: 250px;
    }

    .event-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .supplier_options .main_row {
        gap: 16px;
    }

    .supplier_options .main_row .col_wrap {
        width: 100%;
        padding: 0;
    }

    .page-template-Blog-page .post_wrapper_sec .post_wrapper,
    .thanku-blog_inner .post_wrapper {
        gap: 16px;
    }

    .page-template-Blog-page .post_wrapper_sec .post_wrapper .post_items,
    .thanku-blog_inner .post_wrapper .post_items {
        width: 100%;
    }

    .team-member__list {
        --column: 1;
    }

    .benefit_sec .benefit_row .desc_wrapper {
        padding-left: 20px;
    }

    .benefit_icon_box {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit_icon__wrap {
        width: 44px;
    }

    .benefit_icon__wrap img {
        height: 20px;
    }

    .benefit_inner__left {
        padding-block: 54px;
    }

    .number_cont_box span {
        font-size: 14px;
    }

    .number_cont_box_inner p {
        font-size: 22px;
    }

    .list-testimonial {
        gap: 1rem;
    }

    .lt-card {
        padding: 1.25rem;
    }

    .lt-card__author {
        gap: 0.75rem;
        grid-template-columns: 2.5rem 1fr;
    }

    .service-sec .service-item_wrapper .service-item {
        gap: 20px;
        flex-direction: column;
    }

    .service-sec .service-item .service-item_count {
        width: 54px;
        height: 54px;
    }

    .service-sec .service-item_wrapper .service-item .service-item_info {
        width: 100%;
    }
}

/* *********************** responsive *************************** */