@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --theme: #2c27bf;
    --black: #1C1C25;
    --black-2: #4f5259;
    --white: #FFFFFF;
    --white-2: #A7ACB5;
    --action: #2c27bf;
    --border: #E5E5E5;
    --primary: #110e5f;
    --secondary: #797E88;

    --main-color-1: #3f71da;
    --main-color-2: #2c27bf;
    --main-color-3: #7b6fe6;
    --main-color-4: #19d30f;

    --font_inter: "Inter", sans-serif;
    --font_generalsanssemibold: "GeneralSans-Semibold";
    --font_generalsansmedium: "GeneralSans-Medium";
    --font_generalsansitalic: "GeneralSans-Italic";
    --font_awesome: "Font Awesome 5 Free";
}

/* typography css */
/* inter  */
/* general sans  */
@font-face {
    font-family: "GeneralSans-Semibold";
    src: url("webfonts/GeneralSans-Semibold.otf");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "GeneralSans-Medium";
    src: url("webfonts/GeneralSans-Medium.otf");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "GeneralSans-Italic";
    src: url("webfonts/GeneralSans-Italic.otf");
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font_inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--secondary);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    color: var(--main-color-2);
    line-height: 1.22;
    font-family: var(--font_generalsanssemibold);
    font-weight: 600;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
}

a:hover {
    color: var(--main-color-2);
}

button {
    background-color: transparent;
    border: 0;
}

p {
    padding: 0;
    margin: 0;
}

strong {
    font-weight: 500;
}

video,
iframe,
img {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}

main {
    display: inline-block;
    width: 100%;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}


.green-btn {
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
    padding: 19px 34px;
    background-color: var(--main-color-4);
    color: var(--black);
    border: 1px solid var(--main-color-4);
    border-radius: 100px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .green-btn {
        padding: 16px 29px;
        font-size: 14px;
    }
}

.green-btn:hover::before,
.green-btn:focus::before {
    height: 100%;
}

.green-btn:hover .btn-wrap .text-one,
.green-btn:focus .btn-wrap .text-one {
    transform: translateY(-150%);
}

.green-btn:hover .btn-wrap .text-two,
.green-btn:focus .btn-wrap .text-two {
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
}

.green-btn:after {
    display: block;
    clear: both;
    content: "";
}

.green-btn::before {
    background-color: var(--white);
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    position: absolute;
    transition: all 0.5s;
}

.green-btn .btn-wrap {
    z-index: 1;
    float: left;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: none;
}

.green-btn .btn-wrap .text-one,
.green-btn .btn-wrap .text-two {
    display: flex;
    gap: 10px;
    align-items: center;
}

.green-btn .btn-wrap .text-one {
    position: relative;
    color: var(--black);
    transition: all 0.5s;
}

.green-btn .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    color: var(--white);
    transition: all 0.5s;
}

.green-btn.btn-white {
    border-color: transparent;
    background-color: var(--white);
}

.green-btn.btn-white::before {
    background-color: var(--theme);
}

.green-btn.btn-white .text-one,
.green-btn.btn-white .text-two {
    gap: 119px;
    display: flex;
}

@media only screen and (max-width: 1399px) {

    .green-btn.btn-white .text-one,
    .green-btn.btn-white .text-two {
        gap: 100px;
    }
}

@media only screen and (max-width: 1199px) {

    .green-btn.btn-white .text-one,
    .green-btn.btn-white .text-two {
        gap: 50px;
    }
}

@media only screen and (max-width: 767px) {

    .green-btn.btn-white .text-one,
    .green-btn.btn-white .text-two {
        gap: 20px;
    }
}

.green-btn.btn-white .btn-wrap .text-one {
    color: var(--primary);
}

.green-btn.btn-white .btn-wrap .text-two {
    color: var(--white);
}

/* header-2 area style  */
.header-area {
    /* position: absolute;
            top: 0;
            left: 0; */
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 10;
}

