@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: #000000;
    --black: #000;
    --white: #fff;
    --theme: #f15a24;
    --theme2: #f15a24;
    --theme3: #f15a24;
    --theme4: #F72;
    --theme5: #F6D258;
    --theme6: #A9E1FF;
    --header: #fff;
    --header2: #290F1C;
    --header3: #f15a24;
    --header4: #000;
    --text: #ffffff;
    --border: #FCFCFC;
    --bg: #f15a24;
    --bg2: #f15a24;
    --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_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_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(--bg);
}

.gt-theme-btn-main:hover .gt-theme-btn-arrow-left,
.gt-theme-btn-main:hover .gt-theme-btn-arrow-right {
    background-color: var(--bg);
}

.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(255, 255, 255, 0.08) !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(../../assets/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(--bg);
    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(--body);
    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;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.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: 115%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    padding: 20px 0;
    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: none !important;
}

.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;
}

.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 {
    width: 800px;
    padding: 20px 20px 10px 20px !important;
    padding-bottom: 0 !important;
    opacity: 0;
    left: -250px;
    visibility: hidden;
}

.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: 1860px;
    background: linear-gradient(111.49deg, rgba(255, 255, 255, 0.4) -8.95%, rgba(255, 255, 255, 0.01) 114%);
    backdrop-filter: blur(50px);
    border-radius: 100px;
    padding: 10px 30px;
}

.header-1 .phn-number {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1199px) {
    .header-1 .phn-number {
        display: 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 {
    left: 15px;
    right: 15px;
}

.header-1 .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-1 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    padding: 9px 25px;
}

.header-1 .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-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-1.circle-head-hover .header-main .main-menu ul li {
    margin-inline-end: 10px;
}

.header-1.circle-head-hover .main-menu ul li a {
    padding: 10px 20px 12px;
    border-radius: 30px;
    line-height: 1;
}

.header-1.circle-head-hover .main-menu ul li a:hover {
    color: var(--theme) !important;
    background-color: #fff !important;
    border-radius: 30px;
}

.header-1.circle-head-hover .main-menu ul li .submenu {
    background-color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-1.circle-head-hover .main-menu ul li .submenu li a {
    background-color: transparent !important;
    color: var(--header);
    line-height: 38px;
    border-radius: 0 !important;
}

.header-1.circle-head-hover .main-menu ul li:hover>a {
    color: var(--theme);
    background-color: #000;
}

.header-1.circle-head-hover .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.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(--body);
}

@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(--white);
}

.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: white !important;
}

.header-section-2 .header-2 .mean__menu-wrapper .main-menu ul li .submenu {
    background-color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    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 .phn-number {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1199px) {
    .header-3 .phn-number {
        display: none;
    }
}

.header-3 .mean__menu-wrapper .main-menu ul li a {
    color: var(--white);
}

.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-color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    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(--white);
}

.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: initial;
}

.header-3 .mean__menu-wrapper .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    padding: 9px 25px;
}

.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-3 .sidebar__toggle {
    color: var(--white);
}

.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(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0;
}

.sticky.header-1 .container {
    padding-top: 0;
    background: transparent !important;
    padding-bottom: 0;
}

.sticky.header-2 {
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky.header-3 {
    background-color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas__info {
    background: var(--body) 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.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 rgba(255, 255, 255, 0.08);
    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;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 250px 0 170px;
    z-index: 9;
    text-align: center;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
        padding-top: 180px;
        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(--white);
    margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--white);
    opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
    color: var(--white);
    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 {
    position: relative;
    overflow: hidden;
}

.footer-area.footer-area-3 {
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-bottom: 0 !important;
}

.footer-area.footer-area-3::before {
    position: absolute;
    top: -16%;
    right: -17%;
    content: "";
    width: 610px;
    height: 610px;
    border-radius: 50%;
    border: 100px solid var(--theme);
    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 {
    position: relative;
}

.footer-section .right-shape {
    position: absolute;
    top: -50%;
    right: 0;
    bottom: 0;
}

.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 .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-content .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-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
}

.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: white;
}

.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;
}

.footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .contact-list li a {
    color: rgba(255, 255, 255, 0.75);
}

.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: #9692b2;
    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 h2 span {
    color: var(--theme);
}

.section-title.style-2 .sub-title {
    color: var(--theme2);
}

.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-4 h2 span {
    color: rgba(0, 0, 0, 0.3);
}

.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) !important;
}

.section-bg-2 {
    background-color: var(--bg);
}

.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: 200px 0 0;
    position: relative;
}

@media (max-width: 1199px) {
    .hero-1 {
        padding: 200px 0 130px;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        padding-bottom: 0;
        padding-top: 230px;
    }
}

.hero-1 .hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 30px;
    left: 60px;
    right: 60px;
    position: absolute;
}

@media (max-width: 1199px) {
    .hero-1 .hero-bottom {
        display: none;
    }
}

.hero-1 .container {
    max-width: 1642px;
}

.hero-1 .hero-content {
    margin-top: -140px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content {
        margin-top: 0;
    }
}

.hero-1 .hero-content p {
    letter-spacing: 5px;
    background: linear-gradient(90deg, #f15a24 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .hero-1 .hero-content p {
        font-size: 16px;
        letter-spacing: initial;
    }
}

.hero-1 .hero-content h1 {
    font-weight: 600;
    font-size: 70px;
    line-height: 110%;
    letter-spacing: -2.08px;
    margin-bottom: 40px;
}

@media (max-width: 1600px) {
    .hero-1 .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-content h1 {
        font-size: 45px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .hero-1 .hero-content h1 {
        font-size: 38px;
    }
}

.hero-1 .hero-content .hero-text2 {
    display: block;
    margin-bottom: 40px;
    color: var(--white);
}

@media (min-width: 1200px) {
    .hero-1 .hero-content .hero-text2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-1 .hero-content .hero-text2 {
        max-width: 600px;
    }
}

.hero-1 .hero-image {
    margin-left: -80px;
}

@media (max-width: 1600px) {
    .hero-1 .hero-image {
        margin-left: -120px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-image {
        margin-left: 0;
    }
    .hero-1 .hero-image img {
        width: 100%;
        height: 100%;
    }
}

.hero-1 .hero-text {
    color: var(--white);
    margin-left: auto;
    margin-top: -70px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-text {
        display: none;
    }
}

.hero-2 {
    padding: 180px 0 30px;
    position: relative;
    z-index: 9;
}

.hero-2 .hero-light {
    position: absolute;
    top: -15%;
    right: 0;
    z-index: -1;
}

.hero-2 .right-shape {
    position: absolute;
    top: 20%;
    right: 0;
}

.hero-2 .robot-shape {
    position: absolute;
    top: 28%;
    left: 8%;
}

.hero-2 .hero-content {
    text-align: center;
}

.hero-2 .hero-content h6 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 133.302px;
    border: 1.025px solid rgba(253, 252, 247, 0.08);
    background: var(--bg);
    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(--white);
    font-size: 90px;
    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(--text);
    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-content .gt-theme-btn-main:hover .gt-theme-btn-arrow-left {
    background-color: var(--body);
}

.hero-2 .hero-content .gt-theme-btn-main:hover .gt-theme-btn {
    background-color: var(--body);
}

.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 {
    margin: 0 30px;
    border-radius: 16px;
    padding: 90px 0 90px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-top: 90px;
    background: linear-gradient(99.58deg, rgba(241, 90, 36, 0.8) 0%, #4F2299 65.87%);
}

.hero-3 .container {
    max-width: 1425px;
}

@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;
}

@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(--white);
    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(--white);
    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(--white);
}

.hero-3 .hero-content .hero-btn h4 i {
    font-size: 18px;
    margin-right: 3px;
}

.hero-3 .hero-content .hero-btn h4 a {
    color: var(--white);
}

.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: right;
}

.hero-3 .hero-image img {
    border-radius: 16px;
}

@media (max-width: 1199px) {
    .hero-3 .hero-image img {
        margin-left: 0;
        width: 100%;
    }
}

.hero-3 .hero-image .grap-shape {
    position: absolute;
    bottom: 60px;
    left: 5%;
}

