@charset "UTF-8";
/*======================================================================================
Theme Name: Neotix
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Neotix - IT Service & Solution HTML Template
Service Html Template
Version: 1.0.0
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #F94D00;
    --header: #0B0D17;
    --text: #534F5A;
    --border: #02060A;
    --bg: #EFEDE5;
    --bg2: #0F172A;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--bg);
    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: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 95%;
    text-transform: capitalize;
}

@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: 600;
    line-height: 117%;
}

@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: 30px;
    }
}

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

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 133%;
    text-transform: capitalize;
}

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

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

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 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    padding: 16px 40px 14px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    gap: 5px;
    text-align: center;
    background-color: var(--theme);
    z-index: 1;
    border-radius: 100px;
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn::before {
    content: "";
    background-color: var(--header);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.theme-btn:hover::before {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
    transition-delay: 200ms;
}

.theme-btn::after {
    content: "";
    background-color: rgba(11, 13, 23, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.theme-btn:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.theme-btn span {
    font-size: 16px;
    position: relative;
    top: -1px;
    font-weight: 700;
    transition: all 500ms ease;
}

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

.theme-btn:hover img {
    filter: brightness(0);
}

.link-btn {
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.link-btn i {
    margin-left: 5px;
    color: var(--theme);
}

.tw-hover-btn {
    position: relative;
    overflow: hidden;
}

.theme-btn-main {
    width: 166px;
    height: 166px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.theme-btn-text,
.theme-btn-icon {
    position: relative;
    z-index: 3;
}

.tw-btn-circle-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--theme);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
    bottom: -15px;
}

/*---------------------------------------
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 {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    border: none;
}

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

.mean-container .mean-nav ul li .submenu li a {
    border-bottom: none !important;
    font-size: 14px;
    padding: 6px 0;
    color: var(--header);
}

.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 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    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;
}

.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 "Plus Jakarta Sans", sans-serif, "Inter", sans-serif;
    text-align: center;
    user-select: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 575px) {
    .back-to-top {
        display: none;
    }
}

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

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

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

.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%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

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

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

.cursor-inner span {
    color: var(--text);
    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 {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme);
    border: 1px solid #686363;
    opacity: 0;
}

.search_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header);
    z-index: 100;
    padding-top: 70px;
    padding-bottom: 100px;
    opacity: 0;
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: all 0.6s ease;
}

.search_popup.search-opened {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0s;
    z-index: 999999;
}

.search_popup.search-opened .search_form .search_input {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
    width: 100%;
    transition-delay: 0.5s;
}

@media (max-width: 575px) {
    .search_popup {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

.search_wrapper .search_top {
    margin-bottom: 80px;
}

.search_wrapper .search_top .search_logo {
    max-width: 200px;
}

.search_wrapper .search_top .search_logo a {
    display: block;
}

@media (max-width: 575px) {
    .search_wrapper .search_top .search_logo {
        max-width: 150px;
    }
}

.search_wrapper .search_top .search_close {
    margin-left: auto;
    margin-top: 10px;
}

.search_wrapper .search_top .search_close .search_close_btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 35px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.search_wrapper .search_top .search_close .search_close_btn svg {
    width: 30px;
    height: 30px;
}

.search_wrapper .search_top .search_close .search_close_btn:hover {
    color: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 575px) {
    .search_wrapper .search_top {
        margin-bottom: 50px;
    }
}

@media (max-width: 500px) {
    .search_wrapper .search_top {
        margin-bottom: 40px;
    }
}

.search_wrapper .search_form .search_input {
    position: relative;
    height: 80px;
    transform: translateY(-40px);
    transition: all 0.4s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
}

.search_wrapper .search_form .search_input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition-delay: 0.3s;
    transition: all 0.4s ease-in-out;
}

.search_wrapper .search_form .search_input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--text);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}

.search_wrapper .search_form .search_input input::placeholder {
    font-size: 24px;
}

.search_wrapper .search_form .search_input input~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: all 0.5s;
}

.search_wrapper .search_form .search_input input:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.5s;
}

@media (max-width: 575px) {
    .search_wrapper .search_form .search_input input {
        font-size: 20px;
    }

    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .search_wrapper .search_form .search_input input {
        font-size: 18px;
    }

    .search_wrapper .search_form .search_input input::placeholder {
        font-size: 18px;
    }
}

.search_wrapper .search_form .search_input button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--white);
}

.search-popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    cursor: zoom-out;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.search-popup-overlay-open {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.35s;
}

@-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));
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

/* CSS */
.text-anims {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.text-anims.show {
    opacity: 1;
    transform: scale(1);
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
    background-color: var(--theme);
    position: relative;
    margin-bottom: 30px;
}

.header-top-section .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .header-top-section .container-fluid {
        padding: 0 15px;
    }
}

@media (max-width: 1399px) {
    .header-top-section {
        display: none;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.header-top-wrapper .header-left .list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .header-left .list li {
    color: var(--white);
}

.header-top-wrapper .header-left .list li i {
    margin-right: 5px;
}

.header-top-wrapper .header-left .list li a {
    color: var(--white);
}

.header-top-wrapper .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper .header-right span {
    color: var(--white);
}

.header-top-wrapper .header-right span i {
    margin-right: 5px;
}

.header-top-wrapper .header-right .social-icon {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-top-wrapper .header-right .social-icon a {
    color: var(--theme);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--white);
    opacity: 0.6;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    border-radius: 100px;
}

.header-top-wrapper .header-right .social-icon a:hover {
    background-color: var(--white);
    opacity: initial;
    color: var(--header);
}

@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: 50px;
}

@media (max-width: 1199px) {
    .header-main .main-menu ul li {
        margin-inline-end: 30px;
    }
}

.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: 600;
    color: rgba(255, 255, 255, 0.7);
    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);
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 115%;
    inset-inline-start: 0;
    min-width: 260px;
    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: 6px solid var(--theme);
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.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;
    letter-spacing: -0.34px;
    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);
}

.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: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.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%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
    width: 100%;
    padding: 0 12px;
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .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: 18px 30px;
    justify-content: center;
    line-height: 1;
    color: var(--white) !important;
    position: relative;
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -11;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--header);
    transition: all 0.4s ease-in-out;
    border-radius: 100px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
    display: none;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.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-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
}

.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 {
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 100px;
}

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

.header-main .header-right .menu_search .search_btn {
    color: rgba(255, 255, 255, 0.7);
}

.header-main .header-right .header-btn {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.header-main .header-right .header-btn h6 {
    color: rgba(255, 255, 255, 0.8);
}

.header-main .header-right .header-btn h6 i {
    color: var(--theme);
    margin-right: 10px;
}

@media (max-width: 1600px) {
    .header-main .header-right .header-btn h6 {
        display: none;
    }
}

.header-main .header-right .header-btn h6 a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1399px) {
    .header-main .header-right .header-btn .header-button {
        display: none;
    }
}

.header-main .header-right .header-btn .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--white);
}

.header-1 {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    margin-top: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1399px) {
    .header-1 {
        top: 0;
        margin-top: 0;
    }
}

.header-1 .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

.header-1 .header-main .header-left .header-logo-2 {
    display: none;
}

.header-1.header-2 {
    margin-top: 30px;
    border-bottom: none;
}

.header-1.header-2 .header-main {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 0 20px;
    border-radius: 100px;
}

@media (max-width: 1399px) {
    .header-1.header-2 .header-main {
        background-color: transparent;
        padding: 10px 0;
        border-radius: 0;
        backdrop-filter: initial;
    }
}

.header-1.header-2 .header-main .header-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.header-1.header-4 {
    margin-top: 0;
}

