*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input,
textarea,
a {
    cursor: pointer;
    outline: none;
    background: 0 0;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-family-CircularXX);
}

h1 {
    text-transform: none !important;

}

button:focus,
input:focus,
textarea:focus,
a:focus,
input::placeholder,
textarea::placeholder {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    vertical-align: middle;
}

:root {
    --direction: ltr;
    --font-family-Reckless: "RecklessNeue";
    --font-family-CircularXX: "CircularXXWeb";

    --text-color1: #a6a6a6;
    --bg-dark1-color: #1c1c1c;
    --bg-dark2-color: rgba(0, 0, 0, 0.9);
    --bg-light1-color: #fbf7f7;
    --bg-light2-color: rgba(240, 227, 227, 0.3);
    --purple-color: #785fa0;
    --lightPurple-color: #6e799c;
    --lightPurple-color-2: #f4ebf5;
    --baseLight-color: #ffffff;
    --baseDark-color: #000000;
    --border-color1: #c4c4c4;
    --border-color2: #d7d9dc;
    --green-color: #2f5b55;
    --darkGreen-color: #23433f;

    --border-radius10: 10px;
    --border-radius32: 32px;

    --line-height150: 150%;
    --line-height160: 160%;
    --line-height170: 170%;

    /* font-size */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.5rem;
    /* 56px */
    --text-7xl: 4rem;
    /* 65px */
}

body {
    margin: 0;
    padding: 0;
    direction: var(--direction);
    overflow-x: hidden !important;
    font-family: var(--font-family-CircularXX);
}

/* reveal */
.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}

/* reveal */


/* modal */
.modal {
    display: none;
    position: fixed;
    z-index: 13;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background: rgba(0, 0, 0, .7);
}

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