@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;
}

.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;
}

@media (max-width: 1199px) {
    .about-wrapper .about-image {
        max-width: initial;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

@media (max-width: 1199px) {
    .about-wrapper .about-content {
        padding-bottom: 40px;
    }
}

@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;
}

@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;
}

.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-section-2 {
    position: relative;
    border-top: 1px solid rgba(155, 160, 163, 0.2);
}

.about-section-2 .about-ellipse {
    position: absolute;
    top: -30%;
    right: 0;
}

.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(--bg);
    margin-top: 30px;
}

@media (max-width: 470px) {
    .about-wrapper-2 .about-image-items .content {
        padding: 25px;
    }
}

.about-wrapper-2 .about-image-items .content h3 {
    color: var(--white);
}

.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(--text);
}

@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(--theme);
}

.about-wrapper-3 .about-conter-items h2 {
    color: var(--header);
    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(--white);
    letter-spacing: -1.5px;
}

.about-wrapper-3 .about-content {
    font-weight: 600;
    color: var(--white);
}

.about-wrapper-3 .about-content .about-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 155.556%;
    max-width: 700px;
    margin-top: 30px;
    margin-bottom: 30px;
    opacity: 0.8;
}

@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(--bg);
    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(--bg);
    top: 65%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: -1;
}

@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(--bg);
    box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
    padding: 30px;
}

.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: white;
    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;
    }
}

.about-wrapper5 .about-image {
    border-radius: 16px;
    max-width: 730px;
}

@media (max-width: 1199px) {
    .about-wrapper5 .about-image {
        max-width: initial;
    }
}

.about-wrapper5 .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

@media (max-width: 1199px) {
    .about-wrapper5 .about-content {
        padding-bottom: 40px;
    }
}

@media (max-width: 1600px) {
    .about-wrapper5 .about-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 1399px) {
    .about-wrapper5 .about-content h2 {
        font-size: 36px;
    }
    .about-wrapper5 .about-content h2 br {
        display: none;
    }
}

