﻿@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #3B82F6;
    --theme2: #EC4899;
    --theme3: #05A4BF;
    --theme4: #F72;
    --theme5: #F6D258;
    --theme6: #A9E1FF;
    --header: #0F172A;
    --header2: #290F1C;
    --header3: #1F2937;
    --header4: #000;
    --text: #3D4857;
    --border: #FCFCFC;
    --bg: #F2F5F7;
    --bg2: #0F172A;
    --bg3: #F7F2F5;
    --bg4: #E6F8FB;
    --bg5: #FBF9EF;
    --bg6: #F5EFDC;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Public Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--body);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

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

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 72px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -2px;
}

@media (max-width: 1399px) {
    h1 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 60px;
        line-height: 130% !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 55px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 44px;
    }
}

@media (max-width: 470px) {
    h1 {
        font-size: 34px;
    }
}

h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 1399px) {
    h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 133.333%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 22px;
    }
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
    background-color: var(--theme);
    padding: 5.5px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-transform: capitalize;
}

    .theme-btn .btn_inner {
        position: relative;
        z-index: 1;
        padding: 15px 30px 15px 60px;
        width: 100%;
        text-align: center;
    }

        .theme-btn .btn_inner::before {
            content: "";
            position: absolute;
            z-index: 0;
            top: 0;
            inset-inline-start: 0;
            width: 45px;
            height: 100%;
            background-color: var(--header);
            border-radius: 50px;
            transition: all 0.3s ease-in-out 0s;
        }

        .theme-btn .btn_inner .btn_icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            inset-inline-start: 0;
            top: 0;
            min-width: 45px;
            height: 100%;
            z-index: 2;
            font-size: 16px;
            line-height: 1;
            color: var(--white);
        }

            .theme-btn .btn_inner .btn_icon > span {
                overflow: hidden;
                position: relative;
                display: inline-flex;
            }

                .theme-btn .btn_inner .btn_icon > span i:first-child, .theme-btn .btn_inner .btn_icon > span i:last-child {
                    transition: transform 0.4s ease-in-out 0s;
                }

                .theme-btn .btn_inner .btn_icon > span i:last-child {
                    position: absolute;
                    transform: translateX(-150%);
                }

                .theme-btn .btn_inner .btn_icon > span img:first-child, .theme-btn .btn_inner .btn_icon > span img:last-child {
                    transition: transform 0.4s ease-in-out 0s;
                }

                .theme-btn .btn_inner .btn_icon > span img:last-child {
                    position: absolute;
                    transform: translateX(-150%);
                }

        .theme-btn .btn_inner .btn_text {
            display: inline-flex;
            overflow: hidden;
            color: var(--white);
            text-shadow: 0 23px 0 currentColor;
            white-space: nowrap;
        }

            .theme-btn .btn_inner .btn_text > span {
                display: flex;
                align-items: center;
                backface-visibility: hidden;
                transform: translateY(0);
                transition: 0.5s;
            }

    .theme-btn:hover .btn_inner::before {
        width: 100%;
    }

    .theme-btn:hover .btn_inner .btn_icon i:first-child {
        transform: translateX(150%);
    }

    .theme-btn:hover .btn_inner .btn_icon i:last-child {
        transform: translateX(0);
    }

    .theme-btn:hover .btn_inner .btn_icon img:first-child {
        transform: translateX(150%);
    }

    .theme-btn:hover .btn_inner .btn_icon img:last-child {
        transform: translateX(0);
    }

    .theme-btn:hover .btn_inner .btn_text {
        color: var(--white);
    }

        .theme-btn:hover .btn_inner .btn_text > span {
            transform: translateY(-24px);
        }

.gt-theme-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    transition: all 0.4s ease;
    text-transform: capitalize;
}

    .gt-theme-btn-main.style-2 {
        background-color: var(--theme3);
        border-radius: 70px;
        padding: 7px 30px;
        padding-right: 7px;
    }

        .gt-theme-btn-main.style-2 .gt-theme-btn-arrow-left,
        .gt-theme-btn-main.style-2 .gt-theme-btn-arrow-right {
            width: 43px;
            height: 43px;
            background: var(--header3);
            color: var(--white);
        }

        .gt-theme-btn-main.style-2 .gt-theme-btn {
            background-color: transparent;
            padding: 0;
            margin-right: 17px;
            font-weight: 600;
        }

        .gt-theme-btn-main.style-2:hover {
            padding-right: 30px;
            padding-left: 9px;
        }

            .gt-theme-btn-main.style-2:hover .gt-theme-btn {
                background-color: transparent;
            }

            .gt-theme-btn-main.style-2:hover .gt-theme-btn-arrow-left {
                left: 5px;
            }

    .gt-theme-btn-main.style-4 .gt-theme-btn {
        background-color: var(--theme4);
        color: var(--white);
    }

    .gt-theme-btn-main.style-4 .gt-theme-btn-arrow-left,
    .gt-theme-btn-main.style-4 .gt-theme-btn-arrow-right {
        background-color: var(--theme4);
        color: var(--white);
    }

    .gt-theme-btn-main.style-4:hover .gt-theme-btn {
        background-color: var(--header4);
        color: var(--white);
    }

    .gt-theme-btn-main.style-4:hover .gt-theme-btn-arrow-left,
    .gt-theme-btn-main.style-4:hover .gt-theme-btn-arrow-right {
        background-color: var(--header4);
        color: var(--white);
    }

    .gt-theme-btn-main.style-5 .gt-theme-btn {
        background-color: var(--theme5);
        color: var(--header4);
    }

    .gt-theme-btn-main.style-5 .gt-theme-btn-arrow-left,
    .gt-theme-btn-main.style-5 .gt-theme-btn-arrow-right {
        background-color: var(--theme5);
        color: var(--header4);
    }

    .gt-theme-btn-main.style-5:hover .gt-theme-btn {
        color: var(--white);
    }

    .gt-theme-btn-main.style-5:hover .gt-theme-btn-arrow-left,
    .gt-theme-btn-main.style-5:hover .gt-theme-btn-arrow-right {
        color: var(--white);
    }

    .gt-theme-btn-main:hover .gt-theme-btn-arrow-left {
        scale: 1;
    }

    .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
        scale: 0;
    }

    .gt-theme-btn-main:hover .gt-theme-btn {
        transform: translateX(56px);
    }

    .gt-theme-btn-main .gt-theme-btn-arrow-left,
    .gt-theme-btn-main .gt-theme-btn-arrow-right {
        width: 53px;
        height: 53px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--theme2);
        color: var(--white);
        border-radius: 50%;
        transition: 0.4s;
        text-align: center;
    }

@media (max-width: 575px) {
    .gt-theme-btn-main .gt-theme-btn-arrow-left,
    .gt-theme-btn-main .gt-theme-btn-arrow-right {
        width: 48px;
        height: 48px;
    }
}

.gt-theme-btn-main .gt-theme-btn-arrow-left {
    scale: 0;
    position: absolute;
    left: 3px;
}

.gt-theme-btn-main .gt-theme-btn {
    background: var(--theme2);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 13px 30px;
    display: inline-flex;
    font-family: "Inter", sans-serif;
    align-items: center;
    gap: 30px;
    border-radius: 40px;
    transition: 0.4s;
}

@media (max-width: 575px) {
    .gt-theme-btn-main .gt-theme-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

.gt-theme-btn-main:hover .gt-theme-btn {
    background-color: var(--header);
}

.gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
    background-color: var(--header);
}

.link-btn {
    display: inline-block;
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
}

    .link-btn i {
        margin-right: 5px;
    }

    .link-btn:hover {
        color: var(--theme);
    }

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

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

    51% {
        opacity: 1;
    }
}

@keyframes slideUp {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}
/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    border: none;
    font-family: "Inter", sans-serif;
}

    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }

    .mean-container .mean-nav ul li a:last-child {
        border-bottom: 0;
    }

    .mean-container .mean-nav ul li a:hover {
        color: var(--theme);
    }

    .mean-container .mean-nav ul li a.mean-expand {
        margin-top: 5px;
        padding: 0 !important;
    }

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.mobile-menus.style-2 .mean-nav ul li a {
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: "Public Sans", sans-serif !important;
}

@media (max-width: 767px) {
    .mobile-menus.style-2 .mean-nav ul li a {
        font-size: 18px !important;
    }
}

.mobile-menus .mean-nav ul li a {
    font-size: 30px !important;
    font-weight: 600 !important;
    font-family: "Public Sans", sans-serif !important;
}

@media (max-width: 767px) {
    .mobile-menus .mean-nav ul li a {
        font-size: 18px !important;
    }
}

.mobile-menus .mean-container .mean-nav ul li li a {
    font-size: 16px !important;
}

.mobile-menus .mean-nav {
    max-width: 530px;
}

@media (max-width: 1199px) {
    .mobile-menus .mean-nav {
        max-width: initial;
    }
}

.back-to-top {
    border-radius: 50% !important;
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .back-to-top:hover {
        background-color: var(--header);
        color: var(--white);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translate(0);
    }

    .back-to-top.color-2 {
        background-color: var(--theme2);
        color: var(--white);
    }

        .back-to-top.color-2:hover {
            background-color: var(--header);
        }

    .back-to-top.color-3 {
        background-color: var(--theme3);
        color: var(--white);
    }

        .back-to-top.color-3:hover {
            background-color: var(--header);
        }

    .back-to-top.color-4 {
        background-color: var(--theme4);
        color: var(--white);
    }

        .back-to-top.color-4:hover {
            background-color: var(--header);
        }

    .back-to-top.color-5 {
        background-color: var(--theme5);
        color: var(--black);
    }

        .back-to-top.color-5:hover {
            background-color: var(--header);
            color: var(--white);
        }

.cursor-outer {
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--theme);
    background-color: var(--theme);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    transition: all 0.4s ease-out 0s;
}

    .cursor-outer.color-2 {
        border: 1px solid var(--theme2);
        background-color: var(--theme2);
    }

    .cursor-outer.color-3 {
        border: 1px solid var(--theme3);
        background-color: var(--theme3);
    }

    .cursor-outer.color-4 {
        border: 1px solid var(--theme4);
        background-color: var(--theme4);
    }

    .cursor-outer.color-5 {
        border: 1px solid var(--theme5);
        background-color: var(--theme5);
    }

    .cursor-outer.cursor-hover {
        opacity: 0.14;
    }

    .cursor-outer.cursor-big {
        opacity: 0;
    }

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

    .mouseCursor.cursor-big {
        width: 20px;
        height: 20px;
        margin-inline-start: -12px;
        margin-top: -12px;
    }

.cursor-inner {
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--theme);
    opacity: 1;
    transition: all 0.24s ease-out 0s;
}

    .cursor-inner.color-2 {
        background-color: var(--theme2);
    }

    .cursor-inner.color-3 {
        background-color: var(--theme3);
    }

    .cursor-inner.color-4 {
        background-color: var(--theme4);
    }

    .cursor-inner.color-5 {
        background-color: var(--theme5);
    }

    .cursor-inner span {
        color: var(--white);
        line-height: 60px;
        opacity: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 12px;
    }

    .cursor-inner.cursor-big span {
        opacity: 1;
    }

    .cursor-inner.cursor-hover {
        margin-inline-start: -10px;
        margin-top: -10px;
        width: 30px;
        height: 30px;
        background-color: var(--theme); /* $theme-color */
        border: 1px solid #686363;
        opacity: 0;
    }

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000000;
    opacity: 0.7;
    cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

    .search-popup__content.style-2 .search-popup__form .search-btn {
        color: var(--white);
        background-color: var(--theme2);
        transition: all 0.4s ease-in-out;
    }

        .search-popup__content.style-2 .search-popup__form .search-btn:hover {
            background-color: var(--header);
        }

.search-popup__form {
    position: relative;
}

    .search-popup__form input[type=search],
    .search-popup__form input[type=text] {
        width: 100%;
        height: 66px;
        border: none;
        outline: none;
        padding-left: 20px;
        background-color: var(--white);
        font-size: 16px;
        font-weight: 400;
        color: var(--text);
        transition: all 500ms ease;
    }

        .search-popup__form input[type=search]:focus,
        .search-popup__form input[type=text]:focus {
            color: var(--header);
        }

    .search-popup__form .search-btn {
        padding: 0;
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        font-size: 20px;
        color: var(--white);
        background-color: var(--theme);
        transition: all 0.4s ease-in-out;
    }

        .search-popup__form .search-btn:hover {
            background-color: var(--header);
        }

    .search-popup__form .eolexi-btn svg {
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

.search-popup.active {
    z-index: 999999;
}

    .search-popup.active .search-popup__overlay {
        top: auto;
        bottom: calc(90px - 112vw);
        -webkit-transform: scale(1);
        -khtml-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
        opacity: 0.7;
        -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    }

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

.preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

    .preloader .animation-preloader {
        z-index: 1000;
    }

        .preloader .animation-preloader .spinner {
            animation: spinner 1s infinite linear;
            border-radius: 50%;
            border: 3px solid rgba(0, 0, 0, 0.2);
            border-top-color: var(--theme);
            height: 9em;
            margin: 0 auto 3.5em auto;
            width: 9em;
        }

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font: 500 5em "Inter", sans-serif, "Public Sans", sans-serif;
    text-align: center;
    user-select: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 2.5em;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme);
    position: relative;
}

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
        animation-delay: 0.2s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
        animation-delay: 0.4s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
        animation-delay: 0.6s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
        animation-delay: 0.8s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
        animation-delay: 1s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
        animation-delay: 1.2s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
        animation-delay: 1.4s;
    }

    .preloader .animation-preloader .txt-loading .letters-loading::before {
        animation: letters-loading 4s infinite;
        color: var(--header);
        content: attr(data-text-preloader);
        left: 0;
        opacity: 0;
        font-family: "Inter", sans-serif;
        position: absolute;
        top: -3px;
        transform: rotateY(-90deg);
    }

.preloader p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--theme);
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

    .preloader .loader .row {
        height: 100%;
    }

    .preloader .loader .loader-section {
        padding: 0px;
    }

        .preloader .loader .loader-section .bg {
            background-color: var(--white);
            height: 100%;
            left: 0;
            width: 100%;
            transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
        }

.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.preloader.color-2 .animation-preloader .spinner {
    border-top-color: var(--theme2);
}

.preloader.color-2 .animation-preloader .txt-loading .letters-loading {
    color: var(--theme2);
}

.preloader.color-2 p {
    color: var(--theme2);
}

.preloader.color-3 .animation-preloader .spinner {
    border-top-color: var(--theme3);
}

.preloader.color-3 .animation-preloader .txt-loading .letters-loading {
    color: var(--theme3);
}

.preloader.color-3 p {
    color: var(--theme3);
}

.preloader.color-4 .animation-preloader .spinner {
    border-top-color: var(--theme4);
}

.preloader.color-4 .animation-preloader .txt-loading .letters-loading {
    color: var(--theme4);
}

.preloader.color-4 p {
    color: var(--theme4);
}

.preloader.color-5 .animation-preloader .spinner {
    border-top-color: var(--theme5);
}

.preloader.color-5 .animation-preloader .txt-loading .letters-loading {
    color: var(--theme5);
}

.preloader.color-5 p {
    color: var(--theme5);
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes gelatine {
    from, to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.7, 1.1);
    }

    50% {
        transform: scale(1.1, 0.7);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%, 75%, 100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%, 50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    20% {
        transform: translateX(-50px);
    }

    50% {
        transform: translatey(-40px);
    }

    100% {
        transform: translatey(0px);
    }
}
/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes scale {
    0% {
        top: -1000px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.animation-infinite {
    animation: ShapeAnim 50s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top left 3000px;
    }
}

.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
    width: 20px;
}

@media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
        width: 10px;
    }
}

.splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
}

    .header-main .main-menu ul {
        margin-bottom: 0;
    }

        .header-main .main-menu ul .menu-thumb {
            position: inherit;
        }

        .header-main .main-menu ul li {
            position: relative;
            list-style: none;
            display: inline-block;
            margin-inline-end: 35px;
        }

            .header-main .main-menu ul li:last-child {
                margin-inline-end: 0;
            }

            .header-main .main-menu ul li a {
                display: inline-block;
                font-size: 16px;
                font-weight: 500;
                color: var(--header);
                font-family: "Inter", sans-serif;
                padding: 20px 0;
                text-align: left;
                position: relative;
                text-transform: capitalize;
                transition: all 0.4s ease-in-out;
            }

                .header-main .main-menu ul li a i {
                    margin-left: 4px;
                    font-size: 14px;
                }

                .header-main .main-menu ul li a:hover {
                    color: var(--theme) !important;
                }

            .header-main .main-menu ul li .submenu {
                position: absolute;
                top: 100%;
                inset-inline-start: 0;
                min-width: 240px;
                background: var(--white);
                padding: 20px 0;
                border-radius: 10px;
                z-index: 99999;
                visibility: hidden;
                opacity: 0;
                transform-origin: top center;
                color: var(--header);
                transform: translateY(-10px);
                transition: all 0.4s ease-in-out;
                border-top: 4px solid var(--theme);
                box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            }

                .header-main .main-menu ul li .submenu li {
                    display: block;
                    width: 100%;
                    margin: 0;
                }

                    .header-main .main-menu ul li .submenu li a {
                        position: relative;
                        z-index: 11;
                        font-size: 16px;
                        font-weight: 500;
                        color: var(--header);
                        line-height: 38px;
                        padding: 0px 0px 0px 32px;
                        padding-right: 22px;
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }

                        .header-main .main-menu ul li .submenu li a::before {
                            content: "";
                            position: absolute;
                            width: 0px;
                            height: 2px;
                            background: var(--theme);
                            left: 14px;
                            bottom: 18px;
                            transition: all 0.4s ease-in-out;
                        }

                        .header-main .main-menu ul li .submenu li a:hover {
                            color: var(--theme) !important;
                        }

                    .header-main .main-menu ul li .submenu li:last-child a {
                        border: none;
                    }

                    .header-main .main-menu ul li .submenu li .submenu {
                        inset-inline-start: 100%;
                        top: 0;
                        visibility: hidden;
                        opacity: 0;
                        border-top-left-radius: 0;
                        border-bottom-left-radius: 0;
                    }

                    .header-main .main-menu ul li .submenu li:hover > a {
                        color: var(--theme) !important;
                        margin-left: 10px;
                    }

                        .header-main .main-menu ul li .submenu li:hover > a::before {
                            width: 10px;
                        }

                        .header-main .main-menu ul li .submenu li:hover > a::after {
                            color: var(--theme);
                        }

                    .header-main .main-menu ul li .submenu li:hover > .submenu {
                        -webkit-transform: translateY(1);
                        -moz-transform: translateY(1);
                        -ms-transform: translateY(1);
                        -o-transform: translateY(1);
                        transform: translateY(1);
                        visibility: visible;
                        opacity: 1;
                    }

                    .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
                        position: absolute;
                        top: 50%;
                        inset-inline-end: 25px;
                        -webkit-transform: translateY(-50%);
                        -moz-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        transform: translateY(-50%);
                        color: var(--theme);
                    }

            .header-main .main-menu ul li .has-homemenu {
                padding: 20px 20px 10px 20px !important;
                opacity: 0;
                visibility: hidden;
                position: absolute;
                left: 0;
                right: 0;
                padding: 0;
                width: 100%;
                z-index: 999;
                overflow: hidden;
                margin: auto;
            }

                .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
                    position: relative;
                }

                    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
                        position: relative;
                    }

                        .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                            text-align: center;
                            opacity: 0;
                            visibility: hidden;
                            transition: all 0.4s ease-in-out;
                            margin-top: 20px;
                            left: 25px;
                            right: 25px;
                        }

@media (max-width: 1399px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
        font-size: 14px;
        min-width: 140px;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 5.5px;
    justify-content: center;
    line-height: 1;
    background-color: var(--theme);
    color: var(--black);
    border-radius: 30px;
}

    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
        margin-left: 0;
    }

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb a {
    padding: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    font-family: "Public Sans", sans-serif;
}

.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

    .header-main .main-menu ul li:hover > a::after {
        color: var(--theme);
    }

.header-main .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .header-right {
    gap: 30px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding-top: 20px;
}

    .header-1 .container {
        max-width: 1800px;
    }

    .header-1 .mean__menu-wrapper {
        border-radius: 70px;
        background: rgba(255, 255, 255, 0.08);
        padding: 0 35px;
        display: flex;
        align-items: center;
        gap: 35px;
    }

@media (max-width: 1199px) {
    .header-1 .mean__menu-wrapper {
        padding: 0;
        background-color: transparent;
        border: none;
    }
}

.header-1 .mean__menu-wrapper .search-toggler {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.75);
}

    .header-1 .mean__menu-wrapper .search-toggler:hover {
        color: var(--theme);
    }

.header-1 .mean__menu-wrapper .main-menu li a {
    padding: 14px 0;
}

.header-1 .mean__menu-wrapper .main-menu ul li a {
    color: rgba(255, 255, 255, 0.75);
}

    .header-1 .mean__menu-wrapper .main-menu ul li a i {
        margin-left: 4px;
        font-size: 14px;
    }

    .header-1 .mean__menu-wrapper .main-menu ul li a:hover {
        color: var(--theme) !important;
    }

.header-1 .mean__menu-wrapper .main-menu ul li .submenu {
    background: var(--white);
    color: var(--header);
    border-top: 4px solid var(--theme);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .header-1 .mean__menu-wrapper .main-menu ul li .submenu li a {
        color: var(--header);
    }

        .header-1 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
            background: var(--theme);
        }

        .header-1 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
            color: var(--theme) !important;
        }

    .header-1 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a {
        color: var(--theme) !important;
    }

        .header-1 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a::after {
            color: var(--theme);
        }

    .header-1 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown > a::after {
        color: var(--theme);
    }

.header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 5.5px;
    justify-content: center;
    line-height: 1;
    background-color: var(--theme);
    color: var(--black);
    border-radius: 30px;
}

    .header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
        margin-left: 0;
    }

.header-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    font-family: "Inter", sans-serif;
}

.header-1 .mean__menu-wrapper .main-menu ul li:hover > a {
    color: var(--theme);
}

    .header-1 .mean__menu-wrapper .main-menu ul li:hover > a::after {
        color: var(--theme);
    }

.header-1 .mean__menu-wrapper .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-1 .sidebar__toggle {
    color: var(--white);
}

    .header-1 .sidebar__toggle:hover {
        color: var(--theme);
    }

.header-1 .header-right .search-toggler, .header-1 .header-right .sidebar__toggle {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 575px) {
    .header-1 .header-right .search-toggler, .header-1 .header-right .sidebar__toggle {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }
}

.header-section-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

    .header-section-2 .container {
        max-width: 1845px;
    }

    .header-section-2 .header-top-2 {
        background-color: var(--header2);
        padding: 14px 0;
    }

        .header-section-2 .header-top-2 p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            font-weight: 500;
            letter-spacing: -1px;
            font-family: "Inter", sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

@media (max-width: 575px) {
    .header-section-2 .header-top-2 p {
        font-size: 14px;
    }
}

.header-section-2 .header-top-2 p a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px;
}

@media (max-width: 575px) {
    .header-section-2 .header-top-2 p a {
        font-size: 14px;
    }
}

.header-section-2 .header-top-2 p a i {
    margin-left: 5px;
}

.header-section-2 .header-top-2 p a:hover {
    color: var(--theme2);
}

.header-section-2 .header-2 {
    background-color: var(--white);
}

@media (max-width: 575px) {
    .header-section-2 .header-2 .logo img {
        width: 120px;
    }
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a {
    color: var(--header2);
}

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a i {
        margin-left: 4px;
        font-size: 14px;
    }

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li a:hover {
        color: var(--theme2) !important;
    }

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu {
    background: var(--white);
    color: var(--header);
    border-top: 4px solid var(--theme2);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a {
        color: var(--header);
    }

        .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
            background: var(--theme2);
        }

        .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
            color: var(--theme2) !important;
        }

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a {
        color: var(--theme2) !important;
    }

        .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a::after {
            color: var(--theme2);
        }

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown > a::after {
        color: var(--theme2);
    }

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    left: 15px;
    right: 15px;
}

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
        width: initial;
        justify-content: initial;
        display: initial;
    }

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
        padding: 9px 25px;
    }

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
        margin-left: -5px;
    }

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    font-family: "Inter", sans-serif;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover > a {
    color: var(--theme2);
}

    .header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover > a::after {
        color: var(--theme2);
    }

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-section-2 .header-2 .header-right {
    gap: 15px;
}

.header-section-2 .header-2 .search-toggler {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #E6E8EB;
    text-align: center;
    border-radius: 50%;
}

    .header-section-2 .header-2 .search-toggler:hover {
        background-color: var(--theme2);
        color: var(--white);
        border: 1px solid var(--theme2);
    }

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn {
    padding: 8px 24px;
}

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-left, .header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-right {
    width: 45px;
    height: 45px;
}

.header-section-2 .header-2 .sidebar__toggle .gt-theme-btn-main .gt-theme-btn-arrow-left {
    left: 12px;
}

.header-3 {
    position: relative;
    z-index: 999;
}

    .header-3 .mega-menu-wrapper {
        margin: 0 30px;
    }

    .header-3 .header-right {
        gap: 20px;
    }

        .header-3 .header-right .social-icon {
            gap: 8px;
        }

@media (max-width: 1399px) {
    .header-3 .header-right .social-icon {
        display: none !important;
    }
}

.header-3 .header-right .social-icon a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--header3);
    color: var(--white);
    text-align: center;
    font-size: 14px;
}

    .header-3 .header-right .social-icon a:hover {
        background-color: var(--theme3);
    }

.header-3 .mean__menu-wrapper .main-menu ul li a {
    color: var(--header3);
}

    .header-3 .mean__menu-wrapper .main-menu ul li a i {
        margin-left: 4px;
        font-size: 14px;
    }

    .header-3 .mean__menu-wrapper .main-menu ul li a:hover {
        color: var(--theme3) !important;
    }