.modal--content {
    margin: auto;
    width: auto;
    height: 95%;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal--header {
    text-align: right;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 100;
}

.modal--close {
    color: var(--baseLight-color);
    font-size: 3rem;
    transition: all .5s;
    cursor: pointer;
}

.modal--body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal--body video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* modal */

/* title */
.title {
    font-weight: 600;
    font-family:var(--font-family-Reckless)
}

.title--medium {
    line-height: 70px;
    margin-block-end: 1rem;
}

.title--large {
    line-height: 80px;
    letter-spacing: -0.5%;
}

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

.title--light {
    color: var(--baseLight-color);
}

.title--small {
    font-weight: 500;
    line-height: 56px;
    font-family: var(--font-family-CircularXX);
}

/* title */

/* text */
.text--medium {
    font-weight: 400;
    line-height: 28px;
}

.text--large {
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
}

.text--light {
    color: var(--baseLight-color);
}

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

/* button */
/* bnt-public */
.btn {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    border-radius: var(--border-radius32);
    padding: 0.75rem 2rem;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transition: all 0.5s;
}

/* bnt-public */

.btn--black {
    background-color: var(--baseDark-color);
    border: 1px solid var(--baseDark-color);
    color: var(--baseLight-color);
}

.btn--black:hover {
    color: var(--baseDark-color) !important;
    background-color: var(--baseLight-color);
}

.btn--white {
    background-color: var(--baseLight-color);
    border: 1px solid var(--baseLight-color);
    color: var(--baseDark-color);
}

.btn--white:hover {
    color: var(--baseLight-color) !important;
    background-color: var(--baseDark-color);
}

/* btn--app */
.btn--app {
    display: flex;
    align-items: center;
}

.btn--app .btn:first-child {
    margin-inline-end: 0.75rem;
}

.btn--app__white {
    border: 1px solid var(--baseLight-color);
}

.btn--app__black {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

/* input */
form textarea,
form input[type="email"],
form input[type="text"],
form input[type="search"],
form input[type="number"],
form textarea {
    text-align: left;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color2);
    border-radius: var(--border-radius10);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background: var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

form input[type="submit"] {
    margin-block-start: 0;
    color: var(--baseLight-color);
    background-color: var(--baseDark-color);
    border:1px solid var(--baseDark-color);
    border-radius: var(--border-radius32);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

form input[type="submit"]:hover{
    background-color: transparent !important;
    color: var(--baseDark-color) !important;
}

/* input */

/* breadcrumb */
.breadcrumb--content {
    margin-block: 5rem 3rem;
    position: relative;
    z-index: 0;
    width: 50%;
    margin-inline: auto;
}

.breadcrumb {
    color: var(--border-color1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    text-transform: capitalize;
    line-height: var(--line-height160);
}

.breadcrumb li>* {
    display: flex;
    align-items: center;
}

.breadcrumb li img {
    margin-inline-end: 0.5rem;
}

.breadcrumb li:not(:last-child) {
    margin-inline-end: 0.25rem;
}

.breadcrumb li:not(:first-child) {
    margin-inline-start: 0.25rem;
}

.breadcrumb li>span {
    font-weight: 500;
    color: var(--primary-color);
}

/* breadcrumb */

/* pagination */
.pagination {
    margin-inline: auto;
    margin-block: 5rem;
}

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

.pagination ul li>span,
.pagination ul li>a {
    padding: 0.5rem 0.75rem;
    min-width: 3rem;
    min-height: 2rem;
    background-color: var(--box-color1);
    color: var(--border-color1);
    margin-inline: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pagination ul li>span.page-numbers.current {
    background-color: var(--border-color1);
    color: var(--baseLight-color);
}

/* pagination */

/* grow */
.grow {
    background-color: var(--bg-light2-color);
    padding-block: 137px;
    overflow: hidden;
}

.grow--inner__purple {
    background-color: var(--purple-color);
}

.grow--inner__lightPurple {
    background-color: var(--lightPurple-color);
}

.grow--inner__green {
    background-color: var(--green-color);
}

.grow--inner__darkGreen {
    background-color: var(--darkGreen-color);
}

.grow--inner__purple :is(h4, p),
.grow--inner__lightPurple :is(h4, p),
.grow--inner__green :is(h4, p),
.grow--inner__darkGreen :is(h4, p) {
    color: var(--baseLight-color) !important;
}

.grow--content {
    width: 50%;
    margin-inline: auto;
    display: block;
    text-align: center;
}

.grow--content h4 {
    position: relative;
}

.grow--content p {
    font-family: var(--font-family-Reckless);
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 58px;
    margin-block: 0.5rem 2rem;
}

.grow--content a.btn {
    margin-inline: auto;
}

/* grow */
/*********************
END: PUBLIC
*********************/

/*********************
START: HEADER
*********************/
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

header {
    z-index: 1100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s;
    background-color: var(--baseLight-color);
}

.page-template-leading-re header,
.page-template-whos-who-lre header {
    background-color: transparent;
}

.page-template-lucy header {
    background-color: var(--baseDark-color);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem;
}

/* header--logo */
.header--logo {
    width: 15%;
}

.header--logo img {
    max-width: 100%;
    width: 135px;
    height: 30px;
}

.page-template-lucy .header--logo picture svg {
    filter: brightness(0) invert(1);
}

/* header--logo */

/* header--btn */
.header--btn {
    display: flex;
    align-items: center;
}

.header--btn a.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.46px;
}

.header--btn a.btn--white {
    margin-inline-end: 1rem;
    border: 1px solid var(--border-color2);
}

.page-template-lucy .header--btn__desktop .btn--black {
    border: 1px solid var(--baseLight-color);
}

/* header--btn */

/* header--menu */

/* original menu */
.header .header-item {
    margin-inline: auto 2rem;
}

.header .menu ul.menu-main>li {
    display: inline-block;
    line-height: 70px;
    margin-inline-start: 2rem;
}

.header .menu ul.menu-main>li>a {
    font-size: 16px;
    font-weight: 400;
    color: var(--baseDark-color);
    font-style: normal;
    line-height: normal;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.page-template-lucy .header .menu ul.menu-main>li>a {
    color: var(--baseLight-color);
}

.header .menu ul.menu-main>li.current>a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 80%;
    height: 3px;
    transition: all 0.3s ease;
    background-color: #DC7D77;
}

.header .menu ul.menu-main>li>a>img {
    width: 0.7rem;
    margin-block-start: 4px;
    margin-inline-start: 0.4rem;
}

.page-template-lucy .header .menu ul.menu-main>li>a>img {
    filter: brightness(0) invert(1);
}

/* sub-menu */
.header .menu ul.menu-main>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid var(--border-color2);
}

@media (min-width: 993px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 100%;
    width: 100%;
    display: flex;
    padding-inline: 2rem;
}

/* list-image */
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image {
    display: contents;
    padding-inline-start: 50rem;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image>div {
    margin-inline-end: 1.5rem;
    width: 20%;
    padding: 50px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image>div>img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/2.5;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image>div>h5 {
    font-size: 1rem;
    letter-spacing: 0.15px;
    line-height: 24px;
    font-weight: 600;
    margin-block: 1rem;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image>div p {
    line-height: 20px;
    letter-spacing: 0.17px;
    font-size: var(--text-sm);
}

/* list-item */
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    display: flex;
    padding: 50px 24px;
    text-transform: capitalize;
    border-left: 1px solid var(--border-color2);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item>div:not(:last-child) {
    margin-inline-end: 2rem;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item h4 {
    font-size: var(--text-xl);
    color: var(--baseDark-color);
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.15px;
    margin-block-end: 1rem;
    min-height: 32px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item ul li {
    margin-block-end: 1rem;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #3B3B3B;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item ul li>a {
    font-weight: 400 !important;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item ul li>a:hover {
    color: #3B3B3B !important;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/* header--menu */
/*********************
  END: HEADER
*********************/

/*********************
START: FOOTER
*********************/
footer {
    padding-block: 70px 70px;
    color: var(--baseLight-color);
    background-color: var(--baseDark-color);
}

.footer--content>ul {
    display: flex;
    justify-content: space-between;
}

.footer--content>ul>li {
    width: auto;
}

.footer--content>ul>li .headerWidget {
    margin-block-end: 10px;
}

.footer--content>ul>li .headerWidget h3 {
    font-weight: 500;
    line-height: 56px;
}

.footer--content>ul>li .bodyWidget>ul>li>a {
    font-weight: 300;
    line-height: 50px;
}

/* footer--app */
.footer--app {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-start: 80px;
}

.footer--app div p {
    color: var(--text-color1);
    line-height: 19.2px;
    letter-spacing: 1%;
    margin-block-start: 1.25rem;
}

/*********************
END: FOOTER
*********************/

/*********************
START: container and its media
*********************/
/* container  */
.container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1320px 1fr;
    grid-template-areas: ". content .";
}

.container>* {
    grid-area: content;
}

@media screen and (min-width: 1920px) {
    .container {
        grid-template-columns: 1fr 1400px 1fr;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .container {
        grid-template-columns: 1fr 1330px 1fr;
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .container {
        grid-template-columns: 1fr 1310px 1fr;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1319px) {
    .container {
        grid-template-columns: 1fr 1140px 1fr;
    }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
    .container {
        grid-template-columns: 1fr 970px 1fr;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .container {
        grid-template-columns: 1fr 750px 1fr;
    }
}

@media screen and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr 95% 1fr;
    }
}

/*********************
END: container and its media
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
    .title--small {
        font-size: 40px;
    }

    .title--medium {
        font-size: var(--text-6xl);
    }

    .title--large {
        font-size: 60px;
    }

    .text--medium {
        font-size: var(--text-xl);
    }

    .text--large {
        font-size: var(--text-2xl);
    }

    .grow--content p {
        font-size: var(--text-5xl);
    }

    /* 
    .breadcrumb li>* {
        font-size: var(--text-xl);
    } */

    .footer--content>ul>li .headerWidget h3,
    .footer--content>ul>li .bodyWidget>ul>li>a {
        font-size: var(--text-xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .title--small {
        font-size: var(--text-4xl);
    }

    .title--medium {
        font-size: var(--text-5xl);
    }

    .title--large {
        font-size: var(--text-6xl);
    }

    .text--medium {
        font-size: var(--text-xl);
    }

    .text--large {
        font-size: var(--text-2xl);
    }

    .grow--content p {
        font-size: var(--text-5xl);
    }

    /* .breadcrumb li>* {
        font-size: var(--text-lg);
    } */

    .footer--content>ul>li .headerWidget h3 {
        font-size: var(--text-xl);
    }

    .footer--content>ul>li .bodyWidget>ul>li>a {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1319px) {
    .title--small {
        font-size: var(--text-4xl);
    }

    .title--medium {
        font-size: var(--text-5xl);
    }

    .title--large {
        font-size: var(--text-6xl);
    }

    .text--large {
        font-size: var(--text-xl);
    }

    .grow--content p {
        font-size: var(--text-4xl);
    }

    /* .breadcrumb li>* {
        font-size: var(--text-lg);
    } */

    /* .header--menu .navigation>ul.navMenu>li>a {
        font-size: var(--text-base);
    } */

    .footer--content>ul>li .headerWidget h3 {
        font-size: var(--text-xl);
    }

    .footer--content>ul>li .bodyWidget>ul>li>a {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1200px) {
    .modal--content {
        width: 60%;
    }

    .grow--content {
        width: 60%;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item h4 {
        font-size: var(--text-lg);
    }

    .footer--content>ul>li .bodyWidget>ul>li>a {
        font-size: var(--text-base);
    }
}

@media screen and (max-width: 992px) {
    .modal--content {
        width: 70%;
    }

    .title--small {
        font-size: var(--text-3xl);
        line-height: var(--line-height150);
    }

    .title--medium {
        font-size: var(--text-4xl);
        line-height: var(--line-height150);
    }

    .title--large {
        font-size: var(--text-5xl);
        line-height: var(--line-height150);
    }

    .text--medium {
        font-size: var(--text-lg);
    }

    .text--large {
        font-size: var(--text-xl);
    }

    .grow--content {
        width: 70%;
    }

    .grow--content p {
        font-size: var(--text-3xl);
    }

    #page-overlay {
        display: none !important;
    }

    .header .menu ul.menu-main>li.current>a::before {
        content: unset;
    }

    .header--btn a.btn {
        padding: 0.25rem 0.75rem;
        font-size: var(--text-sm);
    }

    .header--btn a.btn--white {
        margin-inline-end: 0.5rem;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 0.5rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: var(--bg-dark2-color);
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg-dark2-color);
    }

    .page-template-lucy .header .mobile-menu-trigger span,
    .page-template-lucy .header .mobile-menu-trigger span:before,
    .page-template-lucy .header .mobile-menu-trigger span:after {
        background-color: var(--baseLight-color);
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .header .menu ul.menu-main>li {
        margin-inline-start: 0;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 20px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--baseDark-color) !important;
    }

    .page-template-lucy .header .menu ul.menu-main>li>a>img {
        filter: unset;
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head .go-back>img {
        transform: rotate(90deg);
        width: 0.9rem;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: var(--baseDark-color);
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--baseDark-color);
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: flex;
        flex-direction: column;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-image>div {
        width: 100%;
        margin-inline-end: 0;
        padding: 1rem 0;
        margin-block-end: 1rem;
        border: 1px solid var(--border-color2);
        padding: 0.75rem;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex-direction: column;
        border-left: 0;
        padding: 24px 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item h4 {
        min-height: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item>div:not(:last-child) {
        margin-inline-end: 0;
        border-bottom: 1px solid var(--border-color2);
        margin-block-end: 1rem;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

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

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

    /* footer */
    .footer--content>ul>li {
        border: 1px solid var(--border-color1);
        border-radius: var(--border-radius10);
    }

    .footer--content>ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer--content>ul>li {
        margin: 8px;
        flex-basis: calc(33.33% - 16px);
    }

    .footer--content>ul>li .headerWidget {
        border-top-left-radius: var(--border-radius10);
        border-top-right-radius: var(--border-radius10);
        background-color: var(--bg-light2-color);
        padding-inline: 1rem;
    }

    .footer--content>ul>li .bodyWidget {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .modal--content {
        width: 80%;
    }

    .title--small {
        font-size: var(--text-2xl);
    }

    .title--medium {
        font-size: var(--text-3xl);
    }

    .title--large {
        font-size: var(--text-4xl);
    }

    .text--large {
        font-size: var(--text-lg);
    }

    .btn.btn--green {
        font-size: var(--text-base);
    }

    .grow--content {
        width: 80%;
    }

    /* 
    .breadcrumb--content {
        width: 100%;
    }

    .breadcrumb--content h1 {
        margin-block-end: 0.75rem;
    } */

    .nav-icon {
        display: block;
    }

    .darkpage.open {
        opacity: 1;
        visibility: visible;
        transition: opacity 1s linear;
    }

    .header {
        padding-block: 0.75rem;
    }

    .header--logo {
        width: 18%;
    }

    .footer--content>ul>li .headerWidget h3 {
        font-size: var(--text-lg);
    }

    .footer--app {
        flex-direction: column;
        text-align: center;
    }

    .footer--app picture {
        margin-block-end: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer--app picture img {
        width: 80%;
    }
}

@media screen and (max-width: 576px) {
    .modal--content {
        width: 90%;
    }

    .text--medium {
        font-size: var(--text-base);
    }

    .text--large {
        font-size: var(--text-lg);
    }

    .grow--content {
        width: 90%;
    }

    .grow--content p {
        font-size: var(--text-2xl);
    }

    /* .breadcrumb li>* {
        font-size: var(--text-base);
    }

    .pagination ul li>span,
    .pagination ul li>a {
        padding: 0.5rem 0.5rem;
        min-width: 2rem;
        margin-inline: 0.25rem;
        border-radius: 5px;
    }

    .breadcrumb--content {
        padding-inline-end: 1rem;
    } */

    .header--logo {
        width: 25%;
    }

    .footer--content>ul>li {
        flex-basis: calc(50% - 16px);
    }
}

@media screen and (max-width: 470px) {
    .header--btn a.btn--white {
        margin-inline-end: 0.25rem;
    }

    .header--btn a.btn {
        font-size: var(--text-xs);
    }

    .header .mobile-menu-trigger {
        margin-left: 0;
    }

    .header .mobile-menu-trigger span {
        width: 20px;
    }
}

@media screen and (max-width: 425px) {
    .grow--content {
        width: 100%;
    }

    .grow--content p {
        font-size: var(--text-xl);
    }

    .footer--app picture img {
        width: 70%;
    }
}

@media screen and (max-width: 375px) {
    .btn--app {
        flex-direction: column;
    }

    .btn--app .btn:first-child {
        margin-inline-end: 0;
        margin-block-end: 1rem;
    }

    .title--medium {
        font-size: var(--text-2xl);
    }

    .title--large {
        font-size: var(--text-3xl);
    }

    .header--btn a.btn {
        font-size: var(--text-xs);
    }

    .header--logo {
        width: 25%;
    }

    /* .header--menu .navigation {
        width: 250px;
        min-width: 250px;
    } */

    .footer--content>ul>li {
        flex-basis: calc(100% - 16px);
    }
}

/*********************
  END: MEDIA
  *********************/