@media screen and (max-width: 1350px) {
    .about-wrapper5 .about-content h2 {
        font-size: 29px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper5 .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .about-wrapper5 .about-content h2 {
        font-size: 33px;
    }
}

@media (max-width: 575px) {
    .about-wrapper5 .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .about-wrapper5 .about-content h2 {
        font-size: 27px;
    }
}

.about-wrapper5 .about-content .theme-btn {
    margin-top: 30px;
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .about-wrapper5 .about-content .theme-btn {
        margin-top: 22px;
    }
}

.about-wrapper5 .about-content .theme-btn .btn_inner::before {
    background-color: var(--theme);
}

.about-wrapper5 .about-content .about-conter-items {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper5 .about-content .about-conter-items {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper5 .about-content .about-conter-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about-wrapper5 .about-content .about-conter-items {
        display: block;
    }
}

.about-wrapper5 .about-content .about-conter-items .counter-box {
    max-width: 300px;
    background-color: var(--body);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .about-wrapper5 .about-content .about-conter-items .counter-box {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .about-wrapper5 .about-content .about-conter-items .counter-box {
        margin-bottom: 25px;
        max-width: initial;
    }
}

.about-wrapper5 .about-content .about-conter-items .counter-box h6 {
    font-size: 16px;
    font-weight: 600;
}

.about-wrapper5 .about-content .about-conter-items .counter-box h2 {
    font-size: 72px;
    font-weight: 500;
    color: var(--white);
    margin-top: 50px;
    line-height: 1;
}

@media (max-width: 1399px) {
    .about-wrapper5 .about-content .about-conter-items .counter-box h2 {
        font-size: 60px;
        margin-top: 25px;
    }
}

.about-wrapper5 .about-content .about-conter-items .counter-box p {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
}

.about-wrapper5 .about-content .about-conter-items .counter-box.active {
    background-color: var(--theme);
}

.about-wrapper5 .about-content .about-conter-items .counter-box.active h6 {
    color: var(--white);
}

.about-wrapper5 .about-content .about-conter-items .counter-box.active h2 {
    color: var(--white);
}

.about-wrapper5 .about-content .about-conter-items .counter-box.active p {
    color: var(--white);
}

.about-wrapper5 .about-content .about-conter-items .about-vide-bg {
    position: relative;
    height: 270px;
}

@media (max-width: 575px) {
    .about-wrapper5 .about-content .about-conter-items .about-vide-bg {
        height: 400px;
    }
}

.about-wrapper5 .about-content .about-conter-items .about-vide-bg img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.about-wrapper5 .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-wrapper5 .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-51 .about-left-items .about-thumb {
    height: 488px;
}

.about-wrapper-51 .about-left-items .about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-wrapper-51 .about-left-items .about-bottom-content {
    background: var(--bg);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .about-wrapper-51 .about-left-items .about-bottom-content {
        flex-wrap: wrap;
        padding: 30px;
    }
}

.about-wrapper-51 .about-left-items .about-bottom-content .about-counter {
    padding-top: 5px;
    padding-bottom: 10px;
}

.about-wrapper-51 .about-left-items .about-bottom-content .about-counter .sub-text {
    background-color: var(--theme);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding: 5px 8px;
    line-height: 1;
    border-radius: 17px;
    margin-bottom: 45px;
}

.about-wrapper-51 .about-left-items .about-bottom-content .about-counter h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
}

.about-wrapper-51 .about-left-items .about-bottom-content .about-counter p {
    font-weight: 500;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.about-wrapper-51 .about-left-items .about-bottom-content .about-line {
    width: 1px;
    height: 202px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
}

@media (max-width: 575px) {
    .about-wrapper-51 .about-left-items .about-bottom-content .about-line {
        display: none;
    }
}

.about-wrapper-51 .about-left-items .about-bottom-content .content {
    max-width: 475px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.about-wrapper-51 .about-left-items .about-bottom-content .content p {
    color: var(--white);
    line-height: 162.5%;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper-51 .about-left-items .about-bottom-content .content p {
        margin-bottom: 15px;
    }
}

.about-wrapper-51 .about-content .about-icon-wrap {
    background-color: var(--bg);
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

.about-wrapper-51 .about-content .about-icon-wrap::before {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .about-wrapper-51 .about-content .about-icon-wrap::before {
        display: none;
    }
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item {
    padding: 30px;
    transition: all 0.4s ease-in-out;
    width: 261px;
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item .icon img {
    filter: brightness(0) invert(1);
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item .content {
    margin-top: 25px;
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item .content h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item .content p {
    line-height: 162.5%;
    color: var(--white);
    font-size: 15px;
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item.active {
    background-color: var(--theme);
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item.active .icon img {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item.active .content h3,
.about-wrapper-51 .about-content .about-icon-wrap .about-icon-item.active .content p {
    color: var(--white);
}

.about-wrapper-51 .about-content .award-items-box {
    padding: 34px 30px;
    background-color: var(--bg);
}

@media (max-width: 1399px) {
    .about-wrapper-51 .about-content .award-items-box {
        padding: 18px 30px;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-51 .about-content .award-items-box {
        height: 100%;
        padding: 34px 30px;
    }
}

.about-wrapper-51 .about-content .award-items-box img {
    filter: brightness(0) invert(1);
}

.about-wrapper-51 .about-content .award-items-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    font-family: "Inter", sans-serif;
    margin-top: 18px;
}

@media (max-width: 1399px) {
    .about-wrapper-51 .about-content .award-items-box p {
        font-size: 14px;
    }
}

.about-wrapper-51 .about-content .award-items-box:hover img {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.about-wrapper-51 .about-content .about-small-image img {
    width: 100%;
    height: 100%;
}

.feature-box-items {
    margin-top: 30px;
    background-color: var(--bg);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    z-index: 9;
}

.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;
}

.feature-box-items .feature-info-box {
    background-color: var(--white);
    margin-top: 55px;
    border-radius: 7px;
    padding: 25px;
    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(--theme);
}

.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);
}

.gt-feature-box-items {
    margin-top: 30px;
    border-radius: 10px;
    text-align: center;
    padding: 25px 50px;
    padding-top: 45px;
    position: relative;
}

.gt-feature-box-items .gt-number-box::before,
.gt-feature-box-items .gt-number-box::after {
    box-shadow: none !important;
    filter: none !important;
}

.gt-feature-box-items::before {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(155, 160, 163, 0.2);
}

.gt-feature-box-items .hover-lines {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #f15a24;
    border-left: 0 solid #f15a24;
    border-right: 0 solid #f15a24;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1) 340ms, height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1) 340ms, height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms;
}

.gt-feature-box-items .hover-lines::before,
.gt-feature-box-items .hover-lines::after {
    position: absolute;
    height: 1px;
    content: "";
    left: 0;
    top: 0;
    width: 0%;
    background-color: #f15a24;
    -webkit-transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
    transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
}

.gt-feature-box-items .hover-lines::after {
    left: auto;
    right: 0;
}

.gt-feature-box-items .gt-number-box {
    margin-bottom: 35px;
    position: relative;
}

.gt-feature-box-items .gt-number-box span {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 99;
}

.gt-feature-box-items .gt-number-box .bg-border-style {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(121deg, #f15a24 12.68%, #f15a24 92.5%);
    transition: all 500ms ease;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 62"><path d="M22.0967 3.31934C25.0359 1.62244 28.6575 1.6225 31.5967 3.31934L48.4434 13.0459C51.3827 14.7429 53.1933 17.8794 53.1934 21.2734V40.7266C53.1933 44.1206 51.3827 47.2571 48.4434 48.9541L31.5967 58.6807C28.6575 60.3775 25.0359 60.3776 22.0967 58.6807L5.25 48.9541C2.31071 47.2571 0.500023 44.1206 0.5 40.7266V21.2734C0.500022 17.9856 2.19929 14.94 4.97754 13.21L5.25 13.0459L22.0967 3.31934Z" /></svg>');
    mask-repeat: no-repeat;
    mask-position: center center;
    width: 54px;
    height: 62px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.gt-feature-box-items .gt-number-box .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.gt-feature-box-items.style-height-1 {
    margin-top: 90px;
}

@media (max-width: 1199px) {
    .gt-feature-box-items.style-height-1 {
        margin-top: 30px;
    }
}

.gt-feature-box-items.style-height-2 {
    margin-top: 150px;
}

@media (max-width: 1199px) {
    .gt-feature-box-items.style-height-2 {
        margin-top: 30px;
    }
}

.gt-feature-box-items h3 {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.gt-feature-box-items p {
    font-weight: 500;
    margin-top: 10px;
    position: relative;
    z-index: 9;
}

.gt-feature-box-items:hover .hover-lines {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    -webkit-transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms;
    transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms;
    width: 100%;
}

.gt-feature-box-items:hover .hover-lines::before,
.gt-feature-box-items:hover .hover-lines::after {
    -webkit-transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1) 340ms;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1) 340ms;
    width: 50%;
}

.gt-feature-box-items:hover .gt-number-box .bg-border-style {
    opacity: 1;
    visibility: visible;
}

.gt-feature-box-items:hover .gt-number-box .icon-bg {
    opacity: 0;
    visibility: hidden;
}

.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(--bg);
    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(--theme);
    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(--white);
}

.choose-us-wrapper-2 .choose-us-wrap-item .choose-us-content p {
    color: var(--white);
    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(--bg);
    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(--bg);
    border-top: none;
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
}

.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 rgba(255, 255, 255, 0.08);
    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(--white);
}

.choose-us-wrapper-3 .choose-us-content .choose-list li .content p {
    color: var(--white);
    margin-top: 10px;
    max-width: 415px;
    opacity: 0.8;
}

.choose-us-wrapper-3 .choose-us-content .choose-list li.active {
    background-color: var(--bg);
    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(--theme);
}

.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 rgba(255, 255, 255, 0.08);
    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(--theme);
    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(--white);
    margin-bottom: 15px;
}

.feature-box-style-3 .content .arrow-btn {
    font-size: 20px;
    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(--white);
    font-weight: 600;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.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.style-2::before {
    background-color: var(--bg);
}

.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: var(--body);
    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(--white);
}

@media (max-width: 767px) {
    .counter-box-style-5 h2 {
        font-size: 70px;
    }
}

.counter-box-style-5 p {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 18px;
}

.counter-box-style-5.active::before {
    background-color: var(--theme);
}

.counter-box-style-5.active .icon::before {
    background-color: var(--theme);
}

.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-section {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1399px) {
    .service-section {
        margin: 0 15px;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.service-left-items .section-title {
    margin-bottom: 30px !important;
}

.service-ai {
    margin-left: -56%;
    margin-top: 30px;
}

.service-right-area {
    position: relative;
    z-index: 9;
}

.service-right-area .service-right-card-items ul li {
    background-color: var(--body);
    padding: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}

@media (max-width: 767px) {
    .service-right-area .service-right-card-items ul li {
        display: block;
    }
}

.service-right-area .service-right-card-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.service-right-area .service-right-card-items ul li .thumb {
    max-width: 300px;
    width: 100%;
    height: 235px;
}

@media (max-width: 767px) {
    .service-right-area .service-right-card-items ul li .thumb {
        max-width: initial;
        margin-bottom: 25px;
    }
}

.service-right-area .service-right-card-items ul li .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.service-right-area .service-right-card-items ul li .content h3 {
    margin-bottom: 10px;
}

.service-right-area .service-right-card-items ul li .content h3 a:hover {
    color: var(--theme);
}

.service-right-area .service-right-card-items ul li .content .link-btn {
    margin-top: 15px;
}

.service-right-area .service-right-card-items ul li .content .link-btn i {
    margin-left: 5px;
}

.service-card-item {
    margin-top: 30px;
    background-color: var(--bg);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    z-index: 9;
}

.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(--bg);
    padding: 58px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    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(--theme);
    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 {
    color: var(--white);
}

.global-service-box .content h3 a:hover {
    color: var(--theme);
}

.global-service-box .text {
    color: var(--white);
    max-width: 395px;
    position: relative;
    z-index: 9;
    opacity: 0.5;
}

.global-service-box .icon {
    display: inline-block;
    border: 1.103px solid rgba(255, 255, 255, 0.08);
    background: var(--body);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    color: var(--white);
    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 .content span {
    color: var(--white);
    opacity: 1;
}

.global-service-box:hover .content h3 a {
    color: var(--white);
}

.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(--body);
    color: var(--white);
    border: none;
}

.service-section-3 .array-button .array-prev:hover,
.service-section-3 .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

.service-section-3 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--white);
}

.service-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
}

.service-box-style-3 {
    margin-top: 30px;
    background-color: var(--body);
    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(--theme);
    -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(--bg);
    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(--white);
    opacity: 0.8;
    line-height: 155.556%;
}

.service-box-style-3 .content .link-btn {
    color: var(--white);
    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(--theme);
}

.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 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 rgba(255, 255, 255, 0.08);
}

.service-wrapper-5 .bb-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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.12;
    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(--white);
    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(--header);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}

.service-wrapper-5 .service-box-style-5 .text {
    opacity: 0.88;
    color: var(--white);
    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(--white);
}

.service-wrapper-5 .service-box-style-5 .arrow-icon:hover {
    color: var(--theme);
}

.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%; */
    height: 600px;
    border-radius: 12px;
}

.service-details-wrapper .service-details-content {
    margin-top: 30px;
}

.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: var(--bg);
    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: var(--bg);
    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(--body);
    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);
}

@media (max-width: 1399px) {
    .service-section11 {
        padding-bottom: 120px !important;
    }
}

@media (max-width: 1199px) {
    .service-section11 {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 991px) {
    .service-section11 {
        padding-bottom: 80px !important;
    }
}

.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;
}

.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(--bg);
    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;
}

.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(--theme);
    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(--theme);
    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(--white);
}

@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(--white);
}

.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(--header);
}

.project-section-2 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
}

.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(--bg);
    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(--white);
    color: var(--black);
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.project-image-items-2 .arrow-icon:hover {
    background-color: var(--theme);
    color: var(--white);
}