.header-3 .mean__menu-wrapper .main-menu ul li .submenu {
    background: var(--white);
    color: var(--header3);
    border-top: 4px solid var(--theme3);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .header-3 .mean__menu-wrapper .main-menu ul li .submenu li a {
        color: var(--header3);
    }

        .header-3 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
            background: var(--theme3);
        }

        .header-3 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
            color: var(--theme3) !important;
        }

    .header-3 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a {
        color: var(--theme3) !important;
    }

        .header-3 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a::after {
            color: var(--theme3);
        }

    .header-3 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown > a::after {
        color: var(--theme3);
    }

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    left: 15px;
    right: 15px;
}

    .header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
        width: initial;
        justify-content: initial;
        display: inline-block;
        padding-right: 7px;
    }

        .header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main:hover .gt-theme-btn {
            padding-right: 25px;
            padding-left: 5px;
        }

        .header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main:hover .gt-theme-btn-arrow-left {
            top: 6px;
        }

    .header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
        padding: 9px 25px;
        display: inline-block;
        padding-right: 0;
    }

    .header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
        margin-left: -5px;
    }

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    font-family: "Inter", sans-serif;
}

.header-3 .mean__menu-wrapper .main-menu ul li:hover > a {
    color: var(--theme3);
}

    .header-3 .mean__menu-wrapper .main-menu ul li:hover > a::after {
        color: var(--theme3);
    }

.header-3 .mean__menu-wrapper .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

    .header-4 .container {
        max-width: 1860px;
    }

@media (max-width: 575px) {
    .header-4 .logo img {
        width: 120px;
    }
}

.header-4 .mean__menu-wrapper .main-menu ul li a {
    color: var(--header4);
}

    .header-4 .mean__menu-wrapper .main-menu ul li a i {
        margin-left: 4px;
        font-size: 14px;
    }

    .header-4 .mean__menu-wrapper .main-menu ul li a:hover {
        color: var(--theme4) !important;
    }

.header-4 .mean__menu-wrapper .main-menu ul li .submenu {
    background: var(--white);
    color: var(--header);
    border-top: 4px solid var(--theme4);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .header-4 .mean__menu-wrapper .main-menu ul li .submenu li a {
        color: var(--header4);
    }

        .header-4 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
            background: var(--theme4);
        }

        .header-4 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
            color: var(--theme4) !important;
        }

    .header-4 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a {
        color: var(--theme4) !important;
    }

        .header-4 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a::after {
            color: var(--theme4);
        }

    .header-4 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown > a::after {
        color: var(--theme4);
    }

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    left: 15px;
    right: 15px;
}

    .header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
        width: initial;
        justify-content: initial;
        display: initial;
    }

    .header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
        padding: 9px 25px;
    }

    .header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
        margin-left: -5px;
    }

.header-4 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    font-family: "Inter", sans-serif;
}

.header-4 .mean__menu-wrapper .main-menu ul li:hover > a {
    color: var(--theme4);
}

    .header-4 .mean__menu-wrapper .main-menu ul li:hover > a::after {
        color: var(--theme4);
    }

.header-4 .mean__menu-wrapper .main-menu ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-4 .header-right {
    gap: 15px;
}

.header-4 .mean__menu-wrapper {
    border-radius: 66.111px;
    border: 1px solid #EBE8E6;
    padding: 0 35px;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

@media (max-width: 1199px) {
    .header-4 .mean__menu-wrapper {
        padding: 0;
        background-color: transparent;
        border: none;
    }
}

.header-4 .sidebar__toggle {
    width: 51px;
    height: 51px;
    line-height: 51px;
    border-radius: 50%;
    border-radius: 66.111px;
    border: 1px solid #EBE8E6;
    background: var(--white);
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--header4);
}

    .header-4 .sidebar__toggle:hover {
        background-color: var(--theme4);
        border: 1px solid var(--theme4);
        color: var(--white);
    }

.header-4 .gt-theme-btn-arrow-right {
    margin-left: -5px;
}

.header-5 {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

    .header-5 .container {
        max-width: 1840px;
    }

    .header-5 .header-left {
        display: flex;
        align-items: center;
        gap: 95px;
    }

    .header-5 .header-right {
        gap: 15px;
    }

        .header-5 .header-right .gt-theme-btn-arrow-right {
            margin-left: -5px;
        }

    .header-5 .mean__menu-wrapper .main-menu ul li a {
        color: var(--header4);
    }

        .header-5 .mean__menu-wrapper .main-menu ul li a i {
            margin-left: 4px;
            font-size: 14px;
        }

        .header-5 .mean__menu-wrapper .main-menu ul li a:hover {
            color: var(--header4) !important;
        }

    .header-5 .mean__menu-wrapper .main-menu ul li .submenu {
        background: var(--white);
        color: var(--header);
        border-top: 4px solid var(--theme5);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .header-5 .mean__menu-wrapper .main-menu ul li .submenu li a {
            color: var(--header4);
        }

            .header-5 .mean__menu-wrapper .main-menu ul li .submenu li a::before {
                background: var(--header4);
            }

            .header-5 .mean__menu-wrapper .main-menu ul li .submenu li a:hover {
                color: var(--header4) !important;
            }

        .header-5 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a {
            color: var(--header4) !important;
        }

            .header-5 .mean__menu-wrapper .main-menu ul li .submenu li:hover > a::after {
                color: var(--header4);
            }

        .header-5 .mean__menu-wrapper .main-menu ul li .submenu li.has-dropdown > a::after {
            color: var(--header4);
        }

    .header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
        left: 15px;
        right: 15px;
    }

        .header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-main {
            width: initial;
            justify-content: initial;
            display: initial;
        }

        .header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
            padding: 9px 25px;
        }

        .header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn-arrow-right {
            margin-left: -5px;
        }

    .header-5 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
        text-align: center;
        font-family: "Inter", sans-serif;
    }

    .header-5 .mean__menu-wrapper .main-menu ul li:hover > a {
        color: var(--header4);
    }

        .header-5 .mean__menu-wrapper .main-menu ul li:hover > a::after {
            color: var(--header4);
        }

    .header-5 .mean__menu-wrapper .main-menu ul li:hover > .submenu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }

    .header-5 .header-main {
        padding: 0;
    }

@media (max-width: 1199px) {
    .header-5 .header-main {
        padding: 10px 0;
    }
}

.header-5 .contact-info {
    display: inline-block;
    background-color: var(--white);
    padding-top: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    border-radius: 38px;
}

@media (max-width: 1199px) {
    .header-5 .contact-info {
        display: none;
    }
}

.header-5 .contact-info .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    line-height: 48px;
    background-color: var(--theme6);
    color: var(--header4);
    font-size: 20px;
    display: inline-block;
    text-align: center;
}

.header-5 .contact-info .text {
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin-left: 10px;
    color: var(--header4);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

    .sticky.header-1 {
        background-color: var(--header);
        padding: 12px 0;
    }

    .sticky.header-2 {
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .sticky.header-3 {
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .sticky.header-4 {
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .sticky.header-5 {
        background-color: var(--theme6);
    }

        .sticky.header-5 .header-main {
            padding: 10px 0;
        }

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

    .offcanvas__info::-webkit-scrollbar {
        display: none;
    }

    .offcanvas__info.style-3 {
        border-left: 2px solid var(--theme3);
    }

        .offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__close {
            background-color: var(--theme3);
        }

            .offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__close i {
                color: var(--white);
            }

        .offcanvas__info.style-3 .offcanvas__wrapper .social-icon a:hover {
            color: var(--theme3);
            border: 1px solid var(--theme3);
        }

        .offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
            margin-right: 20px;
        }

            .offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
                color: var(--theme3);
            }

        .offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__contact span {
            text-transform: initial;
        }

    .offcanvas__info.style-2 {
        border-left: 2px solid var(--theme2);
    }

        .offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__close {
            background-color: var(--theme2);
        }

            .offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__close i {
                color: var(--white);
            }

        .offcanvas__info.style-2 .offcanvas__wrapper .social-icon a:hover {
            color: var(--theme2);
            border: 1px solid var(--theme2);
        }

        .offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
            margin-right: 20px;
        }

            .offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
                color: var(--theme2);
            }

        .offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__contact span {
            text-transform: initial;
        }

    .offcanvas__info.style-4 {
        border-left: 2px solid var(--theme4);
    }

        .offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__close {
            background-color: var(--theme4) !important;
        }

            .offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__close i {
                color: var(--white);
            }

        .offcanvas__info.style-4 .offcanvas__wrapper .social-icon a:hover {
            color: var(--theme4);
            border: 1px solid var(--theme4);
        }

        .offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
            margin-right: 20px;
        }

            .offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
                color: var(--theme4);
            }

        .offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__contact span {
            text-transform: initial;
        }

    .offcanvas__info.style-5 {
        border-left: 2px solid var(--theme5);
    }

        .offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__close {
            background-color: var(--theme5) !important;
        }

            .offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__close i {
                color: var(--black);
            }

        .offcanvas__info.style-5 .offcanvas__wrapper .social-icon a:hover {
            color: var(--theme5);
            border: 1px solid var(--theme5);
        }

        .offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
            margin-right: 20px;
        }

            .offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
                color: var(--theme5);
            }

        .offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__contact span {
            text-transform: initial;
        }

    .offcanvas__info.info-open {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__logo img {
        width: 130px;
    }
}

.offcanvas__wrapper .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    cursor: pointer;
}

    .offcanvas__wrapper .offcanvas__close i {
        color: var(--white);
    }

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .social-icon {
    margin-top: 40px;
    gap: 16px;
    display: flex;
    align-items: center;
}

    .offcanvas__wrapper .social-icon a {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 100px;
        border: 1px solid #E6E8EB;
        background: transparent;
        text-align: center;
        font-size: 18px;
    }

        .offcanvas__wrapper .social-icon a i {
            -webkit-transition: all 900ms ease;
            transition: all 900ms ease;
        }

        .offcanvas__wrapper .social-icon a:hover {
            color: var(--theme);
            border: 1px solid var(--theme);
        }

            .offcanvas__wrapper .social-icon a:hover i {
                -webkit-transform: rotateY(360deg);
                transform: rotateY(360deg);
            }

.offcanvas__wrapper .offcanvas__contact {
    margin-top: 0;
}

    .offcanvas__wrapper .offcanvas__contact h4 {
        font-size: 26px;
    }

    .offcanvas__wrapper .offcanvas__contact ul {
        margin-top: 30px;
    }

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__contact ul {
        display: none;
    }
}

.offcanvas__wrapper .offcanvas__contact ul li {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__contact ul li {
        font-size: 14px;
    }
}

.offcanvas__wrapper .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__contact ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.offcanvas__wrapper .offcanvas__contact ul li a {
    color: var(--header);
}

.offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

    .offcanvas__wrapper .offcanvas__contact ul li .offcanvas__contact-icon i {
        color: var(--theme);
    }

.offcanvas__wrapper .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 20px 40px;
    text-transform: capitalize !important;
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 99999;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

    .offcanvas__overlay.overlay-open {
        opacity: 0.8;
        visibility: visible;
    }

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 0 0 20px 20px;
}

    .breadcrumb-wrapper .page-heading {
        position: relative;
        padding: 200px 0 120px;
        z-index: 9;
        text-align: center;
    }

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 120px;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 72px;
    position: relative;
    text-transform: capitalize;
    z-index: 9;
    font-weight: 500;
    letter-spacing: -2px;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 50px;
    }
}

@media (max-width: 470px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 40px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
}

    .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
        color: var(--white);
        transition: all 0.4s ease-in-out;
    }

        .breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
            color: var(--theme);
            margin-right: 9px;
        }

        .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
            color: var(--theme);
            opacity: 1;
        }

        .breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
            color: var(--theme);
            margin-right: 5px;
        }

    .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
        color: var(--white);
    }

.error-items {
    text-align: center;
    position: relative;
}

    .error-items .error-image img {
        width: 100%;
        height: 100%;
    }

    .error-items h2 {
        font-size: 72px;
        font-weight: 500;
        letter-spacing: -2px;
        margin-bottom: 15px;
    }

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 30px;
    }
}

.error-items p {
    max-width: 722px;
    margin: 0 auto 40px;
}

@media (max-width: 767px) {
    .error-items p {
        margin-bottom: 30px;
    }
}

