@import url('https://fonts.googleapis.com/css2?family=Content:wght@400;700&family=M+PLUS+Rounded+1c&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif+SC:wght@200..900&family=Sawarabi+Gothic&display=swap');

:root {
    --swiper-theme-color: #000 !important;
    --primary-color: #254666;
    --primary-color-light: #2e5a7f;
    --secondary-color: #ecd8a8;
    --secondary-color-light: #eceae2;
    --text-color: #414243;
    --color-black: black;
    --color-lightgrey: rgb(226, 223, 223);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    li {
        line-height: 1.5;
    }
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: var(--color-black);
    line-height: 1.5;
}
p {
    line-height: 1.5;
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}

/* .site-content {
    padding-top: 50px;
} */


/* HEADER STYLE */
.headerContainer {
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: white;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.headerContainer.sticky {
    position: fixed;
    top: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.topHeader {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topHeader .leftSide {
    display: flex;
    align-items: center;
}

.topHeader .leftSide .logo img {
    height: 40px;
    width: auto;
}

.topHeader .rightSide {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;

    .searchBoxContainer,
    .languageBoxContainer {
        position: absolute;
        top: 170%;
        right: 0;
        background-color: white;
        width: auto;
        padding: 10px;
        height: auto;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

        form {
            input[type=text] {
                font-size: 16px;
                font-weight: 300;
                border: none;
                padding: 0 10px;
            }

            button {
                background-color: var(--primary-color);
                border: none;
                padding: 5px 25px;
                font-size: 12px;
                text-transform: uppercase;
                font-weight: 600;
                color: white;
                border-radius: 50px;
                transition: all 0.3s ease;
            }

            button:hover {
                background-color: var(--secondary-color);
                color: var(--primary-color);
            }
        }
    }


    .languageBoxContainer {
        top: 165%;
        width: auto;
        left: 0;
        right: inherit;
        display: flex;
        flex-direction: column;
        gap: 10px;

        ul {
            display: flex;
            flex-direction: column;
            gap: 8px;

            li {
                display: flex;
                gap: 5px;
                width: max-content;
            }
        }

        .languageItem {
            display: flex;
            align-items: center;
            gap: 5px;

            .flag {
                display: flex;
                align-items: center;
                justify-content: center;

                svg {
                    height: 18px;
                    width: 18px;
                }
            }

            span {
                font-size: 14px;
                font-weight: 400;
            }
        }

    }

    .searchBoxContainer.active,
    .languageBoxContainer.active {
        opacity: 1;
        visibility: visible;
    }
}

.topHeader {
    .rightSide {
        .menu .site-navigation .primary-menu-container {

            ul {
                display: flex;
                gap: 20px;
                list-style-type: none;

                li {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    position: relative;

                    a {
                        font-size: 0.8rem;
                        text-transform: none;
                        font-weight: 700;
                        color: var(--primary-color);
                        transition: all 0.3s ease;
                        width: 100%;
                    }

                    button.sub-menu-toggle {
                        padding: 0;
                        margin: 0;
                        border: none;
                        display: flex;
                        background-color: transparent;
                        align-items: center;
                        justify-content: center;
                        cursor: pointer;

                        .icon-plus,
                        .icon-minus {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transition: all 0.3s ease;

                            svg {
                                width: 15px;
                                aspect-ratio: 1;
                                stroke: var(--primary-color);
                                fill: var(--primary-color);
                                stroke-width: 1px;
                            }
                        }

                        .icon-minus {
                            display: none;
                        }
                    }

                    ul.sub-menu {
                        position: absolute;
                        display: flex;
                        top: 200%;
                        gap: 0px;
                        min-width: 100%;
                        flex-direction: column;
                        background-color: white;
                        z-index: 2;
                        padding: 10px;
                        border-radius: 0px;
                        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                        width: max-content;
                        transition: all 0.3s ease;
                        visibility: hidden;
                        opacity: 0;

                        li {
                            border-bottom: 1px solid #d6d4d4;
                            padding-top: 8px;
                            padding-bottom: 8px;

                            a {
                                color: var(--primary-color);
                                transition: all 0.3s ease;
                            }
                        }

                        li:last-child {
                            border-bottom: none;
                            padding-bottom: 0;
                        }
                        li:first-child {
                            padding-top: 0;
                        }
                    }

                    ul.sub-menu.active {
                        display: flex;
                    }
                }

                li:hover {
                    /* display: flex;
                        align-items: center;
                        gap: 5px;
                        position: relative; */

                    a {
                        color: var(--primary-color);
                    }

                    button.sub-menu-toggle {

                        .icon-plus,
                        .icon-minus {
                            transform: rotate(180deg);
                        }

                        .icon-minus {
                            display: none;
                        }
                    }

                    ul.sub-menu {
                        visibility: visible;
                        opacity: 1;

                        li {
                            a {
                                color: var(--primary-color);
                            }
                        }

                        li:hover {
                            a {
                                color: grey;
                            }
                        }
                    }

                }
            }
        }
    }
}



.topHeader .rightSide .nonMenu {
    display: flex;
    gap: 10px;
    position: relative;
}

.topHeader .rightSide .nonMenu .searchIcon,
.topHeader .rightSide .nonMenu .languageSwitch {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.topHeader .rightSide .nonMenu .searchIcon svg,
.topHeader .rightSide .nonMenu .languageSwitch svg {
    height: 13px;
    width: 13px;
    fill: black;
}

.topHeader .rightSide .nonMenu .appointmentBtn {
    background-color: var(--primary-color);
    padding: 3px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.topHeader .rightSide .nonMenu .appointmentBtn a {
    color: white;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topHeader .rightSide .nonMenu .appointmentBtn:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);

    a {
        color: var(--primary-color);
    }
}

.topHeader .rightSide .menuIcon {
    display: none;
    align-items: center;
}

.topHeader .rightSide .menuIcon svg {
    height: 20px;
    width: 20px;
    fill: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 2px;
}

@media (max-width: 1400px) {
    .topHeader .rightSide .menuIcon {
        display: none;
    }

    .topHeader {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .topHeader {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .topHeader .rightSide .nonMenu {
        display: none;
    }
    .topHeader .rightSide .menu {
        display: none;
    }

    .topHeader .rightSide .menuIcon {
        display: flex;
    }
}



/* Aside Style */

.aside {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    background-color: var(--primary-color);
    z-index: 1000;
    height: 100vh;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.aside .asideInner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aside .asideInner .closeIcon {
    justify-content: end;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.aside .asideInner .closeIcon svg {
    height: 30px;
    width: 30px;
    fill: var(--secondary-color);
}


/* Start */

.aside .asideInner {
    .primary-menu-container {
            ul {
                display: flex;
                flex-direction: column;
                list-style: none;
                gap: 0px;

                li {
                    display: flex;
                    gap: 5px;
                    align-items: self-start;
                    flex-direction: column;
                    position: relative;
                    /* border-bottom: 1px solid #e9e8e8; */
                    padding: 10px 0px;

                    a {
                        color: white;
                        font-weight: 500;
                        text-transform: uppercase;
                        font-size: 0.95rem;
                        width: 100%;

                    }

                    ul.sub-menu {
                        display: none;
                    }

                    ul.sub-menu.active {
                        display: flex;
                        background-color:var(--primary-color);
                        width: 100%;
                        padding-left: 15px;
                        padding-right: 15px;
                        margin-top: 10px;

                        li {
                            a {
                                font-size: 0.83rem;
                            }
                        }
                    }

                    button.sub-menu-toggle {
                        position: absolute;
                        display: flex;
                        background-color: transparent;
                        padding: 0;
                        border: none;
                        top: 10px;
                        right: 0;

                        .icon-plus {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            transform: rotate(0);
                            transition: all 0.3s ease;

                            svg {
                                width: 20px;
                                aspect-ratio: 1;
                                fill: white;
                            }
                        }

                        .icon-plus.active {
                            transform: rotate(90deg);

                            svg {
                                width: 20px;
                                aspect-ratio: 1;
                                fill: black;
                            }
                        }

                        .icon-minus {
                            display: none;
                        }
                    }


                }

                li.active {
                    padding-bottom: 0;
                }

                li:last-child {
                    border-bottom: none;
                }
            }
        }
}

/* .aside .asideInner .menu {
    margin-top: 20px;
    margin-bottom: 50px;
}

.aside .asideInner .menu ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.aside .asideInner .menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1rem;
    color: white;
}

.aside .asideInner .menu ul li a svg {
    height: 15px;
    width: 15px;
    fill: white;
}

.aside .asideInner .menu ul li .subMenu {
    display: none;
}

.aside .asideInner .menu ul li:hover .subMenu {
    display: flex;
    padding-left: 20px;
}

.aside .asideInner .menu ul li:hover .subMenu ul li a {
    font-size: 0.90rem;
} */


/* Stop */

.aside .asideInner .searchArea {
    margin-top: 50px;
    margin-bottom: 75px;
}

.aside .asideInner .searchArea form {
    width: 100%;
    display: flex;
    align-items: center;
}

.aside .asideInner .searchArea input[type=search] {
    border: none;
    border-radius: 0;
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 1.2rem;
    background-color: transparent;
    padding: 0;
    margin: 0 2px;
    max-width: 100%;
    width: 100%;
    font-family: 'Montserrat';
}

.aside .asideInner .searchArea button {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    border: none;
}

.aside .asideInner .searchArea button svg {
    height: 22px;
    width: 22px;
    fill: var(--secondary-color);

}

.aside .asideInner .language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.aside .asideInner .language span {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color-light);
}

.aside .asideInner .language svg {
    height: 20px;
    width: 20px;
    fill: var(--secondary-color-light);
}

.aside .asideInner .appointmentBtn {
    background-color: var(--primary-color);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
}

.aside .asideInner .appointmentBtn a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--secondary-color);
}

.aside .asideInner .languagePopUp {
    position: absolute;
    bottom: 80%;
    width: 100%;
    background-color: white;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 20px;

    .languageItem {
        display: flex;
        align-items: center;
        gap: 10px;

        .flag {
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                height: 25px;
                width: 25px;
            }
        }

        span {
            font-size: 18px;
        }
    }
}

.aside .asideInner .languagePopUp.active {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 1200px) {
    .aside {
        display: none;
    }
}

@media (min-width: 1400px) {
    .aside {
        display: none;
    }
}


.to-top {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border: none;

    svg {
        fill: white;
        width: 14px;
        height: 14px;
    }
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

/* Footer Style */
.aboveFooter {
    background-color: var(--primary-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.aboveFooter .aboveFooterInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboveFooter .aboveFooterInner .text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.aboveFooter .aboveFooterInner .button {
    padding: 5px 35px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.aboveFooter .aboveFooterInner .button:hover {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
}

footer .logo {
    display: flex;
}

footer .logo img {
    width: 150px;
    height: auto;
}

.footerContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footerContainer .topFooter {
    display: flex;
    justify-content: space-between;
}

.footerContainer .topFooter .leftSide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footerContainer .topFooter .leftSide .address span {
    font-size: 0.85rem;
    color: var(--primary-color);
    line-height: 1.5;
}

.footerContainer .topFooter .leftSide .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerContainer .topFooter .leftSide .contact .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerContainer .topFooter .leftSide .contact .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerContainer .topFooter .leftSide .contact .item .icon svg {
    width: 17px;
    aspect-ratio: 1;
    stroke: var(--primary-color);
    stroke-width: 0.5px;
}

.footerContainer .topFooter .leftSide .contact .item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.footerContainer .topFooter .rightSide ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
}

.footerContainer .topFooter .rightSide ul li a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.footerContainer .footerLow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.footerContainer .footerLow .copyRight span,
.footerContainer .footerLow .copyRight a {
    font-size: 0.8rem;
    color: var(--primary-color-light);
}

.footerContainer .footerLow .socialMedia {
    display: flex;
    gap: 15px;
}

.footerContainer .footerLow .socialMedia .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerContainer .footerLow .socialMedia .item svg {
    width: 13px;
    aspect-ratio: 1;
    fill: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footerContainer .footerLow .socialMedia .item svg:hover {
    fill: var(--secondary-color);
}


@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .footerContainer .topFooter {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 50px;
        align-items: start;
    }

    .footerContainer .topFooter .rightSide ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: start;
    }

    .footerContainer .footerLow {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding-top: 50px;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .aboveFooter .aboveFooterInner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
    }
}


/* Homepage Style */

.homepageTopSection .image {
    position: relative;
}

.homepageTopSection .image .content {
    position: absolute;
    width: 100%;
    bottom: 40%;
    left: 0;
}

.homepageTopSection .image .content .title {
    padding-bottom: 5px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.homepageTopSection .image .content .miniTitle {
    color: var(--primary-color-light);
    font-weight: 200;
    padding-bottom: 5px;
    font-size: 1.6rem;
}

.homepageTopSection .image .content p {
    color: var(--primary-color);
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 0.90rem;
    line-height: 1.5;
    width: 50%;
}

.homepageTopSection .image .content a.button {
    background-color: var(--secondary-color);
    padding: 5px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--secondary-color);
}

.homepageTopSection .image .content a.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .homepageTopSection .image .content {
        bottom: 30%;
    }

    .homepageTopSection .image .content .title {
        font-size: 2rem;
    }

    .homepageTopSection .image .content .miniTitle {
        font-size: 1.5rem;
    }

    .homepageTopSection .image .content p {
        width: 60%;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .homepageTopSection .image .content p {
        width: 100%;
    }
}


.miniImage {
    display: flex;
    justify-content: center;
}

.miniImage img {
    width: 50%;
    height: auto;
}

.customMiniTitle {
    color: var(--primary-color-light);
    text-transform: capitalize;
    font-weight: 300;
    font-size: 0.85rem;
}

.customTitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 25px;
    padding-bottom: 17px;
}

.customDescription {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.85rem;
    padding-bottom: 15px;
}

.shortSummary {
    display: flex;
    padding-top: 20px;
    padding-bottom: 10px;
}

.shortSummary .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shortSummary .item .number {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
	font-family: "Montserrat", sans-serif;
}

.shortSummary .item .detail {
    font-weight: 500;
    color: var(--primary-color-light);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.customButton {
    background-color: var(--primary-color);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.customButton a {
    color: white;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.customButton:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.customButton:hover a {
    color: var(--primary-color);
}

.gridHomepage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-top: 30px;
}

.gridHomepageItem {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.gridHomepageItem .image {
    overflow: hidden;
    border-radius: 10px;
}

.gridHomepageItem .image img {
    opacity: 1;
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.gridHomepageItem .image:hover img {
    opacity: 0.5;
}

.gridHomepageItem .content .title {
    font-size: 0.80rem;
    font-weight: 400;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .gridHomepage {
        grid-template-columns: 1fr;
    }

    .customTitle {
        font-size: 1.40rem;
    }
}

.backgroundSvg {
    position: absolute;
    bottom: -10px;
    left: 5%;
    opacity: 0.1;

    svg {
        width: 60%;
        height: auto;
    }
}

.backgroundSvgTop {
    position: absolute;
    top: -10px;
    right: 5%;
    opacity: 0.1;
    transform: rotate(180deg);

    svg {
        width: 60%;
        height: auto;
    }
}

.backgroundSvgRight {
    position: absolute;
    bottom: -10px;
    right: 5%;
    opacity: 0.1;
    transform: rotate(0deg);

    svg {
        width: 60%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .backgroundSvg {
        svg {
            width: 40%;
        }
    }

    .backgroundSvgTop {
        svg {
            width: 40%;
        }
    }

    .backgroundSvgRight {
        svg {
            width: 40%;
        }
    }
}


.topBackgroundCoverSection .image {
    position: relative;
    background-color: var(--primary-color);
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
	background-size: cover;

    picture {
        opacity: 0.85;
    }

    img {
        opacity: 0.65;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



.topBackgroundCoverSection .image .content {
    position: absolute;
    width: 100%;
    bottom: 40%;
    left: 0;
}

.topBackgroundCoverSection .image .content .title {
    padding-bottom: 5px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.topBackgroundCoverSection .image .content .miniTitle {
    color: var(--primary-color-light);
    font-weight: 200;
    padding-bottom: 5px;
    font-size: 1.6rem;
}

.topBackgroundCoverSection .image .content p {
    color: var(--primary-color);
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 0.85rem;
    width: 50%;
}

.topBackgroundCoverSection .image .content a.button {
    background-color: var(--secondary-color);
    padding: 5px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--secondary-color);
}

.topBackgroundCoverSection .image .content a.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .topBackgroundCoverSection .image .content {
        bottom: 40%;
    }

    .topBackgroundCoverSection .image .content .title {
        font-size: 2rem;
    }

    .topBackgroundCoverSection .image .content .miniTitle {
        font-size: 1.5rem;
    }

    .topBackgroundCoverSection .image .content p {
        width: 60%;
    }

    .topBackgroundCoverSection .image {
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .topBackgroundCoverSection .image .content p {
        width: 100%;
    }
}

.awardSection {
    background-color: white;
}

.awardSection .aboutUsAwardSwiper .swiper {
    width: 100%;
    height: 100%;
}

.awardSection .aboutUsAwardSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awardSection .aboutUsAwardSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 175px;
    object-fit: contain;
}

.keyValueGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
}

.keyValueGrid .itemKeyValue {
    background-color: var(--primary-color);
    padding: 30px;
}

.keyValueGrid .itemKeyValue .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
}

.keyValueGrid .itemKeyValue .icon svg {
    width: 40%;
    aspect-ratio: 1;
    fill: var(--secondary-color-light);
}

.keyValueGrid .itemKeyValue .title {
    text-align: center;
    padding-bottom: 20px;
    color: var(--secondary-color-light);
    font-weight: 600;
    font-size: 1.2rem;
}

.keyValueGrid .itemKeyValue .content {
    color: #ccc3c3;
    font-size: 0.75rem;
    line-height: 1.4;
}


@media (max-width: 576px) {
    .keyValueGrid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .keyValueGrid .itemKeyValue .title {
        font-size: 1.5rem;
    }

    .keyValueGrid .itemKeyValue .icon svg {
        width: 60%;
    }
}

.messageGMGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 100px;
}

.messageGMGrid .messageItem {
    padding-bottom: 30px;
}

.messageGMGrid .messageItem .iconTop {
    display: flex;
    align-items: center;
    justify-content: start;
}

.messageGMGrid .messageItem .iconTop svg {
    height: 50px;
    width: 50px;
    fill: var(--primary-color);
}

.messageGMGrid .messageItem .iconBottom {
    display: flex;
    align-items: center;
    justify-content: end;
}

.messageGMGrid .messageItem .iconBottom svg {
    height: 50px;
    width: 50px;
    fill: var(--primary-color);
    transform: rotate(180deg);
}

.messageGMGrid .messageItem .content {
    padding: 0px 50px 0px 50px;
}

.messageGMGrid .messageItem .content p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.messageGMGrid .messageItem .content .fullName {
    padding-top: 30px;
}

.messageGMGrid .messageItem .content .fullName span {
    font-size: 0.85rem;
    font-weight: 600;
}

.messageGMGrid .messageItem .content .position {
    padding-bottom: 0px;
}

.messageGMGrid .messageItem .content .position span {
    font-size: 0.8rem;
    color: grey;
}

.messageGMGrid .messageItem .profile {
    padding: 0px 50px 0px 50px;
}

.messageGMGrid .messageItem .profile img {
    height: 100px;
    width: 100px;
    border-radius: 100px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

@media (max-width: 576px) {
    .messageGMGrid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.servicePageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.servicePageGrid .serviceItem {
    overflow: hidden;
    background-color: var(--primary-color);
    padding: 20px;
    position: relative;
}

.servicePageGrid .serviceItem a {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.servicePageGrid .serviceItem a .icon {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicePageGrid .serviceItem a .icon img {
    width: 50%;
    height: 50%;
}

.servicePageGrid .serviceItem a .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.servicePageGrid .serviceItem a .title span {
    color: white;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
}

.servicePageGrid .serviceItem::before {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.servicePageGrid .serviceItem::after {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    width: 100%;
    height: 0%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.servicePageGrid .serviceItem:hover:before {
    height: 50%;
}

.servicePageGrid .serviceItem:hover:after {
    height: 50%;
}

@media (max-width: 576px) {
    .servicePageGrid {
        grid-template-columns: 1fr 1fr;
    }
}


.whyUsContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.whyUsContainer .whyUsItem {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.whyUsContainer .whyUsItem h3.title {
    font-size: 1rem;
    font-weight: 700;
}

.whyUsContainer .whyUsItem p.description {
    font-size: 0.88rem;
    line-height: 1.5;
}

.menuList {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menuList .menuItem {
    background-color: var(--primary-color);
    padding: 8px 10px;
    position: relative;
}

.menuList .menuItem::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover:before {
    width: 50%;
}

.menuList .menuItem:hover:after {
    width: 50%;
}

.menuList .menuItem a {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 1;
}

.menuList .menuItem a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
}

.menuList .menuItem a .icon img {
    width: 30px;
    aspect-ratio: 1;
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover a .icon img {
    filter: invert(100%);
}

.menuList .menuItem a .title {
    display: flex;
    align-items: center;
}

.menuList .menuItem a .title span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover a .title span {
    color: black;
}

.menuList .menuItem.active {
    background-color: var(--secondary-color);
    padding: 8px 10px;
    position: relative;

    a .icon img {
        filter: invert(100%);
    }

    a .title span {
        color: black;
    }


}




.wordPressContentStyle {

    h1,
    h2,
    h3,
    h4,
    h5 {
        padding-bottom: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-color);
        padding-bottom: 15px;

        strong {
            font-weight: 600;
        }
    }

    ul.wp-block-list {
        list-style: square;
        list-style-position: outside;
        margin-left: 10px;
        padding-bottom: 30px;

        li {
            font-size: 0.85rem;
            padding-bottom: 5px;
            
            strong {
                font-weight: 600;
            }

            ul {
                list-style: circle;
                padding-top: 10px;
                margin-left: 30px;
                padding-bottom: 5px;
            }
        }
    }

    ol {
        list-style-position: inside;
        padding-bottom: 30px;

        li {
            padding-bottom: 10px;
            font-size: 0.85rem;
            line-height: 1.5;
        }
    }

    img {
        width: 100%;
        height: auto;
    }

    table,
    th,
    td {
        text-size-adjust: none;
        -webkit-text-size-adjust: none;
        border: 1px solid black;
        border-collapse: collapse;
    }

    table {
        margin-bottom: 30px;

        tbody {
            tr {
                td {
                    padding: 15px;
                    font-size: 0.85rem;
                    line-height: 1.5;

                    img {
                        width: 100% !important;
                    }
                }
            }
        }
    }


}

.teamsPageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

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

    .wordPressContentStyle {
        .big-table {
            table {
                margin-bottom: 30px;
                display: block;
                overflow-x: auto;

                tbody {
                    width: 1000px;
                    display: table;

                    td {
                        font-size: 0.85rem;
                        line-height: 1.5;

                        img {
                            width: 70rem !important;
                            height: auto;
                        }
                    }
                }
            }
        }
    }
}

.teamsPageGrid.twoColumns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

@media (max-width: 576px) {
    .teamsPageGrid.twoColumns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.teamItem {
    a {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .image {
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease-in-out;
            }
        }

        .detail {
            display: flex;
            flex-direction: column;

            .title {
                span {
                    font-size: 0.85rem;
                    font-weight: 600;
                }
            }

            .position {
                line-height: 1;
                span {
                    color: #847c7c;
                    font-size: 0.80rem;
                }
            }
        }
    }
}

.teamItem:hover {
    a {
        .image {
            img {
                opacity: 0.7;
            }
        }
    }
}

.resourceProfileItem {
    a {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .image {
            width: 100%;
            aspect-ratio: 4/6;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease-in-out;
            }
        }

        .detail {
            display: flex;
            flex-direction: column;

            .title {
                span {
                    font-size: 0.85rem;
                    font-weight: 400;
                }
            }

            .position {
                span {
                    color: #847c7c;
                    font-size: 0.80rem;
                }
            }
        }
    }
}

.resourceProfileItem:hover {
    a {
        .image {
            img {
                opacity: 0.7;
            }
        }
    }
}


.lawyerListGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.lawyerItem {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .image {
        opacity: 1;
        transition: all 0.3s ease;
    }

    .name {
        line-height: 1;
        span {
            font-weight: 600;
            font-size: 0.80rem;
        }
    }
}

.lawyerItem:hover {


    .image {
        opacity: 0.7;
    }


}

.summaryTable {
    display: flex;
    flex-direction: column;
    gap: 20px;

    span.title {
        font-size: 0.85rem;
    }

    .emailAndPhone {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .item {
            display: flex;
            gap: 15px;
            align-items: center;

            .icon {
                font-weight: 800;
                color: var(--primary-color);
            }

            .text span {
                font-size: 0.85rem;
            }
        }
    }

    .socialMedia {
        display: flex;
        align-items: center;
        gap: 10px;

        .item {
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                width: 18px;
                aspect-ratio: 1 / 1;
                fill: var(--text-color);
                transition: all 0.3s ease;
            }

            svg:hover {
                fill: var(--primary-color);
            }
        }
    }
}

.relatedLawyerCarrousel {
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.filterBar {
    display: inline-block;
    text-align: center;
    width: 100%;

    label {
        background: #efe2e2;
        padding: 6px 15px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        box-shadow: #EDEDED 0 0 0 1px inset, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
        display: inline-block;
        font-weight: 500;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    label:hover {
        background: rgba(0, 0, 0, 0.03);
        box-shadow: #CFCFCF 0 0 0 1px inset, rgba(0, 0, 0, 0.1) 0 1px 2px;
    }

    input {
        appearance: none;
        display: none;
    }

    input:focus {
        outline: none;
    }

    input:checked+label {
        box-shadow: var(--primary-color) 0 0 0 2px inset, rgba(0, 0, 0, 0.1) 0 1px 2px 1px;
        background: var(--primary-color);
        color: white;
    }
}

.outPagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customPagnition {
    display: flex;
    gap: 20px;
    align-items: center;
    transform: scale(0.8);

    .page-numbers {
        background-color: lightgray;
        padding: 5px 5px;
        width: 30px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 600;
        color: var(--text-color);
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .page-numbers.current,
    .page-numbers:hover {
        background-color: var(--primary-color);
        color: white;
    }
}

.newsCotent {
    max-width: 100%;
    width: 700px;
    margin: 0 auto;
}

.relatedPost {
    padding-top: 50px;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        font-size: 18px;
        display: flex;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.topCoverSinglePage {
        background-color: var(--primary-color);
    background-image: url(http://aaa.porchcambodia.com/wp-content/uploads/2025/12/sithisak-default-background-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.contactTitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.contactList {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    .item {
        display: flex;
        gap: 20px;

        .icon {
            font-weight: 800;
            color: var(--primary-color);
        }

        .content span {
            font-size: 0.95rem;
        }
    }
}

.bizHourList {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .item {
        display: flex;
        gap: 20px;

        .icon {
            font-size: 1rem;
            color: var(--primary-color);
        }

        .content {
            font-size: 0.95rem;
        }
    }
}

.contactForm {
    .contact-page-contact-form {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .contact-page-contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-contact-form form input {
        border-radius: 30px;
        padding: 5px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form input::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form textarea {
        border-radius: 10px;
        padding: 10px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
        height: 200px;
    }

    .contact-page-contact-form form textarea::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form button {
        border-radius: 30px;
        padding: 5px 20px;
        border: 2px solid var(--primary-color);
        background-color: var(--primary-color);
        color: white;
        font-size: 0.85rem;
        font-family: "Montserrat", serif;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .contact-page-contact-form form button:hover {
        background-color: white;
        color: var(--primary-color);
    }

    @media (max-width: 576px) {
        .contact-page-contact-form {
            width: 100%;
            padding-top: 50px;
        }
    }
}

.googleMap {
    overflow: hidden;
    border-radius: 20px;

    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 4;
    }
}

.resourcesPageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;

    .item {
        background-color: var(--primary-color);
        width: 100%;
        aspect-ratio: 3 / 4;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        transition: all 0.3s ease;

        span {
            font-weight: 600;
            text-transform: uppercase;
            color: white;
            transition: all 0.3s ease;
        }
    }

    .item:hover {
        background-color: var(--primary-color-light);


        span {
            color: white;
            letter-spacing: 1px;
        }
    }
}

@media (max-width: 576px) {
    .resourcesPageGrid {
        grid-template-columns: 1fr;

    }
}

.mobileMenuContainer {
    position: relative;
}

.mobileMenuContainer .mobileIcon {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    position: relative;
}

.mobileMenuContainer .mobileIcon .icon svg {
    height: 20px;
    width: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.mobileMenuContainer .mobileIcon span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobileMenuContainer .mobileIcon:hover {
    background-color: var(--secondary-color);
}

.mobileMenuContainer .mobileIcon:hover .icon svg {
    fill: var(--primary-color);
}

.mobileMenuContainer .mobileIcon:hover span {
    color: var(--primary-color);
}



@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .mobileMenuContainer .mobileIcon {
        display: flex;
    }

    .menuList {
        /* display: none; */
        opacity: 0;
        visibility: hidden;
        height: 0px;
        transform: translateY(-10%);
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .menuList.active {
        /* display: block; */
        opacity: 1;
        visibility: visible;
        height: 100%;
        transform: translateY(0%);
    }



    .mobileMenuContainer {
        padding-bottom: 20px;
    }
}





.menuListSingleTeam {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menuListSingleTeam .menuItem {
    background-color: var(--primary-color);
    padding: 8px 10px;
    position: relative;
}

.menuListSingleTeam .menuItem::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuListSingleTeam .menuItem::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuListSingleTeam .menuItem:hover:before {
    width: 50%;
}

.menuListSingleTeam .menuItem:hover:after {
    width: 50%;
}

.menuListSingleTeam .menuItem a {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 1;
}

.menuListSingleTeam .menuItem a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
}

.menuListSingleTeam .menuItem a .icon img {
    width: 30px;
    aspect-ratio: 1;
    transition: all 0.3s ease-in-out;
}

.menuListSingleTeam .menuItem:hover a .icon img {
    filter: invert(100%);
}

.menuListSingleTeam .menuItem a .title {
    display: flex;
    align-items: center;
}

.menuListSingleTeam .menuItem a .title span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.menuListSingleTeam .menuItem:hover a .title span {
    color: black;
}

.menuListSingleTeam .menuItem.active {
    background-color: var(--secondary-color);
    padding: 8px 10px;
    position: relative;

    a .icon img {
        filter: invert(100%);
    }

    a .title span {
        color: black;
    }


}


/* Language Style */
body.khmer {
    font-family: "Noto Sans Khmer", sans-serif;
    background-color: white;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Noto Sans Khmer", sans-serif;
        font-weight: 600;
    }

    .topHeader .rightSide .menu ul li a {
        font-size: 0.9rem;
    }

    .topHeader .rightSide .nonMenu .appointmentBtn a {
        font-size: 12px;
    }

    .customButton a {
        font-size: 0.75rem;
    }

    .customDescription {
        color: var(--text-color);
        line-height: 1.5;
        font-size: 1rem;
        padding-bottom: 15px;
        font-weight: 400;
    }
}


.filterMainContainer {
    .filterMobileIcon {
        padding-bottom: 30px;
        display: none;
        justify-content: space-between;
        align-items: center;

        span {
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 6px;
        }

        svg {
            width: 20px;
            aspect-ratio: 1;
            fill: var(--primary-color);
        }
    }

    .filterContainer .checkboxContainer {
        .closeIcon {
            display: none;
        }

        .submitButton {
            margin-top: 30px;

            input {
                cursor: pointer;
                background-color: transparent;
                width: 80%;
                padding: 10px 25px;
                color: var(--primary-color);
                border: 1px solid var(--primary-color);
                font-size: 0.75rem;
                font-weight: 400;
                text-transform: uppercase;
                border-radius: 0;
            }

            input:checked {
                background-color: var(--primary-color);
                color: white;
            }
        }

        position: relative;

        .checkbox-wrapper-4 {
            padding-bottom: 10px;
            display: flex;
            gap: 10px;
            align-items: center;

            .inline-svg {
                display: none;
            }

            label.cbx {
                width: 100%;

                span {
                    svg {
                        display: none;
                    }
                }
            }

            .sub-parent {
                margin-left: 10px;
            }

            .mini-sub {
                margin-left: 20px;
            }
        }
    }
}


@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .filterMainContainer .filterMobileIcon {
        display: flex;
    }

    .filterMainContainer .filterContainer .checkboxContainer {
        .closeIcon {
            display: flex;
            align-items: center;
            justify-content: end;

            svg {
                width: 30px;
                aspect-ratio: 1;
                fill: var(--primary-color);
            }
        }

        .submitButton {

            input {
                width: 100%;
            }
        }


        position: fixed;
        background-color: white;
        padding: 20px;
        min-height: 100vh;
        z-index: 100;
        bottom: 0;
        top: 0;
        left: 0;
        width: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;


        .checkbox-wrapper-4 {
            padding-bottom: 10px;
            display: flex;
            gap: 10px;
            align-items: center;

            .inline-svg {
                display: none;
            }

            label.cbx {
                width: 100%;

                span {
                    svg {
                        display: none;
                    }
                }
            }

            .sub-parent {
                margin-left: 10px;
            }

            .mini-sub {
                margin-left: 20px;
            }
        }
    }

    .filterMainContainer .filterContainer .checkboxContainer.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0%);

    }
}

@media (max-width: 576px) {}

.jobTable {


    table {
        border-spacing: 1;
        border-collapse: collapse;
        background: white;
        border-radius: 6px;
        overflow: hidden;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        position: relative;

        * {
            position: relative
        }

        td,
        th {
            padding-left: 20px
        }

        thead tr {
            height: 60px;
            background: var(--primary-color);
            font-size: 16px;
            color: white;
        }

        tbody tr {
            height: 48px;
            border-bottom: 1px solid var(--secondary-color);

            &:last-child {
                border: 0;
            }
        }

        td,
        th {
            text-align: left;

            &.l {
                text-align: right
            }

            &.c {
                text-align: center
            }

            &.r {
                text-align: center
            }
        }
    }
}

html[lang="km-kh"]{
	body {
		font-family: "Content", system-ui;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		line-height: 1.5;
	}
} 

html[lang="zh-hans"]{
	body {
font-family: "Noto Serif SC", serif;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
font-family: "Noto Serif SC", serif;
		font-weight: 600;
		line-height: 1.5;
	}
} 

html[lang="ja"]{
	body {
font-family: "Sawarabi Gothic", sans-serif;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
font-family: "Sawarabi Gothic", sans-serif;
		font-weight: 600;
		line-height: 1.5;
	}
} 