.header-1.header-4 .header-main {
    background-color: var(--white);
    padding: 10px 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

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

.header-1.header-4 .header-main .header-right .menu_search .search_btn {
    color: var(--header);
}

.header-1.header-4 .header-main .header-right .header-btn .sidebar__toggle {
    color: var(--header);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all 0.9s;
    background-color: var(--white);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 {
    margin-top: 0;
}

.sticky.header-1 .header-main .header-left .header-logo {
    display: none;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
    display: block;
}

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

.sticky.header-1 .header-main .header-right .menu_search .search_btn {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn h6 a {
    color: var(--header);
}

.sticky.header-1 .header-main .header-right .header-btn .sidebar__toggle {
    color: var(--header);
}

.sticky.header-2 {
    margin-top: 0;
}

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

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

.offcanvas__info.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;
}

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

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

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
    margin-bottom: 20px;
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

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

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

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

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

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

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

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

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: #000;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    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;
    margin-top: 50px;
}

@media (max-width: 1399px) {
    .breadcrumb-wrapper {
        margin-top: 0;
    }
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 6, 10, 0) 0%, #02060A 90.52%);
    opacity: 0.9;
    z-index: -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.error-items {
    text-align: center;
    position: relative;
    margin-top: -40px;
}

@media (max-width: 1399px) {
    .error-items {
        margin-top: 0;
    }
}

.error-items .error-image {
    margin-bottom: 30px;
}

.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-widget-wrapper {
    padding: 90px 0 120px;
}

@media (max-width: 1399px) {
    .footer-widget-wrapper {
        padding: 70px 0 100px;
    }
}

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

.footer-widget-wrapper.style-4 {
    padding: 190px 0 120px;
}

@media (max-width: 1399px) {
    .footer-widget-wrapper.style-4 {
        padding: 70px 0 100px;
    }
}

@media (max-width: 991px) {
    .footer-widget-wrapper.style-4 {
        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 {
    color: var(--white);
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
    color: var(--white);
    opacity: 0.8;
    max-width: 352px;
    margin-bottom: 30px;
}

.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 {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper .footer-widget-items .list-area li a {
    color: var(--white);
    opacity: 0.8;
}

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

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

.footer-widget-wrapper .footer-widget-items .contact-item form {
    position: relative;
    margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .contact-item form input {
    width: 100%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget-wrapper .footer-widget-items .contact-item form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget-wrapper .footer-widget-items .contact-item .theme-btn {
    border-radius: 8px;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.footer-widget-wrapper .footer-widget-items .contact-item .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper .footer-widget-items .contact-content h6 {
    color: rgba(255, 255, 255, 0.7);
    line-height: 162%;
}

.footer-widget-wrapper .footer-widget-items .contact-content h6 a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1399px) {
    .footer-widget-wrapper .footer-widget-items .contact-content h6 br {
        display: none;
    }
}

.footer-widget-wrapper.style-wrapper-3 {
    padding: 70px 0 60px;
}

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

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

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content p {
    color: rgba(2, 6, 10, 0.7);
}

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

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    opacity: initial;
    color: #fff;
    background-color: #02060A;
    text-align: center;
    opacity: 0.6;
    text-align: center;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .list-area li a {
    color: rgba(2, 6, 10, 0.7);
}

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

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form {
    position: relative;
    margin-bottom: 15px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input {
    width: 100%;
    border: none;
    border: 1px solid rgba(2, 6, 10, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item form input::placeholder {
    color: rgba(2, 6, 10, 0.7);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn {
    background-color: var(--header);
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.footer-widget-wrapper.style-wrapper-3 .footer-widget-items .contact-item .theme-btn:hover {
    color: var(--white);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

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

.footer-bottom-wrapper p {
    color: rgba(255, 255, 255, 0.87);
}

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

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

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

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

.footer-bottom-wrapper.style-3 {
    border-top: 1px solid rgba(2, 6, 10, 0.1);
}

.footer-bottom-wrapper.style-3 p {
    color: var(--header);
}

.footer-bottom-wrapper.style-3 p span {
    color: var(--theme);
}

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

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

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

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

.footer-area {
    margin: 0 30px 0px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .footer-area {
        margin: 0 15px 0px;
    }
}

.footer-newsletter-box {
    padding: 50px 50px 50px 42px;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .footer-newsletter-box {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
}

.footer-newsletter-box h2 {
    color: var(--white);
    position: relative;
}

@media (max-width: 1399px) {
    .footer-newsletter-box h2 br {
        display: none;
    }
}

.footer-newsletter-box .newsletter-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1399px) {
    .footer-newsletter-box .newsletter-content {
        flex-wrap: wrap;
    }
}

.footer-newsletter-box .newsletter-content form {
    position: relative;
}

.footer-newsletter-box .newsletter-content form input {
    width: 100%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
    width: 376px;
}

@media (max-width: 767px) {
    .footer-newsletter-box .newsletter-content form input {
        width: 250px;
    }
}

.footer-newsletter-box .newsletter-content form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-box .newsletter-content .theme-btn {
    border-radius: 8px;
}

.footer-section-3 {
    position: relative;
}

.footer-section-3 .bottom-shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.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 {
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
    opacity: 0.8;
    background: var(--white);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
}

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

.section-title .sub-title.style-2 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.section-title .sub-title.style-3 {
    background: #EFEDE5;
    backdrop-filter: blur(16px);
}

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

.section-title h2 span {
    color: rgba(15, 23, 42, 0.3);
}

@media (max-width: 1399px) {
    .section-title h2 br {
        display: none;
    }
}

.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;
    }
}

@media (max-width: 1399px) {
    .section-title-area p br {
        display: none;
    }
}

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

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

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

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

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

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

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

/*---------------------------------------
05. Sections
---------------------------------------*/
@media (max-width: 1399px) {
    .about-wrapper {
        margin-top: 30px;
    }
}

.about-wrapper .about-image {
    overflow: hidden;
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper .about-content {
    margin-left: 25px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content {
        margin-left: 0;
    }
}

.about-wrapper .about-content .about-item {
    display: flex;
    align-items: start;
    gap: 55px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-item {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 0;
    }
}

.about-wrapper .about-content .about-item .count-item {
    min-width: 260px;
}

.about-wrapper .about-content .about-item .count-item h2 {
    color: var(--theme);
    font-size: 134px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .about-wrapper .about-content .about-item .count-item h2 {
        font-size: 80px;
    }
}

.about-wrapper .about-content .about-item .count-item h5 {
    line-height: 156%;
}

.about-wrapper .about-content .about-item .content-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.about-wrapper .about-content .about-item .content-box p {
    margin-bottom: 15px;
}

.about-wrapper .about-content .about-item .content-box p span {
    color: var(--header);
    text-decoration: underline;
}

.about-wrapper .about-content .about-item .content-box .theme-btn {
    margin-top: 5px;
    display: inline-block;
}

.about-section .section-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

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

.about-wrapper .about-image {
    max-width: 548px;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-image {
        max-width: initial;
    }
}

.about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper .about-content .text {
    margin-top: 20px;
    max-width: 533px;
    margin-bottom: 30px;
}

.about-wrapper .about-content .about-list {
    margin-bottom: 30px;
}

.about-wrapper .about-content .about-list li {
    color: var(--header);
    font-weight: 600;
}

.about-wrapper .about-content .about-list li:not(:last-child) {
    margin-bottom: 10px;
}

.about-wrapper .about-content .about-list li i {
    margin-right: 10px;
    color: var(--theme);
}

.about-wrapper-3 .about-image {
    margin-left: -275px;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 1899px) {
    .about-wrapper-3 .about-image {
        margin-left: -135px;
    }
}

@media (max-width: 1600px) {
    .about-wrapper-3 .about-image {
        margin-left: -41px;
    }
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-image {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.about-wrapper-3 .about-content {
    margin-left: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content {
        margin-left: 0;
    }
}

.about-wrapper-3 .about-content .text {
    margin-top: 20px;
    max-width: 533px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .text {
        margin-bottom: 30px;
    }
}

.about-wrapper-3 .about-content .progress-item {
    margin-bottom: 48px;
    display: flex;
    gap: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .progress-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content .progress-item {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.about-wrapper-3 .about-content .progress-item .pro-items {
    width: 100%;
}

.about-wrapper-3 .about-content .progress-item .pro-items:not(:last-child) {
    margin-bottom: 20px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head {
    margin-bottom: 10px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
    margin-bottom: 15px;
    margin-top: 10px;
}

.about-wrapper-3 .about-content .progress-item .pro-items .pro-head .point {
    font-size: 56px;
    font-weight: 600;
    color: var(--header);
}

@media (max-width: 1399px) {
    .about-wrapper-3 .about-content .progress-item .pro-items .pro-head .point {
        font-size: 50px;
    }
}

.about-wrapper-3 .about-content .progress-item .pro-items .progress {
    background: var(--white);
    justify-content: flex-start;
    border-radius: 10px;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.about-wrapper-3 .about-content .progress-item .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 10px;
    background: var(--theme);
    height: 6px;
    width: 0;
}

.about-wrapper-3 .about-content .progress-item .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.about-wrapper-3 .about-content .progress-item .pro-items .style-three {
    animation: load3 3s normal forwards;
}

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

    100% {
        width: 90%;
    }
}

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

    100% {
        width: 70%;
    }
}

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

    100% {
        width: 55%;
    }
}

.about-wrapper-3 .about-content .about-button-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .about-wrapper-3 .about-content .about-button-item {
        flex-wrap: wrap;
    }
}

.about-wrapper-3 .about-content .about-button-item .call-button {
    background-color: var(--white);
    border-radius: 100px;
    padding: 16px 40px 14px;
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
}

.about-wrapper-3 .about-content .about-button-item .call-button i {
    margin-right: 5px;
}

.about-section-3 {
    margin: 0 30px;
}

@media (max-width: 1399px) {
    .about-section-3 {
        margin: 0 15px;
    }
}

.about-wrapper-4 {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-4 {
        padding-top: 30px;
        margin-top: 30px;
    }
}

.about-wrapper-4 .count-item {
    min-width: 260px;
}

.about-wrapper-4 .count-item h2 {
    color: var(--theme);
    font-size: 195px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .count-item h2 {
        font-size: 80px;
    }
}

.about-wrapper-4 .count-item h5 {
    line-height: 156%;
    color: var(--white);
}

.about-wrapper-4 .about-right-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .about-right-item {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about-wrapper-4 .about-right-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-wrapper-4 .about-right-item .about-image {
    overflow: hidden;
    border-radius: 12px;
}

.about-wrapper-4 .about-right-item .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-wrapper-4 .about-right-item .content p {
    color: rgb(255, 255, 255);
    max-width: 405px;
    opacity: 0.8;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .about-wrapper-4 .about-right-item .content p {
        margin-bottom: 30px;
    }
}

.about-section-4 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 1399px) {
    .about-section-4 {
        margin: 0 15px;
    }
}

.about-section-4 .section-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .about-section-4 .section-title {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.brand-section {
    margin: 30px;
    margin-bottom: 0;
}

.brand-box-1 {
    height: 125px;
    line-height: 125px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.brand-box-1 .brand-img-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box-1 .brand-img-1 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.brand-box-1 .brand-img-1:last-child img {
    transform: translateY(-350%);
    opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
    transform: translateY(100%);
    opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.brand-slider.style-2 {
    margin-top: 120px;
}

@media (max-width: 1399px) {
    .brand-slider.style-2 {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .brand-slider.style-2 {
        margin-top: 80px;
    }
}

.brand-slider.style-2 .brand-box-1 {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-slider.style-2 .brand-box-1 .brand-img-1 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.brand-slider.style-2 .brand-box-1 .brand-img-1:last-child img {
    transform: translateY(-350%);
    opacity: 0;
}

.brand-slider.style-2 .brand-box-1:hover .brand-img-1:first-child img {
    transform: translateY(100%);
    opacity: 0;
}

.brand-slider.style-2 .brand-box-1:hover .brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.brand-section-4 {
    margin: 0 30px 30px;
}

@media (max-width: 1399px) {
    .brand-section-4 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .brand-section-4 {
        margin-bottom: 80px;
    }
}

.contact-section-3 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .contact-section-3 {
        margin: 0 15px;
    }
}

.contact-us-wrapper .contact-content .contact-left-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-content .contact-left-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.contact-us-wrapper .contact-content .contact-left-item .content h4 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6 {
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
    line-height: 162%;
    margin-bottom: 5px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 {
    opacity: initial;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.color-1 a {
    color: var(--white);
    opacity: initial;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6 a {
    color: var(--white);
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color {
    font-weight: 700;
    font-size: 17px;
}

.contact-us-wrapper .contact-content .contact-left-item .content h6.tm-color a {
    color: var(--theme);
}

.contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-content .contact-left-item .content.style-2 {
        border-left: none;
        padding-left: 0;
    }
}

.contact-us-wrapper .contact-content p {
    max-width: 420px;
    margin-bottom: 30px;
    color: var(--white);
    opacity: 0.8;
}

.contact-us-wrapper .contact-content .link-btn {
    color: var(--white);
    text-decoration: underline;
}

.contact-us-wrapper .contact-content .link-btn i {
    color: var(--white);
}

.contact-us-wrapper .contact-content .link-btn:hover {
    color: var(--theme);
}

.contact-us-wrapper .contact-content .link-btn:hover i {
    color: var(--theme);
}

.contact-us-wrapper .contact-box {
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 3px solid #F94D00;
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 60px 30px;
}

@media (max-width: 1399px) {
    .contact-us-wrapper .contact-box {
        margin-left: 0;
        padding: 30px;
    }
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
    outline: none;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease-in-out;
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover {
    color: var(--white);
    border: 1px solid var(--white);
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt input:hover::textarea,
.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea:hover::textarea {
    color: var(--white);
}

.contact-us-wrapper .contact-box .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
    color: rgba(255, 255, 255, 0.7);
    resize: none;
}

.contact-us-wrapper .contact-box .contact-form-box .theme-btn {
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.contact-info-box {
    background-color: var(--white);
    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(--header);
}

.contact-info-box.active .icon i {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
}

.contact-info-box.active .content h4,
.contact-info-box.active .content p {
    color: var(--white);
}

.contact-info-box.active .content p a {
    color: var(--white);
}

.contact-wrapper-inner .contact-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

.contact-wrapper-inner .contact-box-items {
    padding: 50px 50px;
    border-radius: 12px;
    background-color: var(--bg);
}

@media (max-width: 767px) {
    .contact-wrapper-inner .contact-box-items {
        padding: 30px;
    }
}

.contact-wrapper-inner .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-inner .contact-box-items.style-2 .contact-form-box .form-clt input,
.contact-wrapper-inner .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-inner .contact-box-items.style-2 .contact-form-box .form-clt input::placeholder,
.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt textarea::placeholder {
    color: var(--white);
}

.contact-wrapper-inner .contact-box-items.style-2 .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.contact-wrapper-inner .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-inner .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select .current {
    color: var(--white);
}

.contact-wrapper-inner .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-inner .contact-box-items .contact-form-box {
    margin-top: 30px;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt input,
.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea {
    outline: none;
    width: 100%;
    color: var(--header);
    padding-bottom: 20px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    text-transform: capitalize;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt input::placeholder,
.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select {
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    background-color: transparent;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--header);
    padding-bottom: 20px;
    border-radius: 0;
}

.contact-wrapper-inner .contact-box-items .contact-form-box .form-clt .form .single-select .current {
    color: var(--header);
}

.contact-wrapper-inner .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-inner .contact-box-items .contact-form-box .form-clt .form .single-select .list {
    width: 100%;
}

.newsletter-box-4 {
    padding: 50px 50px 50px 42px;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -100px;
    position: relative;
    z-index: 999;
}

@media (max-width: 1399px) {
    .newsletter-box-4 {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .newsletter-box-4 {
        margin-bottom: 80px;
    }
}

.newsletter-box-4 h2 {
    color: var(--white);
    position: relative;
}

@media (max-width: 1399px) {
    .newsletter-box-4 h2 br {
        display: none;
    }
}

.newsletter-box-4 .newsletter-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1399px) {
    .newsletter-box-4 .newsletter-content {
        flex-wrap: wrap;
    }
}

.newsletter-box-4 .newsletter-content form {
    position: relative;
}

.newsletter-box-4 .newsletter-content form input {
    width: 100%;
    border: none;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    line-height: 1;
    color: rgba(2, 6, 10, 0.5);
    width: 376px;
}

@media (max-width: 767px) {
    .newsletter-box-4 .newsletter-content form input {
        width: 250px;
    }
}

.newsletter-box-4 .newsletter-content form input::placeholder {
    color: rgba(2, 6, 10, 0.5);
}

.newsletter-box-4 .newsletter-content .theme-btn {
    border-radius: 8px;
    background-color: var(--header);
}

.newsletter-box-4 .newsletter-content .theme-btn::before {
    background-color: var(--white);
}

.newsletter-box-4 .newsletter-content .theme-btn:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.newsletter-box-4 .newsletter-content .theme-btn:hover {
    color: var(--header);
}

.faq-items {
    margin-top: 30px;
    text-align: center;
}

.faq-items .accordion .accordion-item {
    border: none;
    margin-bottom: 25px;
    background: var(--white);
    padding: 0;
    border-radius: 8px !important;
}

.faq-items .accordion .accordion-item h2 button {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    box-shadow: none;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    padding: 24px 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--header);
}

@media (max-width: 1399px) {
    .faq-items .accordion .accordion-item h2 button {
        font-size: 20px;
        padding: 24px 16px;
    }
}

@media (max-width: 575px) {
    .faq-items .accordion .accordion-item h2 button {
        font-size: 16px;
        padding: 24px 16px;
    }
}

.faq-items .accordion .accordion-item .accordion-body p {
    color: var(--text);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 575px) {
    .faq-items .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

.faq-items .accordion .accordion-button {
    background-color: var(--theme);
    color: var(--white) !important;
}

.faq-items .accordion .accordion-button::after {
    display: none;
}

.faq-items .accordion .accordion-button::before {
    position: absolute;
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 13px;
    right: 22px;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--theme);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
}

@media (max-width: 1399px) {
    .faq-items .accordion .accordion-button::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.faq-items .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header) !important;
}

.faq-items .accordion .accordion-button.collapsed::before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    color: var(--white);
    background-color: var(--theme);
}

.faq-wrapper-3 .faq-content .section-title h2 {
    font-size: 122px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .faq-wrapper-3 .faq-content .section-title h2 {
        font-size: 40px;
    }
}

.faq-wrapper-3 .faq-content .text {
    max-width: 420px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.faq-wrapper-3 .faq-content .link-btn {
    text-decoration: underline;
    color: var(--header);
}

.faq-wrapper-3 .faq-content .link-btn i {
    color: var(--header);
}

.faq-wrapper-3 .faq-content .link-btn:hover {
    color: var(--theme);
}

.faq-wrapper-3 .faq-content .link-btn:hover i {
    color: var(--theme);
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item {
    border: none;
    margin-bottom: 25px;
    background: var(--white);
    padding: 0;
    border-radius: 8px !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    box-shadow: none;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    padding: 24px 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--header);
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-item h2 button {
        font-size: 16px;
        padding: 24px 16px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
    color: var(--text);
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}

@media (max-width: 575px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-item .accordion-body p {
        width: 100%;
        font-size: 14px;
        line-height: 28px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button {
    background-color: var(--theme);
    color: var(--white) !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button::after {
    display: none;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button::before {
    position: absolute;
    content: "+";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 13px;
    right: 22px;
    font-size: 14px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    color: var(--theme);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--white);
}

@media (max-width: 1399px) {
    .faq-wrapper-3 .faq-items-3 .accordion .accordion-button::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--header) !important;
}

.faq-wrapper-3 .faq-items-3 .accordion .accordion-button.collapsed::before {
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    color: var(--white);
    background-color: var(--theme);
}

.counter-wrapper .counter-box-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 25px;
}

.counter-wrapper .counter-box-item .counter-top-item {
    display: flex;
    align-items: center;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 175px;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-box-item .counter-top-item {
        margin-bottom: 30px;
    }
}

.counter-wrapper .counter-box-item .counter-top-item h2 {
    color: var(--white);
    font-size: 64px;
    line-height: 80%;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-box-item .counter-top-item h2 {
        font-size: 55px;
    }
}

.counter-wrapper .counter-box-item .counter-top-item .top-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter-wrapper .counter-box-item .counter-top-item .top-right span {
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 8px;
    border: 1px solid var(--theme);
    transition: all 0.4s ease-in-out;
}

.counter-wrapper .counter-box-item h4 {
    color: rgb(255, 255, 255);
}

.counter-wrapper .counter-box-item:hover .counter-top-item .top-right span {
    background-color: var(--theme);
}

.counter-wrapper .counter-content {
    margin-left: 150px;
}

@media (max-width: 1399px) {
    .counter-wrapper .counter-content {
        margin-left: 0;
    }
}

.counter-wrapper .counter-content .text {
    color: rgb(255, 255, 255);
    margin-top: 20px;
    max-width: 299px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.counter-wrapper .counter-content .video-circle {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    text-align: center;
    z-index: 2;
}

.counter-wrapper .counter-content .video-circle img {
    width: initial;
    height: initial;
}

.counter-wrapper .counter-content .video-circle .text-circle {
    animation: cir36 10s linear infinite;
}

.counter-wrapper .counter-content .video-circle .ripple::before,
.counter-wrapper .counter-content .video-circle .ripple::after {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 0 rgba(249, 77, 0, 0.5);
}

.counter-wrapper .counter-content .video-circle .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    z-index: 9;
}

.counter-wrapper .counter-content .video-circle .video-btn:hover {
    background-color: var(--white);
    color: var(--header);
}

.counter-wrapper .counter-content .video-circle img {
    margin-left: 0;
}

.counter-section {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .counter-section {
        margin: 0 15px;
    }
}

.feature-top-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 120px;
    margin-top: 120px;
}

@media (max-width: 1399px) {
    .feature-top-item {
        margin-top: 100px;
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .feature-top-item {
        margin-top: 80px;
        padding-top: 80px;
    }
}

.feature-top-item .section-title-area {
    align-items: start;
}

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

.feature-top-item .section-title-area .section-title p {
    max-width: 299px;
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

.feature-top-item .section-title-area .section-right {
    display: flex;
    align-items: center;
    gap: 205px;
}

@media (max-width: 1399px) {
    .feature-top-item .section-title-area .section-right {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-top-item .box-slider {
    margin-top: 48px;
}

.feature-icon-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1.13258px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18.1212px);
    border-radius: 9.78671px;
    padding: 34px;
    text-align: center;
    position: relative;
    width: 122px;
    height: 122px;
}

.feature-icon-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: solid 1px var(--theme);
    border-left: solid 1px var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.feature-icon-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: solid 1px var(--theme);
    border-right: solid 1px var(--theme);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.feature-icon-item:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.feature-icon-item:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.feature-icon-item:hover img {
    animation: jello 1s;
}

.feature-icon-item-2 {
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 1399px) {
    .feature-icon-item-2 {
        flex-wrap: wrap;
    }
}

.feature-icon-item-2 .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--white);
    border-radius: 4px;
}

.feature-icon-item-2 .content p {
    max-width: 290px;
    margin-top: 10px;
}

.feature-icon-item-2:hover .icon img {
    animation: jello 1s;
}

.feature-section-2 {
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    margin-bottom: 120px;
}

@media (max-width: 1399px) {
    .feature-section-2 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .feature-section-2 {
        margin-bottom: 80px;
    }
}

.video-bg-section {
    position: relative;
    margin: 0 30px;
    border-radius: 16px;
    height: 872px;
}

@media (max-width: 1399px) {
    .video-bg-section {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .video-bg-section {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .video-bg-section {
        margin: 0 15px;
        height: 400px;
    }
}

.video-bg-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 6, 10, 0) 0%, #02060A 90.52%);
    opacity: 0.9;
    border-radius: 0px 0px 16px 16px;
}

.video-bg-section .marquee {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    line-height: 95px;
}

@media (max-width: 991px) {
    .video-bg-section .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .video-bg-section .marquee {
        line-height: 60px;
    }
}

.video-bg-section .marquee .text {
    font-size: 125px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .video-bg-section .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .video-bg-section .marquee .text {
        font-size: 80px;
    }
}

.marque-section-3 .marquee {
    background-color: transparent;
    margin-bottom: 0;
    line-height: 0px;
    margin-top: -10px;
}

@media (max-width: 991px) {
    .marque-section-3 .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .marque-section-3 .marquee {
        line-height: 60px;
    }
}

.marque-section-3 .marquee .text {
    font-size: 125px;
    font-weight: 600;
    color: var(--theme);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .marque-section-3 .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .marque-section-3 .marquee .text {
        font-size: 80px;
    }
}

.feature-card-items-3 {
    display: flex;
    align-items: start;
    gap: 20px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .feature-card-items-3 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.feature-card-items-3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.feature-card-items-3 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #EFEDE5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .feature-card-items-3 .content h3 {
        font-size: 20px;
    }
}

.feature-card-items-3 .content p {
    margin-top: 10px;
    max-width: 485px;
}

.feature-card-items-3:hover::before {
    transform: scale(1);
    opacity: 1;
}

.feature-card-items-3:hover .icon {
    position: relative;
    z-index: 999;
}

.feature-card-items-3:hover .icon img {
    position: relative;
    z-index: 999;
    animation: jello 1s;
}

.feature-card-items-3:hover .content h3 {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.feature-card-items-3:hover .content p {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.feature-section-3 .section-title-area p {
    max-width: 533px;
}

.video-play-section {
    margin: 0 30px;
    border-radius: 20px;
    padding: 390px 0 120px;
    position: relative;
}

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

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

@media (max-width: 575px) {
    .video-play-section {
        margin: 0 15px;
    }
}

.video-play-box {
    background-color: var(--header);
    padding: 50px 30px;
    border-radius: 10px;
    max-width: 415px;
    width: 100%;
}

@media (max-width: 575px) {
    .video-play-box {
        padding: 30px;
    }
}

.video-play-box h3 {
    font-size: 32px;
    color: var(--white);
}

@media (max-width: 1399px) {
    .video-play-box h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .video-play-box h3 {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .video-play-box h3 {
        font-size: 20px;
    }
}

.video-play-box .play-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .video-play-box .play-item {
        flex-wrap: wrap;
    }
}

.video-play-box .play-item .video-btn {
    width: 124px;
    height: 76px;
    line-height: 76px;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 1399px) {
    .video-play-box .play-item .video-btn {
        width: 76px;
    }
}

.video-play-box .play-item h4 {
    color: var(--white);
    opacity: 0.8;
}

.hero-1 {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 175px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    margin-top: 50px;
}

@media (max-width: 1399px) {
    .hero-1 {
        padding-top: 180px;
        margin-top: 0;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .hero-1 {
        padding-top: 130px;
        padding-bottom: 80px;
    }
}

.hero-1 .hero-content {
    margin-bottom: 115px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.hero-1 .hero-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
}

.hero-1 .hero-content h6 img {
    margin-right: 5px;
    margin-top: -5px;
}

.hero-1 .hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 20px;
}

.hero-1 .hero-content p {
    line-height: 155.556%;
    color: var(--white);
    max-width: 464px;
}

.hero-1 .hero-content .hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

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

.hero-1 .hero-content .hero-btn .theme-btn.style-2 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}

.hero-1 .hero-content .hero-btn .theme-btn.style-2:after {
    background-color: rgba(249, 77, 0, 0.3);
}

.hero-1 .hero-image {
    position: relative;
    text-align: center;
    max-width: 526px;
    margin-left: 110px;
}

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

.hero-1 .hero-image img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
}

@media (max-width: 1199px) {
    .hero-1 .hero-image img {
        margin-left: 0;
        width: 100%;
    }
}

.hero-1 .hero-image .video-circle {
    width: 160px;
    height: 160px;
    line-height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    text-align: center;
    z-index: 2;
    position: absolute;
    right: -80px;
    top: 12%;
}

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

.hero-1 .hero-image .video-circle img {
    width: initial;
    height: initial;
}

.hero-1 .hero-image .video-circle .text-circle {
    animation: cir36 10s linear infinite;
}

.hero-1 .hero-image .video-circle .ripple::before,
.hero-1 .hero-image .video-circle .ripple::after {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 0 rgba(249, 77, 0, 0.5);
}

.hero-1 .hero-image .video-circle .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme);
    color: var(--white);
    text-align: center;
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    z-index: 9;
}

.hero-1 .hero-image .video-circle .video-btn:hover {
    background-color: var(--white);
    color: var(--header);
}

.hero-1 .hero-image .video-circle img {
    margin-left: 0;
}

.hero-1 .hero-image .box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    position: absolute;
    bottom: 60px;
    margin-left: -180px;
    text-align: left;
    border-radius: 8px;
}

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

.hero-1 .hero-image .box .group-image-item {
    display: flex;
    align-items: center;
}

.hero-1 .hero-image .box .group-image-item .group-image img {
    margin-left: 0;
    width: initial;
    height: initial;
    border: 2px solid var(--white);
    border-radius: 100px;
}

.hero-1 .hero-image .box .group-image-item .group-image.style-2 {
    margin-left: -15px;
}

.hero-1 .hero-image .box .group-image-item .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -15px;
    background-color: var(--header);
}

.hero-1 .hero-image .box h4 {
    color: var(--white);
    margin-top: 10px;
}

.hero-2 {
    padding: 200px 0 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .hero-2 {
        padding: 170px 0 100px;
    }
}

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

.hero-2 .hero-content {
    margin-bottom: 120px;
}

@media (max-width: 1399px) {
    .hero-2 .hero-content {
        margin-bottom: 30px;
    }
}

.hero-2 .hero-content h1 {
    color: var(--white);
}

.hero-2 .hero-content p {
    color: #FFFFFF;
    opacity: 0.7;
    max-width: 470px;
    margin-top: 20px;
}

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

@media (max-width: 991px) {
    .hero-2 .container-fluid {
        padding: 0 15px;
    }
}

.hero-2 .hero-imagee {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.hero-2 .hero-imagee img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.hero-2 .hero-box {
    background-color: var(--theme);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    right: 265px;
    top: 400px;
    z-index: 999;
}

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

.hero-2 .hero-box .top-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hero-2 .hero-box .top-item .group-image-item {
    display: flex;
    align-items: center;
}

.hero-2 .hero-box .top-item .group-image-item .group-image img {
    margin-left: 0;
    width: initial;
    height: initial;
    border: 2px solid var(--white);
    border-radius: 100px;
}

.hero-2 .hero-box .top-item .group-image-item .group-image.style-2 {
    margin-left: -15px;
}

.hero-2 .hero-box .top-item .group-image-item .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -15px;
    background-color: var(--header);
}

.hero-2 .hero-box .top-item h2 {
    color: var(--white);
}

.hero-2 .hero-box h3 {
    max-width: 346px;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-2 .hero-box .theme-btn {
    background-color: var(--header);
}

.hero-2 .hero-box .theme-btn::before {
    background-color: var(--white);
}

.hero-2 .hero-box .theme-btn:after {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-2 .hero-box .theme-btn:hover {
    color: var(--header);
}

.hero-3 {
    padding: 250px 0 130px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

@media (max-width: 1399px) {
    .hero-3 {
        padding: 180px 0 120px;
    }
}

@media (max-width: 991px) {
    .hero-3 {
        padding: 150px 0 100px;
    }
}

.hero-3 .hero-content {
    margin-left: 50px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content {
        margin-left: 0;
    }
}

.hero-3 .hero-content h1 {
    color: var(--white);
    font-size: 130px;
    font-weight: 600;
}

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

@media (max-width: 991px) {
    .hero-3 .hero-content h1 {
        font-size: 45px;
    }
}

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

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

.hero-3 .hero-content h1 span {
    display: inline-block;
    margin-left: 450px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content h1 span {
        margin-left: 0;
    }
}

.hero-3 .hero-content p {
    color: rgb(255, 255, 255);
    max-width: 427px;
    margin-left: 450px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content p {
        margin-left: 0;
    }
}

.hero-3 .hero-content .hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-left: 450px;
}

@media (max-width: 1399px) {
    .hero-3 .hero-content .hero-btn {
        margin-top: 25px;
        flex-wrap: wrap;
        margin-left: 0;
    }
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2::before {
    background-color: var(--theme);
}

.hero-3 .hero-content .hero-btn .theme-btn.style-2:after {
    background-color: rgba(249, 77, 0, 0.3);
}

.hero-4 {
    padding: 190px 0 100px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .hero-4 {
        padding: 170px 0 100px;
    }
}

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

.hero-4 .hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1399px) {
    .hero-4 .hero-shape {
        display: none;
    }
}

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

.hero-4 .hero-content .sub {
    font-size: 14px;
    font-weight: 700;
    color: var(--header);
    opacity: 0.8;
    background: var(--white);
    padding: 6px 9px;
    display: inline-block;
    border-radius: 100px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
}

.hero-4 .hero-content .sub img {
    line-height: 1;
    margin-right: 5px;
    margin-top: -3px;
}

.hero-4 .hero-content h1 {
    font-size: 90px;
    margin-bottom: 30px;
    line-height: 109%;
}

@media (max-width: 1399px) {
    .hero-4 .hero-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-content h1 {
        font-size: 45px;
    }
}

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

.hero-4 .hero-content h1 span {
    color: rgb(249, 77, 0);
}

.hero-4 .hero-content h1 b {
    color: rgb(255, 194, 167);
    font-weight: 600;
}

.hero-4 .hero-content p {
    max-width: 666px;
    margin: 0 auto;
}

.hero-4 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero-4 .hero-content .hero-button {
        flex-wrap: wrap;
    }
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn {
    background-color: var(--white);
    color: var(--header);
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn:after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.hero-4 .hero-content .hero-button .theme-btn.style-btn:hover {
    color: var(--white);
}

.news-card-items {
    margin-top: 30px;
    border-radius: 10px;
}

.news-card-items .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-items .news-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card-items .news-image 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);
}

.news-card-items .news-top-content {
    background-color: var(--white);
    padding-top: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news-card-items .news-top-content .news-content {
    padding: 0 24px 30px;
}

.news-card-items .news-top-content .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items .news-top-content .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items .news-top-content .news-content span {
    color: #02060A;
    font-weight: 500;
    display: inline-block;
    margin-top: 40px;
}

.news-card-items .news-top-content .read-button {
    border-top: 1px solid rgba(2, 6, 10, 0.08);
    padding: 15px 30px;
}

.news-card-items:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-card-items:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-card-items-2 {
    margin-top: 30px;
    border-radius: 10px;
}

.news-card-items-2.style-2 {
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.news-card-items-2.style-2 .news-image {
    height: 248px;
}

.news-card-items-2.style-2 .news-image img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
}

.news-card-items-2.style-2 .news-top-content {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0px;
    padding-top: 30px;
}

@media (max-width: 575px) {
    .news-card-items-2.style-2 .news-top-content {
        padding-top: 15px;
    }
}

.news-card-items-2.style-2 .news-top-content .news-content span {
    margin-top: 40px;
    display: inline-block;
}

.news-card-items-2 .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-items-2 .news-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all 500ms ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news-card-items-2 .news-image 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);
}

.news-card-items-2 .news-top-content {
    background-color: var(--white);
    padding-top: 23px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.news-card-items-2 .news-top-content .news-content {
    padding: 0 24px 30px;
}

.news-card-items-2 .news-top-content .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-card-items-2 .news-top-content .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-2 .news-top-content .news-content span {
    color: #02060A;
    font-weight: 500;
    display: inline-block;
    margin-top: 30px;
}

.news-card-items-2 .news-top-content .read-button {
    border-top: 1px solid rgba(2, 6, 10, 0.08);
    padding: 15px 30px;
}

.news-card-items-2:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-card-items-2:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.news-wrapper {
    margin-top: 48px;
    margin-left: -70%;
    margin-right: -30%;
}

@media (max-width: 1399px) {
    .news-wrapper {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px;
    }
}

.news-wrapper .news-card-items-3 {
    border-radius: 10px;
    display: flex;
    align-items: center;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 {
        flex-wrap: wrap;
    }
}

.news-wrapper .news-card-items-3 .news-image {
    position: relative;
    overflow: hidden;
    height: 313px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-image {
        height: initial;
        flex-basis: 100%;
    }
}

.news-wrapper .news-card-items-3 .news-image img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: inline-block;
    transition: all 500ms ease;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-image img {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 10px;
    }
}

.news-wrapper .news-card-items-3 .news-image 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);
}

.news-wrapper .news-card-items-3 .news-content {
    padding: 47px 30px;
    background-color: var(--white);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-content {
        padding: 30px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
    }
}

.news-wrapper .news-card-items-3 .news-content .list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.news-wrapper .news-card-items-3 .news-content .list span {
    color: var(--header);
}

.news-wrapper .news-card-items-3 .news-content .list span.style-2 {
    color: var(--theme);
}

.news-wrapper .news-card-items-3 .news-content h3 {
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .news-wrapper .news-card-items-3 .news-content h3 br {
        display: none;
    }
}

.news-wrapper .news-card-items-3 .news-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-wrapper .news-card-items-3 .news-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-wrapper .news-card-items-3 .news-content .theme-btn {
    background: #EFEDE5;
    color: var(--theme);
}

.news-wrapper .news-card-items-3 .news-content .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.news-wrapper .news-card-items-3 .news-content .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.news-wrapper .news-card-items-3 .news-content .theme-btn:hover {
    color: var(--white);
}

.news-wrapper .news-card-items-3:hover .news-image img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.news-wrapper .news-card-items-3:hover .news-image img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    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(--white);
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
        padding: 30px;
    }
}

.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 .icon {
    float: right;
    margin-top: -30px;
    color: var(--theme);
    font-size: 40px;
}

.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(2, 6, 10, 0.08);
    border-bottom: 1px solid rgba(2, 6, 10, 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(--white);
    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: 1399px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        padding: 12px 20px;
    }
}

@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(--white);
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .news-details-area .blog-post-details .comments-area {
        padding: 50px 30px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 28px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid #e5e5e5;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
    border: none;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--theme);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white);
    color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap {
    background-color: var(--white);
    border-radius: 8px;
    padding: 50px 40px;
    margin-top: 40px;
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--bg);
    border: none;
    padding: 16px 20px;
    font-weight: 500;
    border-radius: 5px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .gt-main-sideber .gt-single-sideber-widget {
        padding: 25px;
    }
}

.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(--bg);
    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(--bg);
    padding: 22px 25px;
    font-family: "Plus Jakarta Sans", 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: "Inter", sans-serif;
}

@media (max-width: 1399px) {
    .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
        font-size: 16px;
    }
}

.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(--bg);
    font-family: "Plus Jakarta Sans", 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);
}

.pricing-box-items {
    margin-top: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 50px 30px;
    position: relative;
}

.pricing-box-items .nexella-hover-bx {
    background: var(--theme);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}

.pricing-box-items .hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.pricing-box-items .hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-box-items .hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-box-items .hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.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;
    color: var(--white);
}

.pricing-box-items .pricing-header h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    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: rgb(255, 255, 255);
    opacity: 0.8;
    letter-spacing: initial;
    margin-left: -12px;
}

.pricing-box-items .pricing-header p {
    color: #FFFFFF;
    opacity: 0.8;
}

.pricing-box-items .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .pricing-box-items .theme-btn {
        margin-top: 30px;
    }
}

.pricing-box-items .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.pricing-box-items .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.pricing-box-items .theme-btn:hover {
    color: var(--white);
}

.pricing-box-items .pricing-list {
    margin-top: 30px;
}

.pricing-box-items .pricing-list h5 {
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

@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: #FFFFFF;
    opacity: 0.8;
    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:hover .nexella-hover-bx {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.pricing-box-items:hover .pricing-list ul li i {
    color: var(--white);
}

.pricing-box-items.style-inner {
    background-color: var(--header);
}

.pricing-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .pricing-section-2 {
        margin: 0 15px;
    }
}

.pricing-section-2 .section-title-area .nav {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 70px;
    padding: 10px;
}

.pricing-section-2 .section-title-area .nav .nav-item .nav-link {
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: capitalize;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 70px;
}

@media (max-width: 575px) {
    .pricing-section-2 .section-title-area .nav .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.pricing-section-2 .section-title-area .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-card-items-3 {
    padding: 50px 30px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    position: relative;
}

@media (max-width: 1399px) {
    .pricing-card-items-3 {
        padding: 30px;
    }
}

.pricing-card-items-3 .nexella-hover-bx {
    background: var(--theme);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}

.pricing-card-items-3 .hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.pricing-card-items-3 .hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.pricing-card-items-3 .hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.pricing-card-items-3 .pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-card-items-3 .pricing-header h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.pricing-card-items-3 .pricing-header h2 {
    color: var(--white);
}

.pricing-card-items-3 .pricing-header h2 span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-items-3 .pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 360px;
}

.pricing-card-items-3 .pricing-list {
    margin-bottom: 40px;
}

.pricing-card-items-3 .pricing-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 162.5%;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card-items-3 .pricing-list li i {
    font-size: 18px;
    color: var(--theme);
}

.pricing-card-items-3 .pricing-list li:not(:last-child) {
    margin-bottom: 15px;
}

.pricing-card-items-3 .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.pricing-card-items-3 .theme-btn:hover {
    color: var(--white);
}

.pricing-card-items-3:hover .nexella-hover-bx {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.pricing-card-items-3:hover .pricing-header {
    border-bottom: 1px solid var(--white);
}

.pricing-card-items-3:hover .pricing-header h2 span {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-header p {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-list li {
    color: var(--white);
}

.pricing-card-items-3:hover .pricing-list li i {
    color: var(--white);
}

.pricing-section-3 {
    margin: 0 30px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .pricing-section-3 {
        margin: 0 15px;
    }
}

.pricing-section-3 .nav-top {
    text-align: center;
    margin-bottom: 18px;
}

@media (max-width: 575px) {
    .pricing-section-3 .nav-top {
        margin-top: 30px;
    }
}

.pricing-section-3 .nav-top .nav {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 70px;
    padding: 10px;
}

.pricing-section-3 .nav-top .nav .nav-item .nav-link {
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 70px;
}

@media (max-width: 575px) {
    .pricing-section-3 .nav-top .nav .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.pricing-section-3 .nav-top .nav .nav-item .nav-link.active {
    background-color: var(--theme);
    color: var(--white);
}

.pricing-card-items-4 {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
}

.pricing-card-items-4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
    .pricing-card-items-4 {
        padding: 30px;
    }
}

.pricing-card-items-4 .pricing-header {
    margin-bottom: 25px;
}

.pricing-card-items-4 .pricing-header p {
    margin-top: 10px;
}

.pricing-card-items-4 .pricing-list {
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .pricing-card-items-4 .pricing-list {
        margin-bottom: 30px;
    }
}

.pricing-card-items-4 .pricing-list li {
    color: var(--header);
    font-weight: 500;
    position: relative;
    padding-left: 13px;
}

.pricing-card-items-4 .pricing-list li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: rgb(249, 77, 0);
    top: 10px;
    left: 0;
}

.pricing-card-items-4 .pricing-list li:not(:last-child) {
    margin-bottom: 10px;
}

.pricing-card-items-4 .theme-btn {
    background-color: rgb(239, 237, 229);
    width: 100%;
    color: var(--header);
    display: inline-block;
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn:after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.pricing-card-items-4 .theme-btn:hover {
    color: var(--white);
}

.pricing-card-items-4:hover::before {
    transform: scale(1);
    opacity: 1;
}

.pricing-card-items-4:hover .pricing-header {
    position: relative;
    z-index: 999;
}

.pricing-card-items-4:hover .pricing-header h3 {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-header p {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-list li {
    color: var(--white);
}

.pricing-card-items-4:hover .pricing-list li::before {
    background-color: var(--white);
}

.marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    margin-bottom: 120px;
    padding: 30px 0;
    background-color: var(--theme);
}

@media (max-width: 1399px) {
    .marquee {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .marquee {
        margin-bottom: 80px;
    }
}

.marquee.slide-right {
    transform: scaleX(-1);
}

.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
    transform: scaleX(-1);
}

.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 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1199px) {
    .marquee .text {
        gap: 30px;
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee .text {
        gap: 20px;
        font-size: 50px;
    }
}

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

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.project-box-wrapper {
    margin-top: 48px;
}

.project-box-wrapper .project-card-items {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 100px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items {
        padding: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-box-wrapper .project-card-items h4 {
    position: absolute;
    top: 55px;
    left: 55px;
}

@media (max-width: 991px) {
    .project-box-wrapper .project-card-items h4 {
        display: none;
    }
}

.project-box-wrapper .project-card-items .project-content h3 {
    font-size: 35px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .project-box-wrapper .project-card-items .project-content h3 {
        font-size: 30px;
    }
}

.project-box-wrapper .project-card-items .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-wrapper .project-card-items .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-wrapper .project-card-items .project-content p {
    max-width: 601px;
    margin-bottom: 25px;
}

.project-box-wrapper .project-card-items .project-content .list {
    margin-top: 150px;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-content .list {
        margin-top: 30px;
    }
}

.project-box-wrapper .project-card-items .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-box-wrapper .project-card-items .project-content .list li a:hover {
    background-color: rgb(239, 237, 229);
    color: var(--theme);
}

.project-box-wrapper .project-card-items .project-thumb {
    overflow: hidden;
}

@media (max-width: 1399px) {
    .project-box-wrapper .project-card-items .project-thumb {
        flex-basis: 100%;
    }
}

.project-box-wrapper .project-card-items .project-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-section-2 .section-title-area {
    margin-bottom: 80px;
}

.project-section-2 .section-title-area .content p {
    max-width: 471px;
    margin-bottom: 15px;
}

.project-section-2 .section-title-area .content .project-btn {
    color: var(--header);
    text-decoration: underline;
    font-weight: 600;
}

.project-section-2 .container-fluid {
    padding: 0 30px;
}

@media (max-width: 575px) {
    .project-section-2 .container-fluid {
        padding: 0 15px;
    }
}

.project-card-items-2.mt-200 {
    margin-top: 200px;
}

@media (max-width: 1399px) {
    .project-card-items-2.mt-200 {
        margin-top: 0;
    }
}

.project-card-items-2.mt-100 {
    margin-top: 100px;
}

@media (max-width: 1399px) {
    .project-card-items-2.mt-100 {
        margin-top: 0;
    }
}

.project-card-items-2 .project-image {
    max-width: 590px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-image {
        max-width: initial;
    }
}

.project-card-items-2 .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-card-items-2 .project-image.tp-clip-anim {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    position: relative;
}

.project-card-items-2 .project-image.tp-clip-anim .tp-anim-img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.project-card-items-2 .project-image.tp-clip-anim .mask {
    background-size: cover;
    background-position: center;
    transform: scale(1.005);
}

.project-card-items-2 .project-image.tp-clip-anim>* {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.project-card-items-2.style-2 {
    margin-left: 230px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-2 {
        margin-left: 0;
    }
}

.project-card-items-2.style-2 .project-image {
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-2 .project-image {
        max-width: initial;
    }
}

.project-card-items-2.style-3 {
    margin-top: 320px;
    max-width: 1000px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-3 {
        margin-top: 0;
        max-width: initial;
    }
}

.project-card-items-2.style-3 .project-image {
    max-width: 1000px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-3 .project-image {
        max-width: initial;
    }
}

.project-card-items-2.style-4 {
    margin-left: 12px;
    max-width: 590px;
}

@media (max-width: 1399px) {
    .project-card-items-2.style-4 {
        max-width: initial;
        margin-left: 0;
    }
}

.project-card-items-2 .project-content {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-content {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.project-card-items-2 .project-content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .project-card-items-2 .project-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .project-card-items-2 .project-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .project-card-items-2 .project-content h3 {
        font-size: 20px;
    }
}

.project-card-items-2 .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-card-items-2 .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-items-2 .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-card-items-2 .project-content .list li a:hover {
    background-color: var(--white);
    color: var(--theme);
}

.project-card-items-inner .project-image {
    height: 562px;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-image {
        max-width: initial;
        height: 350px;
    }
}

.project-card-items-inner .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.project-card-items-inner .project-image.tp-clip-anim {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    position: relative;
}

.project-card-items-inner .project-image.tp-clip-anim .tp-anim-img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.project-card-items-inner .project-image.tp-clip-anim .mask {
    background-size: cover;
    background-position: center;
    transform: scale(1.005);
}

.project-card-items-inner .project-image.tp-clip-anim>* {
    grid-area: 1/1/2/2;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.project-card-items-inner .project-content {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-content {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.project-card-items-inner .project-content h3 {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .project-card-items-inner .project-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .project-card-items-inner .project-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .project-card-items-inner .project-content h3 {
        font-size: 20px;
    }
}

.project-card-items-inner .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-card-items-inner .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-items-inner .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}

.project-card-items-inner .project-content .list li a:hover {
    background-color: var(--white);
    color: var(--theme);
}

.project-details-wrapper .details-top-img {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .project-details-wrapper .details-top-img {
        height: 600px;
    }

    .project-details-wrapper .details-top-img img {
        object-fit: cover;
    }
}

.project-details-wrapper .details-top-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .project-details-content {
    margin-top: 30px;
}

.project-details-wrapper .project-details-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .project-details-wrapper .project-details-content h3 {
        font-size: 25px;
    }
}

.project-details-wrapper .project-details-content .project-list-items {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .project-details-content .project-list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-details-wrapper .project-details-content .project-list-items ul li {
    font-weight: 500;
}

.project-details-wrapper .project-details-content .project-list-items ul li i {
    color: var(--theme);
    margin-right: 10px;
}

.project-details-wrapper .project-details-content .project-list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.project-details-wrapper .project-details-content .details-image-2 {
    margin-top: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .project-details-wrapper .project-details-content .details-image-2 {
        height: 550px;
    }

    .project-details-wrapper .project-details-content .details-image-2 img {
        object-fit: cover;
    }
}

.project-details-wrapper .project-details-content .details-image-2 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .project-details-content .details-img-3 {
    margin-top: 20px;
}

.project-details-wrapper .project-details-content .details-img-3 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .project-details-content .slider-button {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    margin-top: 65px;
    padding: 25px 0;
}

.project-details-wrapper .project-details-content .slider-button span {
    font-weight: 500;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next,
.project-details-wrapper .project-details-content .slider-button .cmn-prev {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s;
    border: 1px solid #E4E4E4;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev i {
    color: var(--theme);
    font-size: 24px;
    transition: all 0.4s;
}

.project-details-wrapper .project-details-content .slider-button .cmn-next:hover,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.project-details-wrapper .project-details-content .slider-button .cmn-next:hover i,
.project-details-wrapper .project-details-content .slider-button .cmn-prev:hover i {
    color: var(--white);
}

.project-details-wrapper .project-details-content .slider-button .previus-text {
    font-size: 22px;
    color: var(--header);
}

.project-details-wrapper .project-details-content .slider-button .icon-gird {
    font-size: 40px;
    color: #0F172A;
}

.project-details-wrapper .project-details-sidebar {
    margin-top: 30px;
}

.project-details-wrapper .project-details-sidebar .sidebar-widget {
    padding: 40px 35px;
    border-radius: 10px;
    background-color: var(--white);
    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(--bg);
    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;
}

.marque-bg-section-4 {
    margin: 0 40px;
    border-radius: 20px;
    height: 518px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .marque-bg-section-4 {
        margin: 0 30px;
        height: 550px;
    }
}

@media (max-width: 1399px) {
    .marque-bg-section-4 {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .marque-bg-section-4 {
        margin: 0 15px;
        height: 350px;
    }
}

.marque-bg-section-4 .marquee {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    line-height: 530px;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee {
        line-height: 75px;
    }
}

@media (max-width: 575px) {
    .marque-bg-section-4 .marquee {
        line-height: 60px;
    }
}

.marque-bg-section-4 .marquee .marquee-group {
    display: flex;
    align-items: center;
    gap: 50px;
}

.marque-bg-section-4 .marquee .marquee-group .hover-image {
    width: 393px;
    height: 393px;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(10deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    margin: -300px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    visibility: hidden;
    will-change: transform;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee .marquee-group .hover-image {
        display: none !important;
    }
}

.marque-bg-section-4 .marquee .text {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 125px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    cursor: none;
}

@media (max-width: 991px) {
    .marque-bg-section-4 .marquee .text {
        font-size: 100px;
    }
}

@media (max-width: 575px) {
    .marque-bg-section-4 .marquee .text {
        font-size: 80px;
    }
}

.marque-bg-section-4 .marquee:hover .marquee-group .hover-image {
    opacity: 1;
    visibility: visible;
}

.project-card-wrapper-4 {
    margin-top: 48px;
}

.project-card-wrapper-4 .project-card-items-4 {
    margin-bottom: 25px;
    border-radius: 12px;
    padding: 350px 30px 30px;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 100px 30px 30px;
    }
}

@media (max-width: 991px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 80px 30px 30px;
    }
}

@media (max-width: 767px) {
    .project-card-wrapper-4 .project-card-items-4 {
        padding: 30px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box {
    background-color: var(--header);
    padding: 35px 30px;
    border-radius: 10px;
    max-width: 415px;
    width: 100%;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box {
        padding: 30px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 {
    font-size: 32px;
}

@media (max-width: 1399px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .project-card-wrapper-4 .project-card-items-4 .project-box h3 {
        font-size: 25px;
    }
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.project-card-wrapper-4 .project-card-items-4 .project-box h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-card-wrapper-4 .project-card-items-4 .project-box p {
    color: var(--white);
    margin-bottom: 25px;
    margin-top: 15px;
    opacity: 0.8;
}

.project-card-wrapper-4 .project-card-items-4 .project-box .arrow-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 100px;
    color: var(--white);
    background-color: var(--theme);
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.project-card-wrapper-4 .project-card-items-4 .project-box .arrow-icon:hover {
    background-color: var(--white);
    color: var(--header);
}

.project-section-4 {
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
}

.project-section-4 .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .project-section-4 .section-title {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-section-4 .section-title h2 {
    font-size: 90px;
}

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

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

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

@media (max-width: 767px) {
    .project-section-4 .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .project-section-4 .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 470px) {
    .project-section-4 .section-title h2 {
        font-size: 30px;
    }
}

.service-box-item {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.service-box-item::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    transform: scale(0.1, 1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: var(--theme);
    border-radius: 12px;
}

.service-box-item .icon {
    width: 72px;
    height: 72px;
    line-height: 72px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 100px;
    margin-bottom: 30px;
}

.service-box-item .content h3 {
    margin-bottom: 10px;
}

@media (max-width: 1600px) {
    .service-box-item .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .service-box-item .content h3 {
        font-size: 20px;
    }
}

.service-box-item .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-item .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-box-item .content .theme-btn {
    background-color: var(--white);
    width: 100%;
    color: var(--header);
    display: inline-block;
    margin-top: 120px;
    border-radius: 8px;
}

@media (max-width: 1399px) {
    .service-box-item .content .theme-btn {
        margin-top: 30px;
    }
}

.service-box-item .content .theme-btn::before {
    background-color: var(--header);
    border-radius: 8px;
}

.service-box-item .content .theme-btn:after {
    background-color: rgba(11, 13, 23, 0.3);
    border-radius: 8px;
}

.service-box-item .content .theme-btn:hover {
    color: var(--white);
}

.service-box-item:hover:before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-box-item:hover .content h3 {
    position: relative;
}

.service-box-item:hover .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-item:hover .content h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-box-item:hover .content p {
    position: relative;
    color: var(--white);
}

.service-box-item:hover .icon {
    position: relative;
    background-color: var(--header);
}

.service-box-item:hover .icon img {
    animation: jello 1s;
}

.service-section {
    position: relative;
}

.service-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    width: 1860px;
    left: 30px;
    border-radius: 16px;
}

@media (max-width: 1899px) {
    .service-section::before {
        width: 100%;
        left: 0;
    }
}

.service-section .service-slider {
    margin-left: -180px;
    margin-right: -180px;
    margin-top: 60px;
}

@media (max-width: 1399px) {
    .service-section .service-slider {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 575px) {
    .service-section .service-slider {
        margin-top: 30px;
    }
}

.global-service-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    margin-top: 30px;
    position: relative;
}

.global-service-box.style-2 {
    margin-top: 48px;
}

@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: 20%;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .global-service-box .global-content {
        flex-basis: initial;
    }
}

.global-service-box .global-content .content {
    display: flex;
    gap: 15px;
}

.global-service-box .global-content .content span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.2;
    line-height: 1;
    color: var(--white);
    opacity: 0.4;
}

.global-service-box .global-content .content h3 {
    text-transform: capitalize;
    line-height: 90%;
}

.global-service-box .global-content .content h3 a {
    color: var(--white);
}

.global-service-box .global-content .content h3 a:hover {
    color: var(--white);
}

.global-service-box .text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    position: relative;
    z-index: 9;
}

.global-service-box .icon {
    display: inline-block;
    color: var(--white);
    opacity: 0.3;
    font-size: 20px;
    position: relative;
    z-index: 9;
    transition: all 0.3s ease;
}

.global-service-box .icon:hover {
    color: var(--white);
}

.global-service-box:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.global-service-box:hover .global-content .content span {
    color: var(--white);
    opacity: initial;
}

.global-service-box:hover .text {
    color: var(--white);
}

.global-service-box:hover .icon {
    color: var(--white);
    opacity: initial;
}

.service-section-2 {
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .service-section-2 {
        margin: 0 15px;
    }
}

.service-card-items-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.service-card-items-3 .service-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.service-card-items-3 .service-content {
    margin-top: 30px;
}

.service-card-items-3 .service-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-card-items-3 .service-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-card-items-3 .service-content p {
    margin-bottom: 30px;
    margin-top: 10px;
}

.service-card-items-3 .service-content .theme-btn {
    width: 100%;
    background-color: rgb(239, 237, 229);
    border-radius: 8px;
    color: var(--header);
}

.service-card-items-3 .service-content .theme-btn::before {
    background-color: var(--theme);
    border-radius: 8px;
}

.service-card-items-3 .service-content .theme-btn::after {
    background-color: rgba(249, 77, 0, 0.3);
    border-radius: 8px;
}

.service-card-items-3 .service-content .theme-btn:hover {
    color: var(--white);
}

.service-section-3 .section-title-area .array-button .array-prev {
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.service-section-3 .section-title-area .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.service-details-wrapper .service-top-img {
    border-radius: 12px;
}

.service-details-wrapper .service-top-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-details-wrapper .service-details-content {
    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: 15px;
    }
}

.service-details-wrapper .service-details-content .service-list-items ul li {
    font-weight: 500;
}

.service-details-wrapper .service-details-content .service-list-items ul li i {
    color: var(--theme);
    margin-right: 10px;
}

.service-details-wrapper .service-details-content .service-list-items ul li:not(:last-child) {
    margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-box-area {
    margin-top: 40px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items {
    background-color: #F2F5F7;
    border-radius: 10px;
    padding: 30px 20px;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items .number {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-size: 16px;
    display: block;
    text-align: center;
    font-weight: 700;
}

.service-details-wrapper .service-details-content .service-box-area .service-box-items h5 {
    font-size: 18px;
    font-weight: 500;
    max-width: 155px;
    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(--white);
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget {
        padding: 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(--bg);
    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;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
}

.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;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
        font-size: 24px;
    }
}

.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: "Plus Jakarta Sans", 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(--bg);
    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);
}

.service-section-3 .service-slider-3 {
    margin-left: -50px;
    margin-right: -50px;
}

@media (max-width: 1399px) {
    .service-section-3 .service-slider-3 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.service-wrapper-4 .service-left-content .text {
    max-width: 299px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.service-wrapper-4 .service-card-items-4 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

@media (max-width: 1399px) {
    .service-wrapper-4 .service-card-items-4 {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .service-wrapper-4 .service-card-items-4 {
        padding: 30px;
    }
}

.service-wrapper-4 .service-card-items-4::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme);
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-wrapper-4 .service-card-items-4 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #EFEDE5;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .service-wrapper-4 .service-card-items-4 .content h3 {
        font-size: 20px;
    }
}

.service-wrapper-4 .service-card-items-4 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-wrapper-4 .service-card-items-4 .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-wrapper-4 .service-card-items-4 .content p {
    margin-top: 10px;
    max-width: 485px;
}

.service-wrapper-4 .service-card-items-4:hover::before {
    transform: scale(1);
    opacity: 1;
}

.service-wrapper-4 .service-card-items-4:hover .icon {
    position: relative;
    z-index: 999;
}

.service-wrapper-4 .service-card-items-4:hover .icon img {
    position: relative;
    z-index: 999;
    animation: jello 1s;
}

.service-wrapper-4 .service-card-items-4:hover .content h3 {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.service-wrapper-4 .service-card-items-4:hover .content h3 a {
    color: var(--white);
}

.service-wrapper-4 .service-card-items-4:hover .content p {
    color: var(--white);
    position: relative;
    z-index: 999;
}

.team-section {
    margin: 0 30px;
    border-radius: 20px;
}

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

.team-wrapper .team-left-content .text {
    max-width: 299px;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 30px;
}

.team-wrapper .team-card-item {
    position: relative;
}

.team-wrapper .team-card-item .team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.team-wrapper .team-card-item .team-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}

.team-wrapper .team-card-item .team-image .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.team-wrapper .team-card-item .team-image .social-icon a {
    display: inline-block;
    width: 26.73px;
    height: 26.73px;
    border-radius: 100px;
    left: 1098.76px;
    opacity: 0.6;
    color: var(--header);
    background-color: rgb(255, 255, 255);
    text-align: center;
}

.team-wrapper .team-card-item .team-image .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    opacity: initial;
}

.team-wrapper .team-card-item .team-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 9;
    border-radius: 8px;
}

.team-wrapper .team-card-item .team-content {
    margin-top: 20px;
}

.team-wrapper .team-card-item .team-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.team-wrapper .team-card-item .team-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-wrapper .team-card-item .team-content p {
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.team-wrapper .team-card-item:hover .social-icon {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.team-wrapper .team-card-item:hover .team-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.team-wrapper .team-card-item:hover .team-image::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.team-wrapper .team-card-item:hover .team-content p {
    color: var(--white);
}

.team-wrapper .team-card-item.style-inner .team-content h3 a {
    color: var(--header);
}

.team-wrapper .team-card-item.style-inner:hover .team-content p {
    color: var(--text);
}

.team-details-wrapper .team-details-image {
    overflow: hidden;
    border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 30px;
    background-color: #F2F5F7;
    border-radius: 10px;
    padding: 45px 40px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .offer {
    background-color: var(--theme);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
    display: flex;
    gap: 100px;
    align-items: center;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .team-infrom li {
        display: grid;
        gap: 20px;
    }
}

.team-details-wrapper .team-details-content .team-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
    margin-bottom: 12px;
}

.team-details-wrapper .team-details-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 60px;
}

.team-details-wrapper .team-details-content .social-icon {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.team-details-wrapper .team-details-content .social-icon a {
    color: var(--theme);
    background: var(--bg);
    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);
    color: var(--white);
}

.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-color: rgba(249, 77, 0, 0.5);
    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(--white);
    padding: 80px 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 100px;
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-bottom-items {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-bottom-items {
        padding: 30px;
    }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
    margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
    display: flex;
    gap: 10px;
    border-radius: 70px;
    border: 1px solid #3D4857;
    display: inline-flex;
    padding: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 80px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items .team-right-items {
        margin-left: 0;
    }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    outline: none;
    width: 100%;
    color: var(--header);
    padding-bottom: 20px;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    text-transform: capitalize;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    background-color: transparent;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--header);
    padding-bottom: 20px;
    border-radius: 0;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
    right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
    width: 100%;
}

.testimonial-box-item {
    background-color: var(--white);
    padding: 60px;
    border-radius: 12px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .testimonial-box-item {
        padding: 30px;
    }
}

.testimonial-box-item .star {
    color: var(--theme);
    margin-bottom: 20px;
}

.testimonial-box-item p {
    font-weight: 500;
    font-size: 22px;
    font-family: "Plus Jakarta Sans", sans-serif;
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    padding-bottom: 30px;
    line-height: 136%;
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .testimonial-box-item p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.testimonial-box-item .client-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .testimonial-box-item .client-info-item {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.testimonial-box-item .client-info-item .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-box-item .client-info-item .info-item img {
    border-radius: 5px;
}

.testimonial-box-item .client-info-item .logo-image {
    text-align: right;
}

.testimonial-box-item .client-info-item .logo-image img {
    opacity: 0.4;
}

.testimonial-section {
    position: relative;
}

.testimonial-section .array-button .array-prev {
    position: absolute;
    top: 55%;
    left: 280px;
    border: 1px solid var(--header);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section .array-button .array-prev {
        top: 55%;
        left: 45px;
    }
}

.testimonial-section .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.testimonial-section .array-button .array-next {
    position: absolute;
    top: 55%;
    right: 280px;
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section .array-button .array-next {
        top: 55%;
        right: 45px;
    }
}

.testimonial-section .array-button .array-next:hover {
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .testimonial-section .array-button {
        display: none;
    }
}

.testimonial-content {
    margin-top: 30px;
    text-align: center;
}

.testimonial-content .star {
    color: var(--theme);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 24px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    max-width: 885px;
    margin-bottom: 40px;
    margin: 0 auto;
    color: #02060A;
    opacity: 0.7;
    line-height: 158%;
}

@media (max-width: 1399px) {
    .testimonial-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-content p {
        font-size: 16px;
    }
}

.testimonial-content .client-image {
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .testimonial-content .client-image {
        margin-top: 30px;
    }
}

.testimonial-content .client-image img {
    border-radius: 6px;
}

.testimonial-content h4 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.testimonial-section-2 {
    position: relative;
}

.testimonial-section-2 .array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 410px;
    right: 410px;
    transform: translateY(-50%);
    z-index: 99;
}

@media (max-width: 1899px) {
    .testimonial-section-2 .array-button {
        left: 200px;
        right: 200px;
    }
}

@media (max-width: 1399px) {
    .testimonial-section-2 .array-button {
        display: none;
    }
}

.testimonial-section-2 .array-button .array-prev {
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

.testimonial-section-2 .array-button .array-prev:hover {
    background-color: var(--theme);
}

.testimonial-section-2 .array-button .array-next {
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

.testimonial-section-2 .array-button .array-next:hover {
    background-color: var(--header);
}

.testimonial-wrapper-3 {
    margin-top: 48px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 {
        margin-top: 30px;
    }
}

.testimonial-wrapper-3 .testimonial-thumb {
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-wrapper-3 .testimonial-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.testimonial-wrapper-3 .testimonial-box-3 {
    background-color: var(--white);
    border-radius: 8px;
    padding: 60px 32px;
    position: relative;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 {
        padding: 30px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .swiper-dot {
        display: none;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
    color: var(--theme);
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .star {
        margin-bottom: 25px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
    font-size: 22px;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: rgba(2, 6, 10, 0.7);
    max-width: 575px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 p {
        padding-bottom: 30px;
        margin-bottom: 30px;
        font-size: 16px;
    }
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-wrapper-3 .testimonial-box-3 .testimonial-content-3 .info-item img {
    border-radius: 5px;
}

.testimonial-box-item-4 {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .testimonial-box-item-4 {
        padding: 30px;
    }
}

.testimonial-box-item-4 .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(2, 6, 10, 0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.testimonial-box-item-4 .info-item img {
    border-radius: 5px;
}

.testimonial-box-item-4 p {
    font-weight: 500;
    font-size: 22px;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 136%;
}

@media (max-width: 1399px) {
    .testimonial-box-item-4 p {
        font-size: 16px;
    }
}

.testimonial-box-item-4 .star {
    color: var(--theme);
    margin-top: 20px;
}

.testimonial-section-4 {
    position: relative;
}

.testimonial-section-4 .array-button .array-prev {
    position: absolute;
    top: 64%;
    left: 280px;
    border: 1px solid var(--header);
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section-4 .array-button .array-prev {
        top: 64%;
        left: 154px;
    }
}

.testimonial-section-4 .array-button .array-prev:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.testimonial-section-4 .array-button .array-next {
    position: absolute;
    top: 64%;
    right: 280px;
    background-color: var(--theme);
    color: var(--white);
    z-index: 999;
}

@media (max-width: 1899px) {
    .testimonial-section-4 .array-button .array-next {
        top: 64%;
        right: 154px;
    }
}

.testimonial-section-4 .array-button .array-next:hover {
    background-color: var(--header);
}

@media (max-width: 1399px) {
    .testimonial-section-4 .array-button {
        display: none;
    }
}

.testimonial-section-4 .testimonial-slider-4 {
    margin-left: -360px;
    margin-right: -360px;
}

@media (max-width: 1399px) {
    .testimonial-section-4 .testimonial-slider-4 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.array-button .array-prev {
    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 {
    background-color: var(--theme);
    color: var(--white);
}

.array-button .array-next {
    border-radius: 100px;
    background-color: var(--theme);
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.array-button .array-next:hover {
    background-color: var(--header);
}

.swiper-dot {
    position: relative;
    text-align: center;
    margin-top: 45px;
}

@media (max-width: 1399px) {
    .swiper-dot {
        margin-top: 30px;
    }
}

.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background-color: var(--header);
    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;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--bg);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.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;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-nav-wrap {
    margin-top: 60px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 0;
    background: var(--header);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border-radius: 50%;
    font-family: "Plus Jakarta Sans", 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);
}

.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;
}

.mb-30 {
    margin-bottom: 30px;
}

.custom-container {
    max-width: 1323px;
    margin: 0 auto;
}

.p-relative {
    position: relative;
}

.tp-clip-anim {
    position: relative;
    overflow: hidden;
}

.tp-clip-anim .mask {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    opacity: 0;
    animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
    clip-path: inset(0 88.8% 0 0%);
    animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
    clip-path: inset(0 77.7% 0 11.1%);
    animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
    clip-path: inset(0 66.6% 0 22.2%);
    animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
    clip-path: inset(0 55.5% 0 33.3%);
    animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
    clip-path: inset(0 44.4% 0 44.4%);
    animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
    clip-path: inset(0 33.3% 0 55.5%);
    animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
    clip-path: inset(0 22.2% 0 66.6%);
    animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
    clip-path: inset(0 11.1% 0 77.7%);
    animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
    clip-path: inset(0 0% 0 88.8%);
    animation-delay: 0.9s;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*# sourceMappingURL=main.css.map */