.footer-area {
    background-color: var(--bg2);
    margin: 0 30px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

@media (max-width: 1399px) {
    .footer-area {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.footer-area.footer-area-3 {
    background-color: var(--header3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

    .footer-area.footer-area-3::before {
        position: absolute;
        top: -16%;
        right: -17%;
        content: "";
        width: 610px;
        height: 610px;
        border-radius: 50%;
        border: 100px solid var(--theme3);
        z-index: -1;
    }

@media (max-width: 1899px) {
    .footer-area.footer-area-3::before {
        top: -35%;
        right: -20%;
    }
}

@media (max-width: 1600px) {
    .footer-area.footer-area-3::before {
        top: -30%;
        right: -26%;
    }
}

@media (max-width: 1399px) {
    .footer-area.footer-area-3::before {
        display: none;
    }
}

.footer-area.footer-area-3 .footer-lets-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .footer-area.footer-area-3 .footer-lets-text {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .footer-area.footer-area-3 .footer-lets-text {
        padding-bottom: 80px;
    }
}

.footer-area.footer-area-3 .footer-lets-text .lets-title {
    position: relative;
    max-width: 650px;
}

    .footer-area.footer-area-3 .footer-lets-text .lets-title .gt-theme-btn-main {
        position: absolute;
        bottom: 13px;
        right: 0;
    }

@media (max-width: 1199px) {
    .footer-area.footer-area-3 .footer-lets-text .lets-title .gt-theme-btn-main {
        position: static;
        margin-top: 30px;
    }
}

.footer-area.footer-area-3 .footer-lets-text h2 {
    color: var(--white);
    font-size: 110.859px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3.079px;
}

@media (max-width: 1199px) {
    .footer-area.footer-area-3 .footer-lets-text h2 {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .footer-area.footer-area-3 .footer-lets-text h2 {
        font-size: 75px;
    }

        .footer-area.footer-area-3 .footer-lets-text h2 br {
            display: none;
        }
}

@media (max-width: 575px) {
    .footer-area.footer-area-3 .footer-lets-text h2 {
        font-size: 55px;
    }
}

.footer-area.footer-area-3 .footer-lets-text p {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 155.556%;
    letter-spacing: -1px;
    max-width: 400px;
    padding-right: 130px;
}

@media (max-width: 1399px) {
    .footer-area.footer-area-3 .footer-lets-text p {
        padding-right: 0;
    }
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li {
    transition: all 0.4s ease-in-out;
}

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li a {
        color: rgba(255, 255, 255, 0.75);
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
        margin-left: 5px;
    }

        .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
            color: var(--theme3);
        }

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 h3 {
        font-size: 26px;
    }
}

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form {
    position: relative;
    margin-top: 25px;
}

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form input {
        width: 100%;
        border: none;
        background-color: var(--white);
        padding: 22px 20px;
        border-radius: 8px;
        line-height: 1;
        color: var(--header3);
    }

        .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form input::placeholder {
            color: var(--header3);
        }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 form .email-btn {
        color: var(--theme3);
        transition: all 0.4s ease-in-out;
        position: absolute;
        top: 6px;
        right: 18px;
        bottom: 6px;
    }

.footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: var(--white);
    margin-top: 20px;
}

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .box {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        border-radius: 4px;
        border: 2px solid #cbd5e1;
        display: inline-grid;
        place-items: center;
        transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
        background: var(--white);
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .check {
        width: 14px;
        height: 14px;
        transform: scale(0);
        transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
        color: var(--white);
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:checked + .box {
        background: var(--theme3);
        border-color: var(--theme3);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

        .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:checked + .box .check {
            transform: scale(1);
        }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox input:focus + .box {
        box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
        border-color: var(--theme3);
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox:active .box {
        transform: scale(0.98);
    }

    .footer-area.footer-area-3 .footer-widget-wrapper .footer-widget-items .footer-form-3 .sq-checkbox .label-text {
        line-height: 1;
    }

.footer-area.style-footer-area-4 {
    margin: 0;
    border-radius: 0;
    padding: 0 !important;
}

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .widget-head h3 {
        color: var(--header4) !important;
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li {
        transition: all 0.4s ease-in-out;
    }

        .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
            margin-bottom: 15px;
        }

        .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li a {
            color: rgba(0, 0, 0, 0.7);
        }

        .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
            margin-left: 5px;
        }

            .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
                color: var(--theme4);
            }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 h3 {
        color: var(--header4);
        font-size: 32px;
        font-weight: 600;
        letter-spacing: -1px;
        text-transform: capitalize;
    }

@media (max-width: 575px) {
    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 h3 {
        font-size: 26px;
    }
}

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form {
    position: relative;
    margin-top: 25px;
}

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form input {
        width: 100%;
        border: none;
        background-color: var(--white);
        padding: 22px 20px;
        border-radius: 0;
        line-height: 1;
        border: 1px solid var(--header4);
        color: var(--header3);
    }

        .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form input::placeholder {
            color: var(--header4);
        }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 form .email-btn {
        color: var(--theme4);
        transition: all 0.4s ease-in-out;
        position: absolute;
        top: 6px;
        right: 18px;
        bottom: 6px;
    }

.footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: var(--header4);
    margin-top: 20px;
}

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .box {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        border-radius: 4px;
        border: 2px solid #cbd5e1;
        display: inline-grid;
        place-items: center;
        transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
        background: var(--white);
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .check {
        width: 14px;
        height: 14px;
        transform: scale(0);
        transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
        color: var(--white);
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked + .box {
        background: var(--theme4);
        border-color: var(--theme4);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

        .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked + .box .check {
            transform: scale(1);
        }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox input:focus + .box {
        box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
        border-color: var(--theme4);
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox:active .box {
        transform: scale(0.98);
    }

    .footer-area.style-footer-area-4 .footer-widget-wrapper .footer-form-3 .sq-checkbox .label-text {
        line-height: 1;
    }

.footer-area.style-footer-area-4 .footer-content p {
    color: var(--header4) !important;
}

.footer-area.style-footer-area-4 .footer-content .social-icon {
    gap: 8px;
    margin-top: 30px;
}

    .footer-area.style-footer-area-4 .footer-content .social-icon a {
        display: inline-block;
        width: 32px;
        height: 32px;
        line-height: 32px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.4);
        color: var(--white);
        text-align: center;
    }

        .footer-area.style-footer-area-4 .footer-content .social-icon a:hover {
            background-color: var(--theme4);
        }

.footer-section {
    padding-bottom: 30px;
}

.footer-widget-wrapper {
    padding: 70px 0 100px;
}

@media (max-width: 991px) {
    .footer-widget-wrapper {
        padding: 50px 0 80px;
    }
}

.footer-widget-wrapper .footer-widget-items {
    margin-top: 30px;
}

    .footer-widget-wrapper .footer-widget-items .widget-head {
        margin-bottom: 30px;
    }

        .footer-widget-wrapper .footer-widget-items .widget-head h3 {
            font-size: 20px;
            font-weight: 500;
            color: var(--white);
        }

    .footer-widget-wrapper .footer-widget-items .footer-content {
        max-width: 310px;
    }

        .footer-widget-wrapper .footer-widget-items .footer-content p {
            color: #F2F5F7;
            font-size: 16px;
            line-height: 162.5%;
        }

        .footer-widget-wrapper .footer-widget-items .footer-content .footer-btn {
            display: inline-block;
            height: 50px;
            line-height: 50px;
            border-radius: 70px;
            border: 1px solid #3D4857;
            background: transparent;
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            font-family: "Inter", sans-serif;
            padding: 0 30px;
            padding-left: 7px;
            margin-top: 30px;
        }

            .footer-widget-wrapper .footer-widget-items .footer-content .footer-btn .icon {
                width: 36px;
                height: 36px;
                line-height: 36px;
                background-color: var(--theme);
                color: var(--white);
                border-radius: 50%;
                display: inline-block;
                text-align: center;
                margin-right: 15px;
                transition: all 0.4s ease-in-out;
            }

            .footer-widget-wrapper .footer-widget-items .footer-content .footer-btn:hover {
                background-color: var(--theme);
                border: 1px solid var(--theme);
            }

                .footer-widget-wrapper .footer-widget-items .footer-content .footer-btn:hover .icon {
                    background-color: var(--header);
                }

    .footer-widget-wrapper .footer-widget-items .gt-list-area li {
        transition: all 0.4s ease-in-out;
    }

        .footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
            margin-bottom: 15px;
        }

        .footer-widget-wrapper .footer-widget-items .gt-list-area li a {
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
            margin-left: 5px;
        }

            .footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
                color: var(--theme);
            }

    .footer-widget-wrapper .footer-widget-items .contact-list li {
        color: rgba(255, 255, 255, 0.75);
        font-size: 16px;
        font-weight: 500;
        line-height: 162.5%;
        font-family: "Inter", sans-serif;
        transition: all 0.4s ease-in-out;
    }

        .footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
            margin-bottom: 15px;
        }

        .footer-widget-wrapper .footer-widget-items .contact-list li:hover {
            color: var(--theme);
        }

        .footer-widget-wrapper .footer-widget-items .contact-list li a {
            color: rgba(255, 255, 255, 0.75);
        }

            .footer-widget-wrapper .footer-widget-items .contact-list li a:hover {
                color: var(--theme);
            }

.footer-widget-wrapper.style-2 .footer-widget-items .widget-head h3 {
    color: var(--header2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content p {
    color: var(--header2);
}

.footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
}

    .footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-radius: 50%;
        background: rgba(41, 15, 28, 0.35);
        color: var(--white);
        font-size: 14px;
    }

        .footer-widget-wrapper.style-2 .footer-widget-items .footer-content .social-icon a:hover {
            background-color: var(--theme2);
        }

.footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li {
    transition: all 0.4s ease-in-out;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

    .footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li a {
        color: rgba(41, 15, 28, 0.7);
    }

    .footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:hover {
        margin-left: 5px;
    }

        .footer-widget-wrapper.style-2 .footer-widget-items .gt-list-area li:hover a {
            color: var(--theme2);
        }

.footer-widget-wrapper.style-2 .footer-widget-items .contact-list li {
    color: rgba(41, 15, 28, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    font-family: "Inter", sans-serif;
}

    .footer-widget-wrapper.style-2 .footer-widget-items .contact-list li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-widget-wrapper.style-2 .footer-widget-items .contact-list li a {
        color: rgba(41, 15, 28, 0.7);
    }

.footer-bottom {
    border-top: 1px solid rgba(61, 72, 87, 0.6);
    padding: 25px 0;
}

    .footer-bottom.style-bottom-4 {
        border-top: 1px solid #DFDCD2;
    }

        .footer-bottom.style-bottom-4 p {
            color: var(--header4) !important;
        }

            .footer-bottom.style-bottom-4 p b {
                color: var(--theme4) !important;
            }

        .footer-bottom.style-bottom-4 .footer-list {
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .footer-bottom.style-bottom-4 .footer-list li a {
                color: var(--header4) !important;
            }

                .footer-bottom.style-bottom-4 .footer-list li a:hover {
                    color: var(--theme4) !important;
                }

    .footer-bottom .footer-bottom-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 991px) {
    .footer-bottom .footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

.footer-bottom .footer-bottom-wrapper p {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

    .footer-bottom .footer-bottom-wrapper p b {
        color: var(--theme);
    }

.footer-bottom .footer-bottom-wrapper .social-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-bottom .footer-bottom-wrapper .social-icon a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        border-radius: 50%;
        background: rgba(61, 72, 87, 0.5);
        color: var(--white);
        font-size: 14px;
    }

        .footer-bottom .footer-bottom-wrapper .social-icon a:hover {
            background-color: var(--theme);
        }

.footer-bottom .footer-bottom-wrapper .footer-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-bottom .footer-bottom-wrapper .footer-list li {
        font-size: 16px;
        font-weight: 500;
        font-family: "Inter", sans-serif;
    }

        .footer-bottom .footer-bottom-wrapper .footer-list li a {
            color: rgba(255, 255, 255, 0.75);
        }

            .footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
                color: var(--theme);
            }

.footer-bottom.footer-bottom-2 {
    border-top: 1px solid rgba(41, 15, 28, 0.1);
}

    .footer-bottom.footer-bottom-2 p {
        color: var(--header2);
    }

        .footer-bottom.footer-bottom-2 p b {
            color: var(--theme2);
        }

    .footer-bottom.footer-bottom-2 .footer-list li {
        font-size: 16px;
        font-weight: 500;
    }

        .footer-bottom.footer-bottom-2 .footer-list li a {
            color: rgba(41, 15, 28, 0.7);
        }

            .footer-bottom.footer-bottom-2 .footer-list li a:hover {
                color: var(--theme2);
            }

.footer-bottom.style-3 p b {
    color: var(--theme3);
}

.footer-bottom.style-3 .footer-list li a:hover {
    color: var(--theme3);
}

.footer-widget-wrapper-5 {
    position: relative;
    z-index: 9;
    padding: 120px 0 90px;
}

@media (max-width: 991px) {
    .footer-widget-wrapper-5 {
        padding: 80px 0 80px;
    }
}

.footer-widget-wrapper-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme6);
    z-index: -1;
    width: 50%;
    clip-path: polygon(50% 0%, 100% 0, 100% 91%, 94% 100%, 0 100%, 0% 60%, 0 0);
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5::before {
        display: none;
    }
}

.footer-widget-wrapper-5 .footer-left-item {
    overflow: hidden;
    position: relative;
    z-index: 99;
}

@media (max-width: 991px) {
    .footer-widget-wrapper-5 .footer-left-item {
        margin-bottom: 40px;
    }
}

.footer-widget-wrapper-5 .footer-left-item h2 {
    color: var(--header4);
    font-size: 48px;
    font-weight: 600;
    line-height: 120.833%;
    letter-spacing: -2px;
    max-width: 590px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5 .footer-left-item h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .footer-widget-wrapper-5 .footer-left-item h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .footer-widget-wrapper-5 .footer-left-item h2 {
        font-size: 34px;
    }
}

@media (max-width: 470px) {
    .footer-widget-wrapper-5 .footer-left-item h2 {
        font-size: 28px;
    }
}

.footer-widget-wrapper-5 .footer-left-item form {
    position: relative;
    margin-top: 25px;
    max-width: 580px;
    width: 100%;
}

    .footer-widget-wrapper-5 .footer-left-item form input {
        width: 100%;
        border: none;
        background-color: var(--white);
        padding: 22px 30px;
        border-radius: 0;
        line-height: 1;
        color: var(--text);
    }

        .footer-widget-wrapper-5 .footer-left-item form input::placeholder {
            color: var(--text);
        }

    .footer-widget-wrapper-5 .footer-left-item form .email-btn {
        background: var(--theme5);
        width: 52px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        border-radius: 0;
        color: var(--header4);
        transition: all 0.4s ease-in-out;
        position: absolute;
        top: 6px;
        right: 6px;
        bottom: 6px;
    }

        .footer-widget-wrapper-5 .footer-left-item form .email-btn:hover {
            background-color: var(--theme);
        }

.footer-widget-wrapper-5 .footer-left-item ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 135px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5 .footer-left-item ul {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.footer-widget-wrapper-5 .footer-left-item ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--header4);
    font-family: "Inter", sans-serif;
}

    .footer-widget-wrapper-5 .footer-left-item ul li a {
        color: var(--header4);
    }

.footer-widget-wrapper-5 .footer-right-item {
    padding-left: 65px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5 .footer-right-item {
        padding-left: 0;
    }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 75px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5 .footer-right-item .footer-header-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item::before {
    position: absolute;
    bottom: 0;
    left: -78px;
    right: 0;
    content: "";
    width: 1000%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item p {
    color: var(--header4);
    max-width: 270px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head {
    color: var(--header4);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li {
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

    .footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li a {
        color: var(--header4);
    }

    .footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover {
        margin-left: 5px;
    }

        .footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover a {
            color: var(--header4);
        }

.footer-widget-wrapper-5 .footer-right-item .social-icon {
    gap: 6px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-5 .footer-right-item .social-icon {
        display: flex !important;
    }
}

.footer-widget-wrapper-5 .footer-right-item .social-icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header4);
    color: var(--white);
}

    .footer-widget-wrapper-5 .footer-right-item .social-icon a:hover {
        background-color: var(--theme5);
        color: var(--header4);
    }

.footer-bottom-5 {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .footer-bottom-5 .footer-bottom-wrapper-5 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px 0;
    }

@media (max-width: 767px) {
    .footer-bottom-5 .footer-bottom-wrapper-5 {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

.footer-bottom-5 .footer-bottom-wrapper-5 p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--header4);
}

    .footer-bottom-5 .footer-bottom-wrapper-5 p b {
        color: var(--header4);
        font-weight: 500;
    }

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li {
        font-size: 16px;
        font-weight: 500;
    }

        .footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li .dots {
            width: 5px;
            height: 5px;
            border-radius: 5px;
            background-color: var(--header4);
            display: inline-block;
        }

        .footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a {
            color: var(--header4);
        }

            .footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a:hover {
                color: var(--theme2);
            }

.footer-section-3 {
    padding-bottom: 100px;
}

@media (max-width: 1399px) {
    .footer-section-3 {
        padding-bottom: 0;
    }
}

.footer-section-3 .footer-area-3 {
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }

        .section-title br {
            display: none;
        }
}

.section-title .sub-title {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

    .section-title .sub-title img {
        line-height: 1;
        margin-right: 5px;
        margin-top: -3px;
    }

.section-title h2 {
    color: var(--header);
}

.section-title.style-2 .sub-title {
    color: var(--theme2);
}

.section-title.style-2 h2 {
    color: var(--header2);
}

    .section-title.style-2 h2 span {
        color: var(--theme2);
        text-decoration: underline;
        border-bottom: 4px solid var(--theme2);
    }

.section-title.style-3 .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    border-radius: 50px;
    color: var(--theme3);
    text-transform: uppercase;
    background-color: var(--bg4);
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
}

.section-title.style-3 h2 {
    font-weight: 600;
    color: var(--header3);
}

.section-title.style-4 .sub-title {
    color: var(--theme4);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title.style-4 h2 {
    font-weight: 600;
    color: var(--header4);
}

.section-title.style-5 .sub-title {
    color: var(--header4);
    background-color: var(--theme6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.42px;
    text-transform: uppercase;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 12px;
    border-radius: 18px;
}

.section-title.style-5 h2 {
    color: var(--header4);
    font-weight: 600;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section-title-area {
        margin-bottom: 0;
    }

        .section-title-area br {
            display: none;
        }
}

.section-title-area .section-title {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.section-title-2 {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-title-2 {
        margin-bottom: 0;
    }

        .section-title-2 br {
            display: none;
        }
}

.section-title-2 h6 {
    border-radius: 6px;
    background: rgba(191, 247, 71, 0.1);
    display: inline-block;
    padding: 8px 15px;
    line-height: 1;
    color: var(--theme);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Public Sans", sans-serif;
    margin-bottom: 24px;
}

    .section-title-2 h6 img {
        margin-right: 7px;
    }

.section-title-2 h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 128%;
    text-transform: uppercase;
}

@media (max-width: 1399px) {
    .section-title-2 h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .section-title-2 h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-title-2 h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .section-title-2 h2 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .section-title-2 h2 {
        font-size: 34px;
    }
}

.section-title-2 h2 span {
    color: var(--theme);
}

.section-title-2 .prtoject-title {
    font-size: 200px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1199px) {
    .section-title-2 .prtoject-title {
        font-size: 150px;
    }
}

@media (max-width: 575px) {
    .section-title-2 .prtoject-title {
        font-size: 140px;
    }
}

@media (max-width: 470px) {
    .section-title-2 .prtoject-title {
        font-size: 100px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

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

.section-bg-2 {
    background-color: var(--bg2);
}

.section-bg-3 {
    background-color: var(--bg3);
}

.section-bg-4 {
    background-color: var(--bg4);
}

.section-bg-5 {
    background-color: var(--bg6);
}

.section-bg-6 {
    background-color: var(--bg5);
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

.section-padding-2 {
    padding: 60px 0;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
    padding: 130px 0 0;
    position: relative;
    z-index: 9;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 1399px) {
    .hero-1 {
        padding-top: 170px;
    }
}

@media (max-width: 767px) {
    .hero-1 {
        padding-top: 210px;
    }
}

.hero-1 .brevon-text {
    position: absolute;
    right: 0;
    opacity: 0.2;
    top: 20%;
}

@media (max-width: 1199px) {
    .hero-1 .brevon-text {
        display: none;
    }
}

.hero-1 .light-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.hero-1 .hero-content h6 {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

    .hero-1 .hero-content h6 span {
        background-color: var(--theme);
        color: var(--white);
        border-radius: 20px;
        height: 23px;
        display: inline-block;
        line-height: 23px;
        padding: 0 10px;
        margin-right: 10px;
    }

.hero-1 .hero-content h1 {
    color: var(--white);
    margin-top: 25px;
    line-height: 110%;
}

.hero-1 .hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content p {
        line-height: 150%;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content p {
        font-size: 16px;
    }
}

.hero-1 .hero-content .theme-btn {
    margin-top: 30px;
}

.hero-1 .hero-content .hero-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 120px;
}

@media (max-width: 767px) {
    .hero-1 .hero-content .hero-info {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.hero-1 .hero-content .hero-info .info-content h3 {
    color: var(--white);
    font-size: 38px;
    font-weight: 500;
}

.hero-1 .hero-content .hero-info .info-content p {
    margin-top: 0;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.75;
}

.hero-1 .hero-image {
    position: relative;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image {
        margin-left: -130px;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }

        .hero-1 .hero-image img {
            width: 100%;
            height: 100%;
        }
}

.hero-1 .hero-image .box-1 {
    position: absolute;
    top: 46%;
    left: 11%;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image .box-1 {
        display: none;
    }
}

.hero-1 .hero-image .box-2 {
    position: absolute;
    right: 0;
    bottom: 110px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image .box-2 {
        display: none;
    }
}

.hero-2 {
    padding: 250px 0 30px;
}

    .hero-2 .hero-content {
        text-align: center;
    }

        .hero-2 .hero-content h6 {
            color: var(--header2);
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
            border-radius: 133.302px;
            border: 1.025px solid #EBE6E8;
            background: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 3px;
            padding-left: 15px;
            margin-bottom: 15px;
        }

@media (max-width: 470px) {
    .hero-2 .hero-content h6 {
        font-size: 12px;
    }
}

.hero-2 .hero-content h1 {
    color: var(--header2);
    font-size: 76px;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: -2px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content h1 br {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-2 .hero-content h1 {
        font-size: 60px;
        line-height: 130% !important;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 470px) {
    .hero-2 .hero-content h1 {
        font-size: 34px;
    }
}

.hero-2 .hero-content p {
    color: var(--header2);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    max-width: 600px;
    margin: 20px auto 30px;
}

@media (max-width: 767px) {
    .hero-2 .hero-content p {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content p {
        font-size: 16px;
    }
}

.hero-2 .hero-banner-items {
    margin: 0 30px;
}

.hero-2 .hero-image-items {
    position: relative;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image-items {
        height: 550px;
    }

        .hero-2 .hero-image-items img {
            object-fit: cover;
        }
}

@media (max-width: 991px) {
    .hero-2 .hero-image-items {
        height: 450px;
    }
}

.hero-2 .hero-image-items img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.hero-2 .hero-image-items h3 {
    font-size: 32px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -1px;
    position: absolute;
    top: 60px;
    left: 50px;
}

@media (max-width: 1600px) {
    .hero-2 .hero-image-items h3 {
        left: 25px;
        top: 25px;
        right: 25px;
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-image-items h3 {
        font-size: 24px;
    }
}

.hero-2 .hero-image-items .content {
    position: absolute;
    bottom: 60px;
    left: 50px;
    right: 50px;
}

@media (max-width: 1600px) {
    .hero-2 .hero-image-items .content {
        left: 25px;
        bottom: 25px;
        right: 25px;
    }
}

.hero-2 .hero-image-items .content h2 {
    color: var(--white);
    font-size: 140.818px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1399px) {
    .hero-2 .hero-image-items .content h2 {
        font-size: 70px;
    }
}

.hero-2 .hero-image-items .content p {
    color: var(--white);
    font-size: 18px;
}

.hero-2 .hero-image-items .content .link-btn {
    color: var(--white);
    text-decoration: underline;
}

    .hero-2 .hero-image-items .content .link-btn:hover {
        color: var(--theme2);
    }

.hero-2 .hero-image-items .video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 15px;
    display: flex;
    align-items: center;
}

    .hero-2 .hero-image-items .video-text span {
        color: var(--white);
        font-size: 32px;
        font-weight: 600;
        letter-spacing: -1px;
        font-family: "Inter", sans-serif;
    }

    .hero-2 .hero-image-items .video-text .video-btn {
        display: inline-block;
        width: 90px;
        height: 90px;
        line-height: 90px;
        text-align: center;
        border-radius: 50%;
        border: 1px solid var(--white);
        color: var(--white);
    }

        .hero-2 .hero-image-items .video-text .video-btn:hover {
            background-color: var(--theme2);
            border: 1px solid var(--theme2);
        }

.hero-3 {
    background-color: var(--bg4);
    margin: 0 30px;
    border-radius: 16px;
    padding: 35px 0 90px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-top: 100px;
}

@media (max-width: 1399px) {
    .hero-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-top: 160px;
    }
}

@media (max-width: 991px) {
    .hero-3 {
        padding-bottom: 0;
        padding-top: 130px;
    }
}

.hero-3 .line-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.hero-3 .hero-content {
    margin-bottom: 120px;
    margin-top: 80px;
}

@media (max-width: 1199px) {
    .hero-3 .hero-content {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.hero-3 .hero-content h1 {
    font-size: 70px;
    font-weight: 600;
    color: var(--header3);
    line-height: 108.571%;
    letter-spacing: -2.075px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 60px;
        line-height: 130% !important;
    }
}

@media (max-width: 767px) {
    .hero-3 .hero-content h1 {
        font-size: 54px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 470px) {
    .hero-3 .hero-content h1 {
        font-size: 37px;
    }
}

.hero-3 .hero-content p {
    font-size: 18px;
    line-height: 155.556%;
    color: var(--header3);
    max-width: 630px;
}

@media (max-width: 767px) {
    .hero-3 .hero-content p {
        font-size: 16px;
    }
}

.hero-3 .hero-content .hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero-3 .hero-content .hero-btn {
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

.hero-3 .hero-content .hero-btn h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--header3);
}

    .hero-3 .hero-content .hero-btn h4 i {
        font-size: 18px;
        margin-right: 3px;
    }

    .hero-3 .hero-content .hero-btn h4 a {
        color: var(--header3);
    }

    .hero-3 .hero-content .hero-btn h4:hover {
        color: var(--theme3);
    }

        .hero-3 .hero-content .hero-btn h4:hover a {
            color: var(--theme3);
        }

.hero-3 .hero-image {
    position: relative;
    text-align: center;
}

    .hero-3 .hero-image img {
        margin-left: 30px;
    }

@media (max-width: 1199px) {
    .hero-3 .hero-image img {
        margin-left: 0;
        width: 100%;
    }
}

.hero-3 .hero-image .video-circle {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    background-color: var(--header3);
    text-align: center;
    z-index: 2;
    position: absolute;
    right: -40px;
    top: 20%;
}

@media (max-width: 1199px) {
    .hero-3 .hero-image .video-circle {
        display: none;
    }
}

.hero-3 .hero-image .video-circle .text-circle {
    animation: cir36 10s linear infinite;
}

.hero-3 .hero-image .video-circle .ripple::before, .hero-3 .hero-image .video-circle .ripple::after {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 0 rgba(5, 164, 191, 0.5);
}

.hero-3 .hero-image .video-circle .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme3);
    color: var(--white);
    text-align: center;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    z-index: 9;
}

    .hero-3 .hero-image .video-circle .video-btn:hover {
        background-color: var(--white);
        color: var(--header3);
    }

.hero-3 .hero-image .video-circle img {
    margin-left: 0;
}

.hero-3 .hero-image .grap-shape {
    position: absolute;
    bottom: -30px;
    left: -23%;
}

@media (max-width: 1199px) {
    .hero-3 .hero-image .grap-shape {
        display: none;
    }
}

.hero-3 .hero-image .vec-shape {
    position: absolute;
    top: 18%;
    left: -5%;
}

@media (max-width: 1199px) {
    .hero-3 .hero-image .vec-shape {
        display: none;
    }
}

.hero-3 .hero-image .vec-shape img {
    margin-left: 0;
}

.hero-3 .hero-image::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    content: "";
    width: 562px;
    height: 442px;
    box-shadow: 8px 16px 30px rgba(31, 41, 55, 0.07);
    background-color: var(--white);
    border-radius: 10px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .hero-3 .hero-image::before {
        display: none;
    }
}

.hero-4 {
    padding: 180px 0 0;
}

    .hero-4 .hero-content h1 {
        color: var(--header4);
        font-size: 122.704px;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -3.408px;
        text-transform: uppercase;
    }

@media (max-width: 1199px) {
    .hero-4 .hero-content h1 {
        letter-spacing: initial;
    }

        .hero-4 .hero-content h1 br {
            display: none;
        }
}

@media (max-width: 1399px) {
    .hero-4 .hero-content h1 {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .hero-4 .hero-content h1 {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .hero-4 .hero-content h1 {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .hero-4 .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 470px) {
    .hero-4 .hero-content h1 {
        font-size: 36px;
    }
}

.hero-4 .hero-content h1 .text {
    color: var(--theme4);
    opacity: 0.87;
    font-size: 136px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 .text {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 img {
        display: none;
    }
}

.hero-4 .hero-content .hero-bottom {
    margin-top: 60px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .hero-4 .hero-content .hero-bottom {
        flex-wrap: wrap;
        margin-top: 30px;
        gap: 30px;
        align-items: center;
    }
}

.hero-4 .hero-content .hero-bottom .social-icon {
    gap: 6px;
}

    .hero-4 .hero-content .hero-bottom .social-icon a {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--header4);
        color: var(--white);
    }

        .hero-4 .hero-content .hero-bottom .social-icon a:hover {
            background-color: var(--theme4);
        }

.hero-4 .hero-content .hero-bottom .content {
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--header4);
    max-width: 430px;
    padding-top: 30px;
}

@media (max-width: 575px) {
    .hero-4 .hero-content .hero-bottom .content {
        padding-top: 20px;
    }
}

.hero-4 .hero-content .hero-bottom .content p {
    color: var(--header4);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    max-width: 400px;
}

@media (max-width: 575px) {
    .hero-4 .hero-content .hero-bottom .content p {
        font-size: 16px;
    }
}

.hero-4 .hero-image {
    margin-top: 120px;
}

@media (max-width: 1399px) {
    .hero-4 .hero-image {
        height: 600px;
    }

        .hero-4 .hero-image img {
            object-fit: cover;
        }
}

@media (max-width: 1199px) {
    .hero-4 .hero-image {
        margin-top: 80px;
        height: 500px;
    }

        .hero-4 .hero-image img {
            object-fit: cover;
        }
}

@media (max-width: 991px) {
    .hero-4 .hero-image {
        margin-top: 50px;
        height: 600px;
    }

        .hero-4 .hero-image img {
            object-fit: cover;
        }
}

.hero-4 .hero-image img {
    width: 100%;
    height: 100%;
}

.hero-5 {
    background-color: var(--theme6);
    padding: 200px 0 60px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .hero-5 {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero-5 {
        padding-top: 150px;
    }
}

.hero-5 .hero-content h1 {
    font-size: 82px;
    font-weight: 600;
    color: var(--header4);
    line-height: 100%;
}

@media (max-width: 1399px) {
    .hero-5 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .hero-content h1 {
        font-size: 70px;
    }

        .hero-5 .hero-content h1 br {
            display: none;
        }
}

@media (max-width: 991px) {
    .hero-5 .hero-content h1 {
        font-size: 65px;
        line-height: 130% !important;
    }
}

@media (max-width: 767px) {
    .hero-5 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .hero-5 .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 470px) {
    .hero-5 .hero-content h1 {
        font-size: 40px;
    }
}

.hero-5 .hero-content p {
    color: var(--header4);
    font-size: 18px;
    line-height: 155.556%;
    max-width: 465px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hero-5 .hero-content p {
        font-size: 16px;
        margin-top: 25px;
    }
}

.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn {
    background-color: var(--white);
    color: var(--header);
}

.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn-arrow-left,
.hero-5 .hero-content .gt-theme-btn-main .gt-theme-btn-arrow-right {
    background-color: var(--white);
    color: var(--header);
}

.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn {
    background-color: var(--theme5);
}

.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.hero-5 .hero-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
    background-color: var(--theme5);
}

.hero-5 .hero-content .social-icon {
    gap: 6px;
    margin-top: 150px;
}

@media (max-width: 1199px) {
    .hero-5 .hero-content .social-icon {
        margin-top: 80px;
    }
}

@media (max-width: 991px) {
    .hero-5 .hero-content .social-icon {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .hero-5 .hero-content .social-icon {
        margin-top: 40px;
    }
}

.hero-5 .hero-content .social-icon span {
    font-size: 16px;
    font-weight: 500;
    color: var(--header4);
    font-family: "Inter", sans-serif;
    display: inline-block;
    margin-right: 5px;
}

.hero-5 .hero-content .social-icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: var(--header4);
    text-align: center;
    color: var(--theme6);
}

    .hero-5 .hero-content .social-icon a:hover {
        background-color: var(--theme5);
        color: var(--header4);
    }

.hero-5 .hero-image {
    position: absolute;
    right: 0;
    top: -10px;
    bottom: 0;
    max-width: 892px;
}

@media (max-width: 1199px) {
    .hero-5 .hero-image {
        position: relative;
        margin-top: 30px;
        left: initial;
        right: initial;
        bottom: initial;
        max-width: initial;
    }

        .hero-5 .hero-image img {
            width: 100%;
        }
}

.hero-5 .hero-image img {
    height: 900px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 1600px) {
    .hero-5 .hero-image img {
        max-width: 750px;
        height: 900px;
    }
}

@media (max-width: 1399px) {
    .hero-5 .hero-image img {
        max-width: 620px;
        height: 800px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .hero-image img {
        max-width: initial;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .hero-5 .hero-image img {
        height: 550px;
    }
}

.hero-5 .hero-image .hero-info {
    background: rgba(253, 252, 247, 0.08);
    backdrop-filter: blur(15px);
    padding: 35px 34px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    display: inline-block;
}

@media (max-width: 1399px) {
    .hero-5 .hero-image .hero-info {
        right: 0;
        left: initial;
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .hero-image .hero-info {
        padding: 22px;
        top: 0;
        bottom: initial;
        right: initial;
    }
}

.hero-5 .hero-image .hero-info img {
    width: initial;
    height: initial;
}

.hero-5 .hero-image .hero-info::before {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 20px;
    height: 20px;
    content: "";
    background-color: var(--theme5);
    z-index: 99;
}

@media (max-width: 1199px) {
    .hero-5 .hero-image .hero-info::before {
        display: none;
    }
}

.hero-5 .hero-image .hero-info span {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    font-family: "Inter", sans-serif;
    display: block;
    max-width: 270px;
    margin-top: 20px;
}

.hero-5 .hero-image .hero-counter {
    position: absolute;
    bottom: 0;
    left: -22%;
    z-index: 9;
    background-color: var(--theme5);
    padding: 34px 35px;
}

@media (max-width: 1399px) {
    .hero-5 .hero-image .hero-counter {
        left: -26%;
        padding: 28px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .hero-image .hero-counter {
        left: 0;
        padding: 28px;
    }
}

.hero-5 .hero-image .hero-counter h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--header4);
    margin-bottom: 40px;
}

.hero-5 .hero-image .hero-counter h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--header4);
}

.hero-5 .vec-shape {
    position: absolute;
    left: 37%;
    bottom: 25%;
    animation: rounded 5s linear infinite;
}

@media (max-width: 1199px) {
    .hero-5 .vec-shape {
        display: none;
    }
}

.hero-5 .scroll-down {
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 99;
    cursor: pointer;
}

@media (max-width: 1600px) {
    .hero-5 .scroll-down {
        left: 20px;
    }
}

@media (max-width: 1199px) {
    .hero-5 .scroll-down {
        display: none;
    }
}

.about-section {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .about-section {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.about-wrapper .about-image {
    border-radius: 16px;
    max-width: 730px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image {
        max-width: initial;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.about-wrapper .about-image:hover img {
    transform: scale(1.1) rotate(2deg);
}

@media (max-width: 1199px) {
    .about-wrapper .about-content {
        padding-bottom: 40px;
        margin-top: 10px;
    }
}

@media (max-width: 1600px) {
    .about-wrapper .about-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 1399px) {
    .about-wrapper .about-content h2 {
        font-size: 36px;
    }

        .about-wrapper .about-content h2 br {
            display: none;
        }
}

@media screen and (max-width: 1350px) {
    .about-wrapper .about-content h2 {
        font-size: 29px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .about-wrapper .about-content h2 {
        font-size: 33px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .about-wrapper .about-content h2 {
        font-size: 27px;
    }
}

.about-wrapper .about-content .theme-btn {
    margin-top: 30px;
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .theme-btn {
        margin-top: 22px;
    }
}

.about-wrapper .about-content .theme-btn .btn_inner::before {
    background-color: var(--theme);
}

.about-wrapper .about-content .about-conter-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-conter-items {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper .about-content .about-conter-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .about-conter-items {
        display: block;
    }
}

.about-wrapper .about-content .about-conter-items .counter-box {
    max-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-conter-items .counter-box {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .about-conter-items .counter-box {
        margin-bottom: 25px;
        max-width: initial;
    }
}

.about-wrapper .about-content .about-conter-items .counter-box h6 {
    font-size: 16px;
    font-weight: 600;
}

.about-wrapper .about-content .about-conter-items .counter-box h2 {
    font-size: 72px;
    font-weight: 500;
    color: var(--theme);
    margin-top: 50px;
    line-height: 1;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-conter-items .counter-box h2 {
        font-size: 60px;
        margin-top: 25px;
    }
}

.about-wrapper .about-content .about-conter-items .counter-box p {
    font-size: 18px;
    color: #1F2937;
    margin-top: 15px;
}

.about-wrapper .about-content .about-conter-items .counter-box.active {
    background-color: var(--theme);
}

    .about-wrapper .about-content .about-conter-items .counter-box.active h6 {
        color: var(--white);
    }

    .about-wrapper .about-content .about-conter-items .counter-box.active h2 {
        color: var(--white);
    }

    .about-wrapper .about-content .about-conter-items .counter-box.active p {
        color: var(--white);
    }

.about-wrapper .about-content .about-conter-items .about-vide-bg {
    position: relative;
    height: 270px;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .about-wrapper .about-content .about-conter-items .about-vide-bg {
        flex-basis: 100%;
        width: 100%;
        height: 450px;
    }
}

@media (max-width: 575px) {
    .about-wrapper .about-content .about-conter-items .about-vide-bg {
        height: 400px;
    }
}

.about-wrapper .about-content .about-conter-items .about-vide-bg img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.about-wrapper .about-content .about-conter-items .about-vide-bg .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

    .about-wrapper .about-content .about-conter-items .about-vide-bg .video-btn:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid var(--theme);
    }

.about-wrapper .about-content .about-conter-items .about-vide-bg:hover img {
    transform: scale(1.1) rotate(2deg);
}

.about-wrapper-2 .about-image-items .thumb {
    border-radius: 8px;
}

    .about-wrapper-2 .about-image-items .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

.about-wrapper-2 .about-image-items .content {
    padding: 35px 30px;
    border-radius: 8px;
    background-color: var(--bg3);
    margin-top: 30px;
}

@media (max-width: 470px) {
    .about-wrapper-2 .about-image-items .content {
        padding: 25px;
    }
}

.about-wrapper-2 .about-image-items .content h3, .about-wrapper-2 .about-image-items .content p {
    color: var(--header2);
}

.about-wrapper-2 .about-image-items .content p {
    margin-top: 10px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-image-items .content p {
        font-size: 16px;
    }
}

.about-wrapper-2 .about-content {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-2 .about-content h2 {
    font-size: 44px;
}

@media (max-width: 1199px) {
    .about-wrapper-2 .about-content h2 {
        font-size: 40px;
        line-height: 140%;
    }
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-content h2 {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-2 .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 470px) {
    .about-wrapper-2 .about-content h2 {
        font-size: 24px;
    }
}

.about-wrapper-2 .about-content .about-list-item {
    margin-top: 90px;
    margin-left: 100px;
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-content .about-list-item {
        margin-top: 30px;
        margin-left: 0;
    }
}

.about-wrapper-2 .about-content .about-list-item ul {
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-content .about-list-item ul {
        margin-top: 25px;
    }
}

.about-wrapper-2 .about-content .about-list-item ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--header2);
}

@media (max-width: 767px) {
    .about-wrapper-2 .about-content .about-list-item ul li {
        font-size: 16px;
    }
}

.about-wrapper-2 .about-content .about-list-item ul li:not(:last-child) {
    margin-bottom: 15px;
}

.about-wrapper-2 .about-content .about-list-item ul li i {
    font-size: 20px;
    color: var(--header2);
}

.about-section-2 {
    border-top: 1px solid #EBE6E8;
}

.about-wrapper-3 .about-conter-items .about-sub {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    border-radius: 50px;
    color: var(--theme3);
    text-transform: uppercase;
    background-color: var(--bg4);
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
}

.about-wrapper-3 .about-conter-items h2 {
    color: var(--header3);
    font-size: 215.467px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -13.99px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper-3 .about-conter-items h2 {
        font-size: 150px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-3 .about-conter-items h2 {
        font-size: 120px;
        letter-spacing: initial;
    }

        .about-wrapper-3 .about-conter-items h2 sup {
            top: 0 !important;
        }
}

.about-wrapper-3 .about-conter-items h2 sup {
    top: -1.1em;
    right: 30px;
    font-size: 92px;
}

.about-wrapper-3 .about-conter-items h3 {
    color: var(--header3);
    letter-spacing: -1.5px;
}

.about-wrapper-3 .about-content {
    font-weight: 600;
    color: var(--header3);
}

    .about-wrapper-3 .about-content .about-text {
        font-size: 18px;
        font-weight: 400;
        color: var(--header3);
        line-height: 155.556%;
        max-width: 700px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

@media (max-width: 1199px) {
    .about-wrapper-3 .about-content .about-text {
        font-size: 16px;
        margin-top: 25px;
    }
}

.about-wrapper-3 .about-image {
    margin-top: 60px;
    border-radius: 10px;
    position: relative;
}

@media (max-width: 1199px) {
    .about-wrapper-3 .about-image {
        height: 600px;
    }

        .about-wrapper-3 .about-image img {
            object-fit: cover !important;
        }
}

@media (max-width: 767px) {
    .about-wrapper-3 .about-image {
        margin-top: 30px;
    }
}

.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about-wrapper-3 .about-image .about-info {
    background-color: var(--white);
    border-radius: 7.667px;
    box-shadow: 0 3.833px 28.75px 0 rgba(31, 41, 55, 0.1);
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 30px;
}

    .about-wrapper-3 .about-image .about-info img {
        width: initial;
        height: initial;
    }

    .about-wrapper-3 .about-image .about-info h5 {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -1px;
        margin-top: 20px;
    }

.about-section-3 {
    position: relative;
    z-index: 9;
    margin: 0 30px;
}

@media (max-width: 1399px) {
    .about-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.about-section-3 .about-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    top: 65%;
    z-index: -1;
}

    .about-section-3 .about-line img {
        width: 100%;
    }

.about-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg4);
    top: 65%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: -1;
}

.about-wrapper-5 .about-left-items .about-thumb {
    height: 488px;
}

    .about-wrapper-5 .about-left-items .about-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-wrapper-5 .about-left-items .about-bottom-content {
    background: #FFFDF5;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .about-wrapper-5 .about-left-items .about-bottom-content {
        flex-wrap: wrap;
        padding: 30px;
    }
}

.about-wrapper-5 .about-left-items .about-bottom-content .about-counter {
    padding-top: 5px;
    padding-bottom: 10px;
}

    .about-wrapper-5 .about-left-items .about-bottom-content .about-counter .sub-text {
        background-color: var(--theme5);
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        color: var(--header4);
        padding: 5px 8px;
        line-height: 1;
        border-radius: 17px;
        margin-bottom: 45px;
    }

    .about-wrapper-5 .about-left-items .about-bottom-content .about-counter h2 {
        color: var(--header4);
        font-size: 48px;
        font-weight: 600;
    }

    .about-wrapper-5 .about-left-items .about-bottom-content .about-counter p {
        font-weight: 500;
        color: var(--header4);
        font-family: "Inter", sans-serif;
        font-size: 15px;
        opacity: 0.88;
    }

.about-wrapper-5 .about-left-items .about-bottom-content .about-line {
    width: 1px;
    height: 202px;
    background: #F0ECDF;
    display: inline-block;
}

@media (max-width: 575px) {
    .about-wrapper-5 .about-left-items .about-bottom-content .about-line {
        display: none;
    }
}

.about-wrapper-5 .about-left-items .about-bottom-content .content {
    max-width: 475px;
    padding-top: 5px;
    padding-bottom: 10px;
}

    .about-wrapper-5 .about-left-items .about-bottom-content .content p {
        color: var(--header4);
        line-height: 162.5%;
        margin-bottom: 30px;
        opacity: 0.88;
    }

@media (max-width: 1399px) {
    .about-wrapper-5 .about-left-items .about-bottom-content .content p {
        margin-bottom: 15px;
    }
}

.about-wrapper-5 .about-content .about-icon-wrap {
    background-color: #FFFDF5;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

    .about-wrapper-5 .about-content .about-icon-wrap::before {
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 1px;
        content: "";
        background: #F0ECDF;
        transform: translateX(-50%);
    }

@media (max-width: 767px) {
    .about-wrapper-5 .about-content .about-icon-wrap::before {
        display: none;
    }
}

.about-wrapper-5 .about-content .about-icon-wrap .about-icon-item {
    padding: 30px;
    transition: all 0.4s ease-in-out;
    width: 261px;
}

    .about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content {
        margin-top: 25px;
    }

        .about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content h3 {
            font-size: 20px;
            font-weight: 500;
            color: var(--header4);
            margin-bottom: 15px;
        }

        .about-wrapper-5 .about-content .about-icon-wrap .about-icon-item .content p {
            line-height: 162.5%;
            color: var(--header4);
            font-size: 15px;
        }

    .about-wrapper-5 .about-content .about-icon-wrap .about-icon-item.active {
        background-color: var(--theme5);
    }

        .about-wrapper-5 .about-content .about-icon-wrap .about-icon-item.active .icon img {
            -webkit-animation: gelatine 0.6s;
            animation: gelatine 0.6s;
        }

.about-wrapper-5 .about-content .award-items-box {
    padding: 34px 30px;
    background-color: var(--theme6);
}

@media (max-width: 1399px) {
    .about-wrapper-5 .about-content .award-items-box {
        padding: 18px 30px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-5 .about-content .award-items-box {
        height: 100%;
        padding: 34px 30px;
    }
}

.about-wrapper-5 .about-content .award-items-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--header4);
    font-family: "Inter", sans-serif;
    margin-top: 18px;
}

@media (max-width: 1399px) {
    .about-wrapper-5 .about-content .award-items-box p {
        font-size: 14px;
    }
}

.about-wrapper-5 .about-content .award-items-box:hover img {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.about-wrapper-5 .about-content .about-small-image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .about-inner-section .section-title-area {
        flex-wrap: wrap;
        justify-content: start;
    }
}

.about-inner-section .section-title-area .about-content {
    max-width: 420px;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .about-inner-section .section-title-area .about-content {
        margin-left: initial;
    }
}

.about-inner-section .section-title-area .about-content p {
    color: var(--header);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.about-inner-section .section-title-area .about-content .about-info {
    margin-top: 30px;
}

    .about-inner-section .section-title-area .about-content .about-info .client-image {
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about-inner-section .section-title-area .about-content .about-info .video-btn {
        display: inline-block;
        width: 57px;
        height: 57px;
        line-height: 57px;
        border-radius: 50%;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid var(--white);
        margin-left: -10px;
    }

    .about-inner-section .section-title-area .about-content .about-info span {
        color: var(--header);
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
        margin-left: 10px;
    }

.about-inner-section .about-inner-image {
    margin-top: 50px;
}

    .about-inner-section .about-inner-image .fix {
        border-radius: 12px;
    }

    .about-inner-section .about-inner-image img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

@media (max-width: 767px) {
    .about-inner-section .about-inner-image img {
        height: 550px;
        object-fit: cover;
    }
}

.about-inner-section .about-counter-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 99;
    padding: 0 30px;
}

    .about-inner-section .about-counter-wrapper .about-counter-item {
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
        padding: 30px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

        .about-inner-section .about-counter-wrapper .about-counter-item h6 {
            color: var(--header);
            font-family: "Inter", sans-serif;
            font-size: 16px;
            font-weight: 600;
        }

        .about-inner-section .about-counter-wrapper .about-counter-item h2 {
            font-size: 72px;
            font-weight: 500;
            color: var(--theme);
            margin-top: 50px;
        }

@media (max-width: 767px) {
    .about-inner-section .about-counter-wrapper .about-counter-item h2 {
        font-size: 50px;
        margin-top: 30px;
    }
}

.about-inner-section .about-counter-wrapper .about-counter-item p {
    font-size: 18px;
    font-weight: 400;
    color: var(--header);
    margin-top: 10px;
}

.actually-area {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .actually-area {
        height: initial;
        padding: 100px 0;
    }

        .actually-area br {
            display: none;
        }
}

.feature-box-items {
    margin-top: 30px;
    background-color: var(--bg);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

    .feature-box-items::before {
        position: absolute;
        content: "";
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0;
        -webkit-transform: scale(1, 0.3);
        transform: scale(1, 0.3);
        background-color: var(--theme);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
        border-radius: 10px;
    }

    .feature-box-items h6 {
        color: var(--text);
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -1px;
        margin-bottom: 25px;
    }

    .feature-box-items h3 {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .feature-box-items img {
        width: 64px;
    }

    .feature-box-items .feature-info-box {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 1399px) {
    .feature-box-items .feature-info-box {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }
}

.feature-box-items .feature-info-box ul {
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .feature-box-items .feature-info-box ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.feature-box-items .feature-info-box ul li {
    border-radius: 50px;
    border: 1px solid #E6E8EB;
    font-size: 16px;
    font-weight: 500;
    color: var(--header);
    font-family: "Inter", sans-serif;
    padding: 0 12px;
    height: 30px;
    line-height: 28px;
    transition: all 0.4s ease-in-out;
}

    .feature-box-items .feature-info-box ul li:hover {
        background-color: var(--theme);
        color: var(--white);
        border: 1px solid var(--theme);
    }

.feature-box-items .feature-info-box .icon {
    display: inline-block;
    width: 43px;
    height: 43px;
    line-height: 43px;
    border-radius: 50%;
    background-color: var(--header);
    text-align: center;
    color: var(--white);
}

    .feature-box-items .feature-info-box .icon:hover {
        background-color: var(--header) !important;
    }

.feature-box-items:hover h6, .feature-box-items:hover h3, .feature-box-items:hover p {
    color: var(--white);
}

    .feature-box-items:hover h3 a {
        color: var(--white);
    }

.feature-box-items:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.feature-box-items:hover .icon {
    background-color: var(--theme) !important;
}

.feature-wrapper {
    margin-right: -40%;
}

@media (max-width: 1600px) {
    .feature-wrapper {
        margin-right: -35%;
    }
}

@media (max-width: 1399px) {
    .feature-wrapper {
        margin-right: -55%;
    }
}

@media (max-width: 575px) {
    .feature-wrapper {
        margin-right: 0;
    }
}

.counter-feature-section {
    border-radius: 16px 16px 0 0;
    height: 700px !important;
    position: relative;
    overflow: hidden;
    padding-top: 150px !important;
}

@media (max-width: 991px) {
    .counter-feature-section {
        height: 790px !important;
        padding-top: 100px !important;
    }
}

.counter-feature-section-area {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 30px;
}

@media (max-width: 1399px) {
    .counter-feature-section-area {
        margin: 0;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.feature-counter-content h2 {
    color: var(--white);
    font-size: 72px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -2px;
}

@media (max-width: 1399px) {
    .feature-counter-content h2 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .feature-counter-content h2 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .feature-counter-content h2 {
        font-size: 60px;
        line-height: 120% !important;
    }
}

@media (max-width: 767px) {
    .feature-counter-content h2 {
        font-size: 55px;
    }
}

@media (max-width: 575px) {
    .feature-counter-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 470px) {
    .feature-counter-content h2 {
        font-size: 34px;
    }
}

.feature-counter-content p {
    color: var(--white);
    font-weight: 400;
    line-height: 160.556%;
    max-width: 570px;
    margin-top: 25px;
}

.feature-counter-content .gt-theme-btn-main {
    margin-top: 30px;
}

    .feature-counter-content .gt-theme-btn-main .gt-theme-btn-arrow-left, .feature-counter-content .gt-theme-btn-main .gt-theme-btn-arrow-right {
        background-color: var(--white);
        color: var(--header2);
    }

    .feature-counter-content .gt-theme-btn-main .gt-theme-btn {
        background-color: var(--white);
        color: var(--header2);
    }

    .feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left, .feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
        background-color: var(--theme2);
        color: var(--white);
    }

    .feature-counter-content .gt-theme-btn-main:hover .gt-theme-btn {
        background-color: var(--theme2);
        color: var(--white);
    }

.feature-counter-box-items {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 60px 60px;
}

@media (max-width: 1399px) {
    .feature-counter-box-items {
        padding: 40px 30px;
        max-width: 400px;
    }
}

.feature-counter-box-items h2 {
    color: var(--white);
    font-size: 196.501px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -10px;
    font-family: "Public Sans", sans-serif;
}

@media (max-width: 1399px) {
    .feature-counter-box-items h2 {
        font-size: 100px;
    }
}

.feature-counter-box-items h2 sup {
    font-size: 50px;
    line-height: 1;
    top: -2.2em;
    right: 30px;
}

@media (max-width: 1399px) {
    .feature-counter-box-items h2 sup {
        font-size: 50px;
        line-height: 1;
        top: -1em;
        right: 0px;
    }
}

.feature-counter-box-items p {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1px;
    font-family: "Inter", sans-serif;
}

@media (max-width: 991px) {
    .feature-counter-box-items p {
        font-size: 16px;
        line-height: 160%;
    }
}

@media (max-width: 470px) {
    .feature-counter-box-items p {
        font-size: 15px;
    }
}

.choose-us-wrapper-2 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .choose-us-wrapper-2 {
        margin-top: 30px;
    }
}

.choose-us-wrapper-2 .choose-us-wrap-item {
    display: flex;
    gap: 70px;
}

@media (max-width: 1399px) {
    .choose-us-wrapper-2 .choose-us-wrap-item {
        gap: 34px;
    }
}

@media (max-width: 1199px) {
    .choose-us-wrapper-2 .choose-us-wrap-item {
        gap: 20px;
    }
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
    background-color: var(--bg3);
    max-width: 535px;
    padding: 45px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 9;
}

    .choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content::before {
        position: absolute;
        content: "";
        inset: 0;
        opacity: 0;
        transform: scale(1, 0.3);
        background-color: var(--white);
        transition: all 500ms ease;
        border-radius: 8px;
        box-shadow: 0 4px 30px rgba(41, 15, 28, 0.1);
        z-index: -1;
        border-radius: 12px;
    }

@media (max-width: 1199px) {
    .choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
        padding: 28px;
    }
}

@media (max-width: 991px) {
    .choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content {
        max-width: initial;
    }
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content h3 {
    color: var(--header2);
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content p {
    color: var(--header2);
    margin-top: 15px;
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.choose-us-wrapper-2 .choose-us-wrap-item .left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .choose-us-wrapper-2 .choose-us-wrap-item .left {
        display: none;
    }
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number {
    width: 60px;
    height: 60px;
    background: var(--header2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    flex: 0 0 auto;
    font-family: "Inter", sans-serif;
    position: relative;
    z-index: 9;
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number-line {
    width: 8px;
    height: 100%;
    border: 1px solid var(--bg3);
    border-top: none;
    position: relative;
    overflow: hidden;
    background-color: var(--bg3);
}

.choose-us-wrapper-2 .choose-us-wrap-item .left .number-line-fill {
    width: 100%;
    height: 100%;
    background: var(--theme2);
    border-radius: 0;
    transform: scaleY(0);
    transform-origin: top;
}

.choose-us-wrapper-2 .choose-us-image {
    margin-left: -30px;
    height: 723px;
    border-radius: 14px;
}

@media (max-width: 1399px) {
    .choose-us-wrapper-2 .choose-us-image {
        margin-left: 0;
    }
}

.choose-us-wrapper-2 .choose-us-image img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.choose-us-wrapper-3 .choose-us-image {
    position: relative;
    border-radius: 12px;
}

    .choose-us-wrapper-3 .choose-us-image img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .choose-us-wrapper-3 .choose-us-image .grap-shape {
        position: absolute;
        bottom: 30px;
        right: 30px;
    }

.choose-us-wrapper-3 .choose-us-content {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .choose-us-wrapper-3 .choose-us-content {
        margin-left: 0;
    }
}

.choose-us-wrapper-3 .choose-us-content .choose-list {
    margin-top: 30px;
}

    .choose-us-wrapper-3 .choose-us-content .choose-list li {
        display: flex;
        gap: 15px;
        padding: 26px 30px;
        border-bottom: 1px solid #E6EAEB;
        transition: all 0.4s ease-in-out;
    }

@media (max-width: 575px) {
    .choose-us-wrapper-3 .choose-us-content .choose-list li {
        flex-wrap: wrap;
    }
}

.choose-us-wrapper-3 .choose-us-content .choose-list li .icon {
    max-width: 80px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header3);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .choose-us-wrapper-3 .choose-us-content .choose-list li .icon {
        height: 70px;
        max-width: 70px;
        line-height: 70px;
    }

        .choose-us-wrapper-3 .choose-us-content .choose-list li .icon img {
            width: 30px;
        }
}

.choose-us-wrapper-3 .choose-us-content .choose-list li .content h3 {
    color: var(--header3);
}

.choose-us-wrapper-3 .choose-us-content .choose-list li .content p {
    color: var(--header3);
    margin-top: 10px;
    max-width: 415px;
}

.choose-us-wrapper-3 .choose-us-content .choose-list li.active {
    background-color: var(--white);
    box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
    border-radius: 8px;
}

    .choose-us-wrapper-3 .choose-us-content .choose-list li.active .icon {
        background-color: var(--theme3);
    }

        .choose-us-wrapper-3 .choose-us-content .choose-list li.active .icon img {
            -webkit-animation: gelatine 0.6s;
            animation: gelatine 0.6s;
        }

.feature-box-style-3 {
    margin-top: 30px;
    border: 1px solid #F0ECDF;
    padding: 40px 30px;
    position: relative;
    z-index: 9;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .feature-box-style-3 {
        padding: 30px 28px;
    }
}

.feature-box-style-3::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transform: scale(1, 0.3);
    transform: scale(1, 0.3);
    background-color: var(--bg6);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.feature-box-style-3 .icon {
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme6);
    transition: all 0.4s ease-in-out;
}

.feature-box-style-3 .content {
    margin-top: 25px;
    overflow: hidden;
}

    .feature-box-style-3 .content h3 {
        color: var(--header4);
        margin-bottom: 15px;
    }

    .feature-box-style-3 .content .arrow-btn {
        font-size: 16px;
        position: relative;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: 0.7s;
        transition: 0.7s;
        display: inline-block;
        text-align: center;
        border-radius: 100%;
        color: var(--header4);
        font-weight: 600;
        margin-top: 15px;
        font-family: "Inter", sans-serif;
        text-transform: capitalize;
    }

        .feature-box-style-3 .content .arrow-btn::before {
            position: absolute;
            font-weight: 600;
            color: var(--header4);
            font-size: 16px;
            left: -95px;
            top: -2px;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            opacity: 0;
            content: "Explore more";
        }

.feature-box-style-3.active {
    border: 1px solid var(--bg6);
}

    .feature-box-style-3.active::before {
        opacity: 1;
        transform: scale(1, 1);
    }

    .feature-box-style-3.active .icon {
        background-color: var(--theme5);
    }

        .feature-box-style-3.active .icon img {
            -webkit-animation: gelatine 0.6s;
            animation: gelatine 0.6s;
        }

    .feature-box-style-3.active .content .arrow-btn {
        transform: translateX(95px);
    }

        .feature-box-style-3.active .content .arrow-btn i {
            margin-left: 14px;
        }

        .feature-box-style-3.active .content .arrow-btn::before {
            opacity: 1;
        }

.counter-box-style-5 {
    margin-top: 30px;
    position: relative;
    padding: 105px 30px;
    z-index: 9;
    text-align: center;
}

@media (max-width: 767px) {
    .counter-box-style-5 {
        padding: 70PX 30PX;
    }
}

@media (max-width: 575px) {
    .counter-box-style-5 {
        background-color: var(--white);
        border-radius: 16px;
    }
}

.counter-box-style-5 .icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    text-align: center;
    line-height: 85px;
    background-color: var(--bg6);
    position: absolute;
    z-index: 9;
    top: 0;
    right: 30px;
}

    .counter-box-style-5 .icon::before {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        width: 72px;
        line-height: 72px;
        border-radius: 50%;
        height: 72px;
        background-color: var(--theme5);
        transform: translate(-50%, -50%);
        z-index: -1;
        transition: all 0.4s ease-in-out;
    }

.counter-box-style-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 308 340"><path fill-rule="evenodd" clip-rule="evenodd" d="M154 0L308 84.7917V254.375L154 339.167L0 254.375V84.7917L154 0Z" /></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
    background-color: #FFFDF5;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
    .counter-box-style-5::before {
        display: none;
    }
}

.counter-box-style-5 h2 {
    font-size: 82px;
    font-weight: 600;
    color: var(--header4);
}

@media (max-width: 767px) {
    .counter-box-style-5 h2 {
        font-size: 70px;
    }
}

.counter-box-style-5 p {
    color: var(--header4);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 18px;
}

.counter-box-style-5.active::before {
    background-color: var(--theme5);
}

.counter-box-style-5.active .icon::before {
    background-color: var(--theme6);
}

.counter-box-style-5.active .icon img {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.work-process-box-style-4 {
    margin-top: 40px;
    background-color: var(--bg5);
    padding: 36px 30px;
    position: relative;
    z-index: 9;
}

    .work-process-box-style-4 .content {
        position: relative;
        z-index: 99;
    }

        .work-process-box-style-4 .content span {
            display: inline-block;
            width: 48px;
            height: 48px;
            line-height: 48px;
            border-radius: 50%;
            text-align: center;
            color: var(--white);
            font-family: "Inter", sans-serif;
            font-size: 20px;
            background-color: var(--header4);
            font-weight: 600;
            margin-bottom: 28px;
            transition: all 0.4s ease-in-out;
        }

        .work-process-box-style-4 .content h3 {
            font-size: 32px;
            font-weight: 600;
            font-family: "Inter", sans-serif;
            color: var(--header4);
            letter-spacing: -1px;
        }

@media (max-width: 991px) {
    .work-process-box-style-4 .content h3 {
        font-size: 24px;
    }
}

.work-process-box-style-4 .content p {
    font-size: 18px;
    color: var(--white);
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.work-process-box-style-4 .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transition: all 0.5s 0s ease-out;
    bottom: 0;
}

    .work-process-box-style-4 .bg-image::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        opacity: 0.4;
        background: var(--black);
        z-index: 9;
    }

    .work-process-box-style-4 .bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.work-process-box-style-4 .work-btn {
    display: inline-block;
    color: var(--header4);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-top: 175px;
    font-size: 16px;
    position: relative;
    z-index: 99;
}

    .work-process-box-style-4 .work-btn i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        text-align: center;
        background-color: var(--header4);
        color: var(--white);
        margin-left: 10px;
        transition: all 0.4s ease-in-out;
    }

    .work-process-box-style-4 .work-btn:hover i {
        background-color: var(--theme4);
        color: var(--white);
    }

.work-process-box-style-4.active .content span {
    color: var(--white);
    background-color: var(--theme4);
}

.work-process-box-style-4.active .content h3 {
    color: var(--white);
}

.work-process-box-style-4.active .content p {
    opacity: 1;
    visibility: visible;
}

.work-process-box-style-4.active .work-btn {
    color: var(--white) !important;
}

    .work-process-box-style-4.active .work-btn i {
        background-color: var(--theme4) !important;
    }

.work-process-box-style-4.active .bg-image {
    transform: scale(1);
}

.award-section {
    border-top: 1px solid #EBE8E6;
}

.award-wrapper .title {
    color: var(--theme4);
    font-size: 122.704px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -3.408px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .award-wrapper .title {
        letter-spacing: initial;
    }
}

@media (max-width: 1199px) {
    .award-wrapper .title {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .award-wrapper .title {
        font-size: 58px;
    }
}

@media (max-width: 470px) {
    .award-wrapper .title {
        font-size: 44px;
    }
}

.award-wrapper .award-box-items {
    background-color: var(--bg5);
    margin-top: 30px;
}

    .award-wrapper .award-box-items .icon {
        padding: 30px;
    }

    .award-wrapper .award-box-items .award-title {
        font-size: 20px;
        font-weight: 600;
        color: var(--header4);
        border-top: 1px solid #DFDCD2;
        padding: 30px;
    }

    .award-wrapper .award-box-items:hover .icon img {
        animation: gelatine 0.6s;
    }

.service-card-item {
    margin-top: 30px;
    background-color: var(--bg);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .service-card-item::before {
        position: absolute;
        content: "";
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0;
        -webkit-transform: scale(1, 0.3);
        transform: scale(1, 0.3);
        background-color: var(--theme);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
        border-radius: 8px;
    }

    .service-card-item .icon {
        width: 72px;
        height: 68.494px;
        line-height: 68.494px;
        border-radius: 6px;
        background-color: var(--white);
        text-align: center;
    }

    .service-card-item .content {
        margin-top: 30px;
    }

        .service-card-item .content h3 {
            margin-bottom: 15px;
        }

@media (max-width: 1399px) {
    .service-card-item .content h3 {
        font-size: 22px;
    }
}

.service-card-item .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

    .service-card-item .content h3 a:hover {
        color: var(--white);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
    }

.service-card-item.active::before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-card-item.active .icon img {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.service-card-item.active .content h3 {
    color: var(--white);
}

.service-card-item.active .content p {
    color: var(--white);
}

.service-card-item.style-2 {
    background-color: var(--bg3);
    overflow: hidden;
}

    .service-card-item.style-2 .icon {
        border-radius: 50%;
        border: 1px solid #EBE6E8;
        transition: all 0.4s ease-in-out;
    }

        .service-card-item.style-2 .icon img {
            transition: all 0.4s ease-in-out;
        }

    .service-card-item.style-2 .content h3 {
        color: var(--header2);
    }

    .service-card-item.style-2 .content p {
        color: var(--header2);
    }

    .service-card-item.style-2::before {
        border-radius: 8px;
        border: 1px solid #EBE6E8;
        box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
        background-color: var(--white);
    }

    .service-card-item.style-2:hover .icon {
        background-color: var(--theme2);
    }

        .service-card-item.style-2:hover .icon img {
            filter: brightness(0) invert(1);
        }

.global-service-box {
    background-color: var(--bg3);
    padding: 58px 30px;
    border: 1px solid #EBE6E8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
}

@media (max-width: 1199px) {
    .global-service-box {
        padding: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.global-service-box::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0;
    transform: scale(1, 0.3);
    background-color: var(--white);
    transition: all 500ms ease;
    border-radius: 8px;
}

.global-service-box .global-content {
    flex-basis: 30%;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .global-service-box .global-content {
        flex-basis: initial;
    }
}

.global-service-box .content {
    display: flex;
    gap: 40px;
}

    .global-service-box .content span {
        font-size: 32px;
        font-weight: 600;
        opacity: 0.2;
        writing-mode: vertical-lr;
        line-height: 1;
    }

    .global-service-box .content h3 {
        text-transform: capitalize;
    }

        .global-service-box .content h3 a:hover {
            color: var(--theme2);
        }

.global-service-box .text {
    color: var(--header2);
    max-width: 395px;
    position: relative;
    z-index: 9;
}

.global-service-box .icon {
    display: inline-block;
    border: 1.103px solid #EBE6E8;
    background: var(--white);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    color: var(--header2);
    text-align: center;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: all 0.3s ease;
}

    .global-service-box .icon:hover {
        background-color: var(--theme2);
        color: var(--white);
        border: 1px solid var(--theme2);
    }

.global-service-box .hover-image {
    width: 250px;
    height: 250px;
    position: absolute;
    border-radius: 16px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(10deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    border-radius: 30px;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 99;
    visibility: hidden;
    will-change: transform;
}

@media (max-width: 991px) {
    .global-service-box .hover-image {
        display: none !important;
    }
}

.global-service-box:hover .hover-image {
    opacity: 1;
    visibility: visible;
}

.global-service-box:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-section-3 {
    margin: 0 30px;
    border-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
    z-index: 99;
}

@media (max-width: 1399px) {
    .service-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.service-section-3 .array-button .array-prev, .service-section-3 .array-button .array-next {
    background-color: var(--white);
    color: var(--header3);
}

    .service-section-3 .array-button .array-prev:hover, .service-section-3 .array-button .array-next:hover {
        background-color: var(--theme3);
        border: 1px solid var(--theme3);
        color: var(--white);
    }

.service-section-3 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--header3);
}

    .service-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme3);
    }

.service-box-style-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 45px 30px;
    border-radius: 8px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .service-box-style-3 {
        padding: 30px 35px;
    }
}

@media (max-width: 767px) {
    .service-box-style-3 {
        padding: 30px 30px;
    }
}

@media (max-width: 575px) {
    .service-box-style-3 {
        padding: 30px 25px;
    }
}

.service-box-style-3::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transform: scale(1, 0.3);
    transform: scale(1, 0.3);
    background-color: var(--header3);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
    border-radius: 8px;
}

.service-box-style-3 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header3);
    transition: all 0.4s ease-in-out;
}

.service-box-style-3 .content {
    margin-top: 40px;
}

    .service-box-style-3 .content h3 {
        margin-bottom: 20px;
    }

        .service-box-style-3 .content h3 a {
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline;
        }

            .service-box-style-3 .content h3 a:hover {
                color: var(--white);
                background-size: 100% 2px;
                background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
            }

    .service-box-style-3 .content p {
        font-size: 18px;
        color: var(--header3);
        opacity: 0.8;
        line-height: 155.556%;
    }

    .service-box-style-3 .content .link-btn {
        color: var(--header3);
        margin-top: 20px;
    }

        .service-box-style-3 .content .link-btn i {
            margin-left: 6px;
            margin-right: 0;
        }

        .service-box-style-3 .content .link-btn:hover {
            color: var(--theme3);
        }

.service-box-style-3 .number {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    transform: rotate(90deg);
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 30px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.service-box-style-3:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-box-style-3:hover .icon {
    background-color: var(--theme3);
}

    .service-box-style-3:hover .icon img {
        -webkit-animation: gelatine 0.6s;
        animation: gelatine 0.6s;
    }

.service-box-style-3:hover .content h3 a {
    color: var(--white);
}

.service-box-style-3:hover .content p {
    color: var(--white);
}

.service-box-style-3:hover .content .link-btn {
    color: var(--white);
}

.service-box-style-3:hover .number {
    opacity: 0.15;
    visibility: visible;
}

.service-wrapper-5 {
    margin-top: 60px;
}

    .service-wrapper-5 .bb-top {
        border-top: 1px solid #F0ECDF;
    }

    .service-wrapper-5 .bb-bottom {
        border-bottom: 1px solid #F0ECDF;
    }

    .service-wrapper-5 .service-box-style-5 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 1199px) {
    .service-wrapper-5 .service-box-style-5 {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 0;
    }
}

.service-wrapper-5 .service-box-style-5 .thumb {
    transition: all 0.4s ease-in-out;
    height: 213px;
    flex-basis: 26%;
}

@media (max-width: 1199px) {
    .service-wrapper-5 .service-box-style-5 .thumb {
        flex-basis: initial;
    }

        .service-wrapper-5 .service-box-style-5 .thumb img {
            width: 250px !important;
        }
}

@media (max-width: 991px) {
    .service-wrapper-5 .service-box-style-5 .thumb {
        height: initial;
        flex-basis: 100%;
    }

        .service-wrapper-5 .service-box-style-5 .thumb img {
            width: 100% !important;
        }
}

.service-wrapper-5 .service-box-style-5 .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 195px;
    transition: all 0.4s ease-in-out;
    opacity: 0.15;
    background: #F7CF4B;
    mix-blend-mode: overlay;
}

@media (max-width: 1399px) {
    .service-wrapper-5 .service-box-style-5 .thumb img {
        width: 140px;
    }
}

.service-wrapper-5 .service-box-style-5 .service-text {
    display: flex;
    align-items: center;
    gap: 180px;
}

@media (max-width: 1399px) {
    .service-wrapper-5 .service-box-style-5 .service-text {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.service-wrapper-5 .service-box-style-5 .title {
    font-size: 24px;
    font-weight: 500;
    max-width: 280px;
}

    .service-wrapper-5 .service-box-style-5 .title a {
        color: var(--header4);
        background-position: 0 95%;
        background-repeat: no-repeat;
        background-size: 0% 2px;
        display: inline;
    }

        .service-wrapper-5 .service-box-style-5 .title a:hover {
            color: var(--header4);
            background-size: 100% 2px;
            background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
        }

.service-wrapper-5 .service-box-style-5 .text {
    opacity: 0.88;
    color: var(--header4);
    width: 100%;
    max-width: 272px;
}

.service-wrapper-5 .service-box-style-5 .arrow-icon {
    font-size: 30px;
    transform: rotate(-40deg);
    display: inline-block;
    color: var(--header4);
}

    .service-wrapper-5 .service-box-style-5 .arrow-icon:hover {
        color: var(--theme5);
    }

.service-wrapper-5 .service-box-style-5.active .thumb img {
    width: 338px;
    opacity: 1;
}

@media (max-width: 1399px) {
    .service-wrapper-5 .service-box-style-5.active .thumb img {
        width: 280px;
    }
}

.service-box-style-4 {
    margin-top: 30px;
}

    .service-box-style-4 .service-list-wrap {
        position: relative;
        border-bottom: 1px solid #EBE8E6;
        padding: 50px 30px;
    }

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap {
        padding: 40px 10px;
    }
}

.service-box-style-4 .service-list-wrap.active-block {
    background-color: var(--bg5);
    border-bottom: 1px solid var(--bg5);
}

.service-box-style-4 .service-list-wrap .service-acc-btn {
    position: relative;
    padding-left: 275px;
    cursor: pointer;
}

@media (max-width: 1399px) {
    .service-box-style-4 .service-list-wrap .service-acc-btn {
        padding-left: 200px;
    }
}

@media (max-width: 1199px) {
    .service-box-style-4 .service-list-wrap .service-acc-btn {
        padding-left: 90px;
    }
}

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap .service-acc-btn {
        padding-left: 20px;
    }
}

.service-box-style-4 .service-list-wrap .service-acc-btn .number {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: var(--header4);
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap .service-acc-btn .number {
        top: -30px;
        left: 20px;
    }
}

.service-box-style-4 .service-list-wrap .service-acc-btn .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    color: var(--header4);
    border: 1px solid var(--header4);
    text-align: center;
}

.service-box-style-4 .service-list-wrap .service-acc-btn h3 {
    font-size: 30px;
    font-weight: 600;
}

    .service-box-style-4 .service-list-wrap .service-acc-btn h3 a {
        color: var(--header4);
    }

        .service-box-style-4 .service-list-wrap .service-acc-btn h3 a:hover {
            color: var(--theme4);
        }

.service-box-style-4 .service-list-wrap .service-acc-content {
    margin-top: 35px;
    display: none;
    position: relative;
}

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap .service-acc-content {
        margin-top: 25px;
    }
}

.service-box-style-4 .service-list-wrap .service-wrap {
    display: flex;
    gap: 100px;
    width: 100%;
    padding-left: 275px;
}

@media (max-width: 1399px) {
    .service-box-style-4 .service-list-wrap .service-wrap {
        padding-left: 200px;
    }
}

@media (max-width: 1199px) {
    .service-box-style-4 .service-list-wrap .service-wrap {
        padding-left: 90px;
    }
}

@media (max-width: 991px) {
    .service-box-style-4 .service-list-wrap .service-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap .service-wrap {
        padding-left: 20px;
    }
}

.service-box-style-4 .service-list-wrap .service-wrap .item-text h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--header4);
}

.service-box-style-4 .service-list-wrap .service-wrap .item-text .text {
    max-width: 465px;
}

    .service-box-style-4 .service-list-wrap .service-wrap .item-text .text p {
        font-size: 18px;
        line-height: 155.556%;
    }

@media (max-width: 575px) {
    .service-box-style-4 .service-list-wrap .service-wrap .item-text .text p {
        font-size: 16px;
    }
}

.service-box-style-4 .service-list-wrap .service-wrap .item-text ul li {
    color: var(--header4);
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

    .service-box-style-4 .service-list-wrap .service-wrap .item-text ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .service-box-style-4 .service-list-wrap .service-wrap .item-text ul li i {
        font-size: 20px;
        margin-right: 8px;
    }

.service-section-4 .service-box-style-4 .block .service-acc-content.current {
    display: block;
}

.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon:before {
    content: "\f00d";
}

.service-section-4 .service-box-style-4 .block .service-acc-btn.active .icon {
    background-color: var(--theme4);
    color: var(--white);
    border: 1px solid var(--theme4);
}

.service-section-4 .service-box-style-4 .block .service-acc-btn.active {
    color: var(--theme);
}

.service-section-4 .aservice-box-style-4 .block:last-child {
    margin-bottom: 0;
}

.service-details-wrapper .service-top-img {
    border-radius: 12px;
}

    .service-details-wrapper .service-top-img img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }


    .service-details-wrapper .service-details-content h3 {
        font-size: 32px;
        font-weight: 600;
        margin-top: 30px;
    }

    .service-details-wrapper .service-details-content .service-list-items {
        display: flex;
        gap: 60px;
        margin-top: 30px;
    }

@media (max-width: 1199px) {
    .service-details-wrapper .service-details-content .service-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
    font-weight: 500;
}

    .service-details-wrapper .service-details-content .service-list-items ul li i {
        color: var(--theme);
        margin-right: 10px;
    }

    .service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
        margin-bottom: 15px;
    }

.service-details-wrapper .service-details-content .service-box-area {
    margin-top: 40px;
}

    .service-details-wrapper .service-details-content .service-box-area .service-box-items {
        background-color: #F2F5F7;
        border-radius: 10px;
        padding: 30px 20px;
    }

        .service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
            width: 38px;
            height: 38px;
            line-height: 38px;
            border-radius: 50%;
            background-color: var(--theme);
            color: var(--white);
            font-size: 16px;
            display: block;
            text-align: center;
            font-weight: 700;
        }

        .service-details-wrapper .service-details-content .service-box-area .service-box-items h5 {
            font-size: 18px;
            font-weight: 500;
            max-width: 143px;
            margin-top: 20px;
        }

        .service-details-wrapper .service-details-content .service-box-area .service-box-items p {
            margin-top: 10px;
        }

.service-details-wrapper .service-details-sidebar {
    margin-top: 30px;
}

    .service-details-wrapper .service-details-sidebar .sidebar-widget {
        padding: 40px 35px;
        border-radius: 10px;
        background-color: #F2F5F7;
        margin-bottom: 30px;
    }

        .service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title {
            margin-bottom: 25px;
        }

            .service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 {
                font-size: 24px;
                font-weight: 500;
                display: inline-block;
            }

                .service-details-wrapper .service-details-sidebar .sidebar-widget .sideber-title h4 i {
                    color: var(--theme);
                    font-size: 16px;
                    margin-right: 7px;
                }

        .service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            padding: 14px 20px;
            border-radius: 8px;
            color: var(--header);
            font-size: 16px;
            font-weight: 500;
        }

            .service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li span {
                color: var(--header);
                font-size: 16px;
                font-weight: 500;
            }

            .service-details-wrapper .service-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
                margin-bottom: 30px;
            }

    .service-details-wrapper .service-details-sidebar .sidebar-widget-image {
        position: relative;
    }

        .service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
            position: absolute;
            padding: 25px;
            bottom: 25px;
            left: 25px;
            right: 25px;
        }

            .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
                font-size: 70px;
                color: var(--white);
                margin-bottom: 35px;
            }

            .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
                margin-top: 15px;
                color: var(--white);
                font-size: 32px;
                font-weight: 600;
            }

            .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .theme-btn {
                margin-top: 30px;
            }

        .service-details-wrapper .service-details-sidebar .sidebar-widget-image .white-logo {
            position: absolute;
            top: 50px;
            left: 50px;
        }

    .service-details-wrapper .service-details-sidebar .service-list-item li {
        font-size: 16px;
        font-weight: 600;
        font-family: "Inter", sans-serif;
    }

        .service-details-wrapper .service-details-sidebar .service-list-item li:not(:last-child) {
            margin-bottom: 10px;
        }

        .service-details-wrapper .service-details-sidebar .service-list-item li a {
            color: var(--header);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--white);
            padding: 20px 24px;
            line-height: 1;
            border-radius: 8px;
        }

            .service-details-wrapper .service-details-sidebar .service-list-item li a:hover {
                background-color: var(--theme);
                color: var(--white);
            }

.project-section {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .project-section {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    margin-top: -7px;
    margin-bottom: 80px;
}

    .marquee.slide-right {
        transform: scaleX(-1);
    }

        .marquee.slide-right .text,
        .marquee.slide-right .stroke-text {
            transform: scaleX(-1);
        }

    .marquee.style-2 {
        background-color: var(--theme);
        padding: 30px 0;
    }

        .marquee.style-2 .text {
            color: var(--white);
            font-size: 80px;
            font-weight: 500;
            letter-spacing: -6.255px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 50px;
        }

@media (max-width: 1199px) {
    .marquee.style-2 .text {
        gap: 30px;
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee.style-2 .text {
        gap: 20px;
        font-size: 50px;
    }
}

.marquee .marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

.marquee .text {
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -6.255px;
    color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .marquee .text {
        letter-spacing: initial;
    }
}

@media (max-width: 1199px) {
    .marquee .text {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .marquee .text {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee .text {
        font-size: 50px;
    }
}

.marquee .text span {
    margin-top: -10px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.marquee .text:hover {
    color: var(--white);
}

    .marquee .text:hover span {
        color: var(--theme);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.project-box-items {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .project-box-items {
        display: block;
    }
}

.project-box-items .content {
    padding: 80px 75px;
    position: relative;
}

@media (max-width: 1199px) {
    .project-box-items .content {
        padding: 45px;
    }
}

@media (max-width: 767px) {
    .project-box-items .content {
        padding: 30px;
    }
}

.project-box-items .content .number {
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
    font-family: "Inter", sans-serif;
    font-size: 166.588px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -10.412px;
    color: transparent;
    position: absolute;
    bottom: -50px;
    left: 75px;
}

@media (max-width: 1199px) {
    .project-box-items .content .number {
        display: none;
    }
}

.project-box-items .content span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px;
}

@media (max-width: 575px) {
    .project-box-items .content span {
        margin-bottom: 5px;
        display: inline-block;
    }
}

.project-box-items .content h3 {
    color: var(--white);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -3px;
}

@media (max-width: 767px) {
    .project-box-items .content h3 {
        font-size: 36px;
        letter-spacing: initial;
        text-transform: capitalize;
    }
}

@media (max-width: 575px) {
    .project-box-items .content h3 {
        font-size: 28px;
    }
}

.project-box-items .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

    .project-box-items .content h3 a:hover {
        color: var(--theme);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
    }

.project-box-items .content .icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 18px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .project-box-items .content .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

.project-box-items .content .icon:hover {
    background-color: var(--white);
    color: var(--header);
}

@media (max-width: 1199px) {
    .project-box-items .thumb img {
        width: 100%;
        height: 100%;
        border-top-right-radius: 0;
    }
}

.project-box-items .thumb img {
    border-radius: 0 12px 12px 0;
}

.project-box-area {
    margin-bottom: 240px;
}

@media (max-width: 1199px) {
    .project-box-area {
        margin-bottom: 0;
    }
}

.marquee-section3 .marquee {
    background-color: var(--theme2);
    border-radius: 0 0 16px 16px;
    padding: 20px 0;
}

    .marquee-section3 .marquee .text {
        font-size: 24px;
        font-family: "Inter", sans-serif;
        font-weight: 500;
        letter-spacing: initial;
        text-transform: capitalize;
    }

.marquee-section2.style-marque-3 .marquee {
    margin: 0 30px;
    background-color: var(--theme3);
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 1399px) {
    .marquee-section2.style-marque-3 .marquee {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.marquee-section2.style-marque-4 .marquee {
    background-color: var(--theme5);
    border-radius: 0;
}

    .marquee-section2.style-marque-4 .marquee .text {
        color: transparent;
        font-size: 96.552px;
        font-weight: 600;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: var(--header4);
    }

@media (max-width: 991px) {
    .marquee-section2.style-marque-4 .marquee .text {
        font-size: 78px;
    }
}

@media (max-width: 767px) {
    .marquee-section2.style-marque-4 .marquee .text {
        font-size: 65px;
    }
}

@media (max-width: 575px) {
    .marquee-section2.style-marque-4 .marquee .text {
        font-size: 50px;
    }
}

.marquee-section2.style-marque-4 .marquee .text:hover {
    color: var(--header4);
}

.marquee-section2.style-marque-5 .marquee {
    background-color: var(--theme4);
}

    .marquee-section2.style-marque-5 .marquee .text {
        font-size: 45px;
        font-weight: 600;
        letter-spacing: -1.838px;
        text-transform: capitalize;
    }

.project-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .project-section-2 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.project-section-2 .section-title-area p {
    color: var(--header2);
}

.project-section-2 .section-title-area .array-button .array-prev, .project-section-2 .section-title-area .array-button .array-next {
    background-color: var(--white);
    color: var(--header2);
}

    .project-section-2 .section-title-area .array-button .array-prev:hover, .project-section-2 .section-title-area .array-button .array-next:hover {
        background-color: var(--theme2);
        color: var(--white);
    }

@media (max-width: 1399px) {
    .project-section-2 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.project-section-2 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--header2);
}

    .project-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme2);
    }

.project-image-items-2 {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
}

    .project-image-items-2 .post-box {
        position: absolute;
        top: 30px;
        left: 30px;
        display: inline-block;
        border: 1px solid var(--white);
        padding: 0 12px;
        height: 30px;
        line-height: 30px;
        border-radius: 18px;
        color: var(--white);
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -1px;
        z-index: 9;
    }

        .project-image-items-2 .post-box:hover {
            background-color: var(--theme2);
            border: 1px solid var(--theme2);
        }

    .project-image-items-2::before {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        width: 70px;
        height: 70px;
        border-radius: 10px;
        background-color: var(--bg3);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        z-index: 9;
    }

    .project-image-items-2 img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        display: block;
        object-fit: cover;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .project-image-items-2 img:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transform: translateX(50%) scaleX(2);
            transform: translate(50%) scaleX(2);
            opacity: 0;
            -webkit-filter: blur(10px);
            filter: blur(10px);
        }

    .project-image-items-2 .project-title {
        position: absolute;
        bottom: 40px;
        left: 30px;
        right: 30px;
        z-index: 9;
    }

        .project-image-items-2 .project-title a {
            color: var(--white);
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline;
        }

            .project-image-items-2 .project-title a:hover {
                color: var(--theme2);
                background-size: 100% 2px;
                background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
            }

    .project-image-items-2 .arrow-icon {
        width: 58px;
        height: 58px;
        line-height: 58px;
        text-align: center;
        border-radius: 10px;
        text-align: center;
        background-color: var(--header2);
        color: var(--white);
        display: inline-block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 9;
    }

        .project-image-items-2 .arrow-icon:hover {
            background-color: var(--theme2);
        }

    .project-image-items-2:hover img:first-child {
        -webkit-transform: translateX(0) scaleX(1);
        transform: translate(0) scaleX(1);
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    .project-image-items-2:hover img:nth-child(2) {
        -webkit-transform: translateX(-50%) scaleX(2);
        transform: translateX(-50%) scaleX(2);
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

.project-section-3 {
    margin: 0 30px;
    border-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .project-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.project-section-3 .line-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

    .project-section-3 .line-shape img {
        width: 100%;
    }

@media (max-width: 1399px) {
    .project-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

@media (max-width: 1399px) {
    .project-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.project-wrapper-3 .section-title p {
    color: var(--header3);
    font-size: 18px;
    font-weight: 500;
    max-width: 270px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.project-wrapper-3 .project-box-items-3 li {
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 35px;
}

@media (max-width: 767px) {
    .project-wrapper-3 .project-box-items-3 li {
        display: block;
    }
}

.project-wrapper-3 .project-box-items-3 li:not(:last-child) {
    margin-bottom: 30px;
}

.project-wrapper-3 .project-box-items-3 li .thumb {
    max-width: 330px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .project-wrapper-3 .project-box-items-3 li .thumb {
        max-width: initial;
        margin-bottom: 15px;
    }
}

.project-wrapper-3 .project-box-items-3 li .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .project-wrapper-3 .project-box-items-3 li .thumb img:first-child {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        -webkit-transform: translateX(50%) scaleX(2);
        transform: translate(50%) scaleX(2);
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

.project-wrapper-3 .project-box-items-3 li .content {
    position: relative;
}

    .project-wrapper-3 .project-box-items-3 li .content span {
        color: var(--header3);
        font-size: 16px;
        font-weight: 500;
        letter-spacing: -1px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .project-wrapper-3 .project-box-items-3 li .content h3 {
        color: var(--header3);
        font-size: 32px;
        font-weight: 600;
    }

@media (max-width: 1399px) {
    .project-wrapper-3 .project-box-items-3 li .content h3 {
        font-size: 26px;
    }
}

@media (max-width: 1199px) {
    .project-wrapper-3 .project-box-items-3 li .content h3 {
        font-size: 24px;
    }
}

.project-wrapper-3 .project-box-items-3 li .content h3 a {
    color: var(--header3);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

    .project-wrapper-3 .project-box-items-3 li .content h3 a:hover {
        color: var(--theme3);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
    }

.project-wrapper-3 .project-box-items-3 li .content .icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header3);
    color: var(--white);
    font-size: 18px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .project-wrapper-3 .project-box-items-3 li .content .icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
        margin-top: 12px;
    }
}

.project-wrapper-3 .project-box-items-3 li .content .icon:hover {
    background-color: var(--theme3);
    color: var(--white);
}

.project-wrapper-3 .project-box-items-3 li:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-wrapper-3 .project-box-items-3 li:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-style-5 {
    max-width: 480px;
    border: 1px solid #F0ECDF;
    padding: 20px;
    background-color: var(--white);
    position: relative;
    z-index: 99;
}

@media (max-width: 991px) {
    .project-box-style-5 {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .project-box-style-5 {
        max-width: initial;
        margin-top: 30px;
    }
}

.project-box-style-5 .thumb {
    overflow: hidden;
    position: relative;
    z-index: 9;
}

    .project-box-style-5 .thumb::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        opacity: 0;
        visibility: hidden;
        background: #000;
        z-index: 99;
        transform: scale(1.1);
        transition: all 0.6s ease;
    }

    .project-box-style-5 .thumb .arrow-icon {
        display: inline-block;
        width: 65px;
        height: 65px;
        line-height: 65px;
        text-align: center;
        background-color: var(--theme5);
        color: var(--header4);
        border-radius: 50%;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        transition: all 0.4s ease-in-out;
    }

        .project-box-style-5 .thumb .arrow-icon:hover {
            background-color: var(--theme6);
        }

    .project-box-style-5 .thumb img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .project-box-style-5 .thumb img:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transform: translateX(50%) scaleX(2);
            transform: translateX(50%) scaleX(2);
            opacity: 0;
            -webkit-filter: blur(10px);
            filter: blur(10px);
        }

.project-box-style-5.style-2 {
    max-width: initial;
}

.project-box-style-5.style-top {
    margin-top: 150px;
}

@media (max-width: 767px) {
    .project-box-style-5.style-top {
        margin-top: 30px;
    }
}

.project-box-style-5.style-top2 {
    margin-top: 120px;
}

@media (max-width: 767px) {
    .project-box-style-5.style-top2 {
        margin-top: 30px;
    }
}

.project-box-style-5.style-3 {
    margin-left: auto;
}

.project-box-style-5 .content {
    padding: 20px 10px 10px;
    position: relative;
}

    .project-box-style-5 .content .year-text {
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        color: var(--header4);
        font-family: "Inter", sans-serif;
        position: absolute;
        top: 25px;
        right: 30px;
    }

@media (max-width: 991px) {
    .project-box-style-5 .content .year-text {
        right: 15px;
        top: 15px;
        font-size: 16px;
    }
}

.project-box-style-5 .content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .project-box-style-5 .content h3 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .project-box-style-5 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .project-box-style-5 .content h3 {
        font-size: 24px;
    }
}

.project-box-style-5 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header4);
}

    .project-box-style-5 .content h3 a:hover {
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
    }

.project-box-style-5 .content ul {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

    .project-box-style-5 .content ul li a {
        display: inline-block;
        border-radius: 18px;
        background: #F5EFDC;
        font-size: 16px;
        font-weight: 500;
        color: var(--header4);
        font-family: "Inter", sans-serif;
        padding: 3px 14px;
    }

        .project-box-style-5 .content ul li a:hover {
            background-color: var(--theme6);
        }

.project-box-style-5:hover .thumb::before {
    opacity: 0.4;
    visibility: visible;
    transform: scale(1);
}

.project-box-style-5:hover .thumb .arrow-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.project-box-style-5:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-style-5:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-section-5 .section-title .link-btn {
    text-decoration: underline;
    color: var(--header4);
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin-top: 30px;
}

.project-section-5 .project-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}

@media (max-width: 767px) {
    .project-section-5 .project-button {
        margin-top: 30px;
    }
}

.project-section-5 .project-btn {
    display: inline-block;
    width: 160px;
    height: 160px;
    font-size: 16px;
    color: var(--header4);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    background: #F5EFDC;
    box-shadow: 0 4.051px 30.38px 0 rgba(31, 41, 55, 0.1);
    text-align: center;
    border-radius: 50%;
    text-transform: capitalize;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

    .project-section-5 .project-btn::before {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        width: 50px;
        height: 50px;
        background-color: var(--theme5);
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .project-section-5 .project-btn span {
        display: block;
    }

    .project-section-5 .project-btn:hover::before {
        width: 100%;
        height: 100%;
    }

.wt-hover-btn-item {
    display: inline-block;
    position: relative;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.project-section-4 {
    margin: 0 30px;
}

    .project-section-4 .section-title-area {
        margin-bottom: -60px;
        position: relative;
        z-index: 99;
    }

@media (max-width: 1199px) {
    .project-section-4 .section-title-area {
        margin-bottom: 35px;
        gap: 0;
    }

        .project-section-4 .section-title-area br {
            display: none;
        }
}

.project-section-4 .section-title-area .section-title h2 {
    font-size: 122.704px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -3.408px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .project-section-4 .section-title-area .section-title h2 {
        letter-spacing: initial;
    }
}

@media (max-width: 1199px) {
    .project-section-4 .section-title-area .section-title h2 {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .project-section-4 .section-title-area .section-title h2 {
        font-size: 58px;
    }
}

.project-style-image-4 {
    overflow: hidden;
    position: relative;
    z-index: 9;
    height: 626px;
}

    .project-style-image-4 img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        object-fit: cover;
    }

        .project-style-image-4 img:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transform: translateX(50%) scaleX(2);
            transform: translate(50%) scaleX(2);
            opacity: 0;
            -webkit-filter: blur(10px);
            filter: blur(10px);
        }

    .project-style-image-4 .content {
        background-color: var(--white);
        padding: 30px;
        padding-right: 45px;
        position: absolute;
        left: 30px;
        bottom: 30px;
        right: 30px;
        width: fit-content;
        clip-path: inset(100% 0 0 0);
        transition: clip-path 0.5s ease;
        z-index: 10;
    }

        .project-style-image-4 .content h3 {
            font-size: 32px;
            font-weight: 600;
        }

@media (max-width: 575px) {
    .project-style-image-4 .content h3 {
        font-size: 24px;
    }
}

.project-style-image-4 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header4);
}

    .project-style-image-4 .content h3 a:hover {
        color: var(--theme4);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 100%);
    }

.project-style-image-4 .content ul {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

    .project-style-image-4 .content ul li a {
        display: inline-block;
        border-radius: 18px;
        border: 1px solid #EBE8E6;
        background: #FAF8EF;
        line-height: 1;
        font-size: 16px;
        font-weight: 500;
        color: var(--header4);
        font-family: "Inter", sans-serif;
        padding: 6px 10px;
    }

        .project-style-image-4 .content ul li a:hover {
            background-color: var(--theme4);
            color: var(--white);
        }

.project-style-image-4:hover img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-style-image-4:hover img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-style-image-4:hover .content {
    clip-path: inset(0 0 0 0);
}

.project-details-wrapper .details-top-img {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .project-details-wrapper .details-top-img {
        height: 600px;
    }

        .project-details-wrapper .details-top-img img {
            object-fit: cover;
        }
}

.project-details-wrapper .details-top-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .project-details-content {
    margin-top: 30px;
}

    .project-details-wrapper .project-details-content h3 {
        font-size: 32px;
        font-weight: 600;
        margin-top: 30px;
    }

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 25px;
    }
}

.project-details-wrapper .project-details-content .project-list-items {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content .project-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-details-wrapper .project-details-content .project-list-items ul li {
    font-weight: 500;
}

    .project-details-wrapper .project-details-content .project-list-items ul li i {
        color: var(--theme);
        margin-right: 10px;
    }

    .project-details-wrapper .project-details-content .project-list-items ul li:not(:last-child) {
        margin-bottom: 15px;
    }

.project-details-wrapper .project-details-content .details-image-2 {
    margin-top: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .project-details-wrapper .project-details-content .details-image-2 {
        height: 550px;
    }

        .project-details-wrapper .project-details-content .details-image-2 img {
            object-fit: cover;
        }
}

.project-details-wrapper .project-details-content .details-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .project-details-content .details-img-3 {
    margin-top: 20px;
}

    .project-details-wrapper .project-details-content .details-img-3 img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

.project-details-wrapper .project-details-content .slider-button {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    margin-top: 65px;
    padding: 25px 0;
}

    .project-details-wrapper .project-details-content .slider-button span {
        font-weight: 500;
    }

    .project-details-wrapper .project-details-content .slider-button .cmn-next,
    .project-details-wrapper .project-details-content .slider-button .cmn-prev {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border-radius: 50%;
        transition: all 0.4s;
        border: 1px solid #E4E4E4;
    }

        .project-details-wrapper .project-details-content .slider-button .cmn-next i,
        .project-details-wrapper .project-details-content .slider-button .cmn-prev i {
            color: var(--theme);
            font-size: 24px;
            transition: all 0.4s;
        }

        .project-details-wrapper .project-details-content .slider-button .cmn-next:hover,
        .project-details-wrapper .project-details-content .slider-button .cmn-prev:hover {
            background: var(--theme);
            border-color: var(--theme);
        }

            .project-details-wrapper .project-details-content .slider-button .cmn-next:hover i,
            .project-details-wrapper .project-details-content .slider-button .cmn-prev:hover i {
                color: var(--white);
            }

    .project-details-wrapper .project-details-content .slider-button .previus-text {
        font-size: 22px;
        color: var(--header);
    }

    .project-details-wrapper .project-details-content .slider-button .icon-gird {
        font-size: 40px;
        color: #0F172A;
    }

.project-details-wrapper .project-details-sidebar {
    margin-top: 30px;
}

    .project-details-wrapper .project-details-sidebar .sidebar-widget {
        padding: 40px 35px;
        border-radius: 10px;
        background-color: #F2F5F7;
        margin-bottom: 30px;
    }

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-sidebar .sidebar-widget {
        padding: 30px 25px;
    }
}

.project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title {
    margin-bottom: 25px;
}

    .project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 {
        font-size: 24px;
        font-weight: 500;
        border-bottom: 1px solid var(--theme);
        display: inline-block;
        padding-bottom: 20px;
    }

        .project-details-wrapper .project-details-sidebar .sidebar-widget .sideber-title h4 i {
            color: var(--theme);
            font-size: 16px;
            margin-right: 7px;
        }

.project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

    .project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li span {
        color: var(--header);
        font-size: 16px;
        font-weight: 500;
    }

    .project-details-wrapper .project-details-sidebar .sidebar-widget .project-infrom li:not(:last-child) {
        margin-bottom: 30px;
    }

.project-details-wrapper .project-details-sidebar .sidebar-widget-image {
    position: relative;
}

    .project-details-wrapper .project-details-sidebar .sidebar-widget-image img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    .project-details-wrapper .project-details-sidebar .sidebar-widget-image .content {
        position: absolute;
        padding: 25px;
        bottom: 25px;
        left: 25px;
        right: 25px;
    }

        .project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .icon {
            font-size: 70px;
            color: var(--white);
            margin-bottom: 35px;
        }

        .project-details-wrapper .project-details-sidebar .sidebar-widget-image .content h3 {
            margin-top: 15px;
            color: var(--white);
            font-size: 32px;
            font-weight: 600;
        }

        .project-details-wrapper .project-details-sidebar .sidebar-widget-image .content .theme-btn {
            margin-top: 30px;
        }

    .project-details-wrapper .project-details-sidebar .sidebar-widget-image .white-logo {
        position: absolute;
        top: 50px;
        left: 50px;
    }

.project-box-items-inner .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #e7e7e7;
}

    .project-box-items-inner .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        display: block;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

        .project-box-items-inner .thumb img:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transform: translateX(50%) scaleX(2);
            transform: translate(50%) scaleX(2);
            opacity: 0;
            -webkit-filter: blur(10px);
            filter: blur(10px);
        }

.project-box-items-inner .project-content-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    background-color: #0F172A;
    height: 65px;
    border-radius: 12px;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .project-box-items-inner .project-content-area {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.project-box-items-inner .project-content-area .content .text {
    border-radius: 18px;
    border: 1px solid #E6E8EB;
    background: #F2F5F7;
    padding: 6px 8px;
}

.project-box-items-inner .project-content-area .content h3 {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .project-box-items-inner .project-content-area .content h3 {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .project-box-items-inner .project-content-area .content h3 {
        font-size: 16px;
    }
}

.project-box-items-inner .project-content-area .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

    .project-box-items-inner .project-content-area .content h3 a:hover {
        color: var(--theme);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
    }

.project-box-items-inner .project-content-area .circle-check {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    color: var(--header);
    font-size: 20px;
    border: 1.417px solid #E6E8EB;
    background: #F2F5F7;
    transition: all 0.4s ease-in-out;
}

    .project-box-items-inner .project-content-area .circle-check:hover {
        background-color: var(--theme);
        color: var(--white);
    }

.project-box-items-inner:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-section-5 .gt-title5 h2 {
    font-size: 220px;
    line-height: 1;
    color: var(--header4);
}

@media (max-width: 1399px) {
    .project-section-5 .gt-title5 h2 {
        font-size: 180px;
    }
}

@media (max-width: 1199px) {
    .project-section-5 .gt-title5 h2 {
        font-size: 150px;
    }
}

@media (max-width: 991px) {
    .project-section-5 .gt-title5 h2 {
        font-size: 130px;
    }
}

@media (max-width: 767px) {
    .project-section-5 .gt-title5 h2 {
        font-size: 90px;
    }
}

@media (max-width: 575px) {
    .project-section-5 .gt-title5 h2 {
        font-size: 70px;
    }
}

.testimonial-warpper {
    position: relative;
    z-index: 9;
    padding: 60px;
    margin-top: 60px;
    padding-top: 0;
    max-width: 1100px;
    margin: 60px auto 0;
}

@media (max-width: 1199px) {
    .testimonial-warpper {
        padding: 35px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-warpper {
        margin: 0 auto 0;
        padding: 32px;
    }
}

@media (max-width: 575px) {
    .testimonial-warpper {
        padding: 28px;
    }
}

@media (max-width: 470px) {
    .testimonial-warpper {
        padding: 24px;
    }
}

.testimonial-warpper .array-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -25px;
    right: -25px;
    transform: translateY(-50%);
    z-index: 99;
}

@media (max-width: 1399px) {
    .testimonial-warpper .array-button {
        display: none;
    }
}

.testimonial-warpper .array-button .array-prev, .testimonial-warpper .array-button .array-next {
    background-color: var(--white);
}

.testimonial-warpper .testi-client {
    max-width: 215px;
    margin: 0 auto 50px;
}

@media (max-width: 767px) {
    .testimonial-warpper .testi-client {
        margin: 0 auto 30px;
    }
}

.testimonial-warpper .testi-client .client-img img {
    width: 60px;
    height: 60px;
    border: 2.25px solid var(--white);
    border-radius: 50%;
}

.testimonial-warpper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    border-radius: 12px;
    z-index: -1;
    top: 35px;
    height: initial;
}

@media (max-width: 1199px) {
    .testimonial-warpper::before {
        top: 65px;
    }
}

.testimonial-warpper .testimonial-content-1 {
    max-width: 870px;
    text-align: center;
    margin: 0 auto;
}

    .testimonial-warpper .testimonial-content-1 h3 {
        font-weight: 500;
        letter-spacing: -1.5px;
        line-height: 150%;
    }

@media (max-width: 1199px) {
    .testimonial-warpper .testimonial-content-1 h3 {
        letter-spacing: initial;
    }
}

@media (max-width: 575px) {
    .testimonial-warpper .testimonial-content-1 h3 {
        font-size: 18px;
    }
}

.testimonial-warpper .testimonial-content-1 .testi-info {
    margin-top: 45px;
}

@media (max-width: 767px) {
    .testimonial-warpper .testimonial-content-1 .testi-info {
        margin-top: 30px;
    }
}

.testimonial-warpper .testimonial-content-1 .testi-info h4 {
    font-size: 20px;
    font-weight: 500;
}

.testimonial-warpper .testimonial-content-1 .testi-info p {
    font-size: 14px;
}

.testimonial-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .testimonial-section-2 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.testimonial-section-2 .section-title-area p {
    color: var(--header2);
}

.testimonial-box-items {
    margin-top: 30px;
    border-radius: 12px;
    padding: 50px 70px;
    padding-top: 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .testimonial-box-items {
        padding: 50px;
    }
}

@media (max-width: 1199px) {
    .testimonial-box-items {
        padding: 40px 25px;
    }
}

.testimonial-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    top: 50px;
    z-index: -1;
    border-radius: 12px;
    height: initial;
}

@media (max-width: 1399px) {
    .testimonial-box-items::before {
        top: 90px;
    }
}

.testimonial-box-items .quote-icon {
    width: 98px;
    height: 98px;
    line-height: 98px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--theme2);
    margin: 0 auto 50px;
    position: relative;
}

@media (max-width: 1199px) {
    .testimonial-box-items .quote-icon {
        margin-bottom: 28px;
    }
}

.testimonial-box-items .content {
    text-align: center;
}

    .testimonial-box-items .content h3 {
        font-size: 26px;
        color: var(--header2);
        line-height: 161.538%;
    }

@media (max-width: 1600px) {
    .testimonial-box-items .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 1399px) {
    .testimonial-box-items .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .testimonial-box-items .content h3 {
        font-size: 18px;
    }
}

.testimonial-box-items .content .client-info {
    border-top: 1px solid rgba(41, 15, 28, 0.1);
    padding-top: 40px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .testimonial-box-items .content .client-info {
        padding-top: 28px;
        margin-top: 28px;
    }
}

.testimonial-box-items .content .client-info h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--header2);
}

    .testimonial-box-items .content .client-info h4 span {
        font-size: 16px;
        font-weight: 400;
        font-family: "Inter", sans-serif;
    }

.testimonial-box-items .content .client-info .star {
    color: var(--theme2);
    margin-top: 10px;
}

.testimonial-section-2 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--header2);
}

    .testimonial-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme2);
    }

.testimonial-box-items-3 {
    margin-top: 30px;
    padding: 50px 30px;
    background-color: var(--bg4);
    border-radius: 10px;
}

    .testimonial-box-items-3.style-2 {
        background-color: var(--bg);
    }

        .testimonial-box-items-3.style-2 .star {
            color: var(--theme);
        }

        .testimonial-box-items-3.style-2 h4 {
            color: var(--header);
        }

        .testimonial-box-items-3.style-2 .client-info .inffo-content h5 {
            color: var(--header);
        }

@media (max-width: 575px) {
    .testimonial-box-items-3 {
        padding: 30px 25px;
    }
}

.testimonial-box-items-3 .star {
    color: var(--theme3);
    margin-bottom: 20px;
}

.testimonial-box-items-3 h4 {
    font-size: 20px;
    line-height: 140%;
    opacity: 0.8;
    color: var(--header3);
}

@media (max-width: 575px) {
    .testimonial-box-items-3 h4 {
        font-size: 16px;
    }
}

.testimonial-box-items-3 .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .testimonial-box-items-3 .client-info {
        margin-top: 25px;
    }
}

.testimonial-box-items-3 .client-info .thumb img {
    border-radius: 50%;
    border: 3px solid var(--white);
}

.testimonial-box-items-3 .client-info .inffo-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-box-items-3 .client-info .inffo-content span {
    color: var(--header3);
}

.testimonial-section-3 {
    position: relative;
}

    .testimonial-section-3 .array-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        z-index: 9;
        left: 11%;
        right: 11%;
    }

@media (max-width: 1199px) {
    .testimonial-section-3 .array-button {
        display: none;
    }
}

.testimonial-section-3 .array-button .array-prev, .testimonial-section-3 .array-button .array-next {
    background-color: var(--white);
    color: var(--header3);
}

    .testimonial-section-3 .array-button .array-prev:hover, .testimonial-section-3 .array-button .array-next:hover {
        background-color: var(--theme3);
        border: 1px solid var(--theme3);
        color: var(--white);
    }

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--header3);
}

    .testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme3);
    }