.header-area .header-top {
    background-color: var(--theme);
    border-radius: 5px;
    margin: 5px;
}

@media only screen and (max-width: 767px) {
    .header-area .header-top {
        display: none;
    }
}

.header-area .header-top-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

@media only screen and (max-width: 991px) {
    .header-area .header-top-inner {
        justify-content: center;
    }
}

.header-area .header-contact-meta {
    display: flex;
    align-items: center;
}

.header-area .header-contact-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.header-area .header-contact-item .icon {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-contact-item .icon {
        font-size: 14px;
    }
}

.header-area .header-contact-item .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-contact-item .text {
        font-size: 14px;
    }
}

.header-area .header-contact-item .text a:hover {
    color: var(--white-2);
}

.header-area .header-contact-item:not(:first-child) {
    border-left: 1px solid #926FFD;
    padding-left: 30px;
    margin-left: 30px;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-contact-item:not(:first-child) {
        padding-left: 20px;
        margin-left: 20px;
    }
}

.header-area .header-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media only screen and (max-width: 991px) {
    .header-area .header-social {
        display: none;
    }
}

.header-area .header-social .text {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-social .text {
        font-size: 14px;
    }
}

.header-area .header-social a {
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-area .header-social a:hover {
    color: var(--white-2);
}

.header-area .header-main {
    background-color: #ffffff;
    border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-area .header-main-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 100px;
    z-index: 1;
}

@media only screen and (max-width: 1919px) {
    .header-area .header-main-inner {
        height: 90px;
    }
}

@media only screen and (max-width: 1199px) {
    .header-area .header-main-inner {
        height: 80px;
    }
}

.header-area .sticky,
.header-area .transformed {
    background-color: #FFFFFF;
}

.header-area .header-logo {
    margin-right: auto;
}

.header-area .header-logo img {
    width: 110px;
}

@media only screen and (max-width: 1199px) {
    .header-area .header-logo img {
        width: 110px;
    }
}

@media only screen and (max-width: 767px) {
    .header-area .header-logo img {
        width: 110px;
    }
}

.header-area .main-menu>ul {
    display: flex;
    gap: 22px;
}

@media only screen and (max-width: 1200px) {
    .header-area .main-menu>ul {
        gap: 0px;
    }
}

.header-area .main-menu>ul>li:hover>a {
    color: var(--white);
    background-color: var(--action);
}

.header-area .main-menu li a {
    font-size: 16px;
    font-weight: 600;
    padding: 7px 14px;
    background-color: transparent;
    border-radius: 30px;
}

.header-area .main-menu li a:hover {
    color: var(--secondary);
}

.header-area .search-icon {
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .header-area .header-cta {
        display: none;
    }
}

.header-area .call-box {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    display: inline-block;
    padding: 12px 38px;
    background-color: var(--main-color-4);
    border-radius: 50px;
}

.header-area .call-box a:hover {
    color: var(--white-2);
}

.header-area .side-toggle {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--action);
    transition: all 0.3s;
}

.header-area .side-toggle:hover {
    background-color: var(--action);
    color: var(--white);
}

/* menu css */
.main-menu.menu-dark>ul>li>a {
    color: var(--black);
}

.main-menu.menu-light>ul>li>a {
    color: var(--white);
}

.main-menu>ul {
    display: flex;
}

.main-menu>ul>li:hover>a {
    color: var(--secondary);
}

.main-menu>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 0;
}

.main-menu>ul>li:hover>ul.dp-menu li:hover>ul {
    opacity: 1;
    pointer-events: all;
    inset-inline-start: 100%;
}

.main-menu li {
    position: relative;
    list-style: none;
}

.main-menu li a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    padding: 37px 15px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu {
    background-color: #232529;
    padding: 18px 0px;
    width: 250px;
    position: absolute;
    inset-inline-start: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all 0.5s;
    border-radius: 15px;
}

