@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Bixoo 
    Author: wowtheme7
    Author URI: https://themeforest.net/user/wowtheme7/portfolio
    Description: "Bixoo – Business Consulting & Corporate HTML Template
    Version: 1.0.0

-----------------------------------------------------------------------------------

    TABLE OF CONTENTS
    -------------------------------------------------------------------------------

    01. Basic
        01.01 Mixins
        01.02 Variables
        01.03 Buttons
        01.04 Typography

    02. Template Section Styles
        02.01 About
        02.02 Animation
        02.03 Brand
        02.04 Contact
        02.05 CTA
        02.06 Shop
        02.07 FAQ
        02.08 Feature
        02.09 Footer
        02.10 Header
        02.11 Helping
        02.12 Hero
        02.13 Marquee
        02.14 MeanMenu
        02.15 News
        02.16 Preloader
        02.17 Pricing
        02.18 Section
        02.19 Service
        02.20 Team/Speaker
        02.21 Project
        02.22 Testimonial

-----------------------------------------------------------------------------------*/

/*----------------------------------------*/

/*  01. Basic
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
    --body: #000;
    --black: #000;
    --white: #fff;
    --theme: #3abde5;
    --header: #022423;
    --text: #7e9393;
    --text-2: #687799;
    --border: #CAD2D2;
    --bg: #D8E5E5;
    --bg-2: #F5F5F5;
    --bg-3: #022423;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--theme);
    border-radius: 50px;
    color: var(--white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    padding: 16px 70px 16px 40px;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 0;
}

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

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

.theme-btn:hover .btn-title {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}

.theme-btn .btn-arrow-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--theme);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 15px;
    height: 46px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: auto;
    line-height: 1;
    position: absolute;
    right: 10px;
    width: 46px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 20px;
}

.theme-btn .btn-arrow-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
    color: var(--theme);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 15px;
    height: 46px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    left: 10px;
    position: absolute;
    right: auto;
    scale: 0;
    width: 46px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 20px;
}

.theme-btn .btn-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    text-transform: capitalize;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}

.theme-btn.bg-white-style {
    background-color: var(--white);
    color: var(--theme);
}

.theme-btn.bg-white-style .btn-arrow-right,
.theme-btn.bg-white-style .btn-arrow-left {
    background-color: var(--theme);
    color: var(--white);
}

.theme-btn.bg-white-style .btn-title {
    color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text);
    background-color: var(--black);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

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: "Mona Sans", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 88px;
    font-weight: 800;
    line-height: 97%;
}

@media (max-width: 1899px) {
    h1 {
        font-size: 78px;
    }
}

@media (max-width: 1600px) {
    h1 {
        font-size: 70px;
    }
}

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

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

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

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

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

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

h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 124%;
}

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

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

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

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

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

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

h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 125%;
}

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

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 167%;
}

@media (max-width: 1199px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 137%;
}

h6 {
    font-size: 14px;
    font-weight: 600;
}

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;
    text-align: justify;
}

span {
    margin: 0px;
}

/*----------------------------------------*/

/*  02. Template Section Styles
/*----------------------------------------*/

@media (max-width: 767px) {
    .about-left-thumb-style-1 {
        text-align: center;
    }
}

.about-left-thumb-style-1 .client-text {
    position: relative;
    display: inline-block;
    text-align: center;
}

.about-left-thumb-style-1 .client-text p {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    position: absolute;
    line-height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 122px;
    text-align: center;
}

.about-right-content-style-1 .section-title {
    max-width: 665px;
}

@media (max-width: 767px) {
    .about-right-content-style-1 .section-title {
        margin: 0 auto;
        text-align: center;
    }
}

.about-right-content-style-1 .about-text {
    margin-top: 25px;
    max-width: 665px;
}

@media (max-width: 767px) {
    .about-right-content-style-1 .about-text {
        margin: 25px auto 0;
        text-align: center;
    }
}

.about-section {
    position: relative;
    z-index: 9;
}

.about-section .about-shape-1 {
    position: absolute;
    top: -30%;
    right: 0;
}

.about-feature {
    margin-top: 80px;
    position: relative;
}

@media (max-width: 991px) {
    .about-feature {
        margin-top: 50px;
    }
}

.about-feature .shape-2 {
    position: absolute;
    top: -10px;
    left: -40px;
}

@media (max-width: 1199px) {
    .about-feature .shape-2 {
        display: none;
    }
}

.about-feature-box-style-1 {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
}

.about-feature-box-style-1 .single-circle-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.about-feature-box-style-1 .single-circle-bar .circle-progress {
    width: 88px;
    height: 88px;
    position: relative;
}

.about-feature-box-style-1 .single-circle-bar .circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.about-feature-box-style-1 .single-circle-bar .circle-progress circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.about-feature-box-style-1 .single-circle-bar .circle-progress .bg {
    stroke: rgba(29, 139, 138, 0.25);
}

.about-feature-box-style-1 .single-circle-bar .circle-progress .progress {
    stroke: #1D8B8A;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}

.about-feature-box-style-1 .single-circle-bar .circle-progress .value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--theme);
}

.about-feature-box-style-1 .counter-items {
    border-top: 1px solid rgba(5, 54, 53, 0.16);
    margin-top: 25px;
    padding-top: 25px;
}

.about-feature-box-style-1 .counter-items .text {
    margin-top: 13px;
}

.about-feature-box-style-1:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.about-feature-box-style-2 .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 472px;
}

.about-feature-box-style-2 .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.5s ease;
    object-fit: cover;
}

.about-feature-box-style-2 .thumb img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.about-feature-box-style-2 .thumb:hover img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.about-feature-box-style-2 .thumb:hover img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.about-feature-box-style-3 {
    background-color: var(--theme);
    padding: 45px 35px;
    border-radius: 12px;
}

.about-feature-box-style-3 h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-top: 60px;
}

@media (max-width: 1399px) {
    .about-feature-box-style-3 h3 {
        font-size: 24px;
        line-height: 137%;
    }
}

.about-feature-box-style-3 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
}

.about-feature-box-style-3 .client-info .client-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.about-feature-box-style-3:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.about-section-2 .container {
    max-width: 1406px;
}

.about-left-content-style-2 .counter-box-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