.testimonial-section-3.testi-sec-2 .array-button .array-prev, .testimonial-section-3.testi-sec-2 .array-button .array-next {
    background-color: var(--white);
    color: var(--header);
}

    .testimonial-section-3.testi-sec-2 .array-button .array-prev:hover, .testimonial-section-3.testi-sec-2 .array-button .array-next:hover {
        background-color: var(--theme);
        border: 1px solid var(--theme);
        color: var(--white);
    }

.testimonial-section-3.testi-sec-2 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--header);
}

    .testimonial-section-3.testi-sec-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--theme);
    }

.testimonial-section-5 .content {
    max-width: 400px;
}

    .testimonial-section-5 .content p {
        color: var(--header4);
        font-size: 16px;
        font-weight: 400;
        line-height: 162.5%;
        margin-bottom: 30px;
    }

.testimonial-box-style-5 {
    max-width: 530px;
    border-right: 1px solid #F0ECDF;
    padding-right: 50px;
    opacity: 0.2;
}

@media (max-width: 575px) {
    .testimonial-box-style-5 {
        padding-right: 0;
    }
}

.testimonial-box-style-5 .star {
    color: var(--header4);
    margin-bottom: 30px;
}

.testimonial-box-style-5 p {
    color: var(--header4);
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -1.5px;
    opacity: 0.88;
}