.main-menu ul.dp-menu.column-2 {
    -moz-column-count: 2;
    column-count: 2;
    width: 480px;
    -moz-column-gap: 0;
    column-gap: 0;
}

.main-menu ul.dp-menu ul {
    background: var(--black);
    padding: 18px 0px;
    width: 300px;
    position: absolute;
    inset-inline-start: calc(100% + 10px);
    top: 0;
    opacity: 0;
    z-index: 10;
    transition: all 0.5s;
}

.main-menu ul.dp-menu li {
    position: relative;
    padding: 0 25px;
}

.main-menu ul.dp-menu li:hover>a {
    color: var(--main-color-4);
    background-color: transparent;
}

.main-menu ul.dp-menu li:hover>ul {
    opacity: 1;
    transform: none !important;
    pointer-events: all;
}

.main-menu ul.dp-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    padding: 10px 0;
    background-color: transparent;
    border-radius: 8px;
    text-transform: capitalize;
}

.main-menu ul.dp-menu li a:hover {
    letter-spacing: 0.5px;
}

.main-menu ul.dp-menu li a:after {
    transform: rotate(-90deg);
    margin-left: auto;
}

.main-menu .has-mega-menu {
    position: static;
}

.main-menu li.menu-item-has-children>a:after {
    content: "\f107";
    font-family: var(--font_awesome);
    margin-inline-start: 7px;
    font-weight: 700;
    font-size: 16px;
}

/* Side info and offcanvas styling */
.offcanvas-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 900;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.offcanvas-overlay.overlay-open {
    opacity: 0.5;
    visibility: visible;
}

.side-info-close {
    font-size: 20px;
    padding: 0;
    transition: all 0.3s linear;
    background-color: transparent;
    color: var(--black);
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    border-radius: 50%;
    line-height: 38px;
}

.dark .side-info-close {
    border-color: var(--white);
    color: var(--white);
}

.side-info-close:hover {
    transform: rotate(90deg);
}

.side-info {
    background: var(--white) none repeat scroll 0 0;
    padding: 40px 45px;
    position: fixed;
    right: 0;
    top: 0;
    width: 500px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.dark .side-info {
    background-color: #1F1F1F;
}

@media only screen and (max-width: 1199px) {
    .side-info {
        width: 460px;
    }
}

@media (max-width: 575px) {
    .side-info {
        width: 100%;
        padding: 30px 20px;
    }
}

.side-info ::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.side-info.info-open {
    opacity: 1;
    transform: translateX(0);
    /* Show side info */
}

/* Offset header and logo styling */
.offset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offset-logo {
    width: 120px;
}

@media (max-width: 575px) {
    .offset-logo {
        width: 95px;
    }
}

.offset-logo img {
    width: 100%;
}

.offset-button {
    margin-top: 40px;
}

@media (min-width: 576px) {
    .offset-button {
        display: none;
    }
}

/* Offset widget box styling */
.offset-widget-box {
    margin-top: 40px;
}

.offset-widget-box .title {
    font-size: 24px;
    line-height: 1.33;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .offset-widget-box .title {
        margin-bottom: 22px;
    }
}

.offset-widget-box .contact-meta>*:not(:first-child) {
    margin-top: 16px;
}

.offset-widget-box .contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.offset-widget-box .contact-item span {
    color: var(--primary);
    font-weight: 500;
}

.offset-widget-box .contact-item span a:hover {
    color: var(--secondary);
}

.offset-widget-box .contact-item .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    border: 1px solid var(--border);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary);
}