@media (max-width: 1199px) {
    .about-left-content-style-2 .counter-box-area {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .about-left-content-style-2 .counter-box-area {
        margin-top: 30px;
    }
}

.about-left-content-style-2 .counter-box-area .counter-box {
    min-width: 300px;
}

.about-left-content-style-2 .counter-box-area .counter-box h2 {
    color: var(--theme);
    font-size: 180px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 1399px) {
    .about-left-content-style-2 .counter-box-area .counter-box h2 {
        font-size: 130px;
    }
}

.about-left-content-style-2 .counter-box-area .counter-box p {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.about-left-content-style-2 .counter-box-area .line {
    height: 178px;
    width: 1px;
    background-color: rgba(67, 75, 75, 0.14);
}

@media (max-width: 1399px) {
    .about-left-content-style-2 .counter-box-area .line {
        display: none;
    }
}

.about-left-content-style-2 .counter-box-area .text-box {
    max-width: 411px;
}

.about-left-content-style-2 .counter-box-area .text-box .theme-btn {
    margin-top: 30px;
}

.about-right-thumb-style-2 {
    position: relative;
    z-index: 9;
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .about-right-thumb-style-2 {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .about-right-thumb-style-2 {
        height: 550px;
    }
}

.about-right-thumb-style-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-right-thumb-style-2 .circle-box {
    width: 156px;
    height: 156px;
    line-height: 156px;
    background-color: var(--white);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    z-index: 1;
    top: 72px;
    left: -60px;
}

@media (max-width: 1399px) {
    .about-right-thumb-style-2 .circle-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.about-right-thumb-style-2 .circle-box .text-image img {
    width: initial;
    height: initial;
    animation: cir36 10s linear infinite;
}

.about-right-thumb-style-2 .circle-box .arrow-icon {
    color: var(--header);
    text-align: center;
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-right-thumb-style-2 .circle-box .arrow-icon i {
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.about-section-3 .container {
    max-width: 1358px;
}

.about-section-3.about-style-9 .container {
    max-width: 1258px;
}

.about-left-image-style-3 {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .about-left-image-style-3 {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .about-left-image-style-3 {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .about-left-image-style-3 {
        height: 450px;
    }
}

.about-left-image-style-3 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-counter-box-items {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-top: 85px;
}

@media (max-width: 991px) {
    .about-counter-box-items {
        margin-top: 30px;
        margin-bottom: 15px;
    }
}

.about-counter-box-items .counter-items h2 {
    font-size: 50px;
}

.about-counter-box-items .counter-items p {
    font-size: 18px;
}

.about-counter-box-items .counter-style-2 {
    padding-right: 42px;
    border-right: 1px solid rgba(2, 36, 35, 0.1);
}

.about-right-content-style-3 {
    margin-left: 40px;
    position: relative;
}

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

.about-right-content-style-3 .about-text {
    margin-top: 25px;
    max-width: 550px;
}

.about-right-content-style-3 .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-right-content-style-3 .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-right-content-style-3 .list-items ul li {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .about-right-content-style-3 .list-items ul li {
        font-size: 13px;
        font-weight: 500;
    }
}

@media (max-width: 991px) {
    .about-right-content-style-3 .list-items ul li {
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .about-right-content-style-3 .list-items ul li {
        font-size: 13px;
        font-weight: 500;
    }
}

@media (max-width: 470px) {
    .about-right-content-style-3 .list-items ul li {
        font-size: 12px;
    }
}

.about-right-content-style-3 .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .about-right-content-style-3 .list-items ul li:not(:last-child) {
        margin-bottom: 15px;
    }
}

.about-right-content-style-3 .list-items ul li img {
    margin-right: 8px;
}

.about-right-content-style-3 .theme-btn {
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .about-right-content-style-3 .theme-btn {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-right-content-style-3 .theme-btn {
        margin-top: 25px;
    }
}

.about-right-content-style-3 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 1199px) {
    .about-right-content-style-3 .client-info {
        flex-wrap: wrap;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-right-content-style-3 .client-info {
        margin-top: 30px;
    }
}

.about-right-content-style-3 .client-info .client-content span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Mona Sans", sans-serif;
    display: inline-block;
}

.about-right-content-style-3 .about-sm-thumb {
    position: absolute;
    right: 10px;
    bottom: -35px;
}

@media (max-width: 1199px) {
    .about-right-content-style-3 .about-sm-thumb {
        display: none;
    }
}

.about-right-content-style-3 .about-sm-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-left-thumb-style-4 {
    margin-right: 15px;
}

.about-left-thumb-style-4 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-right-content-style-4 {
    margin-left: 15px;
}

@media (max-width: 1199px) {
    .about-right-content-style-4 {
        margin-left: 0;
    }
}

.about-right-content-style-4 .about-text {
    margin-top: 25px;
}

.about-right-content-style-4 .about-thumb {
    margin-top: 30px;
}

.about-right-content-style-4 .about-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-right-content-style-4 h3 {
    font-size: 24px;
    margin-top: 20px;
}

.about-right-content-style-4 .line {
    width: 185px;
    height: 2px;
    background-color: rgba(29, 139, 138, 0.26);
    margin-top: 20px;
    margin-bottom: 24px;
    position: relative;
}

.about-right-content-style-4 .line::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 2px;
    content: "";
    background: var(--theme);
    z-index: -1;
}

.about-right-content-style-4 .list-items {
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .about-right-content-style-4 .list-items {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .about-right-content-style-4 .list-items {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-right-content-style-4 .list-items ul li {
    font-size: 16px;
    font-weight: 600;
}

.about-right-content-style-4 .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.about-right-content-style-4 .list-items ul li img {
    margin-right: 8px;
}

.about-right-content-style-4 .about-btn-area {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .about-right-content-style-4 .about-btn-area {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .about-right-content-style-4 .about-btn-area {
        margin-top: 25px;
    }
}

.about-right-content-style-4 .about-btn-area .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-right-content-style-4 .about-btn-area .client-info .client-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-right-content-style-4 .achieve {
    font-size: 24px;
    font-weight: 600;
    margin-top: 50px;
    color: var(--header);
    display: inline-block;
}

.about-right-content-style-4 .about-feature {
    margin-top: 40px;
}

.about-right-content-style-4 .about-feature:not(:last-child) {
    margin-bottom: 20px;
}

.about-right-content-style-4 .about-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Mona Sans", sans-serif;
}

.about-right-content-style-4 .about-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.about-right-content-style-4 .about-feature .progress {
    position: relative;
    height: 6px;
    background-color: rgba(65, 197, 117, 0.12);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.about-right-content-style-4 .about-feature .progress-bar {
    background-color: var(--theme);
    height: 6px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.about-right-content-style-4 .about-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    font-family: "Mona Sans", sans-serif;
}

.about-content-style-5 {
    margin-right: 105px;
}

@media (max-width: 1600px) {
    .about-content-style-5 {
        margin-right: 70px;
    }
}

@media (max-width: 1399px) {
    .about-content-style-5 {
        margin-right: 50px;
    }
}

@media (max-width: 1199px) {
    .about-content-style-5 {
        margin-right: 0;
    }
}

.about-content-style-5 .about-text {
    margin-top: 25px;
}

.about-content-style-5 .about-feature {
    margin-top: 40px;
}

.about-content-style-5 .about-feature:not(:last-child) {
    margin-bottom: 20px;
}

.about-content-style-5 .about-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}

.about-content-style-5 .about-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.about-content-style-5 .about-feature .progress {
    position: relative;
    height: 6px;
    background-color: rgba(65, 197, 117, 0.12);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.about-content-style-5 .about-feature .progress-bar {
    background-color: var(--theme);
    height: 6px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.about-content-style-5 .about-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    font-family: "DM Sans", sans-serif;
}

.about-content-style-5 .about-btn-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .about-content-style-5 .about-btn-area {
        margin-top: 35px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .about-content-style-5 .about-btn-area {
        margin-top: 25px;
    }
}

.about-content-style-5 .about-btn-area .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-content-style-5 .about-btn-area .client-info .client-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-thumb-style-5 {
    margin-left: 15px;
    position: relative;
}

@media (max-width: 1199px) {
    .about-thumb-style-5 {
        margin-left: 0;
    }
}

.about-thumb-style-5 img {
    width: 100%;
    height: 100%;
    border-radius: 283px 283px 283px 0px;
}

.about-thumb-style-5 .sm-thumb {
    position: absolute;
    top: 0;
    left: -75px;
}

@media (max-width: 1199px) {
    .about-thumb-style-5 .sm-thumb {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .about-thumb-style-5 .sm-thumb {
        max-width: 190px;
    }
    .about-thumb-style-5 .sm-thumb img {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 470px) {
    .about-thumb-style-5 .sm-thumb {
        display: none;
    }
}

.about-thumb-style-5 .sm-thumb img {
    width: initial;
    height: initial;
    border-radius: 0px;
}

.about-image-item {
    position: relative;
}

.about-image-item .about-thumb {
    position: relative;
}

.about-image-item .about-thumb img {
    border-radius: 10px;
}

@media (max-width: 991px) {
    .about-image-item .about-thumb img {
        width: 100%;
        height: 100%;
    }
}

.about-image-item .about-thumb .experience-badge {
    position: absolute;
    top: 20px;
    left: -40px;
}

@media (max-width: 1199px) {
    .about-image-item .about-thumb .experience-badge {
        left: -28px;
    }
}

@media (max-width: 991px) {
    .about-image-item .about-thumb .experience-badge {
        left: -40px;
    }
}

@media (max-width: 767px) {
    .about-image-item .about-thumb .experience-badge {
        display: none;
    }
}

.about-image-item .about-thumb .experience-badge span {
    position: relative;
    background-color: var(--theme);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 18px 45px;
    border-radius: 10px 10px 10px 0;
    z-index: 2;
    display: inline-block;
}

@media (max-width: 1199px) {
    .about-image-item .about-thumb .experience-badge span {
        padding: 15px 35px;
    }
}

@media (max-width: 991px) {
    .about-image-item .about-thumb .experience-badge span {
        padding: 18px 45px;
    }
}

.about-image-item .about-thumb .experience-badge span::before {
    content: "";
    position: absolute;
    bottom: -33px;
    left: 0;
    width: 40px;
    height: 33px;
    background-image: url("../img/home-6/tranggle-shape.svg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 88;
}

@media (max-width: 1199px) {
    .about-image-item .about-thumb .experience-badge span::before {
        width: 28px;
        height: 26px;
        bottom: -26px;
    }
}

@media (max-width: 991px) {
    .about-image-item .about-thumb .experience-badge span::before {
        bottom: -33px;
        width: 40px;
        height: 33px;
    }
}

.about-image-item .about-image-box {
    display: flex;
    gap: 15px;
    margin-left: -90px;
}

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

.about-image-item .about-image-box .image-1 {
    position: relative;
    margin-top: -80px;
    border: 5px solid var(--white);
    z-index: 99;
    border-radius: 10px;
}

.about-image-item .about-image-box .image-1 img {
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .about-image-item .about-image-box .image-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-image-item .about-image-box .image-2 {
    margin-top: 20px;
}

.about-image-item .about-image-box .image-2 img {
    border-radius: 50%;
}

@media (max-width: 575px) {
    .about-image-item .about-image-box .image-2 img {
        width: 100%;
    }
}

.about-image-item .circle-box {
    width: 182px;
    height: 182px;
    line-height: 182px;
    background-color: rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    z-index: 99;
    top: 51%;
    right: 35%;
}

@media (max-width: 1899px) {
    .about-image-item .circle-box {
        top: 21%;
        right: 15%;
    }
}

@media (max-width: 1399px) {
    .about-image-item .circle-box {
        display: none;
    }
}

.about-image-item .circle-box .text-image img {
    width: initial;
    height: initial;
    animation: cir36 10s linear infinite;
}

.about-image-item .circle-box .logo-icon {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-right-content-style-6 {
    margin-left: 40px;
    position: relative;
}

@media (max-width: 1399px) {
    .about-right-content-style-6 {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .about-right-content-style-6 {
        margin-left: 0;
    }
}

.about-right-content-style-6 .about-text {
    margin-top: 25px;
    max-width: 500px;
}

.about-right-content-style-6 .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-right-content-style-6 .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-right-content-style-6 .list-items ul li {
    font-size: 16px;
    font-weight: 600;
}

.about-right-content-style-6 .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.about-right-content-style-6 .list-items ul li img {
    margin-right: 8px;
}

.about-right-content-style-6 .about-btn-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1199px) {
    .about-right-content-style-6 .about-btn-area {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-right-content-style-6 .about-btn-area {
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

.about-right-content-style-6 .about-btn-area .client-phn-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-right-content-style-6 .about-btn-area .client-phn-area .phone-icon {
    width: 57px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
    background-color: var(--header);
}

.about-right-content-style-6 .about-btn-area .client-phn-area .phone-icon img {
    animation: pxl_phone_ring 1.8s ease-out infinite;
}

.about-right-content-style-6 .about-btn-area .client-phn-area .client-content p {
    font-size: 18px;
    margin-bottom: 4px;
}

.about-right-content-style-6 .about-btn-area .client-phn-area .client-content a {
    font-size: 18px;
    font-weight: 600;
}

.about-section-7 .section-title h2 {
    font-size: 36px;
    line-height: 172%;
}

@media (max-width: 1399px) {
    .about-section-7 .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    .about-section-7 .section-title h2 {
        font-size: 32px;
        line-height: 165%;
    }
}

@media (max-width: 991px) {
    .about-section-7 .section-title h2 {
        font-size: 30px;
        line-height: 155%;
    }
}

@media (max-width: 767px) {
    .about-section-7 .section-title h2 {
        font-size: 28px;
        line-height: 150%;
    }
}

@media (max-width: 575px) {
    .about-section-7 .section-title h2 {
        font-size: 24px;
        line-height: 145%;
    }
}

.about-wrapper-7 {
    margin-top: 30px;
    display: inline-block;
}

.about-wrapper-7 .about-button-area {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .about-wrapper-7 .about-button-area {
        justify-content: center;
        text-align: center;
        display: block;
    }
}

.about-wrapper-7 .about-button-area .theme-btn {
    margin-top: auto;
    align-self: flex-start;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .about-wrapper-7 .about-button-area .theme-btn {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper-7 .about-button-area .theme-btn {
        margin-top: 30px;
    }
}

.about-wrapper-7 .about-image-style-7 img {
    border-radius: 12px;
}

@media (max-width: 1399px) {
    .about-wrapper-7 .about-image-style-7 img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1199px) {
    .about-wrapper-7 .about-counte-wrappers {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .about-wrapper-7 .about-counte-wrappers {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
}

@media (max-width: 450px) {
    .about-wrapper-7 .about-counte-wrappers {
        justify-content: center;
    }
}

.about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss {
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss {
        text-align: center;
    }
}

.about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss:not(:last-child) {
    border-bottom: 1px solid rgba(2, 36, 35, 0.1);
    padding-bottom: 40px;
}

@media (max-width: 1199px) {
    .about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss:not(:last-child) {
        padding-bottom: 0;
        border-bottom: none;
    }
}

.about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss h2 {
    font-size: 50px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss h2 {
        font-size: 42px;
    }
}

.about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss p {
    font-size: 18px;
}

@media (max-width: 991px) {
    .about-wrapper-7 .about-counte-wrappers .about-counter-box-itemss p {
        font-size: 16px;
    }
}

.about-section-8 .container {
    max-width: 1265px;
}

.about-left-thumb-style-8 {
    margin-left: -105px;
}

@media (max-width: 1399px) {
    .about-left-thumb-style-8 {
        margin-left: 0;
    }
}

.about-left-thumb-style-8 .about-image img {
    border-radius: 12px;
}

@media (max-width: 1399px) {
    .about-left-thumb-style-8 .about-image img {
        width: 100%;
        height: 100%;
    }
}

.about-left-thumb-style-8 .about-left-content {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .about-left-thumb-style-8 .about-left-content {
        margin-bottom: 10px;
    }
}

.about-left-thumb-style-8 .about-left-content span {
    font-size: 24px;
    font-weight: 600;
    color: var(--header);
    font-family: "Mona Sans", sans-serif;
}

.about-left-thumb-style-8 .about-left-content p {
    font-size: 18px;
    margin-top: 15px;
    max-width: 415px;
}

.about-content-wrapper-8 {
    border-left: 1px solid rgba(2, 36, 35, 0.1);
    padding-left: 50px;
}

@media (max-width: 1399px) {
    .about-content-wrapper-8 {
        border-left: none;
        padding-left: 40px;
    }
}

@media (max-width: 1199px) {
    .about-content-wrapper-8 {
        padding-left: 25px;
    }
}

@media (max-width: 767px) {
    .about-content-wrapper-8 {
        padding-left: 0;
    }
}

.about-content-wrapper-8 .section-title h2 {
    font-size: 40px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .about-content-wrapper-8 .section-title h2 {
        font-size: 33px;
    }
}

@media (max-width: 991px) {
    .about-content-wrapper-8 .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .about-content-wrapper-8 .section-title h2 {
        font-size: 24px;
    }
}

.about-content-wrapper-8 .about-content-style-8 {
    margin-left: 128px;
    margin-top: 40px;
}

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

@media (max-width: 1199px) {
    .about-content-wrapper-8 .about-content-style-8 {
        margin-left: 70px;
    }
}

@media (max-width: 991px) {
    .about-content-wrapper-8 .about-content-style-8 {
        margin-left: 0;
        margin-top: 25px;
    }
}

.about-content-wrapper-8 .about-content-style-8 .about-text {
    max-width: 560px;
    font-size: 20px;
    color: #5E7373;
}

@media (max-width: 767px) {
    .about-content-wrapper-8 .about-content-style-8 .about-text {
        font-size: 18px;
    }
}

.about-content-wrapper-8 .about-content-style-8 .theme-btn {
    margin-top: 40px;
}

.about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 {
    display: flex;
    align-items: center;
    gap: 160px;
    margin-top: 85px;
}

@media (max-width: 1199px) {
    .about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 {
        margin-top: 50px;
        gap: 110px;
    }
}

@media (max-width: 991px) {
    .about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 {
        margin-top: 35px;
        gap: 70px;
    }
}

@media (max-width: 767px) {
    .about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 {
        margin-top: 25px;
        gap: 30px;
        flex-wrap: wrap;
    }
}

.about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 .about-counter-box h3 {
    font-size: 50px;
}

@media (max-width: 767px) {
    .about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 .about-counter-box h3 {
        font-size: 40px;
    }
}

.about-content-wrapper-8 .about-content-style-8 .about-counter-wrap-8 .about-counter-box p {
    font-size: 18px;
}

.about-section-10 .container {
    max-width: 1295px;
}

.about-thumb-items-10 {
    margin-right: 10px;
}

@media (max-width: 1199px) {
    .about-thumb-items-10 {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .about-thumb-items-10 .about-thumb-items .about-thumb {
        height: 480px;
    }
}

.about-thumb-items-10 .about-thumb-items .about-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-thumb-items-10 .about-thumb-items .counter-items {
    background-color: var(--theme);
    border-radius: 12px;
    padding: 20px 30px;
    line-height: 1;
    margin-top: 20px;
}

@media (max-width: 575px) {
    .about-thumb-items-10 .about-thumb-items .counter-items {
        margin-bottom: 20px;
    }
}

.about-thumb-items-10 .about-thumb-items .counter-items h2 {
    color: var(--white);
    font-size: 50px;
    font-weight: 600;
}

.about-thumb-items-10 .about-thumb-items .counter-items p {
    color: var(--white);
    margin-top: 7px;
}

.about-thumb-items-10 .about-img {
    height: 610px;
}

@media (max-width: 1199px) {
    .about-thumb-items-10 .about-img {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .about-thumb-items-10 .about-img {
        height: 480px;
    }
}

.about-thumb-items-10 .about-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-content-items-10 {
    margin-left: 22px;
}

.about-content-items-10 .about-text {
    margin-top: 15px;
    border-bottom: 1px solid rgba(2, 36, 35, 0.2);
    padding-bottom: 25px;
}

.about-content-items-10 .about-icon-area {
    margin-top: 40px;
    display: flex;
    gap: 25px;
}

.about-content-items-10 .about-icon-area .icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(29, 139, 138, 0.22);
    border-radius: 50%;
}

.about-content-items-10 .about-icon-area .content .title {
    font-size: 18px;
    font-weight: 800;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
}

.about-content-items-10 .about-icon-area .content p {
    font-size: 18px;
    max-width: 505px;
    margin-top: 5px;
    font-weight: 400;
}

.about-content-items-10 .about-icon-area:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.about-content-items-10 .theme-btn {
    margin-top: 40px;
}

.about-section-11 {
    margin-bottom: 36px;
}

.about-section-11 .container {
    max-width: 1372px;
}

.about-thumb-items-11 {
    position: relative;
}

@media (max-width: 991px) {
    .about-thumb-items-11 {
        height: 550px;
    }
    .about-section-11 {
    margin-bottom: 15px;
}
}

.about-thumb-items-11 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-thumb-items-11 .video {
    background-color: var(--theme);
    display: inline-block;
    padding: 50px 65px;
    border-radius: 12px;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    position: absolute;
    bottom: -40px;
    right: -40px;
}

@media (max-width: 1199px) {
    .about-thumb-items-11 .video {
        right: 20px;
        bottom: 20px;
    }
}

.about-thumb-items-11 .video a {
    color: var(--white);
}

.about-thumb-items-11 .video a i {
    margin-right: 7px;
}

.about-content-items-11 {
    margin-left: 100px;
    max-width: 650px;
}

@media (max-width: 1199px) {
    .about-content-items-11 {
        margin-left: 0;
        max-width: initial;
        max-width: 750px;
    }
}

.about-content-items-11 .about-text {
    margin-top: 20px;
}

.about-content-items-11 .about-feature {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .about-content-items-11 .about-feature {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .about-content-items-11 .about-feature {
        margin-top: 25px;
    }
}

.about-content-items-11 .about-feature:not(:last-child) {
    margin-bottom: 20px;
}

.about-content-items-11 .about-feature .box-title {
    font-size: 18px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
}

.about-content-items-11 .about-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.about-content-items-11 .about-feature .progress {
    position: relative;
    height: 8px;
    background-color: rgba(29, 139, 138, 0.18);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.about-content-items-11 .about-feature .progress-bar {
    background-color: var(--theme);
    height: 8px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.about-content-items-11 .about-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    font-family: "Mona Sans", sans-serif;
}

.about-content-items-11 .about-bar-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
}

@media (max-width: 767px) {
    .about-content-items-11 .about-bar-area {
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: start;
        gap: 30px;
    }
}

.about-content-items-11 .about-bar-area .about-single-circle-bar {
    text-align: center;
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress {
    width: 130px;
    height: 130px;
    position: relative;
    margin: 0 auto;
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress .bg {
    stroke: rgba(29, 139, 138, 0.25);
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress .progress {
    stroke: #1D8B8A;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .circle-progress .value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--theme);
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .content {
    margin-top: 15px;
}

.about-content-items-11 .about-bar-area .about-single-circle-bar .content p {
    max-width: 110px;
    font-size: 18px;
    font-weight: 500;
    color: #28241F;
}

.about-section-12 .container {
    max-width: 1314px;
}

.about-left-thumb-12 {
    border-radius: 12px;
    margin-right: 40px;
}

@media (max-width: 1199px) {
    .about-left-thumb-12 {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .about-left-thumb-12 {
        height: 530px;
    }
}

.about-left-thumb-12 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.about-right-content-12 {
    margin-left: 100px;
    position: relative;
}

.about-right-content-12 .about-sm-img {
    position: absolute;
    top: 56%;
    left: -23%;
    border: 5px solid var(--white);
    border-radius: 12px;
}

@media (max-width: 991px) {
    .about-right-content-12 .about-sm-img {
        display: none;
    }
}

.about-right-content-12 .about-sm-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

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

.about-right-content-12 .about-text {
    margin-top: 25px;
    max-width: 550px;
}

.about-right-content-12 .about-bottom-content {
    margin-left: 100px;
}

@media (max-width: 991px) {
    .about-right-content-12 .about-bottom-content {
        margin-left: 0;
    }
}

.about-right-content-12 .about-bottom-content .list-items {
    margin-top: 35px;
}

.about-right-content-12 .about-bottom-content .list-items li {
    font-size: 16px;
    font-weight: 600;
}

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

.about-right-content-12 .about-bottom-content .list-items li img {
    margin-right: 8px;
}

.about-right-content-12 .about-bottom-content .client-btn {
    display: flex;
    align-items: center;
    gap: 80px;
    border-top: 1px solid rgba(2, 36, 35, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .about-right-content-12 .about-bottom-content .client-btn {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.about-right-content-12 .about-bottom-content .client-btn .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1199px) {
    .about-right-content-12 .about-bottom-content .client-btn .client-info {
        flex-wrap: wrap;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-right-content-12 .about-bottom-content .client-btn .client-info {
        margin-top: 30px;
    }
}

.about-right-content-12 .about-bottom-content .client-btn .client-info .client-content span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Mona Sans", sans-serif;
    display: inline-block;
}

@media (max-width: 1199px) {
    .about-right-content-12 .about-bottom-content .client-btn .theme-btn {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-right-content-12 .about-bottom-content .client-btn .theme-btn {
        margin-top: 25px;
    }
}

@-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 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 pxl_phone_ring {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(10deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(10deg) scale(1) skew(1deg);
    }
    100%,
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@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 slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

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

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

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

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes borderAnim {
    0% {
        width: 0;
    }
    100% {
        width: 44px;
    }
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrolly {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-60%);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.img_left_animation {
    animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes left-animation {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_right_animation {
    animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes right-animation {
    0% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_top_animation {
    animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes top-animation {
    0% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.img_bottom_animation {
    animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
    opacity: 0;
}

@keyframes bottom-animation {
    0% {
        clip-path: inset(100% 0 0 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.brand-section .container {
    max-width: 1443px;
}

.brand-section .brand-top {
    margin-bottom: 60px;
}

.brand-section .brand-image {
    text-align: center;
}

.contact-left-items-style-3 {
    margin-right: 80px;
    margin-top: 100px;
}

@media (max-width: 1199px) {
    .contact-left-items-style-3 {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .contact-left-items-style-3 {
        margin-right: 0;
    }
}

.contact-left-items-style-3 .location-area {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

@media (max-width: 991px) {
    .contact-left-items-style-3 .location-area {
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

.contact-left-items-style-3 .location-area .icon i {
    color: var(--theme);
    font-size: 45px;
}

.contact-left-items-style-3 .location-area .content h3 {
    font-size: 18px;
    font-weight: 500;
}

.contact-left-items-style-3 .location-area .content p {
    max-width: 343px;
    margin-top: 10px;
}

.contact-left-items-style-3 .contact-text {
    margin-top: 45px;
    color: white;
}

@media (max-width: 991px) {
    .contact-left-items-style-3 .contact-text {
        margin-top: 25px;
    }
}

 

.contact-left-items-style-3 p a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 575px) {
    .contact-left-items-style-3 p a {
        font-size: 22px;
    }
}

.contact-left-items-style-3 p a:hover {
    color: var(--theme);
}

.contact-right-content-style-3 {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .contact-right-content-style-3 {
        margin-top: 0;
    }
}

.contact-right-content-style-3 .contact-form-box-3 {
    margin-left: 70px;
}

@media (max-width: 1199px) {
    .contact-right-content-style-3 .contact-form-box-3 {
        margin-left: 40px;
    }
}

@media (max-width: 991px) {
    .contact-right-content-style-3 .contact-form-box-3 {
        margin-left: 0;
    }
}

.contact-right-content-style-3 .contact-form-box-3 h3 {
    margin-bottom: 30px;
    color: var(--white);
}

@media (max-width: 991px) {
    .contact-right-content-style-3 .contact-form-box-3 h3 {
        color: var(--white);
    }
}

.contact-right-content-style-3 .contact-form-box-3 .form-clt input,
.contact-right-content-style-3 .contact-form-box-3 .form-clt textarea {
    line-height: 1;
    padding: 17px 20px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    border-radius: 6px;
    border: 1px solid var(--white);
    background: var(--white);
}

.contact-right-content-style-3 .contact-form-box-3 .form-clt textarea {
    padding-bottom: 85px;
}

.contact-right-content-style-3 .contact-form-box-3 .theme-btn {
    background-color: var(--white);
    color: var(--theme);
}

.contact-right-content-style-3 .contact-form-box-3 .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}

.contact-right-content-style-3.contact-style-8 h3 {
    color: var(--header);
}

.contact-right-content-style-3.contact-style-8 .form-clt input,
.contact-right-content-style-3.contact-style-8 .form-clt textarea {
    color: rgba(87, 125, 125, 0.7);
    border: 1px solid #D8E5E5;
    background: #D8E5E5;
}

.contact-right-content-style-3.contact-style-8 .form-clt textarea {
    padding-bottom: 120px;
}

.contact-right-content-style-3.contact-style-8 .contact-button .theme-btn {
    background-color: var(--theme);
    color: var(--white);
}

.contact-right-content-style-3.contact-style-8 .contact-button .theme-btn i {
    background-color: var(--white);
    color: var(--theme);
}

.contact-section-3 {
    position: relative;
    z-index: -1;
    margin-top: -220px;
}

.contact-section-3::before {
    width: 50%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    border-radius: 0px 0px 0px 25px;
}

@media (max-width: 991px) {
    .contact-section-3::before {
        display: none;
    }
    .contact-section-3 {
            margin-top: -135px;
    }

    .contact-right-content-style-3 .contact-form-box-3 .form-clt textarea{
        padding-bottom: 55px;
    }
}

.contact-section-8::before {
    content: none;
}

.contact-top .icon-box-items-inners {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .contact-top .icon-box-items-inners {
        display: block;
    }
}

.contact-top .icon-box-items-inners .icon {
    max-width: 62px;
    height: 62px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(20, 75, 36, 0.1);
    border-radius: 50%;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .contact-top .icon-box-items-inners .icon {
        margin-bottom: 15px;
    }
}

.contact-top .icon-box-items-inners .icon i {
    transition: all 0.4s ease-in-out;
    font-size: 26px;
    color: var(--theme);
}

.contact-top .icon-box-items-inners .content p {
    font-size: 16px;
    font-weight: 500;
}

.contact-top .icon-box-items-inners .content .title {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .contact-top .icon-box-items-inners .content .title {
        font-size: 18px;
    }
}

.contact-top .icon-box-items-inners:hover .icon {
    background-color: var(--theme);
}

.contact-top .icon-box-items-inners:hover .icon i,
.contact-top .icon-box-items-inners:hover .icon img {
    filter: brightness(0) invert(1);
}

.contact-middle-items {
    margin-top: 120px;
}

@media (max-width: 1199px) {
    .contact-middle-items {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .contact-middle-items {
        margin-top: 80px;
    }
}

.contact-middle-items .contact-form-box {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    padding: 50px 40px;
}

.contact-middle-items .contact-form-box h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .contact-middle-items .contact-form-box h3 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .contact-middle-items .contact-form-box h3 {
        font-size: 35px;
    }
}

.contact-middle-items .contact-form-box .form-clt input,
.contact-middle-items .contact-form-box .form-clt textarea {
    border-radius: 5px;
    border: 1px solid rgba(88, 109, 145, 0.15);
    background: var(--white);
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
}

.contact-middle-items .contact-form-box .form-clt input::placeholder,
.contact-middle-items .contact-form-box .form-clt textarea::placeholder {
    color: rgb(102, 102, 102);
}

.contact-middle-items .contact-form-box .form-clt textarea {
    padding-bottom: 110px;
}

.contact-middle-items .contact-form-box .theme-btn {
    transition: all 0.4s ease-in-out;
}

.contact-middle-items .contact-form-box .theme-btn i {
    transition: all 0.4s ease-in-out;
}

.contact-middle-items .google-map-items iframe {
    width: 100%;
    height: 610px;
    border-radius: 10px;
}

.cta-section-3 {
    background-color: var(--theme);
    padding: 50px 0;
}

.disable{
    opacity: 0.4; 
    text-decoration: line-through;
}

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

@media (max-width: 1199px) {
    .cta-wrapper-3 {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

.cta-wrapper-3 .cta-icon-area {
    display: flex;
    align-items: center;
    gap: 10px;
}


.cta-icon-area .theme-btn {
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    padding: 0px 35px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    background-color: transparent;
    border: 1.5px solid var(--white);
}

@media (max-width: 991px) {
    .cta-wrapper-3 .cta-icon-area {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

.cta-wrapper-3 .cta-icon-area .cta-first-items {
    display: flex;
    align-items: center;
    gap: 25px;
    border-right: 3px solid var(--white);
    padding-right: 25px;
}

@media (max-width: 1399px) {
    .cta-wrapper-3 .cta-icon-area .cta-first-items {
        border-right: none;
        padding-right: 0;
        gap: 20px;
    }
}

.cta-wrapper-3 .cta-icon-area .cta-first-items .content p {
    font-size: 20px;
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
}

.cta-wrapper-3 .cta-icon-area .cta-first-items .content p a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.cta-wrapper-3 .cta-icon-area .cta-first-items .content p a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.cta-wrapper-3 .cta-icon-area .cta-first-items .content .mail-text {
    font-size: 20px;
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
    margin-top: 5px;
    display: inline-block;
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
}

.cta-wrapper-3 .cta-icon-area .cta-first-items .content .mail-text:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.cta-wrapper-3 .cta-icon-area .title {
    color: var(--white);
    font-size: 32px;
    max-width: 462px;
}

@media (max-width: 1399px) {
    .cta-wrapper-3 .cta-icon-area .title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .cta-wrapper-3 .cta-icon-area .title {
        text-align: center;
        font-size: 24px;
    }
}

.cta-wrapper-3 .theme-btn {
    background-color: var(--white);
    color: var(--theme);
}

.cta-wrapper-3 .theme-btn i {
    background-color: var(--theme);
    color: var(--white);
}

.cta-marquee-section-2 {
    position: relative;
}

@media (max-width: 1399px) {
    .cta-marquee-section-2 {
        overflow: hidden;
    }
}

.cta-marquee-section-2 .cta-marque-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .cta-marquee-section-2 .cta-marque-image {
        display: none;
    }
}

.cta-marquee-section-2 .cta-marque-image img {
    width: 100%;
    height: 100%;
    height: 650px;
    object-fit: cover;
}

.cta-marquee-section-2 .cta-marque-imag2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.cta-marquee-section-2 .cta-marque-imag2 img {
    width: 100%;
    height: 100%;
    height: 650px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-marquee-section-2 .cta-marque-imag2 img {
        height: 570px;
    }
}

.cta-marquee-section-2 .section-title-area {
    padding-bottom: 52px;
    margin-bottom: 30px !important;
}

.faq-left-content .faq-text {
    margin-top: 25px;
    max-width: 464px;
}

.faq-left-content .faq-bottom-area {
    background-color: var(--theme);
    border-radius: 12px;
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .faq-left-content .faq-bottom-area {
        padding: 28px;
        gap: 20px;
        flex-wrap: wrap;
    }
}

.faq-left-content .faq-bottom-area .content p {
    font-size: 24px;
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
}

@media (max-width: 1199px) {
    .faq-left-content .faq-bottom-area .content p {
        font-size: 20px;
    }
}

.faq-left-content .faq-bottom-area .content p a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.faq-left-content .faq-bottom-area .content p a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.faq-left-content .faq-bottom-area .content .mail-text {
    font-size: 24px;
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
    margin-top: 10px;
    color: var(--white);
    display: inline-block;
}

@media (max-width: 1199px) {
    .faq-left-content .faq-bottom-area .content .mail-text {
        font-size: 20px;
    }
}

.faq-left-content .faq-bottom-area .content .mail-text {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
}

.faq-left-content .faq-bottom-area .content .mail-text:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.faq-left-content .faq-bottom-area:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.faq-items-style-1 .accordion-box {
    position: relative;
}

.faq-items-style-1 .accordion-box .block {
    position: relative;
    background-color: var(--white);
    border: 1px solid #D9D9D9;
    margin-bottom: 17px;
    line-height: 1;
    border-radius: 30px;
}

.faq-items-style-1 .accordion-box .block .acc-btn {
    position: relative;
    font-size: 18px;
    color: var(--header);
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
    cursor: pointer;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 30px;
    padding-right: 14px;
    gap: 14px;
}

@media (max-width: 1399px) {
    .faq-items-style-1 .accordion-box .block .acc-btn {
        line-height: 1.4;
    }
}

@media (max-width: 470px) {
    .faq-items-style-1 .accordion-box .block .acc-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

.faq-items-style-1 .accordion-box .block .acc-btn .icon {
    max-width: 39px;
    height: 39px;
    font-size: 16px;
    line-height: 39px;
    background-color: #F3F7F6;
    transition: all 500ms ease;
    border-radius: 50%;
    color: var(--theme);
    text-align: center;
    width: 100%;
}

.faq-items-style-1 .accordion-box .block .acc-btn .icon:before {
    content: "\f067";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--theme);
    transition: all 0.3s ease;
}

.faq-items-style-1 .accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding: 30px 30px;
    padding-top: 22px;
}

@media (max-width: 470px) {
    .faq-items-style-1 .accordion-box .block .acc-content {
        padding: 18px 20px;
    }
}

.faq-items-style-1 .accordion-box .block .acc-content .content {
    position: relative;
}

.faq-items-style-1 .accordion-box .block .acc-content .content .text {
    line-height: 175%;
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
}

@media (max-width: 470px) {
    .faq-items-style-1 .accordion-box .block .acc-content .content .text {
        font-size: 15px;
    }
}

.faq-items-style-1 .accordion-box .block.active-block {
    border-radius: 12px;
}

.faq-items-style-1 .accordion-box .block.active-block .acc-btn {
    background-color: var(--theme);
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--white) !important;
}

.faq-items-style-1 .accordion-box .block.active-block .acc-btn .icon:before {
    content: "\f068";
    color: var(--header);
}

.faq-items-style-1 .accordion-box .block .acc-content.current {
    display: block;
}

.faq-items-style-1 .accordion-box .block:last-child {
    margin-bottom: 0;
}

.choose-us-left-content {
    max-width: 550px;
}

@media (max-width: 1199px) {
    .choose-us-left-content {
        max-width: initial;
    }
}

.choose-us-left-content .choose-text {
    margin-top: 25px;
}

.choose-us-left-content .list-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .choose-us-left-content .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.choose-us-left-content .list-items ul li {
    font-size: 16px;
    font-weight: 600;
}

.choose-us-left-content .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .choose-us-left-content .list-items ul li:not(:last-child) {
        margin-bottom: 12px;
    }
}

.choose-us-left-content .list-items ul li img {
    margin-right: 8px;
}

.choose-us-left-content .choose-feature {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .choose-us-left-content .choose-feature {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .choose-us-left-content .choose-feature {
        margin-top: 25px;
    }
}

.choose-us-left-content .choose-feature:not(:last-child) {
    margin-bottom: 20px;
}

.choose-us-left-content .choose-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Mona Sans", sans-serif;
}

.choose-us-left-content .choose-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.choose-us-left-content .choose-feature .progress {
    position: relative;
    height: 8px;
    background-color: rgba(29, 139, 138, 0.18);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.choose-us-left-content .choose-feature .progress-bar {
    background-color: var(--theme);
    height: 8px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.choose-us-left-content .choose-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    font-family: "Mona Sans", sans-serif;
}

.choose-us-left-content .theme-btn {
    margin-top: 30px;
}

.choose-us-right-thumb {
    position: relative;
}

@media (max-width: 1199px) {
    .choose-us-right-thumb {
        height: 500px;
    }
}

.choose-us-right-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.choose-us-right-thumb .choose-skill-content {
    background-color: var(--white);
    padding: 40px 35px;
    max-width: 303px;
    border-radius: 12px;
    position: absolute;
    bottom: -20px;
    right: -20px;
}

@media (max-width: 1199px) {
    .choose-us-right-thumb .choose-skill-content {
        padding: 30px 28px;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
}

.choose-us-right-thumb .choose-skill-content .icon img {
    width: initial;
    height: initial;
}

.choose-us-right-thumb .choose-skill-content h4 {
    font-size: 20px;
    margin-top: 70px;
}

@media (max-width: 1199px) {
    .choose-us-right-thumb .choose-skill-content h4 {
        margin-top: 25px;
        font-size: 17px;
    }
}

.choose-us-right-thumb .choose-skill-content .link-btn {
    color: var(--theme);
    margin-top: 30px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    text-decoration: underline;
}

.choose-us-right-thumb .choose-skill-content .link-btn i {
    margin-left: 5px;
    transform: rotate(-45deg);
}

.choose-us-right-thumb .choose-skill-content .link-btn:hover {
    color: var(--header);
}

.choose-us-right-thumb .choose-skill-content:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.counter-items-style-1 {
    border-radius: 12px;
    background-color: var(--white);
    padding: 40px 35px;
}

@media (max-width: 767px) {
    .counter-items-style-1 {
        text-align: center;
    }
}

.counter-items-style-1 h2 {
    color: var(--theme);
    margin-bottom: 7px;
    font-size: 64px;
    font-weight: 500;
}

.counter-items-style-1 h2 .count {
    color: var(--header);
}

.video-wrapper {
    text-align: center;
    position: relative;
}

@media (max-width: 1199px) {
    .video-wrapper {
        height: 600px;
    }
    .video-wrapper img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .video-wrapper {
        height: 530px;
    }
}

@media (max-width: 470px) {
    .video-wrapper {
        height: 480px;
    }
}

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

.video-wrapper .video .video-btn {
    width: 146px;
    height: 146px;
    line-height: 146px;
    text-align: center;
    border-radius: 122px;
    color: var(--white);
    display: inline-block;
    font-size: 43px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(14.55px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-wrapper .video .video-btn:hover {
    background-color: var(--theme);
    border-color: var(--theme);
}

@media (max-width: 575px) {
    .video-wrapper .video .video-btn {
        font-size: 18px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

.video-wrapper .video .ripple::before,
.video-wrapper .video .ripple::after {
    width: 146px;
    height: 146px;
}

@media (max-width: 575px) {
    .video-wrapper .video .ripple::before,
    .video-wrapper .video .ripple::after {
        width: 80px;
        height: 80px;
    }
}

.counter-feature-section .container {
    max-width: 1346px;
}

.counter-feature-wrapper {
    background-color: var(--theme);
    border-radius: 12px;
    padding: 78px 79px;
    margin-top: -120px;
    position: relative;
    z-index: 99;
}

@media (max-width: 1199px) {
    .counter-feature-wrapper {
        padding: 60px 50px;
    }
}

@media (max-width: 991px) {
    .counter-feature-wrapper {
        padding: 60px 50px;
        padding-top: 45px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .counter-feature-wrapper {
        padding: 50px 30px;
        padding-top: 35px;
    }
}

.counter-feature-wrapper .counter-feature-1 h2 {
    font-size: 180px;
    font-weight: 400;
    color: var(--white);
}

@media (max-width: 1399px) {
    .counter-feature-wrapper .counter-feature-1 h2 {
        font-size: 150px;
    }
}

@media (max-width: 575px) {
    .counter-feature-wrapper .counter-feature-1 h2 {
        font-size: 120px;
    }
}

.counter-feature-wrapper .counter-feature-1 p {
    color: var(--white);
}

.counter-feature-wrapper .counter-feature-2 .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 6px;
    background-color: rgb(236, 240, 240);
}

@media (max-width: 991px) {
    .counter-feature-wrapper .counter-feature-2 .icon {
        margin: 0 auto;
    }
}

.counter-feature-wrapper .counter-feature-2 .content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-top: 50px;
}

.counter-feature-wrapper .counter-feature-2 .content .line {
    width: 100px;
    height: 3px;
    background-color: var(--white);
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .counter-feature-wrapper .counter-feature-2 .content .line {
        margin: 20px auto 20px;
    }
}

.counter-feature-wrapper .counter-feature-2 .content p {
    color: var(--white);
    max-width: 330px;
}

@media (max-width: 991px) {
    .counter-feature-wrapper .counter-feature-2 .content p {
        margin: 0 auto;
    }
}

.counter-feature-wrapper .counter-feature-2:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.icon-wrapper-style-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199px) {
    .icon-wrapper-style-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .icon-wrapper-style-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .icon-wrapper-style-1 .icon-feature-box {
        margin: 0 auto;
        text-align: center;
    }
}

.icon-wrapper-style-1 .icon-feature-box .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 6px;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
    .icon-wrapper-style-1 .icon-feature-box .icon {
        margin: 0 auto;
    }
}

.icon-wrapper-style-1 .icon-feature-box .icon img {
    transition: all 0.4s ease-in-out;
}

.icon-wrapper-style-1 .icon-feature-box .content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 50px;
}

.icon-wrapper-style-1 .icon-feature-box .content .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .icon-wrapper-style-1 .icon-feature-box .content .line {
        margin: 20px auto 20px;
    }
}

.icon-wrapper-style-1 .icon-feature-box .content p {
    max-width: 330px;
}

@media (max-width: 767px) {
    .icon-wrapper-style-1 .icon-feature-box .content p {
        margin: 0 auto;
        text-align: center;
    }
}

.icon-wrapper-style-1 .icon-feature-box:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.icon-wrapper-style-1 .icon-feature-box:hover .icon {
    background-color: var(--theme);
}

.icon-wrapper-style-1 .icon-feature-box:hover .icon img {
    filter: brightness(1000%) contrast(1000%);
}

.icon-wrapper-style-1 .icon-feature-thumb {
    position: relative;
}

.icon-wrapper-style-1 .icon-feature-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.icon-wrapper-style-1 .icon-feature-thumb .phone-area {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(14.55px);
    border-radius: 7px;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    left: 23px;
    right: 23px;
}

@media (max-width: 991px) {
    .icon-wrapper-style-1 .icon-feature-thumb .phone-area {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px 22px;
    }
}

.icon-wrapper-style-1 .icon-feature-thumb .phone-area .icon img {
    width: initial;
    height: initial;
}

.icon-wrapper-style-1 .icon-feature-thumb .phone-area .content p {
    color: var(--white);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .icon-wrapper-style-1 .icon-feature-thumb .phone-area .content p {
        margin-bottom: 0;
    }
}

.icon-wrapper-style-1 .icon-feature-thumb .phone-area .content a {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.icon-wrapper-style-1 .icon-feature-thumb .phone-area .content a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

@media (max-width: 991px) {
    .icon-wrapper-style-1 .icon-feature-thumb .phone-area .content a {
        font-size: 20px;
    }
}

.letter-img-items {
    max-width: 1344px;
    margin: 0 auto;
    margin-bottom: -80px;
    position: relative;
    margin-top: -64px;
    z-index: 9;
}

.letter-img-items .letter-image {
    background-size: cover;
    background-position: 50%;
    -webkit-background-clip: text;
    color: transparent;
    background-image: url(../../assets/img/home-2/bixoo-img.jpg);
    background-position: 7% 546px;
    background-size: 125% auto;
    font-size: 375px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    animation-duration: 1500ms;
    -webkit-animation-duration: 1500ms;
    font-family: "Mona Sans", sans-serif;
}

@media (max-width: 1399px) {
    .letter-img-items .letter-image {
        font-size: 340px;
    }
}

@media (max-width: 1199px) {
    .letter-img-items .letter-image {
        font-size: 280px;
    }
}

@media (max-width: 991px) {
    .letter-img-items .letter-image {
        font-size: 200px;
    }
}

@media (max-width: 767px) {
    .letter-img-items .letter-image {
        font-size: 140px;
    }
}

@media (max-width: 575px) {
    .letter-img-items .letter-image {
        font-size: 100px;
    }
}

.letter-img-items.style-2 {
    margin-bottom: -162px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .letter-img-items.style-2 {
        margin-bottom: -103px;
    }
}

.counter-feature-section-2 .container {
    max-width: 1472px;
}

.counter-feature-box-items-style-2 {
    background-color: var(--white);
    border-radius: 12px;
    padding: 70px 50px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .counter-feature-box-items-style-2 {
        padding: 30px;
    }
}

.counter-feature-box-items-style-2 .shape-1 {
    position: absolute;
    top: 80px;
    right: 60px;
}

@media (max-width: 1199px) {
    .counter-feature-box-items-style-2 .shape-1 {
        display: none;
    }
}

.counter-feature-box-items-style-2 h2 {
    font-size: 64px;
    font-weight: 500;
    color: var(--theme);
}

@media (max-width: 575px) {
    .counter-feature-box-items-style-2 h2 {
        font-size: 48px;
    }
}

.counter-feature-box-items-style-2 h3 {
    font-size: 24px;
    max-width: 284px;
    margin-top: 20px;
}

.counter-feature-box-items-style-2 .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 20px;
    margin-bottom: 20px;
}

.counter-feature-box-items-style-2.active {
    background-color: rgb(216, 229, 229);
    margin-top: -30px;
}

@media (max-width: 1199px) {
    .counter-feature-box-items-style-2.active {
        margin-top: 0;
    }
}

.counter-feature-box-items-style-2.style-2 {
    position: relative;
    z-index: 9;
}

.counter-feature-box-items-style-2.style-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 36, 35, 0.25) 0%, rgba(2, 36, 35, 0.88) 100%);
    z-index: -1;
    border-radius: 12px;
}

.counter-feature-box-items-style-2.style-2 h2 {
    color: var(--white);
}

.counter-feature-box-items-style-2.style-2 h3 {
    color: var(--white);
}

.counter-feature-box-items-style-2.style-2 .line {
    background-color: var(--white);
}

.counter-feature-box-items-style-2.style-2 p {
    color: var(--white);
}

.choose-thumb-style-2 {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
    margin-top: 30px;
    max-width: 740px;
}

@media (max-width: 1199px) {
    .choose-thumb-style-2 {
        height: 370px;
    }
}

@media (max-width: 991px) {
    .choose-thumb-style-2 {
        height: initial;
    }
}

.choose-thumb-style-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.choose-thumb-style-2 img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.choose-thumb-style-2:hover img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.choose-thumb-style-2:hover img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.choose-thumb-style-2.style-image2 {
    height: 370px;
}

@media (max-width: 991px) {
    .build-industries-thumb-style-2 {
        height: 500px;
    }
}

.build-industries-thumb-style-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.single-circle-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.single-circle-bar .circle-progress {
    width: 88px;
    height: 88px;
    position: relative;
}

.single-circle-bar .circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.single-circle-bar .circle-progress circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.single-circle-bar .circle-progress .bg {
    stroke: rgba(29, 139, 138, 0.25);
}

.single-circle-bar .circle-progress .progress {
    stroke: #1D8B8A;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}

.single-circle-bar .circle-progress .value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--theme);
}

.build-industries-content-style-2 .build-industries-box {
    margin-top: 50px;
    gap: 0;
    background-color: var(--white);
    padding: 40px 60px;
    border-radius: 12px;
    margin-left: -150px;
    z-index: 9;
    position: relative;
}

@media (max-width: 1399px) {
    .build-industries-content-style-2 .build-industries-box {
        padding: 40px;
    }
}

@media (max-width: 1199px) {
    .build-industries-content-style-2 .build-industries-box {
        margin-left: 0;
        padding: 30px 30px;
    }
}

.build-industries-content-style-2 .build-industries-box ul {
    border-top: 1px solid rgba(29, 139, 138, 0.15);
    padding-top: 40px;
}

.build-industries-content-style-2 .build-industries-box ul li {
    border-bottom: 1px solid rgba(29, 139, 138, 0.15);
    padding-bottom: 40px;
}

.build-industries-content-style-2 .build-industries-box ul li .build-industries-items {
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .build-industries-content-style-2 .build-industries-box ul li .build-industries-items {
        flex-wrap: wrap;
        gap: 40px;
    }
}

.build-industries-content-style-2 .build-industries-box ul li .build-industries-items .build-list {
    display: flex;
    align-items: center;
    gap: 16px;
}

.build-industries-content-style-2 .build-industries-box ul li .build-industries-items .build-list.style-margin {
    margin-left: 100px;
}

@media (max-width: 1199px) {
    .build-industries-content-style-2 .build-industries-box ul li .build-industries-items .build-list.style-margin {
        margin-left: 0;
    }
}

.build-industries-content-style-2 .build-industries-box ul li h3 {
    font-size: 18px;
    font-weight: 600;
}

.build-industries-content-style-2 .build-industries-box ul li h3 a i {
    color: var(--theme);
    font-size: 22px;
    margin-left: 10px;
}

.build-industries-content-style-2 .build-industries-box ul li h3 a:hover {
    color: var(--theme);
}

.build-industries-content-style-2 .build-industries-box ul li:not(:last-child) {
    margin-bottom: 40px;
}

.icon-feature-section-3 {
    margin-top: -170px;
    position: relative;
    z-index: 99;
}

.icon-feature-section-3 .container {
    max-width: 1626px;
}

.icon-feature-wrapper {
    background-color: var(--white);
    padding: 35px;
    border-radius: 4px;
}

.icon-feature-box-items-style-3 {
    display: flex;
    gap: 22px;
}

@media (max-width: 767px) {
    .icon-feature-box-items-style-3 {
        display: grid;
        justify-content: center;
        text-align: center;
    }
}

.icon-feature-box-items-style-3 .icon {
    width: 100%;
    max-width: 76px;
    height: 78px;
    line-height: 78px;
    background-color: var(--theme);
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 767px) {
    .icon-feature-box-items-style-3 .icon {
        margin: 0 auto;
    }
}

.icon-feature-box-items-style-3 .content .title {
    font-size: 24px;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .icon-feature-box-items-style-3 .content .title {
        font-size: 20px;
    }
}

.icon-feature-box-items-style-3 .content .line {
    width: 185px;
    height: 2px;
    background-color: rgba(29, 139, 138, 0.26);
    margin-top: 20px;
    margin-bottom: 24px;
    position: relative;
}

@media (max-width: 767px) {
    .icon-feature-box-items-style-3 .content .line {
        margin: 20px auto 20px;
    }
}

.icon-feature-box-items-style-3 .content .line::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 2px;
    content: "";
    background: var(--theme);
}

.icon-feature-box-items-style-3 .content p {
    max-width: 326px;
    margin-top: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .icon-feature-box-items-style-3 .content p {
        font-size: 14px;
    }
}

.icon-feature-box-items-style-3 .content .arrow-icon i {
    font-size: 30px;
    color: var(--theme);
}

.icon-feature-box-items-style-3 .content .arrow-icon:hover i {
    color: var(--header);
}

.icon-feature-box-items-style-3:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.work-process-box-items-style-3 {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 12px;
    padding: 64px 35px;
     
    position: relative;
}

@media (max-width: 1600px) {
    .work-process-box-items-style-3 {
        padding: 50px 30px;
    }
}

.work-process-box-items-style-3 h3 {
    font-size: 22px;
}

.work-process-box-items-style-3 .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 30px;
    margin-bottom: 24px;
}

.work-process-box-items-style-3 span {
    background: linear-gradient(180deg, #1D8B8A 0%, #141414 74.71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Mona Sans", sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 88%;
    position: absolute;
    bottom: -6px;
    right: 0;
}

@media (max-width: 1899px) {
    .work-process-box-items-style-3 span {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .work-process-box-items-style-3 span {
        font-size: 50px;
    }
}
 

.work-process-box-items-style-3 .circle-icon {
    background-color: var(--white);
    width: 56px;
    height: 56px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: var(--theme);
    display: inline-block;
    font-size: 20px;
    position: absolute;
    top: 30%;
    left: 96%;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    border: 7px solid #ECF0F0;
}

@media (max-width: 575px) {
    .work-process-box-items-style-3 .circle-icon {
        display: none;
    }

    .work-process-box-items-style-3 h3{
            font-size: 19px;
    }
}

.work-process-box-items-style-3 .circle-icon:hover {
    background-color: var(--theme);
    color: var(--white);
}

.work-process-box-items-style-3 .circle-icon.style-2 {
    position: absolute;
    top: 46%;
    left: 96%;
}

.work-process-style-8 .title-shape-box .title-icon {
    position: relative;
    width: 96px;
    height: 97px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    border: 5px solid var(--theme);
    margin: 0 auto;
    margin-top: 90px;
}

@media (max-width: 1399px) {
    .work-process-style-8 .title-shape-box .title-icon {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {
    .work-process-style-8 .title-shape-box .title-icon {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .work-process-style-8 .title-shape-box .title-icon {
        display: none;
    }
}

.work-process-style-8 .title-shape-box .bar-shape {
    text-align: center;
    margin-top: -2px;
}

@media (max-width: 991px) {
    .work-process-style-8 .title-shape-box .bar-shape {
        display: none;
    }
}

.work-process-style-8 .work-process-btn {
    margin-top: 45px;
    text-align: center;
}

.work-process-style-8 .items-style-8 {
    margin-top: 0;
}

@media (max-width: 1199px) {
    .work-process-style-8 .items-style-8 {
        margin-top: 30px;
    }
}

.choose-us-left-thumb-style-3 {
    margin-left: 40px;
    margin-right: 80px;
    margin-top: 76px;
    position: relative;
}

@media (max-width: 1199px) {
    .choose-us-left-thumb-style-3 {
        margin-top: 30px;
        margin-left: 30px;
        margin-right: 30px;
        height: 500px;
    }
}

.choose-us-left-thumb-style-3 img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.choose-us-left-thumb-style-3 .sm-thumb {
    position: absolute;
    bottom: 80px;
    left: 308px;
    max-width: 336px;
}

.choose-us-left-thumb-style-3 .sm-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.choose-us-left-thumb-style-3 .sm-thumb-2 {
    position: absolute;
    top: -45px;
    right: -63px;
    max-width: 316px;
}

.choose-us-left-thumb-style-3 .sm-thumb-2 img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

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

.choose-section-3 .shape-1 {
    position: absolute;
    top: 0;
    right: 0;
}

.choose-section-3 .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.choose-us-left-thumb-style-8 {
    position: relative;
    margin-top: 35px;
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .choose-us-left-thumb-style-8 {
        margin-bottom: 80px;
    }
}

@media (max-width: 500px) {
    .choose-us-left-thumb-style-8 {
        margin-bottom: 0;
    }
}

.choose-us-left-thumb-style-8 img {
    border-radius: 8px;
    position: relative;
}

@media (max-width: 767px) {
    .choose-us-left-thumb-style-8 img {
        width: 100%;
        height: 100%;
    }
}

.choose-us-left-thumb-style-8::before {
    position: absolute;
    content: "";
    height: 156px;
    width: 10px;
    background-color: var(--theme);
    border-radius: 8px;
    right: 110px;
    top: 60px;
}

@media (max-width: 1199px) {
    .choose-us-left-thumb-style-8::before {
        content: none;
    }
}

.choose-us-left-thumb-style-8 .thumb-2 {
    position: absolute;
    bottom: -100px;
    right: 15px;
}

@media (max-width: 991px) {
    .choose-us-left-thumb-style-8 .thumb-2 {
        bottom: -70px;
        right: 0;
    }
}

@media (max-width: 500px) {
    .choose-us-left-thumb-style-8 .thumb-2 {
        display: none;
    }
}

.choose-us-left-thumb-style-8 .thumb-2 img {
    border-radius: 8px;
}

@media (max-width: 767px) {
    .choose-us-left-thumb-style-8 .thumb-2 img {
        width: 100%;
        height: 100%;
    }
}

.choose-us-right-content-style-3 {
    margin-left: 50px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .choose-us-right-content-style-3 {
        margin-left: 0;
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .choose-us-right-content-style-3 {
        margin-left: 30px;
        margin-right: 30px;
    }
}

.choose-us-right-content-style-3 .icon-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.choose-us-right-content-style-3 .icon-area h3 {
    max-width: 165px;
    font-size: 22px;
}

.choose-us-right-content-style-3 p {
    max-width: 402px;
    margin-top: 20px;
}

.choose-us-right-content-style-3 .choose-feature {
    margin-top: 50px;
    max-width: 472px;
}

@media (max-width: 1199px) {
    .choose-us-right-content-style-3 .choose-feature {
        margin-top: 40px;
        max-width: initial;
    }
}

@media (max-width: 767px) {
    .choose-us-right-content-style-3 .choose-feature {
        margin-top: 25px;
    }
}

.choose-us-right-content-style-3 .choose-feature:not(:last-child) {
    margin-bottom: 20px;
}

.choose-us-right-content-style-3 .choose-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Mona Sans", sans-serif;
}

.choose-us-right-content-style-3 .choose-feature .progress-value {
    margin-bottom: 10px;
    color: var(--header);
    text-transform: capitalize;
}

.choose-us-right-content-style-3 .choose-feature .progress {
    position: relative;
    height: 8px;
    background-color: rgba(65, 197, 117, 0.12);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.choose-us-right-content-style-3 .choose-feature .progress-bar {
    background-color: var(--theme);
    height: 8px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.choose-us-right-content-style-3 .choose-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    font-family: "Mona Sans", sans-serif;
}

.choose-us-right-content-style-3 .theme-btn {
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .choose-us-right-content-style-3 .theme-btn {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .choose-us-right-content-style-3 .theme-btn {
        margin-top: 25px;
    }
}

.choose-us-right-content-style-3:hover .icon-area .icon img {
    animation: wobble 1.5s ease-in-out;
}

.counter-wrap-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 120px;
}

@media (max-width: 991px) {
    .counter-wrap-3 {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .counter-wrap-3 {
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}

.counter-box-items-style-3 {
    max-width: 322px;
}

@media (max-width: 575px) {
    .counter-box-items-style-3 {
        margin: 0 auto;
        text-align: center;
    }
}

.counter-box-items-style-3 h2 {
    font-size: 64px;
    font-weight: 500;
    color: var(--theme);
}

@media (max-width: 991px) {
    .counter-box-items-style-3 h2 {
        font-size: 50px;
    }
}

.counter-box-items-style-3 h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .counter-box-items-style-3 h3 {
        font-size: 20px;
    }
}

.counter-box-items-style-3 .line {
    width: 100%;
    height: 2px;
    background-color: rgba(29, 139, 138, 0.26);
    margin-top: 20px;
    margin-bottom: 24px;
    position: relative;
}

@media (max-width: 575px) {
    .counter-box-items-style-3 .line {
        margin: 20px auto;
    }
}

.counter-box-items-style-3 .line::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 2px;
    content: "";
    background: var(--theme);
    z-index: -1;
}

.counter-box-items-style-3 p {
    margin-top: 6px;
}

.client-information-section-3 {
    margin-top: -120px;
    position: relative;
    z-index: 9;
}

.client-information-section-3 .container {
    max-width: 1448px;
}

.client-information-3 {
    background-color: var(--white);
    border-radius: 12px;
    padding: 73px 120px;
}

@media (max-width: 1199px) {
    .client-information-3 {
        padding: 60px 50px;
    }
}

@media (max-width: 575px) {
    .client-information-3 {
        padding: 50px 30px;
    }
}

.client-information-3 .client-area {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.client-information-3 .client-area .bar-shape {
    position: absolute;
    bottom: 20px;
    right: 0;
}

@media (max-width: 1399px) {
    .client-information-3 .client-area .bar-shape {
        display: none;
    }
}

@media (max-width: 991px) {
    .client-information-3 .client-area {
        flex-wrap: wrap;
    }
}

.client-information-3 .client-area p {
    max-width: 168px;
}

.client-information-3 .brand-area {
    margin-top: 80px;
    text-align: center;
}

.video-wrapper-4 {
    text-align: center;
    position: relative;
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .video-wrapper-4 {
        height: 600px;
    }
    .video-wrapper-4 img {
        object-fit: cover;
        border-radius: 12px;
    }
}

.video-wrapper-4 .video {
    text-align: center;
}

.video-wrapper-4 .video .video-btn {
    width: 146px;
    height: 146px;
    line-height: 146px;
    text-align: center;
    border-radius: 122px;
    color: var(--theme);
    display: inline-block;
    font-size: 44px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-wrapper-4 .video .video-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 575px) {
    .video-wrapper-4 .video .video-btn {
        font-size: 18px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

.video-wrapper-4 .video .ripple::before,
.video-wrapper-4 .video .ripple::after {
    width: 146px !important;
    height: 146px !important;
}

@media (max-width: 575px) {
    .video-wrapper-4 .video .ripple::before,
    .video-wrapper-4 .video .ripple::after {
        width: 80px !important;
        height: 80px !important;
    }
}

.video-wrapper-4 img {
    width: 100%;
    height: 100%;
}

.circle-bar-wrapper-4 .circle-bar-area {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-right: 40px;
}

@media (max-width: 1199px) {
    .circle-bar-wrapper-4 .circle-bar-area {
        margin-right: 0;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 {
    text-align: center;
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress {
    width: 146px;
    height: 146px;
    position: relative;
    margin: 0 auto;
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress .bg {
    stroke: rgba(29, 139, 138, 0.25);
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress .progress {
    stroke: #1D8B8A;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress .value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 26px;
    color: rgb(2, 36, 35);
}

@media (max-width: 1199px) {
    .circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .circle-progress .value {
        font-size: 18px;
    }
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .content {
    margin-top: 20px;
}

.circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .content p {
    font-size: 22px;
    font-weight: 500;
    font-family: "Mona Sans", sans-serif;
    color: var(--header);
}

@media (max-width: 1199px) {
    .circle-bar-wrapper-4 .circle-bar-area .single-circle-bar-4 .content p {
        font-size: 18px;
    }
}

.circle-bar-wrapper-4 .circle-content {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .circle-bar-wrapper-4 .circle-content {
        margin-left: 0;
        text-align: center;
    }
}

.circle-bar-wrapper-4 .circle-content .theme-btn {
    margin-top: 30px;
}

.work-process-left-thumb-style-4 .section-title h2 {
    font-size: 48px;
}

@media (max-width: 1399px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 470px) {
    .work-process-left-thumb-style-4 .section-title h2 {
        font-size: 27px;
    }
}

.work-process-left-thumb-style-4 .work-process-thumb {
    margin-top: 40px;
}

.work-process-left-thumb-style-4 .work-process-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.work-process-left-thumb-style-4 .work-process-thumb.thumb-style-6 {
    margin-right: 20px;
}

@media (max-width: 1399px) {
    .work-process-left-thumb-style-4 .work-process-thumb.thumb-style-6 {
        margin-right: 0;
    }
}

.work-process-content-style-4 {
    margin-left: 70px;
    position: relative;
    z-index: 9;
    padding: 55px 45px;
    padding-left: 0;
}

@media (max-width: 1199px) {
    .work-process-content-style-4 {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .work-process-content-style-4 {
        padding: 0;
        text-align: center;
    }
}

.work-process-content-style-4 .check-shape-2 {
    position: absolute;
    top: 360px;
    left: 35px;
}

.work-process-content-style-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
     
    border-radius: 12px;
    z-index: -1;
    left: 135px;
    width: initial;
}

@media (max-width: 575px) {
    .work-process-content-style-4::before {
        display: none;
    }
}

.work-process-content-style-4 li {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

@media (max-width: 575px) {
    .work-process-content-style-4 li {
        display: grid;
        justify-content: center;
    }
}

.work-process-content-style-4 li .icon-items {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.work-process-content-style-4 li .icon-items .check-shape-1 {
    position: absolute;
    bottom: -55px;
    left: 38px;
}

@media (max-width: 991px) {
    .work-process-content-style-4 li .icon-items .check-shape-1 {
        display: none;
    }
}

@media (max-width: 575px) {
    .work-process-content-style-4 li .icon-items {
        justify-content: center;
    }
}

.work-process-content-style-4 li .icon-items .icon {
    width: 93px;
    height: 93px;
    line-height: 85px;
    background-color: var(--white);
    text-align: center;
    border-radius: 50%;
}

.work-process-content-style-4 li .icon-items .icon i{
    font-size: 40px;
    color: #1D8B8A;
}

.work-process-content-style-4 li .icon-items .number {
    background-color: var(--white);
    width: 26px;
    height: 26px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    border: 7px solid #ECF0F0;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme);
}

.work-process-content-style-4 li .content h3 {
    font-size: 22px;
}

@media (max-width: 1199px) {
    .work-process-content-style-4 li .content h3 {
        font-size: 20px;
    }
}

.work-process-content-style-4 li .content p {
    max-width: 415px;
    margin-top: 15px;
}

.work-process-content-style-4 li:not(:last-child) {
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .work-process-content-style-4 li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.work-process-content-style-4 li:hover .icon-items .icon img {
    animation: wobble 1.5s ease-in-out;
}

.work-process-content-style-4.content-style-6 {
    padding: 0;
}

.work-process-content-style-4.content-style-6::before {
    content: none;
}

.work-process-content-style-4.content-style-6 li {
    align-items: flex-start;
}

.work-process-content-style-4.content-style-6 li .icon-items {
    position: relative;
    flex-shrink: 0;
}

.work-process-content-style-4.content-style-6 li .icon-items .number {
    background-color: var(--theme);
    width: 87px;
    height: 87px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    z-index: 1;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    border: 7px solid transparent;
}

.work-process-content-style-4.content-style-6 li:not(:last-child) .icon-items::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 87px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 60px);
    border-left: 1px dashed rgba(29, 139, 138, 0.33);
    z-index: 0;
}

@media (max-width: 991px) {
    .work-process-content-style-4.content-style-6 li:not(:last-child) .icon-items::before {
        height: calc(100% + 30px);
    }
}

.work-process-content-style-4.content-style-6 li .content h3 {
    font-size: 24px;
}

@media (max-width: 1199px) {
    .work-process-content-style-4.content-style-6 li .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .work-process-section-4 {
        padding-bottom: 100px !important;
    }
}

@media (max-width: 991px) {
    .work-process-section-4 {
        padding-bottom: 80px !important;
    }
}

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

@media (max-width: 1199px) {
    .counter-icon-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .counter-icon-wrapper {
        justify-content: center;
        text-align: center;
    }

    .work-process-content-style-4 li .content p{
        text-align: center;
    }

    .work-process-content-style-4 li .icon-items .icon{
        line-height: 92px;
    }
}

.counter-icon-wrapper .counter-icon-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .counter-icon-wrapper .counter-icon-items {
        justify-content: center;
        display: grid;
        text-align: center;
    }
}

.counter-icon-wrapper .counter-icon-items .icon {
    border-right: 1px solid rgba(120, 143, 143, 0.22);
    padding-right: 20px;
}

@media (max-width: 767px) {
    .counter-icon-wrapper .counter-icon-items .icon {
        border: none;
        padding-right: 0;
    }
}

.counter-icon-wrapper .counter-icon-items .content h2 {
    color: rgba(29, 139, 138, 0.28);
}

.counter-icon-wrapper .counter-icon-items .content h2 .count {
    color: rgb(0 212 255);
    margin-right: 10px;
}

.counter-icon-wrapper .counter-icon-items .content p{
  color: white;
}
.counter-icon-wrapper .counter-icon-items:hover .icon i {
    animation: wobble 1.5s ease-in-out;
}

.counter-icon-wrapper .counter-icon-items .icon i {
    animation: wobble 1.5s ease-in-out;
    font-size: 30px;
    color: white;
}

.choose-thumb-style-5 {
    position: relative;
    z-index: 9;
}

.choose-thumb-style-5 .choose-thumb-1 {
    max-width: 647px;
}

.choose-thumb-style-5 .choose-thumb-1 img {
    width: 100%;
    height: 100%;
}

.choose-content-style-5 .list-items {
    margin-top: 25px;
}

.choose-content-style-5 .list-items li {
    font-size: 16px;
    font-weight: 600;
}

.choose-content-style-5 .list-items li img {
    margin-right: 5px;
}

.choose-content-style-5 .list-items li:not(:last-child) {
    margin-bottom: 10px;
}

.bixo-image-box .bixo-image {
    margin-top: -10px;
    margin-bottom: -40px;
    position: relative;
    z-index: 9;
}

.bixo-image-box .bixo-image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .choose-section-31 {
        padding-bottom: 80px !important;
    }
}

.choose-us-section-5 {
    position: relative;
}

.choose-us-section-5 .dot-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1600px) {
    .choose-us-section-5 .dot-shape {
        display: none;
    }
}

.how-it-left-content-style-9 {
    position: relative;
}

.how-it-left-content-style-9 .border-shape {
    position: absolute;
    right: 50px;
    top: 0;
}

@media (max-width: 1199px) {
    .how-it-left-content-style-9 .border-shape {
        display: none;
    }
}

.how-it-left-content-style-9 .how-it-text {
    max-width: 460px;
    margin-top: 25px;
}

.how-it-left-content-style-9 .theme-btn {
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .how-it-left-content-style-9 .theme-btn {
        margin-top: 30px;
    }
}

@media (max-width: 1199px) {
    .how-it-left-content-style-9 .theme-btn {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .how-it-left-content-style-9 .theme-btn {
        margin-top: 20px;
    }
}

.how-it-right-content-style-9 .how-it-items {
    background-color: var(--white);
    padding: 30px;
    padding-bottom: 20px;
    border-radius: 12px;
}

.how-it-right-content-style-9 .how-it-items:not(:last-child) {
    margin-bottom: 24px;
}

.how-it-right-content-style-9 .how-it-items .icon {
    margin-bottom: 17px;
    transition: all 0.4s ease-in-out;
}

.how-it-right-content-style-9 .how-it-items .icon img {
    transition: all 0.4s ease-in-out;
}

.how-it-right-content-style-9 .how-it-items .content h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .how-it-right-content-style-9 .how-it-items .content h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .how-it-right-content-style-9 .how-it-items .content h3 {
        font-size: 22px;
    }
}

.how-it-right-content-style-9 .how-it-items:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.choose-us-section-12 {
    position: relative;
}

.choose-us-section-12 .choose-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .choose-us-section-12 .choose-shape-1 {
        display: none;
    }
}

.choose-us-section-12 .choose-shape-2 {
    position: absolute;
    bottom: 100px;
    right: 0;
}

@media (max-width: 1399px) {
    .choose-us-section-12 .choose-shape-2 {
        display: none;
    }
}

.choose-left-itmes-12 {
    margin-right: 60px;
}

@media (max-width: 1199px) {
    .choose-left-itmes-12 {
        margin-right: 0;
    }
}

.choose-left-itmes-12 .choose-thumb {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .choose-left-itmes-12 .choose-thumb {
        margin-top: 30px;
        height: 500px;
    }
}

@media (max-width: 767px) {
    .choose-left-itmes-12 .choose-thumb {
        height: 480px;
    }
}

.choose-left-itmes-12 .choose-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.choose-right-content-12 .choose-items {
    border-bottom: 1px solid rgba(2, 36, 35, 0.1);
    padding-bottom: 35px;
    margin-top: 45px;
}

.choose-right-content-12 .choose-items .icon-area {
    display: flex;
    gap: 32px;
}

.choose-right-content-12 .choose-items .icon-area .title {
    font-size: 22px;
    font-weight: 600;
    max-width: 270px;
}

.choose-right-content-12 .choose-items p {
    margin-top: 22px;
    font-size: 18px;
    font-weight: 500;
}

.choose-right-content-12 .choose-items:hover .icon-area .icon img {
    animation: wobble 1.5s ease-in-out;
}

.footer-section {
    position: relative;
    z-index: 9;
    background-position: top center !important;
}

.footer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000db;
}

.footer-section.footer-style-8::before {
    background: var(--white);
}

.footer-info-area {
    padding-top: 120px;
}

@media (max-width: 1199px) {
    .footer-info-area {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .footer-info-area {
        padding-top: 80px;
    }
}

.footer-info-area .footer-info-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 11;
}

@media (max-width: 1199px) {
    .footer-info-area .footer-info-top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-info-area .footer-info-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 470px) {
    .footer-info-area .footer-info-top {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

.footer-info-area .footer-info-top .info-item {
    display: flex;
    gap: 20px;
}

.footer-info-area .footer-info-top .info-item .content .info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-info-area .footer-info-top .info-item .content p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-info-area .footer-info-top .info-item .content p a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-info-area .footer-info-top .info-item .content p a:hover {
    color: var(--white);
}

.footer-info-area .footer-info-top .info-item:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.footer-info-area .footer-info-top .social-icon-list .info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-info-area .footer-info-top .social-icon-list .social-icon {
    font-size: 20px;
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-info-area .footer-info-top .social-icon-list .social-icon a {
    color: var(--white);
}

.footer-info-area .footer-info-top .social-icon-list .social-icon a:hover {
    color: var(--theme);
}

.footer-info-area .footer-info-top.footer-info-top-8 .info-item .content .info-title {
    color: var(--header);
}

.footer-info-area .footer-info-top.footer-info-top-8 .info-item .content p {
    color: #788F8F;
}

.footer-info-area .footer-info-top.footer-info-top-8 .info-item .content p a {
    color: #788F8F;
}

.footer-info-area .footer-info-top.footer-info-top-8 .info-item .content p a:hover {
    color: var(--theme);
}

.footer-info-area .footer-info-top.footer-info-top-8 .social-icon-list .info-title {
    color: var(--header);
}

.footer-info-area .footer-info-top.footer-info-top-8 .social-icon-list .social-icon a {
    color: #788F8F;
}

.footer-info-area .footer-info-top.footer-info-top-8 .social-icon-list .social-icon a:hover {
    color: var(--theme);
}

.footer-widget-wrapper-1 {
    position: relative;
    z-index: 11;
    padding: 60px 0 60px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-1 {
        padding: 60px 0 60px;
    }
}

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

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

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

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

.footer-widget-wrapper-1 .footer-widget-items .footer-content p {
    color: var(--white);
    
}

.footer-widget-wrapper-1 .footer-widget-items .footer-content .award-icon {
    gap: 30px;
    margin-top: 30px;
}

.footer-widget-wrapper-1 .footer-widget-items .list-area li {
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    font-weight: 400;
}

.footer-widget-wrapper-1 .footer-widget-items .list-area li i {
    margin-right: 9px;
    font-size: 14px;
}

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

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

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

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

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .subscribe-text {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items form {
    max-width: 591px;
    width: 100%;
    position: relative;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items form input {
    max-width: 335px;
    width: 100%;
    outline: none;
    border: none;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 76px;
    line-height: 1;
    padding-right: 60px;
}

@media (max-width: 1399px) {
    .footer-widget-wrapper-1 .footer-widget-items .footer-form-items form input {
        max-width: 265px;
    }
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-1 .footer-widget-items .footer-form-items form input {
        max-width: 100%;
    }
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items form input::placeholder {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items form .icon-btn {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: var(--white);
    line-height: 34px;
    border-radius: 50%;
    color: var(--theme);
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .form-check {
    margin-top: 15px;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .form-check .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .form-check .form-check-label a {
    color: var(--white);
    font-weight: 600;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .form-check .form-check-label a:hover {
    color: var(--theme);
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .form-check .form-check-input {
    background-color: transparent;
    border-color: var(--white) !important;
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .widget-head h3 {
    color: var(--header);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .footer-content p {
    color: #A1A1A1;
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .list-area li a {
    color: var(--text);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .list-area li a i {
    color: var(--theme);
}

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

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 form input {
    background: transparent;
    border: 1px solid #D8E5E5;
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 form input::placeholder {
    color: #7B7B7B;
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 form .icon-btn {
    background-color: var(--theme);
    color: var(--white);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .subscribe-text {
    color: var(--header);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .form-check .form-check-label {
    color: #D9D9D9;
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .form-check .form-check-label a {
    color: var(--text);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .form-check .form-check-label a:hover {
    color: var(--theme);
}

.footer-widget-wrapper-1.footer-widget-wrapper-8 .footer-widget-8 .form-check .form-check-input {
    border-color: #B4B4B4 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 15px 0;
    position: relative;
    z-index: 11;
}

.footer-bottom .text-1 {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
}

.footer-bottom .text-1 a {
    color: var(--white);
}

.footer-bottom .text-1 a:hover {
    color: var(--theme);
}

.footer-bottom.footer-bottom-8 {
    border-top: 1px solid #D9D9D9;
}

.footer-bottom.footer-bottom-8 .text-1 {
    color: #788F8F;
}

.footer-bottom.footer-bottom-8 .text-1 a {
    color: #788F8F;
}

.footer-bottom.footer-bottom-8 .text-1 a:hover {
    color: var(--theme);
}

.style-footer-12 {
    padding-bottom: 120px !important;
}

.style-footer-121 {
    padding-bottom: 110px !important;
}

.footer-section-3 {
    background-color: #ECF0F0;
    position: relative;
    z-index: 1;
}

.footer-section-3 .shape-1 {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .footer-section-3 .shape-1 {
        display: none;
    }
}

.footer-section-3 .shape-2 {
    position: absolute;
    bottom: 120px;
    left: 80px;
    z-index: -1;
}

@media (max-width: 1199px) {
    .footer-section-3 .shape-2 {
        display: none;
    }
}

.footer-section-3 .shape-3 {
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .footer-section-3 .shape-3 {
        display: none;
    }
}

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

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

@media (max-width: 991px) {
    .footer-widget-wrapper-3 {
        padding: 50px 0 80px;
    }
.footer-widget-wrapper-1 .footer-widget-items{
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-widget-wrapper-1 .footer-widget-items .footer-form-items .subscribe-text {
    font-size: 21px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-widget-wrapper-1 .footer-widget-items .widget-head {
    margin-bottom: 5px;
}
.footer-widget-wrapper-1 .footer-widget-items .footer-content p{
    margin-bottom: 10px;
}


}

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

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

.footer-widget-wrapper-3 .footer-widget-items .widget-head h3 {
    font-size: 24px;
    font-weight: 600;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-content p {
    max-width: 300px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-content .award-icon {
    gap: 30px;
    margin-top: 30px;
}

.footer-widget-wrapper-3 .footer-widget-items .list-area li {
    transition: all 0.4s ease-in-out;
    font-size: 16px;
    font-weight: 400;
}

.footer-widget-wrapper-3 .footer-widget-items .list-area li i {
    margin-right: 9px;
    font-size: 14px;
    color: var(--theme);
}

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

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

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

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

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .subscribe-text {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items p {
    margin-bottom: 30px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items form {
    max-width: 591px;
    width: 100%;
    position: relative;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items form input {
    width: 100%;
    outline: none;
    border: none;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 76px;
    line-height: 1;
    padding-right: 60px;
    color: var(--text);
}

@media (max-width: 1399px) {
    .footer-widget-wrapper-3 .footer-widget-items .footer-form-items form input {
        max-width: 265px;
    }
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-3 .footer-widget-items .footer-form-items form input {
        max-width: 100%;
    }
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items form input::placeholder {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items form .icon-btn {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: var(--theme);
    line-height: 34px;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .form-check {
    margin-top: 15px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .form-check .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .form-check .form-check-label a {
    font-weight: 600;
    color: var(--text);
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .form-check .form-check-label a:hover {
    color: var(--theme);
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .form-check .form-check-input {
    background-color: transparent;
    border-color: #577D7D !important;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .social-icon {
    font-size: 22px;
    gap: 30px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .social-icon a {
    color: #717171;
}

.footer-widget-wrapper-3 .footer-widget-items .footer-form-items .social-icon a:hover {
    color: var(--theme);
}

.footer-bottom-3 {
    background-color: rgb(2, 36, 35);
    padding: 24px 0;
}

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

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

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

.footer-bottom-3 .footer-bottom-wrapper-3 p a {
    color: var(--white);
}

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

@media (max-width: 575px) {
    .footer-bottom-3 .footer-bottom-wrapper-3 .footer-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

.footer-bottom-3 .footer-bottom-wrapper-3 .footer-menu li a {
    color: rgb(255, 255, 255);
    background-image: linear-gradient(var(--theme), var(--theme));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.footer-bottom-3 .footer-bottom-wrapper-3 .footer-menu li a:hover {
    background-size: 100% 1px;
    color: var(--theme);
}

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

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

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

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

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

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

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

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

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

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

.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: 600;
    color: var(--header);
    line-height: 38px;
    padding: 0px 0px 0px 32px;
    padding-right: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    justify-content: center;
    line-height: 1;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 30px;
    max-width: 180px;
    margin: 0 auto;
    height: 54px;
    line-height: 54px;
    padding: 0 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
    font-size: 16px;
    margin-left: 10px;
    margin-right: 0;
}

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

.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: "";
    border-radius: 10px;
}

.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%;
    border-radius: 10px;
}

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    font-family: "Mona Sans", sans-serif;
    color: var(--header);
    text-transform: capitalize;
}

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

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

.header-main .main-menu ul li .has-homemenu::-webkit-scrollbar {
    display: none;
}

.header-main .main-menu ul li .has-homemenu {
    scrollbar-width: none;
}

.header-main .main-menu ul li .has-homemenu {
    -ms-overflow-style: none;
}

.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 {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
}

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

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

.header-main .header__hamburger {
    line-height: 1;
}

.header-main .sidebar__toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    width: 25px;
    height: 25px;
    position: relative;
    top: 0;
    inset-inline-start: 0;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header-main .sidebar__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--white);
    border-radius: 10px;
    margin-inline-end: auto;
    backface-visibility: hidden;
    transition: all 0.3s;
}

.header-main .sidebar__toggle span:last-child,
.header-main .sidebar__toggle span:first-child {
    width: 25px;
}

.header-main .sidebar__toggle.mobile_menu_bar {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--white);
    border-radius: 7px;
}

.header-main .sidebar__toggle.mobile_menu_bar span {
    background-color: var(--white);
}

.header-main .sidebar__toggle:hover span {
    width: 100%;
}

.header-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(29.05px);
}

@media (max-width: 1199px) {
    .header-1 .logo img {
        width: 150px;
    }
}

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

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

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

.header-1 .sidebar__toggle span:last-child,
.header-1 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-1 .sidebar__toggle:hover span {
    width: 100%;
}

.header-1 .header-right {
    gap: 20px !important;
}

.header-1 .header-right .theme-btn {
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    padding: 0px 35px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    background-color: transparent;
    border: 1.5px solid var(--white);
}

.header-1 .header-right .theme-btn:hover {
    background-color: var(--theme);
    border-color: var(--theme);
}

.header-1 .header-right .theme-btn i {
    margin-left: 10px;
}

@media (max-width: 1199px) {
    .header-1 .header-right .theme-btn {
        display: none;
    }
}

.header-1 .header-right .search-toggler {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

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

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

.header-section-2 .header-top-section {
    background: #022423;
}

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

.header-section-2 .header-top-section .header-top-wrapper {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section-2 .header-top-section .header-top-wrapper .text {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1899px) {
    .header-section-2 .header-top-section .header-top-wrapper .text {
        font-size: 15px;
    }
}

@media (max-width: 1600px) {
    .header-section-2 .header-top-section .header-top-wrapper .text {
        font-size: 13px;
    }
}

.header-section-2 .header-top-section .header-top-wrapper .text a {
    color: var(--white);
    font-family: 16px;
    font-weight: 600;
}

.header-section-2 .header-top-section .header-top-wrapper .text a img {
    margin-left: 10px;
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 1600px) {
    .header-section-2 .header-top-section .header-top-wrapper .contact-list {
        gap: 20px;
    }
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1600px) {
    .header-section-2 .header-top-section .header-top-wrapper .contact-list li {
        gap: 10px;
    }
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list li .icon {
    color: var(--theme);
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list li .content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 1899px) {
    .header-section-2 .header-top-section .header-top-wrapper .contact-list li .content p {
        font-size: 15px;
    }
}

@media (max-width: 1600px) {
    .header-section-2 .header-top-section .header-top-wrapper .contact-list li .content p {
        font-size: 13px;
    }
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list li .content p a {
    color: rgba(255, 255, 255, 0.8);
}

.header-section-2 .header-top-section .header-top-wrapper .contact-list li .content p a:hover {
    color: var(--white);
}

.header-section-2 .header-top-section.style-2 {
    background-color: rgb(32, 62, 61);
}

.header-section-2 .header-top-section.style-2 .header-top-wrapper {
    padding: 10px 0;
}

.header-section-2 .header-top-section.style-2 .contact-list {
    gap: 14px;
}

.header-section-2 .header-top-section.style-2 .contact-list li i {
    color: rgba(255, 255, 255, 0.51);
}

.header-section-2 .header-top-section.style-2 .social-icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-section-2 .header-top-section.style-2 .social-icon a {
    color: rgba(255, 255, 255, 0.51);
}

.header-section-2 .header-top-section.style-2 .social-icon a:hover {
    color: var(--white);
}

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

.header-2 {
    background-color: #46A09F;
}

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

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

.header-2 .head-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-2 .head-right .search-toggler {
    color: var(--white);
    font-size: 22px;
}

.header-2 .head-right .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1199px) {
    .header-2 .head-right .contact-item {
        display: none;
    }
}

.header-2 .head-right .contact-item .icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--white);
    text-align: center;
    color: var(--white);
    font-size: 16px;
}

.header-2 .head-right .contact-item .content span {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.header-2 .head-right .contact-item .content p {
    font-size: 18px;
    font-weight: 700;
}

.header-2 .head-right .contact-item .content p a {
    color: var(--white);
}

.header-2 .line-shape {
    background-color: rgba(255, 255, 255, 0.24);
    width: 1px;
    height: 85px;
}

@media (max-width: 1399px) {
    .header-2 .line-shape {
        display: none;
    }
}

.header-2 .flag-wrap {
    position: relative;
    max-width: 106px;
    margin: 0 auto;
}

@media (max-width: 1399px) {
    .header-2 .flag-wrap {
        display: none;
    }
}

.header-2 .flag-wrap .flag {
    position: absolute;
    top: -3px;
    left: 15px;
    z-index: 1;
}

@media (max-width: 767px) {
    .header-2 .flag-wrap .flag {
        display: none;
    }
}

.header-2 .flag-wrap .flag img {
    width: 100%;
    height: 100%;
}

.header-2 .flag-wrap .nice-select {
    padding: 0 0 0 45px;
    background: transparent;
    border: none;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
    border: none !important;
    padding-bottom: 0 !important;
    font-weight: 400 !important;
    line-height: initial;
    height: initial;
    padding-right: 20px;
}

.header-2 .flag-wrap .nice-select span {
    font-weight: 400;
}

.header-2 .flag-wrap .nice-select .list {
    width: 100px;
    left: 0;
    background-color: var(--white);
    border-radius: 0;
    top: 100%;
}

.header-2 .flag-wrap .nice-select .option {
    border: none;
    background-color: #fff;
}

.header-2 .flag-wrap .nice-select .option.selected.focus {
    background-color: #fff;
}

.header-2 .flag-wrap .nice-select::after {
    right: 0;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    width: 8px;
    height: 8px;
    top: 10px;
    border-bottom: 1px solid transparent;
    border-color: var(--white);
    border-right: 1px solid var(--white);
}

.header-2 .flag-wrap .nice-select span {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
}

.header-2 .search-toggler {
    color: var(--white);
}

.header-3 {
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(16.45px);
}

.header-3 .header-right .search-toggler {
    color: var(--white);
}

.header-3 .header-right .theme-btn {
    background: transparent;
    border: 1px solid var(--white);
}

@media (max-width: 1199px) {
    .header-3 .header-right .theme-btn {
        display: none;
    }
}

.header-3 .header-right .theme-btn .btn-arrow-left {
    background-color: var(--theme);
    color: var(--white);
}

.header-3 .header-right .theme-btn .btn-arrow-right {
    background-color: var(--theme);
    color: var(--white);
}

.header-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: transparent;
    backdrop-filter: none;
}

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

.header-5 {
    background-color: #022423;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.header-5 .header-right .head-line {
    background-color: rgba(255, 255, 255, 0.16);
    width: 1px;
    height: 85px;
}

@media (max-width: 1399px) {
    .header-5 .header-right .head-line {
        display: none;
    }
}

.header-5 .header-right .head-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-5 .header-right .head-right .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.header-5 .header-right .head-right .contact-item .icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    color: var(--white);
    font-size: 16px;
}

.header-5 .header-right .head-right .contact-item .content span {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.header-5 .header-right .head-right .contact-item .content p {
    font-size: 18px;
    font-weight: 700;
}

.header-5 .header-right .head-right .contact-item .content p a {
    color: var(--white);
}

.header-6 {
    background-color: var(--white);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
}

.header-6 .container {
    max-width: 1780px;
}

.header-6 .sidebar__toggle span {
    background-color: var(--header);
}

.header-6 .sidebar__toggle span:last-child,
.header-6 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-6 .sidebar__toggle:hover span {
    width: 100%;
}

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

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

.header-6 .header-main .main-menu ul li .submenu {
    color: #16333B;
}

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

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

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

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

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

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

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

.header-6 .header-main .main-menu ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
}

.header-6 .search-toggler {
    color: var(--header) !important;
}

.header-6 .theme-btn {
    border: 1px solid #577D7D !important;
}

.header-6 .theme-btn .btn-title {
    color: var(--header);
}

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

.header-9 .sidebar__toggle span {
    background-color: var(--header);
}

.header-9 .sidebar__toggle span:last-child,
.header-9 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-9 .sidebar__toggle:hover span {
    width: 100%;
}

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

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

.header-9 .header-main .main-menu ul li .submenu {
    color: #16333B;
}

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

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

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

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

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

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

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

.header-9 .header-main .main-menu ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
}

.header-9 .search-toggler {
    color: var(--header) !important;
}

.header-9 .theme-btn {
    border: 1px solid #577D7D !important;
}

.header-9 .theme-btn .btn-title {
    color: var(--header);
}

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

.sticky.header-2 {
    box-shadow: none;
}

.sticky.header-6 {
    width: initial;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 0;
}

.sticky.header-9 {
    background-color: var(--white);
}

.offcanvas__info {
    background: var(--header) none repeat scroll 0 0;
    position: fixed;
    right: 0;
    top: 0;
    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;
    top: 15px;
    width: 470px;
    height: calc(100% - 30px);
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
    border-radius: 12px;
}

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

.offcanvas__info.info-open {
    opacity: 1;
    transform: translateX(-15px);
}

.offcanvas__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    overflow: auto;
    height: 100%;
}

.offcanvas__wrapper .offcanvas__top {
    margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__logo img {
    width: 190px;
}

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

.offcanvas__wrapper .offcanvas__close {
    color: var(--theme);
    display: inline-block;
    font-size: 35px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

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

.offcanvas__wrapper .offcanvas__close:hover {
    transform: rotate(90deg);
}

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

.offcanvas__wrapper .text {
    color: #C1D2CE;
    font-size: 15px;
}

.offcanvas__wrapper .off-contact-info {
    margin-top: 30px;
}

.offcanvas__wrapper .off-contact-info .info-title {
    font-size: 24px;
    color: var(--white);
    font-family: "Mona Sans", sans-serif;
    font-weight: 700;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .info-title {
        font-size: 20px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details {
    margin-top: 14px;
}

.offcanvas__wrapper .off-contact-info .contact-details .sub-info {
    color: #C1D2CE;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .contact-details .sub-info {
        font-size: 14px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details p {
    color: var(--white);
    font-family: "Mona Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .contact-details p {
        font-size: 15px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details p a {
    color: var(--white);
}

.offcanvas__wrapper .social-icon-list {
    margin-top: 30px;
}

.offcanvas__wrapper .social-icon-list .follow-title {
    font-size: 24px;
    color: var(--white);
    font-family: "Mona Sans", sans-serif;
    font-weight: 700;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .social-icon-list .follow-title {
        font-size: 20px;
    }
}

.offcanvas__wrapper .social-icon-list .social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.offcanvas__wrapper .social-icon-list .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(193, 210, 206, 0.0705882353);
    color: var(--white);
    font-size: 14px;
}

.offcanvas__wrapper .social-icon-list .social-icon a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 99999;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

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

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

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

.breadcrumb-wrapper {
    position: relative;
    text-align: center;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.38);
}

.breadcrumb-wrapper .page-heading {
    padding: 165px 0 40px;
    position: relative;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding-top: 100px;
    }
}

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

.breadcrumb-wrapper .page-heading .breadcrumb-list {
    display: inline-flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.29);
    border-radius: 80px;
    padding: 12px 20px;
    line-height: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
}

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

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

.breadcrumb-wrapper .page-heading .breadcrumb-list li i {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-list {
        justify-content: center;
        flex-wrap: wrap;
    }
    .breadcrumb-wrapper .page-heading .breadcrumb-list li{
        font-size: 14px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 46px;
    font-weight: 600;
    color: var(--white);
    font-family: "Mona Sans", sans-serif;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-title {
        font-size: 55px;
    }
}

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

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

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

.error-items .thumb {
    max-width: 795px;
    margin: 0 auto;
}

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

.error-items .content {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: center;
}

.error-items .content h2 {
    font-size: 55px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .error-items .content h2 {
        font-size: 45px;
    }
}

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

.error-items .content .theme-btn {
    border: 1px solid transparent;
    margin-top: 40px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #FBF3E6;
    border-radius: 5px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 0;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.ripple {
    position: relative;
}

.ripple::before,
.ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(29, 139, 138, 0.6);
    -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;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.brand-slide-element {
    width: auto;
    display: inline-block;
}

.container-2 {
    max-width: 1320px;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.text_invert>div {
    background-image: linear-gradient(to right, rgb(137, 137, 137) 50%, rgb(137, 137, 137) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.text_invert-2>div {
    background-image: linear-gradient(to right, rgb(25, 42, 25) 50%, rgb(137, 137, 137) 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.mt-15 {
    margin-top: 15px;
}

.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);
    width: 66px !important;
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--header);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 6px;
    background: var(--white);
    color: var(--header);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
    text-transform: capitalize;
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

.pt-35 {
    padding-top: 35px !important;
}

.swiper-dot {
    position: relative;
}

.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background-color: #E6E8EB;
    opacity: 1;
    border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 5px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme);
    transition: 0.6s;
    position: relative;
}

/* ================================
   Split Text Styles
================================ */

.split-title .word {
    display: inline-block;
    white-space: nowrap;
}

/* char animation */

.split-title .char {
    display: inline-block;
    transform-origin: left center;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

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

.hero-section-1 .marquee-section-2 {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 99;
}

.hero-1 {
    position: relative;
    z-index: 99;
}

.hero-1 .hero-shape-1 {
    position: absolute;
    right: 200px;
    bottom: 136px;
    z-index: 9;
}

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

.hero-1 .array-button {
    display: grid;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 99;
    position: absolute;
    gap: 12px;
}

.hero-1 .array-button .array-prev,
.hero-1 .array-button .array-next {
    width: 55px;
    height: 148px;
    line-height: 148px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
}

.hero-1 .array-button .array-prev:hover,
.hero-1 .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

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

.hero-1 .social-icon {
    position: absolute;
    top: 50%;
    left: 75px;
    z-index: 9;
    transform: translateY(-50%);
    gap: 10px;
}

@media (max-width: 1600px) {
    .hero-1 .social-icon {
        left: 15px;
    }
}

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

.hero-1 .social-icon .line {
    width: 1px;
    height: 87px;
    background: var(--white);
    transform: rotate(0deg);
    margin-left: 23px;
    margin-top: 0;
    margin-bottom: 15px;
}

.hero-1 .social-icon span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    transform: rotate(-90deg);
    margin-left: -10px;
    display: inline-block;
    margin-top: 45px;
}

.hero-1 .social-icon a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.17);
    color: var(--white);
    position: relative;
    z-index: 9;
}

.hero-1 .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.hero-1 .swiper-slide.swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.hero-1 .swiper-slide.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2000ms ease;
}

.hero-1 .swiper-slide.swiper-slide-active .hero-button {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2000ms ease;
}

.hero-1 .hero-height {
    padding: 120px 0 120px;
}

@media (max-width: 1399px) {
    .hero-1 .hero-height {
        padding-top: 210px;
        padding-bottom: 220px;
    }
}

@media (max-width: 1199px) {
    .hero-1 .hero-height {
        padding-top: 190px;
        padding-bottom: 200px;
    }
}

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

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

@media (max-width: 575px) {
    .hero-1 .hero-height {
        padding: 150px 0 180px;
    }
}

.hero-1 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}

.hero-1 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(266.83deg, rgba(12, 30, 33, 0.01) 2.32%, rgba(12, 30, 33, 0.71) 98.31%);
}

.hero-1 .hero-content {
    position: relative;
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(-150px);
    margin-left: -148px;
}

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

@media (max-width: 1199px) {
    .hero-1 .hero-content {
        text-align: center;
    }
}

.hero-1 .hero-content h1 {
    color: var(--white);
    margin-top: 20px;
    font-size: 100px;
    font-weight: 800;
    max-width: 813px;
}

@media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
        margin: 20px auto 0;
    }
}

.hero-1 .hero-content h1 span {
    font-weight: 400;
}

.hero-1 .hero-content h1 b {
    color: #A8B7B8;
}

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

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

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

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

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

.hero-1 .hero-content p {
    color: var(--white);
    margin-top: 30px;
    max-width: 545px;
}

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

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

.hero-1 .hero-button {
    margin-top: 48px;
    transform: translateY(150px);
    opacity: 0;
    position: relative;
    z-index: 9;
    margin-left: -148px;
}

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

@media (max-width: 1199px) {
    .hero-1 .hero-button {
        margin: 40px auto 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-1 .hero-button {
        margin-top: 30px;
    }
}

.hero-2 {
    padding: 160px 0 0;
    position: relative;
    z-index: 9;
    background-color: var(--theme);
    overflow: hidden;
}

.hero-2 .social-circle {
    position: absolute;
    width: 670px;
    height: 615px;
    border-radius: 50%;
    border: 102px solid rgba(255, 255, 255, 0.17);
    top: 50%;
    transform: translateY(-50%);
    right: -20%;
}

@media (max-width: 1899px) {
    .hero-2 .social-circle {
        display: none;
    }
}

.hero-2 .social-circle .social-text {
    color: var(--white);
    letter-spacing: 0.59em;
    font-size: 18px;
    font-weight: 600;
    font-family: "Mona Sans", sans-serif;
    transform: rotate(-90deg) translateX(-50%);
    display: inline-block;
    top: 21%;
    position: absolute;
    left: 15px;
}

.hero-2 .social-circle .s-icon-1 {
    border: 1.5px solid var(--white);
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    position: absolute;
    left: 24%;
    top: -14%;
}

.hero-2 .social-circle .s-icon-1:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: var(--white);
}

.hero-2 .social-circle .s-icon-2 {
    border: 1.5px solid var(--white);
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    position: absolute;
    left: -9%;
    top: 18%;
}

.hero-2 .social-circle .s-icon-2:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: var(--white);
}

.hero-2 .social-circle .s-icon-3 {
    border: 1.5px solid var(--white);
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    position: absolute;
    left: -13%;
    top: 65%;
}

.hero-2 .social-circle .s-icon-3:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: var(--white);
}

.hero-2 .social-circle .s-icon-4 {
    border: 1.5px solid var(--white);
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    position: absolute;
    left: 24%;
    bottom: -60px;
}

.hero-2 .social-circle .s-icon-4:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: var(--white);
}

.hero-2 .hero-shape2 {
    position: absolute;
    left: 0;
    bottom: 180px;
    opacity: 0.4;
}

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

.hero-2 .hero-shape3 {
    position: absolute;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

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

.hero-2 .hero-content {
    margin-left: -156px;
    text-align: center;
    margin-top: -100px;
    position: relative;
    z-index: 8;
}

@media (max-width: 1600px) {
    .hero-2 .hero-content {
        margin-left: -80px;
    }
}

@media (max-width: 1199px) {
    .hero-2 .hero-content {
        margin-top: 0;
        margin-left: 0;
    }
}

.hero-2 .hero-content h1 {
    color: var(--white);
    font-size: 100px;
    line-height: 106%;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

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

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

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

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

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

.hero-2 .hero-content h1 span {
    font-weight: 400;
}

.hero-2 .hero-content .hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 70px;
}

@media (max-width: 1199px) {
    .hero-2 .hero-content .hero-info {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .hero-2 .hero-content .hero-info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-2 .hero-content .hero-info p {
    color: var(--white);
    text-align: left;
}

@media (max-width: 575px) {
    .hero-2 .hero-content .hero-info p {
        text-align: center;
    }
}

.hero-2 .hero-content .hero-info p br {
    display: block;
}

.hero-2 .hero-shape {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .hero-2 .hero-image {
        text-align: center;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-2 .hero-image img {
        height: 100%;
        width: 100%;
    }
}

.hero-3 {
    padding: 250px 0 320px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .hero-3 {
        padding-top: 200px;
        padding-bottom: 250px;
    }
}

@media (max-width: 1199px) {
    .hero-3 {
        padding-top: 180px;
        padding-bottom: 200px;
    }
}

.hero-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.58);
}

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

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

.hero-3 .hero-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .hero-3 .hero-shape-2 {
        display: none;
    }
}

.hero-3 .hero-shape-3 {
    position: absolute;
    top: 48%;
    right: 37px;
    z-index: -1;
}

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

.hero-3 .hero-shape-4 {
    position: absolute;
    bottom: 130px;
    right: 85px;
    z-index: -1;
}

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

.hero-3 .hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
}

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

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

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

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

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

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

.hero-3 .hero-content h1 b {
    font-weight: 900;
    margin-left: 550px;
}

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

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

.hero-3 .hero-text {
    position: absolute;
    bottom: 170px;
    right: 200px;
    max-width: 415px;
    color: var(--white);
}

@media (max-width: 1399px) {
    .hero-3 .hero-text {
        position: relative;
        bottom: initial;
        right: initial;
        margin: 0 auto;
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .hero-3 .hero-text {
        font-size: 15px;
        margin-top: 20px;
    }
}

.hero-3 .circle-box {
    width: 156px;
    height: 156px;
    line-height: 156px;
    background-color: var(--theme);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    z-index: 11;
    top: 23%;
    right: 23%;
}

@media (max-width: 1899px) {
    .hero-3 .circle-box {
        top: 21%;
        right: 15%;
    }
}

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

.hero-3 .circle-box .text-image img {
    width: initial;
    height: initial;
    animation: cir36 10s linear infinite;
}

.hero-3 .circle-box .logo-icon {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-section-4 {
    background-color: rgb(2, 36, 35);
    padding: 50px;
    padding-top: 100px;
}

@media (max-width: 1899px) {
    .hero-section-4 {
        padding: 40px;
        padding-top: 120px;
    }
}

@media (max-width: 1600px) {
    .hero-section-4 {
        padding: 32px;
        padding-top: 120px;
    }
}

@media (max-width: 1399px) {
    .hero-section-4 {
        padding: 25px;
        padding-top: 110px;
    }
}

@media (max-width: 1199px) {
    .hero-section-4 {
        padding: 20px;
        padding-top: 80px;
    }
}

@media (max-width: 470px) {
    .hero-section-4 {
        padding: 0 16px;
        padding-top: 80px;
    }
}

.hero-4 {
    position: relative;
    z-index: 9;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .hero-4 {
        padding-bottom: 20px;
        padding-top: 60px;
    }
}

.hero-4 .hero-shape-1 {
    position: absolute;
    top: 40%;
    left: 47%;
}

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

.hero-4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.36);
    z-index: -1;
    border-radius: 12px;
}

.hero-4 .hero-left-content {
    padding-left: 80px;
    padding-bottom: 100px;
    max-width: 843px;
}

@media (max-width: 1600px) {
    .hero-4 .hero-left-content {
        padding-left: 45px;
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-left-content {
        padding-bottom: 0;
        text-align: center;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-4 .hero-left-content {
        padding: 0 25px;
    }
}

.hero-4 .hero-left-content h1 {
    font-size: 76px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 110%;
}

@media (max-width: 1600px) {
    .hero-4 .hero-left-content h1 {
        font-size: 65px;
    }
}

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

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

@media (max-width: 470px) {
    .hero-4 .hero-left-content h1 {
        font-size: 36px;
    }
}

.hero-4 .hero-left-content h1 b {
    font-weight: 900;
}

.hero-4 .hero-left-content p {
    color: var(--white);
    max-width: 526px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .hero-4 .hero-left-content p {
        text-align: center;
        margin: 20px auto 0;
    }
}

.hero-4 .hero-right-content {
    background-color: var(--white);
    border-radius: 12px;
    margin: 12px;
    max-width: 745px;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .hero-4 .hero-right-content {
        max-width: initial;
        margin-left: initial;
    }
}

@media (max-width: 991px) {
    .hero-4 .hero-right-content {
        margin: 0 20px;
    }
}

.hero-4 .hero-right-content .contact-top-area {
    background-color: var(--theme);
    border-radius: 12px 12px 32px 32px;
    padding: 60px 50px;
}

@media (max-width: 1199px) {
    .hero-4 .hero-right-content .contact-top-area {
        padding: 45px 40px;
    }
    .hero-4 .hero-right-content .contact-top-area br {
        display: none !important;
    }
}

.hero-4 .hero-right-content .contact-top-area .section-title .hero-text {
    font-size: 15px;
}

.hero-4 .hero-right-content .hero-contact-form-box {
    padding: 55px 50px;
}

@media (max-width: 1199px) {
    .hero-4 .hero-right-content .hero-contact-form-box {
        padding: 45px 40px;
    }
}

@media (max-width: 470px) {
    .hero-4 .hero-right-content .hero-contact-form-box {
        padding: 28px 22px;
    }
}

.hero-4 .hero-right-content .hero-contact-form-box .form-clt input,
.hero-4 .hero-right-content .hero-contact-form-box .form-clt textarea {
    line-height: 1;
    padding: 18px 20px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    border-radius: 6px;
    border: 1px solid rgba(2, 36, 35, 0.24);
    background: rgba(236, 240, 240, 0.48);
}

.hero-4 .hero-right-content .hero-contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.hero-4 .hero-right-content .hero-contact-form-box .form-clt .single-select {
    line-height: 1;
    padding: 18px 20px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
    border-radius: 6px;
    border: 1px solid rgba(2, 36, 35, 0.24);
    background: rgba(236, 240, 240, 0.48);
}

.hero-4 .hero-right-content .hero-contact-form-box .form-clt .single-select .list {
    width: 100%;
}

.hero-5 {
    padding: 250px 0 0;
    position: relative;
    background-position: bottom !important;
}

@media (max-width: 1199px) {
    .hero-5 {
        padding-top: 200px;
    }
}

@media (max-width: 991px) {
    .hero-5 {
        padding-top: 180px;
    }
}

@media (max-width: 575px) {
    .hero-5 {
        padding-top: 140px;
    }
}

.hero-5 .hero-fram-1 {
    position: absolute;
    top: 45%;
    left: 20px;
    z-index: 4;
}

@media (max-width: 1399px) {
    .hero-5 .hero-fram-1 {
        display: none;
    }
}

.hero-5 .hero-fram-2 {
    position: absolute;
    top: 140px;
    right: 180px;
}

@media (max-width: 1600px) {
    .hero-5 .hero-fram-2 {
        right: 30px;
        max-width: 200px;
    }
    .hero-5 .hero-fram-2 img {
        width: 100%;
        height: 100%;
    }
}

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

.hero-5 .top-shape {
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
}

.hero-5 .left-shape {
    position: absolute;
    top: 60px;
    left: 0;
}

@media (max-width: 1199px) {
    .hero-5 .left-shape {
        display: none;
    }
}

.hero-5 .circle-shape-1 {
    position: absolute;
    top: 0;
    left: -80px;
}

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

.hero-5 .circle-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .hero-5 .circle-shape-2 {
        display: none;
    }
}

.hero-5 .hero-content {
    text-align: center;
    margin-bottom: 500px;
}

.hero-5 .hero-content h1 {
    color: var(--white);
    font-size: 76px;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.hero-5 .hero-content h1 b {
    font-weight: 700;
}

.hero-5 .hero-content p {
    color: var(--white);
    margin-top: 30px;
}

@media (max-width: 767px) {
    .hero-5 .hero-content p {
        margin-top: 22px;
    }
}

.hero-5 .hero-content .hero-btn {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .hero-5 .hero-content .hero-btn {
        margin-top: 22px;
    }
}

.hero-section-5 {
    position: relative;
    z-index: 9;
}

.hero-section-5 .hero-image {
    text-align: center;
    position: relative;
    max-width: 1636px;
    margin: -380px auto 0;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .hero-section-5 .hero-image {
        margin-top: -430px;
    }
}

.hero-section-5 .hero-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.26);
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .hero-section-5 .hero-image {
        height: 550px;
    }
}

@media (max-width: 991px) {
    .hero-section-5 .hero-image {
        height: 450px;
    }
}

.hero-section-5 .hero-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section-5 .hero-image .hero-counter-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 40px 45px;
    border: 5px solid var(--white);
}

@media (max-width: 991px) {
    .hero-section-5 .hero-image .hero-counter-box {
        display: none;
    }
}

.hero-section-5 .hero-image .hero-counter-box h2 {
    color: var(--white);
}

.hero-section-5 .hero-image .hero-counter-box p {
    color: var(--white);
    margin-top: 8px;
    font-size: 18px;
    font-weight: 500;
}

.hero-section-5 .hero-image .hero-counter-box .star {
    color: var(--white);
    margin-top: 5px;
}

.hero-section-6 {
    position: relative;
    padding: 20px;
    margin-top: 110px;
}

@media (max-width: 1399px) {
    .hero-section-6 {
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .hero-section-6 {
        padding: 10px;
    }
}

.hero-section-6 .dotted-shape {
    position: absolute;
    top: 12%;
    right: 2%;
}

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

.hero-6 {
    position: relative;
    z-index: 9;
    border-radius: 12px;
    padding: 130px 0;
    padding-left: 155px;
}

@media (max-width: 1899px) {
    .hero-6 {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    .hero-6 {
        padding: 90px 0;
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .hero-6 {
        padding: 70px 0;
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .hero-6 {
        padding: 70px 20px;
        padding-left: 20px;
    }
}

@media (max-width: 575px) {
    .hero-6 {
        padding: 60px 15px;
        border-radius: 10px;
    }
}

@media (max-width: 500px) {
    .hero-6 {
        padding: 50px 12px;
    }
}

.hero-6::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.65);
    z-index: -1;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .hero-6 .hero-content {
        text-align: center;
    }
}

.hero-6 .hero-content .hero-title {
    font-size: 66px;
    font-weight: 500;
    color: var(--white);
    line-height: 113%;
    margin-bottom: 25px;
    display: inline-block;
}

@media (max-width: 1399px) {
    .hero-6 .hero-content .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 1199px) {
    .hero-6 .hero-content .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-6 .hero-content .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-6 .hero-content .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .hero-6 .hero-content .hero-title {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .hero-6 .hero-content .hero-title {
        font-size: 22px;
        line-height: 125%;
    }
}

.hero-6 .hero-content h1 {
    font-weight: 600;
    font-size: 276px;
    letter-spacing: -19px;
    color: var(--white);
    margin-top: 40px;
}

@media (max-width: 1899px) {
    .hero-6 .hero-content h1 {
        font-size: 220px;
        letter-spacing: -15px;
    }
}

@media (max-width: 1399px) {
    .hero-6 .hero-content h1 {
        font-size: 200px;
        letter-spacing: -12px;
    }
}

@media (max-width: 1199px) {
    .hero-6 .hero-content h1 {
        font-size: 170px;
        letter-spacing: -10px;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .hero-6 .hero-content h1 {
        font-size: 130px;
        letter-spacing: -7px;
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .hero-6 .hero-content h1 {
        font-size: 90px;
        letter-spacing: -5px;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .hero-6 .hero-content h1 {
        font-size: 68px;
        letter-spacing: -3px;
        margin-top: 15px;
    }
}

@media (max-width: 500px) {
    .hero-6 .hero-content h1 {
        font-size: 54px;
        letter-spacing: -2px;
        line-height: 112%;
    }
}

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

.hero-6 .hero-counter-wrap {
    display: flex;
    align-items: center;
    gap: 195px;
    margin-top: 90px;
}

@media (max-width: 1399px) {
    .hero-6 .hero-counter-wrap {
        gap: 120px;
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-6 .hero-counter-wrap {
        gap: 80px;
        margin-top: 50px;
    }
}

@media (max-width: 991px) {
    .hero-6 .hero-counter-wrap {
        gap: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-6 .hero-counter-wrap {
        gap: 30px;
        margin-top: 35px;
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-6 .hero-counter-wrap {
        gap: 20px;
    }
}

.hero-6 .hero-counter-wrap .counter-box-items h2 {
    font-size: 78px;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-6 .hero-counter-wrap .counter-box-items h2 {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .hero-6 .hero-counter-wrap .counter-box-items h2 {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-6 .hero-counter-wrap .counter-box-items h2 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-6 .hero-counter-wrap .counter-box-items h2 {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .hero-6 .hero-counter-wrap .counter-box-items h2 {
        font-size: 28px;
    }
}

.hero-6 .hero-counter-wrap .counter-box-items p {
    color: var(--white);
    font-size: 18px;
}

@media (max-width: 575px) {
    .hero-6 .hero-counter-wrap .counter-box-items p {
        font-size: 16px;
    }
}

.hero-6 .hero-counter-wrap .hero-text {
    color: var(--white);
    font-size: 18px;
    max-width: 415px;
}

@media (max-width: 575px) {
    .hero-6 .hero-counter-wrap .hero-text {
        font-size: 16px;
    }
}

.hero-7 {
    padding: 320px 0 60px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1399px) {
    .hero-7 {
        padding: 320px 0 55px;
    }
}

@media (max-width: 1199px) {
    .hero-7 {
        padding: 260px 0 50px;
    }
}

@media (max-width: 991px) {
    .hero-7 {
        padding: 220px 0 45px;
    }
}

@media (max-width: 767px) {
    .hero-7 {
        padding: 210px 0 40px;
    }
}

@media (max-width: 575px) {
    .hero-7 {
        padding: 220px 0 35px;
    }
}

@media (max-width: 500px) {
    .hero-7 {
        padding: 180px 0 30px;
    }
}

.hero-7::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.58);
}

.hero-7 .hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
}

.hero-7 .hero-content .section-title .sub-title {
    font-size: 20px;
    color: var(--white);
}

@media (max-width: 575px) {
    .hero-7 .hero-content .section-title .sub-title {
        font-size: 18px;
    }
}

.hero-7 .hero-content h1 {
    font-size: 92px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 50px;
}

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

@media (max-width: 1199px) {
    .hero-7 .hero-content h1 {
        font-size: 68px;
    }
}

@media (max-width: 991px) {
    .hero-7 .hero-content h1 {
        font-size: 56px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .hero-7 .hero-content h1 {
        font-size: 44px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .hero-7 .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }
}

@media (max-width: 450px) {
    .hero-7 .hero-content h1 {
        font-size: 28px;
    }
}

.hero-7 .hero-bottom-cards {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 100px;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hero-7 .hero-bottom-cards {
        flex-wrap: wrap;
    }
}

.hero-7 .hero-bottom-cards .card-items {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 392px;
    gap: 20px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .hero-7 .hero-bottom-cards .card-items {
        max-width: 350px;
    }
}

.hero-7 .hero-bottom-cards .card-items.active {
    background-color: var(--theme);
}

.hero-7 .hero-bottom-cards .card-items .thumb img {
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .hero-7 .hero-bottom-cards .card-items .thumb img {
        width: 100%;
        height: 100%;
    }
}

.hero-7 .hero-bottom-cards .card-items .content .title {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    line-height: 134%;
    letter-spacing: -0.3px;
}

@media (max-width: 991px) {
    .hero-7 .hero-bottom-cards .card-items .content .title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .hero-7 .hero-bottom-cards .card-items .content .title {
        font-size: 20px;
    }
}

.hero-7 .hero-bottom-cards .card-items .arrow-btn {
    border: 1px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: all 0.4s ease-in-out;
}

.hero-7 .hero-bottom-cards .card-items .arrow-btn:hover {
    background-color: var(--white);
    color: var(--theme);
}

.hero-7 .hero-bottom-cards .card-items:hover {
    background-color: var(--theme);
}

.hero-section-8 {
    position: relative;
    padding: 20px;
}

@media (max-width: 1399px) {
    .hero-section-8 {
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .hero-section-8 {
        padding: 10px;
    }
}

.hero-section-8 .dotted-shape {
    position: absolute;
    top: 12%;
    right: 2%;
}

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

.hero-8 {
    position: relative;
    z-index: 9;
    border-radius: 12px;
    padding: 250px 150px 190px;
    margin-top: 110px;
}

@media (max-width: 1600px) {
    .hero-8 {
        padding: 220px 120px 170px;
    }
}

@media (max-width: 1399px) {
    .hero-8 {
        padding: 190px 100px 150px;
    }
}

@media (max-width: 1899px) {
    .hero-8 {
        padding: 230px 80px 135px;
    }
}

@media (max-width: 1199px) {
    .hero-8 {
        padding: 210px 60px 110px;
    }
}

@media (max-width: 991px) {
    .hero-8 {
        padding: 180px 40px 95px;
    }
}

@media (max-width: 767px) {
    .hero-8 {
        padding: 150px 30px 80px;
    }
}

@media (max-width: 575px) {
    .hero-8 {
        padding: 130px 20px 65px;
    }
}

@media (max-width: 500px) {
    .hero-8 {
        padding: 120px 15px 50px;
    }
}

.hero-8::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(3, 40, 40, 0) 0%, rgba(2, 36, 35, 0.5019607843) 50%, rgba(2, 36, 35, 0.7490196078) 100%);
    z-index: -1;
    border-radius: 12px;
}

.hero-8 .hero-content-style-8 {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .hero-8 .hero-content-style-8 {
        flex-wrap: wrap;
    }
}

.hero-8 .hero-content-style-8 .content .client-phn-area {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 13px 20px;
    border-radius: 12px;
    transform: rotate(-14.5deg);
    margin-bottom: 150px;
    max-width: 270px;
}

@media (max-width: 1600px) {
    .hero-8 .hero-content-style-8 .content .client-phn-area {
        margin-bottom: 130px;
    }
}

@media (max-width: 1399px) {
    .hero-8 .hero-content-style-8 .content .client-phn-area {
        margin-bottom: 115px;
    }
}

@media (max-width: 1199px) {
    .hero-8 .hero-content-style-8 .content .client-phn-area {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .hero-8 .hero-content-style-8 .content .client-phn-area {
        margin-bottom: 50px;
        transform: inherit;
    }
}

.hero-8 .hero-content-style-8 .content .client-phn-area .phone-icon {
    width: 57px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
}

.hero-8 .hero-content-style-8 .content .client-phn-area .client-content p {
    font-size: 18px;
    margin-bottom: 4px;
}

.hero-8 .hero-content-style-8 .content .client-phn-area .client-content a {
    font-size: 18px;
    font-weight: 600;
}

.hero-8 .hero-content-style-8 .content .hero-title {
    font-size: 76px;
    font-weight: 500;
    color: var(--white);
    max-width: 670px;
    line-height: 107%;
    display: inline-block;
}

@media (max-width: 1399px) {
    .hero-8 .hero-content-style-8 .content .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 1199px) {
    .hero-8 .hero-content-style-8 .content .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-8 .hero-content-style-8 .content .hero-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero-8 .hero-content-style-8 .content .hero-title {
        margin-bottom: 15px;
        font-size: 40px;
    }
}

.hero-8 .hero-content-style-8 .content .hero-button-area {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .hero-8 .hero-content-style-8 .content .hero-button-area {
        flex-wrap: wrap;
        margin-top: 30px;
    }
}

.hero-8 .hero-content-style-8 .content .hero-button-area .bg-white-style {
    background-color: var(--white);
    color: var(--theme);
}

.hero-8 .hero-content-style-8 .content .hero-button-area .bg-white-style .btn-arrow-right,
.hero-8 .hero-content-style-8 .content .hero-button-area .bg-white-style .btn-arrow-left {
    background-color: var(--theme);
    color: var(--white);
}

.hero-8 .hero-content-style-8 .content .hero-button-area .bg-white-style .btn-title {
    color: var(--header);
}

.hero-8 .hero-content-style-8 .hero-counter-wrap {
    display: flex;
    align-items: center;
    gap: 90px;
}

@media (max-width: 1399px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap {
        gap: 60px;
    }
}

@media (max-width: 1199px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap {
        gap: 40px;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap {
        gap: 25px;
    }
}

.hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items .star {
    color: #FAC02E;
    margin-bottom: 10px;
}

.hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
    font-size: 76px;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
        font-size: 62px;
    }
}

@media (max-width: 991px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 span {
        font-size: 28px;
    }
}

.hero-8 .hero-content-style-8 .hero-counter-wrap .counter-box-items h2 .number {
    font-size: 40px;
    font-weight: 500;
    color: var(--white);
    margin-left: 10px;
}

.hero-8 .hero-content-style-8 .hero-counter-wrap .client-img {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 35px;
}

.hero-8 .hero-content-style-8 .hero-counter-wrap .client-img p {
    font-size: 14px;
    color: var(--white);
    margin-top: 10px;
    line-height: 1;
}

.hero-9 {
    position: relative;
    z-index: 99;
}

.hero-9 .dotted-shape {
    position: absolute;
    right: 75px;
    top: 40px;
    z-index: 9;
}

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

.hero-9 .hero-shape-9 {
    position: absolute;
    right: 300px;
    bottom: 105px;
    z-index: 9;
}

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

.hero-9 .social-icon {
    position: absolute;
    top: 50%;
    right: 75px;
    z-index: 9;
    transform: translateY(-50%);
    gap: 10px;
}

@media (max-width: 1600px) {
    .hero-9 .social-icon {
        right: 25px;
    }
}

@media (max-width: 1199px) {
    .hero-9 .social-icon {
        display: none !important;
    }
}

.hero-9 .social-icon .line {
    width: 1px;
    height: 87px;
    background: var(--white);
    transform: rotate(0deg);
    margin-left: 23px;
    margin-top: 0;
    margin-bottom: 15px;
}

.hero-9 .social-icon span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    transform: rotate(-90deg);
    margin-left: -10px;
    display: inline-block;
    margin-top: 45px;
}

.hero-9 .social-icon a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.17);
    color: var(--white);
    position: relative;
    z-index: 9;
}

.hero-9 .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.hero-9 .hero-height {
    position: relative;
    padding: 255px 0;
    z-index: 2;
}

@media (max-width: 1399px) {
    .hero-9 .hero-height {
        padding: 240px 0 180px;
    }
}

@media (max-width: 991px) {
    .hero-9 .hero-height {
        padding: 230px 0 180px;
    }
}

@media (max-width: 767px) {
    .hero-9 .hero-height {
        padding: 200px 0 150px;
    }
}

@media (max-width: 575px) {
    .hero-9 .hero-height {
        padding: 180px 0 140px;
    }
}

.hero-9 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transform: scale(1);
}

.hero-9 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(262.24deg, rgba(2, 36, 35, 0.168) 5.96%, rgba(2, 36, 35, 0.6) 59.2%);
}

.hero-9 .hero-content {
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .hero-9 .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

.hero-9 .hero-content h1 {
    color: var(--white);
    font-size: 140px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -3.3px;
    margin-left: -150px;
    line-height: 1.1;
}

.hero-9 .hero-content h1 span {
    font-weight: 600;
    font-size: 110px;
    line-height: inherit;
}

@media (max-width: 1600px) {
    .hero-9 .hero-content h1 {
        font-size: 120px;
    }
    .hero-9 .hero-content h1 span {
        font-size: 95px;
    }
}

@media (max-width: 1399px) {
    .hero-9 .hero-content h1 {
        font-size: 105px;
        margin-left: 0;
    }
    .hero-9 .hero-content h1 span {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .hero-9 .hero-content h1 {
        font-size: 88px;
        text-align: center;
    }
    .hero-9 .hero-content h1 span {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .hero-9 .hero-content h1 {
        font-size: 72px;
    }
    .hero-9 .hero-content h1 span {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-9 .hero-content h1 {
        font-size: 58px;
    }
    .hero-9 .hero-content h1 span {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .hero-9 .hero-content h1 {
        font-size: 46px;
        letter-spacing: -1px;
        line-height: 1.2;
    }
    .hero-9 .hero-content h1 span {
        font-size: 38px;
    }
    .hero-9 .hero-content h1 br {
        display: block;
    }
}

@media (max-width: 470px) {
    .hero-9 .hero-content h1 {
        font-size: 38px;
    }
    .hero-9 .hero-content h1 span {
        font-size: 30px;
    }
}

.hero-9 .hero-content p {
    color: var(--white);
    margin-top: 40px;
    max-width: 500px;
    font-size: 18px;
    position: relative;
    padding-left: 105px;
}

.hero-9 .hero-content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 78px;
    height: 1px;
    background-color: #D9D9D9;
}

@media (max-width: 1199px) {
    .hero-9 .hero-content p {
        margin: 28px auto 0;
        padding-left: 0;
    }
    .hero-9 .hero-content p::before {
        display: none;
    }
}

.hero-9 .hero-button {
    margin-top: 34px;
    margin-left: 105px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .hero-9 .hero-button {
        margin: 35px auto 0;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .hero-9 .hero-button {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-9 .hero-button {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .hero-9 .hero-button {
        margin-top: 20px;
    }
}

.hero-10 {
    position: relative;
    z-index: 9;
    padding-top: 290px;
    padding-left: 195px;
    padding-bottom: 0;
}

@media (max-width: 1899px) {
    .hero-10 {
        padding-left: 50px;
    }
}

@media (max-width: 1600px) {
    .hero-10 {
        padding-left: 40px;
    }
}

@media (max-width: 1399px) {
    .hero-10 {
        padding-left: 30px;
        padding-top: 270px;
    }
}

@media (max-width: 1199px) {
    .hero-10 {
        padding-left: 20px;
        padding-bottom: 170px;
        padding-top: 170px;
    }
}

.hero-10::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: linear-gradient(267.67deg, rgba(2, 36, 35, 0) 20.02%, rgba(2, 36, 35, 0.85) 76.49%);
}

@media (max-width: 1199px) {
    .hero-10 .hero-content {
        text-align: center;
    }
}

.hero-10 .hero-content .sub-title {
    font-size: 16px;
    font-weight: 600;
    font-family: "Mona Sans", sans-serif;
    color: var(--white);
}

.hero-10 .hero-content .sub-title img {
    margin-right: 10px;
}

.hero-10 .hero-content .title {
    font-size: 76px;
    font-weight: 500;
    color: var(--white);
    max-width: 843px;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .hero-10 .hero-content .title {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-10 .hero-content .title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .hero-10 .hero-content .title {
        font-size: 42px;
    }
}

.hero-10 .hero-content .theme-btn {
    margin-top: 50px;
}

.hero-10 .hero-bottom-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 200px;
}

@media (max-width: 1199px) {
    .hero-10 .hero-bottom-area {
        display: none;
    }
}

.hero-10 .hero-bottom-area .title-2 {
    font-weight: 600;
    font-size: 320px;
    line-height: 25%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

@media (max-width: 1899px) {
    .hero-10 .hero-bottom-area .title-2 {
        font-size: 280px;
    }
}

@media (max-width: 1600px) {
    .hero-10 .hero-bottom-area .title-2 {
        font-size: 230px;
    }
}

@media (max-width: 1399px) {
    .hero-10 .hero-bottom-area .title-2 {
        font-size: 200px;
    }
}

.hero-10 .hero-bottom-area .counter-items-area {
    background-color: var(--theme);
    padding: 78px 75px;
    display: inline-block;
    display: flex;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1600px) {
    .hero-10 .hero-bottom-area .counter-items-area {
        gap: 50px;
        padding: 50px;
    }
}

.hero-10 .hero-bottom-area .counter-items-area .counter-items h2 {
    color: var(--white);
}

.hero-10 .hero-bottom-area .counter-items-area .counter-items p {
    color: var(--white);
}

.hero-11 {
    position: relative;
    z-index: 99;
}

.hero-11 .array-button {
    display: grid;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 99;
    position: absolute;
    gap: 12px;
}

.hero-11 .array-button .array-prev,
.hero-11 .array-button .array-next {
    width: 55px;
    height: 148px;
    line-height: 148px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease-in-out;
}

.hero-11 .array-button .array-prev:hover,
.hero-11 .array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 1199px) {
    .hero-11 .array-button {
        display: none;
    }
}

.hero-11 .swiper-slide.swiper-slide-active .hero-bg {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* .hero-11 .swiper-slide.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2000ms ease;
} */

.hero-11 .swiper-slide.swiper-slide-active .hero-button {
    opacity: 1;
    transform: translatey(0px);
    transition: all 2000ms ease;
}

.hero-11 .hero-height {
    padding: 180px 0 80px;
}

@media (max-width: 1399px) {
    .hero-11 .hero-height {
        padding-top: 110px;
        padding-bottom: 120px;
    }
}

@media (max-width: 1199px) {
    .hero-11 .hero-height {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .hero-11 .hero-height {
        padding-top: 110px;
    }
}

@media (max-width: 767px) {
    .hero-11 .hero-height {
        padding-top: 190px;
    }
}

@media (max-width: 575px) {
    .hero-11 .hero-height {
        padding: 80px 0 40px;
    }
}

.hero-11 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
   
}

.hero-11 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(350deg, rgba(2, 36, 35, 0) 1.37%, #000000cc 20.9%);
}

.hero-11 .hero-content {
    position: relative;
     
    position: relative;
    
    margin-left: -148px;
}

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

@media (max-width: 1199px) {
    .hero-11 .hero-content {
        text-align: center;
    }
    .hero-11 .hero-content .sub-title {
        justify-content: center;
    }
}

.hero-11 .hero-content h1 {
    color: var(--white);
    margin-top: 20px;
    font-size: 76px;
    font-weight: 500;
    max-width: 813px;
}

@media (max-width: 1199px) {
    .hero-11 .hero-content h1 {
        margin: 20px auto 0;
    }
}

.hero-11 .hero-content h1 b {
    color: #fff;
    font-weight: 700;
}

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

    .hero-11 .hero-bg{
        background-position: center center;
    }
}

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

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

.hero-11 .hero-content p {
    color: var(--white);
    margin-top: 30px;
    max-width: 545px;
}

@media (max-width: 1199px) {
    .hero-11 .hero-content p {
        margin: 30px auto 0;
    }
}

@media (max-width: 767px) {
    .hero-11 .hero-content p {
        margin-top: 25px;
    }
}

.hero-11 .hero-button {
    margin-top: 48px;
    
    position: relative;
  
    margin-left: -148px;
}

@media (max-width: 1899px) {
    .hero-11 .hero-button {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .hero-11 .hero-button {
        margin: 40px auto 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-11 .hero-button {
        margin-top: 30px;
    }
}

.hero-12 {
    margin: 0 20px;
    position: relative;
    z-index: 9;
    padding-top: 174px;
    padding-left: 180px;
    padding-bottom: 150px;
    border-radius: 22px;
    margin-top: 130px;
}

@media (max-width: 1899px) {
    .hero-12 {
        padding-left: 60px;
    }
}

@media (max-width: 1600px) {
    .hero-12 {
        padding-left: 40px;
    }
}

@media (max-width: 1399px) {
    .hero-12 {
        padding-left: 30px;
    }
}

@media (max-width: 1199px) {
    .hero-12 {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .hero-12 {
        padding: 140px 0;
    }
}

.hero-12::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: linear-gradient(256.4deg, rgba(12, 30, 33, 0.01) -3.77%, rgba(12, 30, 33, 0.71) 65.57%);
}

@media (max-width: 991px) {
    .hero-12 .hero-content {
        text-align: center;
    }
}

.hero-12 .hero-content .title {
    font-size: 144px;
    font-weight: 500;
    color: var(--white);
    max-width: 1053px;
}

@media (max-width: 1399px) {
    .hero-12 .hero-content .title {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .hero-12 .hero-content .title {
        margin: 0 auto;
        text-align: center;
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .hero-12 .hero-content .title {
        font-size: 68px;
    }
}

@media (max-width: 575px) {
    .hero-12 .hero-content .title {
        font-size: 58px;
    }
}

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

.hero-12 .hero-content .theme-btn {
    margin-top: 60px;
}

@media (max-width: 991px) {
    .hero-12 .hero-content .theme-btn {
        margin-top: 40px;
    }
}

.hero-12 .hero-content .counter-area {
    display: flex;
    align-items: center;
    gap: 156px;
    margin-top: 150px;
}

@media (max-width: 991px) {
    .hero-12 .hero-content .counter-area {
        gap: 70px;
        justify-content: center;
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .hero-12 .hero-content .counter-area {
        margin-top: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-12 .hero-content .counter-area .counter-items h2 {
    font-size: 76px;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 767px) {
    .hero-12 .hero-content .counter-area .counter-items h2 {
        font-size: 60px;
    }
}

.hero-12 .hero-content .counter-area .counter-items p {
    color: var(--white);
}

.hero-12 .client-counter {
    position: absolute;
    bottom: 70px;
    right: 130px;
    padding: 34px 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(39.55px);
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .hero-12 .client-counter {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 991px) {
    .hero-12 .client-counter {
        display: none;
    }
}

.hero-12 .client-counter h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
}

.hero-12 .client-counter p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.hero-12 .client-counter .thumb {
    margin-top: 15px;
}

.hero-12 .client-counter .text {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-top: 20px;
    max-width: 190px;
    display: inline-block;
}

.marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
}

.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 .marquee-thumb {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
    .marquee .marquee-thumb {
        gap: 20px;
    }
}

.marquee .marquee-thumb .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.marquee .marquee-thumb .text {
    font-weight: 500;
    font-size: 100px;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    font-family: "Mona Sans", sans-serif;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
    .marquee .marquee-thumb .text {
        font-size: 60px;
    }
}

.marquee .marquee-thumb .text:hover {
    -webkit-text-stroke-width: initial;
    -webkit-text-stroke-color: initial;
    color: var(--white);
}

.marquee .marquee-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(29.05px);
    border-radius: 90px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee .marquee-icon .text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.marquee-section {
    padding: 30px 0;
    background-color: var(--theme);
}

.marquee-section-2 .marquee {
    gap: 10px;
}

.marquee-section-2 .marquee .marquee-group {
    gap: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

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

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

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

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

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

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
    border: none;
    font-family: "DM Sans", sans-serif;
}

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

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

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

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

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

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

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

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

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

.news-box-main-area {
    position: relative;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.news-box-main-area .news-box-items {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: all 0.45s ease-in-out;
}

@media (max-width: 1399px) {
    .news-box-main-area .news-box-items {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

.news-box-main-area .news-box-items::before {
    width: 100%;
    height: 100%;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(2, 36, 35, 0.25) 0%, rgba(2, 36, 35, 0.88) 100%);
    border-radius: 12px;
    position: absolute;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.news-box-main-area .news-box-items img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.news-box-main-area .news-box-items .post-date {
    width: 88px;
    height: 91px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(42px);
    position: absolute;
    z-index: 9;
    top: 16px;
    left: 16px;
}

.news-box-main-area .news-box-items .post-date .date {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    margin-top: 0;
    padding-top: 5px;
}

.news-box-main-area .news-box-items .post-date h4 {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    margin-top: 0;
    padding-top: 5px;
}

.news-box-main-area .news-box-items .post-date p {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

.news-box-main-area .news-box-items .content {
    position: absolute;
    z-index: 9;
    bottom: 40px;
    left: 30px;
    right: 30px;
}

@media (max-width: 1399px) {
    .news-box-main-area .news-box-items .content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

.news-box-main-area .news-box-items .content .post-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.news-box-main-area .news-box-items .content .post-list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.news-box-main-area .news-box-items .content .post-list li i {
    color: var(--white);
    margin-right: 4px;
}

.news-box-main-area .news-box-items .content h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 136%;
    margin-top: 10px;
}

.news-box-main-area .news-box-items .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-box-main-area .news-box-items .content h3 a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-box-main-area .news-hover-box-items {
    position: absolute;
    inset: 0;
    background-color: var(--theme);
    border-radius: 12px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.45s ease-in-out;
    z-index: 5;
}

@media (max-width: 1399px) {
    .news-box-main-area .news-hover-box-items {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.05);
    }
}

.news-box-main-area .news-hover-box-items .post-date {
    width: 88px;
    height: 91px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(42px);
}

.news-box-main-area .news-hover-box-items .post-date .date {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-top: 0;
}

.news-box-main-area .news-hover-box-items .post-date h4 {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-top: 0;
}

.news-box-main-area .news-hover-box-items .post-date p {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

.news-box-main-area .news-hover-box-items .post-list {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.news-box-main-area .news-hover-box-items .post-list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.news-box-main-area .news-hover-box-items .post-list li i {
    color: var(--white);
    margin-right: 4px;
}

.news-box-main-area .news-hover-box-items h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 136%;
    margin-top: 10px;
}

.news-box-main-area .news-hover-box-items h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-box-main-area .news-hover-box-items h3 a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-box-main-area .news-hover-box-items .line {
    width: 100px;
    height: 3px;
    background-color: var(--white);
    margin-top: 23px;
}

.news-box-main-area .news-hover-box-items .news-text {
    color: var(--white);
    margin-top: 25px;
}

.news-box-main-area:hover .news-box-items {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}

@media (max-width: 1399px) {
    .news-box-main-area:hover .news-box-items {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

.news-box-main-area:hover .news-hover-box-items {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 1399px) {
    .news-box-main-area:hover .news-hover-box-items {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.05);
    }
}

.news-box-items-style-2 {
    background-color: var(--white);
    border: 1px solid rgb(217, 217, 217);
    padding: 10px;
    border-radius: 12px;
    margin-top: 30px;
}

.news-box-items-style-2 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
}

.news-box-items-style-2 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-box-items-style-2 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-box-items-style-2 .thumb .post-date {
    width: 88px;
    height: 91px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(42px);
    position: absolute;
    z-index: 99;
    bottom: 10px;
    left: 10px;
    border-radius: 12px;
}

.news-box-items-style-2 .thumb .post-date span {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

.news-box-items-style-2 .thumb .post-date p {
    color: var(--white);
    font-weight: 400;
}

.news-box-items-style-2 .content {
    padding: 15px;
    margin-top: 10px;
}

.news-box-items-style-2 .content ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-box-items-style-2 .content ul li i {
    margin-right: 6px;
    color: var(--theme);
}

.news-box-items-style-2 .content h3 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 136%;
}

@media (max-width: 991px) {
    .news-box-items-style-2 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .news-box-items-style-2 .content h3 {
        font-size: 19px;
    }
}

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

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

.news-box-items-style-2 .content .link-btn {
    color: var(--theme);
    margin-top: 25px;
}

.news-box-items-style-2 .content .link-btn:hover {
    color: var(--header);
}

.news-box-items-style-2:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

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

.news-box-items-style-2.news-box-style-9 {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1199px) {
    .news-box-items-style-2.news-box-style-9 {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .news-box-items-style-2.news-box-style-9 {
        gap: 30px;
        display: block;
    }
}

@media (max-width: 767px) {
    .news-box-items-style-2.news-box-style-9 {
        gap: 20px;
    }
}

.news-box-items-style-2.news-box-style-9 .thumb {
    height: 261px;
    max-width: 261px;
    width: 100%;
}

@media (max-width: 767px) {
    .news-box-items-style-2.news-box-style-9 .thumb {
        max-width: initial;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .news-box-items-style-2.news-box-style-9 .post-date {
        width: 65px;
        height: 73px;
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .news-box-items-style-2.news-box-style-9 .post-date span {
        font-size: 30px;
    }
}

.news-box-items-style-2.news-box-style-9 .post-date p {
    text-transform: uppercase;
}

.news-box-items-style-2.news-box-style-9 .content {
    margin-top: 0;
    padding: 0;
    padding-right: 22px;
}

@media (max-width: 1399px) {
    .news-box-items-style-2.news-box-style-9 .content ul {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .news-box-items-style-2.news-box-style-9 .content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .news-box-items-style-2.news-box-style-9 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .news-box-items-style-2.news-box-style-9 .content h3 {
        font-size: 20px;
    }
}

.news-thumb-box-style-3 {
    position: relative;
    z-index: 9;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 12px;
    height: 638px;
}

@media (max-width: 1399px) {
    .news-thumb-box-style-3 {
        height: 573px;
    }
}

.news-thumb-box-style-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 36, 35, 0.25) 0%, rgba(2, 36, 35, 0.88) 100%);
    border-radius: 12px;
    z-index: 11;
}

.news-thumb-box-style-3 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-thumb-box-style-3 img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-thumb-box-style-3 .news-content-area {
    position: absolute;
    z-index: 11;
    bottom: 35px;
    left: 30px;
    display: flex;
    gap: 22px;
    right: 30px;
}

@media (max-width: 1199px) {
    .news-thumb-box-style-3 .news-content-area {
        flex-wrap: wrap;
    }
}

.news-thumb-box-style-3 .news-content-area .post-date {
    max-width: 88px;
    width: 100%;
    height: 91px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(42px);
    border-radius: 12px;
}

.news-thumb-box-style-3 .news-content-area .post-date span {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

.news-thumb-box-style-3 .news-content-area .post-date p {
    color: var(--white);
    font-weight: 400;
}

.news-thumb-box-style-3 .news-content-area .content ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-thumb-box-style-3 .news-content-area .content ul li {
    color: var(--white);
}

.news-thumb-box-style-3 .news-content-area .content ul li i {
    margin-right: 6px;
    color: var(--white);
}

.news-thumb-box-style-3 .news-content-area .content h3 {
    margin-top: 15px;
    font-size: 28px;
}

@media (max-width: 575px) {
    .news-thumb-box-style-3 .news-content-area .content h3 {
        font-size: 22px;
    }
}

.news-thumb-box-style-3 .news-content-area .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.news-thumb-box-style-3 .news-content-area .content h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.news-thumb-box-style-3 .news-content-area .content p {
    margin-top: 13px;
    max-width: 420px;
    color: var(--white);
}

.news-thumb-box-style-3:hover img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-thumb-box-style-3:hover img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-right-thumb-style-3 {
    margin-top: 30px;
}

.news-right-thumb-style-3 li .news-thumb-items {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    padding: 10px;
}

@media (max-width: 1199px) {
    .news-right-thumb-style-3 li .news-thumb-items {
        display: block;
    }
}

.news-right-thumb-style-3 li .news-thumb-items .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
}

@media (max-width: 1199px) {
    .news-right-thumb-style-3 li .news-thumb-items .thumb {
        height: 260px;
    }
}

.news-right-thumb-style-3 li .news-thumb-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-right-thumb-style-3 li .news-thumb-items .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-right-thumb-style-3 li .news-thumb-items .content {
    max-width: 275px;
}

@media (max-width: 1199px) {
    .news-right-thumb-style-3 li .news-thumb-items .content {
        padding: 25px 20px;
        max-width: initial;
    }
}

.news-right-thumb-style-3 li .news-thumb-items .content ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1199px) {
    .news-right-thumb-style-3 li .news-thumb-items .content ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.news-right-thumb-style-3 li .news-thumb-items .content ul li:not(:last-child) {
    margin-bottom: 0;
}

.news-right-thumb-style-3 li .news-thumb-items .content ul li i {
    margin-right: 6px;
    color: var(--theme);
    font-size: 22px;
}

.news-right-thumb-style-3 li .news-thumb-items .content h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 170%;
}

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

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

.news-right-thumb-style-3 li .news-thumb-items .content p {
    margin-top: 10px;
}

.news-right-thumb-style-3 li .news-thumb-items .content .link-btn {
    color: var(--theme);
    margin-top: 30px;
}

.news-right-thumb-style-3 li .news-thumb-items .content .link-btn:hover {
    color: var(--header);
}

.news-right-thumb-style-3 li .news-thumb-items:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.news-right-thumb-style-3 li .news-thumb-items:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-right-thumb-style-3 li:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .news-section-3 {
        padding-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .news-section-3.style-6 {
        padding-top: 80px !important;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    border-radius: 8px;
}

.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 h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h2 {
        font-size: 24px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: var(--bg);
    border-radius: 8px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: var(--bg);
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

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

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

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

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

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

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid rgba(5, 54, 53, 0.16);
}

.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 h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

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

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

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

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

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

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

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

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

.main-sideber .single-sideber-widget {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.main-sideber .single-sideber-widget .search-widget form {
    width: 100%;
    position: relative;
}

.main-sideber .single-sideber-widget .search-widget form input {
    background-color: #ECF0F0;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 6px;
}

.main-sideber .single-sideber-widget .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;
}

.main-sideber .single-sideber-widget .search-widget form button:hover {
    background-color: var(--header);
}

.main-sideber .single-sideber-widget .widget-title {
    margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .widget-title h3 {
    font-weight: 600;
    font-size: 22px;
}

.main-sideber .single-sideber-widget .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
    margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .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: #ECF0F0;
    padding: 22px 25px;
    font-family: "Mona Sans", sans-serif;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 8px;
}

.main-sideber .single-sideber-widget .category-list li a {
    color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li i {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
    margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li span b {
    font-weight: 400;
    color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover {
    background-color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover a {
    color: var(--white);
}

.main-sideber .single-sideber-widget .category-list li:hover i,
.main-sideber .single-sideber-widget .category-list li:hover span {
    color: var(--white);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
    border-radius: 8px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    font-family: "Mona Sans", sans-serif;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a:hover {
    color: var(--theme);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}

.main-sideber .single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 18px;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    background: #ECF0F0;
    font-family: "Mona Sans", sans-serif;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 4px;
    color: var(--header);
}

.main-sideber .single-sideber-widget .tagcloud a:last-child {
    margin-right: 0;
}

.main-sideber .single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 {
    margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image {
    overflow: hidden;
    border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image img {
    width: 100%;
    height: 100%;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
    border-radius: 12px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list li i {
    margin-right: 10px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
        font-size: 25px;
    }
}

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

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

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content p {
    max-width: 656px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn {
    margin-top: 25px;
}

.news-standard-wrapper .news-standard-items .news-card-items-4:hover .news-image img {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.style-news-22 {
    margin-top: -25px;
}

@media (max-width: 1399px) {
    .style-news-22 {
        margin-top: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-popup__form {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.preloader {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 100000000;
    color: var(--header);
    user-select: none;
}

.preloader.is-loading .preloader-ball-inner,
.preloader.is-loading .preloader-ball-shadow {
    animation-play-state: running;
}

.preloader.is-loaded {
    pointer-events: none;
}

.preloader .preloader-overlay {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 99999999;
    opacity: 1;
    animation: fade-out 2s forwards;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

.preloader .preloader-ball-wrap {
    gap: 10px;
    position: relative;
    display: flex;
    inset-inline-start: 0;
    align-items: center;
    justify-content: center;
    transform: translateX(16px);
}

@media only screen and (min-width: 1025px) {
    .preloader .preloader-ball-wrap {
        transform: none;
    }
}

.preloader .preloader-ball-inner-wrap {
    position: absolute;
    width: 10px;
    height: 100%;
    top: 50%;
    inset-inline-start: -16px;
    transform: translate(-100%, -50%);
    z-index: 10000;
}

@media only screen and (min-width: 1025px) {
    .preloader .preloader-ball-inner-wrap {
        inset-inline-start: -30px;
    }
}

.preloader .preloader-ball-shadow {
    position: absolute;
    width: 16px;
    height: 4px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background-color: var(--theme);
    bottom: 0;
    border-radius: 50%;
    filter: blur(12px);
    box-shadow: 0 4px 20px 0 var(--theme);
    transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    animation-play-state: paused;
    animation: shadow-blur 1s linear infinite;
}

.preloader .preloader-ball-inner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme);
    animation: bounce-anim 1s linear infinite;
    box-shadow: 0 0 12px 0 #000;
    transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    animation-play-state: paused;
}

.preloader.is-loaded .preloader-ball-shadow {
    display: none;
}

.preloader.is-loaded .preloader-ball-inner {
    animation: fadeLeftToRight 0.7s linear;
}

.preloader .preloader-ball {
    position: absolute;
    width: 14px;
    height: 14px;
    bottom: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, 50%);
    border-radius: 50%;
    background-color: rgba(29, 139, 138, 0.1);
    box-shadow: 0 0 20px 0 var(--theme);
    filter: blur(10px);
}

.preloader .preloader-text {
    font-size: 20px;
    position: relative;
    letter-spacing: 0;
    transform: translateY(-0.03em);
    transition: 0.3s;
}

.preloader.is-loaded .preloader-text {
    opacity: 0;
    visibility: hidden;
}

#weave-anim span {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    animation: tj-weave-anim 1.15s ease infinite;
    transform-origin: 100% 50%;
    transform-style: preserve-3d;
}

#weave-anim span:nth-child(1) {
    animation-delay: 0s;
}

#weave-anim span:nth-child(2) {
    animation-delay: 0.05s;
}

#weave-anim span:nth-child(3) {
    animation-delay: 0.1s;
}

#weave-anim span:nth-child(4) {
    animation-delay: 0.15s;
}

#weave-anim span:nth-child(5) {
    animation-delay: 0.2s;
}

#weave-anim span:nth-child(6) {
    animation-delay: 0.25s;
}

#weave-anim span:nth-child(7) {
    animation-delay: 0.3s;
}

#weave-anim span:nth-child(8) {
    animation-delay: 0.35s;
}

#weave-anim span:nth-child(9) {
    animation-delay: 0.4s;
}

#weave-anim span:nth-child(10) {
    animation-delay: 0.45s;
}

#weave-anim span:nth-child(11) {
    animation-delay: 0.5s;
}

#weave-anim span:nth-child(12) {
    animation-delay: 0.55s;
}

#weave-anim span:nth-child(13) {
    animation-delay: 0.6s;
}

#weave-anim span:nth-child(14) {
    animation-delay: 0.65s;
}

#weave-anim span:nth-child(15) {
    animation-delay: 0.7s;
}

#weave-anim span:nth-child(16) {
    animation-delay: 0.75s;
}

#weave-anim span:nth-child(17) {
    animation-delay: 0.8s;
}

#weave-anim span:nth-child(18) {
    animation-delay: 0.85s;
}

#weave-anim span:nth-child(19) {
    animation-delay: 0.9s;
}

#weave-anim span:nth-child(20) {
    animation-delay: 0.95s;
}

#weave-anim span:nth-child(21) {
    animation-delay: 1s;
}

#weave-anim span:nth-child(22) {
    animation-delay: 1.05s;
}

#weave-anim span:nth-child(23) {
    animation-delay: 1.15s;
}

@keyframes shadow-blur {
    0% {
        filter: blur(12px);
        transform: translate(-50%) scale(0.6);
        opacity: 0.4;
    }
    30% {
        filter: blur(2px);
        transform: translate(-50%, -0.5rem) scale(1);
        opacity: 1;
    }
    to {
        filter: blur(12px);
        transform: translate(-50%) scale(0.6);
        opacity: 0.4;
    }
}

@keyframes fadeLeftToRight {
    0% {
        filter: blur(0);
        transform: translate(0) scale(1);
        opacity: 1;
    }
    30% {
        filter: blur(0);
        transform: translate(-3000%, 0) scale(1);
        opacity: 1;
    }
    40% {
        filter: blur(0);
        transform: translate(-2000%, 0) scale(1);
        opacity: 1;
    }
    60% {
        filter: blur(0);
        transform: translate(0%, 0) scale(1);
        opacity: 1;
    }
    to {
        filter: blur(12px);
        transform: translate(1000%, 0) scale(7);
        opacity: 0.4;
    }
}

@keyframes bounce-anim {
    0% {
        transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    }
    3% {
        transform: translateY(calc(-50% - 0.95rem)) scale(1.1, 1.05);
    }
    5% {
        transform: translateY(calc(-50% - 0.9rem)) scale(1.2, 1.1);
    }
    8% {
        transform: translateY(calc(-50% - 0.8rem)) scale(0.98, 1.15);
    }
    12% {
        transform: translateY(calc(-50% - 0.7rem)) scale(0.95, 1.2);
    }
    16% {
        transform: translateY(calc(-50% - 0.5rem)) scale(0.92, 1.25);
    }
    20% {
        transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    }
    24% {
        transform: translateY(calc(-50% + 0.4rem)) scale(0.9, 1.7);
    }
    26% {
        transform: translateY(calc(-50% + 0.8rem)) scale(0.9, 1.4);
    }
    28% {
        transform: translateY(calc(-50% + 0.95rem)) scale(1.2, 0.7);
    }
    30% {
        transform: translateY(calc(-50% + 1rem)) scale(1.5, 0.3);
    }
    32% {
        transform: translateY(calc(-50% + 0.8rem)) scale(1.4, 0.4);
    }
    36% {
        transform: translateY(calc(-50% + 0.5rem)) scale(1.2, 0.8);
    }
    42% {
        transform: translateY(calc(-50% + 0.2rem)) scaleY(1.2);
    }
    48% {
        transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    }
    54% {
        transform: translateY(calc(-50% - 0.3rem)) scale(0.92, 1.3);
    }
    62% {
        transform: translateY(calc(-50% - 0.5rem)) scale(0.95, 1.2);
    }
    68% {
        transform: translateY(calc(-50% - 0.6rem)) scale(0.97, 1.15);
    }
    75% {
        transform: translateY(calc(-50% - 0.7rem)) scale(0.98, 1.1);
    }
    80% {
        transform: translateY(calc(-50% - 0.8rem)) scale(0.99, 1.08);
    }
    85% {
        transform: translateY(calc(-50% - 0.9rem)) scaleY(1.05);
    }
    90% {
        transform: translateY(calc(-50% - 0.95rem)) scale(1.2, 1.03);
    }
    95% {
        transform: translateY(calc(-50% - 0.98rem)) scale(1.1, 1.01);
    }
    to {
        transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    }
}

@keyframes weave-anim {
    0% {
        transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    }
    12% {
        transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
    }
    24% {
        transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    }
    36% {
        transform: translate3D(0, 0, 0) scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.pricing-box-items {
    margin-top: 30px;
    position: relative;
    z-index: 99;
    padding: 35px;
    padding-top: 0;
}

.pricing-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--white);
    border: 2px solid var(--white);
    top: 110px;
    z-index: -1;
    height: initial;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-head {
    padding: 28px;
    border-radius: 12px;
    background-color: var(--theme);
    max-width: 200px;
}

.pricing-box-items .pricing-head h2 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 30px;
}

.pricing-box-items .pricing-head sup {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.pricing-box-items .pricing-content span {
    font-size: 14px;
    font-weight: 500;
    color: rgb(151, 166, 165);
    margin-top: 12px;
    display: inline-block;
    margin-bottom: 5px;
}

.pricing-box-items .pricing-content h3 {
    font-size: 24px;
}

.pricing-box-items .pricing-content .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 5px;
    margin-bottom: 5px;
}

.pricing-box-items .pricing-content ul {
    margin-top: 20px;
}

.pricing-box-items .pricing-content ul li img {
    margin-right: 6px;
}

.pricing-box-items .pricing-content ul li:not(:last-child) {
    margin-bottom: 12px;
}

.pricing-box-items .pricing-theme-btn {
    width: 100%;
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid var(--theme);
    color: var(--theme);
    position: relative;
    padding: 14px 40px;
    text-align: center;
    min-width: 265px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    border-radius: 88px;
}

.pricing-box-items .pricing-theme-btn i {
    background-color: #ECF0F0;
    position: absolute;
    top: 4px;
    right: 6px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
}

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

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

.pricing-box-items:hover::before {
    border: 2px solid var(--theme);
}

.pricing-section-2 {
    position: relative;
}

.pricing-section-2 .shape-1 {
    position: absolute;
    top: 250px;
    right: 50px;
}

.pricing-left-items-5 .section-title h2 {
    font-size: 48px;
}

@media (max-width: 1399px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 470px) {
    .pricing-left-items-5 .section-title h2 {
        font-size: 27px;
    }
}

.pricing-left-items-5 .pricing-text {
    margin-top: 25px;
}

.pricing-right-content-5 {
    margin-left: 100px;
}

@media (max-width: 1199px) {
    .pricing-right-content-5 {
        margin-left: 0;
    }
}

.pricing-right-content-5 .pricing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 12px;
    padding: 45px 50px;
    margin-top: 20px;
    border: 2px solid var(--white);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .pricing-right-content-5 .pricing-box {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .pricing-right-content-5 .pricing-box {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.pricing-right-content-5 .pricing-box .icon-items .price {
    color: var(--theme);
    margin-top: 20px;
    margin-bottom: 6px;
}

.pricing-right-content-5 .pricing-box .icon-items sup {
    font-size: 14px;
    font-weight: 500;
}

.pricing-right-content-5 .pricing-box .list-content span {
    color: rgb(151, 166, 165);
    font-size: 14px;
    font-weight: 500;
}

.pricing-right-content-5 .pricing-box .list-content h3 {
    font-size: 24px;
}

.pricing-right-content-5 .pricing-box .list-content .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 20px;
    margin-bottom: 20px;
}

.pricing-right-content-5 .pricing-box .list-content ul li img {
    margin-right: 6px;
}

.pricing-right-content-5 .pricing-box .list-content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.pricing-right-content-5 .pricing-box .pricing-btn {
    width: 148px;
    min-width: 148px;
    height: 148px;
    text-align: center;
    border-radius: 50%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: var(--white);
    border: 2px solid var(--theme);
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    position: relative;
}

.pricing-right-content-5 .pricing-box .pricing-btn .circle-text {
    position: relative;
    z-index: 9;
    max-width: 74px;
}

.pricing-right-content-5 .pricing-box .pricing-btn::before {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: rgba(29, 139, 138, 0.35);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    z-index: 0;
    opacity: 0;
}

.pricing-right-content-5 .pricing-box .pricing-btn::after {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    content: "";
    background: var(--theme);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1.4s;
    z-index: 0;
    opacity: 0;
}

.pricing-right-content-5 .pricing-box .pricing-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.pricing-right-content-5 .pricing-box .pricing-btn:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.pricing-right-content-5 .pricing-box .pricing-btn:hover .circle-text {
    color: var(--white);
}

.pricing-right-content-5 .pricing-box:hover {
    border: 2px solid var(--theme);
}

.pricing-right-content-5 .pricing-box:hover .icon-items .icon img {
    animation: wobble 1.5s ease-in-out;
}

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

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

.section-title .sub-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    font-family: "Mona Sans", sans-serif;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title h2 {
    font-family: "Mona Sans", sans-serif;
}

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

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

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

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

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

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

.body-bg-1 {
    background-color: #141414;
}

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

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

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

.section-bg-4 {
    background-color: rgba(121, 185, 0, 0.03);
}

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

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

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

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

.link-btn {
    color: var(--white);
    margin-top: 60px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    text-decoration: underline;
}

.link-btn i {
    margin-left: 5px;
    transform: rotate(-45deg);
}

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

.service-section-3 {
    padding-bottom: 120px;
}


.service-section .section-title-area .client-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .service-section .section-title-area .client-area {
        flex-wrap: wrap;
    }

    .service-section-3 {
    padding-bottom: 20px;
}
}

.service-section .section-title-area .client-area p {
    max-width: 168px;
    color: var(--header);
}

.client-information-section-5 .client-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 575px) {
    .client-information-section-5 .client-area {
        flex-wrap: wrap;
    }
}

.client-information-section-5 .client-area p {
    max-width: 168px;
    color: var(--header);
}

.client-information-section-5 .brand-image {
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.service-box-items {
    background-color: rgb(2, 36, 35);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .service-box-items {
        display: block;
        padding: 45px 30px;
    }
}

.service-box-items .content {
    padding: 25px 30px;
    max-width: 428px;
}

@media (max-width: 991px) {
    .service-box-items .content {
        padding: 0;
        margin-bottom: 30px;
    }
}

.service-box-items .content .icon-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-box-items .content .icon-area .number {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.01em;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    font-family: "Mona Sans", sans-serif;
}

.service-box-items .content .title {
    color: var(--white);
    margin-top: 55px;
    max-width: 305px;
}

@media (max-width: 1199px) {
    .service-box-items .content .title {
        margin-top: 30px;
    }
}

.service-box-items .content .title a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

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

.service-box-items .content p {
    max-width: 428px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

@media (max-width: 1199px) {
    .service-box-items .content p {
        font-size: 15px;
    }
}

.service-box-items .content .list-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199px) {
    .service-box-items .content .list-items {
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

.service-box-items .content .list-items span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(29.05px);
    padding: 10px 18px;
    border-radius: 90px;
    color: var(--white);
    line-height: 1;
}

.service-box-items .content .list-items span img {
    margin-right: 10px;
}

.service-box-items .content .theme-btn {
    margin-top: 40px;
}

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

.service-box-items .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
}

.service-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-box-items .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items:hover .content .icon-area .icon img {
    animation: wobble 1.5s ease-in-out;
}

.service-box-items:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-box-items:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-section-2 {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .service-section-2 {
        margin-bottom: 0;
        background-color: #022423;
    }
}

@media (max-width: 1399px) {
    .service-section-2.service-style-8 {
        background-color: var(--bg);
    }
    .service-section-2.service-style-8 .section-title {
        padding-top: 0;
    }
}

.service-section-2 .section-title {
    padding-top: 35px;
}

.service-section-2 .container {
    max-width: 1640px;
}

.service-section-2 .service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.service-section-2 .service-bg img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1399px) {
    .service-section-2 .service-bg {
        display: none;
    }
}

.service-box-items-style-2 {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.31);
    border-radius: 12px;
    padding: 10px;
}

.service-box-items-style-2 .service-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-box-items-style-2 .service-thumb .hover-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-box-items-style-2 .service-thumb .hover-img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items-style-2 .service-thumb .icon {
    width: 76px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    background-color: var(--white);
    border-radius: 6px;
    position: absolute;
    z-index: 9;
    bottom: 10px;
    right: 10px;
}

.service-box-items-style-2 .service-thumb .icon img {
    width: initial;
    height: initial;
}

.service-box-items-style-2 .service-content {
    padding: 25px 20px;
}

.service-box-items-style-2 .service-content h3 {
    font-size: 24px;
    font-weight: 600;
}

.service-box-items-style-2 .service-content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-items-style-2 .service-content h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-box-items-style-2 .service-content h2 {
    font-size: 24px;
    font-weight: 600;
}

.service-box-items-style-2 .service-content h2 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-items-style-2 .service-content h2 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-box-items-style-2 .service-content p {
    color: var(--white);
    margin-top: 12px;
}

.service-box-items-style-2 .service-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 20px;
    margin-top: 20px;
}

.service-box-items-style-2 .service-content .sub-titles {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 20px;
    margin-top: 20px;
    font-family: "Mona Sans", sans-serif;
}

.service-box-items-style-2 .service-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

@media (max-width: 1600px) {
    .service-box-items-style-2 .service-content ul {
        gap: 12px;
        font-size: 15px;
    }
}

@media (max-width: 1600px) {
    .service-box-items-style-2 .service-content ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.service-box-items-style-2 .service-content ul li {
    color: var(--white);
}

@media (max-width: 1600px) {
    .service-box-items-style-2 .service-content ul li {
        font-size: 14px;
    }
}

.service-box-items-style-2 .service-content ul li img {
    margin-right: 7px;
}

@media (max-width: 1600px) {
    .service-box-items-style-2 .service-content ul li img {
        margin-right: 5px;
    }
}

.service-box-items-style-2.style-2 {
    background-color: var(--white);
}

.service-box-items-style-2.style-2 .service-thumb .icon {
    background-color: #022423;
}

.service-box-items-style-2.style-2 .service-content h3 a {
    color: var(--header);
}

.service-box-items-style-2.style-2 .service-content h3 a:hover {
    color: var(--theme);
}

.service-box-items-style-2.style-2 .service-content p {
    color: rgba(87, 125, 125, 0.8);
}

.service-box-items-style-2.style-2 .service-content h4 {
    color: var(--header);
    border-top: 1px solid rgba(87, 125, 125, 0.36);
}

.service-box-items-style-2.style-2 .service-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.service-box-items-style-2.style-2 .service-content ul li {
    color: var(--header);
    font-size: 16px;
    font-weight: 600;
}

.service-box-items-style-2.service-style-8 {
    background-color: var(--white);
}

.service-box-items-style-2.service-style-8 .service-thumb .icon {
    background-color: var(--header);
}

.service-box-items-style-2.service-style-8 .service-content h3 a {
    color: var(--header);
}

.service-box-items-style-2.service-style-8 .service-content h3 a:hover {
    color: var(--theme);
}

.service-box-items-style-2.service-style-8 .service-content p {
    color: rgba(87, 125, 125, 0.8);
}

.service-box-items-style-2.service-style-8 .service-content h4 {
    color: var(--header);
    border-top: 1px solid rgba(87, 125, 125, 0.16);
}

.service-box-items-style-2.service-style-8 .service-content ul li {
    color: #595959;
}

.service-box-items-style-2.service-style-8 .service-content ul li img {
    margin-right: 7px;
}

.service-box-items-style-2:hover .service-thumb .hover-img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-box-items-style-2:hover .service-thumb .hover-img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items-style-2:hover .service-thumb .icon img {
    animation: wobble 1.5s ease-in-out;
}

.service-bottom-items-2 {
    text-align: center;
    margin-top: 75px;
}

.service-bottom-items-2 p {
    color: var(--white);
}

.service-bottom-items-2 .link-btn {
    margin-top: 15px;
}

.service-bottom-items-2 .link-btn:hover {
    color: var(--theme);
}

.service-bottom-items-2.service-bottom-items-8 p {
    color: rgba(87, 125, 125, 0.8);
}

.service-bottom-items-2.service-bottom-items-8 .link-btn {
    color: var(--text);
}

.service-bottom-items-2.service-bottom-items-8 .link-btn:hover {
    color: var(--theme);
}

 
.service-left-items-style-3 .theme-btn {
    margin-top: 48px;
}

.service-right-box-items-style-3 .service-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 50px;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .service-right-box-items-style-3 .service-box {
        padding: 20px 10px;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.service-right-box-items-style-3 .service-box .icon-area .icon {
    transition: all 0.4s ease-in-out;
}

.service-right-box-items-style-3 .service-box .icon-area .icon img {
    transition: all 0.4s ease-in-out;
}

.service-right-box-items-style-3 .service-box .icon-area h3 {
    max-width: 320px;
    margin-top: 44px;
    font-size: 28px;
}

@media (max-width: 767px) {
    .service-right-box-items-style-3 .service-box .icon-area h3 {
        margin-top: 25px;
        font-size: 24px;
    }

    .service-right-box-items-style-3 .service-box .icon-area .icon img{
        width: 80px;
    }
}

.service-right-box-items-style-3 .service-box .icon-area h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-right-box-items-style-3 .service-box .icon-area h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-right-box-items-style-3 .service-box .content-area p {
    color: var(--white);
}

.service-right-box-items-style-3 .service-box .content-area ul {
    margin-top: 44px;
}

@media (max-width: 767px) {
    .service-right-box-items-style-3 .service-box .content-area ul {
        margin-top: 25px;
    }
}

.service-right-box-items-style-3 .service-box .content-area ul li {
    color: var(--white);
}

.service-right-box-items-style-3 .service-box .content-area ul li img {
    margin-right: 7px;
}

 

.service-right-box-items-style-3 .service-box:hover .icon-area .icon img {
    animation: wobble 1.5s ease-in-out;
    filter: brightness(1000%) contrast(1000%);
}

.service-section-4 .container {
    max-width: 1372px;
}

.service-section-4 .section-title {
    margin-bottom: 30px;
}

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

.service-box-4 {
    background-color: var(--bg);
    padding: 45px 70px;
    border-bottom: 1px dashed rgba(2, 36, 35, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .service-box-4 {
        padding: 40px 0;
    }
}

@media (max-width: 991px) {
    .service-box-4 {
        display: grid;
        gap: 30px;
        justify-content: center;
        text-align: center;
    }
}

.service-box-4::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0;
    transform: scale(1, 0.3);
    background-color: var(--theme);
    transition: all 500ms ease;
    border-radius: 8px;
}

.service-box-4 .content {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .service-box-4 .content {
        gap: 20px;
    }
}

.service-box-4 .content span {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme);
    line-height: 1;
    font-family: "Mona Sans", sans-serif;
}

.service-box-4 .content h3 {
    font-size: 44px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .service-box-4 .content h3 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .service-box-4 .content h3 {
        font-size: 25px;
    }
}

.service-box-4 .right-content {
    display: flex;
    align-items: center;
    gap: 85px;
}

@media (max-width: 991px) {
    .service-box-4 .right-content {
        display: grid;
        gap: 30px;
        justify-content: center;
    }
}

.service-box-4 .text {
    color: #577D7D;
    max-width: 272px;
    position: relative;
    z-index: 9;
}

.service-box-4 .icon {
    position: relative;
    z-index: 9;
    transition: all 0.3s ease;
}

.service-box-4 .icon:hover {
    color: var(--white);
}

.service-box-4 .hover-image {
    max-width: 218px;
    position: absolute;
    border-radius: 12px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(10deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    border-radius: 30px;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    margin: -200px 0 0 -50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
    visibility: hidden;
    will-change: transform;
}

@media (max-width: 991px) {
    .service-box-4 .hover-image {
        display: none !important;
    }
}

.service-box-4 .hover-image img {
    width: 100%;
    height: 100%;
}

.service-box-4:hover .content span {
    color: var(--white);
}

.service-box-4:hover .content h3 a {
    color: var(--white);
}

.service-box-4:hover .right-content p {
    color: var(--white);
}

.service-box-4:hover .right-content .icon {
    filter: brightness(0) invert(1);
}

.service-box-4:hover .hover-image {
    opacity: 1;
    visibility: visible;
}

.service-box-4:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.service-section-5 {
    position: relative;
    z-index: 9;
}

.service-section-5::before {
    width: 55%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    bottom: 0;
}

@media (max-width: 1199px) {
    .service-section-5::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .service-section-5 .section-title-area {
        text-align: center;
        justify-content: center;
    }
    .service-section-5 .section-title-area .sub-title {
        color: var(--header) !important;
        filter: brightness(0);
    }
    .service-section-5 .section-title-area h2 {
        color: var(--header) !important;
    }
}

.service-section-5 .section-title-area .right-content {
    max-width: 445px;
}

@media (max-width: 1199px) {
    .service-section-5 .section-title-area .right-content {
        margin: 0 auto;
    }
}

.service-section-5 .section-title-area .right-content .theme-btn {
    margin-top: 30px;
}

.service-slider-5 {
    margin-left: -15%;
    margin-right: -15%;
}

@media (max-width: 1600px) {
    .service-slider-5 {
        margin-left: -20%;
        margin-right: -20%;
    }
}

@media (max-width: 1399px) {
    .service-slider-5 {
        margin-left: -28%;
        margin-right: -28%;
    }
}

@media (max-width: 991px) {
    .service-slider-5 {
        margin-left: 0;
        margin-right: 0;
    }
}

.service-box-items-5 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .service-box-items-5 {
        display: block;
    }
}

.service-box-items-5 .arrow-icon {
    background-color: var(--theme);
    width: 76px;
    height: 94px;
    line-height: 94px;
    font-size: 25px;
    text-align: center;
    color: var(--white);
    position: absolute;
    left: 47%;
    top: 35%;
    transition: all 0.4s ease-in-out;
    z-index: 11;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .service-box-items-5 .arrow-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        top: 60%;
        font-size: 18px;
    }
}

.service-box-items-5 .arrow-icon:hover {
    background-color: var(--header);
    color: var(--white);
}

.service-box-items-5 .content {
    padding: 45px 38px;
    max-width: 313px;
}

@media (max-width: 767px) {
    .service-box-items-5 .content {
        padding: 30px;
        margin: 0 auto;
        text-align: center;
        max-width: initial;
    }
}

.service-box-items-5 .content .icon {
    margin-bottom: 180px;
}

@media (max-width: 1600px) {
    .service-box-items-5 .content .icon {
        margin-bottom: 150px;
    }
}

@media (max-width: 767px) {
    .service-box-items-5 .content .icon {
        margin-bottom: 20px;
    }
}

.service-box-items-5 .content h3 {
    font-size: 28px;
}

@media (max-width: 1899px) {
    .service-box-items-5 .content h3 {
        font-size: 22px;
    }
}

.service-box-items-5 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

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

.service-box-items-5 .content p {
    margin-top: 10px;
}

.service-box-items-5 .content:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.service-box-items-5 .thumb {
    overflow: hidden;
    position: relative;
    width: 50%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 520px;
}

@media (max-width: 1600px) {
    .service-box-items-5 .thumb {
        max-width: 288px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .service-box-items-5 .thumb {
        max-width: initial;
        height: 300px;
        border-top-right-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .service-box-items-5 .thumb img {
        width: 100%;
        height: 100%;
    }
}

.service-box-items-5 .thumb img {
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .service-box-items-5 .thumb img {
        border-top-right-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}

.service-box-items-5 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items-5:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-box-items-5:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-details-wrapper .service-details-thumb {
    border-radius: 12px;
}

.service-details-wrapper .service-details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-details-wrapper .title {
    font-size: 50px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .service-details-wrapper .title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .service-details-wrapper .title {
        font-size: 38px;
    }
}

@media (max-width: 470px) {
    .service-details-wrapper .title {
        font-size: 30px;
    }
}

.service-details-wrapper .title-2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 575px) {
    .service-details-wrapper .title-2 {
        font-size: 27px;
    }
}

.service-details-wrapper .service-feature-wrapper {
    margin-top: 50px;
}

@media (max-width: 575px) {
    .service-details-wrapper .service-feature-wrapper {
        margin-top: 30px;
    }
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .icon {
    width: 76px;
    height: 78px;
    line-height: 78px;
    background-color: var(--theme);
    border-radius: 6px;
    text-align: center;
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .content {
    margin-top: 30px;
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .content .line {
    width: 185px;
    height: 2px;
    background-color: rgba(29, 139, 138, 0.26);
    margin-top: 20px;
    margin-bottom: 24px;
    position: relative;
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .content .line::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 2px;
    content: "";
    background: var(--theme);
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style .content p {
    max-width: 326px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.service-details-wrapper .service-feature-wrapper .icon-feature-box-items-style:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.service-details-wrapper .service-details-thumb-1 {
    margin-top: 30px;
}

.service-details-wrapper .service-details-thumb-1 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-details-wrapper .service-details-thumb-1 .title-3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 25px;
}

.service-details-wrapper .service-details-thumb-1 .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .service-details-wrapper .service-details-thumb-1 .list-items {
        gap: 40px;
    }
}

@media (max-width: 1199px) {
    .service-details-wrapper .service-details-thumb-1 .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.service-details-wrapper .service-details-thumb-1 .list-items ul li {
    font-size: 16px;
    font-weight: 500;
    color: #577D7D;
}

.service-details-wrapper .service-details-thumb-1 .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.service-details-wrapper .service-details-thumb-1 .list-items ul li img {
    margin-right: 8px;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature {
    margin-top: 30px;
    max-width: 570px;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature:not(:last-child) {
    margin-bottom: 35px;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature .box-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Mona Sans", sans-serif;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature .progress-value {
    margin-bottom: 10px;
    color: #3C3C3C;
    text-transform: capitalize;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature .progress {
    position: relative;
    height: 8px;
    background-color: rgba(65, 197, 117, 0.12);
    border-radius: 0;
    overflow: visible;
    margin-top: 15px;
    border-radius: 4px;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature .progress-bar {
    background-color: var(--theme);
    height: 8px;
    margin: 0;
    border-radius: inherit;
    overflow: visible;
    position: relative;
    margin-top: 0;
    border-radius: 4px;
}

.service-details-wrapper .service-details-thumb-1 .choose-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 16px;
    font-weight: 700;
    color: #3C3C3C;
    font-family: "Mona Sans", sans-serif;
}

.service-section-inners {
    background-color: #022423;
}

.service-section-inners .container {
    max-width: 1640px;
}

.service-section-6 {
    padding: 0 20px;
}

.service-section-6 .container {
    max-width: 1477px;
}

.service-wrapper {
    background-color: var(--bg);
    border-radius: 20px;
}

.service-wrapper .section-title-area {
    justify-content: initial;
    gap: 200px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .service-wrapper .section-title-area {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .service-wrapper .section-title-area {
        margin-bottom: 30px;
    }
}

.service-wrapper .service-image-6 img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
}

.service-wrapper .service-box-6 {
    padding: 43px 0;
    border-top: 1px solid rgba(4, 85, 84, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-left: 80px;
}

.service-wrapper .service-box-6:last-child {
    padding-bottom: 0;
}

@media (max-width: 1199px) {
    .service-wrapper .service-box-6 {
        padding: 20px 0;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .service-wrapper .service-box-6 {
        display: grid;
        gap: 25px;
        align-items: center;
    }
}

.service-wrapper .service-box-6 .content {
    display: flex;
    gap: 115px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .service-wrapper .service-box-6 .content {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .service-wrapper .service-box-6 .content {
        gap: 30px;
    }
}

.service-wrapper .service-box-6 .content span {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme);
    line-height: 1;
    font-family: "Mona Sans", sans-serif;
}

.service-wrapper .service-box-6 .content h3 {
    font-size: 28px;
    font-weight: 600;
}

@media (max-width: 1399px) {
    .service-wrapper .service-box-6 .content h3 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    .service-wrapper .service-box-6 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .service-wrapper .service-box-6 .content h3 {
        font-size: 20px;
    }
}

.service-wrapper .service-box-6 .content h3 a:hover {
    color: var(--theme);
}

.service-wrapper .service-box-6 .right-content {
    display: flex;
    align-items: center;
    gap: 53px;
}

@media (max-width: 1399px) {
    .service-wrapper .service-box-6 .right-content {
        gap: 35px;
    }
}

.service-wrapper .service-box-6 .right-content .image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.service-wrapper .service-box-6 .right-content .icon {
    background: var(--white);
    border-radius: 50%;
    color: var(--theme);
    font-size: 15px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
}

.service-wrapper .service-box-6 .right-content .icon:hover {
    background-color: var(--theme);
}

.service-wrapper .service-box-6 .right-content .icon:hover img {
    filter: brightness(0) invert(1);
}

.service-wrapper-7 .section-title-area {
    justify-content: initial;
    gap: 59px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .service-wrapper-7 .section-title-area {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .service-wrapper-7 .section-title-area {
        margin-bottom: 30px;
    }
}

.service-wrapper-7 .service-image-7 {
    margin-bottom: 25px;
}

.service-wrapper-7 .service-image-7 img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
}

.service-wrapper-7 .service-link .link-btn {
    color: var(--header);
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-wrapper-7 .service-link .link-btn img {
    margin-left: 5px;
    margin-bottom: 2px;
}

.service-wrapper-7 .service-link .link-btn:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-wrapper-7 .service-box-7 {
    padding: 30px 0;
    border-top: 1px dashed rgba(2, 36, 35, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-left: 30px;
    transition: all 0.4s ease-in-out;
}

.service-wrapper-7 .service-box-7:last-child {
    border-bottom: 1px dashed rgba(2, 36, 35, 0.45);
}

@media (max-width: 1199px) {
    .service-wrapper-7 .service-box-7 {
        padding: 20px 0;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .service-wrapper-7 .service-box-7 {
        gap: 25px;
        align-items: center;
    }
}

.service-wrapper-7 .service-box-7 .content {
    display: flex;
    gap: 38px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .service-wrapper-7 .service-box-7 .content {
        gap: 30px;
    }
}

.service-wrapper-7 .service-box-7 .content span {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme);
    line-height: 1;
    font-family: "Mona Sans", sans-serif;
}

.service-wrapper-7 .service-box-7 .content h3 {
    font-size: 30px;
    font-weight: 600;
}

.service-wrapper-7 .service-box-7 .content h3 a:hover {
    color: var(--theme);
}

@media (max-width: 1399px) {
    .service-wrapper-7 .service-box-7 .content h3 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    .service-wrapper-7 .service-box-7 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .service-wrapper-7 .service-box-7 .content h3 {
        font-size: 20px;
    }
}

.service-wrapper-7 .service-box-7 .right-content {
    display: flex;
    align-items: center;
    gap: 120px;
}

@media (max-width: 1399px) {
    .service-wrapper-7 .service-box-7 .right-content {
        gap: 80px;
    }
}

@media (max-width: 1199px) {
    .service-wrapper-7 .service-box-7 .right-content {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .service-wrapper-7 .service-box-7 .right-content {
        gap: 50px;
    }
}

.service-wrapper-7 .service-box-7 .right-content .image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.service-wrapper-7 .service-box-7 .right-content .icon {
    position: relative;
    z-index: 9;
    transition: all 0.3s ease;
}

.service-wrapper-7 .service-box-7:hover .right-content .image img {
    opacity: 1;
    visibility: visible;
}

.service-wrapper-7 .service-box-7:hover .right-content .icon {
    transform: rotate(-45deg);
}

.service-section-9 .container {
    max-width: 1349px;
}

.service-box-items-style-9 {
    margin-top: 30px;
    background: var(--white);
    border-radius: 12px;
    padding: 35px 20px 30px;
}

.service-box-items-style-9 h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .service-box-items-style-9 h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .service-box-items-style-9 h3 {
        font-size: 24px;
    }
}

.service-box-items-style-9 h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.service-box-items-style-9 h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.service-box-items-style-9 .service-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-box-items-style-9 .service-thumb .hover-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-box-items-style-9 .service-thumb .hover-img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.service-box-items-style-9 .service-content p {
    color: rgba(87, 125, 125, 0.8);
    margin-top: 15px;
    max-width: 300px;
}

.service-box-items-style-9 .service-content .service-btn {
    margin-top: 20px;
    padding: 6px 50px 6px 20px;
}

.service-box-items-style-9 .service-content .service-btn .btn-arrow-right {
    right: 4px;
    height: 30px;
    width: 30px;
}

.service-box-items-style-9 .service-content .service-btn .btn-arrow-left {
    left: 4px;
    height: 30px;
    width: 30px;
}

.service-box-items-style-9:hover .service-thumb .hover-img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.service-box-items-style-9:hover .service-thumb .hover-img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-section-4 .container {
    max-width: 1622px;
}

.team-box-items-style-4 {
    margin-top: 30px;
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    z-index: 99;
}

.team-box-items-style-4 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 9;
}

.team-box-items-style-4 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-box-items-style-4 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-style-4 .thumb .team-icon {
    gap: 10px;
    position: absolute;
    bottom: 6%;
    left: 0;
    transform: translateY(-50%);
    right: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-box-items-style-4 .thumb .team-icon li {
    transform: scaleX(0);
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.team-box-items-style-4 .thumb .team-icon li a {
    background-color: var(--white);
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    color: #39404A;
    font-size: 18px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .team-box-items-style-4 .thumb .team-icon li a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }
}

.team-box-items-style-4 .thumb .team-icon li a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.team-box-items-style-4 .content {
    text-align: center;
    padding: 15px 0;
    padding-top: 25px;
}

.team-box-items-style-4 .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-box-items-style-4 .content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.team-box-items-style-4 .content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-items-style-4:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.team-box-items-style-4:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-style-4:hover .thumb .team-icon li {
    transform: scaleX(1);
}

.team-details-image {
    border-radius: 12px;
}

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

@media (max-width: 1399px) {
    .team-details-image img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }
}

.team-details-content {
    margin-left: 60px;
}

@media (max-width: 1199px) {
    .team-details-content {
        margin-left: 0;
    }
}

.team-details-content .top-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme);
}

.team-details-content h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .team-details-content h2 {
        font-size: 38px;
    }
}

.team-details-content .team-text {
    margin-top: 10px;
    font-size: 18px;
}

.team-details-content .progress-wrap {
    margin-top: 20px;
}

.team-details-content .progress-wrap .pro-items {
    width: 100%;
}

.team-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}

.team-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-details-content .progress-wrap .pro-items .pro-head .title {
    color: var(--header);
}

.team-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--header);
}

.team-details-content .progress-wrap .pro-items .progress {
    background: rgba(29, 139, 138, 0.1);
    justify-content: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.team-details-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    background: var(--theme);
    height: 6px;
    width: 0;
}

.team-details-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.team-details-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}

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

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

.team-details-content ul {
    margin-top: 30px;
}

.team-details-content ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
}

.team-details-content ul li .icon {
    font-size: 18px;
    color: var(--theme);
}

.team-details-content ul li p {
    color: #616766;
    font-size: 16px;
    font-weight: 500;
}

.team-details-content ul li p a {
    color: #616766;
}

.team-details-content ul li:not(:last-child) {
    margin-bottom: 15px;
}

.team-details-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 80px;
}

.team-details-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 50px;
}

.team-details-content .list-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .team-details-content .list-items {
        gap: 25px;
        flex-wrap: wrap;
    }
}

.team-details-content .list-items ul li {
    font-size: 16px;
    font-weight: 400;
    color: rgb(100, 100, 100);
}

.team-details-content .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.team-section-7 .team-btn {
    margin-top: 30px;
}

.team-section-7 .style-7 {
    margin-top: -90px;
}

@media (max-width: 1199px) {
    .team-section-7 .style-7 {
        margin-top: 30px;
    }
}

.team-box-items-style-11 {
    margin-top: 30px;
    position: relative;
    z-index: 99;
}

.team-box-items-style-11 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0px 0px;
    z-index: 9;
}

.team-box-items-style-11 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0px 0px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-box-items-style-11 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-style-11 .thumb .team-icon {
    background-color: var(--theme);
    border-radius: 4px;
    padding: 10px;
    width: 50px;
    height: 170px;
    gap: 10px;
    position: absolute;
    z-index: 11;
    top: 20px;
    right: 0;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.team-box-items-style-11 .thumb .team-icon li {
    transform: scaleX(0);
    transition: 0.4s ease-in-out;
    cursor: pointer;
    background-color: var(--theme);
}

.team-box-items-style-11 .thumb .team-icon li a {
    background-color: var(--theme);
    display: inline-block;
    color: var(--white);
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.team-box-items-style-11 .thumb .team-icon li a i {
    font-size: 18px;
}

.team-box-items-style-11 .thumb .team-icon li a:hover {
    color: var(--white);
}

.team-box-items-style-11 .content {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 30px;
    border-radius: 0px 0px 12px 12px;
    background-color: var(--white);
}

.team-box-items-style-11 .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-box-items-style-11 .content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.team-box-items-style-11 .content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-items-style-11:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.team-box-items-style-11:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.team-box-items-style-11:hover .thumb .team-icon {
    opacity: 1;
    visibility: visible;
}

.team-box-items-style-11:hover .thumb .team-icon li {
    transform: scaleX(1);
}

.project-wrp {
    position: relative;
    overflow: hidden;
    height: 720px;
    margin-top: 60px;
}

@media (max-width: 767px) {
    .project-wrp {
        margin-top: 30px;
    }
}

.project-wrp .project-hover-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.project-wrp .project-hover-image .tab-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    transition: all 0.7s;
}

.project-wrp .project-hover-image .tab-img.active {
    transform: scale(1);
    opacity: 1;
}

.project-wrp .project-slider {
    position: relative;
    z-index: 3;
}

.project-wrp .project-items-one {
    display: flex;
    align-items: flex-end;
    height: 706px;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.57);
    overflow: hidden;
    position: relative;
}

.project-wrp .project-items-one .arrow-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all 0.4s ease-in-out;
}

.project-wrp .project-items-one .arrow-icon:hover {
    background-color: var(--header);
}

.project-wrp .project-items-one .content {
    padding: 44px 28px;
    transform: translateY(0);
    position: relative;
    transition: all 0.4s ease-in-out;
    text-align: center;
    background: rgba(9, 48, 46, 0.24);
    backdrop-filter: blur(42px);
    border-radius: 12px;
    bottom: 57px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 30px;
}

@media (max-width: 991px) {
    .project-wrp .project-items-one .content {
        margin: 0 20px;
        padding: 40px 22px;
        bottom: 30px;
    }
}

.project-wrp .project-items-one .content .title {
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .project-wrp .project-items-one .content .title {
        font-size: 20px;
    }
}

.project-wrp .project-items-one .content p {
    color: var(--white);
}

.project-wrp .project-items-one .hover-content {
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    padding: 45px 30px;
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin: 0 40px;
}

@media (max-width: 991px) {
    .project-wrp .project-items-one .hover-content {
        margin: 0 20px;
        padding: 40px 28px;
    }
}

.project-wrp .project-items-one .hover-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.project-wrp .project-items-one .hover-content ul li {
    color: var(--theme);
    font-weight: 500;
    text-transform: capitalize;
}

.project-wrp .project-items-one .hover-content ul li a {
    color: #206D69;
}

.project-wrp .project-items-one .hover-content .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .project-wrp .project-items-one .hover-content .title {
        font-size: 20px;
    }
}

.project-wrp .project-items-one .hover-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-wrp .project-items-one .hover-content .title a:hover {
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
    color: var(--theme);
}

.project-wrp .project-items-one .hover-content p {
    font-size: 16px;
    font-weight: 500;
    color: #626C74;
    max-width: 320px;
    margin: 0 auto;
}

.project-wrp .project-items-one:hover .arrow-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.project-wrp .project-items-one:hover .content {
    opacity: 0;
    visibility: hidden;
}

.project-wrp .project-items-one:hover .hover-content {
    opacity: 1;
    visibility: visible;
    bottom: 57px;
}

@media (max-width: 991px) {
    .project-wrp .project-items-one:hover .hover-content {
        bottom: 20px;
    }
}

.project-section .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.project-section .nav .nav-item .nav-link {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    background-color: var(--white);
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    padding: 0 22px;
    border-radius: 90px;
}

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

.project-box-items-style-2 {
    background-color: var(--white);
    padding: 10px;
    border-radius: 12px;
    margin-top: 30px;
}

.project-box-items-style-2 .project-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
}

.project-box-items-style-2 .project-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-style-2 .project-thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-style-2 .project-thumb .circle-icon {
    background-color: var(--theme);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    display: inline-block;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-box-items-style-2 .project-thumb .circle-icon:hover {
    background-color: var(--header);
    color: var(--white);
}

.project-box-items-style-2 .project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

@media (max-width: 575px) {
    .project-box-items-style-2 .project-content {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.project-box-items-style-2 .project-content h3 {
    font-size: 22px;
    font-weight: 600;
    max-width: 230px;
}

.project-box-items-style-2 .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-items-style-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-box-items-style-2 .project-content .title {
    font-size: 22px;
    font-weight: 600;
    max-width: 230px;
}

.project-box-items-style-2 .project-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-items-style-2 .project-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-items-style-2 .project-content .sm-text {
    background-color: rgba(29, 139, 138, 0.12);
    width: 128px;
    height: 35px;
    line-height: 35px;
    border-radius: 90px;
    text-align: center;
    color: rgb(29, 139, 138);
    font-weight: 600;
}

.project-box-items-style-2:hover .project-thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-style-2:hover .project-thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-style-2:hover .project-thumb .circle-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.project-box-items-style-3 {
    margin-top: 30px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 12px;
}

.project-box-items-style-3 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.project-box-items-style-3 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-style-3 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-style-3 .content {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 22px;
}

.project-box-items-style-3 .content span {
    border: 1px solid rgba(29, 139, 138, 0.33);
    border-radius: 90px;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 15px;
    color: var(--theme);
}

.project-box-items-style-3 .content h3 {
    font-size: 22px;
    margin-top: 20px;
}

.project-box-items-style-3 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

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

.project-box-items-style-3.style-2 {
    margin-top: 80px;
}

.project-box-items-style-3:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-style-3:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-style-3.items-style-7 {
    position: relative;
}

.project-box-items-style-3.items-style-7 .content {
    text-align: left;
    position: relative;
}

.project-box-items-style-3.items-style-7 .content .icon {
    border: 1px solid rgba(2, 36, 35, 0.2);
    border-radius: 50%;
    color: var(--theme);
    font-size: 15px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 15px;
}

.project-section-5 {
    background-color: var(--theme);
}

.project-box-items-5 {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .project-box-items-5 .content {
        text-align: center;
    }
}

.project-box-items-5 .content p {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.project-box-items-5 .content h3 {
    font-size: 22px;
    max-width: 356px;
    margin-top: 6px;
}

@media (max-width: 1199px) {
    .project-box-items-5 .content h3 {
        max-width: initial;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .project-box-items-5 .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .project-box-items-5 .content h3 {
        font-size: 18px;
    }
}

.project-box-items-5 .content h3 a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-items-5 .content h3 a:hover {
    color: var(--white);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.project-box-items-5 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .project-box-items-5 .thumb {
        height: 400px;
    }
}

.project-box-items-5 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-5 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-5:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-5:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-slider-5 {
    margin: 0 30px;
}

.project-details-wrapper .project-details-thumb {
    border-radius: 12px;
}

.project-details-wrapper .project-details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .title {
    margin-top: 30px;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .project-details-wrapper .title {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .project-details-wrapper .title {
        font-size: 35px;
    }
}

.project-details-wrapper .project-details-thumb-2 {
    margin-top: 30px;
}

.project-details-wrapper .project-details-thumb-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .title-2 {
    margin-top: 40px;
    font-size: 32px;
    font-weight: 600;
}

.project-details-wrapper .list-items {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .list-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-details-wrapper .list-items ul li {
    font-size: 16px;
    font-weight: 500;
    color: #577D7D;
}

.project-details-wrapper .list-items ul li:not(:last-child) {
    margin-bottom: 20px;
}

.project-details-wrapper .list-items ul li img {
    margin-right: 8px;
}

.project-details-wrapper .prev-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-top: 80px;
}

@media (max-width: 1199px) {
    .project-details-wrapper .prev-item {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.project-details-wrapper .prev-item .prev-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-details-wrapper .prev-item .prev-left .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-details-wrapper .prev-item .prev-left .content .prev-btn {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    color: #8D8D8D;
    font-family: "DM Sans", sans-serif;
}

.project-details-wrapper .prev-item .prev-left .content .prev-btn i {
    margin-right: 5px;
}

.project-details-wrapper .prev-item .prev-left .content p {
    color: #2F2E35;
    font-weight: 600;
    font-size: 18px;
    font-family: "Mona Sans", sans-serif;
}

.main-sideber .sideber-thumb-box .project-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.main-sideber .sideber-box {
    padding: 35px 30px;
    background-color: var(--white);
    border-radius: 12px;
    margin-top: 30px;
}

.main-sideber .sideber-box .title {
    font-size: 22px;
    font-weight: 600;
}

.main-sideber .sideber-box .line {
    width: 100px;
    height: 3px;
    background-color: var(--theme);
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-sideber .sideber-box .project-categories {
    margin-top: 30px;
}

.main-sideber .sideber-box .project-categories li {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #577D7D;
}

.main-sideber .sideber-box .project-categories li span {
    font-size: 16px;
    font-weight: 700;
    color: #1E1E1C;
}

.main-sideber .sideber-box .project-categories li:not(:last-child) {
    margin-bottom: 30px;
}

.main-sideber .sideber-box .project-categories li:hover a {
    color: var(--theme);
}

.main-sideber .sideber-box .social-icon {
    font-size: 20px;
    gap: 10px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.main-sideber .sideber-box .social-icon a {
    color: rgb(97, 96, 103);
    border: 1px solid rgba(156, 156, 222, 0.34);
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.main-sideber .sideber-box .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.main-sideber .sideber-call-box {
    background-color: var(--theme);
    margin-top: 30px;
    border-radius: 12px;
    padding: 40px;
}

.main-sideber .sideber-call-box .title-2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.main-sideber .sideber-call-box p {
    color: var(--white);
    margin-top: 12px;
    text-align: center;
}

.main-sideber .sideber-call-box .bottom-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.main-sideber .sideber-call-box .bottom-area .content span {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.main-sideber .sideber-call-box .bottom-area .content p {
    font-size: 18px;
    font-weight: 700;
}

.main-sideber .sideber-call-box .bottom-area .content p a {
    color: var(--white);
}

.project-box-items-style-9 {
    margin-top: 30px;
}

.project-box-items-style-9 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.project-box-items-style-9 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-style-9 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-style-9 .content {
    margin-top: 18px;
}

.project-box-items-style-9 .content h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .project-box-items-style-9 .content h3 {
        font-size: 24px;
    }
}

.project-box-items-style-9 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

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

.project-box-items-style-9 .content p {
    font-size: 16px;
}

.project-box-items-style-9:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-style-9:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 135px;
}

@media (max-width: 1199px) {
    .project-wrapper {
        gap: 10px 60px;
    }
}

@media (max-width: 991px) {
    .project-wrapper {
        gap: 10px 30px;
    }
}

@media (max-width: 767px) {
    .project-wrapper {
        gap: 0;
    }
}

.project-wrapper .project-item {
    width: calc(50% - 67.5px);
}

@media (max-width: 1199px) {
    .project-wrapper .project-item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 991px) {
    .project-wrapper .project-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .project-wrapper .project-item {
        width: 100%;
    }
}

.project-wrapper .project-item.full {
    width: 100%;
}

.project-wrapper .project-item .project-box-items-style-6 {
    margin-top: 30px;
    border-radius: 12px;
}

.project-wrapper .project-item .project-box-items-style-6 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.project-wrapper .project-item .project-box-items-style-6 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-wrapper .project-item .project-box-items-style-6 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-wrapper .project-item .project-box-items-style-6 .content {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .project-wrapper .project-item .project-box-items-style-6 .content {
        margin-top: 20px;
    }
}

.project-wrapper .project-item .project-box-items-style-6 .content h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .project-wrapper .project-item .project-box-items-style-6 .content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .project-wrapper .project-item .project-box-items-style-6 .content h3 {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.project-wrapper .project-item .project-box-items-style-6 .content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-wrapper .project-item .project-box-items-style-6 .content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-wrapper .project-item .project-box-items-style-6 .content .project-date {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .project-wrapper .project-item .project-box-items-style-6 .content .project-date {
        gap: 10px;
    }
}

.project-wrapper .project-item .project-box-items-style-6 .content .project-date li span {
    border: 1px solid rgba(29, 139, 138, 0.33);
    border-radius: 90px;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 15px;
    color: var(--theme);
}

@media (max-width: 767px) {
    .project-wrapper .project-item .project-box-items-style-6 .content .project-date li span {
        font-size: 13px;
        padding: 6px 12px;
    }
}

.project-wrapper .project-item .project-box-items-style-6.style-2 {
    margin-top: 65px;
}

@media (max-width: 991px) {
    .project-wrapper .project-item .project-box-items-style-6.style-2 {
        margin-top: 30px;
    }
}

.project-wrapper .project-item .project-box-items-style-6:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-wrapper .project-item .project-box-items-style-6:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-thumb-box-items-10 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .project-thumb-box-items-10 {
        height: 500px;
    }
    .project-thumb-box-items-10 img {
        object-fit: cover;
    }
}

.project-thumb-box-items-10 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.project-thumb-box-items-10 .project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background: var(--white);
    padding: 18px 20px;
    position: absolute;
    bottom: -100px;
    left: 30px;
    right: 30px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
    .project-thumb-box-items-10 .project-content {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }
}

.project-thumb-box-items-10 .project-content .text-items h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.project-thumb-box-items-10 .project-content .text-items h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-thumb-box-items-10 .project-content .text-items h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-thumb-box-items-10 .project-content .text-items .sm-text {
    background-color: rgba(29, 139, 138, 0.12);
    text-align: center;
    border-radius: 90px;
    color: rgb(29, 139, 138);
    font-weight: 600;
    padding: 12px 22px;
    line-height: 1;
    display: inline-block;
}

.project-thumb-box-items-10 .project-content .circle-icon {
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

.project-thumb-box-items-10 .project-content .circle-icon:hover {
    background-color: var(--header);
    color: var(--white);
}

.project-thumb-box-items-10:hover .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.project-thumb-box-items-10:hover img {
    transform: scale(1.1) rotate(2deg);
}

.project-section-10 {
    margin: 0 20px;
}

.project-wrapper-11 {
    margin-left: 112px;
    margin-right: -22%;
}

@media (max-width: 991px) {
    .project-wrapper-11 {
        margin: 0 18px;
    }
}

.project-box-items-11 {
    margin-top: 30px;
    border-radius: 12px;
}

.project-box-items-11.style-2 .content {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.project-box-items-11.style-2 .thumb {
    border-radius: 0px 0px 12px 12px;
}

.project-box-items-11.style-2 .thumb img {
    border-radius: 0px 0px 12px 12px;
}

.project-box-items-11 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0px 0px;
    z-index: 99;
}

.project-box-items-11 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0px 0px;
    position: relative;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-11 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-11 .content {
    padding: 40px 30px;
    border-radius: 12px;
    background-color: var(--white);
}

.project-box-items-11 .content .title {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .project-box-items-11 .content .title {
        font-size: 24px;
    }
}

.project-box-items-11 .content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.project-box-items-11 .content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-box-items-11 .content .number-area {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .project-box-items-11 .content .number-area {
        gap: 20px;
        display: grid;
        margin-top: 20px;
    }
}

.project-box-items-11 .content .number-area span {
    font-size: 18px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 1199px) {
    .project-box-items-11 .content .number-area span {
        font-size: 16px;
    }
}

.project-box-items-11 .content .number-area p {
    max-width: 390px;
    font-size: 18px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

@media (max-width: 1199px) {
    .project-box-items-11 .content .number-area p {
        font-size: 16px;
    }
}

.project-box-items-11:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-11:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.testi-big-client-image-style-1 {
    margin-top: 30px;
}

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

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

.testimonial-slider-1 {
    margin-left: -14%;
    margin-right: -41%;
}

@media (max-width: 1199px) {
    .testimonial-slider-1 {
        margin-left: 0;
        margin-right: 0;
    }
}

.testimonial-box-items-style-1 {
    margin-top: 30px;
}

.testimonial-box-items-style-1 .client-info {
    border-radius: 12px;
    background-color: var(--bg-2);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 30px;
}

.testimonial-box-items-style-1 .client-info .client-content .name {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-box-items-style-1 .testimonial-content {
    border-radius: 12px;
    background-color: var(--bg-2);
    padding: 30px;
    margin-top: 10px;
}

.testimonial-box-items-style-1 .testimonial-content .testi-top-area {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 12px;
}

.testimonial-box-items-style-1 .testimonial-content .testi-top-area .testi-point {
    color: var(--theme);
}

.testimonial-box-items-style-1 .testimonial-content .testi-top-area .star {
    color: #FF8000;
}

.testimonial-box-items-style-1 .testimonial-content .testi-text {
    color: var(--text);
    margin-top: 15px;
}

.testimonial-box-items-style-1 .testimonial-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 80px;
    color: #717171;
}

@media (max-width: 1199px) {
    .testimonial-box-items-style-1 .testimonial-content h3 {
        margin-top: 20px;
    }
}

.testimonial-section {
    position: relative;
    z-index: 9;
}

.testimonial-section .shape-1 {
    position: absolute;
    top: 100px;
    left: 100px;
    z-index: -1;
}

.testimonial-content-style-2 {
    position: relative;
}

.testimonial-content-style-2 .testi-text {
    text-align: center;
    margin-top: 25px;
}

.testimonial-content-style-2 .line {
    width: 256px;
    height: 3px;
    background-color: var(--theme);
    text-align: center;
    margin: 30px auto 30px;
}

.testimonial-content-style-2 .testimonial-box-items-2 {
    text-align: center;
    max-width: 855px;
    margin: 0 auto;
}

.testimonial-content-style-2 .testimonial-box-items-2 h3 {
    font-size: 32px;
}

@media (max-width: 1199px) {
    .testimonial-content-style-2 .testimonial-box-items-2 h3 {
        font-size: 28px;
        line-height: 145%;
    }
}

@media (max-width: 991px) {
    .testimonial-content-style-2 .testimonial-box-items-2 h3 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .testimonial-content-style-2 .testimonial-box-items-2 h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .testimonial-content-style-2 .testimonial-box-items-2 h3 {
        font-size: 20px;
    }
}

@media (max-width: 470px) {
    .testimonial-content-style-2 .testimonial-box-items-2 h3 {
        font-size: 18px;
    }
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 15px 30px;
    align-items: center;
    display: inline-flex;
    gap: 60px;
    margin: 60px auto 0;
}

@media (max-width: 1199px) {
    .testimonial-content-style-2 .testimonial-box-items-2 .client-info-area {
        margin-top: 48px;
    }
}

@media (max-width: 991px) {
    .testimonial-content-style-2 .testimonial-box-items-2 .client-info-area {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .testimonial-content-style-2 .testimonial-box-items-2 .client-info-area {
        margin-top: 25px;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding: 22px 30px;
    }
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .client-info .content h4 {
    font-size: 18px;
    text-align: left;
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .client-info .content p {
    font-size: 15px;
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .number-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .number-area span {
    font-size: 50px;
    font-weight: 600;
    color: var(--theme);
}

.testimonial-content-style-2 .testimonial-box-items-2 .client-info-area .number-area .star {
    color: #FF8000;
}

.testimonial-content-style-2 .array-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 999;
    top: 70%;
    transform: translateY(-50%);
    left: -8%;
    right: -8%;
}

@media (max-width: 1399px) {
    .testimonial-content-style-2 .array-button {
        display: none;
    }
}

.testimonial-content-style-2 .array-button .array-next,
.testimonial-content-style-2 .array-button .array-prev {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    color: var(--theme);
}

.testimonial-content-style-2 .array-button .array-next:hover,
.testimonial-content-style-2 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.testimonial-box-items-style-3 {
    margin-top: 60px;
    margin-bottom: 120px;
}

@media (max-width: 1199px) {
    .testimonial-box-items-style-3 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .testimonial-box-items-style-3 {
        margin-top: 30px;
        margin-bottom: 80px;
    }
}

.testimonial-box-items-style-3 .client-info {
    border-radius: 12px;
    background-color: var(--bg-2);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 30px;
    position: relative;
}

.testimonial-box-items-style-3 .client-info .quote-icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid var(--theme);
    background-color: var(--white);
    position: absolute;
    top: -30px;
    right: 13px;
}

@media (max-width: 991px) {
    .testimonial-box-items-style-3 .client-info .quote-icon {
        display: none;
    }
}

.testimonial-box-items-style-3 .client-info .client-content span {
    font-weight: 600;
    color: var(--header);
    font-size: 18px;
    font-family: "Mona Sans", sans-serif;
}

.testimonial-box-items-style-3 .testimonial-content {
    border-radius: 12px;
    background-color: var(--bg-2);
    padding: 30px;
    margin-top: 10px;
}

.testimonial-box-items-style-3 .testimonial-content .testi-top-area {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 12px;
}

.testimonial-box-items-style-3 .testimonial-content .testi-top-area .testi-point {
    color: var(--theme);
}

.testimonial-box-items-style-3 .testimonial-content .testi-top-area .star {
    color: #FF8000;
}

.testimonial-box-items-style-3 .testimonial-content .testi-text {
    color: var(--text);
    margin-top: 15px;
}

.testimonial-box-items-style-3 .testimonial-content h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 80px;
    color: #717171;
}

@media (max-width: 1199px) {
    .testimonial-box-items-style-3 .testimonial-content h3 {
        margin-top: 20px;
    }
}

.testimonial-section-3 {
    position: relative;
    z-index: 9;
}

.testimonial-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.58);
}

.testimonial-section-3 .array-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 999;
    top: 55%;
    transform: translateY(-50%);
    left: 12%;
    right: 12%;
}

@media (max-width: 1899px) {
    .testimonial-section-3 .array-button {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 1600px) {
    .testimonial-section-3 .array-button {
        left: 2%;
        right: 2%;
    }
}

@media (max-width: 1399px) {
    .testimonial-section-3 .array-button {
        display: none;
    }
}

.testimonial-section-3 .array-button .array-next,
.testimonial-section-3 .array-button .array-prev {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    color: var(--white);
}

.testimonial-section-3 .array-button .array-next:hover,
.testimonial-section-3 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.testimonial-section-4 {
    background-color: var(--white);
}

.testimonial-box-items-style-4 {
    margin-top: 30px;
    text-align: center;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    padding: 40px 30px;
}

.testimonial-box-items-style-4 .number-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-box-items-style-4 .number-area h3 {
    font-size: 50px;
    color: var(--theme);
}

.testimonial-box-items-style-4 h4 {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-box-items-style-4 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-box-items-style-4 .client-info .client-content h5 {
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

.testimonial-box-items-style-4 .client-info .client-content p {
    text-align: left;
    font-size: 14px;
}

.testimonial-left-items-5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-right-content-5 {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .testimonial-right-content-5 {
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .testimonial-right-content-5 .testimonial-box-5 {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
}

.testimonial-right-content-5 .testimonial-box-5 .star {
    color: rgb(255, 128, 0);
}

.testimonial-right-content-5 .testimonial-box-5 h3 {
    font-size: 27px;
    color: var(--white);
    margin-top: 25px;
}

@media (max-width: 1399px) {
    .testimonial-right-content-5 .testimonial-box-5 h3 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .testimonial-right-content-5 .testimonial-box-5 h3 {
        font-size: 22px;
        line-height: 140%;
    }
}

@media (max-width: 575px) {
    .testimonial-right-content-5 .testimonial-box-5 h3 {
        font-size: 19px;
    }
}

@media (max-width: 470px) {
    .testimonial-right-content-5 .testimonial-box-5 h3 {
        font-size: 17px;
    }
}

.testimonial-right-content-5 .testimonial-box-5 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .testimonial-right-content-5 .testimonial-box-5 .client-info {
        justify-content: center;
        margin-top: 25px;
    }
}

.testimonial-right-content-5 .testimonial-box-5 .client-info .content h4 {
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

.testimonial-right-content-5 .testimonial-box-5 .client-info .content p {
    color: var(--white);
}

.testimonial-section-5 {
    position: relative;
    z-index: 9;
}

.testimonial-section-5 .testimonial-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 1030px;
}

@media (max-width: 1600px) {
    .testimonial-section-5 .testimonial-shape {
        height: 900px;
    }
    .testimonial-section-5 .testimonial-shape img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.testimonial-section-5 .testimonial-shape img {
    width: 100%;
    height: 100%;
}

.testimonial-section-5 .testimonial-bottom-image {
    position: relative;
    z-index: 9;
    text-align: center;
    margin-top: 120px;
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .testimonial-section-5 .testimonial-bottom-image {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .testimonial-section-5 .testimonial-bottom-image {
        margin-top: 80px;
        height: 600px;
    }
}

@media (max-width: 767px) {
    .testimonial-section-5 .testimonial-bottom-image {
        height: 550px;
    }
}

@media (max-width: 575px) {
    .testimonial-section-5 .testimonial-bottom-image {
        height: 490px;
    }
}

.testimonial-section-5 .testimonial-bottom-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(3, 40, 40, 0.26);
    border-radius: 12px;
}

.testimonial-section-5 .testimonial-bottom-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    border: 4px solid rgba(255, 255, 255, 0.19);
    padding: 30px;
}

@media (max-width: 991px) {
    .testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 {
        display: none;
    }
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress {
    width: 88px;
    height: 88px;
    position: relative;
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress .bg {
    stroke: rgba(255, 255, 255, 0.19);
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress .progress {
    stroke: #fff;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .circle-progress .value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .content {
    margin-top: 10px;
}

.testimonial-section-5 .testimonial-bottom-image .single-circle-bar-5 .content p {
    color: var(--white);
}

.testimonial-section-5 .array-button {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .testimonial-section-5 .array-button {
        justify-content: center;
        margin-bottom: 30px;
        margin-top: 20px;
    }
}

.testimonial-section-5 .array-button .array-next,
.testimonial-section-5 .array-button .array-prev {
    display: inline-block;
    width: 55px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    background: rgba(255, 255, 255, 0.27);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(29.05px);
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    color: var(--white);
}

.testimonial-section-5 .array-button .array-next:hover,
.testimonial-section-5 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.testimonial-section-6 {
    position: relative;
}

.testimonial-section-6 .testimonial-clients h5 {
    margin-top: 15px;
    font-weight: 600;
}

.testimonial-wrapper-6 {
    margin-bottom: 120px;
}

.testimonial-wrapper-6 .testimonial-image-items {
    display: flex;
    align-items: flex-end;
    gap: 65px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-6 .testimonial-image-items {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper-6 .testimonial-image-items {
        display: block;
    }
}

.testimonial-wrapper-6 .testimonial-image-items .array-button {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .testimonial-wrapper-6 .testimonial-image-items .array-button {
        display: none;
    }
}

@media (max-width: 1199px) {
    .testimonial-wrapper-6 .testimonial-image-items .array-button {
        margin-bottom: 30px;
        margin-top: 20px;
    }
}

.testimonial-wrapper-6 .testimonial-image-items .array-button .array-next,
.testimonial-wrapper-6 .testimonial-image-items .array-button .array-prev {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #022423;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    color: var(--white);
}

@media (max-width: 991px) {
    .testimonial-wrapper-6 .testimonial-image-items .array-button .array-next,
    .testimonial-wrapper-6 .testimonial-image-items .array-button .array-prev {
        display: none;
    }
}

.testimonial-wrapper-6 .testimonial-image-items .array-button .array-next:hover,
.testimonial-wrapper-6 .testimonial-image-items .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

.testimonial-wrapper-6 .testimonial-image-items .image {
    border-radius: 10px;
}

.testimonial-wrapper-6 .testimonial-image-items .image img {
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-6 .testimonial-image-items .image img {
        width: 100%;
        height: 100%;
    }
}

.testimonial-wrapper-6 .testimonial-right-content-6 {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .testimonial-wrapper-6 .testimonial-right-content-6 {
        margin-left: 0;
    }
}

.testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .tittle {
    font-size: 18px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .tittle {
        font-size: 19px;
    }
}

.testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .client-info {
        margin-top: 25px;
    }
}

.testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .client-info .client-img img {
    border-radius: 50%;
}

.testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .client-info .content h4 {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-wrapper-6 .testimonial-right-content-6 .testimonial-box-6 .client-info .content p {
    color: #717171;
}

.testimonial-section-8::before {
    content: none;
}

.testimonial-section-8 .style-8 {
    margin-bottom: 25px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .testimonial-section-8 .style-8 {
        margin-bottom: 0;
    }
}

.testimonial-content-10 .testi-text {
    margin-top: 15px;
}

.testimonial-content-10 .array-button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-content-10 .array-button .array-next,
.testimonial-content-10 .array-button .array-prev {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
    margin-top: 40px;
}

.testimonial-content-10 .array-button .array-next:hover,
.testimonial-content-10 .array-button .array-prev:hover {
    background-color: var(--theme);
    color: var(--white);
}








.hero-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: #3abde5;
}

.service-box .icon {
    font-size: 22px;
    color: #3abde5;
    min-width: 40px;
}

.service-box h5 {
    margin: 0;
    color: #fff;
}




.service-box p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}


@media (max-width: 767px) {
    
.service-box h5 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}


.service-box p{
     font-size: 13px;
    color: #a99c9c;
}

 
.service-box {
    padding: 10px;
}
}


/* Right Side Stats Grid */
.stat-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
}

.stat-card:hover {
    border-color: #00d2ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.stat-card h2 {
    color: #00d2ff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.stat-card p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-card small {
    color: #888888;
    font-size: 14px;
    display: block;
}