@media (max-width: 575px) {
    .testimonial-box-style-5 p {
        font-size: 16px;
    }
}

.testimonial-box-style-5 .client-info {
    border-top: 1px solid #F0ECDF;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-box-style-5 .info-content h4 {
    color: var(--header4);
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .testimonial-box-style-5 .info-content h4 {
        font-size: 18px;
    }
}

.testimonial-box-style-5 .info-content span {
    opacity: 0.72;
    color: var(--header4);
}

.testimonial-wrapper-5 {
    padding: 80px 60px;
    position: relative;
    z-index: 9;
    margin-top: 60px;
}

@media (max-width: 575px) {
    .testimonial-wrapper-5 {
        padding: 40px 30px;
    }
}

.testimonial-wrapper-5 .testi-left .array-button {
    display: flex;
    align-items: center;
    margin-top: 180px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-5 .testi-left .array-button {
        margin-top: 30px;
    }
}

.testimonial-wrapper-5 .testi-left .array-button .array-prev, .testimonial-wrapper-5 .testi-left .array-button .array-next {
    color: var(--header4);
}

    .testimonial-wrapper-5 .testi-left .array-button .array-prev:hover, .testimonial-wrapper-5 .testi-left .array-button .array-next:hover {
        background-color: var(--theme5);
        border: 1px solid var(--theme5);
    }