/* Mobile accordion menu */
@media (max-width: 991px) {

    /* Mobile menu customization */

    .mobile-menu {
        margin-top: 40px;
    }

    .mobile-menu.mean-container .mean-nav>ul {
        padding: 0;
        margin: 0;
        width: 100%;
        list-style-type: none;
        display: block !important;
    }

    .mobile-menu.mean-container .mean-nav>ul>li:last-child>a {
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu.mean-container .mean-nav {
        background: none;
        margin-top: 0;
    }

    .mobile-menu.mean-container .mean-nav .new {
        font-size: 10px;
        font-weight: 600;
        background: #FFA38E;
        color: #999999;
        padding: 3px 7px;
        line-height: 1;
        display: flex;
        align-items: center;
        border-radius: 2px;
    }

    .mobile-menu.mean-container .mean-nav ul li a {
        width: 100%;
        padding: 15px 0;
        padding-inline-start: 0px;
        font-weight: 500;
        font-size: 18px;
        line-height: 1;
        color: var(--primary);
        text-transform: capitalize;
        border-top: 1px solid var(--border);
        display: flex;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
        outline: none;
        transform: translateY(var(--y)) translateZ(0);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        box-sizing: border-box;
        opacity: 1;
    }

    @media only screen and (max-width: 767px) {
        .mobile-menu.mean-container .mean-nav ul li a {
            font-size: 20px;
        }
    }

    .mobile-menu.mean-container .mean-nav ul li a:hover {
        color: var(--primary);
    }

    .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
        width: 100%;
        height: 48px;
        justify-content: end;
        font-weight: 300;
        border: none !important;
        background-color: transparent;
    }

    @media only screen and (max-width: 767px) {
        .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
            height: 50px;
        }
    }

    .mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
        background: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    .mobile-menu.mean-container .mean-nav ul li li:first-child {
        border-top: 1px solid var(--border);
    }

    .mobile-menu.mean-container .mean-nav ul li li a {
        font-size: 16px;
        text-transform: capitalize;
        border-top: none !important;
        padding: 12px 0;
        padding-inline-start: 15px;
    }

    .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
        height: 58px;
    }

    @media only screen and (max-width: 991px) {
        .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
            height: 25px;
        }
    }

    @media only screen and (max-width: 767px) {
        .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
            height: 22px;
        }
    }

    .mobile-menu.mean-container .mean-nav ul li li:last-child {
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu.mean-container .mean-nav ul li li a {
        padding-left: 15px;
        /* make space for icon */
        position: relative;
    }

    .mobile-menu.mean-container .mean-nav ul li li {
        position: relative;
    }

    .mobile-menu.mean-container .mean-nav ul li li::before {
        content: "\f054";
        /* chevron-right */
        font-family: var(--font_awesome);
        font-weight: 900;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
    }

    .mobile-menu.mean-container .mean-bar {
        background: none;
        max-height: auto;
        overflow-y: scroll;
    }

    .mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
        width: 0;
    }

    .mobile-menu.mean-container a.meanmenu-reveal {
        display: none !important;
    }

    .mean-nav .menu-item-has-children>ul {
        display: none;
        padding-left: 15px;
    }

    .mean-nav .menu-item-has-children.active>ul {
        display: block;
    }

    .mean-nav .menu-item-has-children>a {
        position: relative;
        display: block;
    }

    /* Arrow indicator */
    .mean-nav .menu-item-has-children>a::after {
        content: "\f067";
        /* fa-plus */
        font-family: var(--font_awesome);
        font-weight: 900;
        /* REQUIRED for solid icons */
        position: absolute;
        right: 15px;
        font-size: 14px;
    }

    .mean-nav .menu-item-has-children.active>a::after {
        content: "\f068";
        /* fa-minus */
    }

    nav ul,
    nav ul ul {
        list-style: none;
    }
}

/* footer-2 area style  */
.footer-area {
    background: radial-gradient(circle, rgb(63, 113, 218) 0%, rgb(53, 48, 194) 100%);
    position: relative;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(7, 11, 42, 0.71);
}