.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;
    opacity: 0.8;
}

.project-wrapper-3 .project-box-items-3 li {
    border-radius: 12px;
    background-color: var(--body);
    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(--white);
    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(--white);
    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(--white);
    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(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 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(--bg);
    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(--theme);
    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 var(--bg);
    padding: 20px;
    background-color: var(--bg);
    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(--theme);
    color: var(--white);
    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 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;
    background-color: var(--bg);
}

.project-box-style-5.style-2 .content h3 a {
    color: var(--white);
}

.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(--white);
    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(--white);
}

.project-box-style-5 .content h3 a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 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: var(--body);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    font-family: "Inter", sans-serif;
    padding: 3px 14px;
}

.project-box-style-5 .content ul li a:hover {
    background-color: var(--theme);
}

.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(--white);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    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(--theme);
    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 rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    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 rgba(255, 255, 255, 0.08);
}

.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(--white);
}

.project-details-wrapper .project-details-content .slider-button .icon-gird {
    font-size: 40px;
    color: var(--white);
}

.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: var(--bg);
    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(--body);
    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;
}

.project-box-items-inner .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
    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;
}

@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 rgba(255, 255, 255, 0.08);
    background: var(--bg);
    padding: 6px 12px;
    color: var(--white);
}

.project-box-items-inner .project-content-area .content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 15px;
}

@media (max-width: 1199px) {
    .project-box-items-inner .project-content-area .content h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .project-box-items-inner .project-content-area .content h3 {
        font-size: 24px;
    }
}

.project-box-items-inner .project-content-area .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.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(--white);
    font-size: 20px;
    background: var(--bg);
    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(--white);
}

@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;
    }
}

@media (max-width: 767px) {
    .testimonial-warpper {
        margin: 30px 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(--bg);
    border: 1px solid rgba(223, 220, 210, 0.08);
}

.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: black;
    border-radius: 12px;
    z-index: -1;
    top: 35px;
    height: initial;
}

@media (max-width: 1199px) {
    .testimonial-warpper::before {
        top: 0;
        height: 100%;
    }
}

.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(--body);
    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(--white);
    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(255, 255, 255, 0.08);
    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(--white);
}

.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(--white);
}

.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(--bg);
    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(--theme);
    margin-bottom: 20px;
}

.testimonial-box-items-3 h4 {
    font-size: 20px;
    line-height: 140%;
    opacity: 0.8;
    color: var(--white);
}

@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(--white);
}

.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(--bg);
    border:1px solid rgb(255 255 255);
    color: var(--white);
}

.testimonial-section-3 .array-button .array-prev:hover,
.testimonial-section-3 .array-button .array-next:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
    color: var(--white);
}

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet {
    background-color: var(--white);
}

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
}

.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 rgba(255, 255, 255, 0.08);
    padding-right: 50px;
    opacity: 0.2;
}

@media (max-width: 575px) {
    .testimonial-box-style-5 {
        padding-right: 0;
    }
}

.testimonial-box-style-5 .star {
    color: var(--header);
    margin-bottom: 30px;
}

.testimonial-box-style-5 p {
    color: var(--white);
    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: rgba(255, 255, 255, 0.08);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-box-style-5 .info-content h4 {
    color: var(--white);
    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(--white);
}

.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(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-wrapper-5 .testi-left .array-button .array-prev:hover,
.testimonial-wrapper-5 .testi-left .array-button .array-next:hover {
    background-color: var(--theme);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-wrapper-5 .testi-left .array-button .line {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-wrapper-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--body);
    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 rgba(255, 255, 255, 0.08);
    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: -12px;
}

.pricing-box-items .pricing-btn {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    font-family: "Inter", sans-serif;
    background-color: var(--theme);
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    text-align: center;
    border-radius: 48px;
    transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-btn i {
    margin-right: 8px;
}

.pricing-box-items .pricing-btn:hover {
    background-color: var(--body);
}

.pricing-box-items .pricing-list {
    margin-top: 30px;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--body);
}

.pricing-box-items .pricing-list h5 {
    font-size: 18px;
    font-weight: 500;
}

@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(--theme);
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-box-items.active {
    background-color: var(--theme);
}

.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(--bg);
}

.pricing-box-items.active .pricing-btn:hover {
    background-color: var(--white);
    color: var(--body);
}

.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(--white);
}

.pricing-section .nav {
    height: 60px;
    line-height: 60px;
    background-color: var(--bg);
    padding: 7px;
    border-radius: 70px;
    display: flex;
    align-items: center;
}

.pricing-section .nav .nav-item .nav-link {
    padding: 0;
    height: 47px;
    line-height: 47px;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border-radius: 66.667px;
}

.pricing-section .nav .nav-item .nav-link.active {
    background-color: var(--theme);
}

.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(--theme);
    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(--theme);
}

.team-box-item-3 .content h3 {
    font-weight: 600;
}

.team-box-item-3 .content h3 a {
    color: var(--white);
    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(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 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-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 30px;
    background-color: var(--bg);
    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: var(--bg);
    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(--theme);
    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: var(--bg);
    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 rgba(255, 255, 255, 0.08);
    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(255, 255, 255, 0.08);
    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(255, 255, 255, 0.08);
    background-color: transparent;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--bg);
    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(--bg);
}

.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: black;
}

.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(--body);
    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: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-box-items .content .news-bottom .link-btn {
    display: inline-block;
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
}

.news-box-items .content .news-bottom .link-btn i {
    margin-right: 5px;
}

.news-box-items .content .news-bottom .link-btn:hover {
    color: var(--theme);
}

.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 {
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: var(--body);
}

@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(--white);
    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(--bg);
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    border-radius: 18px;
}

.news-box-items-2 .content ul li a:hover {
    background-color: var(--theme);
}

.news-box-items-2 .content h3 {
    font-size: 28px;
    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(--white);
}

.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(--white);
    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 rgba(255, 255, 255, 0.08);
    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: var(--white);
}

.news-box-style-5 .content ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--bg);
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    border-radius: 18px;
}

.news-box-style-5 .content ul li a:hover {
    background-color: var(--theme);
}

.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(--white);
}

.news-box-style-5 .content h3 a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-box-style-5 .content .news-btn {
    display: inline-block;
    color: var(--white);
    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(--theme);
    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(--theme);
}

.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 rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    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 rgba(255, 255, 255, 0.08);
}

.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;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    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: var(--bg);
    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(--body);
    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(--body);
    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(--body);
    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 rgba(255, 255, 255, 0.15);
    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 {
    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: black;
    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(255, 255, 255, 0.08);
    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(255, 255, 255, 0.08);
    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: white;
}

.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(255, 255, 255, 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(255, 255, 255, 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(--white);
    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(--white);
    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(--body);
}

.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(--white);
    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(--white);
    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(--theme);
}

.faq-items-2 .accordion-box .block .acc-btn.active {
    color: var(--theme);
}

.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: var(--bg);
    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: white;
}

.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(--body);
}

.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-items-2.style-faq-2 .accordion-box .block .acc-content .text {
    color: var(--white);
    opacity: 0.8;
}

.faq-about {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-newsletter-section {
    position: relative;
    border-radius: 16px 16px 0 0;
    margin: 0 30px;
}

@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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
    padding-bottom: 80px;
}

.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 h2 span {
    color: rgba(255, 255, 255, 0.5);
}

.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(--theme);
    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);
}

.cta-newsletter-section {
    background-color: var(--bg);
}

.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;
}

.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(--body);
}

.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(255, 255, 255, 0.08);
    text-transform: capitalize;
}

.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(255, 255, 255, 0.08);
    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: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    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%, #ebebeb 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%, #ebebeb 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;
}