.testimonial-wrapper-5 .testi-left .array-button .line {
    width: 1px;
    height: 30px;
    background: #F0ECDF;
}

.testimonial-wrapper-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #FFFDF5;
    z-index: -1;
    width: 1000%;
}

.testimonial-wrapper-5 .testimonial-slider-5 {
    margin-right: -72%;
}

@media (max-width: 1600px) {
    .testimonial-wrapper-5 .testimonial-slider-5 {
        margin-right: -55%;
    }
}

@media (max-width: 1199px) {
    .testimonial-wrapper-5 .testimonial-slider-5 {
        margin-right: -120%;
    }
}

@media (max-width: 767px) {
    .testimonial-wrapper-5 .testimonial-slider-5 {
        margin-right: -75%;
    }
}

@media (max-width: 575px) {
    .testimonial-wrapper-5 .testimonial-slider-5 {
        margin-right: 0;
    }
}

.testimonial-wrapper-5 .swiper-slide.swiper-slide-active .testimonial-box-style-5 {
    opacity: 1;
}

.testimonial-section-4 {
    margin: 0 30px;
}

    .testimonial-section-4 .swiper-dot .swiper-pagination-bullet {
        background-color: var(--header4) !important;
    }

        .testimonial-section-4 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: var(--theme4) !important;
        }

.testimonial-box-style-4 {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--bg5);
}

    .testimonial-box-style-4 .quote-icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        border-radius: 50%;
        background-color: var(--theme4);
        margin-bottom: 40px;
    }

    .testimonial-box-style-4 h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--header4);
        opacity: 0.8;
        line-height: 125%;
    }

@media (max-width: 1600px) {
    .testimonial-box-style-4 h3 {
        font-size: 20px;
        line-height: 135%;
    }
}

@media (max-width: 575px) {
    .testimonial-box-style-4 h3 {
        font-size: 18px;
    }
}

.testimonial-box-style-4 .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid #DFDCD2;
    margin-top: 30px;
    padding-top: 30px;
}

@media (max-width: 767px) {
    .testimonial-box-style-4 .client-info-item {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.testimonial-box-style-4 .client-info-item .client-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--header4);
}

@media (max-width: 1600px) {
    .testimonial-box-style-4 .client-info-item .client-info h4 {
        font-size: 18px;
    }
}

.testimonial-box-style-4 .client-info-item .client-info span {
    font-weight: 400;
    color: var(--header4);
    font-size: 16px;
}

.testimonial-box-style-4 .client-info-item .star {
    color: var(--theme4);
}

.testimonial-box-style-4.style-2 {
    background-color: var(--header4);
}

    .testimonial-box-style-4.style-2 h3 {
        color: var(--white);
        opacity: 0.8;
    }

    .testimonial-box-style-4.style-2 .client-info-item {
        border-top: 1px solid rgba(223, 220, 210, 0.12);
    }

        .testimonial-box-style-4.style-2 .client-info-item .client-info h4 {
            color: var(--white);
        }

        .testimonial-box-style-4.style-2 .client-info-item .client-info span {
            color: var(--white);
        }

        .testimonial-box-style-4.style-2 .client-info-item .star {
            color: var(--theme4);
        }

.pricing-box-items {
    margin-top: 30px;
    background-color: var(--bg);
    border-radius: 8px;
    border: 1px solid #E6E8EB;
    padding: 40px 30px;
}

    .pricing-box-items .pricing-header {
        margin-bottom: 30px;
    }

        .pricing-box-items .pricing-header span {
            font-size: 20px;
            font-weight: 500;
            text-transform: capitalize;
            display: inline-block;
            margin-bottom: 20px;
        }

        .pricing-box-items .pricing-header h3 {
            font-size: 72px;
            font-weight: 600;
            letter-spacing: -3px;
            line-height: 1;
            margin-bottom: 25px;
        }