.footer-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-title {
    font-weight: 600;
    font-size: 150px;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white);
    -webkit-text-stroke: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 23px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
    .footer-title {
        font-size: 140px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-title {
        font-size: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-title {
        font-size: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-title {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .footer-title {
        font-size: 40px;
        letter-spacing: 0.1em;
        -webkit-text-stroke: 1px;
    }
}

.footer-widget-wrapper {
    display: grid;
    gap: 50px 60px;
    grid-template-columns: 358px auto 350px;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .footer-widget-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 30px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget-wrapper {
        grid-template-columns: 1fr;
        padding: 20px 20px;
    }
}

.footer-widget-wrapper>* {
    position: relative;
}

.footer-widget-wrapper>*:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #2B3369;
    top: 0;
    left: -104px;
}

@media only screen and (max-width: 1399px) {
    .footer-widget-wrapper>*:before {
        left: -90px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-widget-wrapper>*:before {
        display: none;
    }
}

.footer-widget-wrapper>*:first-child:before {
    display: none;
}

.footer-logo img {
    width: 182px;
}

@media only screen and (max-width: 1199px) {
    .footer-logo img {
        width: 152px;
    }
}

.footer-text {
    margin-top: 28px;
}

.footer-text .text {
    font-weight: 500;
    color: var(--white);
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    color: var(--theme);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.footer-social a:hover {
    color: var(--black);
    background-color: var(--main-color-4);
    font-size: 25px;
}

.footer-widget-title {
    font-family: var(--font_inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
}

.footer-meta-list {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

.footer-meta-list li {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-meta-list li .icon {
    color: var(--white);
    width: 18px;
    margin-top: -1px;
}

.footer-meta-list li a:hover {
    color: var(--white);
}

.footer-nav-list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.footer-nav-list li {
    list-style: none;
}

.footer-nav-list li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: flex;
    gap: 13px;
    align-items: center;
}

.footer-nav-list li a:hover {
    color: var(--main-color-4);
}

.footer-nav-list li a i {
    color: var(--white);
    font-size: 16px;
}

.copyright-area-inner {
    display: grid;
    gap: 10px 60px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px 14px;
    background-color: var(--main-color-3);
    border-radius: 20px;
}

@media only screen and (max-width: 991px) {
    .copyright-area-inner {
        grid-template-columns: auto;
        justify-content: center;
    }
}

.copyright-text .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

.copyright-text .text a:hover {
    color: var(--black);
}

.copyright-link {
    display: flex;
    gap: 5px 30px;
    flex-wrap: wrap;
}

.copyright-link a {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
    display: inline-block;
}

.copyright-link a:hover {
    color: var(--black);
}

.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 20px;
    position: relative;
    border-radius: 50px;
    color: var(--theme);
    display: inline-flex;
    border: 1px solid var(--border);
    text-transform: uppercase;
    background-color: var(--white);
    letter-spacing: 0.05em;
}

.custom-breadcrumb {
    background-color: #f4f4f4;
    padding: 8px 0px;
    margin: 0px;
}

.custom-breadcrumb .breadcrumb {
    margin-bottom: 0px;
}

.custom-breadcrumb .breadcrumb .breadcrumb-item {
    color: var(--black-2);
}

.custom-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--main-color-4);
}

.custom-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--main-color-2);
    font-weight: 700;
}

.heading-wrapper {
    margin-bottom: 30px;
}

.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after {
    height: 6px;
    width: 100px;
    content: "";
    display: block;
    margin-top: 18px;
}

.heading-wrapper.with-separator.text-center h1:after,
.heading-wrapper.with-separator.text-center h2:after,
.heading-wrapper.with-separator.text-center h3:after {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after {
    background: var(--main-color-4);
}

.list-style-one li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.list-style-one li:before,
.list-style-one li:after {
    content: "";
    width: 3px;
    height: 10px;
    background: var(--main-color-2);
    position: absolute;
    top: 9px;
    left: 0;
}

.list-style-one li:after {
    left: 5px;
    width: 10px;
}