/*# sourceMappingURL=main.css.map */
/* Extracted from index.html */

            .hero-slider {
                position: relative;
                width: 100%;
                height: 100vh;
                min-height: 750px;
                background: #0a0a1a;
                overflow: hidden;
            }
            .hero-slider .swiper-slide {
                position: relative;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .hero-slide-bg {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 1;
            }
            .hero-slide-overlay {
                position: absolute;
                inset: 0;
                background:linear-gradient(135deg, #0000005c 0%, rgba(18, 16, 58, 0.6) 100%);
                z-index: 2;
            }
            .hero-slide-content {
                position: relative;
                z-index: 3;
                text-align: center;
                max-width: 900px;
                padding: 0 20px;
                margin-top: 50px;
            }
            .hero-slide-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 30%);
    color: #ffffff;
                padding: 8px 24px;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 700;
                margin-bottom: 25px;
                letter-spacing: 2px;
                text-transform: uppercase;
                transform: translateY(40px);
                opacity: 0;
                transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
            }
            .hero-slide-title {
                font-size: clamp(3rem, 7vw, 5.5rem);
                font-weight: 900;
                color: #fff;
                line-height: 1.1;
                margin-bottom: 25px;
                transform: translateY(40px);
                opacity: 0;
                transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
            }
            .hero-slide-title span {
                background: linear-gradient(135deg, #f15a24, #ff8255);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            .hero-slide-desc {
                color: rgba(255,255,255,0.8);
                font-size: clamp(1.1rem, 2vw, 1.3rem);
                line-height: 1.8;
                margin-bottom: 40px;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                transform: translateY(40px);
                opacity: 0;
                transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s;
            }
            .hero-slide-btn {
                transform: translateY(40px);
                opacity: 0;
                transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s;
                display: inline-block;
            }
            /* Active Slide Animations */
            .swiper-slide-active .hero-slide-badge,
            .swiper-slide-active .hero-slide-title,
            .swiper-slide-active .hero-slide-desc,
            .swiper-slide-active .hero-slide-btn {
                transform: translateY(0);
                opacity: 1;
            }
            .swiper-slide-active .hero-slide-bg {
                animation: zoomBg 12s infinite alternate ease-in-out;
            }
            @keyframes zoomBg {
                0% { transform: scale(1); }
                100% { transform: scale(1.15); }
            }
            /* Custom Navigation */
            .hero-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 65px;
                height: 65px;
                background: rgba(18,16,58,0.4);
                border: 1px solid rgba(241,90,36,0.3);
                backdrop-filter: blur(8px);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 1.4rem;
                z-index: 10;
                cursor: pointer;
                transition: all 0.4s ease;
            }
            .hero-nav-btn:hover {
                background: #f15a24;
                border-color: #f15a24;
                box-shadow: 0 10px 30px rgba(241,90,36,0.4);
                color: #fff;
            }
            .hero-prev { left: 50px; }
            .hero-next { right: 50px; }
            .hero-pagination {
                position: absolute;
                bottom: 50px;
                left: 0;
                right: 0;
                text-align: center;
                z-index: 10;
            }
            .hero-pagination .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                background: rgba(255,255,255,0.4);
                opacity: 1;
                margin: 0 6px;
                transition: all 0.4s ease;
            }
            .hero-pagination .swiper-pagination-bullet-active {
                width: 35px;
                border-radius: 6px;
                background: #f15a24;
                box-shadow: 0 0 15px rgba(241,90,36,0.6);
            }
            @media (max-width: 991px) {
                .hero-nav-btn { display: none; } /* Hide arrows on tablets/mobile for clean UI */
                .hero-slider { min-height: 650px; }
            }
            