@media (max-width: 1399px) {
    .pricing-box-items .pricing-header h3 {
        font-size: 55px;
    }
}

.pricing-box-items .pricing-header h3 sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: initial;
    margin-left: 0;
}

.pricing-box-items .pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 0 30px;
    border-radius: 48px;
    background: var(--bg2);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
}

    .pricing-box-items .pricing-btn .content-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
    }

    .pricing-box-items .pricing-btn .default-content,
    .pricing-box-items .pricing-btn .hover-content {
        display: flex;
        align-items: center;
        gap: 8px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateY(0);
        white-space: nowrap;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .pricing-box-items .pricing-btn .default-content {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }

    .pricing-box-items .pricing-btn .hover-content {
        transform: translate(-50%, -50%) translateY(30px);
        opacity: 0;
    }

    .pricing-box-items .pricing-btn:hover {
        background: var(--theme);
    }

        .pricing-box-items .pricing-btn:hover .default-content {
            transform: translate(-50%, -50%) translateY(-30px);
            opacity: 0;
        }

        .pricing-box-items .pricing-btn:hover .hover-content {
            transform: translate(-50%, -50%) translateY(0);
            opacity: 1;
        }

.pricing-box-items .pricing-list {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

    .pricing-box-items .pricing-list h5 {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -1.5px;
    }

@media (max-width: 1199px) {
    .pricing-box-items .pricing-list h5 {
        letter-spacing: inherit;
    }
}

.pricing-box-items .pricing-list ul {
    margin-top: 20px;
}

    .pricing-box-items .pricing-list ul li {
        color: var(--text);
        font-size: 16px;
        font-weight: 500;
        line-height: 162.5%;
        letter-spacing: -1px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .pricing-box-items .pricing-list ul li i {
            font-size: 18px;
            color: var(--header);
        }

        .pricing-box-items .pricing-list ul li:not(:last-child) {
            margin-bottom: 15px;
        }

.pricing-box-items.active {
    background-color: var(--header);
}

    .pricing-box-items.active .pricing-header {
        margin-bottom: 30px;
    }

        .pricing-box-items.active .pricing-header span, .pricing-box-items.active .pricing-header h3, .pricing-box-items.active .pricing-header p, .pricing-box-items.active .pricing-header sub {
            color: var(--white) !important;
        }

    .pricing-box-items.active .pricing-btn {
        background-color: var(--theme);
    }

        .pricing-box-items.active .pricing-btn:hover {
            background-color: var(--white);
            color: var(--header);
        }

    .pricing-box-items.active .pricing-list {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
    }

        .pricing-box-items.active .pricing-list h5 {
            color: var(--white);
        }

        .pricing-box-items.active .pricing-list ul {
            margin-top: 20px;
        }

            .pricing-box-items.active .pricing-list ul li {
                color: var(--white);
            }

                .pricing-box-items.active .pricing-list ul li i {
                    color: var(--theme);
                }

.pricing-section .pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
    line-height: 60px;
    background-color: var(--header);
    padding: 7px;
    border-radius: 70px;
}

    .pricing-section .pricing-toggle-wrapper .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ddd;
        transition: 0.4s;
        border-radius: 34px;
    }

        .pricing-section .pricing-toggle-wrapper .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

    .pricing-section .pricing-toggle-wrapper input:checked + .slider {
        background-color: var(--theme3);
    }

        .pricing-section .pricing-toggle-wrapper input:checked + .slider:before {
            transform: translateX(26px);
        }

    .pricing-section .pricing-toggle-wrapper .toggle-label {
        padding: 0;
        height: 47px;
        line-height: 47px;
        padding: 0 32px;
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
        border-radius: 66.667px;
        cursor: pointer;
        transition: 0.3s;
    }

        .pricing-section .pricing-toggle-wrapper .toggle-label.active {
            background: var(--theme);
        }

.pricing-section .price {
    transition: opacity 0.3s ease;
}

    .pricing-section .price.fade-out {
        opacity: 0;
    }

    .pricing-section .price.fade-in {
        opacity: 1;
    }

.team-section-3 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .team-section-3 {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.team-section-3 .section-title p {
    color: var(--header3);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 155.556%;
    max-width: 270px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.team-box-item-3 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

    .team-box-item-3 .thumb img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        display: block;
        object-fit: cover;
        transition: all 500ms ease;
    }

        .team-box-item-3 .thumb img:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            transform: translateX(50%) scaleX(2);
            opacity: 0;
            filter: blur(10px);
        }

    .team-box-item-3 .thumb .social-icon {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        left: 0;
        right: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

        .team-box-item-3 .thumb .social-icon a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            color: var(--white);
            background-color: var(--theme3);
            font-size: 14px;
            transition: all 0.3s ease;
        }

            .team-box-item-3 .thumb .social-icon a:hover {
                background-color: var(--header3);
            }

.team-box-item-3 .content {
    margin-top: 20px;
    position: relative;
}

    .team-box-item-3 .content .icon {
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 32px;
        border-radius: 50%;
        text-align: center;
        background-color: rgba(31, 41, 55, 0.35);
        color: var(--white);
        position: absolute;
        right: 0;
        top: 0;
    }

        .team-box-item-3 .content .icon:hover {
            background-color: var(--theme3);
        }

    .team-box-item-3 .content h3 {
        font-weight: 600;
    }

        .team-box-item-3 .content h3 a {
            color: var(--header3);
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline;
            transition: all 0.3s ease;
        }

            .team-box-item-3 .content h3 a:hover {
                color: var(--theme3);
                background-size: 100% 2px;
                background-image: linear-gradient(180deg, var(--theme3) 0%, var(--theme3) 100%);
            }

.team-box-item-3.style-2 .thumb .social-icon a {
    width: 40px;
    color: var(--white);
    background-color: var(--theme);
}

    .team-box-item-3.style-2 .thumb .social-icon a:hover {
        background-color: var(--header3);
    }

.team-box-item-3.style-2 .content .icon {
    background-color: rgba(31, 41, 55, 0.35);
}

    .team-box-item-3.style-2 .content .icon:hover {
        background-color: var(--theme);
    }

.team-box-item-3.style-2 .content h3 {
    font-weight: 600;
}

    .team-box-item-3.style-2 .content h3 a {
        color: var(--header);
    }

        .team-box-item-3.style-2 .content h3 a:hover {
            color: var(--theme);
            background-size: 100% 2px;
            background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
        }

.team-box-item-3:hover .thumb img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.team-box-item-3:hover .thumb img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.team-box-item-3:hover .thumb .social-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.team-section-3 {
    position: relative;
    z-index: 9;
}

    .team-section-3 .line-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
    }

        .team-section-3 .line-shape img {
            width: 100%;
        }

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 30px;
    background-color: #F2F5F7;
    border-radius: 10px;
    padding: 45px 40px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .offer {
    background-color: var(--theme);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
    margin-top: 30px;
}

    .team-details-wrapper .team-details-content .team-infrom li {
        display: flex;
        gap: 100px;
        align-items: center;
        color: var(--header);
        font-size: 16px;
        font-weight: 500;
    }

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .team-infrom li {
        display: grid;
        gap: 20px;
    }
}

.team-details-wrapper .team-details-content .team-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
    margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

    .team-details-wrapper .team-details-content .social-icon a {
        color: var(--white);
        background: rgba(61, 72, 87, 0.5);
        width: 48px;
        height: 48px;
        line-height: 48px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
    }

        .team-details-wrapper .team-details-content .social-icon a:hover {
            background-color: var(--theme);
        }

.team-details-wrapper .team-middle-items .team-skill-area {
    margin-top: 60px;
}

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
        margin-right: 60px;
    }

@media (max-width: 1199px) {
    .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
        margin-right: 0;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
    width: 100%;
}

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
        margin-bottom: 30px;
    }

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
            color: var(--header);
        }

        .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
            font-size: 16px;
            color: var(--header);
        }

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
        background: #E6E8EB;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        display: flex;
        height: 6px;
        width: 100%;
    }

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
        animation: load 3s normal forwards;
        border-radius: 0;
        background: var(--header);
        height: 6px;
        width: 0;
    }

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
        animation: load2 3s normal forwards;
    }

    .team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
        animation: load3 3s normal forwards;
    }

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 69%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 98%;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
    display: flex;
    gap: 20px;
}

    .team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
        margin-bottom: 20px;
    }

.team-details-wrapper .team-bottom-items {
    margin-top: 120px;
    border-radius: 10px;
    background: #F2F5F7;
    padding: 80px 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 100px;
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-bottom-items {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-bottom-items {
        padding: 30px;
    }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
    margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
    display: flex;
    gap: 10px;
    border-radius: 70px;
    border: 1px solid #3D4857;
    display: inline-flex;
    padding: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: 30px;
}

    .team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
        color: var(--header);
    }

.team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 80px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items .team-right-items {
        margin-left: 0;
    }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
    margin-top: 30px;
}

    .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input, .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
        outline: none;
        width: 100%;
        color: var(--header);
        padding-bottom: 20px;
        border: none;
        background: transparent;
        border-bottom: 1px solid rgba(15, 23, 42, 0.2);
        text-transform: capitalize;
    }

        .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder, .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
            color: var(--header);
        }

    .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
        padding-bottom: 120px;
    }

    .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
        border: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.2);
        background-color: transparent;
        width: 100%;
        height: initial;
        line-height: initial;
        text-transform: capitalize;
        color: var(--header);
        padding-bottom: 20px;
        border-radius: 0;
    }

        .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
            color: var(--header);
        }

        .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
            border-bottom: 2px solid var(--header);
            border-right: 2px solid var(--header);
            width: 8px;
            height: 8px;
            right: 12px;
        }

        .team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
            width: 100%;
        }

.news-box-items {
    margin-top: 30px;
    border-radius: 0 0 10px 10px;
    background-color: var(--bg);
}

    .news-box-items .thumb {
        overflow: hidden;
        position: relative;
        border-radius: 10px 10px 0 0;
    }

        .news-box-items .thumb img {
            width: 100%;
            height: 100%;
            border-radius: 10px 10px 0 0;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .news-box-items .thumb img:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px);
            }

    .news-box-items .content {
        padding: 25px;
    }

        .news-box-items .content ul {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

            .news-box-items .content ul li a {
                display: inline-block;
                font-size: 15px;
                font-weight: 500;
                color: var(--white);
                background-color: var(--header);
                padding: 0 10px;
                height: 26px;
                line-height: 26px;
                border-radius: 18px;
            }

                .news-box-items .content ul li a:hover {
                    background-color: var(--theme);
                }

        .news-box-items .content h3 a {
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline;
        }

            .news-box-items .content h3 a:hover {
                color: var(--theme);
                background-size: 100% 2px;
                background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
            }

        .news-box-items .content .news-bottom {
            margin-top: 35px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .news-box-items .content .news-bottom .link-btn {
                display: inline-block;
                position: relative;
                color: var(--header);
                font-size: 16px;
                font-weight: 600;
                text-transform: capitalize;
            }

                .news-box-items .content .news-bottom .link-btn .content-wrap {
                    display: block;
                    position: relative;
                    line-height: 1.2;
                }

                .news-box-items .content .news-bottom .link-btn .default-content,
                .news-box-items .content .news-bottom .link-btn .hover-content {
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: -10px;
                    white-space: nowrap;
                    transition: transform 0.3s ease, opacity 0.3s ease;
                }

                .news-box-items .content .news-bottom .link-btn .hover-content {
                    transform: translateY(100%);
                    opacity: 0;
                }

                .news-box-items .content .news-bottom .link-btn:hover {
                    color: var(--theme);
                }

                    .news-box-items .content .news-bottom .link-btn:hover .default-content {
                        transform: translateY(-100%);
                        opacity: 0;
                    }

                    .news-box-items .content .news-bottom .link-btn:hover .hover-content {
                        transform: translateY(0);
                        opacity: 1;
                    }

                .news-box-items .content .news-bottom .link-btn i {
                    margin-right: 5px;
                }

    .news-box-items:hover .thumb img:first-child {
        -webkit-transform: translateX(0) scaleX(1);
        transform: translate(0) scaleX(1);
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    .news-box-items:hover .thumb img:nth-child(2) {
        -webkit-transform: translateX(-50%) scaleX(2);
        transform: translateX(-50%) scaleX(2);
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

.news-box-items-2 {
    box-shadow: 0 4px 30px rgba(41, 15, 28, 0.1);
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
}

@media (max-width: 470px) {
    .news-box-items-2 {
        display: block;
    }
}

.news-box-items-2 .thumb {
    max-width: 260px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

@media (max-width: 470px) {
    .news-box-items-2 .thumb {
        max-width: initial;
        margin-bottom: 25px;
    }
}

.news-box-items-2 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .news-box-items-2 .thumb img:first-child {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        -webkit-transform: translateX(50%) scaleX(2);
        transform: translate(50%) scaleX(2);
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

.news-box-items-2 .content ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

    .news-box-items-2 .content ul li {
        color: var(--header2);
        text-transform: capitalize;
    }

        .news-box-items-2 .content ul li a {
            display: inline-block;
            font-size: 15px;
            font-weight: 500;
            color: var(--white);
            background-color: var(--theme2);
            padding: 0 10px;
            height: 26px;
            line-height: 26px;
            border-radius: 18px;
        }

            .news-box-items-2 .content ul li a:hover {
                background-color: var(--header2);
            }

.news-box-items-2 .content h3 {
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 1600px) {
    .news-box-items-2 .content h3 {
        font-size: 25px;
    }
}

@media (max-width: 1399px) {
    .news-box-items-2 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .news-box-items-2 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .news-box-items-2 .content h3 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .news-box-items-2 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .news-box-items-2 .content h3 {
        font-size: 18px;
    }
}

.news-box-items-2 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header2);
}

    .news-box-items-2 .content h3 a:hover {
        color: var(--theme2);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme2) 0%, var(--theme2) 100%);
    }

.news-box-items-2 .content .link-btn {
    color: var(--header2);
    margin-top: 30px;
}

    .news-box-items-2 .content .link-btn i {
        margin-right: 0;
        margin-left: 5px;
    }

    .news-box-items-2 .content .link-btn:hover {
        color: var(--theme2);
    }

.news-box-items-2:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-box-items-2:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-style-5 {
    margin-top: 30px;
    border: 1px solid #F0ECDF;
    padding: 20px;
    position: relative;
    padding-bottom: 0;
}

    .news-box-style-5 .thumb {
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

        .news-box-style-5 .thumb img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .news-box-style-5 .thumb img:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px);
            }

    .news-box-style-5 .content {
        padding: 25px 10px;
    }

        .news-box-style-5 .content ul {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

            .news-box-style-5 .content ul li {
                color: rgba(0, 0, 0, 0.8);
            }

                .news-box-style-5 .content ul li a {
                    display: inline-block;
                    font-size: 15px;
                    font-weight: 500;
                    color: var(--header4);
                    background-color: #F0ECDF;
                    padding: 0 10px;
                    height: 26px;
                    line-height: 26px;
                    border-radius: 18px;
                }

                    .news-box-style-5 .content ul li a:hover {
                        background-color: var(--theme6);
                    }

                .news-box-style-5 .content ul li span {
                    color: rgba(0, 0, 0, 0.7);
                }

        .news-box-style-5 .content h3 {
            font-size: 24px;
            font-weight: 600;
        }

@media (max-width: 1399px) {
    .news-box-style-5 .content h3 {
        font-size: 19px;
    }
}

@media (max-width: 1199px) {
    .news-box-style-5 .content h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .news-box-style-5 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .news-box-style-5 .content h3 {
        font-size: 22px;
    }
}

.news-box-style-5 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header4);
}

    .news-box-style-5 .content h3 a:hover {
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--header4) 0%, var(--header4) 100%);
    }

.news-box-style-5 .content .news-btn {
    display: inline-block;
    color: var(--header4);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-top: 30px;
}

    .news-box-style-5 .content .news-btn i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        text-align: center;
        background-color: var(--header4);
        color: var(--white);
        margin-left: 10px;
        transition: all 0.4s ease-in-out;
    }

    .news-box-style-5 .content .news-btn:hover i {
        background-color: var(--theme5);
        color: var(--header4);
    }

.news-box-style-5:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-box-style-5:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-left-items {
    margin-top: 30px;
    border: 1px solid #DFDCD2;
    padding: 15px;
}

    .news-left-items .thumb {
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

        .news-left-items .thumb img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .news-left-items .thumb img:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px);
            }

    .news-left-items .content {
        padding: 20px 15px 15px;
    }

        .news-left-items .content ul {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

            .news-left-items .content ul li {
                color: var(--header4);
            }

                .news-left-items .content ul li a {
                    display: inline-block;
                    font-size: 15px;
                    font-weight: 500;
                    color: var(--white);
                    background-color: var(--header4);
                    padding: 0 10px;
                    height: 26px;
                    line-height: 26px;
                    border-radius: 18px;
                }

                    .news-left-items .content ul li a:hover {
                        background-color: var(--theme4);
                    }

        .news-left-items .content h3 {
            font-size: 32px;
            font-weight: 600;
        }

@media (max-width: 575px) {
    .news-left-items .content h3 {
        font-size: 24px;
    }
}

.news-left-items .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header4);
}

    .news-left-items .content h3 a:hover {
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 100%);
        color: var(--theme4);
    }

.news-left-items .content .link-btn {
    color: var(--header4);
    margin-top: 20px;
}

    .news-left-items .content .link-btn i {
        margin-right: 0;
        margin-left: 5px;
    }

    .news-left-items .content .link-btn:hover {
        color: var(--theme4);
    }

.news-left-items:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-left-items:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-right-list {
    margin-top: 30px;
}

    .news-right-list li:not(:last-child) {
        margin-bottom: 30px;
    }

    .news-right-list li .news-box-style-4 {
        border: 1px solid #DFDCD2;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 575px) {
    .news-right-list li .news-box-style-4 {
        gap: 18px;
    }
}

.news-right-list li .news-box-style-4 .thumb {
    max-width: 293px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 9;
    height: 253px;
}

@media (max-width: 1399px) {
    .news-right-list li .news-box-style-4 .thumb {
        height: 227px;
    }
}

@media (max-width: 1199px) {
    .news-right-list li .news-box-style-4 .thumb {
        height: 222px;
    }
}

@media (max-width: 575px) {
    .news-right-list li .news-box-style-4 .thumb {
        height: 200px;
    }
}

.news-right-list li .news-box-style-4 .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    object-fit: cover;
}

    .news-right-list li .news-box-style-4 .thumb img:first-child {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        -webkit-transform: translateX(50%) scaleX(2);
        transform: translate(50%) scaleX(2);
        opacity: 0;
        -webkit-filter: blur(10px);
        filter: blur(10px);
    }

.news-right-list li .news-box-style-4 .content ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .news-right-list li .news-box-style-4 .content ul li {
        color: var(--header4);
    }

        .news-right-list li .news-box-style-4 .content ul li:not(:last-child) {
            margin-bottom: 0;
        }

        .news-right-list li .news-box-style-4 .content ul li a {
            display: inline-block;
            font-size: 15px;
            font-weight: 500;
            color: var(--white);
            background-color: var(--header4);
            padding: 0 10px;
            height: 26px;
            line-height: 26px;
            border-radius: 18px;
        }

            .news-right-list li .news-box-style-4 .content ul li a:hover {
                background-color: var(--theme4);
            }

.news-right-list li .news-box-style-4 .content h3 {
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-right-list li .news-box-style-4 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 470px) {
    .news-right-list li .news-box-style-4 .content h3 {
        font-size: 18px;
    }
}

.news-right-list li .news-box-style-4 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--header4);
}

    .news-right-list li .news-box-style-4 .content h3 a:hover {
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme4) 0%, var(--theme4) 100%);
        color: var(--theme4);
    }

.news-right-list li .news-box-style-4 .content .link-btn {
    color: var(--header4);
    margin-top: 20px;
}

    .news-right-list li .news-box-style-4 .content .link-btn i {
        margin-right: 0;
        margin-left: 5px;
    }

    .news-right-list li .news-box-style-4 .content .link-btn:hover {
        color: var(--theme4);
    }

.news-right-list li .news-box-style-4:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-right-list li .news-box-style-4:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
    margin-bottom: 30px;
}

    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
        overflow: hidden;
        border-radius: 12px;
    }

        .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
            width: 100%;
            height: 100%;
            transform: scale(1.02);
            transition: all 1.5s ease-out;
            border-radius: 12px;
        }

    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 24px;
        margin-bottom: 15px;
    }

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
    margin-right: 10px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 {
        font-size: 25px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content h3 a:hover {
        color: var(--theme);
        background-size: 100% 2px;
        background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
    }

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
    margin-top: 24px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

    .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
        gap: 30px;
        margin-bottom: 10px;
    }

        .news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
            font-size: 14px;
            font-weight: 500;
        }

            .news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
                color: var(--theme);
                margin-right: 5px;
            }

    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        margin-bottom: 20px;
        font-size: 42px;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
        font-size: 24px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: var(--bg);
    border-radius: 8px;
}

    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
        max-width: 650px;
        font-weight: 500;
        text-transform: capitalize;
        font-style: italic;
        line-height: 26px;
    }

    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
        float: right;
        margin-top: -30px;
    }

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        display: inline-block;
        padding: 12px 26px;
        line-height: 1;
        background: var(--bg);
        margin-right: 8px;
        text-transform: capitalize;
        font-weight: 500;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        border-radius: 4px;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

    .news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
        margin-right: 10px;
    }

    .news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
        color: var(--theme);
    }

.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
    padding: 50px 40px;
    background-color: var(--bg);
    border-radius: 8px;
}

    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 30px;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 28px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #e5e5e5;
}

    .news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
        border: none;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white);
    color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap {
    background-color: var(--bg);
    border-radius: 8px;
    padding: 50px 40px;
    margin-top: 40px;
}

    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 32px;
        margin-bottom: 30px;
        font-weight: 600;
    }

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--white);
    border: none;
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 5px;
}

    .news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
        color: var(--text);
    }

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 30px;
    background-color: #F2F5F7;
    padding: 30px;
    border-radius: 8px;
}

    .gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
        width: 100%;
        position: relative;
    }

        .gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
            background-color: var(--white);
            font-size: 18px;
            font-weight: 400;
            padding: 16px 20px;
            width: 100%;
            border: none;
            color: var(--text);
            border-radius: 6px;
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
            position: absolute;
            right: -2px;
            top: 0;
            width: 58px;
            border-radius: 6px;
            font-size: 18px;
            height: 100%;
            background-color: var(--theme);
            color: var(--white);
            text-align: center;
            transition: all 0.3s ease-in-out;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

            .gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
                background-color: var(--header);
            }

    .gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
        margin-bottom: 20px;
    }

        .gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
            font-weight: 600;
            font-size: 22px;
        }

    .gt-main-sideber .gt-single-sideber-widget .amenities-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
    }

        .gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
            margin-bottom: 20px;
        }

    .gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 600;
        color: var(--header);
        transition: all 0.4s ease-in-out;
        background-color: var(--white);
        padding: 22px 25px;
        font-family: "Inter", sans-serif;
        line-height: 1;
        text-transform: capitalize;
        border-radius: 8px;
    }

        .gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
            color: var(--header);
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
            transition: all 0.4s ease-in-out;
            color: var(--header);
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
            margin-bottom: 20px;
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
            font-weight: 400;
            color: var(--theme);
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
            background-color: var(--theme);
        }

            .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
                color: var(--white);
            }

            .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
                color: var(--white);
            }

    .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
            border-radius: 8px;
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
            margin-bottom: 20px;
        }

        .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 18px;
            line-height: 150%;
            font-family: "Public Sans", sans-serif;
        }

            .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
                color: var(--theme);
            }

        .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
            color: var(--text);
            font-weight: 500;
        }

    .gt-main-sideber .gt-single-sideber-widget .tagcloud a {
        display: inline-block;
        padding: 12px 18px;
        line-height: 1;
        font-weight: 600;
        background: var(--white);
        font-family: "Inter", sans-serif;
        margin-right: 10px;
        margin-bottom: 10px;
        text-transform: capitalize;
        border-radius: 4px;
    }

        .gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
            margin-right: 0;
        }

        .gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
            background-color: var(--theme);
            color: var(--white);
        }

.brand-section {
    margin: 30px;
    margin-bottom: 0;
}

.brand-box-1 {
    height: 125px;
    line-height: 125px;
    border: 1px solid #E6E8EB;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .brand-box-1.style-4 {
        border-radius: 0;
        border: 1px solid #DFDCD2;
    }

        .brand-box-1.style-4::before {
            position: absolute;
            content: "";
            left: 0px;
            top: 0px;
            right: 0px;
            bottom: 0px;
            opacity: 0;
            -webkit-transform: scale(1, 0.3);
            transform: scale(1, 0.3);
            background-color: var(--bg5);
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            z-index: -1;
        }

        .brand-box-1.style-4:hover {
            border: 1px solid var(--bg5);
        }

            .brand-box-1.style-4:hover::before {
                opacity: 1;
                transform: scale(1, 1);
            }

            .brand-box-1.style-4:hover .brand-img-1 {
                opacity: 1;
                filter: brightness(1.4);
            }

                .brand-box-1.style-4:hover .brand-img-1 img {
                    filter: brightness(1.4);
                }

    .brand-box-1 .brand-img-1 {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .brand-box-1 .brand-img-1 img {
            opacity: 0.4;
            transition: all 0.6s ease;
            transform: translateY(0);
        }

        .brand-box-1 .brand-img-1:last-child img {
            transform: translateY(-350%);
            opacity: 0;
        }

    .brand-box-1:hover .brand-img-1:first-child img {
        transform: translateY(100%);
        opacity: 0;
    }

    .brand-box-1:hover .brand-img-1:last-child img {
        transform: translateY(0);
        opacity: 1;
    }

    .brand-box-1.style-border-5 {
        border: 1px solid #F0ECDF;
        border-radius: 0;
    }

.brand-section-2 {
    background-color: var(--theme3);
    margin: 0 30px;
    margin-top: 30px;
    padding: 60px 30px 30px;
    border-radius: 14px;
}

    .brand-section-2 .brand-box-1 {
        border: none;
        background: rgba(255, 255, 255, 0.15);
    }

        .brand-section-2 .brand-box-1 .brand-img-1 {
            filter: brightness(0) invert(1) !important;
        }

            .brand-section-2 .brand-box-1 .brand-img-1 img {
                filter: brightness(0) invert(1) !important;
                opacity: 1;
            }

.faq-section {
    margin: 0 30px;
}

@media (max-width: 1399px) {
    .faq-section {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.faq-image-1 {
    border-radius: 16px;
    position: relative;
}

@media (max-width: 1899px) {
    .faq-image-1 {
        height: 830px;
    }

        .faq-image-1 img {
            object-fit: cover;
        }
}

@media (max-width: 991px) {
    .faq-image-1 {
        height: initial;
    }
}

.faq-image-1 .incrase-box {
    background-color: var(--header);
    padding: 30px;
    padding-top: 60px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-radius: 8px;
    display: flex;
    align-items: end;
    gap: 50px;
}

@media (max-width: 575px) {
    .faq-image-1 .incrase-box {
        display: none;
    }
}

.faq-image-1 .incrase-box h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    position: absolute;
    top: 30px;
    left: 30px;
}

.faq-image-1 .incrase-box h3 {
    color: var(--white);
    font-size: 72px;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: -8px;
}

.faq-image-1 .incrase-box img {
    width: initial;
    height: initial;
    border-radius: 0;
}

.faq-image-1 img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.faq-content-1 {
    background-color: var(--bg);
    border-radius: 16px;
    padding-left: 50px !important;
    padding-right: 50px !important;
}

@media (max-width: 1199px) {
    .faq-content-1 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.faq-content-1 .accordion-box {
    position: relative;
    margin-top: 50px;
    max-width: 600px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 30px;
}

@media (max-width: 767px) {
    .faq-content-1 .accordion-box {
        margin-top: 30px;
    }
}

.faq-content-1 .accordion-box .block {
    position: relative;
    background-color: transparent;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    margin-bottom: 30px;
    line-height: 1;
    padding-bottom: 32px;
    padding-left: 66px;
}

@media (max-width: 767px) {
    .faq-content-1 .accordion-box .block {
        padding-left: 40px;
    }
}

.faq-content-1 .accordion-box .block .acc-btn {
    position: relative;
    font-size: 24px;
    color: var(--header);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 470px) {
    .faq-content-1 .accordion-box .block .acc-btn {
        font-size: 20px;
    }
}

.faq-content-1 .accordion-box .block .acc-btn .number {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -3px;
    margin-left: -50px;
    margin-right: 15px;
}

.faq-content-1 .accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 35px;
    font-size: 18px;
    line-height: 18px;
    color: var(--header);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-content-1 .accordion-box .block .acc-content {
    position: relative;
    display: none;
    margin-top: 22px;
}

@media (max-width: 470px) {
    .faq-content-1 .accordion-box .block .acc-content {
        margin-top: 10px;
    }
}

.faq-content-1 .accordion-box .block .acc-content .content {
    position: relative;
}

    .faq-content-1 .accordion-box .block .acc-content .content .text {
        line-height: 175%;
        font-size: 16px;
        font-weight: 400;
        color: var(--header);
        max-width: 455px;
    }

@media (max-width: 1199px) {
    .faq-content-1 .accordion-box .block .acc-content .content .text {
        font-size: 14px;
    }
}

@media (max-width: 470px) {
    .faq-content-1 .accordion-box .block .acc-content .content .text {
        font-size: 13px;
    }
}

.faq-content-1 .accordion-box .block .acc-content.current {
    display: block;
}

.faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
    content: "\f062";
    color: var(--theme);
}

.faq-content-1 .accordion-box .block .acc-btn.active {
    color: var(--theme);
}

.faq-content-1 .accordion-box .block:last-child {
    margin-bottom: 0;
}

.faq-items-2 .accordion-box {
    position: relative;
    margin-top: 50px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-top: 30px;
}

@media (max-width: 767px) {
    .faq-items-2 .accordion-box {
        margin-top: 30px;
    }
}

.faq-items-2 .accordion-box .block {
    position: relative;
    background-color: transparent;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    margin-bottom: 30px;
    line-height: 1;
    padding-bottom: 32px;
}

@media (max-width: 767px) {
    .faq-items-2 .accordion-box .block {
        padding-left: 40px;
        line-height: 1.3;
    }
}

.faq-items-2 .accordion-box .block .acc-btn {
    position: relative;
    font-size: 24px;
    color: var(--header3);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 1199px) {
    .faq-items-2 .accordion-box .block .acc-btn {
        padding-right: 40px;
    }
}

@media (max-width: 470px) {
    .faq-items-2 .accordion-box .block .acc-btn {
        font-size: 20px;
    }
}

.faq-items-2 .accordion-box .block .acc-btn .number {
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -3px;
    margin-left: -50px;
    margin-right: 15px;
}

.faq-items-2 .accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 35px;
    font-size: 16px;
    line-height: 18px;
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--header3);
}

.faq-items-2 .accordion-box .block .acc-content {
    position: relative;
    display: none;
    margin-top: 22px;
}

@media (max-width: 470px) {
    .faq-items-2 .accordion-box .block .acc-content {
        margin-top: 10px;
    }
}

.faq-items-2 .accordion-box .block .acc-content .content {
    position: relative;
}

    .faq-items-2 .accordion-box .block .acc-content .content .text {
        line-height: 175%;
        font-size: 18px;
        font-weight: 400;
        color: var(--header3);
        opacity: 0.8;
        max-width: 675px;
    }

@media (max-width: 1199px) {
    .faq-items-2 .accordion-box .block .acc-content .content .text {
        font-size: 14px;
    }
}

@media (max-width: 470px) {
    .faq-items-2 .accordion-box .block .acc-content .content .text {
        font-size: 13px;
    }
}

.faq-items-2 .accordion-box li {
    position: relative;
}

    .faq-items-2 .accordion-box li .number {
        color: var(--header3);
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -1.5px;
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(-90deg);
    }

@media (max-width: 991px) {
    .faq-items-2 .accordion-box li .number {
        display: none;
    }
}

.faq-items-2 .accordion-box .block .acc-content.current {
    display: block;
}

.faq-items-2 .accordion-box .block .acc-btn.active .icon:before {
    content: "\f00d";
}

.faq-items-2 .accordion-box .block .acc-btn.active .icon {
    background-color: var(--theme3);
}

.faq-items-2 .accordion-box .block .acc-btn.active {
    color: var(--theme3);
}

.faq-items-2 .accordion-box .block:last-child {
    margin-bottom: 0;
}

.faq-items-2.style-faq-2 .accordion-box {
    position: relative;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

    .faq-items-2.style-faq-2 .accordion-box .block {
        position: relative;
        background-color: #F2F5F7;
        margin-bottom: 10px;
        border-bottom: none;
        margin-bottom: 30px;
        border-radius: 8px;
        line-height: 1;
        padding: 30px 30px;
    }

@media (max-width: 767px) {
    .faq-items-2.style-faq-2 .accordion-box .block {
        padding-left: 30px;
        line-height: 1.3;
    }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    position: relative;
    font-size: 24px;
    color: var(--header);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 1199px) {
    .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
        font-size: 20px;
        padding-right: 60px !important;
    }
}

@media (max-width: 575px) {
    .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
        font-size: 18px;
        padding-right: 60px !important;
    }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active {
    color: var(--theme);
}

    .faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active .icon {
        background-color: var(--theme);
        color: var(--white);
    }

@media (max-width: 1199px) {
    .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
        padding-right: 0;
    }
}

@media (max-width: 470px) {
    .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
        font-size: 20px;
    }
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-btn .icon {
    color: var(--white);
    background-color: var(--header);
}

.faq-items-2.style-faq-2 .accordion-box .block .acc-content {
    margin-top: 22px;
}

@media (max-width: 470px) {
    .faq-items-2.style-faq-2 .accordion-box .block .acc-content {
        margin-top: 10px;
    }
}

.faq-about {
    border-top: 1px solid #E6E8EB;
}

.cta-newsletter-section {
    position: relative;
    border-radius: 16px 16px 0 0;
    margin: 0 30px;
    padding: 80px 0;
}

@media (max-width: 1399px) {
    .cta-newsletter-section {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.cta-newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .cta-newsletter-wrapper.style-2 h2 {
        font-size: 78px;
        font-weight: 500;
        line-height: 112.821%;
        letter-spacing: -3.306px;
    }

@media (max-width: 1199px) {
    .cta-newsletter-wrapper.style-2 h2 {
        letter-spacing: initial;
    }
}

@media (max-width: 991px) {
    .cta-newsletter-wrapper.style-2 h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .cta-newsletter-wrapper.style-2 h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .cta-newsletter-wrapper.style-2 h2 {
        font-size: 35px;
    }
}

.cta-newsletter-wrapper.style-2 .content {
    max-width: 420px;
}

    .cta-newsletter-wrapper.style-2 .content p {
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        line-height: 144.444%;
        letter-spacing: -1px;
        font-family: "Inter", sans-serif;
        margin-bottom: 30px;
    }

@media (max-width: 1199px) {
    .cta-newsletter-wrapper.style-2 .content p {
        line-height: 160%;
    }
}

@media (max-width: 767px) {
    .cta-newsletter-wrapper.style-2 .content p {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .cta-newsletter-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
        justify-content: center;
    }
}

.cta-newsletter-wrapper h2 {
    color: var(--white);
    font-size: 69.677px;
    font-weight: 500;
    letter-spacing: -2.98px;
}

@media (max-width: 1199px) {
    .cta-newsletter-wrapper h2 {
        letter-spacing: initial;
    }
}

@media (max-width: 991px) {
    .cta-newsletter-wrapper h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .cta-newsletter-wrapper h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .cta-newsletter-wrapper h2 {
        font-size: 35px;
    }
}

.cta-newsletter-wrapper .newsletter-form {
    width: 100%;
    max-width: 430px;
}

@media (max-width: 767px) {
    .cta-newsletter-wrapper .newsletter-form {
        max-width: initial;
    }
}

.cta-newsletter-wrapper .newsletter-form p {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

.cta-newsletter-wrapper .newsletter-form form {
    position: relative;
    margin-top: 25px;
}

    .cta-newsletter-wrapper .newsletter-form form input {
        width: 100%;
        border: none;
        background-color: var(--white);
        padding: 22px 30px;
        border-radius: 48px;
        line-height: 1;
        color: var(--text);
    }

        .cta-newsletter-wrapper .newsletter-form form input::placeholder {
            color: var(--text);
        }

    .cta-newsletter-wrapper .newsletter-form form .email-btn {
        background: var(--header);
        width: 52px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        border-radius: 50%;
        color: var(--white);
        transition: all 0.4s ease-in-out;
        position: absolute;
        top: 6px;
        right: 6px;
        bottom: 6px;
    }

        .cta-newsletter-wrapper .newsletter-form form .email-btn:hover {
            background-color: var(--theme);
        }

.cta-banner-4 .cta-content {
    text-align: center;
}

    .cta-banner-4 .cta-content h2 {
        color: var(--white);
        font-size: 122.704px;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: -3.408px;
        text-transform: uppercase;
    }

@media (max-width: 1199px) {
    .cta-banner-4 .cta-content h2 {
        font-size: 80px;
    }
}

@media (max-width: 575px) {
    .cta-banner-4 .cta-content h2 {
        font-size: 60px;
    }

        .cta-banner-4 .cta-content h2 img {
            display: none;
        }
}

@media (max-width: 470px) {
    .cta-banner-4 .cta-content h2 {
        font-size: 42px;
    }
}

.cta-banner-4 .cta-content .gt-theme-btn-main {
    margin-top: 32px;
}

    .cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn {
        background-color: var(--white);
        color: var(--header4);
    }

    .cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left, .cta-banner-4 .cta-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
        background-color: var(--white);
        color: var(--header4);
    }

.contact-info-box {
    margin-top: 30px;
    background-color: var(--bg);
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 9;
    height: 100%;
}

    .contact-info-box .icon {
        max-width: 80px;
        width: 100%;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        text-align: center;
        background-color: var(--theme);
        color: var(--white);
        font-size: 25px;
        transition: all 0.4s ease-in-out;
    }

    .contact-info-box .content h4 {
        font-size: 20px;
        color: var(--header);
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .contact-info-box .content p {
        line-height: 162.5%;
    }

        .contact-info-box .content p a {
            color: var(--text);
        }

    .contact-info-box::before {
        position: absolute;
        content: "";
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0;
        -webkit-transform: scale(1, 0.3);
        transform: scale(1, 0.3);
        background-color: var(--theme);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: -1;
        border-radius: 8px;
    }

    .contact-info-box.active::before {
        opacity: 1;
        transform: scale(1, 1);
    }

    .contact-info-box.active .icon {
        background-color: var(--header);
    }

        .contact-info-box.active .icon i {
            -webkit-animation: gelatine 0.6s;
            animation: gelatine 0.6s;
        }

    .contact-info-box.active .content h4, .contact-info-box.active .content p {
        color: var(--white);
    }

        .contact-info-box.active .content p a {
            color: var(--white);
        }

.contact-wrapper .contact-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

.contact-wrapper .contact-box-items {
    padding: 50px 50px;
    border-radius: 12px;
    background-color: var(--bg);
}

@media (max-width: 767px) {
    .contact-wrapper .contact-box-items {
        padding: 30px;
    }
}

.contact-wrapper .contact-box-items.style-2 {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7.5px);
}

    .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input, .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input::placeholder, .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea::placeholder {
            color: var(--white);
        }

    .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
        padding-bottom: 120px;
    }

    .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select {
        border: none;
        color: var(--header);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select .current {
            color: var(--white);
        }

        .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select::after {
            border-bottom: 2px solid var(--white);
            border-right: 2px solid var(--white);
        }

.contact-wrapper .contact-box-items .contact-form-box {
    margin-top: 30px;
}

    .contact-wrapper .contact-box-items .contact-form-box .form-clt input, .contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
        outline: none;
        width: 100%;
        color: var(--header);
        padding-bottom: 20px;
        border: none;
        background: transparent;
        border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    }

        .contact-wrapper .contact-box-items .contact-form-box .form-clt input::placeholder, .contact-wrapper .contact-box-items .contact-form-box .form-clt textarea::placeholder {
            color: var(--header);
        }

    .contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
        padding-bottom: 120px;
    }

    .contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select {
        border: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.2);
        background-color: transparent;
        width: 100%;
        height: initial;
        line-height: initial;
        text-transform: capitalize;
        color: var(--header);
        padding-bottom: 20px;
        border-radius: 0;
    }

        .contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select .current {
            color: var(--header);
        }

        .contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select::after {
            border-bottom: 2px solid var(--header);
            border-right: 2px solid var(--header);
            width: 8px;
            height: 8px;
            right: 12px;
        }

        .contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select .list {
            width: 100%;
        }

.contact-section-2 {
    position: relative;
    margin: 0 30px;
    border-radius: 12px;
    z-index: 9;
}

    .contact-section-2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -1;
        border-radius: 12px;
        opacity: 0.4;
        background: var(--header);
    }

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

    .array-button .array-prev, .array-button .array-next {
        border-radius: 100px;
        border: 1px solid #E6E8EB;
        width: 54px;
        height: 54px;
        line-height: 54px;
        text-align: center;
        border-radius: 50%;
        color: var(--header);
        transition: all 0.4s ease-in-out;
        cursor: pointer;
    }

        .array-button .array-prev:hover, .array-button .array-next:hover {
            background-color: var(--theme);
            color: var(--white);
        }

.swiper-dot {
    position: relative;
}

    .swiper-dot .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        transition: 0.6s;
        background-color: #E6E8EB;
        opacity: 1;
        border-radius: 10px;
    }

        .swiper-dot .swiper-pagination-bullet:not(:last-child) {
            margin-right: 5px;
        }

        .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: var(--theme);
            transition: 0.6s;
            position: relative;
        }

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.gt-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.gt-brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

.ripple {
    position: relative;
}

    .ripple::before, .ripple::after {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 70px;
        height: 70px;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
        -webkit-animation: rippleOne 3s infinite;
        animation: rippleOne 3s infinite;
    }

    .ripple::before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .ripple::after {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
    }

.page-nav-wrap {
    margin-top: 60px;
}

    .page-nav-wrap ul li {
        display: inline-block;
    }

        .page-nav-wrap ul li.active .page-numbers {
            background-color: var(--theme);
            color: var(--white);
        }

        .page-nav-wrap ul li .page-numbers {
            display: inline-block;
            width: 48px;
            height: 48px;
            text-align: center;
            line-height: 48px;
            border-radius: 0;
            background: var(--header);
            color: var(--white);
            font-weight: 500;
            transition: all 0.3s ease-in-out;
            margin: 0 2px;
            border-radius: 50%;
            font-family: "Inter", sans-serif;
        }

            .page-nav-wrap ul li .page-numbers.current {
                background-color: var(--theme);
                color: var(--white);
            }

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

    .page-nav-wrap ul li .page-numbers:hover i {
        color: var(--white);
    }

.box-user {
    position: sticky;
    top: 0px;
    padding-top: 60px;
}

.text_invert > div {
    background-image: linear-gradient(to right, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.text_invert-2 > div {
    background-image: linear-gradient(to right, rgb(255, 119, 34) 50%, rgb(0, 0, 0) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.actually-area .t_line > div {
    background-image: linear-gradient(to right, var(--header) 50%, rgba(15, 23, 42, 0.2980392157) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.dark .actually-area .t_line > div {
    background-image: linear-gradient(to right, var(--header) 50%, rgba(15, 23, 42, 0.2980392157) 51%);
}

.actually-area .bg-area {
    position: absolute;
    top: 40%;
    left: 51%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--header);
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.tilt_scale {
    transition: transform 0.2s ease;
    display: inline-block;
}

.no-break {
    white-space: nowrap; /* Keeps "My Background and Expertise" together */
}
/* Optional: styling for words split animation */
.split-word {
    display: inline-block; /* Required for animation */
    opacity: 0;
}

.reveal-img {
    opacity: 0; /* start invisible */
    transform: translateX(-600px); /* start left */
}

.arrow-path {
    width: 220px;
    height: 130px;
    color: black;
    stroke-dasharray: 1000;
    animation: draw 10s linear infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.image-wrapper {
    position: relative;
    transition: all 0.8s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.animated-image {
    display: block;
    transform: translateY(100%);
    opacity: 0;
}
/* preloader শেষ হলে active class যোগ হবে */
.image-wrapper.active .animated-image {
    transform: translateY(0);
    opacity: 1;
}
/* Ensure the link inherits styles from its parent */
.wt-about-title2 a {
    display: inline-block; /* Needed for transform animations */
    color: inherit;
    text-decoration: inherit;
}

.project-section-3 .line-ani {
    margin-top: -25px;
}

@media (max-width: 1399px) {
    .project-section-3 .line-ani {
        display: none;
    }
}

.brand-container {
    max-width: 1660px;
    margin: 0 auto;
}

.gt-text-scale-anim {
    white-space: pre-wrap;
    transform-origin: top left;
}

.gt-letter-span {
    display: inline-block;
}

.gt-word-span {
    display: inline-block;
}

.p-relative {
    position: relative;
    z-index: 99;
}

.mt-30 {
    margin-top: 30px;
}

.body-bg-5 {
    background-color: #FFFDF5 !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.max-weight-inst {
    max-width: initial !important;
}

.color-palate {
    position: fixed;
    left: 0px;
    text-align: center;
    top: 30%;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    max-width: 300px;
    z-index: 999999;
    transform: translate(-100%);
}

    .color-palate .palate-logo img {
        width: 150px;
    }

    .color-palate .color-palate-inner {
        position: relative;
        padding: 30px 0;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-transition: all;
        transition: all;
        background: #ffffff;
        box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

        .color-palate .color-palate-inner.color-2 .box-version li:first-child {
            border: 1px solid var(--theme2);
            color: var(--header2);
        }

            .color-palate .color-palate-inner.color-2 .box-version li:first-child:hover {
                background-color: var(--theme2);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-2 .box-version li:last-child {
            background-color: var(--header2);
            border: 1px solid transparent;
        }

            .color-palate .color-palate-inner.color-2 .box-version li:last-child:hover {
                background-color: var(--theme2);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-3 .box-version li:first-child {
            border: 1px solid var(--theme3);
            color: var(--header3);
        }

            .color-palate .color-palate-inner.color-3 .box-version li:first-child:hover {
                background-color: var(--theme3);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-3 .box-version li:last-child {
            background-color: var(--header3);
            border: 1px solid transparent;
        }

            .color-palate .color-palate-inner.color-3 .box-version li:last-child:hover {
                background-color: var(--theme3);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-4 .box-version li:first-child {
            border: 1px solid var(--theme4);
            color: var(--header4);
        }

            .color-palate .color-palate-inner.color-4 .box-version li:first-child:hover {
                background-color: var(--theme4);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-4 .box-version li:last-child {
            background-color: var(--header4);
            border: 1px solid transparent;
        }

            .color-palate .color-palate-inner.color-4 .box-version li:last-child:hover {
                background-color: var(--theme4);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-5 .box-version li:first-child {
            border: 1px solid var(--theme5);
            color: var(--header4);
        }

            .color-palate .color-palate-inner.color-5 .box-version li:first-child:hover {
                background-color: var(--theme5);
                color: var(--white);
            }

        .color-palate .color-palate-inner.color-5 .box-version li:last-child {
            background-color: var(--header4);
            border: 1px solid transparent;
        }

            .color-palate .color-palate-inner.color-5 .box-version li:last-child:hover {
                background-color: var(--theme5);
                color: var(--white);
            }

        .color-palate .color-palate-inner::-webkit-scrollbar {
            width: 5px;
        }

        .color-palate .color-palate-inner::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .color-palate .color-palate-inner::-webkit-scrollbar-thumb {
            background: #888;
        }

            .color-palate .color-palate-inner::-webkit-scrollbar-thumb:hover {
                background: #555;
            }

    .color-palate .color-picker-panel {
        margin-top: 15px;
    }

        .color-palate .color-picker-panel input[type=color] {
            -webkit-appearance: none;
            border: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            padding: 0;
            cursor: pointer;
            background: none;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
        }

    .color-palate .rtl-version li:first-child {
        background-color: var(--header);
        border: 1px solid transparent;
    }

        .color-palate .rtl-version li:first-child:hover {
            background-color: var(--theme);
            color: var(--white);
        }

    .color-palate .rtl-version li:last-child {
        background-color: transparent;
        border: 1px solid var(--theme);
        color: var(--header);
    }

        .color-palate .rtl-version li:last-child:hover {
            background-color: var(--theme);
            color: var(--white);
        }

    .color-palate .box-version li:first-child {
        background-color: transparent;
        border: 1px solid var(--theme);
        color: var(--header);
    }

        .color-palate .box-version li:first-child:hover {
            background-color: var(--theme);
            color: var(--white);
        }

    .color-palate .box-version li:last-child {
        background-color: var(--header);
        border: 1px solid transparent;
    }

        .color-palate .box-version li:last-child:hover {
            background-color: var(--theme);
            color: var(--white);
        }

.color-trigger.tm-color2 {
    background-color: var(--theme2) !important;
}

.color-trigger.tm-color3 {
    background-color: var(--theme3) !important;
}

.color-trigger.tm-color4 {
    background-color: var(--theme4) !important;
}

.color-trigger.tm-color5 {
    background-color: var(--theme5) !important;
}

    .color-trigger.tm-color5 i {
        color: #000 !important;
    }

.close-color-trigger.theme-color2 {
    background: var(--theme2) !important;
}

.close-color-trigger.theme-color3 {
    background: var(--theme3) !important;
}

.close-color-trigger.theme-color4 {
    background: var(--theme4) !important;
}

.close-color-trigger.theme-color5 {
    background: var(--theme5) !important;
}

    .close-color-trigger.theme-color5 i {
        color: #000 !important;
    }

.color-palate .color-trigger,
.color-palate .close-color-trigger {
    background: var(--theme);
    cursor: pointer;
    height: 36px;
    width: 36px;
    left: 100%;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    mix-blend-mode: exclusion;
}

    .color-palate .color-trigger i {
        color: #ffffff;
        font-size: 16px;
        -webkit-animation: fa-spin 2s linear infinite;
        animation: fa-spin 2s linear infinite;
    }

    .color-palate .close-color-trigger i {
        color: #ffffff;
        font-size: 20px;
    }

.color-palate .close-color-trigger {
    display: none;
}

.color-palate h6 {
    font-weight: 700;
    color: var(--header);
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 20px;
}

.color-palate .box-version {
    padding-top: 10px;
    padding-bottom: 0px;
}

.color-palate .option-box {
    padding-top: 10px;
}

    .color-palate .option-box .active {
        background-color: var(--theme) !important;
        color: var(--white) !important;
    }

    .color-palate .option-box > li {
        position: relative;
        color: #ffffff;
        width: 40%;
        margin: 0px 3px;
        cursor: pointer;
        margin-bottom: 9px;
        padding: 8px 12px;
        font-size: 14px;
        display: inline-block;
        background-color: var(--theme);
        text-transform: uppercase;
        transition: all 0.4s ease-in-out;
        font-weight: 500;
        font-family: "Inter", sans-serif;
    }

.color-palate.visible-palate {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
/*# sourceMappingURL=main.css.map */