/* Extracted from category.html */
.cat-hero{background:linear-gradient(135deg, #f15a24 0%, #000000 50%, #0a0a1a 100%);padding:120px 0 80px;position:relative;overflow:hidden}.cat-hero::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:url("assets/img/home-2/hero/dot-shape.png") center/cover;opacity:.3}.cat-hero-content{position:relative;z-index:2}.cat-hero-title{font-size:clamp(2rem,5vw,3.5rem);font-weight:700;color:#fff;line-height:1.2;margin-bottom:1.5rem}.cat-hero-title span{color:#f15a24}.cat-hero-desc{color:rgba(255,255,255,.7);font-size:1.1rem;max-width:600px}.cat-hero-img{border-radius:20px;overflow:hidden;box-shadow:0 30px 80px rgba(241,90,36,.3);position:relative}.cat-hero-img img{width:100%;height:450px;object-fit:cover}.cat-hero-img::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(241,90,36,.2),transparent);border-radius:20px}.cat-hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);color:#f15a24;padding:8px 20px;border-radius:50px;font-size:.85rem;font-weight:600;margin-bottom:1.5rem;letter-spacing:1px}.section-cat{padding:100px 0}.cat-card{background:#000000;border:1px solid rgba(241,90,36,.15);border-radius:20px;overflow:hidden;transition:all .4s ease;position:relative;display:block;color:inherit;text-decoration:none}.cat-card:hover{transform:translateY(-10px);border-color:rgba(241,90,36,.5);box-shadow:0 30px 60px rgba(241,90,36,.2);color:inherit;text-decoration:none}.cat-card-img{height:220px;overflow:hidden;position:relative}.cat-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.cat-card:hover .cat-card-img img{transform:scale(1.08)}.cat-card-img::after{content:"";position:absolute;bottom:0;left:0;right:0;height:80px;background:linear-gradient(transparent,#12103a)}.cat-card-body{padding:28px}.cat-card-icon{width:55px;height:55px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:1.4rem;margin-bottom:1rem;transition:all .3s ease}.cat-card:hover .cat-card-icon{background:#f15a24;color:#fff}.cat-card-title{font-size:1.3rem;font-weight:700;color:#fff;margin-bottom:.7rem}.cat-card-desc{color:rgba(255,255,255,.6);font-size:.9rem;line-height:1.7;margin-bottom:1.2rem}.cat-card-link{color:#f15a24;font-size:.9rem;font-weight:600;display:flex;align-items:center;gap:8px;transition:gap .3s}.cat-card:hover .cat-card-link{gap:14px}.cat-card-count{position:absolute;top:16px;right:16px;background:rgba(241,90,36,.9);color:#fff;font-size:.75rem;font-weight:700;padding:5px 12px;border-radius:30px}.section-title-wrap .sub-title{color:#f15a24;font-size:.85rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:1rem}.section-title-wrap h2{font-size:clamp(2rem,4vw,3rem);color:#fff;font-weight:700;line-height:1.2}.section-title-wrap p{color:rgba(255,255,255,.6);max-width:600px;margin:1rem auto 0}.stats-section{padding:80px 0;background:#0f0d2e}.stat-item{text-align:center;padding:40px 20px;border:1px solid rgba(241,90,36,.15);border-radius:20px;background:#000000;transition:all .3s}.stat-item:hover{border-color:rgba(241,90,36,.4);transform:translateY(-5px)}.stat-number{font-size:3rem;font-weight:800;color:#f15a24;line-height:1}.stat-label{color:rgba(255,255,255,.6);margin-top:.5rem;font-size:.9rem}

/* Extracted from category-details.html */

.catd-hero{padding:130px 0 90px;position:relative;overflow:hidden}
.catd-hero::before{content:"";position:absolute;inset:0;background:url("assets/img/home-2/hero/dot-shape.png") center/cover;opacity:.2}
.catd-hero-content{position:relative;z-index:2}
.catd-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);color:#f15a24;padding:8px 20px;border-radius:50px;font-size:.85rem;font-weight:600;margin-bottom:1.2rem}
.catd-title{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:800;color:#fff;line-height:1.15;margin-bottom:1.2rem}
.catd-title span{background:linear-gradient(135deg,#f15a24,#ff8255);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.catd-desc{color:rgba(255,255,255,.7);font-size:1.1rem;line-height:1.8;max-width:580px}
.catd-img-wrapper{position:relative}
.catd-img-wrapper img{width:100%;border-radius:24px;box-shadow:0 40px 100px rgba(241,90,36,.35);position:relative;z-index:2}
.catd-img-wrapper::before{content:"";position:absolute;inset:-3px;background:linear-gradient(135deg,#f15a24,transparent,#f15a24);border-radius:26px;z-index:1}
.catd-floating-card{position:absolute;z-index:5;background:rgba(0, 0, 0, 0.95);backdrop-filter:blur(20px);border:1px solid rgba(241,90,36,.3);border-radius:16px;padding:18px 24px}
.catd-floating-card.card-1{bottom:-20px;left:-20px}
.catd-floating-card.card-2{top:30px;right:-20px}
.catd-fc-val{font-size:1.8rem;font-weight:800;color:#f15a24;line-height:1}
.catd-fc-label{color:rgba(255,255,255,.6);font-size:.82rem;margin-top:4px}
.sub-section{padding:100px 0;background:linear-gradient(135deg, #000000, #000000, #f15a24)}
.sec-label{color:#f15a24;font-size:.82rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:.8rem}
.sec-heading{font-size:clamp(1.8rem,3.5vw,2.8rem);color:#fff;font-weight:700;margin-bottom:1rem}
.sec-desc{color:rgba(255,255,255,.6);line-height:1.8}
.subcat-card{border:1px solid rgba(241,90,36,.12);border-radius:20px;overflow:hidden;transition:all .4s;display:block;text-decoration:none;color:inherit;height:100%}
.subcat-card:hover{transform:translateY(-8px);border-color:rgba(241,90,36,.45);box-shadow:0 25px 55px rgba(241,90,36,.22);color:inherit;text-decoration:none}
.subcat-img{height:200px;overflow:hidden;position:relative}
.subcat-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.subcat-card:hover .subcat-img img{transform:scale(1.07)}
.subcat-tag{position:absolute;top:14px;left:14px;background:#f15a24;color:#fff;font-size:.75rem;font-weight:700;padding:5px 14px;border-radius:30px}
.subcat-body{padding:24px}
.subcat-icon{width:48px;height:48px;background:rgba(241,90,36,.12);border:1px solid rgba(241,90,36,.25);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:1.2rem;margin-bottom:1rem;transition:all .3s}
.subcat-card:hover .subcat-icon{background:#f15a24;color:#fff}
.subcat-title{font-size:1.15rem;font-weight:700;color:#fff;margin-bottom:.6rem}
.subcat-desc{color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.6;margin-bottom:1rem}
.subcat-link{color:#f15a24;font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:6px;transition:gap .3s}
.subcat-card:hover .subcat-link{gap:12px}
.features-section{padding:100px 0;}
.feature-item{display:flex;gap:20px;padding:28px;background:#000000;border:1px solid rgba(241,90,36,.12);border-radius:16px;transition:all .3s;margin-bottom:0}
.feature-item:hover{border-color:rgba(241,90,36,.4);transform:translateX(5px)}
.feature-icon{width:56px;height:56px;min-width:56px;background:rgba(241,90,36,.15);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:1.4rem}
.feature-text h5{color:#fff;font-weight:700;margin-bottom:.4rem}
.feature-text p{color:rgba(255,255,255,.6);font-size:.9rem;margin:0;line-height:1.6}


/* Extracted from product-details.html */

.pd-hero{linear-gradient:(135deg, #0a0a1a, #000000, #f15a24);padding:140px 0 100px;position:relative;overflow:hidden}
.pd-hero::before{content:"";position:absolute;inset:0;background:url("assets/img/home-2/hero/dot-shape.png") center/cover;opacity:.15}
.pd-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);color:#f15a24;padding:6px 18px;border-radius:50px;font-size:.82rem;font-weight:600;margin-bottom:1rem}
.pd-title{font-size:clamp(2rem,4.5vw,3.2rem);font-weight:800;color:#fff;line-height:1.2;margin-bottom:1.2rem}
.pd-rating{display:flex;align-items:center;gap:8px;margin-bottom:1.2rem}
.pd-stars{color:#f5a623;font-size:1rem}
.pd-rating-count{color:rgba(255,255,255,.5);font-size:.85rem}
.pd-desc{color:rgba(255,255,255,.7);font-size:1rem;line-height:1.8;margin-bottom:1.5rem}
.pd-meta-list{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:1.8rem}
.pd-meta-item{display:flex;align-items:center;gap:8px;background:rgba(241,90,36,.1);border:1px solid rgba(241,90,36,.2);border-radius:30px;padding:6px 16px;color:rgba(255,255,255,.75);font-size:.85rem}
.pd-meta-item i{color:#f15a24}
.pd-img-main{border-radius:20px;overflow:hidden;box-shadow:0 30px 80px rgba(241,90,36,.3);position:relative}
.pd-img-main img{width:100%;height:480px;object-fit:cover}
.pd-img-main .img-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 60%,rgba(10,10,26,.8));border-radius:20px}
.pd-thumbs{display:flex;gap:12px;margin-top:16px}
.pd-thumb{flex:1;border-radius:12px;overflow:hidden;border:2px solid transparent;cursor:pointer;transition:border-color .3s}
.pd-thumb:hover,.pd-thumb.active{border-color:#f15a24}
.pd-thumb img{width:100%;height:80px;object-fit:cover}
.wa-btn{display:inline-flex;align-items:center;gap:12px;background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;font-size:1rem;font-weight:700;padding:16px 36px;border-radius:50px;text-decoration:none;transition:all .3s;box-shadow:0 15px 40px rgba(37,211,102,.3);border:none}
.wa-btn:hover{color:#fff;text-decoration:none;transform:translateY(-3px);box-shadow:0 22px 50px rgba(37,211,102,.4)}
.wa-btn i{font-size:1.4rem}
.wa-btn-wrap{margin-top:1.5rem}
.wa-note{color:rgba(255,255,255,.5);font-size:.82rem;margin-top:.7rem;display:flex;align-items:center;gap:6px}
.wa-note i{color:#25D366}
.pd-section{padding:100px 0;background:#000000}
.pd-section.alt{background:#000000}
.spec-card{background:#12103a;border:1px solid rgba(241,90,36,.12);border-radius:16px;padding:28px;height:100%;transition:all .3s}
.spec-card:hover{border-color:rgba(241,90,36,.4);transform:translateY(-5px)}
.spec-icon{width:52px;height:52px;background:rgba(241,90,36,.12);border:1px solid rgba(241,90,36,.25);border-radius:13px;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:1.3rem;margin-bottom:1rem}
.spec-title{color:#fff;font-weight:700;margin-bottom:.4rem;font-size:1rem}
.spec-value{color:rgba(255,255,255,.6);font-size:.88rem}
.feature-row{display:flex;gap:14px;padding:18px 0;border-bottom:1px solid rgba(241,90,36,.1)}
.feature-row:last-child{border-bottom:none}
.feature-check{width:28px;height:28px;min-width:28px;background:rgba(241,90,36,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:.8rem}
.feature-text{color:rgba(255,255,255,.75);font-size:.92rem;line-height:1.5}
.feature-text strong{color:#fff;display:block;margin-bottom:2px}
.sidebar-box{background:#000000;border:1px solid rgba(241,90,36,.15);border-radius:20px;padding:32px;position:sticky;top:100px}
.sidebar-price{font-size:2.5rem;font-weight:800;color:#f15a24;line-height:1;margin-bottom:.3rem}
.sidebar-price-label{color:rgba(255,255,255,.5);font-size:.85rem;margin-bottom:1.5rem}
.sidebar-list{list-style:none;padding:0;margin:0 0 1.5rem}
.sidebar-list li{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.05);color:rgba(255,255,255,.6);font-size:.88rem}
.sidebar-list li span:last-child{color:#fff;font-weight:600}
.sec-label{color:#f15a24;font-size:.82rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:.8rem}
.sec-heading{font-size:clamp(1.8rem,3vw,2.5rem);color:#fff;font-weight:700;margin-bottom:1rem}
.related-card{background:#000000;border:1px solid rgba(241,90,36,.12);border-radius:18px;overflow:hidden;transition:all .4s;display:block;text-decoration:none;color:inherit}
.related-card:hover{transform:translateY(-7px);border-color:rgba(241,90,36,.4);box-shadow:0 20px 50px rgba(241,90,36,.2);color:inherit;text-decoration:none}
.related-img{height:180px;overflow:hidden}
.related-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.related-card:hover .related-img img{transform:scale(1.06)}
.related-body{padding:20px}
.related-title{color:#fff;font-weight:700;font-size:1rem;margin-bottom:.5rem}
.related-desc{color:rgba(255,255,255,.55);font-size:.85rem;margin-bottom:1rem}
.related-link{color:#f15a24;font-size:.82rem;font-weight:600;display:flex;align-items:center;gap:6px}


/* Extracted from our-services.html */

.srv-hero{padding:140px 0 100px;position:relative;overflow:hidden;text-align:center}
.srv-hero::before{content:"";position:absolute;inset:0;background:url("assets/img/home-2/hero/dot-shape.png") center/cover;opacity:.2}
.srv-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto}
.srv-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);color:#f15a24;padding:8px 24px;border-radius:50px;font-size:.9rem;font-weight:600;margin-bottom:1.5rem}
.srv-title{font-size:clamp(2.5rem,6vw,4rem);font-weight:800;color:#fff;line-height:1.15;margin-bottom:1.5rem}
.srv-desc{color:rgba(255,255,255,.7);font-size:1.15rem;line-height:1.8}
.srv-section{padding:100px 0;}
.service-card-premium{background:#000000;border:1px solid rgba(241,90,36,.15);border-radius:24px;overflow:hidden;transition:all .5s;position:relative;display:flex;flex-direction:column;height:100%;text-decoration:none}
.service-card-premium:hover{transform:translateY(-15px);border-color:#f15a24;box-shadow:0 30px 70px rgba(241,90,36,.25);text-decoration:none}
.scp-img{height:300px;position:relative;overflow:hidden}
.scp-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.service-card-premium:hover .scp-img img{transform:scale(1.1)}
.scp-img::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,#12103a,transparent)}
.scp-icon{position:absolute;bottom:-30px;right:40px;width:80px;height:80px;background:#f15a24;border-radius:20px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:2rem;box-shadow:0 15px 30px rgba(241,90,36,.4);transform:rotate(-10deg);transition:transform .5s;z-index:2}
.service-card-premium:hover .scp-icon{transform:rotate(0deg) scale(1.1)}
.scp-body{padding:50px 40px 40px;flex-grow:1;display:flex;flex-direction:column}
.scp-title{color:#fff;font-size:1.8rem;font-weight:700;margin-bottom:1rem;transition:color .3s}
.service-card-premium:hover .scp-title{color:#f15a24}
.scp-desc{color:rgba(255,255,255,.6);font-size:1.05rem;line-height:1.7;margin-bottom:2rem;flex-grow:1}
.scp-link{display:inline-flex;align-items:center;gap:10px;color:#fff;font-weight:600;font-size:1.1rem;background:rgba(241,90,36,.2);padding:12px 24px;border-radius:50px;width:fit-content;transition:all .3s}
.service-card-premium:hover .scp-link{background:#f15a24;gap:16px}


/* Extracted from service-info.html */

.sd-hero{background:linear-gradient(135deg,#0a0a1a,#12103a,#0a0a1a);padding:140px 0 100px;position:relative;overflow:hidden}
.sd-hero::before{content:"";position:absolute;inset:0;background:url("assets/img/home-2/hero/dot-shape.png") center/cover;opacity:.2}
.sd-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(241,90,36,.15);border:1px solid rgba(241,90,36,.3);color:#f15a24;padding:8px 20px;border-radius:50px;font-size:.85rem;font-weight:600;margin-bottom:1.2rem}
.sd-title{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:800;color:#fff;line-height:1.15;margin-bottom:1.5rem}
.sd-title span{color:#f15a24}
.sd-desc{color:rgba(255,255,255,.7);font-size:1.1rem;line-height:1.8;max-width:600px;margin-bottom:2rem}
.sd-img-wrapper{position:relative;border-radius:24px;overflow:hidden;box-shadow:0 30px 80px rgba(241,90,36,.3)}
.sd-img-wrapper img{width:100%;height:500px;object-fit:cover;transition:transform .5s}
.sd-img-wrapper:hover img{transform:scale(1.05)}
.sd-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,10,26,.9),transparent 50%)}
.sd-content-section{padding:100px 0;background:#0f0d2e}
.sd-main-text{color:#fff;font-size:1.1rem;line-height:1.9;margin-bottom:2rem}
.sd-main-text strong{color:#f15a24}
.sd-feature-list{list-style:none;padding:0;margin:0 0 3rem}
.sd-feature-list li{display:flex;align-items:flex-start;gap:16px;margin-bottom:1.5rem;background:#12103a;padding:20px;border-radius:16px;border:1px solid rgba(241,90,36,.15);transition:all .3s}
.sd-feature-list li:hover{border-color:rgba(241,90,36,.4);transform:translateX(5px)}
.sd-feature-icon{width:45px;height:45px;min-width:45px;background:rgba(241,90,36,.15);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:1.2rem}
.sd-feature-text h5{color:#fff;font-weight:700;margin-bottom:.5rem;font-size:1.1rem}
.sd-feature-text p{color:rgba(255,255,255,.6);margin:0;font-size:.95rem;line-height:1.6}
.sd-sidebar{background:#12103a;border:1px solid rgba(241,90,36,.15);border-radius:24px;padding:40px;position:sticky;top:100px}
.sd-sidebar-title{color:#fff;font-weight:800;font-size:1.5rem;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid rgba(255,255,255,.1)}
.sd-sidebar-list{list-style:none;padding:0;margin:0 0 2rem}
.sd-sidebar-list li{margin-bottom:1rem}
.sd-sidebar-list a{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background:rgba(255,255,255,.03);border-radius:12px;color:rgba(255,255,255,.7);text-decoration:none;transition:all .3s;font-weight:600}
.sd-sidebar-list a.active,.sd-sidebar-list a:hover{background:#f15a24;color:#fff}
.wa-btn{display:inline-flex;align-items:center;justify-content:center;gap:12px;background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;font-size:1.1rem;font-weight:700;padding:18px;border-radius:12px;text-decoration:none;transition:all .3s;box-shadow:0 15px 30px rgba(37,211,102,.2);width:100%;border:none}
.wa-btn:hover{color:#fff;text-decoration:none;transform:translateY(-3px);box-shadow:0 20px 40px rgba(37,211,102,.4)}
.process-section{padding:80px 0;background:#0a0a1a}
.process-card{text-align:center;padding:40px 20px;position:relative}
.process-num{font-size:4rem;font-weight:900;color:rgba(241,90,36,.1);position:absolute;top:0;left:50%;transform:translateX(-50%);z-index:1;line-height:1}
.process-icon{width:80px;height:80px;background:linear-gradient(135deg,rgba(241,90,36,.2),rgba(241,90,36,.05));border:1px solid rgba(241,90,36,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#f15a24;font-size:2rem;margin:0 auto 1.5rem;position:relative;z-index:2}
.process-title{color:#fff;font-weight:700;margin-bottom:1rem;position:relative;z-index:2}
.process-desc{color:rgba(255,255,255,.6);font-size:.95rem;position:relative;z-index:2}



/* Extracted Inline Styles from index.html */
.ext-cat-section { background:#0a0a1a; position:relative; }
.ext-cat-divider { position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(241,90,36,.5),transparent); }
.ext-cat-title { color:#fff; }
.ext-cat-card { display:block; border-radius:24px; overflow:hidden; position:relative; border:1px solid rgba(241,90,36,.2); transition:all .4s; }
.ext-cat-card:hover { border-color:#f15a24; transform:translateY(-10px); }
.ext-cat-img { width:100%; height:250px; object-fit:cover; opacity:0.8; }
.ext-cat-overlay { position:absolute; bottom:0; left:0; right:0; padding:30px; background:linear-gradient(transparent,#0a0a1a); }
.ext-cat-card-title { color:#fff; margin-bottom:5px; font-size:1.5rem; }
.ext-cat-card-icon { color:#f15a24; margin-right:10px; }
.ext-cat-card-desc { color:rgba(255,255,255,.6); margin:0; }

.ext-prod-section { background:linear-gradient(135deg, #000000, #000000, #f15a24); }
.ext-prod-subtitle { color:#f15a24; letter-spacing:2px; font-weight:700; }
.ext-prod-title { color:#fff; font-size:2.8rem; font-weight:800; margin:20px 0; }
.ext-prod-title-span { color:#f15a24; }
.ext-prod-desc { color:rgba(255,255,255,.7); font-size:1.1rem; margin-bottom:30px; }
.ext-prod-card { background:#12103a; border:1px solid rgba(241,90,36,.2); padding:30px; border-radius:20px; transition:all .3s; }
.ext-prod-card.mb-20 { margin-bottom:20px; }
.ext-prod-card:hover { border-color:#f15a24; transform:translateX(-10px); }
.ext-prod-icon { width:50px; height:50px; background:rgba(241,90,36,.1); color:#f15a24; display:flex; align-items:center; justify-content:center; border-radius:12px; font-size:1.5rem; margin-bottom:15px; }
.ext-prod-card-title { color:#fff; margin-bottom:10px; }
.ext-prod-card-desc { color:rgba(255,255,255,.5); font-size:.9rem; margin-bottom:15px; }
.ext-prod-card-link { color:#f15a24; font-weight:600; }

.ext-val-section { background:linear-gradient(135deg, #000000, #000000, #f15a24); position:relative; overflow:hidden; }
.ext-val-bg { position:absolute; top:50%; left:50%; width:800px; height:800px; background:radial-gradient(circle,rgba(241,90,36,.1) 0%,transparent 70%); transform:translate(-50%,-50%); pointer-events:none; }
.ext-val-content { position:relative; z-index:2; }
.ext-val-icon { color:#f15a24; font-size:3rem; margin-bottom:20px; }
.ext-val-title { color:#fff; font-size:3.5rem; font-weight:900; margin-bottom:20px; }
.ext-val-desc { color:rgba(255,255,255,.7); font-size:1.2rem; max-width:700px; margin:0 auto 50px; }
.ext-val-card { background:rgba(255,255,255,.02); border:1px solid rgba(255,255,255,.05); padding:40px 20px; border-radius:20px; backdrop-filter:blur(10px); }
.ext-val-card-num { color:#f15a24; font-size:3rem; font-weight:800; margin-bottom:10px; }
.ext-val-card-text { color:#fff; font-weight:600; }

.ext-cta-section { background:#0f0d2e; }
.ext-cta-box { background:linear-gradient(135deg,rgba(241,90,36,.2),rgba(10,10,26,.8)); border:1px solid rgba(241,90,36,.3); border-radius:30px; padding:80px 40px; text-align:center; position:relative; overflow:hidden; }
.ext-cta-content { position:relative; z-index:2; }
.ext-cta-title { color:#fff; font-size:3rem; font-weight:800; margin-bottom:20px; }
.ext-cta-desc { color:rgba(255,255,255,.7); font-size:1.2rem; margin-bottom:40px; max-width:600px; margin-left:auto; margin-right:auto; }
.ext-cta-btn { display:inline-flex; align-items:center; gap:15px; background:linear-gradient(135deg,#25D366,#128C7E); color:#fff; padding:20px 40px; border-radius:50px; font-size:1.2rem; font-weight:700; text-decoration:none; box-shadow:0 20px 40px rgba(37,211,102,.3); transition:transform .3s; }
.ext-cta-btn:hover { transform:translateY(-5px); color:#fff; }
.ext-cta-btn-icon { font-size:1.8rem; }

/*---------------------------------------
XX. Premium Filter System
---------------------------------------*/
.filter-section-wrapper {
    padding: 60px 0;
    background-color: var(--body);
    position: relative;
    z-index: 10;
}

.filter-bar {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.filter-items-scroll {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-items-scroll::-webkit-scrollbar {
    display: none;
}

.filter-dropdown {
    position: relative;
        padding: 6px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(241, 90, 36, 0.15);
    border-color: var(--theme);
}

.filter-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 280px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.filter-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Multi-select Styles */
.filter-option-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0;
}

.filter-option-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.filter-option-item input {
    display: none;
}

.option-preview {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme);
    font-size: 18px;
    transition: all 0.3s ease;
}

.filter-option-item input:checked + .option-preview {
    background: var(--theme);
    color: var(--white);
    box-shadow: 0 0 15px rgba(241, 90, 36, 0.4);
}

.option-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Range Slider Styles */
.range-menu {
    width: 320px;
}

.range-slider-container {
    padding: 10px 5px;
}

.range-label {
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.range-label span {
    color: var(--theme);
    font-weight: 600;
}

.custom-range-slider {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    margin-bottom: 30px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: var(--theme);
    border-radius: 2px;
}

.slider-handle {
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--theme);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-inputs input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

/* Mobile Filter */
.mobile-filter-trigger {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--theme);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
}

.filter-results-info {
    display: flex;
    align-items: center;
    gap: 20px;
    /* padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); */
}

.results-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.clear-all-btn {
    font-size: 14px;
    color: var(--theme);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

/* Off-canvas */
.filter-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #120d31;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.filter-offcanvas.active {
    right: 0;
}

.filter-offcanvas-header {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-offcanvas-header h3 {
    font-size: 20px;
    margin: 0;
}

.close-offcanvas {
    font-size: 20px;
    color: var(--white);
}

.filter-offcanvas-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
}

.filter-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-content {
    display: none;
    padding: 15px 0;
}

.accordion-item.active .accordion-content {
    display: block;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .filter-items-scroll {
        display: none;
    }
    .mobile-filter-trigger {
        display: flex;
    }
    .filter-bar {
        padding: 10px;
    }
    .filter-results-info {
        border: none;
        padding: 0;
    }
    .new-32{
        flex-wrap: wrap;
    }
}

/* Extracted from cart.html */
.cart-hero { padding: 140px 0 100px; position: relative; overflow: hidden; background: linear-gradient(135deg, #000000, #0a0a1a, #f15a24); text-align: center; }
.cart-hero::before { content: ""; position: absolute; inset: 0; background: url("../img/home-2/hero/dot-shape.png") center/cover; opacity: .15; }
.cart-hero-content { position: relative; z-index: 2; }
.cart-section { padding: 100px 0; background: #000000; }
.cart-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(241, 90, 36, 0.15); border-radius: 20px; padding: 20px; display: flex; align-items: center; gap: 20px; margin-bottom: 20px; transition: all 0.3s ease; }
.cart-item:hover { border-color: rgba(241, 90, 36, 0.5); box-shadow: 0 10px 30px rgba(241, 90, 36, 0.1); transform: translateY(-5px); }
.cart-item-img { width: 100px; height: 100px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.cart-item-cat { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; }
.cart-item-price { font-size: 1.1rem; font-weight: 700; color: #f15a24; }
.cart-qty-ctrl { display: flex; align-items: center; gap: 15px; background: rgba(0, 0, 0, 0.5); padding: 5px 10px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); width: fit-content; }
.cart-qty-btn { background: transparent; border: none; color: #fff; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color 0.2s; }
.cart-qty-btn:hover { color: #f15a24; }
.cart-qty-input { background: transparent; border: none; color: #fff; width: 30px; text-align: center; font-weight: 600; outline: none; }
.cart-item-remove { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 0, 0, 0.1); color: #ff4d4d; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; border: none; }
.cart-item-remove:hover { background: #ff4d4d; color: #fff; transform: rotate(90deg); }
.cart-summary { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(241, 90, 36, 0.2); border-radius: 20px; padding: 30px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: rgba(255, 255, 255, 0.8); }
.summary-row.total { font-size: 1.3rem; font-weight: 800; color: #fff; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.summary-row.total span:last-child { color: #f15a24; }
.checkout-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: #f15a24; color: #fff; padding: 15px; border-radius: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 30px; transition: all 0.3s ease; border: none; }
.checkout-btn:hover { background: #d0491a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(241, 90, 36, 0.3); }

@media (max-width: 767px) {
    .cart-item { flex-direction: column; text-align: center; }
    .cart-item-img { width: 100%; height: 180px; }
    .cart-qty-ctrl { margin: 15px auto; justify-content: center; }
    .cart-summary { margin-top: 40px; }
}
.section-bg-1{
    background-color: black;
}