﻿@charset "UTF-8";

/*===========================
  01.COMMON CSS 
===========================*/

/* Felidae */
@font-face {
    font-family: "Felidae";
    src: url("../fonts/Felidae.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Tartuffo Thin */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-Thin-BF643371db08833.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

/* Tartuffo Thin Italic */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-ThinItalic-BF643371db0d546.otf") format("opentype");
    font-weight: 100;
    font-style: italic;
}

/* Tartuffo Light */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-Light-BF643371daf1e86.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

/* Tartuffo Light Italic */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-LightItalic-BF643371da383c5.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

/* Tartuffo Regular */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-Regular-BF643371db1355b.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* Tartuffo Regular Italic */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-RegularItalic-BF643371dadcd03.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

/* Tartuffo Medium */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-Medium-BF643371daee2ec.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

/* Tartuffo Medium Italic */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-MediumItalic-BF643371da36ab4.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

/* Tartuffo Bold */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-Bold-BF643371dae156a.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

/* Tartuffo Bold Italic */
@font-face {
    font-family: "Tartuffo";
    src: url("../fonts/Tartuffo_Trial-BoldItalic-BF643371dae73b0.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

:root {
    --font-archivo: "Montserrat", sans-serif;
    --font-spaceGrotesk: "Cormorant Infant", sans-serif;
    --font-felidae: "Playfair Display", sans-serif;
    --font-tartuffo-Trial: "Cormorant Infant", sans-serif;
    --font-kanit: "Montserrat", sans-serif;

    --white-color: #fff;
    --white-color-opc: 255, 255, 255;
    --dark-white-color: #fff;
    --dark-black-color: #020202;
    --black-color: #020202;
    --black-color-opc: 2, 2, 2;
    --dark-title-color: #020202;
    --title-color: #020202;
    --title-color-opc: 2, 2, 2;
    --dark-text-color: #999999;
    --text-color: #404040;
    --global-text-color: #404040;
    --text-color-opc: 64, 64, 64;
    --primary-color1: #5e39ff;
    --primary-color1-opc: 194, 238, 16;
    --borders-color: #E8E8E8;
    --borders-color-opc: 232, 232, 232;
}

body.dark {
    --dark-white-color: #020202;
    --black-color: #fff;
    --black-color-opc: 255, 255, 255;
    --title-color: #fff;
    --title-color-opc: 255, 255, 255;
    --text-color: #999999;
    --borders-color: #2F2F2F;
    --borders-color-opc: 47, 47, 47;
    background-color: #141414;
}

/*================================================
02. Mixins Css
=================================================*/
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--title-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

html, body {
    font-family: var(--font-kanit);
}

@media screen and (max-width: 767px) {
    html, body {
        font-size: 15px;
    }
}

body.portfolio-cursor #ball .ball-view-inner {
    background-color: var(--dark-white-color);
    min-width: 110px;
    height: 110px;
    border-radius: 50%;
    font-weight: 400;
    line-height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.banner-cursor #ball .ball-view-inner {
    padding: 15px 25px;
    background-color: var(--primary-color1);
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    line-height: 1;
    text-transform: uppercase;
}

body.bg-noise {
    background: url("../img/home9/noise-bg.png"), #141414;
    background-size: 300px 300px;
    animation: 250ms steps(10, end) 0s infinite alternate-reverse none running noise-animation;
}

@keyframes noise-animation {
    0% {
        background-position: 0% 0%;
    }
    10% {
        background-position: -5% -5%;
    }
    20% {
        background-position: -10% 5%;
    }
    30% {
        background-position: 5% -10%;
    }
    40% {
        background-position: -5% 15%;
    }
    50% {
        background-position: -10% 5%;
    }
    60% {
        background-position: 5% 5%;
    }
    70% {
        background-position: 0% 10%;
    }
    80% {
        background-position: -5% -5%;
    }
    90% {
        background-position: 10% 5%;
    }
}

body.pf-caption-mask-active .pf-caption-mask {
    clip-path: circle(200px at var(--x, 50%) var(--y, 50%));
}

body.pf-caption-mask-active #magic-cursor #ball {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-archivo);
    font-weight: 500;
    line-height: 1.4;
    color: var(--title-color);
}

h1 {
    font-size: 56px;
    line-height: 1.1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    h1 {
        font-size: 52px;
    }
}

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

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

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

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

@media (max-width: 576px) {
    h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}

h2 {
    font-size: 31px;
    font-weight: 500;
    line-height: 1.3;
}

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

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

@media (max-width: 576px) {
    h2 {
        font-size: 26px;
    }
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

@media (max-width: 576px) {
    h4 {
        font-size: 21px;
    }
}

h5 {
    font-size: 22px;
}

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

ol,
ul,
p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 576px) {
    ol,
    ul,
    p {
        font-size: 16px;
    }
}

input {
    border: none;
    outline: none;
}

button {
    outline: none;
    border: none;
}

i.bx {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.pb-130 {
    padding-bottom: 130px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pb-130 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .pb-130 {
        padding-bottom: 90px;
    }
}

.pb-150 {
    padding-bottom: 150px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pb-150 {
        padding-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .pb-150 {
        padding-bottom: 110px;
    }
}

@media (max-width: 767px) {
    .pb-150 {
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .pb-150 {
        padding-bottom: 80px;
    }
}

.pt-130 {
    padding-top: 130px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pt-130 {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .pt-130 {
        padding-top: 90px;
    }
}

.pt-150 {
    padding-top: 150px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pt-150 {
        padding-top: 120px;
    }
}

@media (max-width: 991px) {
    .pt-150 {
        padding-top: 110px;
    }
}

@media (max-width: 767px) {
    .pt-150 {
        padding-top: 100px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pt-120 {
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .pt-120 {
        padding-top: 70px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pb-120 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}

.pt-100 {
    padding-top: 110px;
}

@media (max-width: 991px) {
    .pt-100 {
        padding-top: 80px;
    }
}

.pb-100 {
    padding-bottom: 110px;
}

@media (max-width: 991px) {
    .pb-100 {
        padding-bottom: 80px;
    }
}

.pt-90 {
    padding-top: 90px;
}

@media (max-width: 991px) {
    .pt-90 {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .pt-90 {
        padding-top: 70px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .pb-90 {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-65 {
    padding-bottom: 65px;
}

.mt-120 {
    margin-top: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mt-120 {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .mt-120 {
        margin-top: 90px;
    }
}

.mt-150 {
    margin-top: 150px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mt-150 {
        margin-top: 120px;
    }
}

@media (max-width: 991px) {
    .mt-150 {
        margin-top: 110px;
    }
}

@media (max-width: 767px) {
    .mt-150 {
        margin-top: 100px;
    }
}

@media (max-width: 576px) {
    .mt-150 {
        margin-top: 80px;
    }
}

.mb-110 {
    margin-bottom: 110px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-110 {
        margin-bottom: 90px;
    }
}

@media (max-width: 991px) {
    .mb-110 {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .mb-110 {
        margin-bottom: 60px;
    }
}

.mb-120 {
    margin-bottom: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-120 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .mb-120 {
        margin-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .mb-120 {
        margin-bottom: 70px;
    }
}

.mb-130 {
    margin-bottom: 130px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-130 {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .mb-130 {
        margin-bottom: 90px;
    }
}

.mb-150 {
    margin-bottom: 150px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-150 {
        margin-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .mb-150 {
        margin-bottom: 110px;
    }
}

@media (max-width: 767px) {
    .mb-150 {
        margin-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .mb-150 {
        margin-bottom: 80px;
    }
}

.mb-140 {
    margin-bottom: 140px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-140 {
        margin-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .mb-140 {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .mb-140 {
        margin-bottom: 80px;
    }
}

.mb-100 {
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .mb-100 {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .mb-100 {
        margin-bottom: 70px;
    }
}

.mt-100 {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .mt-100 {
        margin-top: 80px;
    }
}

.mb-90 {
    margin-bottom: 90px;
}

@media (max-width: 991px) {
    .mb-90 {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .mb-90 {
        margin-bottom: 50px;
    }
}

.mb-80 {
    margin-bottom: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mb-80 {
        margin-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .mb-80 {
        margin-bottom: 70px;
    }
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-70 {
    padding-top: 70px;
}

@media (max-width: 991px) {
    .pt-70 {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .pt-70 {
        padding-top: 50px;
    }
}

.pt-50 {
    padding-top: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pt-50 {
        padding-top: 40px;
    }
}

@media (max-width: 991px) {
    .pt-50 {
        padding-top: 30px;
    }
}

.pt-40 {
    padding-top: 40px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-70 {
    padding-bottom: 70px;
}

@media (max-width: 991px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .pb-70 {
        padding-bottom: 50px;
    }
}

.pb-60 {
    padding-bottom: 60px;
}

.pl-110 {
    padding-left: 110px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pl-110 {
        padding-left: 70px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .pl-110 {
        padding-left: 40px;
    }
}

@media (max-width: 1199px) {
    .pl-110 {
        padding-left: unset;
    }
}

.mb-65 {
    margin-bottom: 65px;
}

@media (max-width: 1199px) {
    .mb-65 {
        margin-bottom: 55px;
    }
}

@media (max-width: 767px) {
    .mb-65 {
        margin-bottom: 45px;
    }
}

.mb-60 {
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .mb-60 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

.mb-70 {
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .mb-70 {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .mb-70 {
        margin-bottom: 50px;
    }
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-35 {
    margin-top: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .mb-40 {
        margin-bottom: 30px;
    }
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-50 {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .mb-50 {
        margin-bottom: 40px;
    }
}

.mt-60 {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .mt-60 {
        margin-top: 40px;
    }
}

.mt-65 {
    margin-top: 65px;
}

@media (max-width: 1199px) {
    .mt-65 {
        margin-top: 55px;
    }
}

@media (max-width: 767px) {
    .mt-65 {
        margin-top: 45px;
    }
}

.mt-70 {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .mt-70 {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .mt-70 {
        margin-top: 50px;
    }
}

#magic-cursor {
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
    display: block;
}

#ball {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--title-color);
    pointer-events: none;
    border-style: solid;
    border-radius: 100px;
    border-color: var(--primary-color1);
    background-color: var(--primary-color1);
    /* Note: border width handled through JS */
}

/* Ball view
============= */
#ball.ball-view {
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--font-kanit);
    line-height: 1;
    text-align: center;
    border-radius: 100px;
    /* pill shape */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* ✅ keep text one line */
    height: auto;
}

#ball .ball-view-inner {
    padding: 23px 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    background-color: var(--dark-white-color);
    border-radius: 100px;
    /* pill shape */
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
    font-family: var(--font-kanit);
    line-height: 1;
    text-transform: uppercase;
}

#ball .ball-view-inner i {
    font-size: 24px;
}

/* Ball drag
============= */
#ball .ball-drag {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--title-color);
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s;
}

#ball .ball-drag::before,
#ball .ball-drag::after {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    font-size: 16px;
    color: var(--primary-color1);
    height: 10px;
    line-height: 10px;
    /* Font Awesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

#ball .ball-drag::before {
    content: "\f060";
    /* Font Awesome */
    left: 0;
    transform: translate3d(-30px, 0, 0);
    transition: all 0.25s;
}

#ball .ball-drag::after {
    content: "\f061";
    /* Font Awesome */
    right: 0;
    transform: translate3d(30px, 0, 0);
    transition: all 0.25s;
}

#ball.magnetic-active {
    background-image: linear-gradient(112.83deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 255, 255, 0) 110.84%);
    background-color: rgba(var(--primary-color1-opc), 0.5);
    -webkit-backdrop-filter: blur(1.1px);
    backdrop-filter: blur(1.1px);
    border-color: transparent !important;
}

/* Ball close
============== */
#ball.ball-close-enabled {
    opacity: 1 !important;
}

#ball .ball-close {
    position: absolute;
    padding: 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color1);
    line-height: 1;
    text-align: center;
}

#scroll-btn {
    cursor: pointer;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--borders-color);
    background-color: transparent;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg {
    fill: none;
    transition: 0.5s;
}

.progress-wrap svg.progress-circle {
    stroke: var(--primary-color1);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap .arrow {
    fill: var(--primary-color1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.progress-wrap:hover {
    background-color: var(--primary-color1);
}

.progress-wrap:hover .arrow {
    fill: var(--dark-black-color);
}

.primary-btn1 {
    background-color: var(--primary-color1);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 14px;
    color: #ffff;
    letter-spacing: 0.48px;
    line-height: 1;
    text-transform: uppercase;
    padding: 23px 37px;
    border-radius: 100px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn1 > span {
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn1 > span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
    color: #fff;
}

.primary-btn1 > span svg {
    fill: var(--dark-title-color);
    transition: 0.5s;
}

.primary-btn1::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    background-color: var(--black-color);
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s;
    z-index: -1;
}

.primary-btn1:hover {
    color: var(--dark-white-color);
}

.primary-btn1:hover .arrow {
    fill: rgba(255, 255, 255, 0.15);
}

.primary-btn1:hover > span {
    transform: translateY(-150%);
    opacity: 0;
}

.primary-btn1:hover > span:nth-child(2) {
    opacity: 1;
    transform: translate(0%, -50%);
}

.primary-btn1:hover > span svg {
    fill: var(--dark-white-color);
    transition: 0.5s;
}

.primary-btn1:hover::after {
    transform: translate(0);
    border-radius: 0;
}

@media (max-width: 576px) {
    .primary-btn1 {
        padding: 20px 34px;
    }
}

.primary-btn1.white-bg {
    background-color: var(--white-color);
    color: var(--dark-title-color);
}

.primary-btn1.white-bg::after {
    background-color: var(--primary-color1);
}

.primary-btn1.white-bg > span svg {
    fill: var(--dark-title-color);
}

.primary-btn1.white-bg:hover {
    color: var(--dark-title-color);
}

.primary-btn1.black-bg {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.primary-btn1.black-bg::after {
    background-color: var(--primary-color1);
}

.primary-btn1.black-bg > span svg {
    fill: var(--dark-white-color);
}

.primary-btn1.black-bg:hover {
    color: var(--dark-title-color);
}

.primary-btn1.black-bg:hover > span svg {
    fill: var(--dark-title-color);
}

.primary-btn1.transparent {
    background-color: transparent;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
    padding: 16px 17px;
}

.primary-btn1.transparent::after {
    background-color: var(--primary-color1);
}

.primary-btn1.transparent span svg {
    fill: var(--title-color);
}

.primary-btn1.transparent:hover {
    color: var(--dark-title-color);
    border-color: var(--primary-color1);
}

.primary-btn1.transparent:hover span svg {
    fill: var(--dark-title-color);
}

.primary-btn2 {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.45s;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
}

.primary-btn2 .content {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--primary-color1);
    border-radius: 100px;
    padding: 23px 42px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: 0.45s;
}

@media (max-width: 576px) {
    .primary-btn2 .content {
        padding: 18px 27px;
        font-size: 12px;
    }
}

.primary-btn2 .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.45s;
    transform: scale3d(0.5, 0.5, 1);
    margin-inline-end: -60px;
    opacity: 0;
}

@media (max-width: 576px) {
    .primary-btn2 .icon {
        min-width: 48px;
        max-width: 48px;
        height: 48px;
        margin-inline-end: -48px;
    }
}

.primary-btn2 .icon svg {
    fill: none;
    stroke: var(--dark-title-color);
    transition: 0.5s;
}

.primary-btn2 .icon.two {
    transform: scale3d(1, 1, 1);
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 1;
}

.primary-btn2:hover .icon {
    transform: scale3d(1, 1, 1);
    margin-inline-end: 0;
    background-color: var(--black-color);
    opacity: 1;
}

.primary-btn2:hover .icon svg {
    stroke: var(--dark-white-color);
}

.primary-btn2:hover .icon.two {
    transform: scale3d(0.5, 0.5, 1);
    margin-inline-start: -60px;
    opacity: 0;
}

@media (max-width: 576px) {
    .primary-btn2:hover .icon.two {
        margin-inline-start: -56px;
    }
}

.primary-btn2:hover .content {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.primary-btn2.black-bg .content {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.primary-btn2.black-bg .icon {
    background-color: var(--black-color);
}

.primary-btn2.black-bg .icon svg {
    stroke: var(--dark-white-color);
}

.primary-btn2.black-bg:hover .icon {
    background-color: var(--primary-color1);
}

.primary-btn2.black-bg:hover .icon svg {
    stroke: var(--white-color);
}

.primary-btn2.black-bg:hover .content {
    background-color: var(--primary-color1);
    color: var(--white-color);
}

.primary-btn2.transparent .content {
    background-color: transparent;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
    padding: 22px 42px;
}

@media (max-width: 576px) {
    .primary-btn2.transparent .content {
        padding: 20px 35px;
    }
}

.primary-btn2.transparent .icon {
    background-color: transparent;
    border: 1px solid var(--borders-color);
}

.primary-btn2.transparent .icon svg {
    stroke: var(--title-color);
}

.primary-btn2.transparent:hover .icon {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.primary-btn2.transparent:hover .icon svg {
    stroke: var(--dark-title-color);
}

.primary-btn2.transparent:hover .content {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.primary-btn3 {
    background-color: var(--primary-color1);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-title-color);
    letter-spacing: 0.48px;
    line-height: 1;
    text-transform: uppercase;
    padding: 23px 37px;
    border-radius: 100px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 102% 102%;
    border-radius: inherit;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
    z-index: -1;
}

.primary-btn3::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    background-color: var(--black-color);
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s;
    z-index: -1;
}

.primary-btn3:hover {
    color: var(--white-color);
}

.primary-btn3:hover .arrow {
    fill: rgba(255, 255, 255, 0.15);
}

.primary-btn3:hover::after {
    transform: translate(0);
    border-radius: 0;
}

@media (max-width: 576px) {
    .primary-btn3 {
        padding: 20px 34px;
    }
}

.primary-btn3.white-bg {
    background-color: var(--white-color);
    color: var(--dark-title-color);
}

.primary-btn3.white-bg::after {
    background-color: var(--primary-color1);
}

.primary-btn3.white-bg > span svg {
    fill: var(--dark-title-color);
}

.primary-btn3.white-bg:hover {
    color: var(--dark-title-color);
}

.primary-btn3.black-bg {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.primary-btn3.black-bg::after {
    background-color: var(--primary-color1);
}

.primary-btn3.black-bg > span svg {
    fill: var(--dark-white-color);
}

.primary-btn3.black-bg:hover {
    color: var(--dark-title-color);
}

.primary-btn3.black-bg:hover > span svg {
    fill: var(--dark-title-color);
}

.primary-btn3.transparent {
    background-color: transparent;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
    padding: 16px 17px;
}

.primary-btn3.transparent::after {
    background-color: var(--primary-color1);
}

.primary-btn3.transparent span svg {
    fill: var(--title-color);
}

.primary-btn3.transparent:hover {
    color: var(--white-color);
    border-color: var(--primary-color1);
}

.primary-btn3.transparent:hover span svg {
    fill: var(--white-color);
}

.primary-btn4 {
    color: var(--dark-black-color);
    font-family: var(--font-kanit);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--primary-color1);
    padding: 23px 37px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    transition: all 0.6s;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 8px;
}

.primary-btn4 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 36px;
    background-color: var(--black-color);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn4:hover {
    color: var(--dark-white-color);
}

.primary-btn4:hover span {
    width: 225%;
    height: 1000.5px;
}

.primary-btn4.white-bg {
    background-color: var(--white-color);
    color: var(--title-color);
}

.primary-btn4.white-bg svg {
    stroke: var(--title-color);
}

.primary-btn4.white-bg:hover {
    color: var(--white-color);
}

.primary-btn4.white-bg:hover svg {
    stroke: var(--white-color);
}

.primary-btn4.black-bg {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.primary-btn4.black-bg span {
    background-color: var(--primary-color1);
}

.primary-btn4.black-bg svg {
    stroke: var(--dark-white-color);
}

.primary-btn4.black-bg:hover {
    color: var(--dark-title-color);
}

.primary-btn4.black-bg:hover svg {
    stroke: var(--dark-title-color);
}

.primary-btn4.transparent {
    background-color: transparent;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
    padding: 22px 37px;
}

.primary-btn4.transparent svg {
    stroke: var(--title-color);
}

.primary-btn4.transparent span {
    background-color: var(--primary-color1);
}

.primary-btn4.transparent:hover {
    color: var(--dark-title-color);
}

.primary-btn4.transparent:hover svg {
    stroke: var(--dark-title-color);
}

.primary-btn5 {
    background-color: var(--black-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-title-color);
    letter-spacing: 0.48px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 100px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
}

.primary-btn5 svg {
    fill: none;
    stroke: var(--dark-title-color);
}

.primary-btn5 span {
    width: 100%;
    height: 100%;
    background: var(--primary-color1);
    text-align: center;
    -webkit-mask: url("../img/home7/btn-hover-img.png");
    mask: url("../img/home7/btn-hover-img.png");
    -webkit-mask-size: 3000% 100%;
    mask-size: 3000% 100%;
    animation: ani2 0.5s steps(29) forwards;
    padding: 23px 37px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 576px) {
    .primary-btn5 span {
        padding: 20px 34px;
    }
}

.primary-btn5 .btn-text {
    text-align: center;
    position: absolute;
    font-weight: 500;
    overflow: hidden;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn5 .btn-text svg {
    fill: none;
    stroke: var(--white-color);
}

.primary-btn5:hover span {
    animation: ani 0.5s steps(29) forwards;
}

.primary-btn5.black-bg {
    background-color: var(--primary-color1);
    color: var(--dark-white-color);
}

.primary-btn5.black-bg svg {
    stroke: var(--dark-white-color);
}

.primary-btn5.black-bg span {
    background-color: var(--black-color);
}

.primary-btn5.black-bg .btn-text {
    color: var(--dark-title-color);
}

.primary-btn5.black-bg .btn-text svg {
    stroke: var(--dark-title-color);
}

.primary-btn5.transparent {
    background-color: var(--borders-color);
    color: var(--title-color);
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

.primary-btn5.transparent span {
    background: var(--dark-white-color);
    border-radius: 100px;
    padding: 22px 37px;
}

.primary-btn5.transparent:hover {
    background-color: var(--black-color);
}

@keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

.scramble-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
}

.circle-btn {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
    text-align: center;
    font-family: var(--font-kanit);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
}

.circle-btn strong {
    display: block;
    font-weight: 500;
    line-height: 20px;
}

.circle-btn svg {
    fill: none;
    stroke: var(--title-color);
    transition: all 0.6s;
    margin-bottom: 12px;
}

.circle-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-color1);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle-btn:hover {
    border-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.circle-btn:hover svg {
    stroke: var(--dark-title-color);
}

.circle-btn:hover span {
    width: 225%;
    height: 1000.5px;
}

@media (max-width: 576px) {
    .circle-btn {
        height: 160px;
        width: 160px;
    }
}

.circle-btn.two {
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

.select {
    margin-bottom: 25px;
}

.nice-select {
    width: 100%;
    height: 50px;
    line-height: 48px;
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    background: var(---dark-white-color);
    border-color: var(--borders-color);
    border-radius: 5px;
    padding-left: 25px;
    padding-right: 25px;
}

.nice-select:hover {
    border-color: var(--borders-color);
}

.nice-select:focus {
    border-color: var(--black-color);
}

.nice-select.open {
    border-radius: 5px 5px 0 0;
}

.nice-select.open::after {
    transform: rotate(-180deg);
}

.nice-select:after {
    border-bottom: none;
    border-right: none;
    content: "";
    display: block;
    height: 7px;
    width: 10px;
    background-color: #DFDFDF;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 25px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transform: rotate(0);
}

.nice-select .list {
    width: 100%;
    background: var(--dark-white-color);
    margin-top: 0;
    border-radius: 0 0 5px 5px;
}

.nice-select .list .option {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--borders-color);
}

.nice-select .list .option:last-child {
    border-bottom: unset;
}

.section-title > span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    padding-left: 13px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .section-title > span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title > span {
        margin-bottom: 15px;
    }
}

.section-title > span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999999;
}

.section-title h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

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

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

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

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 30px;
    }
}

.section-title p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
    padding-top: 12px;
    max-width: 536px;
    width: 100%;
}

@media (max-width: 991px) {
    .section-title p {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .section-title p {
        font-size: 16px;
        padding-top: 15px;
    }
}

.section-title.white > span {
    color: var(--white-color);
}

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

.section-title.white p {
    color: var(--dark-text-color);
}

.section-title.text-center p {
    margin: 0 auto;
}

.section-title.two {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

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

.section-title.two > span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    padding: 7px 17px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    margin-bottom: 0;
    white-space: nowrap;
    margin-top: 10px;
}

.section-title.two > span::before {
    display: none;
}

.home3-service-section .service-title-area .about-btn,
.section-title.two h2 {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    max-width: 1120px;
    width: 100%;

}

.home7-testimonial-section .section-title.two h2 {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1699px) {
    .home3-service-section .service-title-area .about-btn,
    .section-title.two h2 {
        max-width: 1020px;
        font-size: 46px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-service-section .service-title-area .about-btn,
    .section-title.two h2 {
        max-width: 920px;
        font-size: 44px;
    }
}

@media (max-width: 1399px) {
    .home3-service-section .service-title-area .about-btn,
    .section-title.two h2 {
        max-width: 850px;
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .home3-service-section .service-title-area .about-btn,
    .section-title.two h2 {
        max-width: 770px;
        font-size: 38px;
    }
}

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

@media (max-width: 576px) {
    .section-title.two h2 {
        font-size: 26px;
        line-height: 1.3;
    }
}

.section-title.two h2 span {
    width: 200px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .section-title.two h2 span {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .section-title.two h2 span {
        display: none;
    }
}

.section-title.two h2.text_color_invert > div {
    background-image: linear-gradient(to right, var(--title-color) 50%, var(--dark-text-color) 50%);
    background-size: 200% 100%;
    background-position: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-title.two.white > span {
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.section-title.two.white h2.text_color_invert > div {
    background-image: linear-gradient(to right, var(--white-color) 50%, var(--dark-text-color) 50%);
}

.section-title.three h2 {
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.section-title.three h2 span {
    font-weight: 500;
}

.section-title.four strong {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 7px 17px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .section-title.four strong {
        margin-bottom: 35px;
    }
}

.section-title.four h2 {
    font-family: var(--font-tartuffo-Trial);
    font-size: 70px;
    font-weight: 300;
    display: block;
    line-height: 1.1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .section-title.four h2 {
        font-size: 63px;
    }
}

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

@media (min-width: 992px) and (max-width: 1199px) {
    .section-title.four h2 {
        font-size: 48px;
    }
}

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

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

@media (max-width: 576px) {
    .section-title.four h2 {
        font-size: 42px;
        line-height: 1.2;
    }
}

.section-title.four h2 span {
    font-family: var(--font-felidae);
    font-weight: 400;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 3px;
    background-position: right 90%;
    transition: background-size 0.75s;
    line-height: 1;
}

.section-title.four h2:hover span {
    background-size: 100% 3px;
    background-position: 0 90%;
}

@media (max-width: 767px) {
    .section-title.four h2 span {
        background-size: 0px 2px;
    }

    .section-title.four h2:hover span {
        background-size: 100% 2px;
    }
}

.section-title.five span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 18px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    margin-bottom: 0;
    white-space: nowrap;
    margin-top: 10px;
    display: inline-block;
}

.section-title.five span::before {
    display: none;
}

@media (max-width: 991px) {
    .section-title.five span {
        margin-bottom: 25px;
        margin-top: 0;
    }
}

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

@media (max-width: 576px) {
    .section-title.five span {
        font-size: 17px;
    }
}

.section-title.five h2 {
    color: var(--dark-text-color);
    letter-spacing: -0.02em;
}

@media (max-width: 1699px) {
    .section-title.five h2 {
        font-size: 46px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .section-title.five h2 {
        font-size: 44px;
    }
}

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

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

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

@media (max-width: 576px) {
    .section-title.five h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.section-title.five h2.text_color_invert > div {
    background-image: linear-gradient(to right, var(--title-color) 50%, var(--dark-text-color) 50%);
    background-size: 200% 100%;
    background-position: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-title.six > span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    padding: 7px 17px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .section-title.six > span {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .section-title.six > span {
        margin-bottom: 20px;
    }
}

.section-title.six > span::before {
    display: none;
}

.section-title.six h2 {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    letter-spacing: 0.03em;
}

@media (max-width: 1699px) {
    .section-title.six h2 {
        font-size: 46px;
    }
}

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

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

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

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

@media (max-width: 576px) {
    .section-title.six h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}

.section-title.six h2.text_color_invert > div {
    background-image: linear-gradient(to right, var(--title-color) 50%, var(--dark-text-color) 50%);
    background-size: 200% 100%;
    background-position: 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-title.six.white > span {
    color: var(--dark-text-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-title.six.white h2.text_color_invert > div {
    background-image: linear-gradient(to right, var(--white-color) 50%, var(--dark-text-color) 50%);
}

.section-title.inner-title h2 {
    font-size: 70px;
}

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

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

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

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

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

.section-title.inner-title p {
    max-width: 630px;
}

.slider-btn-grp {
    display: flex;
    align-items: center;
    gap: 50px;
}

@media (max-width: 576px) {
    .slider-btn-grp {
        gap: 40px;
    }
}

.slider-btn-grp .slider-btn {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .slider-btn-grp .slider-btn {
        min-width: 44px;
        max-width: 44px;
        height: 44px;
    }
}

.slider-btn-grp .slider-btn svg {
    fill: var(--black-color);
    transition: 0.5s;
}

.slider-btn-grp .slider-btn:hover {
    background-color: var(--black-color);
}

.slider-btn-grp .slider-btn:hover svg {
    fill: var(--white-color);
}

.slider-btn-grp .slider-btn.swiper-button-disabled {
    opacity: 0.2;
}

.paginations {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: unset;
    z-index: 9;
    gap: 8px;
}

@media (max-width: 576px) {
    .paginations {
        justify-content: center;
    }
}

.paginations .swiper-pagination-bullet {
    height: 8px;
    width: 28px;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
    opacity: 1;
    position: relative;
    border-radius: 100px;
}

.paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.form-inner {
    line-height: 1;
}

.form-inner label {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    line-height: 1;
    margin-bottom: 12px;
}

.form-inner input {
    width: 100%;
    background: transparent;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    height: 56px;
    border: 1px solid var(--borders-color);
    border-radius: 5px;
}

.form-inner input::-moz-placeholder {
    color: var(--dark-text-color);
}

.form-inner input::placeholder {
    color: var(--dark-text-color);
}

.form-inner input:focus {
    border-color: var(--black-color);
}

.form-inner textarea {
    width: 100%;
    border-radius: 5px;
    background: transparent;
    color: var(--title-color);
    border: 1px solid var(--borders-color);
    outline: none;
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    padding: 20px 25px;
    min-height: 170px;
    resize: none;
}

@media (max-width: 576px) {
    .form-inner textarea {
        padding: 20px 15px;
    }
}

.form-inner textarea:focus {
    border-color: var(--black-color);
}

.form-inner textarea::-moz-placeholder {
    color: var(--dark-text-color);
}

.form-inner textarea::placeholder {
    color: var(--dark-text-color);
}

.form-inner.two label {
    font-family: var(--font-archivo);
}

.form-inner2 .form-check {
    min-height: unset;
    margin-bottom: 0;
}

.form-inner2 .form-check .form-check-input {
    cursor: pointer;
    height: 16px;
    width: 16px;
    margin-top: 8px;
    background-color: transparent;
    border: 1px solid var(--borders-color);
    border-radius: 5px;
}

.form-inner2 .form-check .form-check-input:focus {
    box-shadow: none;
}

.form-inner2 .form-check .form-check-input:checked {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.form-inner2 .form-check .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("../img/innerpages/icon/check-icon.svg");
}

.form-inner2 .form-check .form-check-label {
    cursor: pointer;
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .form-inner2 .form-check .form-check-label {
        font-size: 15px;
    }
}

.form-inner2 .form-check .form-check-label span {
    color: var(--title-color);
    font-weight: 400;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-underline-offset: 2px;
}

.form-inner2 .form-check .form-check-label a {
    color: var(--title-color);
    font-weight: 400;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 90%;
    transition: background-size 0.75s;
}

.form-inner2 .form-check .form-check-label a:hover {
    background-size: 0px 1px;
    background-position: 0 90%;
}

.container.one {
    max-width: 1290px;
}

.container-fluid.one {
    max-width: 1820px;
    padding: 0 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .container-fluid.one {
        padding: 0 40px;
    }
}

@media (max-width: 1399px) {
    .container-fluid.one {
        padding: 0 35px;
    }
}

@media (max-width: 1199px) {
    .container-fluid.one {
        padding: 0 25px;
    }
}

@media (max-width: 767px) {
    .container-fluid.one {
        padding: 0 15px;
    }
}

.loader {
    bottom: auto;
    color: #fff;
    display: block;
    height: 100dvh;
    position: fixed;
    z-index: 100000000;
}

.loader,
.loader__bg {
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.loader__bg {
    background-color: #020202;
    bottom: 0;
    height: 100%;
    position: absolute;
}

.loader__container {
    align-items: center;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

.loader__bg-bar {
    background-color: #fff;
    bottom: 0;
    height: 0.5em;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    transform: scaleX(0);
    transform-origin: 0;
    transform-style: preserve-3d;
    width: 100%;
    z-index: 1;
}

.loader__logo-last,
.loader__logo-wrap {
    align-items: center;
    justify-content: center;
    width: 18rem;
}

@media (max-width: 576px) {
    .loader__logo-last,
    .loader__logo-wrap {
        width: 14rem;
    }
}

.loader__logo-last {
    align-items: center;
    justify-content: center;
    width: 150px;
}

@media (max-width: 991px) {
    .loader__logo-last {
        width: 125px;
    }
}

@media (max-width: 767px) {
    .loader__logo-last {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .loader__logo-last {
        width: 80px;
    }
}

@media (min-width: 991px) {
    .loader__logo-wrap {
        width: 25rem;
    }
}

.loader__logo-last,
.loader__logo-wrap {
    display: flex;
    height: 100%;
    position: relative;
}

.loader__logo-last {
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    position: absolute;
}

.loader__logo-item {
    position: absolute;
    width: 100%;
}

.loader__logo-item.is--base {
    opacity: 0.2;
}

.loader__logo-item.is--top {
    clip-path: inset(0 100% 0 0);
}

.loader__logo-img {
    display: block;
    width: 100%;
}

.loader__text-wrap {
    align-items: center;
    bottom: 3.5rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: absolute;
}

.loader__text-el {
    position: absolute;
    text-transform: capitalize;
    white-space: nowrap;
}

.fill-current {
    fill: currentColor;
}

.fav-icon {
    /*fill: var(--primary-color1);*/
    fill: var(--white-color);
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.loader__text-el {
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white-color);
    letter-spacing: 0.05em;
}

@media (max-width: 576px) {
    .loader__text-el {
        font-size: 13px;
    }
}

[data-load-reset] {
    opacity: 0;
}

/*=====================================
  03. Header CSS
========================================*/
@keyframes fade-down {
    0% {
        opacity: 0;
        transform: scaleY(0);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }
}

@keyframes zoom-In-effect {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

header.style-1 {
    background-color: transparent;
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 999;
    transition: all 0.8s ease-out 0s;
    padding: 18px 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    header.style-1 {
        padding: 18px 30px;
    }
}

@media (max-width: 1399px) {
    header.style-1 {
        padding: 18px 25px;
    }
}

@media (max-width: 1199px) {
    header.style-1 {
        padding: 18px 20px;
    }
}

@media (max-width: 767px) {
    header.style-1 {
        padding: 18px 10px;
    }
}

header.style-1.sticky {
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--dark-white-color);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    z-index: 999;
}

@media (max-width: 576px) {
    header.style-1.sticky {
        padding: 18px 0;
    }
}

header.style-1.sticky .primary-btn1 {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

header.style-1.sticky .primary-btn1::after {
    background-color: var(--primary-color1);
}

header.style-1.sticky .primary-btn1:hover {
    color: var(--dark-title-color);
}

header.style-1.sticky .nav-right .right-sidebar-button {
    border-color: var(--borders-color);
}

header.style-1.sticky .nav-right .right-sidebar-button svg {
    fill: var(--black-color);
}

header.style-1 .logo-and-location-area {
    display: flex;
    align-items: center;
    gap: 150px;
}

@media (max-width: 1399px) {
    header.style-1 .logo-and-location-area {
        gap: 100px;
    }
}

header.style-1 .company-logo img {
    width: 94px;
}

header.style-1 .location {
    display: flex;
    align-items: center;
    gap: 10px;
}

header.style-1 .location svg {
    fill: var(--title-color);
    margin-bottom: 2px;
}

header.style-1 .location span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

header.style-1 .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    header.style-1 .nav-right {
        gap: 10px;
    }
}

header.style-1 .nav-right .right-sidebar-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(var(--white-color-opc), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

@media (max-width: 991px) {
    header.style-1 .nav-right .right-sidebar-button {
        border-color: rgba(var(--black-color-opc), 0.2);
    }
}

@media (max-width: 576px) {
    header.style-1 .nav-right .right-sidebar-button {
        width: 40px;
        height: 40px;
    }
}

header.style-1 .nav-right .right-sidebar-button svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 991px) {
    header.style-1 .nav-right .right-sidebar-button svg {
        fill: var(--black-color);
    }
}

header.style-1 .nav-right .right-sidebar-button:hover {
    background-color: var(--primary-color1);
}

header.style-1 .nav-right .right-sidebar-button:hover svg {
    fill: var(--dark-title-color);
}

header.style-1 .primary-btn1 {
    padding: 13px 22px;
}

@media (max-width: 576px) {
    header.style-1 .primary-btn1 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

header.style-2 {
    background-color: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.8s ease-out 0s;
}

@media (max-width: 991px) {
    header.style-2 {
        padding: 18px 0px;
    }
}

header.style-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--dark-white-color);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    z-index: 999;
}

header.style-2 .company-logo img {
    width: 146px;
}

header.style-2 .company-logo .dark {
    display: none;
}

header.style-2 .nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1199px) {
    header.style-2 .nav-right {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    header.style-2 .nav-right {
        gap: 10px;
    }
}

header.style-2 .nav-right .right-sidebar-button {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

@media (max-width: 576px) {
    header.style-2 .nav-right .right-sidebar-button {
        width: 40px;
        height: 40px;
    }
}

header.style-2 .nav-right .right-sidebar-button svg {
    fill: var(--black-color);
    transition: 0.5s;
}

header.style-2 .nav-right .right-sidebar-button:hover {
    background-color: var(--primary-color1);
}

header.style-2 .nav-right .right-sidebar-button:hover svg {
    fill: var(--white-color);
}

header.style-2 .nav-right .mobile-menu-btn {
    display: none;
    visibility: hidden;
}

@media (max-width: 991px) {
    header.style-2 .nav-right .mobile-menu-btn {
        display: flex;
        align-items: center;
        visibility: visible;
        justify-content: center;
        position: relative;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--borders-color);
    }

    header.style-2 .nav-right .mobile-menu-btn svg {
        fill: var(--title-color);
    }

    header.style-2 .nav-right .mobile-menu-btn:hover svg {
        animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
    }
}

@media (max-width: 576px) {
    header.style-2 .nav-right .mobile-menu-btn {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }

    header.style-2 .nav-right .mobile-menu-btn svg {
        width: 18px;
    }
}

@keyframes qode-draw {
    0%, 100% {
        clip-path: inset(-2px -2px);
    }
    42% {
        clip-path: inset(-2px -2px -2px 100%);
    }
    43% {
        clip-path: inset(-2px 100% -3px -2px);
    }
}

header.style-2 .primary-btn1, header.style-2 .primary-btn4 {
    padding: 13px 22px;
}

@media (max-width: 576px) {
    header.style-2 .primary-btn1, header.style-2 .primary-btn4 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

header.style-2 .primary-btn3 {
    padding: 13px 22px;
}

@media (max-width: 991px) {
    header.style-2 .primary-btn3 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    header.style-2 .primary-btn3 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

header.style-2 .primary-btn5 span {
    padding: 13px 22px;
    justify-content: center;
}

header.style-2 .main-menu {
    display: inline-block;
}

header.style-2 .main-menu > ul {
    list-style: none;
    margin: 0;
}

header.style-2 .main-menu > ul > li {
    display: inline-block;
    position: relative;
    padding: 30px 12px;
}

@media (max-width: 1399px) {
    header.style-2 .main-menu > ul > li {
        padding: 30px 12px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li {
        padding: 30px 8px;
    }
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li {
        padding: 0px 12px;
    }
}

header.style-2 .main-menu > ul > li.position-inherit {
    position: inherit;
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li.position-inherit {
        position: relative;
    }
}

header.style-2 .main-menu > ul > li:hover i {
    color: var(--black-color);
    font-size: 20px;
}

@media (min-width: 992px) {
    header.style-2 .main-menu > ul > li:first-child {
        padding-left: 0;
    }

    header.style-2 .main-menu > ul > li:last-child {
        padding-right: 0;
    }
}

header.style-2 .main-menu > ul > li > a {
    color: var(--title-color);
    display: block;
    letter-spacing: 0.4px;
    padding: 3px 22px 3px 10px;
    line-height: 1;
    position: relative;
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.5s ease-out 0s;
    position: relative;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-2 .main-menu > ul > li > a {
        padding: 3px 15px 3px 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li > a {
        font-size: 14px;
        padding: 3px 12px 3px 10px;
    }
}

header.style-2 .main-menu > ul > li i {
    font-size: 20px;
    text-align: center;
    color: var(--title-color);
    font-style: normal;
    position: absolute;
    right: -5px;
    top: 35px;
    z-index: 999;
    cursor: pointer;
    display: none;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li i {
        opacity: 1;
    }
}

header.style-2 .main-menu > ul > li i.active {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li i.active::before {
    content: "\f2ea";
}

header.style-2 .main-menu > ul > li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    margin: 0;
    display: none;
    min-width: 220px;
    background: var(--dark-white-color);
    border: 1px solid var(--borders-color);
    border-radius: 10px;
    padding: 15px 0;
    text-align: left;
    transform-origin: top;
}

@media (max-width: 1199px) {
    header.style-2 .main-menu > ul > li ul.sub-menu {
        box-shadow: none;
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li {
    padding: 0;
    display: block;
    position: relative;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li i {
    position: absolute;
    top: 14px;
    right: 20px;
    display: block;
    color: var(--title-color);
    font-size: 14px;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    color: var(--dark-text-color);
    opacity: 1;
    top: 16px;
    font-size: 10px;
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
        right: 0;
        top: 10px;
        font-size: 20px;
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li > a {
    display: block;
    padding: 11px 20px;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-archivo);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 1.2;
    transition: all 0.4s ease-out 0s;
    position: relative;
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li ul.sub-menu > li > a {
        border-color: rgba(233, 228, 228, 0.5);
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li > a::before {
        background: linear-gradient(90deg, #ddd, #EFB93F, #ddd);
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li > a:hover {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li > a:hover::before {
    transform: scale(1);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li > a.active::before {
    transform: scale(1);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child > a {
    border-bottom: none;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
    display: none;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    padding: 10px 0;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 10px 20px;
}

header.style-2 .main-menu > ul > li ul.sub-menu > li:hover > a {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li.active > a {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
    left: 218px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: var(--dark-white-color);
    padding: 10px 0;
    top: 3px;
}

@media (max-width: 1199px) {
    header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
        box-shadow: none;
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu::before {
    display: none;
    visibility: hidden;
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu {
        position: unset;
        max-width: 230px;
        min-width: 215px;
        background: transparent;
        top: 0;
        padding: 5px 0;
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
    display: block;
}

@media (min-width: 992px) {
    header.style-2 .main-menu > ul > li ul.sub-menu > li:hover > .sub-menu {
        display: block;
        animation: fade-down 0.45s linear;
    }
}

header.style-2 .main-menu > ul > li ul.sub-menu > li:last-child {
    border-bottom: none;
}

header.style-2 .main-menu > ul > li .mega-menu {
    position: absolute;
    left: 0;
    top: 75px;
    margin: 0 50px;
    display: none;
    background: var(--dark-white-color);
    border: 1px solid rgba(var(--borders-color-opc), 0.5);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 20px;
    width: calc(100% - 100px);
    transform-origin: top;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    header.style-2 .main-menu > ul > li .mega-menu {
        margin: 0 40px;
        width: calc(100% - 80px);
    }
}

@media (max-width: 1399px) {
    header.style-2 .main-menu > ul > li .mega-menu {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu {
        max-height: 550px;
        overflow-y: auto;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
    padding: 40px 0 80px;
    border-right: 1px solid var(--borders-color);
    position: relative;
}

@media (max-width: 1399px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
        padding: 40px 0 60px;
    }
}

@media (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
        padding: 30px 0 40px;
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item:last-child {
    padding-right: 0;
    border-right: unset;
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
    padding: 0 0 20px 50px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--borders-color);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
        padding: 0 0 20px 40px;
    }
}

@media (max-width: 1399px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
        margin-bottom: 25px;
        padding: 0 0 20px 30px;
    }
}

@media (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
        margin-bottom: 20px;
        padding: 0 0 20px 20px;
    }
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
        margin-bottom: 15px;
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 0 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
        padding: 0 40px;
    }
}

@media (max-width: 1399px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
        padding: 0 30px;
    }
}

@media (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
        padding: 0 20px;
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
    margin-bottom: 30px;
    line-height: 1;
    padding: 0;
    display: block;
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child {
    margin-bottom: 0;
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a {
        font-size: 16px;
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a .batch {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    display: block;
    padding: 2px 8px;
    border-radius: 100px;
    background-color: var(--primary-color1);
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a .batch {
        font-weight: 400;
    }
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a .batch {
        font-size: 12px;
        padding: 2px 6px;
    }
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a:hover {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li.active a {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li.menu-item-has-children {
    transition: all 0.55s ease-in-out;
}

header.style-2 .main-menu > ul > li.menu-item-has-children > a::before {
    content: "\f229";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 8px;
    top: 52%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--dark-text-color);
    transition: all 0.5s ease-out 0s;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-2 .main-menu > ul > li.menu-item-has-children > a::before {
        right: 2px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .main-menu > ul > li.menu-item-has-children > a::before {
        right: 0px;
    }
}

@media (max-width: 991px) {
    header.style-2 .main-menu > ul > li.menu-item-has-children > a::before {
        display: none;
    }
}

header.style-2 .main-menu > ul > li.menu-item-has-children:hover > a::before {
    color: var(--title-color);
}

@media (min-width: 992px) {
    header.style-2 .main-menu > ul > li:hover > ul.sub-menu {
        display: block;
        animation: fade-down 0.3s linear;
    }
}

@media (min-width: 992px) {
    header.style-2 .main-menu > ul > li:hover .mega-menu {
        display: block;
        animation: fade-down 0.3s linear;
    }
}

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

header.style-2 .main-menu > ul > li:hover > a::before {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li:hover .dropdown-icon2 {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li:hover.menu-item-has-children > a::before {
    color: var(--primary-color4);
}

header.style-2 .main-menu > ul > li.active > a {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li.active > a::before {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li.active i {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li.active .dropdown-icon2 {
    color: var(--title-color);
}

header.style-2 .main-menu > ul > li.active.menu-item-has-children > a::before {
    color: var(--title-color);
}

header.style-2 .main-menu > ul li.menu-item-has-children > i {
    display: none;
}

header.style-2 .mobile-logo-area .mobile-logo-wrap img {
    width: 94px;
}

header.style-2 .mobile-logo-area .mobile-logo-wrap .dark {
    display: none;
}

header.style-2 .mobile-logo-area .menu-close-btn {
    height: 38px;
    width: 38px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s;
}

header.style-2 .mobile-logo-area .menu-close-btn i {
    font-size: 26px;
    line-height: 1;
    color: var(--title-color);
    transition: 0.35s;
}

header.style-2 .mobile-logo-area .menu-close-btn:hover {
    background-color: var(--title-color);
}

header.style-2 .mobile-logo-area .menu-close-btn:hover i {
    color: var(--dark-white-color);
}

@media only screen and (max-width: 991px) {
    header.style-2 .dropdown-icon {
        color: var(--white-color);
    }

    header.style-2 .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        padding: 30px 20px !important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--dark-white-color);
        border-right: 1px solid var(--borders-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
    }

    header.style-2 .main-menu.show-menu {
        transform: translateX(0);
    }

    header.style-2 .main-menu .mobile-menu-logo {
        text-align: left;
        padding-top: 20px;
        display: block;
        padding-bottom: 8px;
    }

    header.style-2 .main-menu .menu-list {
        padding-top: 50px;
        padding-bottom: 30px;
        border: unset;
    }

    header.style-2 .main-menu > ul {
        float: none;
        text-align: left;
        padding: 5px 0px 20px 0;
    }

    header.style-2 .main-menu > ul > li {
        display: block;
        position: relative;
        padding: 0;
    }

    header.style-2 .main-menu > ul > li i {
        display: block;
    }

    header.style-2 .main-menu > ul > li > a {
        padding: 15px 0;
        display: block;
        border: unset;
        color: var(--text-color);
    }

    header.style-2 .main-menu > ul > li ul.sub-menu {
        position: static;
        min-width: 200px;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        padding: 0;
        padding-left: 10px;
        background-color: unset;
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li {
        border-bottom: 1px solid transparent;
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li a {
        color: var(--text-color);
        padding: 10px 0px;
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li a:hover {
        color: var(--title-color);
        margin-left: 10px;
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li a.active {
        color: var(--title-color);
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li i {
        color: var(--text-color);
        right: -13px;
    }

    header.style-2 .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
        padding: 10px 10px;
    }

    header.style-2 .main-menu > ul > li .mega-menu {
        position: static;
        min-width: 200px;
        background: 0 0;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        padding: 0;
        margin: 0;
        width: 100%;
        background-color: transparent;
        border-radius: unset;
        box-shadow: unset;
    }

    header.style-2 .main-menu > ul > li .mega-menu .container {
        padding: 0;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row {
        display: block;
        padding-left: 10px;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item {
        padding: 0;
        display: block;
        border-right: unset;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item::after {
        display: none;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 12px 0px;
        border-bottom: unset;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item .menu-title h6 {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 400;
        line-height: 1.2;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item i {
        display: block;
        top: 10px;
        right: 0;
        color: var(--text-color);
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul {
        display: none;
        padding: 0 10px;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li {
        margin-bottom: 0;
        line-height: 1;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li:last-child a {
        border-bottom: unset;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a {
        font-size: 13px;
        font-family: var(--font-kanit);
        font-weight: 500;
        text-transform: uppercase;
        padding: 11px 0px;
        display: flex;
        line-height: 1.3;
        transition: all 0.4s ease-out 0s;
    }

    header.style-2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li a:hover {
        margin-left: 10px;
    }

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

    header.style-2 .main-menu > ul > li:hover i {
        color: var(--title-color);
    }

    header.style-2 .main-menu > ul > li.active > a {
        color: var(--title-color);
    }

    header.style-2 .main-menu > ul > li .bi {
        top: 13px;
        font-size: 20px;
        color: var(--text-color);
        line-height: 1;
    }

    header.style-2 .main-menu > ul li.menu-item-has-children > i {
        display: block;
    }

    header.style-2 .primary-btn1 {
        width: 100%;
        justify-content: center;
    }

    header.style-2 .primary-btn5 {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    header.style-2.white .main-menu > ul > li:hover i {
        color: var(--black-color);
        font-size: 20px;
    }
}

@media (min-width: 992px) and (min-width: 992px) {
    header.style-2.white .main-menu > ul > li:first-child {
        padding-left: 0;
    }

    header.style-2.white .main-menu > ul > li:last-child {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    header.style-2.white .main-menu > ul > li > a {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li i {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li i.active {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li i.active::before {
        content: "\f2ea";
    }

    header.style-2.white .main-menu > ul > li.menu-item-has-children {
        transition: all 0.55s ease-in-out;
    }

    header.style-2.white .main-menu > ul > li.menu-item-has-children > a::before {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.menu-item-has-children:hover > a::before {
        color: var(--title-color);
    }

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

    header.style-2.white .main-menu > ul > li:hover > a::before {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li:hover .dropdown-icon2 {
        color: var(--title-color);
    }

    header.style-2.white .main-menu > ul > li:hover.menu-item-has-children > a::before {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.active > a {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.active > a::before {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.active i {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.active .dropdown-icon2 {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul > li.active.menu-item-has-children > a::before {
        color: var(--white-color);
    }

    header.style-2.white .main-menu > ul li.menu-item-has-children > i {
        display: none;
    }
}

header.style-2.white .nav-right .right-sidebar-button {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

header.style-2.white .nav-right .right-sidebar-button svg {
    fill: var(--white-color);
}

header.style-2.white .nav-right .right-sidebar-button:hover {
    background-color: var(--primary-color1);
}

header.style-2.white .nav-right .right-sidebar-button:hover svg {
    fill: var(--dark-title-color);
}

@media (max-width: 991px) {
    header.style-2.white .nav-right .mobile-menu-btn {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    header.style-2.white .nav-right .mobile-menu-btn svg {
        fill: var(--white-color);
    }
}

@media (max-width: 576px) {
    header.style-2.white .nav-right .mobile-menu-btn {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }

    header.style-2.white .nav-right .mobile-menu-btn svg {
        width: 18px;
    }
}

header.style-2.white.sticky {
    background-color: var(--dark-black-color);
}

header.style-2.font-alt .main-menu > ul > li ul.sub-menu > li > a {
    font-family: var(--font-spaceGrotesk);
}

header.style-2.font-alt .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a {
    font-family: var(--font-spaceGrotesk);
}

header.style-2.font-alt2 .main-menu > ul > li ul.sub-menu > li > a {
    font-family: var(--font-tartuffo-Trial);
}

header.style-2.font-alt2 .main-menu > ul > li .mega-menu .menu-row .menu-single-item ul li > a {
    font-family: var(--font-tartuffo-Trial);
}

header.style-2.two {
    padding: 18px 0;
}

@media (min-width: 992px) {
    header.style-2.two .main-menu > ul {
        background-color: #F0F0F0;
        padding: 0 16px;
        border-radius: 100px;
    }

    header.style-2.two .main-menu > ul > li {
        padding: 10px 12px;
    }

    header.style-2.two .main-menu > ul > li ul.sub-menu {
        top: 40px;
    }

    header.style-2.two .main-menu > ul > li .mega-menu {
        top: 58px;
    }
}

.right-sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 444px;
    z-index: 9992;
    overflow: auto;
    background-color: var(--dark-white-color);
    transform: translateX(120%);
    transform-origin: right;
    transition: transform 0.5s ease-in;
    border: 1px solid var(--borders-color);
    padding: 42px 34px 24px;
    margin-top: 25px;
    margin-right: 56px;
    border-radius: 20px;
    overflow-y: scroll;
    max-height: 800px;
}

.right-sidebar-menu::-webkit-scrollbar {
    width: 0px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .right-sidebar-menu {
        margin-right: 40px;
    }
}

@media (max-width: 1399px) {
    .right-sidebar-menu {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .right-sidebar-menu {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .right-sidebar-menu {
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .right-sidebar-menu {
        width: 320px;
        max-height: calc(100% - 10px);
        padding: 60px 20px 25px;
    }
}

.right-sidebar-menu.show-right-menu {
    transform: translateX(0);
}

.right-sidebar-menu .right-sidebar-close-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 14px;
    transition: 0.35s;
}

.right-sidebar-menu .right-sidebar-close-btn svg {
    fill: var(--title-color);
}

.right-sidebar-menu .right-sidebar-close-btn:hover {
    background-color: var(--black-color);
}

.right-sidebar-menu .right-sidebar-close-btn:hover svg {
    fill: var(--dark-white-color);
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap {
        gap: 30px;
        max-height: 100vh;
    }
}

.right-sidebar-menu .sidebar-content-wrap h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .right-sidebar-menu .sidebar-content-wrap h3 {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap h3 {
        margin-bottom: 30px;
        font-size: 25px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .contact-area h5 {
    color: var(--dark-text-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 20px;
    padding-top: 20px;
}

.right-sidebar-menu .sidebar-content-wrap .contact-area a {
    color: var(--text-color);
    font-size: 15px;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .contact-area h5 {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact {
        gap: 10px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact:last-child {
    margin-bottom: 0;
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact .icon {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact .icon svg {
    fill: var(--dark-white-color);
}

.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact a {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 100%;
    transition: background-size 0.75s;
}


.right-sidebar-menu .sidebar-content-wrap .contact-area .contact-list .single-contact a:hover {
    background-size: 100% 1px;
    background-position: left 100%;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: unset;
    float: none;
    text-align: left;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li {
    display: block;
    position: relative;
}

@media (min-width: 992px) {
    .right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li:first-child {
        padding-left: 0;
    }

    .right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li:last-child {
        padding-right: 0;
    }
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li > a {
    color: var(--title-color);
    letter-spacing: 0.4px;
    padding: 15px 0;
    display: block;
    line-height: 1;
    position: relative;
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    transition: all 0.5s ease-out 0s;
    position: relative;
    background-color: transparent;
    transition: all 0.5s ease-out 0s;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li > a {
        font-size: 20px;
        padding: 12px 0;
    }
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li > i {
    font-size: 12px;
    text-align: center;
    color: var(--title-color);
    font-style: normal;
    position: absolute;
    right: 0;
    top: 20px;
    line-height: 1;
    z-index: 999;
    cursor: pointer;
    display: none;
    transition: all 0.5s ease-out 0s;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu {
    position: static;
    min-width: 200px;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    padding: 0;
    padding-left: 10px;
    display: none;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li {
    border-bottom: 1px solid transparent;
    padding: 0;
    display: block;
    position: relative;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li i {
    position: absolute;
    display: block;
    color: var(--title-color);
    font-size: 12px;
    cursor: pointer;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .dropdown-icon {
    right: 10px;
    top: 8px;
    font-size: 12px;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a {
    display: block;
    padding: 12px 0;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-archivo);
    font-size: 20px;
    line-height: 1.2;
    transition: all 0.4s ease-out 0s;
    position: relative;
    cursor: pointer;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a {
        font-size: 16px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a:hover > a {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a:hover::before {
    transform: scale(1);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a.active > a {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li > a.active::before {
    transform: scale(1);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li:last-child > a {
    border-bottom: none;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li:last-child > a::before {
    display: none;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu {
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu li > a {
    padding: 10px 12px;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li:hover > a {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li:hover .dropdown-icon {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li.active > a {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li.active .dropdown-icon {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu {
    left: 220px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: var(--title-color);
    padding: 0;
    top: 3px;
    position: unset;
    max-width: 230px;
    min-width: 215px;
    background: transparent;
    top: 0;
}

@media (max-width: 1199px) {
    .right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu {
        box-shadow: none;
    }
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu::before {
    display: none;
    visibility: hidden;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li .sub-menu > li i {
    display: block;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li ul.sub-menu > li:last-child {
    border-bottom: none;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.menu-item-has-children {
    transition: all 0.55s ease-in-out;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.menu-item-has-children > a {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.menu-item-has-children > a i {
    font-size: 10px;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.active > a {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.active > i {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.active .dropdown-icon2 {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul > li.active.menu-item-has-children > a::before {
    color: var(--title-color);
}

.right-sidebar-menu .sidebar-content-wrap .main-menu > ul li.menu-item-has-children > i {
    display: block;
}

.right-sidebar-menu .sidebar-content-wrap .main-menu .primary-btn3 {
    margin-top: 55px;
    padding: 20px 33px;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .main-menu .primary-btn3 {
        margin-top: 35px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .title {
    color: var(--title-color);
    font-family: var(--font-felidae);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
}

.right-sidebar-menu .sidebar-content-wrap p {
    font-size: 15px;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .title {
        margin-bottom: 20x;
    }
}

.right-sidebar-menu .sidebar-content-wrap .address-area h5 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .address-area h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.right-sidebar-menu .sidebar-content-wrap .address-area a {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 90%;
    transition: background-size 0.75s;
}

.right-sidebar-menu .sidebar-content-wrap .address-area a:hover {
    background-size: 0px 1px;
    background-position: right 90%;
}

.right-sidebar-menu .sidebar-content-wrap .primary-btn1, .right-sidebar-menu .sidebar-content-wrap .primary-btn4 {
    width: 100%;
    justify-content: center;
}

.right-sidebar-menu .sidebar-content-wrap .primary-btn3 {
    width: 100%;
    margin-top: 70px;
    justify-content: center;
}

@media (max-width: 991px) {
    .right-sidebar-menu .sidebar-content-wrap .primary-btn3 {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .right-sidebar-menu .sidebar-content-wrap .primary-btn3 {
        margin-top: 40px;
    }
}

.right-sidebar-menu.two {
    margin-top: 4px;
    margin-right: 30px;
}

@media (max-width: 1199px) {
    .right-sidebar-menu.two {
        margin-right: 10px;
    }
}

.right-sidebar-menu.font-alt .sidebar-content-wrap .title {
    font-family: var(--font-spaceGrotesk);
}

.right-sidebar-menu.font-alt .sidebar-content-wrap .address-area h5 {
    font-family: var(--font-spaceGrotesk);
}

.right-sidebar-menu.font-alt .sidebar-content-wrap .contact-area h5 {
    font-family: var(--font-spaceGrotesk);
}

.right-sidebar-menu.font-alt2 .sidebar-content-wrap .title {
    font-family: var(--font-tartuffo-Trial);
}

.right-sidebar-menu.font-alt2 .sidebar-content-wrap .address-area h5 {
    font-family: var(--font-tartuffo-Trial);
}

.right-sidebar-menu.font-alt2 .sidebar-content-wrap .contact-area h5 {
    font-family: var(--font-tartuffo-Trial);
}

/*=====================================
  04. Home1 Banner Section CSS
========================================*/
@keyframes up-down {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes up-down2 {
    0% {
        transform: translateY(40px) translateX(-50%);
    }
    50% {
        transform: translateY(20px) translateX(-50%);
    }
    100% {
        transform: translateY(40px) translateX(-50%);
    }
}

.home1-banner-section {
    background-color: #E8E8E8;
    margin: 20px 20px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 576px) {
    .home1-banner-section {
        margin: 10px 10px 0;
        border-radius: 15px;
    }
}

.home1-banner-section .banner-content-wrap {
    padding: 120px 0;
    margin-left: 26%;
}

@media (max-width: 1799px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 21%;
    }
}

@media (max-width: 1699px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 20%;
        padding: 120px 0 100px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 11%;
        padding: 180px 0 80px;
    }
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 6%;
        padding: 140px 0 80px;
    }
}

@media (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 30px;
        padding: 70px 0 60px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap {
        margin-left: 0;
        padding: 120px 10px 40px;
    }
}

.home1-banner-section .banner-content-wrap .title-area h1 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 100px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
}

@media (max-width: 1799px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 90px;
    }
}

@media (max-width: 1699px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 85px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 80px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 68px;
        margin-bottom: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 52px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 60px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 55px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .title-area h1 {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
}

.home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap {
        flex-wrap: wrap;
        gap: 2px;
    }
}

.home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
    max-width: 140px;
    width: 100%;
    height: 71px;
    display: flex;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        max-width: 120px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        max-width: 100px;
        height: 44px;
        margin-bottom: 5px;
        margin-left: 5px;
    }
}

.home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
    max-width: 140px;
    width: 100%;
    height: 71px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
        max-width: 120px;
        height: 100%;
    }
}

.home1-banner-section .banner-content-wrap .banner-content p {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    max-width: 648px;
    width: 100%;
    margin-bottom: 60px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        margin-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        font-size: 20px;
        margin-bottom: 35px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .banner-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .primary-btn1 {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .primary-btn1 {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .primary-btn1 {
        padding: 21px 25px;
    }
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area svg {
    fill: #E62415;
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area svg path:last-child {
    fill: #17313B;
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area .content span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home1-banner-section .banner-img-wrap {
    max-width: 728px;
    width: 100%;
    margin-left: auto;
    position: relative;
}

@media (max-width: 991px) {
    .home1-banner-section .banner-img-wrap {
        max-width: unset;
    }
}

.home1-banner-section .banner-img-wrap .banner-img {
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .home1-banner-section .banner-img-wrap .banner-img {
        min-height: 350px;
        position: relative;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .banner-img {
        border-radius: 15px;
    }
}

.home1-banner-section .banner-img-wrap .banner-img > img {
    border-radius: 20px;
    min-height: 620px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-top: -30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        min-height: 750px;
    }
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        min-height: 720px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        margin-top: -70px;
    }
}

@media (max-width: 1199px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        min-height: 550px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        min-height: 680px;
        margin-top: -90px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-img-wrap .banner-img > img {
        position: absolute;
        bottom: -30%;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
}

.home1-banner-section .banner-img-wrap .award-area {
    padding: 25px 11px;
    border-radius: 0 15px 15px 0;
    background-color: var(--dark-black-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    right: 0;
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .award-area {
        padding: 20px 8px;
        gap: 15px;
    }
}

.home1-banner-section .banner-img-wrap .award-area span {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .award-area span {
        font-size: 16px;
    }
}

.home1-banner-section .banner-img-wrap .award-area .logo {
    fill: var(--white-color);
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .award-area .logo {
        width: 28px;
    }
}

.home1-banner-section .banner-img-wrap .scroll-down-btn {
    position: absolute;
    left: -80px;
    bottom: 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    border: 1px solid var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn {
        bottom: 115px;
        width: 140px;
        height: 140px;
        left: -70px;
    }
}

@media (max-width: 1199px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn {
        bottom: 60px;
        width: 120px;
        height: 120px;
        left: -40px;
    }
}

@media (max-width: 991px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn {
        width: 110px;
        height: 110px;
    }
}

.home1-banner-section .banner-img-wrap .scroll-down-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn img {
        width: 110px;
    }
}

@media (max-width: 1199px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn img {
        width: 95px;
    }
}

@media (max-width: 576px) {
    .home1-banner-section .banner-img-wrap .scroll-down-btn img {
        width: 90px;
    }
}

.home1-banner-section .banner-img-wrap .scroll-down-btn svg {
    fill: var(--dark-title-color);
    animation: up-down 2s linear infinite alternate;
}

.home1-banner-section .vector {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .home1-banner-section .vector {
        display: none;
    }
}

.home1-banner-section .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner-section .social-list {
        display: none;
    }
}

@media (max-width: 1399px) {
    .home1-banner-section .social-list {
        display: none;
    }
}

.home1-banner-section .social-list li {
    margin-bottom: 25px;
}

.home1-banner-section .social-list li:last-child {
    margin-bottom: 0;
}

.home1-banner-section .social-list li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text-color);
    transition: 0.5s;
}

.home1-banner-section .social-list li a i {
    font-size: 15px;
    line-height: 1;
}

.home1-banner-section .social-list li a i.bi-twitter-x {
    font-size: 13px;
}

.home1-banner-section .social-list li a:hover {
    color: var(--white-color);
}

/*=====================================
  05. Home1 About Section CSS
========================================*/
.home1-about-section .about-content .section-title {
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .home1-about-section .about-content .section-title {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .home1-about-section .about-content .section-title {
        margin-bottom: 50px;
    }
}

.home1-about-section .about-content .section-title h2 {
    font-size: 49px;
}

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

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

@media (max-width: 767px) {
    .home1-about-section .about-content .section-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .home1-about-section .about-content .section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }
}

.home1-about-section .about-content .section-title h2 img {
    max-width: 72px;
    width: 100%;
}

@media (max-width: 576px) {
    .home1-about-section .about-content .section-title h2 img {
        max-width: 60px;
    }
}

.home1-about-section .about-content .section-title h2 video {
    max-width: 116px;
    width: 100%;
    height: 48px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    margin-bottom: -10px;
}

@media (max-width: 767px) {
    .home1-about-section .about-content .section-title h2 video {
        max-width: 105px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .home1-about-section .about-content .section-title h2 video {
        max-width: 95px;
        height: 40px;
    }
}

.home1-about-section .about-content .btn-and-contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .home1-about-section .about-content .btn-and-contact-area {
        gap: 20px;
    }
}

.home1-about-section .about-content .btn-and-contact-area .primary-btn1 {
    background-color: #F0F0F0;
    color: var(--dark-title-color);
}

.home1-about-section .about-content .btn-and-contact-area .primary-btn1::after {
    background-color: var(--primary-color1);
}

.home1-about-section .about-content .btn-and-contact-area .contact-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .home1-about-section .about-content .btn-and-contact-area .contact-area {
        gap: 15px;
    }
}

.home1-about-section .about-content .btn-and-contact-area .contact-area .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home1-about-section .about-content .btn-and-contact-area .contact-area .icon svg {
    fill: var(--dark-black-color);
}

.home1-about-section .about-content .btn-and-contact-area .contact-area .content span {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.home1-about-section .about-content .btn-and-contact-area .contact-area .content a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    padding-bottom: 2px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: 0% 90%;
    transition: background-size 0.75s;
}

.home1-about-section .about-content .btn-and-contact-area .contact-area .content a:hover {
    background-size: 0px 1px;
    background-position: 0 90%;
}

/*=====================================
  06. Home1 Partner Section CSS
========================================*/
.partner-section {
    padding-bottom: 45px;
    border-bottom: 1px solid var(--borders-color);
}

.partner-section .partner-title {
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 576px) {
    .partner-section .partner-title {
        margin-bottom: 30px;
    }
}

.partner-section .partner-title h3, .partner-section .partner-title h5 {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 0;
}

.partner-section .partner-title h3 span, .partner-section .partner-title h5 span {
    color: var(--title-color);
}

@media (max-width: 576px) {
    .partner-section .partner-title h3, .partner-section .partner-title h5 {
        font-size: 16px;
    }
}

.partner-section .partner-wrap .marquee {
    display: flex;
    gap: 60px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (max-width: 1199px) {
    .partner-section .partner-wrap .marquee {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .partner-section .partner-wrap .marquee {
        gap: 30px;
    }
}

.partner-section .partner-wrap .marquee .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    min-width: 100%;
    animation: scroll-x-reverse 30s linear infinite;
}

@media (max-width: 1199px) {
    .partner-section .partner-wrap .marquee .marquee__group {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .partner-section .partner-wrap .marquee .marquee__group {
        gap: 20px;
    }
}

.partner-section .partner-wrap .marquee .marquee__group a img {
    width: 170px;
}

@media (max-width: 1199px) {
    .partner-section .partner-wrap .marquee .marquee__group a img {
        width: 155px;
    }
}

@media (max-width: 576px) {
    .partner-section .partner-wrap .marquee .marquee__group a img {
        width: 140px;
    }
}

.partner-section .partner-wrap .marquee.dark {
    display: none;
    visibility: hidden;
}

.partner-section.two {
    padding: 60px 0;
    border-top: 1px solid var(--borders-color);
}

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

@media (max-width: 576px) {
    .partner-section.two {
        padding: 45px 0;
    }
}

.partner-section.three {
    padding-bottom: 0;
    border-bottom: unset;
}

.partner-section.three .partner-wrap .marquee .marquee__group a img {
    opacity: 0.85;
    filter: grayscale(1);

    width: 100%;
    max-width: 180px;

    height: 90px;

    object-fit: contain;
    object-position: center;
}

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

/*=====================================
  07. Home1 text Scroll Section CSS
========================================*/
.scroll-text-section, .scroll-text-section2 {
    overflow: hidden;
}

.scroll-text-section .scrolling-text, .scroll-text-section2 .scrolling-text {
    display: flex;
    gap: 60px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (max-width: 1199px) {
    .scroll-text-section .scrolling-text, .scroll-text-section2 .scrolling-text {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section .scrolling-text, .scroll-text-section2 .scrolling-text {
        gap: 30px;
    }
}

.scroll-text-section .scrolling-text .marquee__group, .scroll-text-section2 .scrolling-text .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    min-width: 100%;
}

@media (max-width: 1199px) {
    .scroll-text-section .scrolling-text .marquee__group, .scroll-text-section2 .scrolling-text .marquee__group {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section .scrolling-text .marquee__group, .scroll-text-section2 .scrolling-text .marquee__group {
        gap: 20px;
    }
}

.scroll-text-section .scrolling-text .marquee__group h2, .scroll-text-section2 .scrolling-text .marquee__group h2 {
    color: rgba(var(--title-color-opc), 0.1);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 95px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .scroll-text-section .scrolling-text .marquee__group h2, .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .scroll-text-section .scrolling-text .marquee__group h2, .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 75px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section .scrolling-text .marquee__group h2, .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 55px;
    }
}

.scroll-text-section .scrolling-text .marquee__group svg, .scroll-text-section2 .scrolling-text .marquee__group svg {
    fill: rgba(var(--title-color-opc), 0.1);
}

@media (max-width: 576px) {
    .scroll-text-section .scrolling-text .marquee__group svg, .scroll-text-section2 .scrolling-text .marquee__group svg {
        width: 60px;
    }
}

.scroll-text-section.font-alt .scrolling-text .marquee__group h2, .scroll-text-section2.font-alt .scrolling-text .marquee__group h2 {
    font-family: var(--font-spaceGrotesk);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.scroll-text-section.font-alt2 .scrolling-text .marquee__group h2, .scroll-text-section2.font-alt2 .scrolling-text .marquee__group h2 {
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    line-height: 1.08;
}

.scroll-text-section.two, .scroll-text-section2.two {
    overflow: visible;
    position: relative;
    z-index: 1;
}

.scroll-text-section.two .vector, .scroll-text-section2.two .vector {
    position: absolute;
    bottom: 60px;
    right: 0;
}

@media (max-width: 1699px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        bottom: 50px;
        width: 480px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 450px;
    }
}

@media (max-width: 1399px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 450px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 400px;
        bottom: 30px;
    }
}

@media (max-width: 991px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 350px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 280px;
        bottom: 40px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section.two .vector, .scroll-text-section2.two .vector {
        width: 180px;
        bottom: 70px;
    }
}

.scroll-text-section.three, .scroll-text-section2.three {
    margin-top: 110px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .scroll-text-section.three, .scroll-text-section2.three {
        margin-top: 120px;
    }
}

@media (max-width: 1399px) {
    .scroll-text-section.three, .scroll-text-section2.three {
        margin-top: 120px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.three, .scroll-text-section2.three {
        margin-top: 100px;
    }
}

@media (max-width: 991px) {
    .scroll-text-section.three, .scroll-text-section2.three {
        margin-top: 90px;
    }
}

@media (max-width: 767px) {
    .scroll-text-section.three, .scroll-text-section2.three {
        margin-top: 80px;
    }
}

.scroll-text-section.three .scrolling-text, .scroll-text-section2.three .scrolling-text {
    gap: 100px;
}

@media (max-width: 1399px) {
    .scroll-text-section.three .scrolling-text, .scroll-text-section2.three .scrolling-text {
        gap: 80px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.three .scrolling-text, .scroll-text-section2.three .scrolling-text {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section.three .scrolling-text, .scroll-text-section2.three .scrolling-text {
        gap: 20px;
    }
}

.scroll-text-section.three .scrolling-text .marquee__group, .scroll-text-section2.three .scrolling-text .marquee__group {
    align-items: end;
    gap: 100px;
}

@media (max-width: 1399px) {
    .scroll-text-section.three .scrolling-text .marquee__group, .scroll-text-section2.three .scrolling-text .marquee__group {
        gap: 80px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.three .scrolling-text .marquee__group, .scroll-text-section2.three .scrolling-text .marquee__group {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section.three .scrolling-text .marquee__group, .scroll-text-section2.three .scrolling-text .marquee__group {
        gap: 20px;
    }
}

.scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
    color: var(--title-color);
    font-size: 245px;
    text-transform: uppercase;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 200px;
    }
}

@media (max-width: 1399px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 190px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 170px;
    }
}

@media (max-width: 991px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 150px;
    }
}

@media (max-width: 767px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 140px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section.three .scrolling-text .marquee__group h2, .scroll-text-section2.three .scrolling-text .marquee__group h2 {
        font-size: 110px;
    }
}

.scroll-text-section.three .scrolling-text .marquee__group svg, .scroll-text-section2.three .scrolling-text .marquee__group svg {
    fill: var(--title-color);
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .scroll-text-section.three .scrolling-text .marquee__group svg, .scroll-text-section2.three .scrolling-text .marquee__group svg {
        width: 180px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .scroll-text-section.three .scrolling-text .marquee__group svg, .scroll-text-section2.three .scrolling-text .marquee__group svg {
        width: 160px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .scroll-text-section.three .scrolling-text .marquee__group svg, .scroll-text-section2.three .scrolling-text .marquee__group svg {
        width: 140px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .scroll-text-section.three .scrolling-text .marquee__group svg, .scroll-text-section2.three .scrolling-text .marquee__group svg {
        width: 110px;
        margin-bottom: 18px;
    }
}

@keyframes scroll-x-reverse {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/*=====================================
  08. Home1 Portfolio Section CSS
========================================*/
.home1-portfolio-section {
    padding: 0 10px;
}

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

.home1-portfolio-section .view-all-btn {
    display: flex;
    justify-content: center;
}

.portfolio-card .portfolio-img {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    cursor: none;
    transform: scale(0.9);
    transform-origin: bottom right;
}

@media (max-width: 576px) {
    .portfolio-card .portfolio-img {
        border-radius: 15px;
    }
}

.portfolio-card .portfolio-img img {
    border-radius: 20px;
    transform: scale(1.3);
    transition: all 0.5s ease-out;
}

@media (max-width: 576px) {
    .portfolio-card .portfolio-img img {
        border-radius: 15px;
    }
}

.portfolio-card .portfolio-content {
    padding-top: 20px;
}

@media (max-width: 576px) {
    .portfolio-card .portfolio-content {
        padding-top: 15px;
    }
}

.portfolio-card .portfolio-content h3 {
    margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-card .portfolio-content h3 {
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .portfolio-card .portfolio-content h3 {
        line-height: 1.2;
    }
}

.portfolio-card .portfolio-content h3 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 1199px) {
    .portfolio-card .portfolio-content h3 a {
        font-size: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-card .portfolio-content h3 a {
        font-size: 23px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .portfolio-card .portfolio-content h3 a {
        font-size: 23px;
        line-height: 1.2;
    }
}

.portfolio-card .portfolio-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.portfolio-card .portfolio-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-card .portfolio-content ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.portfolio-card .portfolio-content ul li:last-child {
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

.portfolio-card .portfolio-content ul li a {
    color: var(--title-color);
    display: block;
    padding: 5px 17px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

.portfolio-card .portfolio-content ul li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.portfolio-card .portfolio-video {
    overflow: hidden;
}

.portfolio-card .portfolio-video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-card.two .portfolio-img {
    transform-origin: bottom left;
}

.portfolio-card.style-2 .portfolio-img {
    transform: none;
    transform-origin: unset;
    border-radius: unset;
    position: relative;
}

.portfolio-card.style-2 .portfolio-img img {
    transform: none;
    border-radius: unset;
}

.portfolio-card.style-2 .portfolio-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio-card.style-2 .portfolio-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-card.style-2 .portfolio-content-wrap .tag a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .portfolio-card.style-2 .portfolio-content-wrap .tag a {
        font-size: 14px;
    }
}

.portfolio-card.style-2 .portfolio-content-wrap .tag a:hover {
    color: var(--title-color);
}

.portfolio-card.style-2 .portfolio-content {
    padding-top: 25px;
}

@media (max-width: 576px) {
    .portfolio-card.style-2 .portfolio-content {
        padding-top: 20px;
    }
}

.portfolio-card.style-2 .portfolio-content h3 {
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .portfolio-card.style-2 .portfolio-content h3 {
        margin-bottom: 8px;
    }
}

.portfolio-card.style-2 .portfolio-content h3 a {
    font-family: var(--font-spaceGrotesk);
}

.portfolio-card.style-2 .portfolio-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .portfolio-card.style-2 .portfolio-content span {
        font-size: 14px;
    }
}

.portfolio-card.style-2.multi-img-effect .portfolio-img {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.portfolio-card.style-2.multi-img-effect .portfolio-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease; /* smooth fade */
}

.portfolio-card.style-2.multi-img-effect .portfolio-img img:first-child {
    position: relative;
    opacity: 1;
}

@media (max-width: 767px) {
    .portfolio-card.style-2.multi-img-effect .portfolio-img img {
        position: relative;
        display: none;
    }

    .portfolio-card.style-2.multi-img-effect .portfolio-img img:first-child {
        display: block;
    }
}

.portfolio-card.style-3 .portfolio-img {
    transform: none;
    transform-origin: unset;
    border-radius: unset;
    position: relative;
    cursor: pointer;
}

.portfolio-card.style-3 .portfolio-img img {
    transform: none;
    border-radius: unset;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .portfolio-card.style-3 .portfolio-img img {
        min-height: 380px;
    }
}

@media (max-width: 1199px) {
    .portfolio-card.style-3 .portfolio-img img {
        min-height: 320px;
    }
}

.portfolio-card.style-3 .portfolio-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio-card.style-3 .portfolio-content {
    padding-top: 25px;
}

@media (max-width: 576px) {
    .portfolio-card.style-3 .portfolio-content {
        padding-top: 20px;
    }
}

.portfolio-card.style-3 .portfolio-content h3 {
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .portfolio-card.style-3 .portfolio-content h3 {
        margin-bottom: 8px;
    }
}

.portfolio-card.style-3 .portfolio-content h3 a {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.portfolio-card.style-3 .portfolio-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.portfolio-card.style-3 .portfolio-content span {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .portfolio-card.style-3 .portfolio-content span {
        font-size: 14px;
    }
}

.portfolio-card.style-4 .portfolio-img {
    transform: none;
    transform-origin: unset;
    border-radius: unset;
    cursor: pointer;
    position: relative;
}

.portfolio-card.style-4 .portfolio-img img {
    border-radius: unset;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 500px;
    }
}

@media (max-width: 1199px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 450px;
    }
}

@media (max-width: 991px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 420px;
        max-height: 420px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .portfolio-card.style-4 .portfolio-img img {
        min-height: 350px;
        max-height: 350px;
        width: 100%;
    }
}

.portfolio-card.style-4 .portfolio-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 991px) {
    .portfolio-card.style-4 .portfolio-img canvas {
        display: none;
    }
}

.portfolio-card.style-4 .portfolio-content {
    padding-top: 25px;
}

@media (max-width: 576px) {
    .portfolio-card.style-4 .portfolio-content {
        padding-top: 20px;
    }
}

.portfolio-card.style-4 .portfolio-content h3 {
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .portfolio-card.style-4 .portfolio-content h3 {
        margin-bottom: 8px;
    }
}

.portfolio-card.style-4 .portfolio-content h3 a {
    font-family: var(--font-spaceGrotesk);
}

.portfolio-card.style-4 .portfolio-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .portfolio-card.style-4 .portfolio-content span {
        font-size: 14px;
    }
}

/*=====================================
  09. Home1 Call Section CSS
========================================*/
.home1-call-section {
    position: relative;
    z-index: 1;
}

.home1-call-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--borders-color);
    z-index: -1;
}

.home1-call-section .call-wrapper {
    padding: 10px 31px;
    display: inline-flex;
    align-items: center;
    gap: 70px;
    background-color: #E8E8E8;
    border-radius: 100px;
}

@media (max-width: 991px) {
    .home1-call-section .call-wrapper {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .home1-call-section .call-wrapper {
        gap: 24px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .home1-call-section .call-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px 15px;
        border-radius: 20px;
        max-width: 300px;
        width: 100%;
    }
}

.home1-call-section .call-wrapper span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 576px) {
    .home1-call-section .call-wrapper span {
        line-height: 1.3;
        text-align: center;
    }
}

.home1-call-section .call-wrapper .call-area {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home1-call-section .call-wrapper .call-area svg {
    fill: var(--black-color);
}

.home1-call-section .call-wrapper .call-area a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.home1-call-section .call-wrapper .call-area a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

/*=====================================
  10. Home1 Service Section CSS
========================================*/
.home1-service-section {
    padding: 120px 0;
    background-color: #E8E8E8;
}

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

@media (max-width: 767px) {
    .home1-service-section {
        padding: 70px 0;
    }
}

.home1-service-section .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.home1-service-section .service-list .single-service {
    background-color: var(--white-color);
    padding: 55px 70px;
    border-radius: 20px;
    margin-bottom: 24px;
}

@media (max-width: 1399px) {
    .home1-service-section .service-list .single-service {
        padding: 55px;
    }
}

@media (max-width: 1199px) {
    .home1-service-section .service-list .single-service {
        padding: 45px 35px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home1-service-section .service-list .single-service {
        padding: 45px 25px;
    }
}

@media (max-width: 576px) {
    .home1-service-section .service-list .single-service {
        padding: 35px 20px;
        border-radius: 15px;
    }
}

.home1-service-section .service-list .single-service:last-child {
    margin-bottom: 0;
}

.home1-service-section .service-list .single-service .services-top {
    display: grid;
    grid-template-columns: 22% 56% 22%;
    transition: all 0.45s;
}

@media (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-top {
        grid-template-columns: 15% 63% 22%;
    }
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-top {
        grid-template-columns: 14% 61% 25%;
    }
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-top {
        display: block;
    }
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-top .icon {
        margin-bottom: 15px;
    }
}

.home1-service-section .service-list .single-service .services-top .icon svg {
    fill: var(--black-color);
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-top .icon svg {
        width: 52px;
    }
}

@media (max-width: 576px) {
    .home1-service-section .service-list .single-service .services-top .icon svg {
        width: 48px;
    }
}

.home1-service-section .service-list .single-service .services-top .services-wrapper {
    transition: all 0.45s;
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag {
        margin-bottom: 25px;
    }
}

.home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 {
    margin-bottom: 20px;
}

.home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 a {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 a {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 a {
        font-size: 26px;
    }
}

.home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag h2 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.home1-service-section .service-list .single-service .services-top .services-wrapper .title-tag ul li {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    padding: 6px 16px;
}

.home1-service-section .service-list .single-service .services-top .details-btn-wrap {
    text-align: end;
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-top .details-btn-wrap {
        text-align: start;
    }
}

.home1-service-section .service-list .single-service .services-top .details-btn-wrap .primary-btn1 {
    padding: 17px 29px;
    background-color: #E8E8E8;
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-top .details-btn-wrap .primary-btn1 {
        padding: 16px 24px;
    }
}

.home1-service-section .service-list .single-service .services-top .details-btn-wrap .primary-btn1::after {
    background-color: var(--black-color);
}

.home1-service-section .service-list .single-service .services-top .details-btn-wrap .primary-btn1:hover {
    color: var(--dark-white-color);
}

@media (min-width: 992px) {
    .home1-service-section .service-list .single-service .service-bottom-wrap {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }
}

.home1-service-section .service-list .single-service .services-btm {
    display: grid;
    grid-template-columns: 22% 56% 22%;
    transition: all 0.45s;
    line-height: 1;
    padding-top: 30px;
}

@media (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-btm {
        grid-template-columns: 15% 63% 22%;
    }
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-btm {
        grid-template-columns: 14% 80% 5%;
    }
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-btm {
        display: block;
    }
}

.home1-service-section .service-list .single-service .services-btm .paragraph-img p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 60px;
    max-width: 536px;
    width: 100%;
}

@media (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img p {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img p {
        margin-bottom: 40px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img p {
        margin-bottom: 30px;
    }
}

.home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img img {
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img img {
        max-width: 250px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home1-service-section .service-list .single-service .services-btm .paragraph-img .service-img img {
        max-width: 250px;
    }
}

@media (min-width: 992px) {
    .home1-service-section .service-list .single-service:hover .service-bottom-wrap {
        max-height: 400px;
        opacity: 1;
    }
}

/*=====================================
  11. Home1 Banner2 Section CSS
========================================*/
.home1-banner2-section .banner-img-wrap {
    position: relative;
    height: 700px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home1-banner2-section .banner-img-wrap {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home1-banner2-section .banner-img-wrap {
        height: 550px;
    }
}

@media (max-width: 576px) {
    .home1-banner2-section .banner-img-wrap {
        height: 450px;
    }
}

.home1-banner2-section .banner-img-wrap .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.2);
}

.home1-banner2-section .banner-img-wrap img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home1-banner2-section .banner-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    background-color: var(--dark-black-color);
    padding: 40px 20px;
}

@media (min-width: 992px) {
    .home1-banner2-section .banner-bottom {
        gap: 40px;
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .home1-banner2-section .banner-bottom {
        flex-wrap: wrap;
        gap: 25px;
        padding: 30px 15px;
    }
}

.home1-banner2-section .banner-bottom > span {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .home1-banner2-section .banner-bottom > span {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .home1-banner2-section .banner-bottom > span {
        font-size: 20px;
    }
}

.home1-banner2-section .banner-bottom .primary-btn1 {
    padding: 13px 25px;
}

.home1-banner2-section .banner-bottom .primary-btn1::after {
    background-color: var(--white-color);
}

.home1-banner2-section .banner-bottom .primary-btn1:hover {
    color: var(--dark-title-color);
}

.home1-banner2-section.about-page-banner2 .banner-img-wrap {
    height: 790px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 720px;
    }
}

@media (max-width: 1399px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 720px;
    }
}

@media (max-width: 1199px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 550px;
    }
}

@media (max-width: 576px) {
    .home1-banner2-section.about-page-banner2 .banner-img-wrap {
        height: 450px;
    }
}

/*=====================================
  12. Home1 Testimonial Section CSS
========================================*/
.home1-testimonial-section .section-title h2 {
    font-size: 70px;
}

@media (max-width: 1399px) {
    .home1-testimonial-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home1-testimonial-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home1-testimonial-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home1-testimonial-section .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .home1-testimonial-section .section-title h2 {
        font-size: 40px;
    }
}

.home1-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card {
    background-color: transparent;
    border: 1px solid var(--borders-color);
}

.home1-testimonial-section .slider-btn-grp {
    justify-content: center;
}

@media (max-width: 767px) {
    .home1-testimonial-section .slider-btn-grp {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .home1-testimonial-section .slider-btn-grp .slider-btn {
        order: 2;
    }
}

.home1-testimonial-section .rating-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .home1-testimonial-section .rating-list {
        order: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .home1-testimonial-section .rating-list {
        gap: 18px;
    }
}

.home1-testimonial-section .rating-list li .single-rating {
    padding: 11px 22px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.home1-testimonial-section .rating-list li .single-rating .review span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}

.home1-testimonial-section .rating-list li .single-rating .review svg {
    fill: var(--title-color);
}

.home1-testimonial-section .rating-list li .single-rating .review svg path:first-child {
    fill: #E62415;
}

.home1-testimonial-section .rating-list li .single-rating .rating .star {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 2px;
}

.home1-testimonial-section .rating-list li .single-rating .rating .star li i {
    color: #E62415;
    font-size: 12px;
}

.home1-testimonial-section .rating-list li .single-rating .rating span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.home1-testimonial-section .rating-list li .single-rating .rating span strong {
    font-weight: 600;
    font-size: 14px;
    color: var(--title-color);
}

.home1-testimonial-section .rating-list li .single-rating.two {
    gap: 10px;
}

.home1-testimonial-section .rating-list li .single-rating.two .rating .star li i {
    color: #E4C40C;
}

.testimonial-card {
    padding: 55px 35px 50px;
    border-radius: 20px;
    background-color: #E8E8E8;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-card {
        padding: 55px 25px 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card {
        padding: 45px 20px 40px;
        gap: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-card {
        padding: 45px 20px 40px;
        gap: 45px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 45px 15px 40px;
        gap: 40px;
        border-radius: 15px;
    }
}

.testimonial-card svg {
    fill: var(--dark-title-color);
    margin-bottom: 25px;
}

.testimonial-card p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .testimonial-card p {
        font-size: 14px;
    }
}

.testimonial-card p span {
    color: var(--title-color);
    font-weight: 500;
}

.testimonial-card .logo {
    margin-bottom: 20px;
}

.testimonial-card .author-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--black-color-opc), 0.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card .author-area {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .testimonial-card .author-area {
        gap: 10px;
    }
}

.testimonial-card .author-area .author-img {
    min-width: 55px;
    max-width: 55px;
    height: 55px;
    border-radius: 50%;
}

.testimonial-card .author-area .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-card .author-area .author-content {
    line-height: 1;
}

.testimonial-card .author-area .author-content h3, .testimonial-card .author-area .author-content h5 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (min-width: 576px) {
    .testimonial-card .author-area .author-content h3, .testimonial-card .author-area .author-content h5 {
        font-size: 22px;
    }
}

.testimonial-card .author-area .author-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.testimonial-card.two {
    background-color: var(--white-color);
    border-radius: unset;
    padding: 45px 35px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .testimonial-card.two {
        padding: 45px 25px;
    }
}

@media (max-width: 1399px) {
    .testimonial-card.two {
        padding: 32px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-card.two {
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .testimonial-card.two p {
        font-size: 14px;
    }

    .testimonial-card .author-area .author-content h3, .testimonial-card .author-area .author-content h5 {
        font-size: 22px;
    }
}

.testimonial-card.two p span {
    font-weight: 600;
}

.testimonial-card.two .author-area {
    border-top: unset;
    padding-top: 0;
}

.testimonial-card.three {
    padding: 55px 40px 50px;
}

@media (max-width: 1399px) {
    .testimonial-card.three {
        padding: 50px 30px 45px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card.three {
        padding: 50px 20px 45px;
    }
}

@media (max-width: 576px) {
    .testimonial-card.three {
        padding: 45px 20px 40px;
    }
}

.testimonial-card.three .testimonial-content > span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    display: block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .testimonial-card.three .testimonial-content > span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-card.three .testimonial-content > span {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.testimonial-card.three p {
    font-family: var(--font-spaceGrotesk);
    font-size: 22px;
    font-weight: 400;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card.three p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .testimonial-card.three p {
        font-size: 19px;
    }
}

.testimonial-card.three .author-area {
    border-top: unset;
    padding-top: 0;
}

/*=====================================
  13. Home1 Team Section CSS
========================================*/
.home1-team-section {
    padding: 120px 0;
    background-color: var(--dark-black-color);
    margin: 0 20px;
    border-radius: 20px;
}

@media (max-width: 1199px) {
    .home1-team-section {
        padding: 90px 0;
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .home1-team-section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .home1-team-section {
        border-radius: 15px;
    }
}

.home1-team-section .section-title h2 {
    font-size: 70px;
}

@media (max-width: 1399px) {
    .home1-team-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home1-team-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home1-team-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home1-team-section .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .home1-team-section .section-title h2 {
        font-size: 40px;
    }
}

.home1-team-section .button-area {
    padding: 15px 15px 15px 50px;
    background-color: #1E1E1E;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .home1-team-section .button-area {
        max-width: 620px;
        padding: 15px 15px 15px 40px;
    }
}

@media (max-width: 767px) {
    .home1-team-section .button-area {
        padding: 15px 15px 15px 30px;
    }
}

@media (max-width: 576px) {
    .home1-team-section .button-area {
        border-radius: 15px;
        text-align: center;
        justify-content: center;
        padding: 20px 15px;
    }
}

.home1-team-section .button-area > span {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.home1-team-section .button-area .primary-btn1 {
    padding: 13px 25px;
}

.home1-team-section .button-area .primary-btn1::after {
    background-color: var(--white-color);
}

.home1-team-section .button-area .primary-btn1:hover {
    color: var(--dark-title-color);
}

.team-card .team-img {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 576px) {
    .team-card .team-img {
        border-radius: 15px;
    }
}

.team-card .team-img img {
    border-radius: inherit;
    transition: all 0.5s ease-out;

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 50% 0;
}

.team-card .team-img .social-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(194, 238, 16, 0) 57.78%, #C2EE10 100%);
    display: flex;
    justify-content: center;
    align-items: end;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s ease-in-out;
}

.team-card .team-img .social-area .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
    padding-bottom: 30px;
}

@media (max-width: 1199px) {
    .team-card .team-img .social-area .social-list {
        padding-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .team-card .team-img .social-area .social-list {
        padding-bottom: 20px;
    }
}

.team-card .team-img .social-area .social-list li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-card .team-img .social-area .social-list li a i {
    color: var(--dark-title-color);
    font-size: 16px;
    transition: 0.5s;
}

.team-card .team-img .social-area .social-list li a:hover {
    background-color: var(--dark-black-color);
}

.team-card .team-img .social-area .social-list li a:hover i {
    color: var(--white-color);
}

.team-card .team-content {
    text-align: center;
    padding: 25px 15px 0;
    line-height: 1;
}

@media (max-width: 1199px) {
    .team-card .team-content {
        padding: 20px 15px 0;
    }
}

.team-card .team-content h3 {
    line-height: 1.3;
    font-size: 18px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .team-card .team-content h3 {
        margin-bottom: 8px;
    }
}

.team-card .team-content h3 a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .team-card .team-content h3 a {
        font-size: 20px;
    }
}

.team-card .team-content h3 a:hover {
    color: var(--primary-color1);
}

.team-card .team-content span {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}

.team-card:hover .team-img .social-area {
    opacity: 1;
    transform: scaleY(1);
}

.team-card:hover .team-img img {
    /*transform: scale(1.05);*/
    transition: all 0.5s ease-out;
}

.team-card.two {
    max-width: 340px;
}

.team-card.two .team-img {
    width: 340px;
    height: 340px;
    border-radius: 50%;
}

.team-card.two .team-img img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.team-card.two .team-img .social-area {
    background: unset;
}

.team-card.two .team-img .social-area .social-list li a:hover {
    background-color: var(--primary-color1);
}

.team-card.two .team-img .social-area .social-list li a:hover i {
    color: var(--dark-black-color);
}

.team-card.two .team-content h3 a {
    color: var(--title-color);
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.team-card.two .team-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.team-card.three .team-img {
    border-radius: unset;
}

.team-card.three .team-img .social-area {
    background: none;
}

.team-card.three .team-img .social-area .social-list li a:hover {
    background-color: var(--primary-color1);
}

.team-card.three .team-img .social-area .social-list li a:hover i {
    color: var(--dark-title-color);
}

.team-card.three .team-content h3 a {
    color: var(--title-color);
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .team-card.three .team-content h3 a {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .team-card.three .team-content h3 a {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .team-card.three .team-content h3 a {
        font-size: 20px;
    }
}

.team-card.three .team-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.team-card.three .team-content span {
    color: var(--text-color);
    font-weight: 400;
}

/*=====================================
  14. Home1 Blog Section CSS
========================================*/
.blog-card .blog-img {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

@media (max-width: 576px) {
    .blog-card .blog-img {
        border-radius: 15px;
    }
}

.blog-card .blog-img img {
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease-out;
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-card .blog-img img {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-card .blog-img img {
        min-height: 220px;
        border-radius: 15px;
    }
}

.blog-card .blog-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card .blog-content {
    padding: 30px 55px 0;
    text-align: center;
}

@media (max-width: 1399px) {
    .blog-card .blog-content {
        padding: 30px 40px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card .blog-content {
        padding: 25px 25px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-card .blog-content {
        padding: 25px 20px 0;
    }
}

@media (max-width: 767px) {
    .blog-card .blog-content {
        padding: 25px 30px 0;
    }
}

@media (max-width: 576px) {
    .blog-card .blog-content {
        padding: 25px 15px 0;
    }
}

.blog-card .blog-content .blog-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card .blog-content .blog-meta {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .blog-card .blog-content .blog-meta {
        margin-bottom: 10px;
    }
}

.blog-card .blog-content .blog-meta li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    position: relative;
    padding-left: 16px;
}

.blog-card .blog-content .blog-meta li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.blog-card .blog-content .blog-meta li:first-child {
    padding-left: 0;
}

.blog-card .blog-content .blog-meta li:first-child::before {
    display: none;
    visibility: hidden;
}

.blog-card .blog-content .blog-meta li a {
    color: var(--text-color);
    transition: 0.5s;
}

.blog-card .blog-content .blog-meta li a:hover {
    color: var(--title-color);
}

.blog-card .blog-content h3 {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .blog-card .blog-content h3 {
        line-height: 26px;
    }
}

.blog-card .blog-content h3 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 1399px) {
    .blog-card .blog-content h3 a {
        font-size: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card .blog-content h3 a {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-card .blog-content h3 a {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .blog-card .blog-content h3 a {
        font-size: 22px;
        line-height: 34px;
    }
}

.blog-card .blog-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

/*=====================================
  15. Home1 Footer Section CSS
========================================*/
.footer-section {
    padding-bottom: 20px;
}

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

.footer-section .footer-wrapper {
    margin: 0 20px 20px;
    padding: 120px 30px;
    border-radius: 20px;
    background-color: var(--dark-black-color);
}

@media (max-width: 1699px) {
    .footer-section .footer-wrapper {
        padding: 120px 20px;
    }
}

@media (max-width: 1399px) {
    .footer-section .footer-wrapper {
        margin: 0 10px 10px;
    }
}

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

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section .footer-wrapper {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .footer-section .footer-wrapper {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-wrapper {
        border-radius: 15px;
    }
}

.footer-section .footer-main-warp {
    margin-bottom: 120px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1399px) {
    .footer-section .footer-main-warp {
        margin-bottom: 110px;
    }
}

@media (max-width: 1199px) {
    .footer-section .footer-main-warp {
        margin-bottom: 90px;
    }
}

@media (max-width: 991px) {
    .footer-section .footer-main-warp {
        flex-wrap: wrap;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .footer-section .footer-main-warp {
        margin-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-main-warp {
        margin-bottom: 50px;
    }
}

.footer-section .company-logo-area {
    max-width: 318px;
}

@media (max-width: 991px) {
    .footer-section .company-logo-area {
        max-width: unset;
    }
}

.footer-section .company-logo-area .company-logo img {
    max-width: 146px;
}

.footer-section .company-logo-area p {
    color: var(--dark-text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin: 30px 0 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section .company-logo-area p {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .footer-section .company-logo-area p {
        margin: 25px 0 30px;
    }
}

@media (max-width: 576px) {
    .footer-section .company-logo-area p {
        font-size: 20px;
    }
}

.footer-section .footer-contact-and-menu {
    min-width: 878px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section .footer-contact-and-menu {
        min-width: 800px;
    }
}

@media (max-width: 1399px) {
    .footer-section .footer-contact-and-menu {
        min-width: unset;
        max-width: 700px;
    }
}

.footer-section .widget-title {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .footer-section .widget-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section .widget-title {
        margin-bottom: 15px;
    }
}

.footer-section .company-contact-info {
    display: flex;
    gap: 140px;
    margin-bottom: 70px;
}

@media (max-width: 1399px) {
    .footer-section .company-contact-info {
        gap: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section .company-contact-info {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .footer-section .company-contact-info {
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .footer-section .company-contact-info {
        flex-wrap: wrap;
        gap: 35px;
        margin-bottom: 40px;
    }
}

.footer-section .company-contact-info .address-area {
    max-width: 412px;
    width: 100%;
}

.footer-section .company-contact-info .address-area a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-decoration: underline;
    display: block;
    margin-bottom: 0;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .footer-section .company-contact-info .address-area a {
        font-size: 18px;
    }
}


@media (max-width: 576px) {
    .footer-section .company-contact-info .address-area a {
        font-size: 20px;
    }
}

.footer-section .company-contact-info .address-area a:hover {
    color: var(--primary-color1);
}

.footer-section .company-contact-info .contact-area {
    max-width: 325px;
    width: 100%;
}

@media (max-width: 1199px) {
    .footer-section .company-contact-info .contact-area {
        max-width: 325px;
    }
}

.footer-section .company-contact-info .contact-area .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section .company-contact-info .contact-area .contact-list .single-contact {
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .footer-section .company-contact-info .contact-area .contact-list .single-contact {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .footer-section .company-contact-info .contact-area .contact-list .single-contact {
        margin-bottom: 10px;
    }
}

.footer-section .company-contact-info .contact-area .contact-list .single-contact:last-child {
    margin-bottom: 0;
}

.footer-section .company-contact-info .contact-area .contact-list .single-contact a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .footer-section .company-contact-info .contact-area .contact-list .single-contact a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .footer-section .company-contact-info .contact-area .contact-list .single-contact a {
        font-size: 20px;
    }
}

.footer-section .company-contact-info .contact-area .contact-list .single-contact a:hover {
    color: var(--primary-color1);
}

.footer-section .footer-menu-wrap {
    padding: 22px 40px;
    border: 1px solid rgba(var(--white-color-opc), 0.15);
    border-radius: 100px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .footer-section .footer-menu-wrap {
        padding: 22px 30px;
    }
}

@media (max-width: 1199px) {
    .footer-section .footer-menu-wrap {
        padding: 22px 25px;
    }
}

@media (max-width: 767px) {
    .footer-section .footer-menu-wrap {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-menu-wrap {
        border-radius: 15px;
    }
}

.footer-section .footer-menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    line-height: 1;
}

@media (max-width: 767px) {
    .footer-section .footer-menu-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-menu-list {
        flex-direction: column;
        align-items: start;
        gap: 25px;
    }
}

.footer-section .footer-menu-list li a {
    color: var(--dark-text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    transition: 0.5s;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section .footer-menu-list li a {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .footer-section .footer-menu-list li a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-menu-list li a {
        font-size: 17px;
    }
}

.footer-section .footer-menu-list li a:hover {
    color: var(--white-color);
}

.footer-section .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-section .social-list li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.footer-section .social-list li a i {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1;
    transition: 0.5s;
}

.footer-section .social-list li a i.bi-twitter-x {
    font-size: 12px;
}

.footer-section .social-list li a:hover {
    background-color: var(--primary-color1);
}

.footer-section .social-list li a:hover i {
    color: var(--dark-title-color);
}

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

.footer-section .footer-brand h2 {
    color: rgba(var(--white-color-opc), 0.2);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 12.76vw;
    line-height: 100%;
    letter-spacing: 0.14em;
    margin-bottom: 0;
}

@media (max-width: 1799px) {
    .footer-section .footer-brand h2 {
        font-size: 12.6vw;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section .footer-brand h2 {
        font-size: 12.45vw;
    }
}

@media (max-width: 1399px) {
    .footer-section .footer-brand h2 {
        font-size: 12.45vw;
    }
}

@media (max-width: 991px) {
    .footer-section .footer-brand h2 {
        letter-spacing: 0.1em;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-brand h2 {
        letter-spacing: 0.08em;
    }
}

.footer-section .footer-bottom {
    padding: 16px 10px;
    text-align: center;
}

.footer-section .footer-bottom p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-section .footer-bottom p a {
    color: var(--white-color);
    transition: 0.5s;
}

.footer-section .footer-bottom p a:hover {
    color: var(--primary-color1);
}

.footer-section .footer-bottom p svg {
    fill: var(--dark-text-color);
    margin-bottom: 2px;
}

.footer-section.one .footer-wrapper {
    padding: 120px 0 30px;
    background-color: var(--dark-black-color);
}

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

@media (max-width: 991px) {
    .footer-section.one .footer-wrapper {
        padding: 90px 0 40px;
    }
}

@media (max-width: 767px) {
    .footer-section.one .footer-wrapper {
        padding: 70px 0 40px;
    }
}

@media (max-width: 576px) {
    .footer-section.one .footer-wrapper {
        border-radius: 15px;
    }
}

.footer-section.one .footer-logo-and-address-area {
    border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
    padding: 0 50px 120px;
}

@media (max-width: 1799px) {
    .footer-section.one .footer-logo-and-address-area {
        padding: 0 40px 120px;
    }
}

@media (max-width: 1699px) {
    .footer-section.one .footer-logo-and-address-area {
        padding: 0 30px 120px;
    }
}

@media (max-width: 1399px) {
    .footer-section.one .footer-logo-and-address-area {
        padding: 0 20px 100px;
    }
}

@media (max-width: 991px) {
    .footer-section.one .footer-logo-and-address-area {
        padding: 0 20px 90px;
    }
}

@media (max-width: 767px) {
    .footer-section.one .footer-logo-and-address-area {
        padding: 0 20px 70px;
    }
}

.footer-section.one .footer-logo-and-address-area .company-contact-info {
    margin-bottom: 0;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 576px) {
    .footer-section.one .footer-logo-and-address-area .company-contact-info {
        gap: 40px;
    }
}

@media (max-width: 1399px) {
    .footer-section.one .footer-logo-and-address-area .company-contact-info .address-area {
        max-width: 320px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section.one .footer-logo-and-address-area .company-contact-info .contact-area {
        max-width: unset;
        width: unset;
    }
}

@media (max-width: 1399px) {
    .footer-section.one .footer-logo-and-address-area .company-contact-info .contact-area {
        max-width: unset;
        width: unset;
    }
}

.footer-section.one .company-cta-and-footer-menu-area {
    padding: 0 50px;
    margin-bottom: 40px;
}

@media (max-width: 1799px) {
    .footer-section.one .company-cta-and-footer-menu-area {
        padding: 0 40px;
    }
}

@media (max-width: 1699px) {
    .footer-section.one .company-cta-and-footer-menu-area {
        padding: 0 30px;
    }
}

@media (max-width: 1399px) {
    .footer-section.one .company-cta-and-footer-menu-area {
        padding: 0 20px;
    }
}

.footer-section.one .company-cta-and-footer-menu-area .company-cta-area {
    max-width: 430px;
    width: 100%;
}

.footer-section.one .company-cta-and-footer-menu-area .company-cta-area p {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .footer-section.one .company-cta-and-footer-menu-area .company-cta-area p {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .footer-section.one .company-cta-and-footer-menu-area .company-cta-area p {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-section.one .company-cta-and-footer-menu-area .company-cta-area p {
        font-size: 24px;
    }
}

.footer-section.one .company-cta-and-footer-menu-area .company-cta-area p a {
    color: var(--primary-color1);
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: 0 95%;
    transition: background-size 0.75s;
    margin-left: 10px;
    white-space: nowrap;
}

.footer-section.one .company-cta-and-footer-menu-area .company-cta-area p a:hover {
    background-size: 0px 1px;
    background-position: 0 95%;
}

@media (max-width: 1199px) {
    .footer-section.one .company-cta-and-footer-menu-area .company-cta-area p a {
        margin-left: 5px;
    }
}

.footer-section.one .footer-menu {
    max-width: 600px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1399px) {
    .footer-section.one .footer-menu {
        max-width: 480px;
    }
}

@media (max-width: 1199px) {
    .footer-section.one .footer-menu {
        max-width: 430px;
    }
}

@media (max-width: 576px) {
    .footer-section.one .footer-menu {
        flex-direction: column;
        align-items: start;
    }
}

.footer-section.one .footer-menu-list {
    display: block;
}

.footer-section.one .footer-menu-list li {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .footer-section.one .footer-menu-list li {
        margin-bottom: 25px;
    }
}

.footer-section.one .footer-menu-list li a {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199px) {
    .footer-section.one .footer-menu-list li a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section.one .footer-menu-list li a {
        font-size: 16px;
    }
}

.footer-section.one .footer-menu-list li a span {
    color: var(--dark-title-color);
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    padding: 2px 9px;
    border-radius: 100px;
    background-color: var(--primary-color1);
}

.footer-section.one .footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-section.two {
    margin: 0;
    border-radius: unset;
    padding: 0;
    background-color: var(--dark-black-color);
}

.footer-section.two .footer-main-warp {
    padding: 120px 0;
    display: block;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .footer-section.two .footer-main-warp {
        padding: 120px 0;
    }
}

@media (max-width: 1199px) {
    .footer-section.two .footer-main-warp {
        padding: 90px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.two .footer-main-warp {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .footer-section.two .footer-main-warp {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .footer-section.two .footer-main-warp {
        padding: 70px 0;
    }
}

.footer-section.two .footer-main-warp .company-logo-area {
    max-width: 1320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 110px;
}

@media (max-width: 1799px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: 1260px;
    }
}

@media (max-width: 1699px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: 1210px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: 1110px;
    }
}

@media (max-width: 1399px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: 1010px;
        margin-bottom: 100px;
    }
}

@media (max-width: 1199px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: 880px;
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        max-width: unset;
        gap: 60px;
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .footer-section.two .footer-main-warp .company-logo-area {
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 50px;
    }
}

.footer-section.two .footer-main-warp .company-logo-area p {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
    max-width: 480px;
    width: 100%;
}

@media (max-width: 576px) {
    .footer-section.two .footer-main-warp .company-logo-area p {
        font-size: 20px;
    }
}

.footer-section.two .footer-main-warp .company-contact-info {
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .footer-section.two .footer-main-warp .company-contact-info {
        flex-wrap: wrap;
        gap: 40px;
    }
}

.footer-section.two .footer-menu-wrap {
    border-radius: unset;
    border-left: unset;
    border-right: unset;
    padding: 26px 0;
}

@media (max-width: 1399px) {
    .footer-section.two .footer-menu-wrap {
        padding: 26px 0;
    }
}

@media (max-width: 1199px) {
    .footer-section.two .footer-menu-wrap {
        padding: 26px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.two .footer-menu-wrap {
        padding: 26px 0;
    }
}

@media (max-width: 767px) {
    .footer-section.two .footer-menu-wrap {
        padding: 26px 0;
    }
}

.footer-section.two .footer-menu-wrap .footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 576px) {
    .footer-section.two .footer-menu-wrap .footer-menu {
        flex-direction: column;
        align-items: start;
    }
}

.footer-section.two .footer-menu-wrap .footer-menu-list {
    justify-content: start;
    gap: 50px;
}

@media (max-width: 1199px) {
    .footer-section.two .footer-menu-wrap .footer-menu-list {
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .footer-section.two .footer-menu-wrap .footer-menu-list {
        gap: 25px;
    }
}

.footer-section.two .footer-menu-wrap .footer-menu-list li a {
    font-family: var(--font-kanit);
    font-size: 14px;
    font-weight: 500;
}

.footer-section.three {
    margin: 0;
    border-radius: unset;
    padding: 0;
    background-color: var(--dark-black-color);
}

.footer-section.three .footer-main-warp {
    margin-bottom: 0;
    padding: 70px 0 70px;
    border-top: 1px solid rgba(var(--white-color-opc), 0.15);
    border-bottom: 1px solid rgba(var(--white-color-opc), 0.15);
}

@media (max-width: 576px) {
    .footer-section.three .footer-main-warp {
        padding: 50px 0 50px;
    }
}

.footer-section.three .footer-main-warp .footer-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 767px) {
    .footer-section.three .footer-main-warp .footer-main {
        flex-wrap: wrap;
        gap: 50px;
    }
}

.footer-section.three .footer-main-warp .footer-main .company-contact-info {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-section.three .footer-main-warp .footer-main .company-contact-info {
        gap: 35px;
        max-width: 500px;
    }
}

.footer-section.three .footer-main-warp .social-list {
    margin-top: 40px;
}

@media (max-width: 576px) {
    .footer-section.three .footer-main-warp .social-list {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-section.three .company-logo-area {
        max-width: 250px;
    }
}

.footer-section.three .company-logo-area p {
    color: var(--white-color);
    font-weight: 500;
    margin: 30px 0 0;
}

@media (max-width: 991px) {
    .footer-section.three .company-logo-area p {
        margin: 25px 0 0;
    }
}

.footer-section.four {
    margin: 0;
    border-radius: unset;
    padding: 0;
    background-color: var(--dark-black-color);
}

.footer-section.four .footer-logo-and-address-area {
    border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
    padding: 120px 50px;
}

@media (max-width: 1799px) {
    .footer-section.four .footer-logo-and-address-area {
        padding: 120px 40px;
    }
}

@media (max-width: 1699px) {
    .footer-section.four .footer-logo-and-address-area {
        padding: 120px 30px;
    }
}

@media (max-width: 1399px) {
    .footer-section.four .footer-logo-and-address-area {
        padding: 100px 20px;
    }
}

@media (max-width: 991px) {
    .footer-section.four .footer-logo-and-address-area {
        padding: 90px 20px;
    }
}

@media (max-width: 767px) {
    .footer-section.four .footer-logo-and-address-area {
        padding: 70px 20px;
    }
}

.footer-section.four .footer-logo-and-address-area .company-contact-info {
    margin-bottom: 0;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 576px) {
    .footer-section.four .footer-logo-and-address-area .company-contact-info {
        gap: 40px;
    }
}

@media (max-width: 1399px) {
    .footer-section.four .footer-logo-and-address-area .company-contact-info .address-area {
        max-width: 320px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section.four .footer-logo-and-address-area .company-contact-info .contact-area {
        max-width: unset;
        width: unset;
    }
}

@media (max-width: 1399px) {
    .footer-section.four .footer-logo-and-address-area .company-contact-info .contact-area {
        max-width: unset;
        width: unset;
    }
}

.footer-section.four .company-cta-and-footer-menu-area {
    padding: 0 50px;
    margin-bottom: 100px;
}

@media (max-width: 1799px) {
    .footer-section.four .company-cta-and-footer-menu-area {
        padding: 0 40px;
    }
}

@media (max-width: 1699px) {
    .footer-section.four .company-cta-and-footer-menu-area {
        padding: 0 30px;
    }
}

@media (max-width: 1399px) {
    .footer-section.four .company-cta-and-footer-menu-area {
        padding: 0 20px;
        margin-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .footer-section.four .company-cta-and-footer-menu-area {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .footer-section.four .company-cta-and-footer-menu-area {
        margin-bottom: 50px;
    }
}

.footer-section.four .company-cta-and-footer-menu-area .company-cta-area {
    max-width: 430px;
    width: 100%;
}

.footer-section.four .company-cta-and-footer-menu-area .company-cta-area p {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .footer-section.four .company-cta-and-footer-menu-area .company-cta-area p {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .footer-section.four .company-cta-and-footer-menu-area .company-cta-area p {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-section.four .company-cta-and-footer-menu-area .company-cta-area p {
        font-size: 24px;
    }
}

.footer-section.four .company-cta-and-footer-menu-area .company-cta-area p a {
    color: var(--primary-color1);
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: 0 95%;
    transition: background-size 0.75s;
    margin-left: 10px;
    white-space: nowrap;
}

.footer-section.four .company-cta-and-footer-menu-area .company-cta-area p a:hover {
    background-size: 0px 1px;
    background-position: 0 95%;
}

@media (max-width: 1199px) {
    .footer-section.four .company-cta-and-footer-menu-area .company-cta-area p a {
        margin-left: 5px;
    }
}

.footer-section.four .footer-menu {
    max-width: 600px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1399px) {
    .footer-section.four .footer-menu {
        max-width: 480px;
    }
}

@media (max-width: 1199px) {
    .footer-section.four .footer-menu {
        max-width: 430px;
    }
}

@media (max-width: 576px) {
    .footer-section.four .footer-menu {
        flex-direction: column;
        align-items: start;
    }
}

.footer-section.four .footer-menu-list {
    display: block;
}

.footer-section.four .footer-menu-list li {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .footer-section.four .footer-menu-list li {
        margin-bottom: 25px;
    }
}

.footer-section.four .footer-menu-list li a {
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199px) {
    .footer-section.four .footer-menu-list li a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-section.four .footer-menu-list li a {
        font-size: 16px;
    }
}

.footer-section.four .footer-menu-list li a span {
    color: var(--dark-title-color);
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    padding: 2px 9px;
    border-radius: 100px;
    background-color: var(--primary-color1);
}

.footer-section.four .footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-section.four .footer-bottom .footer-bottom-wrap {
    text-align: center;
}

.footer-section.five {
    margin: 0;
    border-radius: unset;
    padding: 0;
    background-color: var(--dark-black-color);
}

.footer-section.five .footer-main-warp {
    padding: 120px 0 70px;
    display: block;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .footer-section.five .footer-main-warp {
        padding: 90px 0 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.five .footer-main-warp {
        padding: 100px 0 70px;
    }
}

@media (max-width: 767px) {
    .footer-section.five .footer-main-warp {
        padding: 70px 0;
    }
}

.footer-section.five .footer-main-warp .company-logo-area {
    max-width: unset;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .footer-section.five .footer-main-warp .company-logo-area {
        margin-bottom: 50px;
    }
}

.footer-section.five .footer-main-warp .company-logo-area p {
    color: var(--white-color);
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
    max-width: 480px;
    width: 100%;
}

@media (max-width: 991px) {
    .footer-section.five .footer-main-warp .company-logo-area p {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .footer-section.five .footer-main-warp .company-logo-area p {
        font-size: 26px;
        margin-top: 35px;
    }
}

.footer-section.five .footer-main-warp .company-contact-info {
    display: block;
    margin-bottom: 0;
}

.footer-section.five .footer-main-warp .company-contact-info .address-area a {
    margin-bottom: 0;
    text-decoration: none;
}

.footer-section.five .footer-main-warp .company-contact-info .mail-and-social-area {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

@media (max-width: 576px) {
    .footer-section.five .footer-main-warp .company-contact-info .mail-and-social-area {
        flex-wrap: wrap;
    }
}

.footer-section.five .footer-menu-wrap {
    border-radius: unset;
    border: unset;
    padding: 0;
    margin-top: 130px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1399px) {
    .footer-section.five .footer-menu-wrap {
        margin-top: 110px;
    }
}

@media (max-width: 1199px) {
    .footer-section.five .footer-menu-wrap {
        margin-top: 90px;
    }
}

@media (max-width: 767px) {
    .footer-section.five .footer-menu-wrap {
        flex-wrap: wrap;
        gap: 50px;
        margin-top: 70px;
    }
}

.footer-section.five .footer-menu-wrap .footer-menu {
    max-width: 400px;
    min-width: 400px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .footer-section.five .footer-menu-wrap .footer-menu {
        max-width: 340px;
        min-width: 340px;
    }
}

@media (max-width: 1399px) {
    .footer-section.five .footer-menu-wrap .footer-menu {
        max-width: 280px;
        min-width: 280px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.five .footer-menu-wrap .footer-menu {
        max-width: 250px;
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    .footer-section.five .footer-menu-wrap .footer-menu {
        max-width: 350px;
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-section.five .footer-menu-wrap .footer-menu {
        flex-direction: column;
        align-items: start;
    }
}

.footer-section.five .footer-menu-wrap .footer-menu-list {
    display: block;
}

.footer-section.five .footer-menu-wrap .footer-menu-list li {
    margin-bottom: 25px;
}

.footer-section.five .footer-menu-wrap .footer-menu-list li a {
    font-family: var(--font-kanit);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-section.five .footer-menu-wrap .footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-section.five .footer-menu-wrap .email-form-area {
    min-width: 345px;
    max-width: 345px;
}

@media (max-width: 1399px) {
    .footer-section.five .footer-menu-wrap .email-form-area {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.five .footer-menu-wrap .email-form-area {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 767px) {
    .footer-section.five .footer-menu-wrap .email-form-area {
        max-width: 350px;
        min-width: unset;
    }
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form {
    padding: 25px 30px;
    background-color: #1E1E1E;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.five .footer-menu-wrap .email-form-area .email-form {
        padding: 22px 25px;
    }
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form input {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    background-color: transparent;
    width: 100%;
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form input::-moz-placeholder {
    color: var(--dark-text-color);
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form input::placeholder {
    color: var(--dark-text-color);
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form svg {
    fill: var(--white-color);
    transition: 0.5s;
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form button {
    background-color: transparent;
}

.footer-section.five .footer-menu-wrap .email-form-area .email-form button:hover svg {
    fill: var(--primary-color1);
}

.footer-section.five .footer-menu-wrap .email-form-area p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
}

.footer-section.five .footer-menu-wrap .email-form-area p a {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.footer-section.five .footer-menu-wrap .email-form-area p a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.footer-section.five .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: start;
}

.footer-section.six {
    margin: 0;
    border-radius: unset;
    padding: 0;
    background-color: transparent;
}

.footer-section.six .footer-main-warp {
    margin-bottom: 0;
    padding: 70px 0;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .footer-section.six .footer-main-warp {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .footer-section.six .footer-main-warp {
        padding: 50px 0;
    }
}

.footer-section.six .footer-main-warp .footer-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-section.six .footer-main-warp .footer-main {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .footer-section.six .footer-main-warp .footer-main {
        flex-wrap: wrap;
        gap: 50px;
    }
}

.footer-section.six .footer-main-warp .footer-main .company-logo-area p {
    color: var(--title-color);
    margin: 30px 0;
}

.footer-section.six .footer-main-warp .footer-main .widget-title {
    color: var(--text-color);
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-section.six .footer-main-warp .footer-main .company-contact-info {
        gap: 35px;
        max-width: 500px;
    }
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info .address-area a {
    color: var(--title-color);
    text-decoration: none;
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info .address-area a span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: 0 95%;
    transition: background-size 0.75s;
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info .address-area a:hover span {
    background-size: 0px 1px;
    background-position: right 95%;
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info .contact-area .contact-list .single-contact a {
    color: var(--title-color);
    font-weight: 400;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.footer-section.six .footer-main-warp .footer-main .company-contact-info .contact-area .contact-list .single-contact a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

.footer-section.six .footer-main-warp .social-list {
    margin-top: 0;
}

.footer-section.six .footer-main-warp .social-list li a {
    background-color: transparent;
    border: 1px solid var(--borders-color);
}

.footer-section.six .footer-main-warp .social-list li a i {
    color: var(--title-color);
}

.footer-section.six .footer-main-warp .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.footer-section.six .footer-main-warp .social-list li a:hover i {
    color: var(--dark-title-color);
}

.footer-section.six .footer-bottom {
    padding: 0px 10px 16px;
}

.footer-section.six .footer-bottom p {
    color: var(--text-color);
}

.footer-section.six .footer-bottom p a {
    color: var(--title-color);
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.footer-section.six .footer-bottom p a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

.footer-section.six .footer-bottom p svg {
    fill: var(--text-color);
}

.footer-section.font-alt .footer-main-warp .company-logo-area p {
    font-family: var(--font-spaceGrotesk);
    letter-spacing: 0.03em;
}

.footer-section.font-alt .footer-main-warp .company-contact-info .address-area a {
    font-family: var(--font-spaceGrotesk);
}

.footer-section.font-alt .footer-main-warp .company-contact-info .contact-area .contact-list .single-contact a {
    font-family: var(--font-spaceGrotesk);
}

.footer-section.font-alt .footer-brand h2 {
    font-family: var(--font-spaceGrotesk);
}

.footer-section.font-alt2 .footer-main-warp .company-logo-area p {
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
}

.footer-section.font-alt2 .footer-main-warp .company-contact-info .address-area a {
    font-family: var(--font-tartuffo-Trial);
}

.footer-section.font-alt2 .footer-main-warp .company-contact-info .contact-area .contact-list .single-contact a {
    font-family: var(--font-tartuffo-Trial);
}

.footer-section.font-alt2 .footer-brand h2 {
    font-family: var(--font-tartuffo-Trial);
}

/*=====================================
  16. Home1 Banner Section CSS
========================================*/
.home2-banner-section {
    background-image: linear-gradient(180deg, #FFFFFF 33.15%, rgba(255, 255, 255, 0.5) 100%), url(../img/home2/home2-banner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 175px 0 130px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-banner-section {
        padding: 155px 0 120px;
    }
}

@media (max-width: 1399px) {
    .home2-banner-section {
        padding: 155px 0 110px;
    }
}

@media (max-width: 1199px) {
    .home2-banner-section {
        padding: 135px 0 90px;
    }
}

@media (max-width: 1199px) {
    .home2-banner-section {
        padding: 135px 0 90px;
    }
}

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

@media (max-width: 767px) {
    .home2-banner-section {
        padding: 125px 0 70px;
    }
}

.home2-banner-section .banner-content-wrap .title-area {
    margin-bottom: 85px;
}

@media (max-width: 1399px) {
    .home2-banner-section .banner-content-wrap .title-area {
        margin-bottom: 65px;
    }
}

@media (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .title-area {
        margin-bottom: 55px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-content-wrap .title-area {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .title-area {
        margin-bottom: 30px;
    }
}

.home2-banner-section .banner-content-wrap .title-area h1 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 100px;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
}

@media (max-width: 1799px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 90px;
    }
}

@media (max-width: 1699px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 85px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 80px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 75px;
        margin-bottom: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 65px;
        line-height: 1.1;
    }
}

@media (max-width: 767px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 55px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .title-area h1 {
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
}

.home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap {
        flex-wrap: wrap;
        gap: 5px;
    }
}

.home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
    max-width: 155px;
    width: 100%;
    height: 70px;
    display: flex;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        max-width: 120px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video {
        margin-bottom: 5px;
        margin-left: 5px;
        height: 42px;
    }
}

.home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
    width: 100%;
    width: 100%;
    height: 71px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
        max-width: 120px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .title-area h1 .banner-video-wrap .banner-video video {
        height: 42px;
    }
}

.home2-banner-section .banner-content-wrap .banner-content {
    display: flex;
    align-items: center;
    gap: 85px;
}

@media (max-width: 1399px) {
    .home2-banner-section .banner-content-wrap .banner-content {
        gap: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .banner-content {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .home2-banner-section .banner-content-wrap .banner-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .banner-content {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .banner-content img {
        width: 160px;
    }
}

.home2-banner-section .banner-content-wrap .banner-content .info {
    max-width: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .banner-content .info {
        gap: 10px;
    }
}

.home2-banner-section .banner-content-wrap .banner-content .info svg {
    fill: var(--black-color);
    min-width: 32px;
}

.home2-banner-section .banner-content-wrap .banner-content .info span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-content-wrap .banner-content .info span {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-content-wrap .banner-content .info span {
        font-size: 16px;
    }
}

.home2-banner-section .banner-short-info-area {
    display: flex;
    align-items: end;
    gap: 20px;
    max-width: 330px;
    width: 100%;
    position: absolute;
    top: 25%;
    right: 25%;
}

@media (max-width: 1199px) {
    .home2-banner-section .banner-short-info-area {
        top: 20%;
        right: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-short-info-area {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-short-info-area {
        position: relative;
        top: unset;
        right: unset;
        margin: 40px 30px 0;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-short-info-area {
        margin: 20px 10px 0;
        gap: 15px;
    }
}

.home2-banner-section .banner-short-info-area svg {
    fill: var(--black-color);
    min-width: 36px;
}

.home2-banner-section .banner-short-info-area .info span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-top: 5px;
}

@media (max-width: 576px) {
    .home2-banner-section .banner-short-info-area .info span {
        font-size: 16px;
    }
}

.home2-banner-section .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-banner-section .social-list {
        display: none;
    }
}

@media (max-width: 1399px) {
    .home2-banner-section .social-list {
        display: none;
    }
}

.home2-banner-section .social-list li {
    margin-bottom: 25px;
}

.home2-banner-section .social-list li:last-child {
    margin-bottom: 0;
}

.home2-banner-section .social-list li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text-color);
    transition: 0.5s;
}

.home2-banner-section .social-list li a i {
    font-size: 15px;
    line-height: 1;
    transition: 0.5s;
}

.home2-banner-section .social-list li a i.bi-twitter-x {
    font-size: 13px;
}

.home2-banner-section .social-list li a:hover {
    color: var(--dark-white-color);
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.home2-banner-section .banner-video-area {
    max-width: 345px;
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
    position: absolute;
    bottom: 130px;
    right: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-banner-section .banner-video-area {
        bottom: 120px;
    }
}

@media (max-width: 1399px) {
    .home2-banner-section .banner-video-area {
        bottom: 110px;
        right: 30px;
    }
}

@media (max-width: 1199px) {
    .home2-banner-section .banner-video-area {
        bottom: 90px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-video-area {
        max-width: 310px;
        right: 15px;
    }
}

@media (max-width: 991px) {
    .home2-banner-section .banner-video-area {
        position: relative;
        right: unset;
        bottom: unset;
        margin: 30px 30px 0;
    }
}

@media (max-width: 576px) {
    .home2-banner-section .banner-video-area {
        margin: 30px 10px 0;
        max-width: 330px;
    }
}

.home2-banner-section .banner-video-area .banner-video {
    display: block;
    height: 210px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-video-area .banner-video {
        height: 180px;
    }
}

.home2-banner-section .banner-video-area .banner-video video {
    width: 100%;
    height: 210px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-video-area .banner-video video {
        height: 180px;
    }
}

.home2-banner-section .banner-video-area .video-content {
    padding: 15px 20px;
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home2-banner-section .banner-video-area .video-content {
        padding: 12px 20px;
    }
}

.home2-banner-section .banner-video-area .video-content span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

/*=====================================
  17. Home2 Banner Image Section CSS
========================================*/
.home2-banner-image-section {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home2-banner-image-section {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    .home2-banner-image-section {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    .home2-banner-image-section {
        min-height: 450px;
    }
}

.home2-banner-image-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}

.home2-banner-image-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slice-wrap {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.slice-wrap .slice-item {
    height: 100%;
    flex-grow: 1;
    background: #ffffff;
}

/*=====================================
  18. Home2 About Section CSS
========================================*/
.home2-about-section .about-content .section-title {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .home2-about-section .about-content .section-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home2-about-section .about-content .section-title {
        margin-bottom: 40px;
    }
}

.home2-about-section .about-content .section-title > span {
    padding: 10px 20px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    margin-bottom: 35px;
}

.home2-about-section .about-content .section-title > span::before {
    display: none;
}

.home2-about-section .about-content .section-title h2 {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

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

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

@media (max-width: 767px) {
    .home2-about-section .about-content .section-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .home2-about-section .about-content .section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }
}

.home2-about-section .about-content .section-title h2 img {
    max-width: 72px;
    width: 100%;
}

@media (max-width: 576px) {
    .home2-about-section .about-content .section-title h2 img {
        max-width: 60px;
    }
}

.home2-about-section .about-content .section-title h2 video {
    max-width: 116px;
    width: 100%;
    height: 48px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
    margin-bottom: -10px;
}

@media (max-width: 767px) {
    .home2-about-section .about-content .section-title h2 video {
        max-width: 105px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .home2-about-section .about-content .section-title h2 video {
        max-width: 95px;
        height: 40px;
    }
}

.counter-section {
    padding: 65px 0px 0;
    border-top: 1px solid var(--borders-color);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .counter-section {
        padding: 65px 0px 0;
    }
}

@media (max-width: 1399px) {
    .counter-section {
        padding: 65px 0px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .counter-section {
        padding: 55px 0px 0;
    }
}

@media (max-width: 767px) {
    .counter-section {
        padding: 55px 0 0;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 50px 0 0;
    }
}

.counter-section .counter-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .counter-section .counter-list {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .counter-section .counter-list {
        flex-wrap: wrap;
        row-gap: 40px;
    }
}

@media (max-width: 767px) {
    .counter-section .counter-list {
        gap: 20px;
        row-gap: 40px;
    }
}

@media (max-width: 576px) {
    .counter-section .counter-list {
        justify-content: center;
    }
}

.counter-section .counter-list .single-counter {
    max-width: 254px;
    width: 100%;
    text-align: center;
}

.counter-section .counter-list .single-counter h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .counter-section .counter-list .single-counter h2 {
        font-size: 68px;
    }
}

@media (max-width: 1399px) {
    .counter-section .counter-list .single-counter h2 {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .counter-section .counter-list .single-counter h2 {
        font-size: 55px;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .counter-section .counter-list .single-counter h2 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .counter-section .counter-list .single-counter h2 {
        font-size: 48px;
    }
}

.counter-section .counter-list .single-counter > span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    display: block;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .counter-section .counter-list .single-counter > span {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .counter-section .counter-list .single-counter > span {
        font-size: 14px;
    }
}

.counter-section.two {
    border-top: unset;
    padding: 0;
}

.counter-section.two .counter-list .single-counter h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 145px;
    margin-bottom: 10px;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .counter-section.two .counter-list .single-counter h2 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .counter-section.two .counter-list .single-counter h2 {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .counter-section.two .counter-list .single-counter h2 {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .counter-section.two .counter-list .single-counter h2 {
        font-size: 100px;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .counter-section.two .counter-list .single-counter h2 {
        font-size: 85px;
    }
}

.counter-section.two .counter-list .single-counter h2 sup {
    font-weight: 300;
    font-size: 60px;
    position: absolute;
    top: 38px;
    margin-left: 5px;
}

@media (max-width: 1399px) {
    .counter-section.two .counter-list .single-counter h2 sup {
        top: 35px;
    }
}

@media (max-width: 1199px) {
    .counter-section.two .counter-list .single-counter h2 sup {
        font-size: 50px;
        top: 30px;
        margin-left: 3px;
    }
}

@media (max-width: 991px) {
    .counter-section.two .counter-list .single-counter h2 sup {
        font-size: 46px;
        top: 25px;
    }
}

.counter-section.two .counter-list .single-counter h2 sup.percentage {
    font-size: 40px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .counter-section.two .counter-list .single-counter h2 sup.percentage {
        font-size: 30px;
    }
}

.counter-section.three {
    padding-top: 0;
    border-top: unset;
}

.counter-section.three .counter-list .single-counter h2 {
    font-family: var(--font-spaceGrotesk);
}

.counter-section.four {
    border-top: unset;
    padding: 0;
}

.counter-section.four .counter-list .single-counter h2 {
    font-family: var(--font-tartuffo-Trial);
    font-size: 145px;
    font-weight: 300;
    margin-bottom: 10px;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .counter-section.four .counter-list .single-counter h2 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .counter-section.four .counter-list .single-counter h2 {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .counter-section.four .counter-list .single-counter h2 {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .counter-section.four .counter-list .single-counter h2 {
        font-size: 100px;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .counter-section.four .counter-list .single-counter h2 {
        font-size: 85px;
    }
}

.counter-section.four .counter-list .single-counter h2 sup {
    font-weight: 300;
    font-size: 60px;
    position: absolute;
    top: 38px;
    margin-left: 5px;
}

@media (max-width: 1399px) {
    .counter-section.four .counter-list .single-counter h2 sup {
        top: 35px;
    }
}

@media (max-width: 1199px) {
    .counter-section.four .counter-list .single-counter h2 sup {
        font-size: 50px;
        top: 30px;
        margin-left: 3px;
    }
}

@media (max-width: 991px) {
    .counter-section.four .counter-list .single-counter h2 sup {
        font-size: 46px;
        top: 25px;
    }
}

.counter-section.four .counter-list .single-counter h2 sup.percentage {
    font-size: 40px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .counter-section.four .counter-list .single-counter h2 sup.percentage {
        font-size: 30px;
    }
}

/*=====================================
  19. Home2 Service Section CSS
========================================*/
.service-card {
    padding: 50px 40px;
    background-color: #F0F0F0;
}

@media (max-width: 1399px) {
    .service-card {
        padding: 50px 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-card {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 40px 20px;
    }
}

.service-card .icon {
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .service-card .icon {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .service-card .icon {
        margin-bottom: 35px;
    }
}

.service-card .icon svg {
    fill: var(--title-color);
}

.service-card .content h3 {
    line-height: 36px;
    margin-bottom: 10px;
}

.service-card .content h3 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 28px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 576px) {
    .service-card .content h3 a {
        font-size: 26px;
    }
}

.service-card .content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.service-card .content .line {
    fill: rgba(var(--black-color-opc), 0.1);
    width: 100%;
}

@media (min-width: 576px) and (max-width: 767px) {
    .service-card .content .line {
        width: 330px;
    }
}

.service-card .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 20px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .service-card .content ul {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .service-card .content ul {
        margin-bottom: 40px;
    }
}

.service-card .content ul li {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.service-card .content ul li:last-child {
    margin-bottom: 0;
}

.service-card .content .primary-btn1 {
    padding: 17px 26px;
}

.service-card .content .primary-btn1::after {
    background-color: var(--black-color);
}

.service-card .content .primary-btn1:hover {
    color: var(--white-color);
}

.service-card .content .primary-btn1:hover > span svg {
    fill: var(--white-color);
}

.service-card:hover .icon svg {
    animation: bounceIn 1.2s linear;
}

/*=====================================
  20. Home2 Portfolio Section CSS
========================================*/
.home2-portfolio-section .section-title {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.home2-portfolio-section .section-title span {
    font-size: 16px;
    margin-bottom: 0;
}

.home2-portfolio-section .section-title span:last-child {
    padding-left: 0;
}

.home2-portfolio-section .section-title span:last-child::before {
    display: none;
}

.home2-portfolio-section .portfolio-bottom-area .short-description h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .home2-portfolio-section .portfolio-bottom-area .short-description h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.home2-portfolio-section .portfolio-bottom-area .short-description p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .home2-portfolio-section .portfolio-bottom-area .short-description p {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home2-portfolio-section .portfolio-bottom-area .short-description p {
        font-size: 20px;
        margin-bottom: 45px;
    }
}

.home2-portfolio-section.font-alt .section-title span {
    font-family: var(--font-spaceGrotesk);
}

.home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
    height: unset;
    min-height: 800px;
}

@media (max-width: 1699px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 750px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 680px;
    }
}

@media (max-width: 1399px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 650px;
    }
}

@media (max-width: 1199px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .porfolio-img {
        min-height: 480px;
    }
}

@media (max-width: 576px) {
    .home2-portfolio-section.home4-portfolio .portfolio-card2 .portfolio-content-wrap {
        padding: 0 10px 60px;
    }
}

.portfolio-card2 {
    position: relative;
}

.portfolio-card2 .porfolio-img {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: block;
    cursor: none;
}

.portfolio-card2 .portfolio-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 50px 100px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 1399px) {
    .portfolio-card2 .portfolio-content-wrap {
        padding: 0 30px 100px;
    }
}

@media (max-width: 1199px) {
    .portfolio-card2 .portfolio-content-wrap {
        padding: 0 20px 90px;
    }
}

@media (max-width: 576px) {
    .portfolio-card2 .portfolio-content-wrap {
        padding: 0 10px 80px;
    }
}

.portfolio-card2 .portfolio-content-wrap .title-area span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
    padding-left: 13px;
    position: relative;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .portfolio-card2 .portfolio-content-wrap .title-area span {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .portfolio-card2 .portfolio-content-wrap .title-area span {
        font-size: 15px;
    }
}

.portfolio-card2 .portfolio-content-wrap .title-area span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color1);
}

.portfolio-card2 .portfolio-content-wrap .title-area h2 {
    line-height: 1.2;
    margin-bottom: 0;
}

.portfolio-card2 .portfolio-content-wrap .title-area h2 a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 70px;
    line-height: 1.2;
    transition: 0.5s;
}

@media (max-width: 1399px) {
    .portfolio-card2 .portfolio-content-wrap .title-area h2 a {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .portfolio-card2 .portfolio-content-wrap .title-area h2 a {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-card2 .portfolio-content-wrap .title-area h2 a {
        font-size: 45px;
    }
}

.portfolio-card2 .portfolio-content-wrap .title-area h2 a:hover {
    color: var(--primary-color1);
}

.portfolio-card2 .portfolio-content-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.portfolio-card2 .portfolio-content-wrap ul li a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 9px 18px;
    display: block;
    border: 1px solid rgba(var(--white-color-opc), 0.15);
    border-radius: 100px;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .portfolio-card2 .portfolio-content-wrap ul li a {
        font-size: 15px;
        padding: 8px 16px;
    }
}

.portfolio-card2 .portfolio-content-wrap ul li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
    color: var(--dark-title-color);
}

/*=====================================
  21. Home2 Testimonial Section CSS
========================================*/
.home2-testimonial-section {
    padding: 120px 0;
    background-color: #F0F0F0;
    overflow: hidden;
}

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

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

@media (max-width: 767px) {
    .home2-testimonial-section {
        padding: 70px 0;
    }
}

.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 svg, .home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 p {
    animation: fadeInDown 1.7s;
}

.home2-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 .author-area {
    animation: fadeInUp 1.7s;
}

.home2-testimonial-section .partner-section {
    padding: 70px 0px 0;
    border-top: 1px solid rgba(var(--black-color-opc), 0.1);
    border-bottom: unset;
}

@media (max-width: 1199px) {
    .home2-testimonial-section .partner-section {
        padding: 70px 0px 0;
    }
}

@media (max-width: 991px) {
    .home2-testimonial-section .partner-section {
        padding: 60px 0px 0;
    }
}

@media (max-width: 767px) {
    .home2-testimonial-section .partner-section {
        padding: 40px 0px 0;
    }
}

.testimonial-card2 {
    text-align: center;
}

.testimonial-card2 svg {
    fill: var(--dark-text-color);
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .testimonial-card2 svg {
        margin-bottom: 20px;
    }
}

.testimonial-card2 p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 55px;
}

@media (max-width: 1199px) {
    .testimonial-card2 p {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .testimonial-card2 p {
        font-size: 27px;
        line-height: 40px;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .testimonial-card2 p {
        font-size: 22px;
        line-height: 36px;
    }
}

.testimonial-card2 p strong {
    color: var(--title-color);
    font-weight: 600;
}

.testimonial-card2 .author-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .testimonial-card2 .author-area {
        gap: 10px;
    }
}

.testimonial-card2 .author-area .author-img {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-card2 .author-area .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-card2 .author-area .author-content {
    line-height: 1;
    text-align: start;
}

.testimonial-card2 .author-area .author-content h3, .testimonial-card2 .author-area .author-content h5 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.testimonial-card2 .author-area .author-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.testimonial-card2.two p {
    font-family: var(--font-spaceGrotesk);
}

.testimonial-card2.two p strong {
    font-weight: 700;
}

.testimonial-card2.two .author-area .author-content h3, .testimonial-card2.two .author-area .author-content h5 {
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
}

.testimonial-card2.three {
    padding: 70px 48px;
    background-color: #F0F0F0;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
}

@media (max-width: 1399px) {
    .testimonial-card2.three {
        padding: 70px 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card2.three {
        padding: 60px 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-card2.three {
        padding: 70px 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-card2.three {
        padding: 55px 20px;
        gap: 50px;
        border-radius: 15px;
    }
}

@media (max-width: 1199px) {
    .testimonial-card2.three svg {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .testimonial-card2.three svg {
        margin-bottom: 15px;
        width: 50px;
    }
}

.testimonial-card2.three p {
    font-family: var(--font-spaceGrotesk);
    font-size: 27px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .testimonial-card2.three p {
        font-size: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-card2.three p {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .testimonial-card2.three p {
        font-size: 20px;
        line-height: 30px;
    }
}

.testimonial-card2.three p strong {
    font-weight: 500;
}

.testimonial-card2.three .author-area {
    justify-content: start;
}

.testimonial-card2.three .author-area .author-content h3, .testimonial-card2.three .author-area .author-content h5 {
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
}

/*=====================================
  22. Home2 Award Section CSS
========================================*/
.home2-award-section .section-title {
    display: flex;
    align-items: center;
    gap: 90px;
    margin-bottom: 130px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-award-section .section-title {
        gap: 70px;
    }
}

@media (max-width: 1399px) {
    .home2-award-section .section-title {
        gap: 70px;
    }
}

@media (max-width: 1199px) {
    .home2-award-section .section-title {
        gap: 50px;
        margin-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .home2-award-section .section-title {
        gap: 40px;
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .home2-award-section .section-title {
        gap: 30px;
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .home2-award-section .section-title {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.home2-award-section .section-title span {
    margin-bottom: 0;
}

.home2-award-section .section-title h2 {
    font-size: 145px;
    line-height: 0.9;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-award-section .section-title h2 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .home2-award-section .section-title h2 {
        font-size: 125px;
    }
}

@media (max-width: 1199px) {
    .home2-award-section .section-title h2 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .home2-award-section .section-title h2 {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .home2-award-section .section-title h2 {
        font-size: 85px;
    }
}

@media (max-width: 576px) {
    .home2-award-section .section-title h2 {
        font-size: 75px;
    }
}

.award-table {
    width: 100%;
}

@media (max-width: 767px) {
    .award-table thead {
        display: none;
    }
}

.award-table thead tr th {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 35px;
}

@media (max-width: 991px) {
    .award-table thead tr th {
        font-size: 16px;
        padding-bottom: 30px;
    }
}

.award-table thead tr th:last-child {
    text-align: end;
}

.award-table tbody tr {
    border-bottom: 1px solid var(--borders-color);
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.award-table tbody tr:last-child {
    border-bottom: unset;
}

.award-table tbody tr td {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 32px 0;
    transition: 0.5s;
    position: relative;
}

@media (max-width: 767px) {
    .award-table tbody tr td {
        font-size: 13px;
        padding: 22px 0;
    }
}

.award-table tbody tr td:last-child {
    text-align: end;
}

.award-table tbody tr td:nth-child(2) {
    width: 570px;
}

@media (max-width: 1699px) {
    .award-table tbody tr td:nth-child(2) {
        width: 500px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .award-table tbody tr td:nth-child(2) {
        width: 420px;
    }
}

@media (max-width: 1399px) {
    .award-table tbody tr td:nth-child(2) {
        width: unset;
    }
}

.award-table tbody tr td:nth-child(3) {
    width: 430px;
}

@media (max-width: 1399px) {
    .award-table tbody tr td:nth-child(3) {
        width: unset;
    }
}

.award-table tbody tr td a {
    color: var(--title-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s;
}

.award-table tbody tr td a span {
    transition: 0.5s;
}

.award-table tbody tr td a svg {
    fill: #3F59DD;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.award-table tbody tr td a:hover {
    color: #3F59DD;
}

.award-table tbody tr td a:hover span {
    text-decoration: underline;
}

.award-table tbody tr td a:hover svg {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .award-table tbody tr td a {
        color: #3F59DD;
    }

    .award-table tbody tr td a span {
        text-decoration: underline;
    }

    .award-table tbody tr td a svg {
        opacity: 1;
        visibility: visible;
    }
}

.award-table tbody tr:hover {
    background-color: #F0F0F0;
}

.award-table tbody tr:hover td:first-child {
    transform: translateX(30px);
}

@media (max-width: 991px) {
    .award-table tbody tr:hover td:first-child {
        transform: translateX(20px);
    }
}

@media (max-width: 767px) {
    .award-table tbody tr:hover td:first-child {
        transform: translateX(0px);
    }
}

.award-table tbody tr:hover td:last-child {
    transform: translateX(-30px);
}

@media (max-width: 991px) {
    .award-table tbody tr:hover td:last-child {
        transform: translateX(-20px);
    }
}

@media (max-width: 767px) {
    .award-table tbody tr:hover td:last-child {
        transform: translateX(0px);
    }
}

@media (max-width: 767px) {
    .award-table tbody tr:hover {
        background-color: transparent;
    }

    .award-table tbody tr:hover td:first-child {
        padding-left: 10px;
    }

    .award-table tbody tr:hover td:last-child {
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .award-table tbody tr {
        display: block;
        width: 100%;
    }

    .award-table tbody tr td {
        display: block;
        width: 100%;
        text-align: right;
        padding: 15px 10px;
    }

    .award-table tbody tr td a {
        justify-content: end;
    }

    .award-table tbody tr td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-color);
        font-family: var(--font-kanit);
        font-weight: 400;
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 576px) {
    .award-table tbody tr td {
        padding: 15px 0;
        font-size: 16px;
    }

    .award-table tbody tr td::before {
        left: 0;
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two thead tr th {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .award-table.two thead tr th {
        padding-bottom: 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .award-table.two tbody tr td {
        font-size: 16px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .award-table.two tbody tr td {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two tbody tr td {
        font-size: 16px;
    }
}

.award-table.two tbody tr td:nth-child(2) {
    width: unset;
}

.award-table.two tbody tr td:nth-child(3) {
    width: unset;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two tbody tr td a {
        gap: 5px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two tbody tr td a svg {
        width: 12px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two tbody tr:hover td:first-child {
        transform: translateX(20px);
    }
}

@media (max-width: 991px) {
    .award-table.two tbody tr:hover td:first-child {
        transform: translateX(20px);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .award-table.two tbody tr:hover td:last-child {
        transform: translateX(-20px);
    }
}

@media (max-width: 991px) {
    .award-table.two tbody tr:hover td:last-child {
        transform: translateX(-20px);
    }
}

/*=====================================
  23. Home2 Contact Section CSS
========================================*/
.home2-contact-section {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0;
    margin-bottom: -2px;
}

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

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

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

@media (max-width: 576px) {
    .home2-contact-section {
        padding: 90px 0;
    }
}

.home2-contact-section .contact-content {
    text-align: center;
}

.home2-contact-section .contact-content > span {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .home2-contact-section .contact-content > span {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .home2-contact-section .contact-content > span {
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .home2-contact-section .contact-content > span {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
}

.home2-contact-section .contact-content h2 {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 145px;
    line-height: 1;
    margin-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home2-contact-section .contact-content h2 {
        font-size: 135px;
    }
}

@media (max-width: 1399px) {
    .home2-contact-section .contact-content h2 {
        font-size: 130px;
    }
}

@media (max-width: 1199px) {
    .home2-contact-section .contact-content h2 {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .home2-contact-section .contact-content h2 {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .home2-contact-section .contact-content h2 {
        font-size: 75px;
    }
}

@media (max-width: 576px) {
    .home2-contact-section .contact-content h2 {
        font-size: 55px;
        line-height: 1.1;
        margin-bottom: 40px;
    }
}

.home2-contact-section .contact-content .contact-btn {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 6px 6px 36px;
    min-width: 410px;
    background-color: var(--white-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .home2-contact-section .contact-content .contact-btn {
        min-width: unset;
        width: 100%;
        padding: 6px 6px 6px 30px;
        font-size: 13px;
    }
}

.home2-contact-section .contact-content .contact-btn span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .home2-contact-section .contact-content .contact-btn span {
        width: 42px;
        height: 42px;
    }
}

.home2-contact-section .contact-content .contact-btn span svg {
    fill: var(--dark-title-color);
    transition: 0.5s;
}

.home2-contact-section .contact-content .contact-btn:hover {
    background-color: var(--primary-color1);
}

.home2-contact-section .contact-content .contact-btn:hover span {
    background-color: var(--dark-black-color);
}

.home2-contact-section .contact-content .contact-btn:hover span svg {
    fill: var(--white-color);
}

.home2-contact-section.two {
    padding: 115px 0;
}

@media (max-width: 767px) {
    .home2-contact-section.two {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {
    .home2-contact-section.two {
        padding: 90px 0;
    }
}

.home2-contact-section.two .contact-content {
    position: relative;
}

.home2-contact-section.two .contact-content > span {
    color: var(--dark-title-color);
}

.home2-contact-section.two .contact-content h2 {
    color: var(--dark-title-color);
}

.home2-contact-section.two .contact-content .contact-btn {
    background-color: var(--dark-black-color);
    color: var(--white-color);
}

.home2-contact-section.two .contact-content .contact-btn span {
    background-color: var(--white-color);
}

.home2-contact-section.two .contact-content .contact-btn:hover {
    background-color: var(--white-color);
    color: var(--dark-title-color);
}

.home2-contact-section.two .contact-content .contact-btn:hover span {
    background-color: var(--dark-black-color);
}

.home2-contact-section.two .contact-content .contact-btn:hover span svg {
    fill: var(--white-color);
}

.home2-contact-section.two .contact-content .emoji-img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .home2-contact-section.two .contact-content .emoji-img {
        display: none;
    }
}

@media (max-width: 1199px) {
    .home2-contact-section.two .contact-content .emoji-img img {
        width: 110px;
    }
}

@media (max-width: 991px) {
    .home2-contact-section.two .contact-content .emoji-img img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .home2-contact-section.two .contact-content .emoji-img img {
        width: 70px;
    }
}

/*=====================================
  24. Home3 Banner Section CSS
========================================*/
.home3-banner-section {
    padding: 218px 0 110px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section {
        padding: 218px 0 110px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section {
        padding: 218px 0 110px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section {
        padding: 200px 0px 90px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section {
        padding: 150px 0px 70px;
    }
}

@media (max-width: 576px) {
    .home3-banner-section {
        padding: 130px 0px 70px;
    }
}

.home3-banner-section .banner-wrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 100px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section .banner-wrapper {
        gap: 55px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper {
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section .banner-wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: start;
    }
}

@media (max-width: 767px) {
    .home3-banner-section .banner-wrapper {
        gap: 35px;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area {
    max-width: 610px;
    width: 100%;
    margin-bottom: 10px;
}

@media (max-width: 1699px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area {
        max-width: 580px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area {
        max-width: 560px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area {
        max-width: 505px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area {
        max-width: unset;
        margin-bottom: 0;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 100px;
    background-color: #F0F0F0;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area {
        gap: 10px;
        padding: 15px 20px;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area svg {
    fill: #E62415;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area svg path:last-child {
    fill: #17313B;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area .content span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area {
    display: flex;
    align-items: center;
    gap: 74px;
}

@media (max-width: 1699px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area {
        gap: 50px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area {
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info {
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info {
        max-width: 285px;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info svg {
    fill: var(--title-color);
    min-width: 36px;
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .short-info span {
        font-size: 17px;
    }
}

.home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .address {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 230px;
    width: 100%;
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-rating-and-info-area .short-info-and-address-area .address {
        font-size: 17px;
        max-width: 200px;
    }
}

.home3-banner-section .banner-wrapper .banner-title {
    max-width: 895px;
    width: 100%;
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-title {
        max-width: 630px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-title {
        max-width: 585px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section .banner-wrapper .banner-title {
        max-width: unset;
    }
}

.home3-banner-section .banner-wrapper .banner-title h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 90px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 80px;
        line-height: 1.1;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 74px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 65px;
    }
}

@media (max-width: 576px) {
    .home3-banner-section .banner-wrapper .banner-title h1 {
        font-size: 52px;
        line-height: 1.2;
    }
}

/*=====================================
  25. Home3 Banner Image Section CSS
========================================*/
.home3-banner-image-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.home3-banner-image-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.3);
}

.home3-banner-image-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  26. Home3 About Section CSS
========================================*/
.home3-about-section .about-title-area {
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 70px;
    padding: 0 0 60px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-about-section .about-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1399px) {
    .home3-about-section .about-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1199px) {
    .home3-about-section .about-title-area {
        padding: 0 0 50px;
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .home3-about-section .about-title-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home3-about-section .about-title-area {
        margin-bottom: 40px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap {
    max-width: 1120px;
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 140px;
}

@media (max-width: 1699px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        max-width: 1020px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        max-width: 920px;
        gap: 100px;
    }
}

@media (max-width: 1399px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        max-width: 850px;
        gap: 100px;
    }
}

@media (max-width: 1199px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        max-width: unset;
    }
}

@media (max-width: 991px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        flex-wrap: wrap;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap {
        gap: 20px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area {
    display: flex;
    align-items: end;
    gap: 20px;
    min-width: 235px;
    max-width: 300px;
    width: 100%;
}

@media (max-width: 991px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area {
        gap: 15px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 145px;
    line-height: 1;
    display: inline-block;
    font-weight: 500;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
        font-size: 140px;
    }
}

@media (max-width: 1399px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
        font-size: 130px;
    }
}

@media (max-width: 1199px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
        font-size: 120px;
    }
}

@media (max-width: 991px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
        font-size: 110px;
    }
}

@media (max-width: 576px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 strong {
        font-size: 100px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 sup {
    color: var(--title-color);
    font-size: 30px;
    font-weight: 300;
    top: 25px;
    position: absolute;
}

@media (max-width: 1199px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area h2 sup {
        top: 20px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 18px;
}

@media (max-width: 1199px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area span {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area span {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 576px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .counter-area span {
        margin-bottom: 12px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content p {
        margin-bottom: 40px;
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content p {
        margin-bottom: 35px;
        font-size: 15px;
    }
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content .primary-btn2.black-bg .content {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content .primary-btn2.black-bg .icon {
    background-color: var(--black-color);
}

.home3-about-section .about-content-wrapper .counter-and-content-wrap .about-content .primary-btn2.black-bg .icon svg {
    stroke: var(--dark-white-color);
}

/*=====================================
  27. Home3 Service Section CSS
========================================*/
.home3-service-section {
    background-color: #020202;
    padding: 120px 0 105px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-service-section {
        padding: 120px 0 95px;
    }
}


@media (max-width: 1199px) {
    .home3-service-section {
        padding: 90px 0 70px;
    }
}

.home3-service-section .service-title-area {
    padding: 0 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-service-section .service-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1399px) {
    .home3-service-section .service-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1199px) {
    .home3-service-section .service-title-area {
        padding: 0 0 50px;
    }
}

.home3-service-section .service-wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.home3-service-section .service-wrapper .video-area {
    position: relative;
    margin-top: 70px;
}

@media (max-width: 1399px) {
    .home3-service-section .service-wrapper .video-area {
        max-width: 245px;
        margin-top: 50px;
    }
}

@media (max-width: 1199px) {
    .home3-service-section .service-wrapper .video-area {
        display: none;
    }
}

.home3-service-section .service-wrapper .video-area .play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 95px;
}

@media (max-width: 1399px) {
    .home3-service-section .service-wrapper .video-area .play-btn {
        right: 62px;
    }
}

.home3-service-section .service-wrapper .video-area .play-btn svg {
    fill: var(--dark-black-color);
}

.home3-service-section .service-wrapper .service-list {
    max-width: 1120px;
    width: 100%;
}

@media (max-width: 1699px) {
    .home3-service-section .service-wrapper .service-list {
        max-width: 1020px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-service-section .service-wrapper .service-list {
        max-width: 920px;
    }
}

@media (max-width: 1399px) {
    .home3-service-section .service-wrapper .service-list {
        max-width: 850px;
    }
}

@media (max-width: 1199px) {
    .home3-service-section .service-wrapper .service-list {
        max-width: unset;
    }
}

.home3-service-section .service-wrapper .service-list .single-service {
    display: grid;
    grid-template-columns: 3.5% 55% 31%;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    background-color: #020202;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-service-section .service-wrapper .service-list .single-service {
        gap: 40px;
        padding: 50px 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home3-service-section .service-wrapper .service-list .single-service {
        grid-template-columns: 3.5% 58% 31%;
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .home3-service-section .service-wrapper .service-list .single-service {
        padding: 50px 0;
    }
}

@media (max-width: 991px) {
    .home3-service-section .service-wrapper .service-list .single-service {
        gap: 20px;
        grid-template-columns: 3.5% 58% 31%;
    }
}

@media (max-width: 767px) {
    .home3-service-section .service-wrapper .service-list .single-service {
        display: block;
    }

    .home3-service-section .service-wrapper .service-list .single-service:first-child {
        border-top: unset;
    }

    .home3-service-section .service-wrapper .service-list .single-service:last-child {
        padding-bottom: 0;
    }
}

.home3-service-section .service-wrapper .service-list .single-service .service-no {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 35px;
    display: block;
    line-height: 36px;
}

@media (max-width: 767px) {
    .home3-service-section .service-wrapper .service-list .single-service .service-no {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home3-service-section .service-wrapper .service-list .single-service .service-no {
        font-size: 32px;
    }
}

.home3-service-section .service-wrapper .service-list .single-service .service-content {
    max-width: 430px;
    width: 100%;
}

@media (max-width: 767px) {
    .home3-service-section .service-wrapper .service-list .single-service .service-content {
        margin-bottom: 30px;
    }
}

.home3-service-section .service-wrapper .service-list .single-service .service-content h2 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.home3-service-section .service-wrapper .service-list .single-service .service-content h2 a {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 35px;
    line-height: 1.2;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .home3-service-section .service-wrapper .service-list .single-service .service-content h2 a {
        font-size: 26px;
    }
}

.home3-service-section .service-wrapper .service-list .single-service .service-content h2 a:hover {
    color: var(--primary-color1);
}

.home3-service-section .service-wrapper .service-list .single-service .service-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.home3-service-section .service-wrapper .service-list .single-service .service-content ul li {
    display: inline-flex;
}

.home3-service-section .service-wrapper .service-list .single-service .service-content ul li a {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 100px;
    background-color: #1E1E1E;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .home3-service-section .service-wrapper .service-list .single-service .service-content ul li a {
        font-size: 15px;
    }
}

.home3-service-section .service-wrapper .service-list .single-service .service-content ul li a:hover {
    color: var(--white-color);
}

.home3-service-section .service-wrapper .service-list .single-service .service-content p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
}

.home3-service-section .service-title-area .primary-btn2 .icon,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2 .icon {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    background-color: #1E1E1E;
}

.home3-service-section .service-title-area .primary-btn2 .icon svg,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2 .icon svg {
    stroke: var(--white-color);
}

.home3-service-section .service-title-area .primary-btn2 .content,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2 .content {
    padding: 17px 28px;
    background-color: #1E1E1E;
    color: var(--white-color);
}

.home3-service-section .service-title-area .primary-btn2:hover .icon,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2:hover .icon {
    background-color: var(--primary-color1);
}

.home3-service-section .service-title-area .primary-btn2:hover .icon svg,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2:hover .icon svg {
    stroke: #fff;
}

.home3-service-section .service-title-area .primary-btn2:hovert .content,
.home3-service-section .service-wrapper .service-list .single-service .service-content .primary-btn2:hover .content {
    background-color: var(--primary-color1);
    color: #fff;
}

.home3-service-section .service-wrapper .service-list .single-service .service-img img {
    width: 100%;
}

.home3-service-section .service-wrapper .service-list .pin-spacer:first-child .single-service {
    border-top: unset;
}


.home3-service-section .service-title-area .about-btn {
    display: flex;
    margin-top: 40px;

    margin-left: auto;
}

/*=====================================
  28. Home3 Testimonial Section CSS
========================================*/
.home3-testimonial-section .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home3-testimonial-section .title-area h2 {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .home3-testimonial-section .title-area h2 {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .home3-testimonial-section .title-area h2 {
        font-size: 48px;
    }
}

.home3-testimonial-section .rate-and-slider-btn-area {
    padding-top: 45px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .home3-testimonial-section .rate-and-slider-btn-area {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .home3-testimonial-section .rate-and-slider-btn-area {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .home3-testimonial-section .rate-and-slider-btn-area {
        padding-top: 25px;
    }
}

.home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 660px;
    width: 100%;
}

@media (max-width: 991px) {
    .home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area {
        gap: 12px;
    }
}

.home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area svg {
    fill: var(--title-color);
    min-width: 70px;
}

@media (max-width: 767px) {
    .home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area svg {
        min-width: 60px;
    }
}

@media (max-width: 576px) {
    .home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area svg {
        display: none;
    }
}

.home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area p {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area p {
        font-size: 16px;
    }
}

.home3-testimonial-section .rate-and-slider-btn-area .rate-and-slider-btn-wrap .rate-area p strong {
    font-weight: 700;
}

.home3-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 svg, .home3-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 p {
    animation: fadeInDown 1.7s;
}

.home3-testimonial-section .home2-testimonial-slider .swiper-slide-active .testimonial-card2 .author-area {
    animation: fadeInUp 1.7s;
}

/*=====================================
  29. Home3 Video Banner Section CSS
========================================*/
.home3-video-banner-section {
    position: relative;
    height: 780px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-video-banner-section {
        height: 700px;
    }
}

@media (max-width: 1399px) {
    .home3-video-banner-section {
        height: 650px;
    }
}

@media (max-width: 576px) {
    .home3-video-banner-section {
        height: 550px;
    }
}

.home3-video-banner-section video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 779px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-video-banner-section video {
        height: 700px;
    }
}

@media (max-width: 1399px) {
    .home3-video-banner-section video {
        height: 650px;
    }
}

@media (max-width: 576px) {
    .home3-video-banner-section video {
        height: 550px;
    }
}

.home3-video-banner-section .video-content-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
    display: flex;
    align-items: end;
}

.home3-video-banner-section .video-content-area .video-content-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    padding: 110px 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-video-banner-section .video-content-area .video-content-wrap {
        padding: 110px 0;
    }
}

@media (max-width: 1399px) {
    .home3-video-banner-section .video-content-area .video-content-wrap {
        padding: 110px 0;
    }
}

@media (max-width: 1199px) {
    .home3-video-banner-section .video-content-area .video-content-wrap {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .home3-video-banner-section .video-content-area .video-content-wrap {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .home3-video-banner-section .video-content-area .video-content-wrap {
        padding: 60px 0;
    }
}

.home3-video-banner-section .video-content-area .video-content-wrap h2 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 0;
    max-width: 520px;
    width: 100%;
}

@media (max-width: 991px) {
    .home3-video-banner-section .video-content-area .video-content-wrap h2 {
        font-size: 45px;
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .home3-video-banner-section .video-content-area .video-content-wrap h2 {
        font-size: 30px;
        line-height: 1.5;
    }
}

.home3-video-banner-section .video-content-area .video-content-wrap .primary-btn1 {
    padding: 19px 20px;
    margin-bottom: 10px;
}

.home3-video-banner-section .video-content-area .video-content-wrap .primary-btn1::after {
    background-color: var(--white-color);
}

.home3-video-banner-section .video-content-area .video-content-wrap .primary-btn1:hover span,
.home3-video-banner-section .video-content-area .video-content-wrap .primary-btn1:hover {
    color: var(--dark-title-color);
}

/*=====================================
  30. Home3 Partner Section CSS
========================================*/
.home3-partner-section {
    border-bottom: 1px solid var(--borders-color);
}

.home3-partner-section .title-area h3 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .home3-partner-section .title-area h3 {
        font-size: 25px;
    }
}

.home3-partner-section .partner-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    row-gap: 70px;
    flex-wrap: wrap;
}

@media (max-width: 1399px) {
    .home3-partner-section .partner-list {
        gap: 18px;
        row-gap: 70px;
    }
}

@media (max-width: 1199px) {
    .home3-partner-section .partner-list {
        row-gap: 55px;
    }
}

@media (max-width: 991px) {
    .home3-partner-section .partner-list {
        gap: 45px;
        row-gap: 45px;
    }
}

@media (max-width: 576px) {
    .home3-partner-section .partner-list {
        gap: 30px;
        row-gap: 40px;
    }
}

.home3-partner-section .partner-list .single-partner img {
    width: 170px;
    opacity: 0.5;
    transition: 0.5s;
}

@media (max-width: 1399px) {
    .home3-partner-section .partner-list .single-partner img {
        width: 150px;
    }
}

@media (max-width: 1199px) {
    .home3-partner-section .partner-list .single-partner img {
        width: 140px;
    }
}

@media (max-width: 576px) {
    .home3-partner-section .partner-list .single-partner img {
        width: 130px;
    }
}

.home3-partner-section .partner-list .single-partner:hover img {
    opacity: 1;
}

.home3-partner-section.style-2 {
    border-bottom: unset;
}

.home3-partner-section.style-2 .title-area h3 {
    max-width: unset;
}

.home3-partner-section.style-2 .partner-list {
    gap: 20px;
    row-gap: 30px;
}

@media (max-width: 1199px) {
    .home3-partner-section.style-2 .partner-list {
        gap: 15px;
        row-gap: 25px;
    }
}

.home3-partner-section.style-2 .partner-list .single-partner {
    padding: 20px;
    width: 300px;
    height: 130px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1399px) {
    .home3-partner-section.style-2 .partner-list .single-partner {
        width: 255px;
        height: 110px;
    }
}

@media (max-width: 1199px) {
    .home3-partner-section.style-2 .partner-list .single-partner {
        width: 220px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .home3-partner-section.style-2 .partner-list .single-partner {
        height: 90px;
    }
}

.home3-partner-section.style-3 {
    border-bottom: unset;
}

.home3-partner-section.style-3 .title-area h3 {
    font-family: var(--font-tartuffo-Trial);
    font-size: 22px;
    font-weight: 300;
}

.home3-partner-section.style-3 .partner-list {
    --cardW: 300px;
    --unit: calc(var(--cardW) / 2);
    display: grid;
    grid-template-columns: repeat(8, var(--unit));
    gap: 15px;
    justify-content: center;
    row-gap: 30px;
}

@media (max-width: 1399px) {
    .home3-partner-section.style-3 .partner-list {
        --cardW: 240px;
    }
}

@media (max-width: 1199px) {
    .home3-partner-section.style-3 .partner-list {
        --cardW: 210px;
    }
}

@media (max-width: 991px) {
    .home3-partner-section.style-3 .partner-list {
        display: flex;
        row-gap: 25px;
    }
}

@media (max-width: 576px) {
    .home3-partner-section.style-3 .partner-list {
        gap: 10px;
        row-gap: 20px;
    }
}

.home3-partner-section.style-3 .partner-list .single-partner {
    padding: 20px;
    width: 300px;
    height: 130px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
}

@media (max-width: 1399px) {
    .home3-partner-section.style-3 .partner-list .single-partner {
        width: 255px;
        height: 110px;
    }
}

@media (max-width: 1199px) {
    .home3-partner-section.style-3 .partner-list .single-partner {
        width: 220px;
        height: 100px;
    }
}

@media (max-width: 991px) {
    .home3-partner-section.style-3 .partner-list .single-partner {
        grid-column: unset;
    }
}

@media (max-width: 576px) {
    .home3-partner-section.style-3 .partner-list .single-partner {
        width: 155px;
        height: 75px;
        padding: 15px 10px;
    }
}

@media (max-width: 576px) {
    .home3-partner-section.style-3 .partner-list .single-partner img {
        width: 105px;
    }
}

.home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+1), .home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+8) {
    grid-column: 2/span 2;
}

@media (max-width: 991px) {
    .home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+1), .home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+8) {
        grid-column: unset;
    }
}

.home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+4) {
    grid-column: 1/span 2;
}

@media (max-width: 991px) {
    .home3-partner-section.style-3 .partner-list .single-partner:nth-child(7n+4) {
        grid-column: unset;
    }
}

/*=====================================
  31. Home3 Blog Section CSS
========================================*/
.home3-blog-section .section-title h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 70px;
    font-weight: 700;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-blog-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .home3-blog-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home3-blog-section .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .home3-blog-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .home3-blog-section .section-title h2 {
        font-size: 42px;
    }
}

.home3-blog-section .section-title p {
    max-width: unset;
}

.blog-card2 {
    border: 1px solid var(--borders-color);
}

.blog-card2 .blog-img {
    display: block;
    overflow: hidden;
    position: relative;
}

.blog-card2 .blog-img .shape-hover-img {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 65%;
}

.blog-card2 .blog-img .shape-hover-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-position: center;
    object-fit: cover;
}

.blog-card2 .blog-img img {
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease-out;
    min-height: 220px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .blog-card2 .blog-img img {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-card2 .blog-img img {
        min-height: 220px;
    }
}

.blog-card2 .blog-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .blog-card2 .blog-img canvas {
        display: none;
    }
}

.blog-card2 .blog-content {
    padding: 35px 25px;
}

@media (max-width: 1799px) {
    .blog-card2 .blog-content {
        padding: 35px 20px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card2 .blog-content {
        padding: 35px 15px;
    }
}

@media (max-width: 1399px) {
    .blog-card2 .blog-content {
        padding: 30px 15px;
    }
}

.blog-card2 .blog-content .blog-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .blog-card2 .blog-content .blog-meta {
        margin-bottom: 20px;
    }
}

.blog-card2 .blog-content .blog-meta li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    position: relative;
    padding-left: 16px;
}

@media (max-width: 576px) {
    .blog-card2 .blog-content .blog-meta li {
        font-size: 13px;
    }
}

.blog-card2 .blog-content .blog-meta li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.blog-card2 .blog-content .blog-meta li:first-child {
    padding-left: 0;
}

.blog-card2 .blog-content .blog-meta li:first-child::before {
    display: none;
    visibility: hidden;
}

.blog-card2 .blog-content .blog-meta li a {
    color: var(--text-color);
    transition: 0.5s;
}

.blog-card2 .blog-content .blog-meta li a:hover {
    color: var(--title-color);
}

.blog-card2 .blog-content h2, .blog-card2 .blog-content h3 {
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .blog-card2 .blog-content h2, .blog-card2 .blog-content h3 {
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .blog-card2 .blog-content h2, .blog-card2 .blog-content h3 {
        line-height: 26px;
    }
}

.blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 1799px) {
    .blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
        font-size: 22px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
        font-size: 22px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .blog-card2 .blog-content h2 a, .blog-card2 .blog-content h3 a {
        font-size: 20px;
    }

    .footer-section .widget-title {
        font-size: 12px;
    }
}

.blog-card2 .blog-content h2 a:hover, .blog-card2 .blog-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.blog-card2 .blog-content .primary-btn1 {
    padding: 13px 22px;
    background-color: #F0F0F0;
    margin-top: 40px;
}

@media (max-width: 1399px) {
    .blog-card2 .blog-content .primary-btn1 {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .blog-card2 .blog-content .primary-btn1 {
        margin-top: 25px;
    }
}

.blog-card2 .blog-content .primary-btn1::after {
    background-color: var(--black-color);
}

.blog-card2 .blog-content .primary-btn1:hover {
    color: var(--dark-white-color);
}

.blog-card2.two {
    padding: 15px;
    border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card2.two {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .blog-card2.two {
        padding: 10px;
        border-radius: 15px;
    }
}

.blog-card2.two .blog-img {
    border-radius: 10px;
}

.blog-card2.two .blog-img img {
    border-radius: inherit;
    min-height: 200px;
}

.blog-card2.two .blog-content {
    padding: 25px 12px 20px;
}

@media (max-width: 1199px) {
    .blog-card2.two .blog-content {
        padding: 20px 10px 15px;
    }
}

@media (max-width: 1199px) {
    .blog-card2.two .blog-content h2, .blog-card2.two .blog-content h3 {
        line-height: 1.2;
    }
}

.blog-card2.two .blog-content h2 a, .blog-card2.two .blog-content h3 a {
    font-size: 27px;
}

@media (max-width: 1799px) {
    .blog-card2.two .blog-content h2 a, .blog-card2.two .blog-content h3 a {
        font-size: 26px;
    }
}

@media (max-width: 1399px) {
    .blog-card2.two .blog-content h2 a, .blog-card2.two .blog-content h3 a {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card2.two .blog-content h2 a, .blog-card2.two .blog-content h3 a {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .blog-card2.two .blog-content h2 a, .blog-card2.two .blog-content h3 a {
        font-size: 22px;
        line-height: 30px;
    }
}

.blog-card2.two .blog-content .author-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 40px;
}

@media (max-width: 1199px) {
    .blog-card2.two .blog-content .author-area {
        padding-top: 35px;
    }
}

@media (max-width: 576px) {
    .blog-card2.two .blog-content .author-area {
        gap: 10px;
    }
}

.blog-card2.two .blog-content .author-area .author-img {
    min-width: 42px;
    max-width: 42px;
    height: 42px;
    border-radius: 50%;
}

.blog-card2.two .blog-content .author-area .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card2.two .blog-content .author-area .author-content {
    line-height: 1;
    text-align: start;
}

.blog-card2.two .blog-content .author-area .author-content h4, .blog-card2.two .blog-content .author-area .author-content h6 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-card2.two .blog-content .author-area .author-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.blog-card2.three {
    border: unset;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card2.three .blog-img img {
        min-height: 250px;
    }
}

.blog-card2.three .blog-content {
    padding: 35px 20px 0 0;
}

@media (max-width: 1199px) {
    .blog-card2.three .blog-content {
        padding: 30px 15px 0 0;
    }
}

@media (max-width: 576px) {
    .blog-card2.three .blog-content {
        padding: 30px 10px 0 0;
    }
}

.blog-card2.three .blog-content .primary-btn1 {
    padding: 12px 21px;
    background-color: transparent;
    border: 1px solid var(--borders-color);
    color: var(--title-color);
}

@media (max-width: 576px) {
    .blog-card2.three .blog-content .primary-btn1 {
        margin-top: 30px;
    }
}

.blog-card2.three .blog-content .primary-btn1::after {
    background-color: var(--black-color);
}

.blog-card2.three .blog-content .primary-btn1:hover {
    color: var(--dark-white-color);
    border-color: var(--black-color);
}

.blog-card2.font-alt .blog-content h2 a, .blog-card2.font-alt .blog-content h3 a {
    font-family: var(--font-spaceGrotesk);
    letter-spacing: 0;
}

/*=====================================
  32. Home4 Banner Section CSS
========================================*/
.home4-banner-section {
    position: relative;
    height: 950px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-banner-section {
        height: 780px;
    }
}

@media (max-width: 1399px) {
    .home4-banner-section {
        height: 780px;
    }
}

@media (max-width: 1199px) {
    .home4-banner-section {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .home4-banner-section {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section {
        height: 620px;
    }
}

.home4-banner-section video {
    width: 100%;
    height: 950px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-banner-section video {
        height: 780px;
    }
}

@media (max-width: 1399px) {
    .home4-banner-section video {
        height: 780px;
    }
}

@media (max-width: 1199px) {
    .home4-banner-section video {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .home4-banner-section video {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section video {
        height: 620px;
    }
}

.home4-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.home4-banner-section .banner-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 280px 0 120px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-banner-section .banner-content-wrap {
        padding: 200px 0 130px;
    }
}

@media (max-width: 1399px) {
    .home4-banner-section .banner-content-wrap {
        padding: 200px 0 130px;
    }
}

@media (max-width: 1199px) {
    .home4-banner-section .banner-content-wrap {
        padding: 180px 0 110px;
    }
}

@media (max-width: 991px) {
    .home4-banner-section .banner-content-wrap {
        padding: 160px 0 110px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section .banner-content-wrap {
        padding: 150px 0px 90px;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap {
        padding: 130px 0px 90px;
    }
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
    display: flex;
    gap: 20px;
    margin-bottom: 160px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
        margin-bottom: 120px;
    }
}

@media (max-width: 1399px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
        margin-bottom: 110px;
    }
}

@media (max-width: 1199px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area {
        flex-direction: column-reverse;
        margin-bottom: 35px;
    }
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .scroll-down-btn {
    min-width: 40px;
    max-width: 40px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: up-down 2s linear infinite alternate;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .scroll-down-btn svg {
    fill: var(--white-color);
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content {
    max-width: 525px;
    width: 100%;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content p {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content p {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content p {
        margin-bottom: 15px;
        font-size: 16px;
    }
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content p span {
    color: var(--white-color);
    font-weight: 400;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .line {
    fill: rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .line {
        display: none;
    }
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
}

@media (max-width: 1199px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area svg {
    fill: #E62415;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area svg path:last-child {
    fill: var(--white-color);
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home4-banner-section .banner-content-wrap .scroll-btn-and-rating-area .content .rating-area .content span {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home4-banner-section .banner-content-wrap .banner-title-area h1 {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 12.37vw;
    line-height: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-banner-section .banner-content-wrap .banner-title-area h1 {
        font-size: 12.2vw;
    }
}

@media (max-width: 1399px) {
    .home4-banner-section .banner-content-wrap .banner-title-area h1 {
        font-size: 12.2vw;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .banner-title-area h1 {
        white-space: wrap;
        font-size: 65px;
        line-height: 1;
    }
}

.home4-banner-section .banner-content-wrap .banner-title-area h1 .data-text {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    display: block;
    padding: 16px 25px;
    background-color: var(--primary-color1);
    border-radius: 100px;
    position: absolute;
    top: 30%;
    left: 34%;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 991px) {
    .home4-banner-section .banner-content-wrap .banner-title-area h1 .data-text {
        top: unset;
        left: 50%;
        transform: translateX(-50%);
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home4-banner-section .banner-content-wrap .banner-title-area h1 .data-text {
        display: none;
    }
}

/*=====================================
  33. Home4 About Section CSS
========================================*/
.home4-about-section .about-top-area {
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 70px;
    padding: 0 0 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-about-section .about-top-area {
        padding: 0 0 50px;
    }
}

@media (max-width: 1399px) {
    .home4-about-section .about-top-area {
        padding: 0 0 50px;
    }
}

@media (max-width: 1199px) {
    .home4-about-section .about-top-area {
        padding: 0 0 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .home4-about-section .about-top-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home4-about-section .about-top-area {
        padding: 0 0 30px;
    }
}

.home4-about-section .about-title-area {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

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

@media (max-width: 576px) {
    .home4-about-section .about-title-area {
        gap: 15px;
    }
}

.home4-about-section .about-title-area > span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.03em;
    display: block;
    max-width: 260px;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .home4-about-section .about-title-area > span {
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .home4-about-section .about-title-area > span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home4-about-section .about-title-area > span {
        font-size: 16px;
    }
}

.home4-about-section .about-title-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    max-width: 895px;
    width: 100%;
    margin-bottom: 0;
}

.home4-about-section .about-title-area h2 span {
    font-family: var(--font-felidae);
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-about-section .about-title-area h2 {
        max-width: 800px;
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .home4-about-section .about-title-area h2 {
        max-width: 700px;
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .home4-about-section .about-title-area h2 {
        max-width: 650px;
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home4-about-section .about-title-area h2 {
        font-size: 46px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .home4-about-section .about-title-area h2 {
        font-size: 40px;
    }
}

.home4-about-section .about-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 991px) {
    .home4-about-section .about-content-wrapper {
        flex-wrap: wrap;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area {
    max-width: 345px;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area {
        max-width: 270px;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
}

@media (max-width: 1399px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .counter-area {
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .counter-area {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .counter-area {
        gap: 15px;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area .counter-img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area .counter-img-grp li img {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
    margin-left: -20px;
}

@media (max-width: 576px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .counter-area .counter-img-grp li img {
        min-width: 50px;
        max-width: 50px;
        height: 50px;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area .counter-img-grp li:first-child img {
    margin-left: 0;
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area h3 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    min-width: 185px;
    width: 100%;
}

.home4-about-section .about-content-wrapper .counter-and-award-area .counter-area h3 strong {
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 576px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .counter-area h3 {
        min-width: unset;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area .award-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .counter-and-award-area .award-list {
        gap: 30px;
    }
}

.home4-about-section .about-content-wrapper .counter-and-award-area .award-list li img {
    width: 66px;
}

.home4-about-section .about-content-wrapper .about-content-and-video {
    max-width: 895px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 65px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-about-section .about-content-wrapper .about-content-and-video {
        max-width: 800px;
        gap: 45px;
    }
}

@media (max-width: 1399px) {
    .home4-about-section .about-content-wrapper .about-content-and-video {
        max-width: 700px;
        gap: 35px;
    }
}

@media (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .about-content-and-video {
        max-width: 650px;
    }
}

@media (max-width: 991px) {
    .home4-about-section .about-content-wrapper .about-content-and-video {
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .home4-about-section .about-content-wrapper .about-content-and-video {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

.home4-about-section .about-content-wrapper .about-content-and-video .about-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .about-content p {
        font-size: 17px;
    }
}

.home4-about-section .about-content-wrapper .about-content-and-video .about-content p:first-child {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .about-content p:first-child {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .about-content p:first-child {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.home4-about-section .about-content-wrapper .about-content-and-video .about-content .about-btn {
    margin-top: 60px;
}

@media (max-width: 1399px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .about-content .about-btn {
        margin-top: 50px;
    }
}

@media (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .about-content .about-btn {
        margin-top: 40px;
    }
}

.home4-about-section .about-content-wrapper .about-content-and-video .video-area {
    min-width: 265px;
    height: 80px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .video-area {
        min-width: 240px;
    }
}

@media (max-width: 1399px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .video-area {
        min-width: 220px;
        height: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-about-section .about-content-wrapper .about-content-and-video .video-area {
        min-width: 200px;
        height: 65px;
    }
}

.home4-about-section .about-content-wrapper .about-content-and-video .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  34. Home4 Service Section CSS
========================================*/

.home4-service-section .section-title h2 {
    max-width: 895px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .section-title h2 {
        max-width: 800px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .section-title h2 {
        max-width: 700px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .section-title h2 {
        max-width: 650px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item {
    border: unset;
    border-radius: unset;
    background-color: transparent;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item {
        margin-bottom: 25px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.home4-service-section .service-wrapper .accordion .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
    padding: 0 50px 40px;
    border-bottom: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1799px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        padding: 0 15px 40px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        padding: 0 15px 40px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        padding: 0 15px 40px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        padding: 0 15px 30px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    display: block;
    transition: 0.5s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 62px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 58px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .service-no {
        font-size: 38px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button {
    border: none;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
    transition: 0.5s;
    position: relative;
    max-width: 895px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button {
        max-width: 800px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button {
        max-width: 700px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button {
        max-width: 650px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.1;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, var(--title-color) 50%, var(--dark-text-color) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 0;
    padding-right: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        font-size: 48px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        padding-right: 35px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 {
        font-size: 24px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text-color);
    content: "\f4fe";
    font-family: bootstrap-icons;
    background-image: none;
    font-weight: 400;
    font-size: 70px;
    position: absolute;
    right: -15px;
    margin-left: 0;
    width: unset;
    height: unset;
    transition: 0.5s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
        font-size: 62px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
        font-size: 58px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
        font-size: 50px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:not(.collapsed) .service-no {
    color: var(--title-color);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:not(.collapsed) .accordion-button h2 {
    background-position: 0 0;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:not(.collapsed) .accordion-button::after {
    content: "\f2ea";
    color: var(--title-color);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:hover .service-no {
    color: var(--title-color);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:hover .accordion-button h2 {
    background-position: 0 0;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header:hover .accordion-button::after {
    color: var(--title-color);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
    padding: 50px 50px 60px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1799px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        padding: 50px 15px 60px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        padding: 50px 15px 50px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        padding: 50px 15px 60px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        padding: 40px 15px 50px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        flex-wrap: wrap;
        padding: 40px 15px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body {
        padding: 30px 15px;
        gap: 40px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
    max-width: 455px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
        max-width: 390px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
        max-width: 390px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
        max-width: 290px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content {
        max-width: unset;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content p {
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content p {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content .service-btn {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content .service-btn svg {
    fill: var(--title-color);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-content .service-btn:hover {
    transform: translateX(10px);
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 895px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap {
        max-width: 800px;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap {
        max-width: 700px;
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap img {
    max-width: 300px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap img {
        max-width: 270px;
    }
}

@media (max-width: 767px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap img {
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .home4-service-section .service-wrapper .accordion .accordion-item .accordion-body .service-img-wrap img {
        max-width: 100%;
    }
}

.home4-service-section .service-wrapper .service-btn-area {
    margin: 0 50px 0 auto;
    max-width: 895px;
    width: 100%;
    margin-left: auto;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-service-section .service-wrapper .service-btn-area {
        max-width: 800px;
        margin: 0 40px 0 auto;
    }
}

@media (max-width: 1399px) {
    .home4-service-section .service-wrapper .service-btn-area {
        max-width: 700px;
        margin: 0 20px 0 auto;
    }
}

@media (max-width: 1199px) {
    .home4-service-section .service-wrapper .service-btn-area {
        max-width: 650px;
        margin: 0 10px 0 auto;
    }
}

@media (max-width: 991px) {
    .home4-service-section .service-wrapper .service-btn-area {
        max-width: unset;
        margin: 0 10px;
    }
}

/*=====================================
  35. Home4 Blog Section CSS
========================================*/
.home4-blog-section .blog-top-area {
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 70px;
    padding-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-blog-section .blog-top-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .home4-blog-section .blog-top-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1199px) {
    .home4-blog-section .blog-top-area {
        padding-bottom: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .home4-blog-section .blog-top-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home4-blog-section .blog-top-area {
        padding-bottom: 30px;
    }
}

.home4-blog-section .blog-top-area .blog-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

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

@media (max-width: 576px) {
    .home4-blog-section .blog-top-area .blog-title {
        gap: 15px;
    }
}

.home4-blog-section .blog-top-area .blog-title > span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding-left: 13px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .home4-blog-section .blog-top-area .blog-title > span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home4-blog-section .blog-top-area .blog-title > span {
        margin-bottom: 15px;
    }
}

.home4-blog-section .blog-top-area .blog-title > span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999999;
}

.home4-blog-section .blog-top-area .blog-title h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    max-width: 895px;
    width: 100%;
    margin-bottom: 0;
}

.home4-blog-section .blog-top-area .blog-title h2 span {
    font-family: var(--font-felidae);
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-blog-section .blog-top-area .blog-title h2 {
        max-width: 800px;
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .home4-blog-section .blog-top-area .blog-title h2 {
        max-width: 700px;
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .home4-blog-section .blog-top-area .blog-title h2 {
        max-width: 650px;
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home4-blog-section .blog-top-area .blog-title h2 {
        font-size: 46px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .home4-blog-section .blog-top-area .blog-title h2 {
        font-size: 42px;
    }
}

.blog-card3 .blog-img {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.blog-card3 .blog-img img {
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease-out;
    min-height: 550px;
    height: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card3 .blog-img img {
        min-height: 500px;
    }
}

@media (max-width: 1399px) {
    .blog-card3 .blog-img img {
        min-height: 460px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-card3 .blog-img img {
        min-height: unset;
        max-height: 350px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .blog-card3 .blog-img img {
        min-height: unset;
        max-height: 350px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-card3 .blog-img img {
        max-height: 320px;
    }
}

.blog-card3 .blog-img canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card3 .blog-content-wrap {
    padding: 70px 35px;
    background-color: #F0F0F0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 70px;
}

@media (max-width: 1699px) {
    .blog-card3 .blog-content-wrap {
        padding: 70px 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card3 .blog-content-wrap {
        padding: 55px 20px;
    }
}

@media (max-width: 1399px) {
    .blog-card3 .blog-content-wrap {
        padding: 45px 15px;
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .blog-card3 .blog-content-wrap {
        padding: 45px 20px;
    }
}

@media (max-width: 767px) {
    .blog-card3 .blog-content-wrap {
        padding: 35px 20px;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .blog-card3 .blog-content-wrap {
        padding: 35px 15px;
    }
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .blog-card3 .blog-content-wrap .blog-content .blog-meta {
        margin-bottom: 20px;
    }
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    position: relative;
    padding-left: 16px;
}

@media (max-width: 576px) {
    .blog-card3 .blog-content-wrap .blog-content .blog-meta li {
        font-size: 15px;
    }
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li:first-child {
    padding-left: 0;
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li:first-child::before {
    display: none;
    visibility: hidden;
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li a {
    color: var(--text-color);
    transition: 0.5s;
}

.blog-card3 .blog-content-wrap .blog-content .blog-meta li a:hover {
    color: var(--title-color);
}

.blog-card3 .blog-content-wrap .blog-content h3 {
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .blog-card3 .blog-content-wrap .blog-content h3 {
        line-height: 1.2;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .blog-card3 .blog-content-wrap .blog-content h3 {
        line-height: 26px;
    }
}

.blog-card3 .blog-content-wrap .blog-content h3 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 1799px) {
    .blog-card3 .blog-content-wrap .blog-content h3 a {
        font-size: 26px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-card3 .blog-content-wrap .blog-content h3 a {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .blog-card3 .blog-content-wrap .blog-content h3 a {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (max-width: 1199px) {
    .blog-card3 .blog-content-wrap .blog-content h3 a {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .blog-card3 .blog-content-wrap .blog-content h3 a {
        font-size: 22px;
        line-height: 34px;
    }
}

.blog-card3 .blog-content-wrap .blog-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.blog-card3 .blog-content-wrap .blog-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .blog-card3 .blog-content-wrap .blog-content p {
        font-size: 17px;
    }
}

.blog-card3 .blog-content-wrap .primary-btn1 {
    padding: 17px 26px;
}

/*=====================================
  36. Home4 Counter Section CSS
========================================*/
.home4-counter-section {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
}

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

@media (max-width: 767px) {
    .home4-counter-section {
        padding: 70px 0;
    }
}

.home4-counter-section .title {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 145px;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 35px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .title {
        font-size: 135px;
    }
}

@media (max-width: 1399px) {
    .home4-counter-section .title {
        font-size: 130px;
    }
}

@media (max-width: 1199px) {
    .home4-counter-section .title {
        font-size: 110px;
        gap: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .home4-counter-section .title {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .home4-counter-section .title {
        font-size: 85px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .home4-counter-section .title {
        font-size: 70px;
        gap: 5px;
    }
}

.home4-counter-section .title svg {
    fill: var(--white-color);
}

@media (max-width: 1199px) {
    .home4-counter-section .title svg {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 991px) {
    .home4-counter-section .title svg {
        min-width: 90px;
        height: 90px;
    }
}

@media (max-width: 767px) {
    .home4-counter-section .title svg {
        min-width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .home4-counter-section .title svg {
        min-width: 60px;
        height: 60px;
    }
}

.home4-counter-section .title.two {
    justify-content: end;
    text-align: right;
    margin-top: 25px;
    margin-bottom: 0;
}

.home4-counter-section .counter-list {
    padding: 0 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

@media (max-width: 1699px) {
    .home4-counter-section .counter-list {
        gap: 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .counter-list {
        gap: 20px;
    }
}

@media (max-width: 1399px) {
    .home4-counter-section .counter-list {
        gap: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-counter-section .counter-list {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .home4-counter-section .counter-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .home4-counter-section .counter-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home4-counter-section .counter-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.home4-counter-section .counter-list .single-counter {
    padding: 60px 35px;
    background-color: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 1699px) {
    .home4-counter-section .counter-list .single-counter {
        padding: 60px 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .counter-list .single-counter {
        padding: 50px 20px;
    }
}

@media (max-width: 1399px) {
    .home4-counter-section .counter-list .single-counter {
        padding: 45px 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-counter-section .counter-list .single-counter {
        padding: 40px 10px;
    }
}

.home4-counter-section .counter-list .single-counter .icon {
    margin-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .counter-list .single-counter .icon {
        margin-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .home4-counter-section .counter-list .single-counter .icon {
        margin-bottom: 30px;
    }
}

.home4-counter-section .counter-list .single-counter .icon svg {
    fill: var(--dark-title-color);
}

.home4-counter-section .counter-list .single-counter .divider-line {
    fill: rgba(2, 2, 2, 0.1);
    width: 100%;
}

.home4-counter-section .counter-list .single-counter .counter-content {
    padding-top: 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .counter-list .single-counter .counter-content {
        padding-top: 25px;
    }
}

@media (max-width: 1399px) {
    .home4-counter-section .counter-list .single-counter .counter-content {
        padding-top: 25px;
    }
}

.home4-counter-section .counter-list .single-counter .counter-content h2 {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .home4-counter-section .counter-list .single-counter .counter-content h2 {
        font-size: 60px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-counter-section .counter-list .single-counter .counter-content h2 {
        font-size: 52px;
    }
}

.home4-counter-section .counter-list .single-counter .counter-content > span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-counter-section .counter-list .single-counter .counter-content > span {
        font-size: 17px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home4-counter-section .counter-list .single-counter .counter-content > span {
        font-size: 16px;
        line-height: 22px;
    }
}

.home4-counter-section .counter-list .single-counter .shape {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.home4-counter-section .counter-list .single-counter:hover {
    background-color: var(--primary-color1);
}

.home4-counter-section .counter-list .single-counter:hover .shape {
    opacity: 1;
    visibility: visible;
}

/*=====================================
  37. Home4 Contact Section CSS
========================================*/
.home4-contact-section {
    padding: 120px 0 70px;
    background-color: #020202;
    text-align: center;
    margin-bottom: -1px;
}

@media (max-width: 991px) {
    .home4-contact-section {
        padding: 90px 0 70px;
    }
}

@media (max-width: 576px) {
    .home4-contact-section {
        padding: 70px 0 50px;
    }
}

.home4-contact-section h2 {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 145px;
    line-height: 0.95;
    margin-bottom: 40px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home4-contact-section h2 {
        font-size: 140px;
    }
}

@media (max-width: 1399px) {
    .home4-contact-section h2 {
        font-size: 135px;
    }
}

@media (max-width: 1199px) {
    .home4-contact-section h2 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .home4-contact-section h2 {
        font-size: 90px;
    }
}

@media (max-width: 767px) {
    .home4-contact-section h2 {
        font-size: 85px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home4-contact-section h2 {
        font-size: 60px;
        line-height: 1.1;
    }
}

.home4-contact-section h2 span {
    text-transform: uppercase;
}

.home4-contact-section a {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.03em;
    display: inline-block;
    padding: 26px 55px;
    border-radius: 100px;
    background-color: #1E1E1E;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .home4-contact-section a {
        font-size: 26px;
        padding: 26px 50px;
    }
}

@media (max-width: 576px) {
    .home4-contact-section a {
        font-size: 22px;
        padding: 26px 30px;
        width: 100%;
    }
}

.home4-contact-section a:hover {
    color: var(--primary-color1);
}

/*=====================================
  38. Home5 Banner Section CSS
========================================*/
.home5-banner-section {
    background-color: #020202;
}

.home5-banner-section .banner-wrapper {
    position: relative;
    height: 850px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-wrapper {
        height: 780px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-wrapper {
        height: 780px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-wrapper {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home5-banner-section .banner-wrapper {
        height: 630px;
    }
}

.home5-banner-section .banner-wrapper video {
    width: 100%;
    height: 849px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-wrapper video {
        height: 780px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-wrapper video {
        height: 780px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper video {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-wrapper video {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home5-banner-section .banner-wrapper video {
        height: 630px;
    }
}

.home5-banner-section .banner-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, #020202 100%);
}

.home5-banner-section .banner-wrapper .banner-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 208px 0 220px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 190px 0 220px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 170px 0 130px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 150px 0 150px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 150px 0 120px;
    }
}

@media (max-width: 767px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 150px 0px 90px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap {
        padding: 140px 0px 90px;
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content {
    text-align: center;
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch {
    display: inline-block;
    border-radius: 100px;
    position: relative;
    line-height: 1;
    z-index: 1;
    padding: 1px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch {
        margin-bottom: 25px;
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F5DAFF 0%, #934EFF 47.6%, #D019B2 100%);
    border-radius: inherit;
    z-index: -1;
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.03em;
    padding: 7px 24px;
    background-color: #1E1E1E;
    display: inline-block;
    border-radius: inherit;
}

@media (max-width: 576px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch span {
        font-size: 17px;
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch .glow-anim {
    position: absolute;
    inset: 0;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .batch .glow-anim .glow-inner {
    background: conic-gradient(from 290deg at 50%, transparent 0%, #fff 35%, transparent 25%);
    animation: lqd-outline-glow-2 3s linear infinite;
    border-radius: inherit;
    aspect-ratio: 1/1;
    inset-inline-start: 50%;
    top: 50%;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
}

@keyframes lqd-outline-glow-2 {
    0% {
        transform: translate(-88%, -50%) rotate(0deg);
    }
    33% {
        transform: translate(-12%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-12%, -50%) rotate(180deg);
    }
    83% {
        transform: translate(-88%, -50%) rotate(180deg);
    }
    100% {
        transform: translate(-88%, -50%) rotate(360deg);
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 70px;
    line-height: 75px;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 span {
    font-weight: 700;
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
        font-size: 60px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
        font-size: 55px;
        line-height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
        font-size: 48px;
        line-height: 65px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content h1 {
        font-size: 42px;
        line-height: 54px;
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 65px;
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-wrapper .banner-content-wrap .banner-content p {
        font-size: 16px;
        margin-bottom: 35px;
    }
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .primary-btn3::after {
    background-color: var(--white-color);
}

.home5-banner-section .banner-wrapper .banner-content-wrap .banner-content .primary-btn3:hover {
    color: var(--dark-title-color);
}

.home5-banner-section .banner-bottom-area {
    margin-top: -115px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area {
        margin-top: -95px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-bottom-area {
        margin-top: -75px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area {
        margin-top: -55px;
    }
}

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

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .swiper-wrapper {
    align-items: end;
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .mb-25 {
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .mb-25 {
        margin-bottom: 20px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item {
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 45px 35px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item {
        padding: 40px 20px;
        min-height: 420px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item {
        padding: 40px 20px;
        min-height: 400px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item {
        padding: 35px 14px;
        min-height: 380px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item {
        border-radius: 15px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item h2 {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item h2 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item h2 span {
    color: var(--global-text-color);
    display: block;
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item .counter-area h3 {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.03em;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item .counter-area h3 {
        font-size: 48px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item .counter-area h3 {
        font-size: 48px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item .counter-area h3 {
        font-size: 44px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two {
    min-height: 400px;
    padding: 40px 0 40px 5px;
    display: flex;
    align-items: end;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two {
        min-height: 350px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two {
        min-height: 330px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two h2 {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.03em;
    writing-mode: sideways-lr;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two h2 {
        font-size: 95px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two h2 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two h2 {
        font-size: 80px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.two h2 {
        font-size: 78px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three {
    background-color: var(--white-color);
    min-height: 300px;
    display: flex;
    align-items: end;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three {
        min-height: 270px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three {
        min-height: 250px;
    }
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three {
        min-height: 230px;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three h3 {
    margin-bottom: 20px;
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .content a {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .content a svg {
    stroke: var(--title-color);
    transition: 0.5s;
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .content a:hover svg {
    transform: rotate(45deg);
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .vector {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 20px 0 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .vector {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-item.three .vector {
        border-radius: 0 15px 0 0;
    }
}

.home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-img img {
    border-radius: 20px;
    min-height: 300px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-img img {
        min-height: 270px;
    }
}

@media (max-width: 1399px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-img img {
        min-height: 250px;
    }
}

@media (max-width: 1199px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-img img {
        min-height: 230px;
    }
}

@media (max-width: 576px) {
    .home5-banner-section .banner-bottom-area .home5-banner-bottom-slider .single-img img {
        border-radius: 15px;
    }
}

.home5-banner-section .banner-bottom-area .partner-section {
    padding-bottom: 100px;
    border-bottom: unset;
}

@media (max-width: 991px) {
    .home5-banner-section .banner-bottom-area .partner-section {
        padding-bottom: 80px;
    }
}

.home5-banner-section .banner-bottom-area .partner-section .partner-title h3 {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
}

.home5-banner-section .banner-bottom-area .partner-section .partner-title h3 span {
    color: var(--white-color);
}

/*=====================================
  39. Home5 Service Section CSS
========================================*/
.home5-service-section .service-card2 {
    padding: 50px 32px;
    border: 1px solid var(--borders-color);
    border-radius: 20px;
    position: relative;
}

@media (max-width: 1399px) {
    .home5-service-section .service-card2 {
        padding: 45px 25px;
    }
}

@media (max-width: 1199px) {
    .home5-service-section .service-card2 {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 {
        border-radius: 15px;
    }
}

.home5-service-section .service-card2 .icon {
    margin-bottom: 40px;
    display: inline-block;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home5-service-section .service-card2 .icon {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .home5-service-section .service-card2 .icon {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 .icon {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home5-service-section .service-card2 .icon img {
        width: 75px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 .icon img {
        width: 70px;
    }
}

.home5-service-section .service-card2 h3 {
    line-height: 1.3;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 h3 {
        margin-bottom: 10px;
    }
}

.home5-service-section .service-card2 h3 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.03em;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 1399px) {
    .home5-service-section .service-card2 h3 a {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 h3 a {
        font-size: 24px;
    }
}

.home5-service-section .service-card2 h3 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.home5-service-section .service-card2 p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home5-service-section .service-card2 p {
        font-size: 17px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .home5-service-section .service-card2 p {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 p {
        font-size: 17px;
        margin-bottom: 30px;
    }
}

.home5-service-section .service-card2 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.home5-service-section .service-card2 ul li {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home5-service-section .service-card2 ul li {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home5-service-section .service-card2 ul li {
        font-size: 17px;
    }
}

.home5-service-section .service-card2 ul li:last-child {
    margin-bottom: 0;
}

.home5-service-section .service-card2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 80.17%, #C2EE10 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s;
}

.home5-service-section .service-card2:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.home5-service-section .service-card2:hover .icon {
    animation: bounceIn 1.2s linear;
}

.home5-service-section .service-card2.two {
    background-size: cover;
    background-repeat: no-repeat;
}

.home5-service-section .service-card2.two .content {
    max-width: 265px;
}

.home5-service-section .service-card2.two::before {
    display: none;
}

.home5-service-section .service-card2.two h3 {
    margin-bottom: 30px;
}

.home5-service-section .service-card2.two h3 a {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

.home5-service-section .service-card2.two h3 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.home5-service-section .service-card2.two .primary-btn3 {
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 23px;
    background-color: #1E1E1E;
    color: var(--white-color);
}

.home5-service-section .service-card2.two .primary-btn3:hover {
    color: var(--dark-title-color);
}

/*=====================================
  40. Home5 Banner2 Section CSS
========================================*/
.home5-banner2-section {
    position: relative;
    height: 680px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .home5-banner2-section {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .home5-banner2-section {
        height: 550px;
    }
}

@media (max-width: 576px) {
    .home5-banner2-section {
        height: 450px;
    }
}

.home5-banner2-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}

.home5-banner2-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  41. Home5 Service Section CSS
========================================*/
.home5-about-section {
    background-color: #020202;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section {
        padding: 120px 0;
    }
}

@media (max-width: 1399px) {
    .home5-about-section {
        padding: 120px 0;
    }
}

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

.home5-about-section .about-title-area {
    padding: 0 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .about-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .about-title-area {
        padding: 0 0 60px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-title-area {
        padding: 0 0 50px;
        margin-bottom: 60px;
    }
}

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

.home5-about-section .about-title-area .section-title h2 {
    max-width: 1005px;
    letter-spacing: 0.03em;
}

@media (max-width: 1699px) {
    .home5-about-section .about-title-area .section-title h2 {
        max-width: 920px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .about-title-area .section-title h2 {
        max-width: 850px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .about-title-area .section-title h2 {
        max-width: 765px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-title-area .section-title h2 {
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .home5-about-section .about-title-area .section-title h2 {
        max-width: unset;
    }
}

.home5-about-section .about-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }
}

.home5-about-section .about-wrapper .customer-counter-area {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 14px 24px;
    background-color: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .customer-counter-area {
        gap: 15px;
        padding: 12px 18px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .customer-counter-area {
        gap: 10px;
    }
}

.home5-about-section .about-wrapper .customer-counter-area .counter-img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.home5-about-section .about-wrapper .customer-counter-area .counter-img-grp li img {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
    margin-left: -20px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .customer-counter-area .counter-img-grp li img {
        min-width: 50px;
        max-width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .customer-counter-area .counter-img-grp li img {
        min-width: 45px;
        max-width: 45px;
        height: 45px;
    }
}

.home5-about-section .about-wrapper .customer-counter-area .counter-img-grp li:first-child img {
    margin-left: 0;
}

.home5-about-section .about-wrapper .customer-counter-area h3 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    min-width: 185px;
    width: 100%;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .customer-counter-area h3 {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .customer-counter-area h3 {
        font-size: 15px;
    }
}

.home5-about-section .about-wrapper .customer-counter-area h3 strong {
    color: var(--primary-color1);
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .customer-counter-area h3 strong {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .customer-counter-area h3 strong {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .customer-counter-area h3 {
        min-width: unset;
    }
}

.home5-about-section .about-wrapper .customer-counter-area::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color1);
    border-radius: 50%;
    z-index: -1;
}

.home5-about-section .about-wrapper .customer-counter-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(54px);
    backdrop-filter: blur(54px);
    z-index: -1;
    border-radius: inherit;
}

.home5-about-section .about-wrapper .about-content-wrap {
    max-width: 1005px;
    min-width: 1005px;
}

@media (max-width: 1699px) {
    .home5-about-section .about-wrapper .about-content-wrap {
        max-width: 920px;
        min-width: 920px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .about-wrapper .about-content-wrap {
        max-width: 850px;
        min-width: 850px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap {
        max-width: 765px;
        min-width: 765px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper .about-content-wrap {
        max-width: unset;
        min-width: unset;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .calculation-area {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area {
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area .icon img {
        width: 45px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .calculation-area h3 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 26px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area h3 {
        gap: 20px;
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area h3 {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .about-content-wrap .calculation-area h3 {
        gap: 10px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .calculation-area h3 svg {
    fill: var(--white-color);
}

.home5-about-section .about-wrapper .about-content-wrap .content {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 65px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .content {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper .about-content-wrap .content {
        margin-bottom: 55px;
    }
}

@media (max-width: 767px) {
    .home5-about-section .about-wrapper .about-content-wrap .content {
        margin-bottom: 45px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .content p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 410px;
    width: 100%;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .content p {
        max-width: 365px;
    }
}

@media (max-width: 991px) {
    .home5-about-section .about-wrapper .about-content-wrap .content p {
        max-width: unset;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .about-content-wrap .content p {
        font-size: 17px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 991px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area {
        gap: 30px;
        flex-wrap: wrap;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .primary-btn3 {
    background-color: #1E1E1E;
    color: var(--white-color);
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .primary-btn3:hover {
    color: var(--dark-title-color);
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap svg {
    fill: var(--dark-text-color);
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap svg {
        width: 45px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area {
    display: flex;
    align-items: end;
    gap: 35px;
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    display: flex;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 {
        font-size: 62px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 {
        font-size: 54px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 strong {
    font-weight: 500;
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 sup {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 300;
    top: 10px;
    position: absolute;
    right: -30px;
}

@media (max-width: 1199px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area h2 sup {
        right: -25px;
    }
}

.home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area > span {
    color: var(--dark-text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

@media (max-width: 1399px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area > span {
        font-size: 17px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .home5-about-section .about-wrapper .about-content-wrap .btn-and-counter-area .counter-wrap .counter-area > span {
        font-size: 15px;
    }
}

.home5-about-section .vector {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .vector {
        width: 500px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .vector {
        width: 420px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .vector {
        display: none;
    }
}

.home5-about-section .vector2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-about-section .vector2 {
        width: 550px;
    }
}

@media (max-width: 1399px) {
    .home5-about-section .vector2 {
        width: 470px;
    }
}

@media (max-width: 1199px) {
    .home5-about-section .vector2 {
        display: none;
    }
}

/*=====================================
  42. Home5 Process Section CSS
========================================*/
.home5-process-section .section-title {
    max-width: 790px;
    width: 100%;
}

.home5-process-section .section-title > span {
    padding: 7px 19px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

@media (max-width: 576px) {
    .home5-process-section .section-title > span {
        font-size: 15px;
    }
}

.home5-process-section .section-title > span::before {
    display: none;
}

.home5-process-section .primary-btn3 {
    padding: 17px 30px;
}

.home5-process-section .process-wrapper {
    border-top: 1px solid var(--borders-color);
    border-bottom: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .home5-process-section .process-wrapper {
        border: unset;
    }
}

.home5-process-section .process-wrapper .process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .home5-process-section .process-wrapper .process-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list {
        gap: 15px;
        row-gap: 24px;
    }
}

@media (max-width: 576px) {
    .home5-process-section .process-wrapper .process-list {
        grid-template-columns: 1fr;
    }
}

.home5-process-section .process-wrapper .process-list .single-process {
    padding: 70px 60px 65px;
    border-right: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        border: 1px solid var(--borders-color);
    }
}

@media (max-width: 1399px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        padding: 65px 45px 60px;
    }
}

@media (max-width: 1199px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        padding: 65px 30px 60px;
    }
}

@media (max-width: 991px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        padding: 55px 25px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        padding: 40px 18px;
    }
}

@media (max-width: 576px) {
    .home5-process-section .process-wrapper .process-list .single-process {
        padding: 45px 20px;
    }
}

@media (min-width: 992px) {
    .home5-process-section .process-wrapper .process-list .single-process:first-child {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .home5-process-section .process-wrapper .process-list .single-process:last-child {
        border-right: unset;
        padding-right: 0;
    }
}

.home5-process-section .process-wrapper .process-list .single-process .step-no {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 8px 17px;
    background-color: var(--primary-color1);
    border-radius: 100px;
    margin-bottom: 40px;
}

@media (max-width: 1399px) {
    .home5-process-section .process-wrapper .process-list .single-process .step-no {
        margin-bottom: 30px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list .single-process .step-no {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 425px) {
    .home5-process-section .process-wrapper .process-list .single-process .step-no {
        margin-bottom: 25px;
        font-size: 15px;
    }
}

.home5-process-section .process-wrapper .process-list .single-process h3 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 60px;
}

@media (max-width: 1399px) {
    .home5-process-section .process-wrapper .process-list .single-process h3 {
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .home5-process-section .process-wrapper .process-list .single-process h3 {
        font-size: 25px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list .single-process h3 {
        font-size: 22px;
        margin-bottom: 40px;
    }
}

@media (max-width: 425px) {
    .home5-process-section .process-wrapper .process-list .single-process h3 {
        margin-bottom: 40px;
    }
}

.home5-process-section .process-wrapper .process-list .single-process .icon {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list .single-process .icon img {
        width: 80px;
    }
}

.home5-process-section .process-wrapper .process-list .single-process p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 300px;
}

@media (min-width: 576px) and (max-width: 767px) {
    .home5-process-section .process-wrapper .process-list .single-process p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home5-process-section .process-wrapper .process-list .single-process p {
        font-size: 17px;
    }
}

/*=====================================
  43. Home5 Testimonial Section CSS
========================================*/
.home5-testimonial-section .testimonial-banner {
    position: relative;
    border-radius: 20px;
    height: 100%;
}

@media (max-width: 576px) {
    .home5-testimonial-section .testimonial-banner {
        border-radius: 15px;
    }
}

.home5-testimonial-section .testimonial-banner img {
    border-radius: inherit;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 400px;
}

.home5-testimonial-section .testimonial-banner .banner-content-wrap {
    background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, rgba(2, 2, 2, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    border-radius: inherit;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 1199px) {
    .home5-testimonial-section .testimonial-banner .banner-content-wrap {
        padding: 60px 40px;
    }
}

@media (max-width: 576px) {
    .home5-testimonial-section .testimonial-banner .banner-content-wrap {
        padding: 50px 20px;
    }
}

.home5-testimonial-section .testimonial-banner .banner-content-wrap .banner-content {
    max-width: 350px;
    width: 100%;
}

.home5-testimonial-section .testimonial-banner .banner-content-wrap .banner-content h3 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.home5-testimonial-section .testimonial-banner .banner-content-wrap .banner-content span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.home5-testimonial-section .testimonial-slider-wrap {
    position: relative;
    height: 100%;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider {
    height: 100%;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .testimonial-card2 {
    height: 100%;
    position: relative;
    z-index: 1;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .testimonial-card2 .author-area {
    max-width: 265px;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .testimonial-card2 .vector {
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: -1;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .testimonial-card2::before {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 240px;
    height: 250px;
    background-color: var(--primary-color1);
    border-radius: 50%;
    z-index: -1;
    animation: random 5s infinite;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .testimonial-card2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(170px);
    backdrop-filter: blur(170px);
    z-index: -1;
    border-radius: inherit;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .swiper-slide-active .testimonial-card2 svg, .home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .swiper-slide-active .testimonial-card2 p {
    animation: fadeInDown 1.7s;
}

.home5-testimonial-section .testimonial-slider-wrap .home2-testimonial-slider .swiper-slide-active .testimonial-card2 .author-area {
    animation: fadeInUp 1.7s;
}

.home5-testimonial-section .testimonial-slider-wrap .slider-btn-grp {
    position: absolute;
    z-index: 9;
    right: 60px;
    bottom: 90px;
}

@media (max-width: 1399px) {
    .home5-testimonial-section .testimonial-slider-wrap .slider-btn-grp {
        right: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home5-testimonial-section .testimonial-slider-wrap .slider-btn-grp {
        bottom: 75px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .home5-testimonial-section .testimonial-slider-wrap .slider-btn-grp {
        display: none;
    }
}

.home5-testimonial-section .testimonial-slider-wrap .slider-btn-grp .slider-btn {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
}

@keyframes random {
    15% {
        background-color: var(--primary-color1);
    }
    30% {
        background-color: #10EE4B;
    }
    45% {
        background-color: #10EEEE;
    }
    60% {
        background-color: #FFDB8E;
    }
    75% {
        background-color: var(--primary-color1);
    }
    100% {
        background-color: #10EEEE;
    }
}

/*=====================================
  44. Home5 Contact Section CSS
========================================*/
.home5-contact-section {
    min-height: 780px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    display: flex;
    align-items: end;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-contact-section {
        min-height: 750px;
    }
}

@media (max-width: 1399px) {
    .home5-contact-section {
        min-height: 720px;
    }
}

@media (max-width: 1199px) {
    .home5-contact-section {
        min-height: 680px;
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .home5-contact-section {
        min-height: 650px;
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .home5-contact-section {
        min-height: 600px;
    }
}

.home5-contact-section .contact-content-wrapper {
    width: 100%;
}

.home5-contact-section .title-area {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 45px;
}

@media (max-width: 767px) {
    .home5-contact-section .title-area {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .home5-contact-section .title-area {
        margin-bottom: 30px;
    }
}

.home5-contact-section .title-area span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    display: block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .home5-contact-section .title-area span {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home5-contact-section .title-area span {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.home5-contact-section .title-area h2 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-contact-section .title-area h2 {
        font-size: 95px;
    }
}

@media (max-width: 1399px) {
    .home5-contact-section .title-area h2 {
        font-size: 88px;
    }
}

@media (max-width: 1199px) {
    .home5-contact-section .title-area h2 {
        font-size: 82px;
    }
}

@media (max-width: 991px) {
    .home5-contact-section .title-area h2 {
        font-size: 75px;
    }
}

@media (max-width: 767px) {
    .home5-contact-section .title-area h2 {
        font-size: 65px;
    }
}

@media (max-width: 576px) {
    .home5-contact-section .title-area h2 {
        font-size: 55px;
    }
}

.home5-contact-section .contact-area .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home5-contact-section .contact-area .contact-list .single-contact a {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 15px 28px;
    border-radius: 100px;
    background-color: var(--white-color);
    text-align: center;
}

@media (max-width: 767px) {
    .home5-contact-section .contact-area .contact-list .single-contact a {
        font-size: 17px;
        padding: 14px 24px;
    }
}

.home5-contact-section .contact-area .contact-list .single-contact .scramble-text {
    text-transform: lowercase;
}

/*=====================================
  45. Home5 Portfolio Section CSS
========================================*/
.home5-portfolio-section .home5-portfolio-slider {
    cursor: url("../img/home5/cursor.png"), default;
}

.home5-portfolio-section .home5-portfolio-slider .swiper-slide-active .single-portfolio .portfolio-img img {
    animation: qodef-animate-image-in 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}

.home5-portfolio-section .home5-portfolio-slider .swiper-slide-active .single-portfolio .portfolio-video video {
    animation: qodef-animate-image-in 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}

.home5-portfolio-section .home5-portfolio-slider .swiper-slide-active .single-portfolio .portfolio-content-wrap .portfolio-content .title-area {
    animation: fadeInDown 1.7s;
}

.home5-portfolio-section .home5-portfolio-slider .swiper-slide-active .single-portfolio .portfolio-content-wrap .portfolio-content .content {
    animation: fadeInUp 1.7s;
}

.home5-portfolio-section .single-portfolio {
    position: relative;
    border-radius: 20px;
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio {
        border-radius: 15px 15px 0 0;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-img {
    border-radius: 20px;
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-img {
        border-radius: 15px 15px 0 0;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-img img {
    border-radius: inherit;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
    animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 12;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-portfolio-section .single-portfolio .portfolio-img img {
        height: 750px;
    }
}

@media (max-width: 1399px) {
    .home5-portfolio-section .single-portfolio .portfolio-img img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .home5-portfolio-section .single-portfolio .portfolio-img img {
        height: 650px;
    }
}

@media (max-width: 991px) {
    .home5-portfolio-section .single-portfolio .portfolio-img img {
        height: 620px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-img img {
        height: 350px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-video {
    height: 800px;
    border-radius: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-portfolio-section .single-portfolio .portfolio-video {
        height: 750px;
    }
}

@media (max-width: 1399px) {
    .home5-portfolio-section .single-portfolio .portfolio-video {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .home5-portfolio-section .single-portfolio .portfolio-video {
        height: 650px;
    }
}

@media (max-width: 991px) {
    .home5-portfolio-section .single-portfolio .portfolio-video {
        height: 620px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-video {
        height: 350px;
        border-radius: 15px 15px 0 0;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
    animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 12;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-mask-image: url(../img/home5/home5-portfolio-content-bg.png);
    mask-image: url(../img/home5/home5-portfolio-content-bg.png);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--dark-white-color);
    max-width: 635px;
    width: 100%;
    height: 720px;
    margin: 40px;
    padding: 70px 40px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        height: 680px;
        margin: 0 30px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 1399px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        height: 640px;
        margin: 0 30px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 1199px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        height: 550px;
        padding: 50px 30px;
    }
}

@media (max-width: 991px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        height: 520px;
        margin: 0 20px;
    }
}

@media (max-width: 767px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        height: 480px;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap {
        -webkit-mask-image: unset;
        mask-image: unset;
        position: relative;
        top: unset;
        transform: unset;
        margin: 0;
        border: 1px solid var(--borders-color);
        height: unset;
        border-radius: 0 0 15px 15px;
        padding: 40px 20px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .portfolio-content {
    max-width: 400px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 991px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .portfolio-content {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .portfolio-content {
        gap: 40px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area {
    line-height: 1;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area h2 {
    margin-bottom: 5px;
    line-height: 1.1;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area h2 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 35px;
    line-height: 1.1;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 1399px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area h2 a {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area h2 a {
        font-size: 24px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area h2 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .title-area span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul {
        gap: 10px;
        row-gap: 15px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li {
    display: flex;
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li a {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 10px 18px;
    background-color: #F0F0F0;
    border-radius: 100px;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li a {
        font-size: 14px;
        padding: 8px 15px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li a:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 65px;
}

@media (max-width: 991px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content p {
        margin-bottom: 55px;
    }
}

@media (max-width: 576px) {
    .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content p {
        font-size: 17px;
        margin-bottom: 35px;
    }
}

.home5-portfolio-section .single-portfolio .portfolio-content-wrap .content .primary-btn3 {
    padding: 17px 30px;
}

@keyframes qodef-animate-image-out {
    0% {
        transform: scale(1) translateZ(0);
        clip-path: inset(0 0 0 0);
    }
    100% {
        transform: scale(1);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes qodef-animate-image-in {
    0% {
        transform: scale(1.05) translateZ(0);
        clip-path: inset(0 100% 0 0);
    }
    100% {
        transform: scale(1);
        clip-path: inset(0 0 0 0);
    }
}

/*=====================================
  46. Home6 Banner Section CSS
========================================*/
.home6-banner-section .banner-top {
    padding: 130px 0 150px;
}

@media (max-width: 991px) {
    .home6-banner-section .banner-top {
        padding: 125px 0 130px;
    }
}

@media (max-width: 767px) {
    .home6-banner-section .banner-top {
        padding: 125px 0 110px;
    }
}

@media (max-width: 576px) {
    .home6-banner-section .banner-top {
        padding: 125px 0 70px;
    }
}

.home6-banner-section .banner-wrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 100px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-banner-section .banner-wrapper {
        gap: 55px;
    }
}

@media (max-width: 1399px) {
    .home6-banner-section .banner-wrapper {
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper {
        gap: 45px;
    }
}

@media (max-width: 767px) {
    .home6-banner-section .banner-wrapper {
        flex-wrap: wrap;
        align-items: start;
        gap: 45px;
    }
}

.home6-banner-section .banner-wrapper .banner-title {
    max-width: 860px;
    width: 100%;
}

@media (max-width: 1399px) {
    .home6-banner-section .banner-wrapper .banner-title {
        max-width: 700px;
    }
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper .banner-title {
        max-width: 650px;
    }
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title {
        max-width: 510px;
    }
}

@media (max-width: 767px) {
    .home6-banner-section .banner-wrapper .banner-title {
        max-width: unset;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 145px;
    line-height: 1;
    margin-bottom: 0;
}

.home6-banner-section .banner-wrapper .banner-title h1 > span {
    font-family: var(--font-felidae);
    font-weight: 400;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-banner-section .banner-wrapper .banner-title h1 {
        font-size: 130px;
    }
}

@media (max-width: 1399px) {
    .home6-banner-section .banner-wrapper .banner-title h1 {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper .banner-title h1 {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 {
        font-size: 85px;
    }
}

@media (max-width: 576px) {
    .home6-banner-section .banner-wrapper .banner-title h1 {
        font-size: 62px;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 .video-wrap {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap {
        display: flex;
        margin-top: 15px;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video {
    display: inline-block;
    height: 110px;
    padding-right: 60px;
    position: relative;
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video {
        height: 100px;
    }
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video {
        height: 90px;
        padding-right: 55px;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video video {
    width: 110px;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video video {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video video {
        width: 90px;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video .shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    fill: var(--primary-color1);
}

@media (max-width: 1199px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video .shape {
        height: 100px;
    }
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .banner-video .shape {
        height: 90px;
    }
}

.home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .arrow {
    fill: none;
    stroke: var(--black-color);
}

@media (max-width: 991px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .arrow {
        width: 82px;
    }
}

@media (max-width: 576px) {
    .home6-banner-section .banner-wrapper .banner-title h1 .video-wrap .arrow {
        width: 70px;
    }
}

.home6-banner-section .banner-wrapper .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (max-width: 767px) {
    .home6-banner-section .banner-wrapper .service-list {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
        row-gap: 20px;
    }
}

.home6-banner-section .banner-wrapper .service-list li {
    position: relative;
    margin-bottom: 15px;
    text-align: end;
}

@media (max-width: 767px) {
    .home6-banner-section .banner-wrapper .service-list li {
        margin-bottom: 0;
    }
}

.home6-banner-section .banner-wrapper .service-list li a {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    padding-left: 18px;
    position: relative;
}

@media (max-width: 576px) {
    .home6-banner-section .banner-wrapper .service-list li a {
        font-size: 20px;
    }
}

.home6-banner-section .banner-wrapper .service-list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--black-color);
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .home6-banner-section .banner-wrapper .service-list li a::before {
        opacity: 1;
    }
}

.home6-banner-section .banner-wrapper .service-list li a span {
    display: inline-block;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.home6-banner-section .banner-wrapper .service-list li:hover a::before {
    opacity: 1;
}

.home6-banner-section .banner-wrapper .service-list li:hover a span {
    background-size: 100% 1.5px;
    background-position: left 95%;
}

.home6-banner-section .banner-bottom {
    padding: 35px 0;
    border-top: 1px solid var(--borders-color);
}

.home6-banner-section .banner-bottom .banner-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap {
        flex-wrap: wrap;
        gap: 30px;
        row-gap: 50px;
    }
}

@media (max-width: 767px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap {
        gap: 20px;
        row-gap: 40px;
    }
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    width: 100%;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area .counter-img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area .counter-img-grp li img {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
    margin-left: -15px;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area .counter-img-grp li span {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    border: 2px solid var(--dark-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area .counter-img-grp li:first-child img {
    margin-left: 0;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area h2 {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area h2 strong {
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 328px;
    width: 100%;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 svg {
    fill: var(--text-color);
    min-width: 50px;
}

@media (max-width: 576px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 svg {
        min-width: 40px;
    }
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 h2 {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 h2 {
        font-size: 45px;
    }
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .counter-area2 p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li {
    position: relative;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.5s;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li span {
        display: none;
    }
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li a i {
    color: var(--black-color);
    transition: 0.5s;
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li a:hover {
    background-color: var(--black-color);
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li a:hover i {
    color: var(--dark-white-color);
}

.home6-banner-section .banner-bottom .banner-bottom-wrap .social-list li:has(a:hover) span {
    opacity: 1;
    top: -30px;
}

/*=====================================
  47. Home6 Banner Image Section CSS
========================================*/
.home6-banner-image-section {
    position: relative;
    height: 900px;
    overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-banner-image-section {
        height: 750px;
    }
}

@media (max-width: 1399px) {
    .home6-banner-image-section {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .home6-banner-image-section {
        height: 650px;
    }
}

@media (max-width: 576px) {
    .home6-banner-image-section {
        height: 450px;
    }
}

.home6-banner-image-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .home6-banner-image-section .banner-img {
        transform: scale(1.2);
    }
}

.home6-banner-image-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  48. Home6 About Section CSS
========================================*/
@media (max-width: 991px) {
    .home6-about-section .about-img-and-counter-area {
        display: flex;
        align-items: end;
        gap: 70px;
    }
}

@media (max-width: 767px) {
    .home6-about-section .about-img-and-counter-area {
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .home6-about-section .about-img-and-counter-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.home6-about-section .about-img-and-counter-area .counter-area {
    display: flex;
    align-items: end;
    gap: 20px;
    max-width: 300px;
    width: 100%;
    margin-top: 70px;
}

@media (max-width: 991px) {
    .home6-about-section .about-img-and-counter-area .counter-area {
        gap: 15px;
        margin-top: 0;
        margin-bottom: -12px;
    }
}

.home6-about-section .about-img-and-counter-area .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.home6-about-section .about-img-and-counter-area .counter-area h2 span {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 145px;
    line-height: 1;
    display: inline-block;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 span {
        font-size: 140px;
    }
}

@media (max-width: 1399px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 span {
        font-size: 130px;
    }
}

@media (max-width: 1199px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 span {
        font-size: 120px;
    }
}

@media (max-width: 991px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 span {
        font-size: 110px;
    }
}

@media (max-width: 576px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 span {
        font-size: 100px;
    }
}

.home6-about-section .about-img-and-counter-area .counter-area h2 sup {
    color: var(--title-color);
    font-size: 30px;
    font-weight: 300;
    top: 25px;
    position: absolute;
}

@media (max-width: 1199px) {
    .home6-about-section .about-img-and-counter-area .counter-area h2 sup {
        top: 20px;
    }
}

.home6-about-section .about-img-and-counter-area .counter-area > span {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 18px;
}

@media (max-width: 1199px) {
    .home6-about-section .about-img-and-counter-area .counter-area > span {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .home6-about-section .about-img-and-counter-area .counter-area > span {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 576px) {
    .home6-about-section .about-img-and-counter-area .counter-area > span {
        margin-bottom: 12px;
    }
}

.home6-about-section .about-content .section-title {
    min-width: 1000px;
}

@media (max-width: 1799px) {
    .home6-about-section .about-content .section-title {
        min-width: 930px;
    }
}

@media (max-width: 1699px) {
    .home6-about-section .about-content .section-title {
        min-width: 880px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-about-section .about-content .section-title {
        min-width: 785px;
    }
}

@media (max-width: 1399px) {
    .home6-about-section .about-content .section-title {
        min-width: 775px;
    }
}

@media (max-width: 1199px) {
    .home6-about-section .about-content .section-title {
        min-width: unset;
    }
}

@media (max-width: 1799px) {
    .home6-about-section .about-content .section-title h2 {
        font-size: 67px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-about-section .about-content .section-title h2 {
        font-size: 62px;
    }
}

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

@media (max-width: 1199px) {
    .home6-about-section .about-content .section-title h2 {
        font-size: 52px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .home6-about-section .about-content .section-title h2 {
        font-size: 48px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .home6-about-section .about-content .section-title h2 {
        font-size: 35px;
    }
}

@media (max-width: 1199px) {
    .home6-about-section .about-content .section-title h2 span {
        line-height: 1.2;
    }
}

.home6-about-section .about-content .btn-and-rating-area {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1199px) {
    .home6-about-section .about-content .btn-and-rating-area {
        gap: 50px;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .home6-about-section .about-content .btn-and-rating-area {
        margin-top: 45px;
    }
}

@media (max-width: 576px) {
    .home6-about-section .about-content .btn-and-rating-area {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 35px;
    }
}

.home6-about-section .about-content .btn-and-rating-area .rating-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home6-about-section .about-content .btn-and-rating-area .rating-area svg {
    fill: #E62415;
}

.home6-about-section .about-content .btn-and-rating-area .rating-area svg path:last-child {
    fill: #17313B;
}

.home6-about-section .about-content .btn-and-rating-area .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home6-about-section .about-content .btn-and-rating-area .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home6-about-section .about-content .btn-and-rating-area .rating-area .content span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

/*=====================================
  49. Home6 Portfolio Section CSS
========================================*/
.home6-portfolio-section {
    border-bottom: 1px solid var(--borders-color);
}

.home6-portfolio-section .gy-150 {
    --bs-gutter-y: 150px;
}

@media (max-width: 1399px) {
    .home6-portfolio-section .gy-150 {
        --bs-gutter-y: 130px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-portfolio-section .gy-150 {
        --bs-gutter-y: 120px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .gy-150 {
        --bs-gutter-y: 110px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .gy-150 {
        --bs-gutter-y: 70px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .gy-150 {
        --bs-gutter-y: 50px;
    }
}

.home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
    min-height: 800px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1699px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 780px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 720px;
    }
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 600px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 520px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .item:nth-child(1) .portfolio-card3 .portfolio-img img {
        min-height: 350px;
    }
}

.home6-portfolio-section .item:nth-child(2) .portfolio-card3 {
    max-width: 675px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(2) .portfolio-card3 {
        max-width: 100%;
        margin-left: 0;
    }
}

.home6-portfolio-section .item:nth-child(2) .portfolio-card3 .portfolio-img img {
    max-height: 550px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(3) .portfolio-card3 {
    max-width: 520px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(3) .portfolio-card3 {
        margin-left: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(3) .portfolio-card3 .portfolio-img img {
    max-height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(4) .portfolio-card3 {
    max-width: 520px;
    margin-top: -245px;
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(4) .portfolio-card3 {
        margin-top: -225px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(4) .portfolio-card3 {
        margin-top: -170px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(4) .portfolio-card3 {
        margin-top: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(4) .portfolio-card3 .portfolio-img img {
    max-height: 570px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(5) {
    display: flex;
    align-items: end;
}

.home6-portfolio-section .item:nth-child(5) .portfolio-card3 {
    max-width: 675px;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(5) .portfolio-card3 {
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(5) .portfolio-card3 .portfolio-img img {
    max-height: 650px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
    min-height: 800px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1699px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 780px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 720px;
    }
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 600px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 520px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .item:nth-child(6) .portfolio-card3 .portfolio-img img {
        min-height: 350px;
    }
}

.home6-portfolio-section .item:nth-child(7) .portfolio-card3 {
    max-width: 520px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(7) .portfolio-card3 {
        margin-left: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(7) .portfolio-card3 .portfolio-img img {
    max-height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(8) .portfolio-card3 {
    max-width: 520px;
    padding-top: 160px;
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(8) .portfolio-card3 {
        padding-top: 140px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(8) .portfolio-card3 {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(8) .portfolio-card3 {
        margin-top: 0;
        padding-top: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(8) .portfolio-card3 .portfolio-img img {
    max-height: 570px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
    min-height: 800px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1699px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 780px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 720px;
    }
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 600px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 520px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .item:nth-child(9) .portfolio-card3 .portfolio-img img {
        min-height: 350px;
    }
}

.home6-portfolio-section .item:nth-child(10) .portfolio-card3 {
    max-width: 675px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(10) .portfolio-card3 {
        max-width: 100%;
        margin-left: 0;
    }
}

.home6-portfolio-section .item:nth-child(10) .portfolio-card3 .portfolio-img img {
    max-height: 550px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(11) .portfolio-card3 {
    max-width: 520px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(11) .portfolio-card3 {
        margin-left: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(11) .portfolio-card3 .portfolio-img img {
    max-height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .item:nth-child(12) .portfolio-card3 {
    max-width: 520px;
    padding-top: 160px;
}

@media (max-width: 1399px) {
    .home6-portfolio-section .item:nth-child(12) .portfolio-card3 {
        margin-top: -225px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .item:nth-child(12) .portfolio-card3 {
        margin-top: -190px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .item:nth-child(12) .portfolio-card3 {
        margin-top: 0;
        max-width: 100%;
    }
}

.home6-portfolio-section .item:nth-child(12) .portfolio-card3 .portfolio-img img {
    max-height: 570px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home6-portfolio-section .porfolio-title-area {
    text-align: center;
    margin-bottom: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-portfolio-section .porfolio-title-area {
        margin-bottom: 110px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .porfolio-title-area {
        margin-bottom: 110px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .porfolio-title-area {
        margin-bottom: 80px;
    }
}

.home6-portfolio-section .porfolio-title-area h2 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 245px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    z-index: -1;
}

@media (max-width: 1699px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 220px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 200px;
    }
}

@media (max-width: 1399px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 180px;
    }
}

@media (max-width: 1199px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 150px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .porfolio-title-area h2 {
        font-size: 70px;
    }
}

.home6-portfolio-section .porfolio-bottom-area {
    text-align: center;
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

@media (max-width: 767px) {
    .home6-portfolio-section .porfolio-bottom-area {
        margin-top: 80px;
    }
}

.home6-portfolio-section .porfolio-bottom-area .destination {
    height: 26px;
}

@media (max-width: 1199px) {
    .home6-portfolio-section .porfolio-bottom-area .destination {
        display: none;
    }
}

.home6-portfolio-section .porfolio-bottom-area h2 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .home6-portfolio-section .porfolio-bottom-area h2 {
        display: none;
    }
}

.home6-portfolio-section .porfolio-bottom-area p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-top: 35px;
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .home6-portfolio-section .porfolio-bottom-area p {
        margin-top: 30px;
        margin-bottom: 55px;
    }
}

@media (max-width: 991px) {
    .home6-portfolio-section .porfolio-bottom-area p {
        margin-bottom: 45px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .home6-portfolio-section .porfolio-bottom-area p {
        font-size: 16px;
        margin-top: 25px;
    }
}

.reveal {
    position: relative;
    width: 100%;
    height: auto; /* or set min-height based on your image */
    overflow: hidden;
    visibility: visible; /* now gsap handles opacity/visibility */
}

.portfolio-card3 {
    position: relative;
    z-index: 1;
}

.portfolio-card3 .portfolio-img {
    display: block;
}

@media (max-width: 576px) {
    .portfolio-card3 .portfolio-img img {
        min-height: 350px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.portfolio-card3 .portfolio-content {
    padding-top: 25px;
}

.portfolio-card3 .portfolio-content h2 {
    line-height: 1.2;
    margin-bottom: 15px;
}

.portfolio-card3 .portfolio-content h2 a {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 35px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.portfolio-card3 .portfolio-content h2 a:hover {
    color: var(--title-color);
    background-size: 100% 1px;
    background-position: 0 95%;
}

@media (max-width: 1199px) {
    .portfolio-card3 .portfolio-content h2 a {
        font-size: 33px;
    }
}

@media (max-width: 991px) {
    .portfolio-card3 .portfolio-content h2 a {
        font-size: 31px;
    }
}

.portfolio-card3 .portfolio-content .year-and-category {
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-card3 .portfolio-content .year-and-category span, .portfolio-card3 .portfolio-content .year-and-category a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
    transition: 0.5s;
}

.portfolio-card3 .portfolio-content .year-and-category a {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

.portfolio-card3 .portfolio-content .year-and-category a:hover {
    color: var(--title-color);
    background-size: 100% 1px;
    background-position: 0 100%;
}

.portfolio-card3 .portfolio-content .year-and-category svg {
    fill: var(--borders-color);
}

.portfolio-card3.two .portfolio-img {
    border-radius: 20px;
}

.portfolio-card3.two .portfolio-img img {
    border-radius: inherit;
    min-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1399px) {
    .portfolio-card3.two .portfolio-img img {
        min-height: 450px;
    }
}

@media (max-width: 991px) {
    .portfolio-card3.two .portfolio-img img {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .portfolio-card3.two .portfolio-img img {
        min-height: 380px;
        max-height: 380px;
    }
}

.portfolio-card3.two .portfolio-img.sm-img img {
    min-height: 450px;
}

@media (max-width: 1399px) {
    .portfolio-card3.two .portfolio-img.sm-img img {
        min-height: 380px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-card3.two .portfolio-img.sm-img img {
        min-height: 350px;
    }
}

@media (max-width: 991px) {
    .portfolio-card3.two .portfolio-img.sm-img img {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .portfolio-card3.two .portfolio-img.sm-img img {
        min-height: 380px;
        max-height: 380px;
    }
}

.portfolio-card3.two .portfolio-content h2 a {
    font-weight: 400;
}

@media (max-width: 1399px) {
    .portfolio-card3.two .portfolio-content h2 a {
        font-size: 33px;
    }
}

@media (max-width: 1199px) {
    .portfolio-card3.two .portfolio-content h2 a {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .portfolio-card3.two .portfolio-content h2 a {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .portfolio-card3.two .portfolio-content h2 a {
        font-size: 26px;
    }
}

.portfolio-card3.two .portfolio-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-card3.two .portfolio-content ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.portfolio-card3.two .portfolio-content ul li:last-child {
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

.portfolio-card3.two .portfolio-content ul li a {
    color: var(--title-color);
    display: block;
    padding: 5px 17px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

.portfolio-card3.two .portfolio-content ul li a:hover {
    background-color: var(--black-color);
    border-color: var(--black-color);
    color: var(--dark-white-color);
}

/*=====================================
  50. Home6 Service Section CSS
========================================*/
.home6-service-section .section-title {
    margin-bottom: 130px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-service-section .section-title {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .home6-service-section .section-title {
        margin-bottom: 80px;
    }
}

.home6-service-section .service-wrapper .service-img ul {
    padding: 0;
    margin: 0;
    list-style: none;
    min-height: 530px;
    max-width: 455px;
    height: 100%;
    width: 100%;
    position: relative;
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-img ul {
        min-height: 450px;
    }
}

@media (max-width: 991px) {
    .home6-service-section .service-wrapper .service-img ul {
        min-height: 380px;
    }
}

@media (max-width: 576px) {
    .home6-service-section .service-wrapper .service-img ul {
        height: unset;
    }
}

.home6-service-section .service-wrapper .service-img ul li .single-img {
    position: absolute;
    display: block;
    min-height: 240px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 12;
}

@media (max-width: 576px) {
    .home6-service-section .service-wrapper .service-img ul li .single-img {
        height: unset;
    }
}

.home6-service-section .service-wrapper .service-img ul li .single-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 576px) {
    .home6-service-section .service-wrapper .service-img ul li .single-img img {
        height: unset;
    }
}

.home6-service-section .service-wrapper .service-img ul li .sm-img {
    position: absolute;
    display: block;
    min-height: 300px;
    max-width: 300px;
    bottom: 70px;
    right: -110px;
    border: 5px solid var(--white-color);
    animation: qodef-animate-image-out 2s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 15;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-service-section .service-wrapper .service-img ul li .sm-img {
        right: -80px;
    }
}

@media (max-width: 1399px) {
    .home6-service-section .service-wrapper .service-img ul li .sm-img {
        min-height: 250px;
        max-width: 250px;
        right: -80px;
    }
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-img ul li .sm-img {
        min-height: 220px;
        max-width: 220px;
        right: -60px;
    }
}

@media (max-width: 991px) {
    .home6-service-section .service-wrapper .service-img ul li .sm-img {
        display: none;
    }
}

.home6-service-section .service-wrapper .service-img ul li .sm-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 576px) {
    .home6-service-section .service-wrapper .service-img ul li .sm-img img {
        height: unset;
    }
}

.home6-service-section .service-wrapper .service-img ul li.active .single-img {
    animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 15;
}

.home6-service-section .service-wrapper .service-img ul li.active .sm-img {
    animation: qodef-animate-image-in 1.5s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 16;
}

.home6-service-section .service-wrapper .service-img.two {
    position: relative;
}

.home6-service-section .service-wrapper .service-img.two ul {
    min-height: 350px;
    max-width: 345px;
    margin-left: auto;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-service-section .service-wrapper .service-img.two ul {
        min-height: 320px;
    }
}

@media (max-width: 1399px) {
    .home6-service-section .service-wrapper .service-img.two ul {
        min-height: 280px;
    }
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-img.two ul {
        min-height: 240px;
    }
}

@media (max-width: 767px) {
    .home6-service-section .service-wrapper .service-img.two ul {
        margin-left: 0;
    }
}

.home6-service-section .service-wrapper .service-list {
    max-width: 500px;
    width: 100%;
}

.home6-service-section .service-wrapper .service-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 60px;
}

.home6-service-section .service-wrapper .service-list ul li {
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-list ul li {
        margin-bottom: 30px;
    }
}

.home6-service-section .service-wrapper .service-list ul li:last-child {
    margin-bottom: 0;
}

.home6-service-section .service-wrapper .service-list ul li:last-child .service-content p {
    margin-bottom: 0;
}

.home6-service-section .service-wrapper .service-list ul li h2 {
    margin-bottom: 0;
}

.home6-service-section .service-wrapper .service-list ul li h2 a {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-size: 35px;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 2px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 1399px) {
    .home6-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .home6-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 28px;
    }
}

.home6-service-section .service-wrapper .service-list ul li .service-content {
    padding-top: 20px;
    line-height: 1;
    overflow: hidden;
    display: none;
    transform-origin: top;
    transition: 0.35s;
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-list ul li .service-content {
        padding-top: 15px;
    }
}

.home6-service-section .service-wrapper .service-list ul li .service-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home6-service-section .service-wrapper .service-list ul li .service-content p {
        font-size: 17px;
    }
}

.home6-service-section .service-wrapper .service-list ul li .service-content p strong {
    font-weight: 600;
    color: var(--title-color);
}

.home6-service-section .service-wrapper .service-list ul li.active h2 a {
    background-size: 100% 2px;
    background-position: left 90%;
}

.home6-service-section .service-wrapper .service-list ul li.active .service-content {
    display: block;
    height: 100%;
    animation: fade-down 0.45s linear;
}

/*=====================================
  51. Home6 Testimonial Section CSS
========================================*/
.home6-testimonial-section .testimonial-rating-area {
    padding: 70px 35px;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

@media (max-width: 1699px) {
    .home6-testimonial-section .testimonial-rating-area {
        padding: 70px 25px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-testimonial-section .testimonial-rating-area {
        padding: 60px 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home6-testimonial-section .testimonial-rating-area {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    .home6-testimonial-section .testimonial-rating-area {
        padding: 55px 25px;
    }
}

.home6-testimonial-section .testimonial-rating-area .quote {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

@media (max-width: 1399px) {
    .home6-testimonial-section .testimonial-rating-area .quote {
        margin-bottom: 55px;
    }
}

@media (max-width: 576px) {
    .home6-testimonial-section .testimonial-rating-area .quote {
        margin-bottom: 45px;
    }
}

.home6-testimonial-section .testimonial-rating-area .quote svg {
    fill: var(--dark-black-color);
}

.home6-testimonial-section .testimonial-rating-area h3 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
}

.home6-testimonial-section .testimonial-rating-area .rating-area {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 26px;
    border-radius: 100px;
    background-color: var(--white-color);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home6-testimonial-section .testimonial-rating-area .rating-area {
        padding: 22px 24px;
    }
}

@media (max-width: 576px) {
    .home6-testimonial-section .testimonial-rating-area .rating-area {
        gap: 10px;
        padding: 15px 20px;
    }
}

.home6-testimonial-section .testimonial-rating-area .rating-area svg {
    fill: #E62415;
}

.home6-testimonial-section .testimonial-rating-area .rating-area svg path:last-child {
    fill: #17313B;
}

.home6-testimonial-section .testimonial-rating-area .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home6-testimonial-section .testimonial-rating-area .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home6-testimonial-section .testimonial-rating-area .rating-area .content span {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home6-testimonial-section .testimonial-wrapper {
    background-color: #F0F0F0;
    height: 100%;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 {
    padding: 60px 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid transparent;
}

@media (max-width: 1699px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 {
        padding: 60px 45px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 {
        padding: 55px 25px;
    }
}

@media (max-width: 1399px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 {
        padding: 50px 20px;
    }
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    padding: 25px 0 75px;
}

@media (max-width: 1699px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
        font-size: 26px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
        font-size: 24px;
    }
}

@media (max-width: 1399px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
        font-size: 22px;
        padding: 25px 0 60px;
    }
}

@media (max-width: 1199px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
        font-size: 21px;
    }
}

@media (max-width: 576px) {
    .home6-testimonial-section .testimonial-wrapper .testimonial-card3 p {
        font-size: 20px;
        padding: 25px 0 50px;
    }
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 p span {
    color: var(--title-color);
    font-weight: 400;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .quote-and-author-img {
    display: flex;
    align-items: center;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .quote-and-author-img .quote {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--dark-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .quote-and-author-img .quote svg {
    fill: var(--black-color);
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .quote-and-author-img .author-img {
    min-width: 55px;
    max-width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-left: -15px;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .quote-and-author-img .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .author-content {
    line-height: 1;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .author-content h4 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
}

.home6-testimonial-section .testimonial-wrapper .testimonial-card3 .author-area .author-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.home6-testimonial-section .testimonial-wrapper .home6-testimonial-slider {
    cursor: url(../img/home6/icon/cursor.svg), default;
}

.home6-testimonial-section .testimonial-wrapper .home6-testimonial-slider .swiper-slide-active .testimonial-card3 {
    border-right: 1px solid rgba(var(--black-color-opc), 0.1);
}

@media (max-width: 767px) {
    .home6-testimonial-section .testimonial-wrapper .home6-testimonial-slider .swiper-slide-active .testimonial-card3 {
        border-right: unset;
    }
}

/*=====================================
  52. Home6 Award Section CSS
========================================*/
.home6-award-section .section-title {
    margin-bottom: 130px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-award-section .section-title {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .home6-award-section .section-title {
        margin-bottom: 80px;
    }
}

.home6-award-section .section-title h2 span:last-child {
    background-image: unset;
}

.home6-award-section .award-wrapper .founder-area {
    display: flex;
    align-items: end;
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .founder-area {
        display: block;
    }
}

.home6-award-section .award-wrapper .founder-area .img-area {
    min-width: 455px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-award-section .award-wrapper .founder-area .img-area {
        min-width: 430px;
    }
}

@media (max-width: 1399px) {
    .home6-award-section .award-wrapper .founder-area .img-area {
        min-width: 400px;
    }
}

@media (max-width: 1199px) {
    .home6-award-section .award-wrapper .founder-area .img-area {
        min-width: 350px;
    }
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .founder-area .img-area {
        min-width: unset;
    }
}

.home6-award-section .award-wrapper .founder-area .founder-content {
    padding: 55px 45px 50px;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
    max-width: 330px;
    width: 100%;
    margin-left: -230px;
    margin-bottom: -65px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-award-section .award-wrapper .founder-area .founder-content {
        margin-left: -260px;
        margin-bottom: -96px;
        padding: 40px 35px 45px;
    }
}

@media (max-width: 1399px) {
    .home6-award-section .award-wrapper .founder-area .founder-content {
        margin-left: -260px;
        margin-bottom: -96px;
        padding: 40px 35px 45px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-award-section .award-wrapper .founder-area .founder-content {
        margin-left: -255px;
        margin-bottom: -165px;
        padding: 40px 25px;
        max-width: 290px;
    }
}

@media (max-width: 991px) {
    .home6-award-section .award-wrapper .founder-area .founder-content {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .founder-area .founder-content {
        margin-left: 0;
        max-width: unset;
        padding: 40px 25px;
    }
}

.home6-award-section .award-wrapper .founder-area .founder-content h2 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .home6-award-section .award-wrapper .founder-area .founder-content h2 {
        font-size: 45px;
    }
}

.home6-award-section .award-wrapper .founder-area .founder-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-award-section .award-wrapper .founder-area .founder-content p {
        margin-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .home6-award-section .award-wrapper .founder-area .founder-content p {
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .home6-award-section .award-wrapper .founder-area .founder-content p {
        margin-bottom: 30px;
    }
}

.home6-award-section .award-wrapper .founder-area .founder-content .line {
    fill: var(--borders-color);
}

.home6-award-section .award-wrapper .founder-area .founder-content .founder-info-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .founder-area .founder-content .founder-info-wrap {
        gap: 15px;
    }
}

.home6-award-section .award-wrapper .founder-area .founder-content .founder-info-wrap .founder-img img {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
}

.home6-award-section .award-wrapper .founder-area .founder-content .founder-info-wrap .founder-info h3 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 12px;
}

.home6-award-section .award-wrapper .founder-area .founder-content .founder-info-wrap .founder-info span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
}

.home6-award-section .award-wrapper .award-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.home6-award-section .award-wrapper .award-list .single-award {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 35px;
}

.home6-award-section .award-wrapper .award-list .single-award:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: unset;
}

.home6-award-section .award-wrapper .award-list .single-award .award-logo-area img.dark {
    display: none;
}

.home6-award-section .award-wrapper .award-list .single-award .award-logo-area span {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    display: block;
    padding-top: 20px;
}

.home6-award-section .award-wrapper .award-list .single-award .award-logo-area span:last-child {
    font-size: 16px;
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .award-list .single-award .award-logo-area span {
        font-size: 20px;
    }
}

.home6-award-section .award-wrapper .award-list .single-award .info-list {
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 265px;
    max-width: 265px;
}

@media (max-width: 1399px) {
    .home6-award-section .award-wrapper .award-list .single-award .info-list {
        min-width: 230px;
        max-width: 230px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home6-award-section .award-wrapper .award-list .single-award .info-list {
        min-width: 200px;
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .home6-award-section .award-wrapper .award-list .single-award .info-list {
        min-width: 180px;
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .award-list .single-award .info-list {
        min-width: unset;
    }
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .home6-award-section .award-wrapper .award-list .single-award .info-list li {
        font-size: 20px;
    }
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li:last-child {
    margin-bottom: 0;
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li a {
    color: #3F59DD;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li a span {
    background: linear-gradient(to bottom, #3F59DD 0%, #3F59DD 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li a svg {
    fill: #3F59DD;
}

.home6-award-section .award-wrapper .award-list .single-award .info-list li a:hover span {
    background-size: 100% 1px;
    background-position: 0 100%;
}

/*=====================================
  53. Home6 Contact Section CSS
========================================*/
.home6-contact-section {
    border-top: 1px solid var(--borders-color);
}

.home6-contact-section .contact-wrapper {
    display: flex;
    align-items: start;
    gap: 140px;
}

@media (max-width: 1699px) {
    .home6-contact-section .contact-wrapper {
        gap: 100px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-contact-section .contact-wrapper {
        gap: 70px;
    }
}

@media (max-width: 1399px) {
    .home6-contact-section .contact-wrapper {
        gap: 50px;
    }
}

@media (max-width: 1199px) {
    .home6-contact-section .contact-wrapper {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .home6-contact-section .contact-wrapper {
        flex-wrap: wrap;
        gap: 50px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-contact-section .contact-wrapper .contact-img img {
        min-width: 600px;
    }
}

@media (max-width: 1399px) {
    .home6-contact-section .contact-wrapper .contact-img img {
        min-width: 520px;
    }
}

@media (max-width: 1199px) {
    .home6-contact-section .contact-wrapper .contact-img img {
        min-width: 470px;
    }
}

@media (max-width: 991px) {
    .home6-contact-section .contact-wrapper .contact-img img {
        max-width: 600px;
        min-width: unset;
    }
}

@media (max-width: 767px) {
    .home6-contact-section .contact-wrapper .contact-img img {
        max-width: 100%;
    }
}

.home6-contact-section .contact-wrapper .contact-content {
    max-width: 740px;
    width: 100%;
}

@media (max-width: 991px) {
    .home6-contact-section .contact-wrapper .contact-content {
        max-width: 640px;
    }
}

.home6-contact-section .contact-wrapper .contact-content h2 {
    margin-bottom: 50px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .home6-contact-section .contact-wrapper .contact-content h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .home6-contact-section .contact-wrapper .contact-content h2 {
        line-height: 1.1;
        margin-bottom: 30px;
    }
}

.home6-contact-section .contact-wrapper .contact-content h2 a {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 145px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a {
        font-size: 135px;
    }
}

@media (max-width: 1399px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a {
        font-size: 95px;
    }
}

@media (max-width: 576px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a {
        font-size: 70px;
    }
}

.home6-contact-section .contact-wrapper .contact-content h2 a span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 5px;
    background-position: right 88%;
    transition: background-size 0.75s;
}

.home6-contact-section .contact-wrapper .contact-content h2 a:hover span {
    background-size: 100% 5px;
    background-position: 0 88%;
}

@media (max-width: 767px) {
    .home6-contact-section .contact-wrapper .contact-content h2 a span {
        background-size: 0px 3px;
    }

    .home6-contact-section .contact-wrapper .contact-content h2 a:hover span {
        background-size: 100% 3px;
    }
}

.home6-contact-section .contact-wrapper .contact-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home6-contact-section .contact-wrapper .contact-content p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home6-contact-section .contact-wrapper .contact-content p {
        font-size: 16px;
    }
}

/*=====================================
  54. Home7 Banner Section CSS
========================================*/
.home7-banner-section {
    position: relative;
}

.home7-banner-section .banner-wrapper {
    padding: 185px 0 70px;
}

@media (max-width: 1199px) {
    .home7-banner-section .banner-wrapper {
        padding: 160px 0 70px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper {
        padding: 130px 0 70px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-wrapper {
        padding: 130px 0 60px;
    }
}

.home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 50px;
}

@media (max-width: 1699px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 90px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 78px;
    }
}

@media (max-width: 1399px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 65px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        margin-bottom: 0;
        line-height: 1.1;
    }
}

@media (max-width: 767px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 52px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-wrapper h1, .home7-banner-section .banner-wrapper h2 {
        font-size: 48px;
    }
}

.home7-banner-section .banner-wrapper .banner-left-content {
    max-width: 580px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home7-banner-section .banner-wrapper .banner-left-content {
        max-width: 460px;
    }
}

@media (max-width: 1399px) {
    .home7-banner-section .banner-wrapper .banner-left-content {
        max-width: 420px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper .banner-left-content {
        max-width: unset;
    }
}

.home7-banner-section .banner-wrapper .banner-left-content .left-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 450px;
    width: 100%;
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper .banner-left-content .left-content {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-wrapper .banner-left-content .left-content {
        margin-top: 30px;
    }
}

.home7-banner-section .banner-wrapper .banner-left-content .left-content svg {
    fill: none;
    stroke: var(--title-color);
    min-width: 32px;
}

.home7-banner-section .banner-wrapper .banner-left-content .left-content p {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home7-banner-section .banner-wrapper .banner-left-content .left-content p {
        font-size: 17px;
    }
}

.home7-banner-section .banner-wrapper .banner-right-content {
    text-align: right;
    padding-top: 145px;
}

@media (max-width: 1399px) {
    .home7-banner-section .banner-wrapper .banner-right-content {
        padding-top: 130px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper .banner-right-content {
        text-align: left;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-wrapper .banner-right-content {
        padding-top: 30px;
    }
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 17px 22px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    margin-bottom: 60px;
}

@media (max-width: 1399px) {
    .home7-banner-section .banner-wrapper .banner-right-content .rating-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-wrapper .banner-right-content .rating-area {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-wrapper .banner-right-content .rating-area {
        gap: 10px;
        padding: 15px 20px;
    }
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area svg {
    fill: #E62415;
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area svg path:last-child {
    fill: #17313B;
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home7-banner-section .banner-wrapper .banner-right-content .rating-area .content span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home7-banner-section .banner-wrapper .banner-right-content h2 {
    margin-bottom: 0;
}

.home7-banner-section .banner-bottom-area {
    padding-top: 70px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .home7-banner-section .banner-bottom-area {
        padding-top: 50px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-bottom-area {
        padding-top: 40px;
    }
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info {
    display: flex;
    align-items: center;
    gap: 85px;
}

@media (max-width: 1399px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info img {
        width: 160px;
    }
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info {
    max-width: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info {
        gap: 10px;
    }
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info svg {
    fill: var(--black-color);
    min-width: 32px;
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info span {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info span {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info span {
        font-size: 16px;
    }
}

.home7-banner-section .banner-bottom-area .banner-bottom-wrap .founded-year {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
}

.home7-banner-section .home7-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .home7-banner-section .home7-banner-video {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }
}

.home7-banner-section .home7-banner-video .video-wrapper {
    width: 424px;
    height: 450px;
}

@media (max-width: 991px) {
    .home7-banner-section .home7-banner-video .video-wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .home7-banner-section .home7-banner-video .video-wrapper {
        height: 400px;
    }
}

.home7-banner-section .home7-banner-video .video-wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  55. Home7 Service Section CSS
========================================*/
.home7-service-section .section-title {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .home7-service-section .section-title {
        margin-bottom: 60px;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home7-service-section .section-title {
        margin-bottom: 55px;
        padding-bottom: 45px;
    }
}

.home7-service-section .service-wrapper .counter-wrap {
    display: flex;
    align-items: start;
    gap: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-service-section .service-wrapper .counter-wrap {
        gap: 8px;
    }
}

.home7-service-section .service-wrapper .counter-wrap svg {
    fill: var(--title-color);
}

.home7-service-section .service-wrapper .counter-wrap .counter-area {
    display: flex;
    align-items: end;
    gap: 30px;
    max-width: 300px;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area {
        gap: 20px;
    }
}

.home7-service-section .service-wrapper .counter-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.home7-service-section .service-wrapper .counter-wrap .counter-area h2 strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area h2 strong {
        font-size: 65px;
    }
}

.home7-service-section .service-wrapper .counter-wrap .counter-area h2 sup {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 300;
    top: 6px;
    position: absolute;
    margin-left: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area h2 sup {
        margin-left: 5px;
    }
}

.home7-service-section .service-wrapper .counter-wrap .counter-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .counter-wrap .counter-area span {
        font-size: 15px;
    }
}

.home7-service-section .service-wrapper .service-img ul {
    padding: 0;
    margin: 0;
    list-style: none;
    min-height: 340px;
    max-width: 345px;
    height: 100%;
    width: 100%;
    position: relative;
    margin-left: auto;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home7-service-section .service-wrapper .service-img ul {
        min-height: 320px;
    }
}

@media (max-width: 1399px) {
    .home7-service-section .service-wrapper .service-img ul {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .home7-service-section .service-wrapper .service-img ul {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .home7-service-section .service-wrapper .service-img ul {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .service-img ul {
        height: unset;
        margin-left: 0;
    }
}

.home7-service-section .service-wrapper .service-img ul li .single-img {
    position: absolute;
    display: block;
    min-height: 240px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 12;
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .service-img ul li .single-img {
        height: unset;
    }
}

.home7-service-section .service-wrapper .service-img ul li .single-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .service-img ul li .single-img img {
        height: unset;
    }
}

.home7-service-section .service-wrapper .service-img ul li.active .single-img {
    animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
    z-index: 15;
}

.home7-service-section .service-wrapper .service-list {
    max-width: 500px;
    width: 100%;
}

.home7-service-section .service-wrapper .service-list .sub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    margin-bottom: 35px;
}

.home7-service-section .service-wrapper .service-list .sub-title svg {
    fill: var(--text-color);
}

.home7-service-section .service-wrapper .service-list .sub-title span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    display: block;
}

.home7-service-section .service-wrapper .service-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .home7-service-section .service-wrapper .service-list ul {
        margin-bottom: 50px;
    }
}

.home7-service-section .service-wrapper .service-list ul li {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .home7-service-section .service-wrapper .service-list ul li {
        margin-bottom: 18px;
    }
}

@media (max-width: 576px) {
    .home7-service-section .service-wrapper .service-list ul li {
        margin-bottom: 25px;
    }
}

.home7-service-section .service-wrapper .service-list ul li:last-child {
    margin-bottom: 0;
}

.home7-service-section .service-wrapper .service-list ul li h2 {
    display: inline-block;
    margin-bottom: 0;
}

.home7-service-section .service-wrapper .service-list ul li h2 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 2px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

@media (max-width: 1399px) {
    .home7-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .home7-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .home7-service-section .service-wrapper .service-list ul li h2 a {
        font-size: 26px;
    }
}

.home7-service-section .service-wrapper .service-list ul li.active h2 a {
    background-size: 100% 2px;
    background-position: left 100%;
}

/*=====================================
  56. Home7 Portfolio Section CSS
========================================*/
.home7-portfolio-section {
    padding: 105px 0 120px;
    background-color: var(--dark-black-color);
}

@media (max-width: 1199px) {
    .home7-portfolio-section {
        padding: 75px 0 90px;
    }
}

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

.home7-portfolio-section .portfolio-section-title-area {
    margin-bottom: 150px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-portfolio-section .portfolio-section-title-area {
        margin-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .home7-portfolio-section .portfolio-section-title-area {
        margin-bottom: 110px;
    }
}

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

.home7-portfolio-section .portfolio-section-title-area .portfolio-section-title {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(var(--white-color-opc), 0.15);
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title {
        padding-bottom: 40px;
    }
}

.home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 145px;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 135px;
    }
}

@media (max-width: 1399px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 125px;
    }
}

@media (max-width: 1199px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 90px;
    }
}

@media (max-width: 767px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 68px;
    }
}

@media (max-width: 576px) {
    .home7-portfolio-section .portfolio-section-title-area .portfolio-section-title h2 {
        font-size: 60px;
        line-height: 1.1;
    }
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area p {
    color: var(--dark-text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area p {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area p {
        font-size: 20px;
    }
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area .social-list li a {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 19px;
    border-radius: 100px;
    background-color: #1E1E1E;
    transition: 0.5s;
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area .social-list li a svg {
    fill: var(--dark-text-color);
    transition: 0.5s;
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area .social-list li a:hover {
    color: var(--white-color);
}

.home7-portfolio-section .portfolio-section-title-area .short-info-and-social-area .social-list li a:hover svg {
    fill: var(--white-color);
}

.home7-portfolio-section .slider-btn-grp {
    gap: 40px;
}

@media (max-width: 576px) {
    .home7-portfolio-section .slider-btn-grp {
        gap: 10px;
    }
}

.home7-portfolio-section .slider-btn-grp .slider-btn {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    background-color: #1E1E1E;
}

@media (max-width: 1399px) {
    .home7-portfolio-section .slider-btn-grp .slider-btn {
        min-width: 65px;
        max-width: 65px;
        height: 65px;
    }
}

@media (max-width: 767px) {
    .home7-portfolio-section .slider-btn-grp .slider-btn {
        min-width: 55px;
        max-width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .home7-portfolio-section .slider-btn-grp .slider-btn {
        min-width: 45px;
        max-width: 45px;
        height: 45px;
    }
}

.home7-portfolio-section .slider-btn-grp .slider-btn svg {
    fill: var(--white-color);
}

@media (max-width: 767px) {
    .home7-portfolio-section .slider-btn-grp .slider-btn svg {
        width: 20px;
    }
}

.home7-portfolio-section .slider-btn-grp .slider-btn:hover {
    background-color: var(--primary-color1);
}

.home7-portfolio-section .slider-btn-grp .slider-btn:hover svg {
    fill: var(--dark-black-color);
}

.home7-portfolio-section .slider-btn-grp .progress-pagination {
    position: relative;
    background: rgba(var(--white-color-opc), 0.1);
    height: 1px;
}

.home7-portfolio-section .slider-btn-grp .progress-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-color1);
}

/*=====================================
  57. Home7 Team Section CSS
========================================*/
.home7-team-section .section-title {
    padding-bottom: 55px;
    margin-bottom: 65px;
    border-bottom: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .home7-team-section .section-title {
        margin-bottom: 60px;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .section-title {
        margin-bottom: 55px;
        padding-bottom: 45px;
    }
}

.home7-team-section .section-title h2 {
    color: var(--title-color);
    font-size: 70px;
}

@media (max-width: 1399px) {
    .home7-team-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home7-team-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home7-team-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home7-team-section .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .section-title h2 {
        font-size: 40px;
    }
}

.home7-team-section .team-counter-wrap p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 455px;
    width: 100%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home7-team-section .team-counter-wrap p {
        max-width: 340px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-team-section .team-counter-wrap p {
        max-width: 340px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .home7-team-section .team-counter-wrap p {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .team-counter-wrap p {
        font-size: 20px;
    }
}

.home7-team-section .team-counter-wrap .counter-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap {
        gap: 8px;
    }
}

.home7-team-section .team-counter-wrap .counter-wrap svg {
    fill: var(--title-color);
}

.home7-team-section .team-counter-wrap .counter-wrap .counter-area {
    display: flex;
    align-items: end;
    gap: 30px;
    max-width: 300px;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area {
        gap: 20px;
    }
}

.home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 strong {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 strong {
        font-size: 55px;
    }
}

.home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 sup {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 300;
    top: 6px;
    position: absolute;
    margin-left: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 sup {
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area h2 sup {
        font-size: 26px;
    }
}

.home7-team-section .team-counter-wrap .counter-wrap .counter-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .team-counter-wrap .counter-wrap .counter-area span {
        font-size: 14px;
    }
}

.home7-team-section .bottom-area {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.home7-team-section .bottom-area .bottom-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 9px 35px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    background-color: var(--white-color);
}

@media (max-width: 767px) {
    .home7-team-section .bottom-area .bottom-wrapper {
        max-width: 530px;
        gap: 10px;
        padding: 9px 30px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .bottom-area .bottom-wrapper {
        flex-wrap: wrap;
        max-width: 310px;
        padding: 20px;
        border-radius: 15px;
    }
}

.home7-team-section .bottom-area .bottom-wrapper p {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    margin-right: 15px;
}

@media (max-width: 767px) {
    .home7-team-section .bottom-area .bottom-wrapper p {
        margin-right: 5px;
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 576px) {
    .home7-team-section .bottom-area .bottom-wrapper p {
        margin-right: 0;
    }
}

.home7-team-section .bottom-area .bottom-wrapper img {
    width: 42px;
}

@media (max-width: 767px) {
    .home7-team-section .bottom-area .bottom-wrapper img {
        width: 35px;
    }
}

.home7-team-section .bottom-area .bottom-wrapper a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 767px) {
    .home7-team-section .bottom-area .bottom-wrapper a {
        font-size: 16px;
    }
}

.home7-team-section .bottom-area .bottom-wrapper a svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.home7-team-section .bottom-area .bottom-wrapper a span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.home7-team-section .bottom-area .bottom-wrapper a:hover svg {
    transform: rotate(45deg);
}

.home7-team-section .bottom-area .bottom-wrapper a:hover span {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.home7-team-section .bottom-area::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--borders-color);
    z-index: -1;
}

.team-card2 .team-img {
    position: relative;
    width: 315px;
    height: 315px;
    border-radius: 50%;
    background-color: #F0F0F0;
    margin: 0 auto;
}

@media (max-width: 1799px) {
    .team-card2 .team-img {
        width: 310px;
        height: 310px;
    }
}

@media (max-width: 1699px) {
    .team-card2 .team-img {
        width: 290px;
        height: 290px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .team-card2 .team-img {
        width: 255px;
        height: 255px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .team-card2 .team-img {
        width: 250px;
        height: 250px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-card2 .team-img {
        width: 310px;
        height: 310px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .team-card2 .team-img {
        width: 240px;
        height: 240px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .team-card2 .team-img {
        width: 268px;
        height: 268px;
    }
}

.team-card2 .team-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    transition: opacity 0.5s ease;
    pointer-events: none;
    will-change: opacity;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .team-card2 .team-img img {
        width: 170px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .team-card2 .team-img img {
        width: 170px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .team-card2 .team-img img {
        width: 150px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .team-card2 .team-img img {
        width: 170px;
    }
}

.team-card2 .team-img img.img-after {
    opacity: 0;
}

.team-card2 .team-img .social-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s ease-in-out;
}

.team-card2 .team-img .social-area .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    padding-bottom: 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .team-card2 .team-img .social-area .social-list {
        padding-bottom: 20px;
    }
}

@media (max-width: 1399px) {
    .team-card2 .team-img .social-area .social-list {
        padding-bottom: 20px;
    }
}

.team-card2 .team-img .social-area .social-list li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-card2 .team-img .social-area .social-list li a i {
    color: var(--dark-title-color);
    font-size: 16px;
    transition: 0.5s;
}

.team-card2 .team-img .social-area .social-list li a:hover {
    background-color: var(--dark-black-color);
}

.team-card2 .team-img .social-area .social-list li a:hover i {
    color: var(--white-color);
}

.team-card2 .team-content {
    text-align: center;
    padding: 20px 15px 0;
    line-height: 1;
}

.team-card2 .team-content h3 {
    line-height: 1.3;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .team-card2 .team-content h3 {
        margin-bottom: 8px;
    }
}

.team-card2 .team-content h3 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 1199px) {
    .team-card2 .team-content h3 a {
        font-size: 20px;
    }
}

.team-card2 .team-content h3 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

.team-card2 .team-content span {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.team-card2:hover .team-img .social-area {
    opacity: 1;
    transform: scaleY(1);
}

.team-card2:hover .team-img .img-before {
    opacity: 0;
}

.team-card2:hover .team-img .img-after {
    opacity: 1;
}

/*=====================================
  58. Home7 Testimonial Section CSS
========================================*/
.home7-testimonial-section {
    padding: 120px 0;
    background-color: #020202;
}

.home7-testimonial-section .service-title-area .about-btn, .section-title.two h2 {
    color: var(--dark-title-color)
}

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

@media (max-width: 767px) {
    .home7-testimonial-section {
        padding: 70px 0;
    }
}

.home7-testimonial-section .section-title h2 {
    font-size: 70px;
}

@media (max-width: 1399px) {
    .home7-testimonial-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home7-testimonial-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home7-testimonial-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .home7-testimonial-section .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .home7-testimonial-section .section-title h2 {
        font-size: 26px;
    }
}

.home7-testimonial-section .rate-and-slider-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.home7-testimonial-section .rate-and-slider-btn-wrap .rate-area {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 660px;
    width: 100%;
}

@media (max-width: 991px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area {
        gap: 12px;
    }
}

.home7-testimonial-section .rate-and-slider-btn-wrap .rate-area svg {
    fill: var(--white-color);
    min-width: 70px;
}

@media (max-width: 767px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area svg {
        min-width: 50px;
    }
}

@media (max-width: 576px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area svg {
        display: none;
    }
}

.home7-testimonial-section .rate-and-slider-btn-wrap .rate-area p {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home7-testimonial-section .rate-and-slider-btn-wrap .rate-area p {
        font-size: 15px;
    }
}

.home7-testimonial-section .rate-and-slider-btn-wrap .rate-area p strong {
    font-weight: 600;
}

.home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp {
    gap: 15px;
}

.home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn {
    min-width: 100px;
    max-width: 100px;
    height: 48px;
    border-radius: 100px;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
}

.home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn:hover {
    background-color: var(--black-color);
}

.home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn.swiper-button-disabled {
    opacity: 0.5;
}

/*=====================================
  59. Home7 Banner2 Image Section CSS
========================================*/
.home7-banner2-image-section {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home7-banner2-image-section {
        min-height: 750px;
    }
}

@media (max-width: 1399px) {
    .home7-banner2-image-section {
        min-height: 720px;
    }
}

@media (max-width: 1199px) {
    .home7-banner2-image-section {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    .home7-banner2-image-section {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    .home7-banner2-image-section {
        min-height: 450px;
    }
}

.home7-banner2-image-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
}

.home7-banner2-image-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  60. Home7 Award Section CSS
========================================*/
.home7-award-section .section-title {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--borders-color);
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .home7-award-section .section-title {
        margin-bottom: 60px;
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .home7-award-section .section-title {
        margin-bottom: 55px;
        padding-bottom: 45px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 455px;
    width: 100%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home7-award-section .award-wrapper .award-counter-wrap p {
        max-width: 340px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap p {
        max-width: 340px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .home7-award-section .award-wrapper .award-counter-wrap p {
        margin-bottom: 30px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap {
        gap: 8px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap svg {
    fill: var(--title-color);
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area {
    display: flex;
    align-items: end;
    gap: 30px;
    max-width: 300px;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area {
        gap: 20px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 strong {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 strong {
        font-size: 55px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 sup {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 300;
    top: 6px;
    position: absolute;
    margin-left: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 sup {
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area h2 sup {
        font-size: 26px;
    }
}

.home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home7-award-section .award-wrapper .award-counter-wrap .counter-wrap .counter-area span {
        font-size: 14px;
    }
}

/*=====================================
  61. Home8 Banner Section CSS
========================================*/
.home8-banner-section {
    position: relative;
    overflow: hidden;
    padding: 188px 0 130px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-section {
        padding: 150px 0 110px;
    }
}

@media (max-width: 1399px) {
    .home8-banner-section {
        padding: 150px 0 110px;
    }
}

@media (max-width: 1199px) {
    .home8-banner-section {
        padding: 130px 0px 90px;
    }
}

@media (max-width: 991px) {
    .home8-banner-section {
        padding: 150px 0px 90px;
    }
}

@media (max-width: 576px) {
    .home8-banner-section {
        padding: 130px 0px 70px;
    }
}

.home8-banner-section .banner-wrapper {
    text-align: center;
}

.home8-banner-section .banner-wrapper .award-area {
    margin-bottom: 40px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-section .banner-wrapper .award-area {
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .home8-banner-section .banner-wrapper .award-area {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .award-area {
        margin-bottom: 25px;
    }
}

.home8-banner-section .banner-wrapper .award-area svg {
    fill: var(--title-color);
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .award-area svg {
        width: 50px;
    }
}

.home8-banner-section .banner-wrapper .award-area h6 {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .award-area h6 {
        font-size: 16px;
    }
}

.home8-banner-section .banner-wrapper .award-area span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    display: block;
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .award-area span {
        font-size: 14px;
    }
}

.home8-banner-section .banner-wrapper .banner-title-area {
    position: relative;
    line-height: 1;
}

.home8-banner-section .banner-wrapper .banner-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 140px;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 120px;
        line-height: 1.1;
    }
}

@media (max-width: 1399px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 110px;
        line-height: 1.1;
    }
}

@media (max-width: 1199px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 95px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 80px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 65px;
    }
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 50px;
    }
}

.home8-banner-section .banner-wrapper .banner-title-area h1 strong {
    position: relative;
    display: inline-block;
    font-weight: 300;
}

.home8-banner-section .banner-wrapper .banner-title-area h1 strong svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    fill: none;
    stroke: #0066FF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 1.2s ease forwards 0.2s;
    animation-delay: 1.5s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 strong svg {
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 strong svg {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .home8-banner-section .banner-wrapper .banner-title-area h1 strong svg {
        bottom: -20px;
    }
}

.home8-banner-section .banner-wrapper .banner-content {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-section .banner-wrapper .banner-content {
        padding-top: 45px;
    }
}

@media (max-width: 1399px) {
    .home8-banner-section .banner-wrapper .banner-content {
        padding-top: 45px;
    }
}

@media (max-width: 1199px) {
    .home8-banner-section .banner-wrapper .banner-content {
        padding-top: 35px;
    }
}

@media (max-width: 991px) {
    .home8-banner-section .banner-wrapper .banner-content {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .banner-content {
        padding-top: 25px;
    }
}

.home8-banner-section .banner-wrapper .banner-content p {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .home8-banner-section .banner-wrapper .banner-content p {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .home8-banner-section .banner-wrapper .banner-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.home8-banner-section .banner-wrapper .banner-content .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.home8-banner-section .banner-wrapper .banner-content .social-list li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.home8-banner-section .banner-wrapper .banner-content .social-list li a svg {
    fill: var(--title-color);
    transition: 0.5s;
}

.home8-banner-section .banner-wrapper .banner-content .social-list li a:hover {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.home8-banner-section .banner-wrapper .banner-content .social-list li a:hover svg {
    fill: var(--dark-white-color);
}

.home8-banner-section .content .content__img {
    width: 250px;
    height: 150px;
    border-radius: 15px;
    position: absolute;
    top: 150px;
    left: 0px;
    opacity: 0;
    overflow: hidden;
    will-change: transform, filter;
}

.home8-banner-section .content .content__img .content__img-inner {
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/*=====================================
  62. Home8 Portfolio Section CSS
========================================*/
.home8-portfolio-section .title-area {
    padding: 33px 0;
    border-top: 1px solid var(--borders-color);
    border-bottom: 1px solid var(--borders-color);
}

.home8-portfolio-section .title-area .title-wrap {
    display: grid;
    grid-template-columns: 40% 40% 17%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 991px) {
    .home8-portfolio-section .title-area .title-wrap {
        grid-template-columns: 43% 37% 13%;
    }
}

@media (max-width: 767px) {
    .home8-portfolio-section .title-area .title-wrap {
        display: flex;
        row-gap: 35px;
    }
}

.home8-portfolio-section .title-area .title-wrap h2 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 100;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 0;
}

.home8-portfolio-section .title-area .title-wrap h2:last-child {
    text-align: end;
}

@media (max-width: 1399px) {
    .home8-portfolio-section .title-area .title-wrap h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home8-portfolio-section .title-area .title-wrap h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .home8-portfolio-section .title-area .title-wrap h2 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .home8-portfolio-section .title-area .title-wrap h2 {
        font-size: 40px;
    }
}

/*=====================================
  63. Home8 Banner Image Section CSS
========================================*/
.home8-banner-image-section {
    position: relative;
    height: 850px;
    overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-banner-image-section {
        height: 750px;
    }
}

@media (max-width: 1399px) {
    .home8-banner-image-section {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .home8-banner-image-section {
        height: 650px;
    }
}

@media (max-width: 576px) {
    .home8-banner-image-section {
        height: 450px;
    }
}

.home8-banner-image-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .home8-banner-image-section .banner-img {
        transform: scale(1.2);
    }
}

.home8-banner-image-section .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  64. Home8 Service Section CSS
========================================*/
.home8-service-section {
    padding: 120px 0;
    background-color: #020202;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

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

.home8-service-section .section-title {
    padding: 0 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-service-section .section-title {
        padding: 0 0 60px;
    }
}

@media (max-width: 1399px) {
    .home8-service-section .section-title {
        padding: 0 0 60px;
    }
}

@media (max-width: 1199px) {
    .home8-service-section .section-title {
        padding: 0 0 50px;
        margin-bottom: 60px;
    }
}

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

.home8-service-section .section-title span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    padding: 7px 17px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 10px;
}

@media (max-width: 991px) {
    .home8-service-section .section-title span {
        margin-top: 0;
        margin-bottom: 25px;
    }
}

.home8-service-section .section-title h2 {
    font-family: var(--font-tartuffo-Trial);
    font-size: 70px;
    font-weight: 300;
    max-width: unset;
}

@media (max-width: 1799px) {
    .home8-service-section .section-title h2 {
        font-size: 66px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-service-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 1399px) {
    .home8-service-section .section-title h2 {
        font-size: 56px;
    }
}

@media (max-width: 1199px) {
    .home8-service-section .section-title h2 {
        font-size: 47px;
    }
}

@media (max-width: 991px) {
    .home8-service-section .section-title h2 {
        font-size: 48px;
    }
}

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

@media (max-width: 576px) {
    .home8-service-section .section-title h2 {
        font-size: 36px;
    }
}

.home8-service-section .section-title h2 span {
    border: unset;
}

@media (max-width: 1699px) {
    .home8-service-section .section-title h2 span {
        width: 140px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-service-section .section-title h2 span {
        width: 120px;
    }
}

@media (max-width: 1399px) {
    .home8-service-section .section-title h2 span {
        width: 120px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home8-service-section .section-title h2 span {
        width: 70px;
    }
}

.home8-service-section .rating-wrapper .rating-area {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 100px;
    background-color: #1E1E1E;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .home8-service-section .rating-wrapper .rating-area {
        margin-bottom: 25px;
    }
}

.home8-service-section .rating-wrapper .rating-area svg {
    fill: #E62415;
}

.home8-service-section .rating-wrapper .rating-area svg path:last-child {
    fill: var(--white-color);
}

.home8-service-section .rating-wrapper .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.home8-service-section .rating-wrapper .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.home8-service-section .rating-wrapper .rating-area .content span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
}

.home8-service-section .rating-wrapper p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    max-width: 345px;
    width: 100%;
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home8-service-section .rating-wrapper p {
        max-width: 280px;
    }
}

.home8-service-section .rating-wrapper p strong {
    color: var(--white-color);
    font-weight: 400;
}

.home8-service-section .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    row-gap: 35px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .home8-service-section .service-list {
        gap: 20px;
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .home8-service-section .service-list {
        gap: 12px;
        row-gap: 25px;
    }
}

.home8-service-section .service-list li {
    display: flex;
}

@media (max-width: 576px) {
    .home8-service-section .service-list li {
        width: 100%;
    }
}

.home8-service-section .service-list li a {
    color: var(--dark-text-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 35px;
    line-height: 1;
    padding: 23px 41px;
    border-radius: 100px;
    background-color: #1E1E1E;
    transition: 0.5s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-service-section .service-list li a {
        font-size: 32px;
    }
}

@media (max-width: 1399px) {
    .home8-service-section .service-list li a {
        font-size: 32px;
    }
}

@media (max-width: 1199px) {
    .home8-service-section .service-list li a {
        padding: 20px 34px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .home8-service-section .service-list li a {
        padding: 18px 28px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .home8-service-section .service-list li a {
        width: 100%;
        text-align: center;
        font-size: 25px;
    }
}

.home8-service-section .service-list li a:hover {
    color: var(--white-color);
}

.home8-service-section .video-area {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

@media (max-width: 991px) {
    .home8-service-section .video-area {
        display: none;
    }
}

.home8-service-section .video-area img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*=====================================
  65. Home8 Award Section CSS
========================================*/
.home8-award-section .section-title {
    display: inline-block;
}

.home8-award-section .section-title h2 {
    font-family: var(--font-tartuffo-Trial);
    font-size: 145px;
    font-weight: 300;
    line-height: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .section-title h2 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .section-title h2 {
        font-size: 125px;
    }
}

@media (max-width: 1199px) {
    .home8-award-section .section-title h2 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .home8-award-section .section-title h2 {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .section-title h2 {
        font-size: 85px;
    }
}

@media (max-width: 576px) {
    .home8-award-section .section-title h2 {
        font-size: 75px;
    }
}

.home8-award-section .award-table2 {
    width: 100%;
    border-collapse: collapse;
}

.home8-award-section .award-table2 thead tr th {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 30px;
    padding-top: 0;
}

@media (max-width: 991px) {
    .home8-award-section .award-table2 thead tr th {
        padding: 25px 15px;
    }
}

.home8-award-section .award-table2 thead tr th:first-child {
    padding-left: 50px;
}

.home8-award-section .award-table2 thead tr th:last-child {
    text-align: end;
    padding-right: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .award-table2 thead tr th:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 thead tr th:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .home8-award-section .award-table2 thead tr th:last-child {
        text-align: start;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 thead {
        display: none;
    }
}

.home8-award-section .award-table2 tbody tr {
    border-bottom: 1px solid var(--borders-color);
    transition: 0.35s;
}

.home8-award-section .award-table2 tbody tr td {
    color: var(--text-color);
    font-family: var(--font-tartuffo-Trial);
    font-size: 22px;
    font-weight: 400;
    padding: 30px;
    text-align: start;
    transition: 0.35s;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .home8-award-section .award-table2 tbody tr td {
        padding: 25px 15px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home8-award-section .award-table2 tbody tr td {
        display: block;
        width: 100%;
        padding-left: 50%;
        position: relative;
        padding: 10px 15px;
    }
}

.home8-award-section .award-table2 tbody tr td span {
    color: var(--title-color);
}

.home8-award-section .award-table2 tbody tr td:nth-child(2) {
    width: 700px;
}

@media (max-width: 1699px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(2) {
        width: 600px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(2) {
        width: 550px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(2) {
        width: 480px;
    }
}

@media (max-width: 1199px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(2) {
        width: 380px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(2) {
        width: 100%;
    }
}

.home8-award-section .award-table2 tbody tr td:nth-child(3) {
    width: 400px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(3) {
        width: 350px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(3) {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr td:nth-child(3) {
        width: 100%;
    }
}

.home8-award-section .award-table2 tbody tr td:first-child {
    padding-left: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .award-table2 tbody tr td:first-child {
        padding-left: 20px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 tbody tr td:first-child {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr td:first-child {
        padding-left: 10px;
    }
}

.home8-award-section .award-table2 tbody tr td:last-child {
    text-align: end;
    padding-right: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-award-section .award-table2 tbody tr td:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 tbody tr td:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr td:last-child {
        padding-right: 10px;
    }
}

.home8-award-section .award-table2 tbody tr td img {
    width: 220px;
    height: 280px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.4);
    right: 80px;
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
}

@media (max-width: 1399px) {
    .home8-award-section .award-table2 tbody tr td img {
        right: 15px;
    }
}

@media (max-width: 1199px) {
    .home8-award-section .award-table2 tbody tr td img {
        right: 0;
        width: 180px;
        height: 230px;
    }
}

@media (max-width: 991px) {
    .home8-award-section .award-table2 tbody tr td img {
        right: 0;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr td img {
        display: none;
    }
}

.home8-award-section .award-table2 tbody tr:first-child {
    border-top: 1px solid var(--borders-color);
}

.home8-award-section .award-table2 tbody tr:last-child {
    border-bottom: none;
}

.home8-award-section .award-table2 tbody tr:hover {
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

.home8-award-section .award-table2 tbody tr:hover td img {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.home8-award-section .award-table2 tbody tr:hover td:first-child {
    transform: translateX(30px);
}

@media (max-width: 991px) {
    .home8-award-section .award-table2 tbody tr:hover td:first-child {
        transform: translateX(20px);
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr:hover td:first-child {
        transform: translateX(0px);
    }
}

.home8-award-section .award-table2 tbody tr:hover td:last-child {
    transform: translateX(-30px);
}

@media (max-width: 991px) {
    .home8-award-section .award-table2 tbody tr:hover td:last-child {
        transform: translateX(-20px);
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr:hover td:last-child {
        transform: translateX(0px);
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr:hover {
        background-color: transparent;
    }

    .home8-award-section .award-table2 tbody tr:hover td:first-child {
        padding-left: 10px;
    }

    .home8-award-section .award-table2 tbody tr:hover td:last-child {
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .home8-award-section .award-table2 tbody tr {
        display: block;
        width: 100%;
    }

    .home8-award-section .award-table2 tbody tr td {
        display: block;
        width: 100%;
        text-align: right;
        padding: 12px 10px;
    }

    .home8-award-section .award-table2 tbody tr td a {
        justify-content: end;
    }

    .home8-award-section .award-table2 tbody tr td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-color);
        font-family: var(--font-kanit);
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 576px) {
    .home8-award-section .award-table2 tbody tr td {
        font-size: 16px;
    }
}

.home8-award-section.font-alt .section-title h2 {
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.home8-award-section.font-alt .award-table2 tbody tr td {
    font-family: var(--font-spaceGrotesk);
}

/*=====================================
  66. Home8 Contact Section CSS
========================================*/
.home8-contact-section {
    margin-bottom: 70px;
}

@media (max-width: 576px) {
    .home8-contact-section {
        margin-bottom: 50px;
    }
}

.home8-contact-section .contact-wrapper {
    text-align: center;
}

.home8-contact-section .contact-wrapper > span {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 50px;
    line-height: 55px;
    display: block;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .home8-contact-section .contact-wrapper > span {
        font-size: 48px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .home8-contact-section .contact-wrapper > span {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home8-contact-section .contact-wrapper > span {
        font-size: 38px;
        margin-bottom: 15px;
    }
}

.home8-contact-section .contact-wrapper h2 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 145px;
    line-height: 1;
    margin-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 125px;
    }
}

@media (max-width: 1199px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 85px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .home8-contact-section .contact-wrapper h2 {
        font-size: 75px;
    }
}

.home8-contact-section .contact-wrapper .btn-area {
    position: relative;
    display: inline-block;
}

.home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
    color: var(--white-color);
    font-family: var(--font-tartuffo-Trial);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    text-transform: lowercase;
    padding: 26px 48px;
    border-radius: 100px;
    background-color: var(--dark-black-color);
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
        font-size: 24px;
        padding: 22px 38px;
    }
}

@media (max-width: 576px) {
    .home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
        font-size: 22px;
        padding: 18px 26px;
    }
}

.home8-contact-section .contact-wrapper .btn-area .copy-email-btn:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.home8-contact-section .contact-wrapper .btn-area .copy-alert {
    position: absolute;
    top: -20px;
    right: 0;
    background: #F0F0F0;
    padding: 6px 18px;
    border-radius: 6px;
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
}

.home8-contact-section .contact-wrapper .btn-area .copy-alert.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.home8-contact-section.two {
    background-color: var(--dark-black-color);
    padding: 110px 0 70px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home8-contact-section.two {
        padding: 90px 0 70px;
    }
}

@media (max-width: 767px) {
    .home8-contact-section.two {
        padding: 70px 0;
    }
}

.home8-contact-section.two .contact-wrapper > span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home8-contact-section.two .contact-wrapper > span {
        margin-bottom: 15px;
    }
}

@media (max-width: 1399px) {
    .home8-contact-section.two .contact-wrapper > span {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .home8-contact-section.two .contact-wrapper > span {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .home8-contact-section.two .contact-wrapper > span {
        font-size: 26px;
    }
}

.home8-contact-section.two .contact-wrapper h2 {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    letter-spacing: 0.03em;
}

@media (max-width: 576px) {
    .home8-contact-section.two .contact-wrapper h2 {
        font-size: 70px;
    }
}

.home8-contact-section.two .contact-wrapper .btn-area .copy-email-btn {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    background-color: #1E1E1E;
    padding: 26px 56px;
}

@media (max-width: 576px) {
    .home8-contact-section.two .contact-wrapper .btn-area .copy-email-btn {
        padding: 18px 26px;
    }
}

.home8-contact-section.two .contact-wrapper .btn-area .copy-email-btn:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.home8-contact-section.two .contact-wrapper .btn-area .copy-alert {
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
}

/*=====================================
  67. Home9 Banner Section CSS
========================================*/
.home9-banner-section {
    position: relative;
    z-index: 1;
}

.home9-banner-section .banner-content {
    padding: 210px 0 130px;
    text-align: center;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-banner-section .banner-content {
        padding: 190px 0 130px;
    }
}

@media (max-width: 1399px) {
    .home9-banner-section .banner-content {
        padding: 180px 0 120px;
    }
}

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

@media (max-width: 991px) {
    .home9-banner-section .banner-content {
        padding: 150px 0px 90px;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content {
        padding: 130px 0px 70px;
    }
}

.home9-banner-section .banner-content > span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .home9-banner-section .banner-content > span {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .home9-banner-section .banner-content > span {
        font-size: 25px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content > span {
        gap: 10px;
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.home9-banner-section .banner-content > span svg {
    fill: #3F59DD;
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content > span svg {
        width: 28px;
    }
}

.home9-banner-section .banner-content h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 145px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-banner-section .banner-content h1 {
        font-size: 125px;
    }
}

@media (max-width: 1399px) {
    .home9-banner-section .banner-content h1 {
        font-size: 115px;
    }
}

@media (max-width: 1199px) {
    .home9-banner-section .banner-content h1 {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .home9-banner-section .banner-content h1 {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .home9-banner-section .banner-content h1 {
        font-size: 70px;
        line-height: 1.1;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content h1 {
        font-size: 42px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
}

.home9-banner-section .banner-content h1 .emoji {
    margin-top: -30px;
}

@media (max-width: 1199px) {
    .home9-banner-section .banner-content h1 .emoji {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .home9-banner-section .banner-content h1 .emoji {
        width: 90px;
        margin-top: -20px;
    }
}

@media (max-width: 767px) {
    .home9-banner-section .banner-content h1 .emoji {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content h1 .emoji {
        width: 50px;
        margin-top: -15px;
    }
}

.home9-banner-section .banner-content h1 .vector {
    position: absolute;
    bottom: 40px;
    left: 13%;
    z-index: -1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-banner-section .banner-content h1 .vector {
        left: 16%;
    }
}

@media (max-width: 1399px) {
    .home9-banner-section .banner-content h1 .vector {
        left: 16%;
    }
}

@media (max-width: 1199px) {
    .home9-banner-section .banner-content h1 .vector {
        left: 14%;
        bottom: 20px;
    }
}

@media (max-width: 991px) {
    .home9-banner-section .banner-content h1 .vector {
        left: 8%;
        bottom: 5px;
    }
}

@media (max-width: 767px) {
    .home9-banner-section .banner-content h1 .vector {
        left: 4%;
        width: 130px;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content h1 .vector {
        width: 100px;
        left: 0;
        bottom: 0;
    }
}

.home9-banner-section .banner-content .batch {
    display: inline-block;
    border-radius: 100px;
    position: relative;
    line-height: 1;
    z-index: 1;
    padding: 1px;
}

.home9-banner-section .banner-content .batch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--borders-color);
    border-radius: inherit;
    z-index: -1;
}

.home9-banner-section .banner-content .batch span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
    padding: 16px 40px;
    background-color: var(--dark-white-color);
    display: inline-block;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

@media (max-width: 1399px) {
    .home9-banner-section .banner-content .batch span {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .home9-banner-section .banner-content .batch span {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .home9-banner-section .banner-content .batch span {
        padding: 13px 34px;
        font-size: 23px;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-content .batch span {
        padding: 11px 25px;
        font-size: 20px;
    }
}

.home9-banner-section .banner-content .batch .glow-anim {
    position: absolute;
    inset: 0;
    padding: 1px;
    -webkit-mask: linear-gradient(#3F59DD 0 0) content-box, linear-gradient(#3F59DD 0 0);
    mask: linear-gradient(#3F59DD 0 0) content-box, linear-gradient(#3F59DD 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
}

.home9-banner-section .banner-content .batch .glow-anim .glow-inner {
    background: conic-gradient(from 290deg at 50%, transparent 0%, #3F59DD 35%, transparent 25%);
    animation: lqd-outline-glow-2 3s linear infinite;
    border-radius: inherit;
    aspect-ratio: 1/1;
    inset-inline-start: 50%;
    top: 50%;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
}

@keyframes lqd-outline-glow-2 {
    0% {
        transform: translate(-88%, -50%) rotate(0deg);
    }
    33% {
        transform: translate(-12%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-12%, -50%) rotate(180deg);
    }
    83% {
        transform: translate(-88%, -50%) rotate(180deg);
    }
    100% {
        transform: translate(-88%, -50%) rotate(360deg);
    }
}

.home9-banner-section .banner-bottom-area {
    padding: 30px 0 40px;
    border-top: 1px solid var(--borders-color);
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area {
    display: flex;
    align-items: center;
    gap: 65px;
}

@media (max-width: 767px) {
    .home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area {
        gap: 45px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area {
        gap: 30px;
    }
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list {
        gap: 15px;
    }
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list li a svg {
    fill: var(--title-color);
    transition: 0.5s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list li a:hover {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .social-list li a:hover svg {
    fill: var(--dark-white-color);
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area {
        padding-left: 15px;
    }
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area .waves-block {
    display: inline-block;
    position: relative;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area .waves-block .waves {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(var(--primary-color1-opc), 0.7);
    opacity: 0;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: waves 3s ease-in-out infinite;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area .waves-block .waves.wave-1 {
    animation-delay: 0s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area .waves-block .waves.wave-2 {
    animation-delay: 1s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area .waves-block .waves.wave-3 {
    animation-delay: 2s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .social-and-freelancer-area .freelancer-area span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    display: block;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    transition: 0.5s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn .icon svg {
    fill: var(--dark-black-color);
    transition: 0.5s;
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn:hover {
    color: var(--dark-title-color);
    background-color: var(--primary-color1);
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn:hover .icon {
    background-color: var(--dark-black-color);
}

.home9-banner-section .banner-bottom-area .banner-bottom-wrap .resume-download-btn:hover .icon svg {
    fill: var(--white-color);
}

.home9-banner-section #particle-ball {
    --ball-color: rgba(2, 2, 2, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes waves {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}

/*=====================================
  68. Home9 About Section CSS
========================================*/
.home9-about-section {
    text-align: center;
}

.home9-about-section .section-title {
    margin-bottom: 35px;
}

.home9-about-section img.dark {
    display: none;
}

.home9-about-section .counter-wrap {
    width: 410px;
    height: 540px;
    border-radius: 300px;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px auto 0;
}

@media (max-width: 1199px) {
    .home9-about-section .counter-wrap {
        width: 370px;
        height: 480px;
    }
}

@media (max-width: 991px) {
    .home9-about-section .counter-wrap {
        width: 330px;
        height: 410px;
    }
}

@media (max-width: 576px) {
    .home9-about-section .counter-wrap {
        width: 260px;
        height: 350px;
    }
}

.home9-about-section .counter-wrap .counter-area h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .home9-about-section .counter-wrap .counter-area h2 {
        margin-bottom: 10px;
    }
}

.home9-about-section .counter-wrap .counter-area h2 strong {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 145px;
    line-height: 1;
    letter-spacing: 0.03em;
    display: inline-block;
}

@media (max-width: 1199px) {
    .home9-about-section .counter-wrap .counter-area h2 strong {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .home9-about-section .counter-wrap .counter-area h2 strong {
        font-size: 115px;
    }
}

@media (max-width: 767px) {
    .home9-about-section .counter-wrap .counter-area h2 strong {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .home9-about-section .counter-wrap .counter-area h2 strong {
        font-size: 80px;
    }
}

.home9-about-section .counter-wrap .counter-area h2 sup {
    color: var(--title-color);
    font-size: 66px;
    font-weight: 300;
    top: 19px;
    position: absolute;
    margin-left: 5px;
}

@media (max-width: 1199px) {
    .home9-about-section .counter-wrap .counter-area h2 sup {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .home9-about-section .counter-wrap .counter-area h2 sup {
        font-size: 49px;
        top: 13px;
    }
}

@media (max-width: 576px) {
    .home9-about-section .counter-wrap .counter-area h2 sup {
        font-size: 42px;
    }
}

.home9-about-section .counter-wrap .counter-area span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
}

@media (max-width: 767px) {
    .home9-about-section .counter-wrap .counter-area span {
        font-size: 20px;
    }
}

/*=====================================
  69. Home9 Portfolio Section CSS
========================================*/
.home9-portfolio-section .gy-6 {
    --bs-gutter-y: 4rem;
}

.home9-portfolio-section .portfolio-card.sm-img-right, .home9-portfolio-section .portfolio-card.sm-img-left {
    max-width: 432px;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .home9-portfolio-section .portfolio-card.sm-img-right, .home9-portfolio-section .portfolio-card.sm-img-left {
        max-width: 380px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home9-portfolio-section .portfolio-card.sm-img-right, .home9-portfolio-section .portfolio-card.sm-img-left {
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .home9-portfolio-section .portfolio-card.sm-img-right, .home9-portfolio-section .portfolio-card.sm-img-left {
        max-width: unset;
    }
}

@media (max-width: 1399px) {
    .home9-portfolio-section .portfolio-card.sm-img-right .portfolio-img img, .home9-portfolio-section .portfolio-card.sm-img-left .portfolio-img img {
        min-height: 400px;
        max-height: 400px;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .home9-portfolio-section .portfolio-card.sm-img-right .portfolio-img img, .home9-portfolio-section .portfolio-card.sm-img-left .portfolio-img img {
        min-height: 350px;
        max-height: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home9-portfolio-section .portfolio-card.sm-img-right .portfolio-img img, .home9-portfolio-section .portfolio-card.sm-img-left .portfolio-img img {
        min-height: 320px;
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .home9-portfolio-section .portfolio-card.sm-img-right .portfolio-img img, .home9-portfolio-section .portfolio-card.sm-img-left .portfolio-img img {
        min-height: 420px;
        max-height: 420px;
    }
}

@media (max-width: 576px) {
    .home9-portfolio-section .portfolio-card.sm-img-right .portfolio-img img, .home9-portfolio-section .portfolio-card.sm-img-left .portfolio-img img {
        min-height: 350px;
        max-height: 350px;
    }
}

.home9-portfolio-section .portfolio-card.sm-img-left {
    margin-right: auto;
    margin-left: 0;
}

.home9-portfolio-section .btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=====================================
  70. Home9 Srcoll Text Section CSS
========================================*/
.home9-sroll-text-section {
    margin-bottom: 245px;
    margin-top: 265px;
    overflow-x: clip;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-sroll-text-section {
        margin-top: 235px;
        margin-bottom: 235px;
    }
}

@media (max-width: 1399px) {
    .home9-sroll-text-section {
        margin-top: 225px;
        margin-bottom: 225px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home9-sroll-text-section {
        margin-top: 180px;
        margin-bottom: 190px;
    }
}

@media (max-width: 991px) {
    .home9-sroll-text-section {
        margin-top: 160px;
        margin-bottom: 160px;
    }
}

@media (max-width: 767px) {
    .home9-sroll-text-section {
        margin-top: 120px;
        margin-bottom: 110px;
    }
}

@media (max-width: 576px) {
    .home9-sroll-text-section {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}

.home9-sroll-text-section .single-sroll-text {
    background-color: var(--dark-black-color);
    padding: 30px 0;
    width: 120%;
    transform: rotate(6.79deg);
    position: relative;
    left: -10%;
}

@media (max-width: 991px) {
    .home9-sroll-text-section .single-sroll-text {
        padding: 25px 0;
    }
}

@media (max-width: 767px) {
    .home9-sroll-text-section .single-sroll-text {
        transform: rotate(3.5deg);
    }
}

@media (max-width: 576px) {
    .home9-sroll-text-section .single-sroll-text {
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group {
        gap: 30px;
    }
}

.home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group h2, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group h2 {
    color: var(--white-color);
    font-size: 50px;
    text-transform: uppercase;
}

@media (max-width: 1399px) {
    .home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group h2, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group h2, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group h2, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group h2 {
        font-size: 35px;
    }
}

.home9-sroll-text-section .single-sroll-text .scroll-text-section .scrolling-text .marquee__group svg, .home9-sroll-text-section .single-sroll-text .scroll-text-section2 .scrolling-text .marquee__group svg {
    fill: rgba(153, 153, 153, 0.6);
}

.home9-sroll-text-section .single-sroll-text.two {
    background-color: #F0F0F0;
    transform: rotate(-6.97deg);
    margin-top: -100px;
}

@media (max-width: 767px) {
    .home9-sroll-text-section .single-sroll-text.two {
        margin-top: 0;
        transform: rotate(-1.97deg);
    }
}

.home9-sroll-text-section .single-sroll-text.two .scroll-text-section2 .scrolling-text .marquee__group h2 {
    color: var(--title-color);
    text-transform: uppercase;
}

.home9-sroll-text-section .single-sroll-text.two .scroll-text-section2 .scrolling-text .marquee__group svg {
    fill: var(--dark-text-color);
}

/*=====================================
  71. Home9 Service Section CSS
========================================*/
.home9-service-section {
    position: relative;
    z-index: 1;
}

.home9-service-section .service-wrapper .single-service {
    padding: 55px 0;
    border-bottom: 1px solid var(--borders-color);
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service {
        padding: 40px 0 35px;
    }
}

.home9-service-section .service-wrapper .single-service:first-child {
    border-top: 1px solid var(--borders-color);
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap {
    display: flex;
    align-items: start;
    gap: 170px;
}

@media (max-width: 1199px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap {
        gap: 140px;
    }
}

@media (max-width: 991px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap {
        gap: 70px;
    }
}

@media (max-width: 767px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap {
        gap: 20px;
        flex-direction: column;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .icon {
    margin-top: 8px;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .icon svg {
    fill: var(--title-color);
    transition: 0.5s;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    width: 100%;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 {
    margin-bottom: 0;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    letter-spacing: 0.03em;
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 45px;
    }
}

@media (max-width: 1399px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
        font-size: 32px;
        line-height: 45px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content {
    max-width: 520px;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1199px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content {
        min-height: 100px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list {
        gap: 10px;
        row-gap: 15px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li {
    display: flex;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    transition: 0.5s;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: #F0F0F0;
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a {
        font-size: 15px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content p {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn {
        min-width: 45px;
        max-width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i {
    color: var(--title-color);
    font-size: 23px;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i {
        font-size: 21px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i {
        font-size: 16px;
    }
}

.home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i::before {
    font-weight: 600 !important;
}

.home9-service-section .service-wrapper .single-service .video-area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.home9-service-section .service-wrapper .single-service .video-area video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home9-service-section .service-wrapper .single-service .video-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.home9-service-section .service-wrapper .single-service:hover .video-area {
    opacity: 1;
    visibility: visible;
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .icon svg {
    fill: var(--primary-color1);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area h2 a {
    color: var(--primary-color1);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a {
    color: var(--white-color);
    background-color: rgba(var(--white-color-opc), 0.2);
    -webkit-backdrop-filter: blur(154px);
    backdrop-filter: blur(154px);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content p {
    color: var(--white-color);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn {
    border: 1px solid transparent;
    background-color: rgba(var(--white-color-opc), 0.2);
    -webkit-backdrop-filter: blur(154px);
    backdrop-filter: blur(154px);
}

.home9-service-section .service-wrapper .single-service:hover .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i {
    color: var(--white-color);
}

.home9-service-section .service-wrapper .single-service.active .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.home9-service-section .service-wrapper .single-service.active .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content p {
    opacity: 1;
    visibility: visible;
}

.home9-service-section .service-wrapper .single-service.active .service-icon-and-content-wrap .service-content-and-btn-wrap .service-btn i::before {
    content: "\f63b";
}

.home9-service-section .vector1 {
    position: absolute;
    top: 13%;
    left: 20%;
    z-index: -1;
}

@media (max-width: 1699px) {
    .home9-service-section .vector1 {
        width: 150px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-service-section .vector1 {
        top: 14%;
        left: 14%;
    }
}

@media (max-width: 1399px) {
    .home9-service-section .vector1 {
        left: 12%;
        width: 130px;
    }
}

@media (max-width: 1199px) {
    .home9-service-section .vector1 {
        top: 15%;
        left: 8%;
        width: 120px;
    }
}

@media (max-width: 991px) {
    .home9-service-section .vector1 {
        top: 14%;
    }
}

@media (max-width: 767px) {
    .home9-service-section .vector1 {
        top: 14%;
        left: 5%;
        width: 90px;
    }
}

@media (max-width: 576px) {
    .home9-service-section .vector1 {
        top: 13%;
        left: 2%;
    }
}

/*=====================================
  72. Home9 Testimonial Section CSS
========================================*/
.home9-testimonial-section {
    position: relative;
    z-index: 1;
}

.home9-testimonial-section .section-title h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-testimonial-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .home9-testimonial-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .home9-testimonial-section .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .home9-testimonial-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .home9-testimonial-section .section-title h2 {
        font-size: 42px;
    }
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card {
    background-color: var(--black-color);
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card .testimonial-content > span {
    color: var(--white-color);
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card p {
    color: var(--dark-text-color);
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card p span {
    color: var(--white-color);
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card .author-area .author-content h3, .home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card .author-area .author-content h5 {
    color: var(--white-color);
}

.home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card .author-area .author-content span {
    color: var(--dark-text-color);
}

.home9-testimonial-section .rating-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .home9-testimonial-section .rating-list {
        order: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .home9-testimonial-section .rating-list {
        gap: 18px;
    }
}

.home9-testimonial-section .rating-list li .single-rating {
    padding: 11px 22px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.home9-testimonial-section .rating-list li .single-rating .review span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}

.home9-testimonial-section .rating-list li .single-rating .review svg {
    fill: var(--title-color);
}

.home9-testimonial-section .rating-list li .single-rating .review svg path:first-child {
    fill: #E62415;
}

.home9-testimonial-section .rating-list li .single-rating .rating .star {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 2px;
}

.home9-testimonial-section .rating-list li .single-rating .rating .star li i {
    color: #E62415;
    font-size: 12px;
}

.home9-testimonial-section .rating-list li .single-rating .rating span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.home9-testimonial-section .rating-list li .single-rating .rating span strong {
    font-weight: 600;
    font-size: 14px;
    color: var(--title-color);
}

.home9-testimonial-section .rating-list li .single-rating.two {
    gap: 10px;
}

.home9-testimonial-section .rating-list li .single-rating.two .rating .star li i {
    color: #E4C40C;
}

.home9-testimonial-section .vector1 {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-testimonial-section .vector1 {
        top: 25%;
        width: 100px;
    }
}

@media (max-width: 1399px) {
    .home9-testimonial-section .vector1 {
        top: 25%;
        width: 80px;
    }
}

@media (max-width: 1199px) {
    .home9-testimonial-section .vector1 {
        display: none;
    }
}

.home9-testimonial-section .vector2 {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: -1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home9-testimonial-section .vector2 {
        top: 47%;
        right: 30px;
        width: 40px;
    }
}

@media (max-width: 1399px) {
    .home9-testimonial-section .vector2 {
        top: 47%;
        right: 30px;
        width: 40px;
    }
}

@media (max-width: 1199px) {
    .home9-testimonial-section .vector2 {
        display: none;
    }
}

/*=====================================
  73. Breadcrumb Section CSS
========================================*/
.breadcrumb-section .breadcrumb-content {
    text-align: center;
    padding: 190px 0 0;
}

@media (max-width: 1399px) {
    .breadcrumb-section .breadcrumb-content {
        padding: 180px 0 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-content {
        padding: 170px 0 0;
    }
}

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

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-content {
        padding: 140px 0 0;
    }
}

.breadcrumb-section .breadcrumb-content h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 85px;
    line-height: 100px;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 75px;
    }
}

@media (max-width: 1399px) {
    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 55px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 36px;
    }
}

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

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-content h1 {
        font-size: 48px;
    }
}

.breadcrumb-section .breadcrumb-content .breadcrumb-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 11px 22px;
    border-radius: 50px;
    border: 1px solid var(--borders-color);
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list {
        padding: 9px 18px;
    }
}

.breadcrumb-section .breadcrumb-content .breadcrumb-list li {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list li {
        font-size: 20px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list li {
        font-size: 20px;
        gap: 10px;
    }
}

.breadcrumb-section .breadcrumb-content .breadcrumb-list li svg {
    fill: var(--dark-title-color);
    min-width: 25px;
}

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-content .breadcrumb-list li svg {
        min-width: 20px;
    }
}

.breadcrumb-section .breadcrumb-content .breadcrumb-list li a {
    color: var(--title-color);
    transition: 0.5s;
    font-family: var(--font-spaceGrotesk);
    font-size: 20px;
}

.breadcrumb-section .breadcrumb-content .breadcrumb-list li a:hover {
    color: var(--text-color);
}

.breadcrumb-section .breadcrumb-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background-color: #F0F0F0;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .breadcrumb-section .breadcrumb-content span {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-content span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-content span {
        font-size: 15px;
        padding: 6px 16px;
    }
}

.breadcrumb-section .breadcrumb-image-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .breadcrumb-section .breadcrumb-image-section {
        min-height: 400px;
    }
}

.breadcrumb-section .breadcrumb-image-section .breadcrumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.breadcrumb-section .breadcrumb-image-section .breadcrumb-img img {
    /*height: 100%;*/
    -o-object-fit: cover;
    object-fit: cover;

    display: block;
    width: 100%;
}

.breadcrumb-section.two .breadcrumb-content h1 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
}

@media (max-width: 1399px) {
    .breadcrumb-section.two .breadcrumb-content h1 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-section.two .breadcrumb-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .breadcrumb-section.two .breadcrumb-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section.two .breadcrumb-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section.two .breadcrumb-content h1 {
        font-size: 34px;
    }
}

/*=====================================
  74. Blog Grid Page CSS
========================================*/
.gy-70 {
    --bs-gutter-y: 70px;
}

@media (max-width: 576px) {
    .gy-70 {
        --bs-gutter-y: 50px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-grid-page .blog-card2 .blog-content h3 {
        line-height: 1.3;
    }
}

@media (max-width: 1399px) {
    .blog-grid-page .blog-card2 .blog-content h3 {
        line-height: 1.3;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .blog-grid-page .blog-card2 .blog-content h3 a {
        font-size: 23px;
    }
}

@media (max-width: 1399px) {
    .blog-grid-page .blog-card2 .blog-content h3 a {
        font-size: 23px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-grid-page .blog-card2 .blog-content h3 a {
        font-size: 22px;
    }
}

.inner-pagination-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .inner-pagination-area {
        gap: 10px;
    }
}

.inner-pagination-area .paginations {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .inner-pagination-area .paginations {
        gap: 12px;
    }
}

.inner-pagination-area .paginations .page-item a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .inner-pagination-area .paginations .page-item a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.inner-pagination-area .paginations .page-item a:hover {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.inner-pagination-area .paginations .page-item.active a {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.inner-pagination-area .paginations-button a {
    min-width: 88px;
    max-width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    transition: 0.7s;
}

@media (max-width: 576px) {
    .inner-pagination-area .paginations-button a {
        min-width: 60px;
        max-width: 60px;
        height: 60px;
        font-size: 14px;
    }
}

.inner-pagination-area .paginations-button a svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.inner-pagination-area .paginations-button a:hover {
    color: var(--dark-white-color);
    box-shadow: inset 0 0 0 10em var(--black-color);
}

.inner-pagination-area .paginations-button a:hover svg {
    stroke: var(--dark-white-color);
}

/*=====================================
  75. Blog Standard Page CSS
========================================*/
.blog-standard-page .blog-card2 {
    border: unset;
}

@media (max-width: 576px) {
    .blog-standard-page .blog-card2 .blog-img img {
        min-height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.blog-standard-page .blog-card2 .blog-content {
    text-align: center;
    padding: 45px 15px 0;
}

@media (max-width: 991px) {
    .blog-standard-page .blog-card2 .blog-content {
        padding: 40px 10px 0;
    }
}

@media (max-width: 576px) {
    .blog-standard-page .blog-card2 .blog-content {
        padding: 35px 10px 0;
    }
}

.blog-standard-page .blog-card2 .blog-content .blog-meta {
    justify-content: center;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .blog-standard-page .blog-card2 .blog-content .blog-meta {
        margin-bottom: 20px;
    }
}

.blog-standard-page .blog-card2 .blog-content h3 a {
    font-size: 35px;
}

@media (max-width: 1199px) {
    .blog-standard-page .blog-card2 .blog-content h3 a {
        font-size: 31px;
    }
}

@media (max-width: 767px) {
    .blog-standard-page .blog-card2 .blog-content h3 a {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .blog-standard-page .blog-card2 .blog-content h3 a {
        font-size: 25px;
    }
}

.blog-standard-page .blog-card2 .blog-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .blog-standard-page .blog-card2 .blog-content p {
        padding-top: 15px;
    }
}

@media (max-width: 576px) {
    .blog-standard-page .blog-card2 .blog-content p {
        font-size: 16px;
        padding-top: 10px;
    }
}

/*=====================================
  76. Pricing Plan Page CSS
========================================*/
.pricing-plan-page {
    border-bottom: 1px solid var(--borders-color);
}

.pricing-plan-page .pricing-plan-tab-area .nav-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 40px;
    background-color: #F0F0F0;
    border-radius: 100px;
    max-width: 352px;
    width: 100%;
    margin: 0 auto 70px;
}

@media (max-width: 991px) {
    .pricing-plan-page .pricing-plan-tab-area .nav-area {
        margin: 0 auto 60px;
    }
}

@media (max-width: 767px) {
    .pricing-plan-page .pricing-plan-tab-area .nav-area {
        margin: 0 auto 40px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .nav-area {
        gap: 12px;
        padding: 25px 20px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav {
    display: flex;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav .nav-tabs {
    border-bottom: none;
    background: var(--black-color);
    border: 1px solid var(--black-color);
    border-radius: 15px;
    padding: 1px 2px 2px;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav .nav-tabs .nav-link {
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav .nav-tabs .nav-link:hover {
    border: none;
    box-shadow: none;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav .nav-tabs .nav-link:focus {
    border: none;
    box-shadow: none;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area nav .nav-tabs .nav-link.active {
    color: var(--dark-white-color);
    background: var(--dark-white-color);
    border: none;
}

.pricing-plan-page .pricing-plan-tab-area .nav-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card {
    background-color: #CFF0DB;
    padding: 45px 40px 50px;
    position: relative;
}

@media (max-width: 1399px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card {
        padding: 45px 35px 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card {
        padding: 40px 20px 45px;
    }
}

@media (max-width: 991px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card {
        padding: 40px 30px 45px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card {
        padding: 35px 20px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top {
    margin-bottom: 65px;
}

@media (max-width: 1199px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top {
        margin-bottom: 55px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top {
        margin-bottom: 50px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top .title-area {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top .title-area {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top .title-area {
        margin-bottom: 15px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top .title-area h2 {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top .title-area h2 {
        font-size: 26px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top strong {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 45px;
    line-height: 1.1;
    display: block;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top strong {
        font-size: 40px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top strong {
        font-size: 40px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top strong sub {
    color: var(--global-text-color);
    font-size: 16px;
    font-weight: 400;
    bottom: 0;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top p {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .pricing-plan-top p span {
    color: var(--dark-title-color);
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .primary-btn1 {
    width: 100%;
    justify-content: center;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .primary-btn1.white-bg::after {
    background-color: var(--dark-black-color);
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .primary-btn1.white-bg:hover {
    color: var(--white-color);
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area {
    padding-top: 45px;
}

@media (max-width: 991px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area {
        padding-top: 35px;
    }
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area {
        padding-top: 30px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area h3 {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area h3 {
        margin-bottom: 20px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area ul li {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 23px;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area ul li svg {
    fill: var(--global-text-color);
}

@media (max-width: 576px) {
    .pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area ul li {
        margin-bottom: 15px;
        font-size: 14px;
    }
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card .included-feature-area ul li:last-child {
    margin-bottom: 0;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card.premium {
    background-color: #DDE6FF;
}

.pricing-plan-page .pricing-plan-tab-area .pricing-plan-card.enterprise {
    background-color: #FFEAAC;
}

/*=====================================
  77. Faq Page CSS
========================================*/
.faq-section .faq-wrap .accordion .accordion-item {
    border-radius: 10px;
    border: none;
    margin-bottom: 25px;
    background-color: #F0F0F0;
}

.faq-section .faq-wrap .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header {
    border-radius: 10px;
    background-color: transparent;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    padding: 25px 30px 18px;
    border-radius: 10px;
    background-color: transparent;
    border-color: transparent;
}

@media (max-width: 767px) {
    .faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
        padding: 18px 20px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
        padding: 20px 10px 15px 15px;
        font-size: 16px;
        line-height: 1.5;
    }
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    content: "\f229";
    font-family: bootstrap-icons;
    background-image: none;
    font-weight: 600;
    font-size: 12px;
    right: 30px;
    transition: 0.5s;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    font-family: bootstrap-icons !important;
    content: "\f229";
    border: none;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button:focus {
    border-radius: 10px;
    box-shadow: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-body {
    padding: 0px 30px 25px 30px;
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: var(--text-color);
    border: 1px solid var(--borders-color);
    border-top: none;
    background-color: var(--white-color);
    border-radius: 0 0 10px 10px;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-body a {
    color: #3F59DD;
    transition: 0.5s;
}

.faq-section .faq-wrap .accordion .accordion-item .accordion-body a:hover {
    color: var(--title-color);
}

@media (max-width: 767px) {
    .faq-section .faq-wrap .accordion .accordion-item .accordion-body {
        padding: 0px 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-section .faq-wrap .accordion .accordion-item .accordion-body {
        padding: 0px 15px 20px 15px;
        font-size: 15px;
        line-height: 1.6;
    }
}

/*=====================================
  78. Career Page CSS
========================================*/
.career-feature-section .title-area .content {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .career-feature-section .title-area .content {
        margin-top: 0;
    }
}

.career-feature-section .title-area .content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .career-feature-section .title-area .content p {
        font-size: 17px;
    }
}

.career-feature-section .title-area .content .button-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-feature-section .title-area .content .button-area {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .career-feature-section .title-area .content .button-area {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .career-feature-section .title-area .content .button-area {
        flex-wrap: wrap;
    }
}

.career-feature-section .title-area .content .button-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

.career-feature-section .title-area .content .button-area .position-btn {
    color: #3F59DD;
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s;
    cursor: pointer;
}

.career-feature-section .title-area .content .button-area .position-btn svg {
    fill: #3F59DD;
    transition: 0.5s;
}

.career-feature-section .title-area .content .button-area .position-btn:hover {
    transform: translateX(10px);
}

.career-feature-section .single-feature {
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #FFEAAC;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .career-feature-section .single-feature {
        padding: 35px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-feature-section .single-feature {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .career-feature-section .single-feature {
        padding: 30px 20px;
    }
}

.career-feature-section .single-feature .icon {
    margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-feature-section .single-feature .icon {
        margin-bottom: 20px;
    }
}

.career-feature-section .single-feature .icon svg {
    fill: var(--dark-title-color);
}

@media (max-width: 1199px) {
    .career-feature-section .single-feature .icon svg {
        width: 50px;
    }
}

.career-feature-section .single-feature h3 {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-feature-section .single-feature h3 {
        margin-bottom: 10px;
        font-size: 21px;
    }
}

.career-feature-section .single-feature p {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .career-feature-section .single-feature p {
        font-size: 15px;
    }
}

.career-feature-section .single-feature:hover .icon svg {
    animation: bounceIn 1.2s linear;
}

.career-feature-section .single-feature.two {
    background-color: #DDD9D6;
}

.career-feature-section .single-feature.three {
    background-color: #D4DFFC;
}

.career-feature-section .single-feature.four {
    background-color: #C1E8CF;
}

.career-page-thumb-section {
    position: relative;
    min-height: 780px;
    overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .career-page-thumb-section {
        min-height: 750px;
    }
}

@media (max-width: 1399px) {
    .career-page-thumb-section {
        min-height: 720px;
    }
}

@media (max-width: 1199px) {
    .career-page-thumb-section {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    .career-page-thumb-section {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    .career-page-thumb-section {
        min-height: 450px;
    }
}

.career-page-thumb-section .career-page-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.career-page-thumb-section .career-page-thumb-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.career-page-benefit-section .single-benefit {
    padding: 27px 30px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
    min-height: 118px;
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .career-page-benefit-section .single-benefit {
        padding: 27px 20px;
        min-height: 115px;
    }
}

@media (max-width: 991px) {
    .career-page-benefit-section .single-benefit {
        padding: 25px 20px;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .career-page-benefit-section .single-benefit {
        padding: 20px 20px;
        min-height: 100px;
    }
}

.career-page-benefit-section .single-benefit h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
    display: flex;
    gap: 8px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .career-page-benefit-section .single-benefit h3 {
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-page-benefit-section .single-benefit h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .career-page-benefit-section .single-benefit h3 {
        font-size: 16px;
    }
}

.career-page-benefit-section .single-benefit.two {
    background-color: #FFEAAC;
    border-color: #FFEAAC;
}

.career-page-benefit-section .single-benefit.two h3 {
    color: var(--dark-title-color);
}

.career-page-benefit-section .single-benefit.three {
    background-color: #DDE6FF;
    border-color: #DDE6FF;
}

.career-page-benefit-section .single-benefit.three h3 {
    color: var(--dark-title-color);
}

.career-page-benefit-section .single-benefit.four {
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

.career-page-benefit-section .single-benefit.four h3 {
    color: var(--dark-title-color);
}

.career-page-benefit-section .single-benefit.five {
    background-color: #CFF0DB;
    border-color: #CFF0DB;
}

.career-page-benefit-section .single-benefit.five h3 {
    color: var(--dark-title-color);
}

.career-page-benefit-section .single-benefit.six {
    background-color: #FAEEDC;
    border-color: #FAEEDC;
}

.career-page-benefit-section .single-benefit.six h3 {
    color: var(--dark-title-color);
}

.career-page-position-section .single-position {
    padding: 40px 35px 45px;
    background-color: #F0F0F0;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .career-page-position-section .single-position {
        padding: 40px 25px 45px;
    }
}

@media (max-width: 1199px) {
    .career-page-position-section .single-position {
        padding: 35px 20px 40px;
    }
}

.career-page-position-section .single-position .title-area {
    margin-bottom: 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-page-position-section .single-position .title-area {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .career-page-position-section .single-position .title-area {
        margin-bottom: 35px;
    }
}

.career-page-position-section .single-position .title-area h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
}

@media (max-width: 1199px) {
    .career-page-position-section .single-position .title-area h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .career-page-position-section .single-position .title-area h3 {
        font-size: 23px;
        margin-bottom: 15px;
    }
}

.career-page-position-section .single-position .title-area .batch {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.career-page-position-section .single-position .title-area .batch li {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    padding: 6px 16px;
    border-radius: 100px;
    background-color: #D4DFFC;
}

.career-page-position-section .single-position .title-area .batch li:nth-child(2) {
    background-color: #F4DE9B;
}

.career-page-position-section .single-position .info-area {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-bottom: 70px;
}

@media (max-width: 1199px) {
    .career-page-position-section .single-position .info-area {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .career-page-position-section .single-position .info-area {
        padding-bottom: 40px;
    }
}

.career-page-position-section .single-position .info-area li {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.career-page-position-section .single-position .info-area li:last-child {
    margin-bottom: 0;
}

.career-page-position-section .single-position .info-area li svg {
    fill: var(--text-color);
}

.career-page-position-section .single-position .info-area li .content {
    display: flex;
    align-items: start;
    gap: 15px;
}

.career-page-position-section .single-position .info-area li .content strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-page-position-section .single-position .info-area li .content strong {
        font-size: 16px;
    }
}

.career-page-position-section .single-position .info-area li .content strong.title {
    max-width: 98px;
    min-width: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.career-page-position-section .single-position .info-area li .content strong .text-grey {
    color: var(--text-color);
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.career-page-position-section .single-position .primary-btn1 {
    padding: 17px 22px;
}

.career-page-position-section .single-position .primary-btn1::after {
    background-color: var(--dark-black-color);
}

.career-page-position-section .single-position .primary-btn1:hover {
    color: var(--white-color);
}

.career-page-position-section .single-position .primary-btn1.transparent:hover {
    border-color: transparent;
}

.career-page-position-section .single-position.transparent {
    background-color: transparent;
    border: 1px solid var(--borders-color);
}

.career-page-position-section .prefer-role-area {
    padding: 62px 70px;
    background-color: #CFF0DB;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .career-page-position-section .prefer-role-area {
        padding: 62px 50px;
    }
}

@media (max-width: 991px) {
    .career-page-position-section .prefer-role-area {
        padding: 55px 40px;
    }
}

@media (max-width: 767px) {
    .career-page-position-section .prefer-role-area {
        padding: 50px 30px;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .career-page-position-section .prefer-role-area {
        padding: 40px 20px;
    }
}

.career-page-position-section .prefer-role-area .content {
    max-width: 560px;
    width: 100%;
}

.career-page-position-section .prefer-role-area .content h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .career-page-position-section .prefer-role-area .content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.career-page-position-section .prefer-role-area .content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .career-page-position-section .prefer-role-area .content p {
        font-size: 17px;
    }
}

.career-page-position-section .prefer-role-area .primary-btn1 {
    padding: 17px 22px;
}

/*=====================================
  79. Career Details Page CSS
========================================*/
.career-details-page .career-details-content .line-break {
    height: 20px;
    display: block;
}

@media (max-width: 991px) {
    .career-details-page .career-details-content .line-break {
        height: 15px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content .line-break {
        height: 10px;
    }
}

.career-details-page .career-details-content h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .career-details-page .career-details-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .career-details-page .career-details-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content h2 {
        font-size: 28px;
    }
}

.career-details-page .career-details-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .career-details-page .career-details-content p {
        font-size: 17px;
    }
}

.career-details-page .career-details-content p a {
    color: #5956E9;
    transition: 0.5s;
}

.career-details-page .career-details-content p a:hover {
    color: var(--title-color);
}

.career-details-page .career-details-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.career-details-page .career-details-content ul li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.career-details-page .career-details-content ul li svg {
    fill: var(--black-color);
    min-width: 18px;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .career-details-page .career-details-content ul li {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content ul li {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

.career-details-page .career-details-content ul li:last-child {
    margin-bottom: 0;
}

.career-details-page .career-details-content ul li span {
    color: var(--title-color);
}

.career-details-page .career-details-content .job-apply-area {
    padding: 0 35px 0 20px;
    margin-top: 90px;
    background-color: #C1E8CF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .career-details-page .career-details-content .job-apply-area {
        padding: 0 25px 0 15px;
    }
}

@media (max-width: 767px) {
    .career-details-page .career-details-content .job-apply-area {
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content .job-apply-area {
        padding: 25px 20px;
        border-radius: 10px;
        margin-top: 50px;
    }
}

.career-details-page .career-details-content .job-apply-area .vector-area {
    position: relative;
}

@media (max-width: 576px) {
    .career-details-page .career-details-content .job-apply-area .vector-area {
        display: none;
    }
}

.career-details-page .career-details-content .job-apply-area .vector-area .circle {
    min-height: 116px;
}

@media (max-width: 767px) {
    .career-details-page .career-details-content .job-apply-area .vector-area .circle {
        min-height: 100px;
    }
}

.career-details-page .career-details-content .job-apply-area .vector-area .vector {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.career-details-page .career-details-content .job-apply-area .contact-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.career-details-page .career-details-content .job-apply-area .contact-area .contact span {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .career-details-page .career-details-content .job-apply-area .contact-area .contact span {
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content .job-apply-area .contact-area .contact span {
        font-size: 14px;
        margin-bottom: 3px;
    }
}

.career-details-page .career-details-content .job-apply-area .contact-area .contact a {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    background: linear-gradient(to bottom, var(--dark-title-color) 0%, var(--dark-title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

.career-details-page .career-details-content .job-apply-area .contact-area .contact a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

@media (max-width: 767px) {
    .career-details-page .career-details-content .job-apply-area .contact-area .contact a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-content .job-apply-area .contact-area .contact a {
        font-size: 19px;
    }
}

.career-details-page .career-details-sidebar {
    padding: 40px 35px;
    border-radius: 10px;
    background-color: #F0F0F0;
}

@media (max-width: 1399px) {
    .career-details-page .career-details-sidebar {
        padding: 40px 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-details-page .career-details-sidebar {
        padding: 35px 20px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-sidebar {
        padding: 35px 20px;
    }
}

.career-details-page .career-details-sidebar h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-details-page .career-details-sidebar h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-sidebar h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

.career-details-page .career-details-sidebar .primary-btn1 {
    width: 100%;
    margin-bottom: 20px;
}

.career-details-page .career-details-sidebar p {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-details-page .career-details-sidebar p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-sidebar p {
        margin-bottom: 20px;
    }
}

.career-details-page .career-details-sidebar .form-inner2 > label {
    font-family: var(--font-kanit);
}

.career-details-page .career-details-sidebar .form-inner2 .form-check .form-check-input {
    border: 1px solid var(--black-color);
    background-color: var(--dark-white-color);
    margin-top: 6px;
}

.career-details-page .career-details-sidebar .form-inner2 .form-check .form-check-input:checked {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.career-details-page .career-details-sidebar .form-inner2 .form-check .form-check-label {
    line-height: 1.6;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .career-details-page .career-details-sidebar .form-inner2 .form-check .form-check-label {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .career-details-page .career-details-sidebar .form-inner2 .form-check .form-check-label {
        font-size: 15px;
    }
}

.job-form-modal .modal-dialog {
    max-width: 872px;
    width: 100%;
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog {
        width: auto;
    }
}

.job-form-modal .modal-dialog .modal-content {
    margin-top: 50px;
    border: none;
    position: relative;
    border-radius: 20px;
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content {
        border-radius: 10px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-header {
    padding: 35px 20px;
    border-bottom: 1px solid var(--borders-color);
    background-color: #5956E9;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-header {
        border-radius: 10px 10px 0 0;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-header .modal-title {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 28px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F9F8;
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

.job-form-modal .modal-dialog .modal-content .modal-close i {
    color: #FF2E00;
    font-size: 14px;
    transition: 0.5s;
}

.job-form-modal .modal-dialog .modal-content .modal-close i::before {
    font-weight: 700 !important;
}

.job-form-modal .modal-dialog .modal-content .modal-close:hover {
    background-color: #FF2E00;
}

.job-form-modal .modal-dialog .modal-content .modal-close:hover i {
    color: var(--white-color);
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog .modal-content .modal-close {
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-body {
    padding: 45px 110px 50px;
}

@media (max-width: 1199px) {
    .job-form-modal .modal-dialog .modal-content .modal-body {
        padding: 45px 90px 50px;
    }
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog .modal-content .modal-body {
        padding: 40px 60px 45px;
    }
}

@media (max-width: 767px) {
    .job-form-modal .modal-dialog .modal-content .modal-body {
        padding: 40px 40px 45px;
    }
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-body {
        padding: 35px 25px 40px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-body .mb-30 {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog .modal-content .modal-body .mb-30 {
        margin-bottom: 20px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .info-title {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .job-form-modal .modal-dialog .modal-content .modal-body .single-info .info-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-body .single-info .info-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner label {
    font-family: var(--font-archivo);
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner textarea {
    min-height: 172px;
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area {
    display: flex;
    align-items: center;
    border: 1px solid var(--borders-color);
    background-color: var(--dark-white-color);
    border-radius: 5px;
    position: relative;
    padding: 2px 20px 2px 25px;
}

@media (max-width: 576px) {
    .job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area {
        padding: 2px 15px;
    }
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area .icon {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area .custom-upload {
    border: unset;
    border-radius: unset;
    width: 100%;
    height: 50px;
    line-height: 30px;
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area .custom-upload::-webkit-file-upload-button {
    display: none;
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area .check-icon {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #5956E9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-form-modal .modal-dialog .modal-content .modal-body .single-info .form-inner .file-upload-area .check-icon i {
    color: var(--white-color);
    margin-top: 1px;
}

.job-form-modal .modal-dialog .modal-content .modal-body .primary-btn3 {
    background-color: var(--primary-color3);
    color: var(--white-color);
    padding: 20px 35px;
}

.job-form-modal .modal-dialog .modal-content .modal-body .primary-btn3 svg {
    stroke: var(--white-color);
}

.job-form-modal .modal-dialog .modal-content .modal-body .primary-btn3 span {
    background-color: var(--black-color);
}

.job-form-modal .modal-dialog .modal-content .modal-body .primary-btn3:hover {
    color: var(--dark-white-color);
}

.job-form-modal .modal-dialog .modal-content .modal-body .primary-btn3:hover svg {
    stroke: var(--dark-white-color);
}

/*=====================================
  80. Blog Details Page CSS
========================================*/
.blog-details-page {
    padding-top: 210px;
}

@media (max-width: 1199px) {
    .blog-details-page {
        padding-top: 180px;
    }
}

@media (max-width: 991px) {
    .blog-details-page {
        padding-top: 160px;
    }
}

.blog-details-page .line-break {
    height: 10px;
    display: block;
}

.blog-details-page .blog-title-and-info-area .title-area {
    text-align: center;
}

.blog-details-page .blog-title-and-info-area .title-area .blog-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .blog-details-page .blog-title-and-info-area .title-area .blog-meta {
        margin-bottom: 20px;
    }
}

.blog-details-page .blog-title-and-info-area .title-area .blog-meta li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    position: relative;
    padding-left: 16px;
}

@media (max-width: 576px) {
    .blog-details-page .blog-title-and-info-area .title-area .blog-meta li {
        font-size: 15px;
    }
}

.blog-details-page .blog-title-and-info-area .title-area .blog-meta li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.blog-details-page .blog-title-and-info-area .title-area .blog-meta li:first-child {
    padding-left: 0;
}

.blog-details-page .blog-title-and-info-area .title-area .blog-meta li:first-child::before {
    display: none;
    visibility: hidden;
}

.blog-details-page .blog-title-and-info-area .info-area {
    padding: 15px 30px;
    border: 1px solid var(--borders-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .blog-details-page .blog-title-and-info-area .info-area {
        padding: 15px 30px;
        flex-wrap: wrap;
        row-gap: 25px;
    }
}

@media (max-width: 576px) {
    .blog-details-page .blog-title-and-info-area .info-area {
        padding: 15px 20px;
    }
}

.blog-details-page .blog-title-and-info-area .info-area .author-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-page .blog-title-and-info-area .info-area .author-area .author-img img {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
}

.blog-details-page .blog-title-and-info-area .info-area .author-area .author-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    display: block;
    margin-bottom: 7px;
}

.blog-details-page .blog-title-and-info-area .info-area .author-area .author-content strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    display: block;
}

.blog-details-page .blog-title-and-info-area .info-area .single-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-page .blog-title-and-info-area .info-area .single-info svg {
    fill: var(--text-color);
}

.blog-details-page .blog-title-and-info-area .info-area .single-info .content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    display: block;
    margin-bottom: 7px;
}

.blog-details-page .blog-title-and-info-area .info-area .single-info .content strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    display: block;
}

.blog-details-page .blog-thumb-img img {
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details-page .blog-content-area .blog-image img {
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details-page .blog-content-area .blog-image span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 300;
    font-size: 16px;
    font-style: italic;
    line-height: 26px;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.blog-details-page .blog-content-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-page .blog-content-area ul li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    position: relative;
    padding-left: 16px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .blog-details-page .blog-content-area ul li {
        font-size: 16px;
    }
}

.blog-details-page .blog-content-area ul li span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
}

.blog-details-page .blog-content-area ul li:last-child {
    margin-bottom: 0;
}

.blog-details-page .blog-content-area ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--black-color);
}

.blog-details-page .blog-content-area h3 {
    font-size: 22px;
}

.blog-details-page .blog-content-area .key-points h4 {
    font-size: 16px;
    font-weight: 500;
}

.blog-details-page .tag-and-social-area {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-details-page .tag-and-social-area .tag-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-details-page .tag-and-social-area .tag-list li {
    display: flex;
}

.blog-details-page .tag-and-social-area .tag-list li a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 5px 11px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    transition: 0.5s;
}

.blog-details-page .tag-and-social-area .tag-list li a:hover {
    color: var(--dark-white-color);
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.blog-details-page .tag-and-social-area .social-list {
    padding-top: 0;
}

.blog-details-page .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.blog-details-page .social-list li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    transition: 0.5s;
}

.blog-details-page .social-list li a i {
    font-size: 15px;
    line-height: 1;
    transition: 0.5s;
}

.blog-details-page .social-list li a i.bi-twitter-x {
    font-size: 13px;
}

.blog-details-page .social-list li a svg {
    fill: var(--black-color);
    transition: 0.5s;
}

.blog-details-page .social-list li a:hover {
    color: var(--dark-white-color);
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.blog-details-page .social-list li a:hover svg {
    fill: var(--dark-white-color);
}

.blog-details-page .social-list li .copy-link-btn {
    position: relative;
}

.blog-details-page .social-list li .copy-link-btn .copy-alert {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color1);
    padding: 6px 18px;
    border-radius: 6px;
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
}

@media (max-width: 576px) {
    .blog-details-page .social-list li .copy-link-btn .copy-alert {
        font-size: 14px;
    }
}

.blog-details-page .social-list li .copy-link-btn .copy-alert.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.blog-details-page .details-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 576px) {
    .blog-details-page .details-navigation {
        flex-wrap: wrap;
        gap: 10px;
        row-gap: 25px;
    }
}

.blog-details-page .details-navigation .single-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .blog-details-page .details-navigation .single-navigation {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .blog-details-page .details-navigation .single-navigation {
        gap: 10px;
    }
}

.blog-details-page .details-navigation .single-navigation .arrow {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: 0.7s;
}

@media (max-width: 576px) {
    .blog-details-page .details-navigation .single-navigation .arrow {
        min-width: 70px;
        max-width: 70px;
        height: 70px;
        font-size: 14px;
    }
}

.blog-details-page .details-navigation .single-navigation .arrow svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.blog-details-page .details-navigation .single-navigation .arrow:hover {
    color: var(--dark-title-color);
    box-shadow: inset 0 0 0 10em var(--primary-color1);
}

.blog-details-page .details-navigation .single-navigation .arrow:hover svg {
    stroke: var(--dark-title-color);
}

.blog-details-page .details-navigation .single-navigation .content {
    max-width: 175px;
    width: 100%;
}

@media (max-width: 576px) {
    .blog-details-page .details-navigation .single-navigation .content {
        max-width: unset;
    }
}

.blog-details-page .details-navigation .single-navigation .content h5 {
    margin-bottom: 0;
}

.blog-details-page .details-navigation .single-navigation .content h5 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.blog-details-page .details-navigation .single-navigation .content h5 a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

.blog-details-page .blog-details-sidebar .table-content-area {
    padding: 45px 30px;
    background-color: #F0F0F0;
    position: relative;
}

@media (max-width: 576px) {
    .blog-details-page .blog-details-sidebar .table-content-area {
        padding: 45px 20px;
    }
}

.blog-details-page .blog-details-sidebar .table-content-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 12px;
    background-color: var(--black-color);
    border-radius: 0 0 30px 30px;
}

.blog-details-page .blog-details-sidebar .table-content-area h5 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .blog-details-page .blog-details-sidebar .table-content-area h5 {
        margin-bottom: 30px;
    }
}

.blog-details-page .blog-details-sidebar .table-content-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-page .blog-details-sidebar .table-content-area ul li {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    gap: 5px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(var(--black-color-opc), 0.1);
}

.blog-details-page .blog-details-sidebar .table-content-area ul li span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
    cursor: pointer;
}

.blog-details-page .blog-details-sidebar .table-content-area ul li span:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

.blog-details-page .blog-details-sidebar .table-content-area ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/*=====================================
  81. Shop Page CSS
========================================*/
.product-card .product-card-img-wrap {
    position: relative;
}

.product-card .product-card-img-wrap .product-card-img {
    position: relative;
    overflow: hidden;
    display: block;
    transition: all 0.5s ease-out;
}

.product-card .product-card-img-wrap .product-card-img img {
    transition: all 0.5s ease-out;
}

.product-card .product-card-img-wrap .product-card-img::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.product-card .product-card-img-wrap .cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 10px 18px;
    background-color: var(--primary-color1);
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    z-index: 1;
    transition: 0.5s;
}

.product-card .product-card-img-wrap .cart-btn svg {
    fill: var(--dark-title-color);
    transition: 0.5s;
}

.product-card .product-card-img-wrap .cart-btn:hover {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.product-card .product-card-img-wrap .cart-btn:hover svg {
    fill: var(--dark-white-color);
}

.product-card .product-card-content {
    padding-top: 25px;
    text-align: center;
}

@media (max-width: 576px) {
    .product-card .product-card-content {
        padding-top: 15px;
    }
}

.product-card .product-card-content h2, .product-card .product-card-content h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.product-card .product-card-content h2 a, .product-card .product-card-content h4 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

.product-card .product-card-content h2 a:hover, .product-card .product-card-content h4 a:hover {
    background-size: 100% 1.5px;
    background-position: left 100%;
}

.product-card .product-card-content span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    display: block;
    line-height: 1;
}

.product-card .product-card-content span del {
    color: var(--text-color);
    font-size: 14px;
}

.product-card:hover .product-card-img-wrap .product-card-img img {
    transform: scale(1.1);
}

.product-card:hover .product-card-img-wrap .product-card-img::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.product-card:hover .product-card-img-wrap .cart-btn {
    opacity: 1;
    transform: translate(-50%, -20px);
}

/*=====================================
  82. Product Details Page CSS
========================================*/
.product-details-page .product-details-img {
    position: relative;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-img {
        padding-right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-details-page .product-details-img {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-img {
        flex-direction: column;
        gap: 40px;
    }
}

.product-details-page .product-details-img .product-details-tab-img {
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .product-details-page .product-details-img .product-details-tab-img img {
        width: 100%;
    }
}

.product-details-page .product-details-img .nav-pills {
    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1399px) {
    .product-details-page .product-details-img .nav-pills {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-img .nav-pills {
        -moz-columns: unset;
        columns: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding-top: 20px;
    }
}

@media (min-width: 1600px) {
    .product-details-page .product-details-img .nav-pills .nav-item {
        max-width: 160px;
        min-width: 160px;
        max-height: 107px;
    }
}

@media (max-width: 1399px) {
    .product-details-page .product-details-img .nav-pills .nav-item {
        max-width: 140px;
        min-width: 140px;
        max-height: 107px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-img .nav-pills .nav-item {
        max-width: 130px;
        min-width: 130px;
    }
}

.product-details-page .product-details-img .nav-pills .nav-item .nav-link {
    background-color: unset;
    border-radius: unset;
    padding: 0;
    position: relative;
    width: 100%;
}

.product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
        max-width: 160px;
        min-width: 160px;
        max-height: 107px;
    }
}

@media (max-width: 1399px) {
    .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
        max-width: 140px;
        min-width: 140px;
        max-height: 107px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-img .nav-pills .nav-item .nav-link img {
        max-width: 130px;
        min-width: 130px;
    }
}

.product-details-page .product-details-img .nav-pills .nav-item .nav-link::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(26, 26, 26, 0.2);
}

.product-details-page .product-details-img .nav-pills .nav-item .nav-link.active::after {
    display: none;
}

.product-details-page .product-details-content h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .product-details-page .product-details-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .product-details-page .product-details-content h2 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-content h2 {
        font-size: 35px;
    }
}

.product-details-page .product-details-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content p {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .product-details-page .product-details-content p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-content p {
        font-size: 17px;
    }
}

.product-details-page .product-details-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 45px;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content ul {
        margin-bottom: 40px;
    }
}

.product-details-page .product-details-content ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 22.68px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-details-page .product-details-content ul li svg {
    fill: var(--text-color);
}

.product-details-page .product-details-content ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .product-details-page .product-details-content ul li {
        font-size: 17px;
    }
}

.product-details-page .product-details-content .price-tag {
    line-height: 1;
    margin-bottom: 35px;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content .price-tag {
        margin-bottom: 30px;
    }
}

.product-details-page .product-details-content .price-tag h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content .price-tag h3 {
        font-size: 20px;
    }
}

.product-details-page .product-details-content .price-tag h3 del {
    color: var(--text-color);
    font-weight: 500;
}

.product-details-page .product-details-content .product-quantity {
    margin-bottom: 50px;
    gap: 24px;
}

@media (max-width: 1199px) {
    .product-details-page .product-details-content .product-quantity {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .product-details-page .product-details-content .product-quantity {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-details-content .product-quantity {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.product-details-page .product-details-content .product-quantity .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-details-page .product-details-content .product-quantity .quantity .quantity__minus, .product-details-page .product-details-content .product-quantity .quantity .quantity__plus {
    height: 40px;
    width: 40px;
    border: 1px solid var(--borders-color);
    border-radius: 5px;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s;
}

.product-details-page .product-details-content .product-quantity .quantity .quantity__minus span i, .product-details-page .product-details-content .product-quantity .quantity .quantity__plus span i {
    font-size: 22px;
    color: var(--title-color);
    transition: 0.35s;
}

.product-details-page .product-details-content .product-quantity .quantity .quantity__minus:hover, .product-details-page .product-details-content .product-quantity .quantity .quantity__plus:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.product-details-page .product-details-content .product-quantity .quantity .quantity__minus:hover span i, .product-details-page .product-details-content .product-quantity .quantity .quantity__plus:hover span i {
    color: var(--dark-title-color);
}

.product-details-page .product-details-content .product-quantity .quantity .quantity__input {
    height: 40px;
    width: 78px;
    border: 1px solid var(--borders-color);
    background-color: transparent;
    color: var(--title-color);
    text-align: center;
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 600;
}

.product-details-page .product-details-content .product-quantity .primary-btn1 {
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 5px;
}

.product-details-page .product-details-content .product-quantity .primary-btn1.two {
    padding: 13px 23px;
}

.product-details-page .product-details-content .aditional-info {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.product-details-page .product-details-content .aditional-info > li {
    line-height: 1;
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-details-page .product-details-content .aditional-info > li:last-child {
    margin-bottom: 0;
}

.product-details-page .product-details-content .aditional-info > li span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}

.product-details-page .product-details-content .aditional-info > li a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    transition: 0.35s;
    margin-bottom: 0;
}

.product-details-page .product-details-content .aditional-info > li a:hover {
    color: var(--title-color);
}

.product-details-page .product-description-and-review-area .nav2 {
    gap: 20px;
    justify-content: start;
    width: 100%;
    line-height: 1;
    border: 1px solid var(--borders-color);
    border-radius: 30px;
    padding: 14px 20px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .product-details-page .product-description-and-review-area .nav2 {
        padding: 12px 10px;
        gap: 10px;
    }
}

.product-details-page .product-description-and-review-area .nav2 .nav-link {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 15px;
    line-height: 1;
    background-color: transparent;
}

@media (max-width: 576px) {
    .product-details-page .product-description-and-review-area .nav2 .nav-link {
        font-size: 16px;
        padding: 6px 12px;
    }
}

.product-details-page .product-description-and-review-area .nav2 .nav-link.active {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.product-details-page .product-description-and-review-area .tab-content2 .description p {
    margin-bottom: 25px;
}

.product-details-page .product-description-and-review-area .tab-content2 .description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .product-details-page .product-description-and-review-area .tab-content2 .description p {
        font-size: 16px;
    }
}

.product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-description-and-review-area .tab-content2 .comment-and-form-area .comment-area .comment-title {
        font-size: 26px;
    }
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form {
    border: 1px solid var(--borders-color);
    padding: 50px 40px;
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-details-page .product-description-and-review-area .tab-content2 .review-form {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .product-details-page .product-description-and-review-area .tab-content2 .review-form {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .product-details-page .product-description-and-review-area .tab-content2 .review-form {
        padding: 35px 15px;
    }
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .number-of-review {
    line-height: 1;
    margin-bottom: 30px;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .number-of-review h4 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 0;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner input {
    background: #F0F0F0;
    border-color: transparent;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner input:focus {
    border-color: var(--black-color);
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner textarea {
    background: #F0F0F0;
    min-height: 150px;
    border-color: transparent;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner textarea:focus {
    border-color: var(--black-color);
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area {
    margin-bottom: 15px;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area p {
    margin-bottom: 5px;
    color: var(--title-color);
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate {
    float: left;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #ccc;
    padding-right: 8px;
    display: inline-block;
    margin-right: 8px;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label::before {
    content: "\f586";
    font-family: bootstrap-icons !important;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate input:checked ~ label {
    color: #DDA701;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area .rate:not(:checked) > label:hover ~ label {
    color: #DDA701;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked + label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked + label:hover ~ label,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked ~ label:hover,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area input:checked ~ label:hover ~ label,
.product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner2 .review-rate-area label:hover ~ input:checked ~ label {
    color: #DDA701;
}

.product-details-page .product-description-and-review-area .tab-content2 .review-form .primary-btn1 {
    border-radius: 10px;
    padding: 20px 29px;
}

.comment-and-form-area .comment-area .comment {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-and-form-area .comment-area .comment > li {
    margin-bottom: 40px;
}

.comment-and-form-area .comment-area .comment > li > .single-comment-area {
    margin-bottom: 24px;
}

.comment-and-form-area .comment-area .comment > li:last-child {
    margin-bottom: 0;
}

.comment-and-form-area .comment-area .comment .single-comment-area {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .single-comment-area {
        gap: 15px;
        flex-wrap: wrap;
    }
}

.comment-and-form-area .comment-area .comment .single-comment-area .author-img img {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: unset;
    border-radius: 50%;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h3, .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h6 {
    line-height: 1;
    margin-bottom: 0;
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h3, .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg h6 {
        font-size: 16px;
    }
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .author-name-deg span {
        font-size: 14px;
    }
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content p {
    color: var(--text-color);
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content p {
        font-size: 15px;
    }
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    cursor: pointer;
    transition: 0.35s;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn svg {
    transition: 0.35s;
    fill: var(--title-color);
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn:hover {
    color: var(--title-color);
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .replay-btn:hover svg {
    fill: var(--title-color);
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 25px;
    max-width: 590px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
    row-gap: 25px;
    padding-top: 10px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
        gap: 35px;
        row-gap: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
        gap: 24px;
        row-gap: 25px;
    }
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list {
        row-gap: 20px;
    }
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li .star-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.comment-and-form-area .comment-area .comment .single-comment-area .comment-content .review-item-list li .star-list li i {
    color: #DDA701;
}

.comment-and-form-area .comment-area .comment .comment-replay {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 70px;
    border-top: 1px solid var(--borders-color);
    padding-top: 24px;
}

@media (max-width: 576px) {
    .comment-and-form-area .comment-area .comment .comment-replay {
        margin-left: 25px;
    }
}

.comment-and-form-area .comment-area .comment .comment-replay > li {
    margin-bottom: 30px;
}

.comment-and-form-area .comment-area .comment .comment-replay > li:last-child {
    margin-bottom: 0;
}

.comment-and-form-area .inquiry-form {
    background: #F0F0F0;
    padding: 45px 60px 60px;
}

@media (max-width: 1399px) {
    .comment-and-form-area .inquiry-form {
        padding: 45px 50px 60px;
    }
}

@media (max-width: 1199px) {
    .comment-and-form-area .inquiry-form {
        padding: 45px 40px;
    }
}

@media (max-width: 767px) {
    .comment-and-form-area .inquiry-form {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .comment-and-form-area .inquiry-form {
        padding: 40px 20px;
    }
}

.comment-and-form-area .inquiry-form .form-wrap {
    margin-top: 35px;
}

@media (max-width: 576px) {
    .comment-and-form-area .inquiry-form .form-wrap {
        margin-top: 30px;
    }
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner input,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea {
    background-color: var(--dark-white-color);
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 0;
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner input::-moz-placeholder, .comment-and-form-area .inquiry-form .form-wrap .form-inner textarea::-moz-placeholder {
    color: #AAAAAA;
    font-weight: 400;
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner input::placeholder,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea::placeholder {
    color: #AAAAAA;
    font-weight: 400;
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner input:focus,
.comment-and-form-area .inquiry-form .form-wrap .form-inner textarea:focus {
    border-color: var(--black-color);
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner2 .form-check-input {
    border-color: var(--black-color);
    height: 14px;
    width: 14px;
}

.comment-and-form-area .inquiry-form .form-wrap .form-inner2 .form-check-input:checked {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.related-product-section h3 {
    margin-bottom: 25px;
}

.related-product-section .related-product-slider-area {
    position: relative;
}

@media (max-width: 576px) {
    .related-product-section .related-product-slider-area .slider-btn-grp {
        display: none;
    }
}

.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn {
    position: absolute;
    top: calc(50% - 56px);
    left: -20px;
    z-index: 1;
    opacity: 1;
    transition: 0.5s;
}

.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn svg {
    fill: none;
    stroke: var(--black-color);
}

.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn.related-product-slider-next {
    left: unset;
    right: -20px;
}

.related-product-section .related-product-slider-area .slider-btn-grp .slider-btn:hover svg {
    stroke: var(--white-color);
}

.related-product-section .related-product-slider-area:hover .slider-btn-grp .slider-btn {
    opacity: 1;
}

/*=====================================
  83. Cart Page CSS
========================================*/
.cart-page .cart-widget-title {
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .cart-page .cart-widget-title {
        margin-bottom: 25px;
    }
}

.cart-page .cart-widget-title h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .cart-page .cart-widget-title h2 {
        font-size: 25px;
    }
}

.cart-page .cart-shopping-wrapper .cart-table {
    width: 100%;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table {
        margin-bottom: 30px;
    }
}

.cart-page .cart-shopping-wrapper .cart-table thead tr {
    border-top: 1px solid var(--borders-color);
    border-bottom: 1px solid var(--borders-color);
}

.cart-page .cart-shopping-wrapper .cart-table thead tr th {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 15px;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table thead tr th {
        display: none;
    }
}

.cart-page .cart-shopping-wrapper .cart-table thead tr th:first-child {
    padding-left: 0;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr {
        border-bottom: 1px solid var(--borders-color);
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td {
    padding: 30px 15px;
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td span {
    color: var(--text-color);
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td:first-child {
    padding-left: 0;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td {
        text-align: right;
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper {
        align-items: flex-end;
        flex-direction: column;
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-img img {
    border-radius: 5px;
    max-width: 120px;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content h3 {
        font-size: 16px;
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 35px;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content p span {
    color: var(--title-color);
    font-weight: 500;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul {
        justify-content: flex-end;
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 1px;
    height: 11px;
    background-color: rgba(var(--title-color-opc), 0.2);
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area {
    position: absolute;
    top: -30px;
    right: -60px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

@media (max-width: 991px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area {
        right: unset;
        left: -60px;
    }
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity {
    display: flex;
    gap: 5px;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a {
    height: 24px;
    width: 34px;
    border-radius: 4px;
    background: rgba(var(--title-color-opc), 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a i {
    color: var(--title-color);
    transition: 0.35s;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a:hover {
    background: var(--primary-color1);
    color: var(--dark-title-color);
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity a:hover i {
    color: var(--dark-title-color);
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area .quantity input {
    height: 24px;
    width: 34px;
    border-radius: 4px;
    border: 1px solid var(--borders-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li .quantity-area.active {
    opacity: 1;
    transform: scaleY(1);
    animation: fade-down 0.3s linear;
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:hover {
    color: rgb(255, 72, 32);
}

.cart-page .cart-shopping-wrapper .cart-table tbody tr td .product-info-wrapper .product-info-content ul li:hover:last-child {
    color: var(--title-color);
}

@media (max-width: 767px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td {
        display: block;
        width: 100%;
        text-align: right;
        position: relative;
        padding: 15px;
    }

    .cart-page .cart-shopping-wrapper .cart-table tbody tr td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        color: var(--text-color);
        font-family: var(--font-archivo);
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 767px) and (max-width: 576px) {
    .cart-page .cart-shopping-wrapper .cart-table tbody tr td::before {
        font-size: 16px;
    }
}

.cart-page .cart-shopping-wrapper .details-button {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s;
}

.cart-page .cart-shopping-wrapper .details-button span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

.cart-page .cart-shopping-wrapper .details-button svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.cart-page .cart-shopping-wrapper .details-button:hover span {
    background-size: 100% 1.5px;
    background-position: left 100%;
}

.cart-page .cart-shopping-wrapper .details-button:hover svg {
    transform: rotate(45deg);
}

@media (min-width: 992px) {
    .cart-page .cart-order-sum-area {
        padding-left: 15px;
    }
}

.cart-page .cart-order-sum-area .order-summary-wrap {
    padding: 40px 30px;
    border: 1px solid var(--borders-color);
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cart-page .cart-order-sum-area .order-summary-wrap {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .cart-page .cart-order-sum-area .order-summary-wrap {
        padding: 35px 15px;
    }
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    line-height: 1;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borders-color);
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li strong {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info {
    text-align: right;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .order-info span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area {
    width: 100%;
    margin-bottom: 10px;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner {
    position: relative;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input {
    width: 100%;
    height: 48px;
    padding: 10px 100px 10px 20px;
    background-color: #F6F2F8;
    border-radius: 5px;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input::-moz-placeholder {
    color: rgba(var(--title-color-opc), 0.5);
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input::placeholder {
    color: rgba(var(--title-color-opc), 0.5);
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input:focus {
    border-color: transparent;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn {
    padding: 15px 23px;
    border-radius: 0 5px 5px 0;
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--dark-white-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.48px;
    line-height: 1;
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: 0;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn::after {
    position: absolute;
    content: "";
    display: block;
    left: 15%;
    right: -20%;
    top: -4%;
    height: 150%;
    width: 150%;
    bottom: 0;
    border-radius: 2px;
    background-color: var(--dark-white-color);
    transform: skewX(45deg) scale(0, 1);
    z-index: -1;
    transition: all 0.5s ease-out 0s;
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn:hover {
    color: var(--title-color);
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner .apply-btn:hover::after {
    transform: skewX(45deg) scale(1, 1);
}

.cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li:last-child {
    margin-bottom: 0px;
}

.cart-page .cart-order-sum-area .order-summary-wrap .primary-btn1 {
    width: 100%;
}

/*=====================================
  84. Checkout Page CSS
========================================*/
.checkout-page .checkout-form-wrapper .checkout-form-title {
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .checkout-page .checkout-form-wrapper .checkout-form-title {
        margin-bottom: 25px;
    }
}

.checkout-page .checkout-form-wrapper .checkout-form-title h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .checkout-page .checkout-form-wrapper .checkout-form-title h2 {
        font-size: 25px;
    }
}

.checkout-page .checkout-form-wrapper .checkout-form {
    border: 1px solid var(--borders-color);
    padding: 40px 30px;
    border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .checkout-page .checkout-form-wrapper .checkout-form {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .checkout-page .checkout-form-wrapper .checkout-form {
        padding: 35px 20px;
    }
}

.checkout-page .checkout-form-wrapper .checkout-form .form-inner label span {
    font-weight: 400;
    color: var(--text-color);
}

.checkout-page .order-sum-area {
    border: 1px solid var(--borders-color);
    padding: 45px 40px;
}

@media (max-width: 1399px) {
    .checkout-page .order-sum-area {
        padding: 35px 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .checkout-page .order-sum-area {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .checkout-page .order-sum-area {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .checkout-page .order-sum-area {
        padding: 25px 15px;
    }
}

.checkout-page .order-sum-area .cart-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 50px;
}

.checkout-page .order-sum-area .cart-body ul .single-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.checkout-page .order-sum-area .cart-body ul .single-item:last-child {
    margin-bottom: 0;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn {
    transition: 0.35s;
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 38, 21, 0.14);
    border: unset;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn i {
    color: rgb(255, 72, 32);
    line-height: 1;
    font-size: 20px;
    transition: 0.35s;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn:hover {
    background-color: #FF2615;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .close-btn:hover i {
    color: var(--white-color);
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item {
    display: flex;
    gap: 15px;
    width: 100%;
}

@media (max-width: 767px) {
    .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item {
        gap: 12px;
    }
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img img {
    height: 80px;
    max-width: 77px;
    min-width: 77px;
}

@media (max-width: 767px) {
    .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .item-img img {
        width: 45px;
        height: unset;
    }
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content-and-quantity {
    width: 100%;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content {
    line-height: 1;
    margin-bottom: 15px;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 {
    margin-bottom: 0;
    line-height: 1;
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

@media (max-width: 576px) {
    .checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a {
        font-size: 16px;
    }
}

.checkout-page .order-sum-area .cart-body ul .single-item .item-area .main-item .content h3 a:hover {
    background-size: 100% 1px;
    background-position: left 100%;
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity {
    display: flex;
    gap: 5px;
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a {
    height: 24px;
    width: 34px;
    border-radius: 4px;
    background: rgba(var(--title-color-opc), 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--title-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s;
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a i {
    color: var(--title-color);
    transition: 0.35s;
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a:hover {
    background: var(--primary-color1);
    color: var(--dark-title-color);
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity a:hover i {
    color: var(--dark-title-color);
}

.checkout-page .order-sum-area .cart-body ul .single-item .quantity-area .quantity input {
    height: 24px;
    width: 34px;
    border-radius: 4px;
    border: 1px solid var(--borders-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.checkout-page .order-sum-area .cart-footer .pricing-area {
    width: 100%;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    line-height: 1;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    border-bottom: 1px solid var(--borders-color);
    padding-bottom: 20px;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li strong {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info {
    text-align: right;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li .order-info span {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.checkout-page .order-sum-area .cart-footer .pricing-area ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: unset;
}

.checkout-page .order-sum-area .cart-footer .primary-btn1 {
    width: 100%;
}

.checkout-page .choose-payment-method {
    margin-bottom: 40px;
    line-height: 1;
}

.checkout-page .choose-payment-method h4 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.checkout-page .choose-payment-method .payment-option {
    line-height: 1;
}

.checkout-page .choose-payment-method .payment-option ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .checkout-page .choose-payment-method .payment-option ul {
        gap: 15px;
    }
}

.checkout-page .choose-payment-method .payment-option ul li {
    width: 110px;
    height: 68px;
    background-color: var(--white-color);
    border: 1px solid var(--borders-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .checkout-page .choose-payment-method .payment-option ul li {
        width: 100px;
    }
}

.checkout-page .choose-payment-method .payment-option ul li .checked {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: #D2E7EF;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    border-top-left-radius: 5px;
}

.checkout-page .choose-payment-method .payment-option ul li .checked i {
    opacity: 0;
    color: var(--dark-title-color);
    margin-left: 2px;
}

.checkout-page .choose-payment-method .payment-option ul li.active .checked {
    background: var(--primary-color1);
}

.checkout-page .choose-payment-method .payment-option ul li.active .checked i {
    opacity: 1;
}

/*=====================================
  85. Contact Page CSS
========================================*/
.contact-page .title-and-address-area .section-title {
    max-width: 710px;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .contact-page .title-and-address-area .section-title {
        max-width: 450px;
    }
}

.contact-page .title-and-address-area .section-title h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
}

.contact-page .title-and-address-area .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-page .title-and-address-area .contact-list .single-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .contact-page .title-and-address-area .contact-list .single-contact {
        gap: 15px;
    }
}

.contact-page .title-and-address-area .contact-list .single-contact:last-child {
    max-width: 520px;
    width: 100%;
}

.contact-page .title-and-address-area .contact-list .single-contact .icon svg {
    fill: var(--text-color);
}

.contact-page .title-and-address-area .contact-list .single-contact .content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.contact-page .title-and-address-area .contact-list .single-contact .content a {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (max-width: 576px) {
    .contact-page .title-and-address-area .contact-list .single-contact .content a {
        font-size: 17px;
    }
}

.contact-page .title-and-address-area .contact-list .single-contact .content a:hover {
    background-size: 100% 1.5px;
    background-position: left 90%;
}

.contact-page .conatct-form-area {
    border-top: 1px solid var(--borders-color);
    border-bottom: 1px solid var(--borders-color);
}

.contact-page .conatct-form-area .contact-form {
    padding: 60px 100px 70px;
    border-left: 1px solid var(--borders-color);
    border-right: 1px solid var(--borders-color);
}

@media (max-width: 1399px) {
    .contact-page .conatct-form-area .contact-form {
        padding: 60px 80px 70px;
    }
}

@media (max-width: 991px) {
    .contact-page .conatct-form-area .contact-form {
        padding: 60px 50px 70px;
    }
}

@media (max-width: 767px) {
    .contact-page .conatct-form-area .contact-form {
        padding: 50px 30px 60px;
    }
}

@media (max-width: 576px) {
    .contact-page .conatct-form-area .contact-form {
        padding: 30px 15px 30px;
    }
}

.contact-page .conatct-form-area .contact-form .contact-form-top h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.contact-page .conatct-form-area .contact-form .contact-form-top .btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group {
        gap: 10px;
        row-gap: 20px;
    }
}

.contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn-check:checked + btn {
    background-color: var(--black-color);
}

.contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn {
    color: rgba(var(--title-color-opc), 0.5);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    padding: 15px 24px;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn {
        font-size: 14px;
        padding: 14px 20px;
    }
}

.contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn-check:checked + .btn, .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn.active, .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn.show, .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group .btn:first-child:active, .contact-page .conatct-form-area .contact-form .contact-form-top .btn-group :not(.btn-check) + .btn:active {
    background-color: var(--black-color);
    color: var(--dark-white-color);
    border-color: var(--black-color);
}

.contact-page .conatct-form-area .contact-form .contact-field-area .form-inner input {
    height: 60px;
    border-radius: 10px;
    background-color: #F0F0F0;
    border-color: #F0F0F0;
    padding: 10px 20px 10px 30px;
}

@media (max-width: 767px) {
    .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner input {
        padding: 10px 20px;
    }
}

.contact-page .conatct-form-area .contact-form .contact-field-area .form-inner input:focus {
    border-color: var(--black-color);
    background-color: transparent;
}

.contact-page .conatct-form-area .contact-form .contact-field-area .form-inner textarea {
    min-height: 70px;
    padding: 25px 20px 25px 30px;
    border-radius: 10px;
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

@media (max-width: 767px) {
    .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner textarea {
        padding: 20px;
    }
}

.contact-page .conatct-form-area .contact-form .contact-field-area .form-inner textarea:focus {
    border-color: var(--black-color);
    background-color: transparent;
}

.contact-map-section {
    line-height: 1;
    width: 100%;
    height: 100%;
    margin-bottom: -2px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    min-height: 680px;
}

@media (max-width: 1399px) {
    .contact-map-section iframe {
        min-height: 600px;
    }
}

@media (max-width: 991px) {
    .contact-map-section iframe {
        min-height: 550px;
    }
}

@media (max-width: 576px) {
    .contact-map-section iframe {
        min-height: 450px;
    }
}

/*=====================================
  86. Contact Me Page CSS
========================================*/
.contact-me-page .contact-form-wrap {
    padding: 55px 70px 70px;
    background-color: #F0F0F0;
}

@media (max-width: 991px) {
    .contact-me-page .contact-form-wrap {
        padding: 55px 50px 70px;
    }
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap {
        padding: 55px 30px 70px;
    }
}

@media (max-width: 576px) {
    .contact-me-page .contact-form-wrap {
        padding: 55px 15px 70px;
    }
}

.contact-me-page .contact-form-wrap .section-title {
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap .section-title {
        margin-bottom: 35px;
    }
}

.contact-me-page .contact-form-wrap .section-title h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 70px;
    font-weight: 700;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .contact-me-page .contact-form-wrap .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .contact-me-page .contact-form-wrap .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .contact-me-page .contact-form-wrap .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .contact-me-page .contact-form-wrap .section-title h2 {
        font-size: 42px;
    }
}

.contact-me-page .contact-form-wrap .divider {
    fill: var(--white-color);
    width: 100%;
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap .divider {
        display: none;
    }
}

.contact-me-page .contact-form-wrap form {
    padding-top: 60px;
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap form {
        border-top: 1px solid var(--white-color);
    }
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap form {
        padding-top: 50px;
    }
}

.contact-me-page .contact-form-wrap .form-inner label {
    font-family: var(--font-spaceGrotesk);
}

.contact-me-page .contact-form-wrap .form-inner input {
    height: 60px;
    border-radius: 10px;
    background-color: var(--white-color);
    border-color: var(--white-color);
    padding: 10px 20px 10px 30px;
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap .form-inner input {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .contact-me-page .contact-form-wrap .form-inner input {
        height: 55px;
    }
}

.contact-me-page .contact-form-wrap .form-inner input:focus {
    border-color: var(--black-color);
}

.contact-me-page .contact-form-wrap .form-inner textarea {
    min-height: 170px;
    padding: 30px 30px 25px 40px;
    border-radius: 10px;
    background-color: var(--white-color);
    border-color: var(--white-color);
}

@media (max-width: 767px) {
    .contact-me-page .contact-form-wrap .form-inner textarea {
        padding: 20px;
    }
}

.contact-me-page .contact-form-wrap .form-inner textarea:focus {
    border-color: var(--black-color);
}

.contact-me-page .contact-form-wrap .form-inner2 > label {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    line-height: 1;
    margin-bottom: 25px;
}

.contact-me-page .contact-form-wrap .form-inner2 ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact-me-page .contact-form-wrap .form-inner2 ul {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-me-page .contact-form-wrap .form-inner2 ul {
        gap: 20px;
    }
}

.contact-me-page .contact-form-wrap .form-inner2 ul li .form-check {
    line-height: 1;
}

.contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input {
    margin-top: 2px;
    background-color: var(--white-color);
    border-color: var(--black-color);
}

.contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input:checked {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("../img/innerpages/icon/check-icon-white.svg");
}

.contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-label {
    font-family: var(--font-spaceGrotesk);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-label {
        font-size: 16px;
    }
}

.contact-me-page .contact-form-wrap .form-inner2 .form-check .form-check-input {
    border-color: var(--black-color);
}

.contact-me-page .contact-form-wrap .form-inner2 .form-check .form-check-input:checked {
    border-color: var(--primary-color1);
}

/*=====================================
  87. Team Details Page CSS
========================================*/
.team-details-page {
    border-bottom: 1px solid var(--borders-color);
}

.team-details-page .team-details-content .name-designation-area {
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .team-details-page .team-details-content .name-designation-area {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .team-details-page .team-details-content .name-designation-area {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .name-designation-area {
        margin-bottom: 25px;
    }
}

.team-details-page .team-details-content .name-designation-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 5px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .team-details-page .team-details-content .name-designation-area h2 {
        font-size: 55px;
    }
}

@media (max-width: 1399px) {
    .team-details-page .team-details-content .name-designation-area h2 {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .team-details-page .team-details-content .name-designation-area h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .team-details-page .team-details-content .name-designation-area h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .name-designation-area h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }
}

.team-details-page .team-details-content .name-designation-area span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .name-designation-area span {
        font-size: 19px;
    }
}

.team-details-page .team-details-content .content {
    margin-bottom: 60px;
}

@media (max-width: 1199px) {
    .team-details-page .team-details-content .content {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .team-details-page .team-details-content .content {
        margin-bottom: 40px;
    }
}

.team-details-page .team-details-content .content span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    display: block;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .team-details-page .team-details-content .content span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .content span {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}

.team-details-page .team-details-content .content p {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.team-details-page .team-details-content .content p:last-child {
    margin-top: 25px;
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .content p:last-child {
        margin-top: 20px;
    }
}

.team-details-page .team-details-content .content p strong {
    color: var(--title-color);
    font-weight: 600;
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .content p {
        font-size: 15px;
    }
}

.team-details-page .team-details-content h3 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
}

.team-details-page .team-details-content .skill-area, .team-details-page .team-details-content .achievement-area {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .team-details-page .team-details-content .skill-area, .team-details-page .team-details-content .achievement-area {
        margin-bottom: 35px;
    }
}

.team-details-page .team-details-content ul {
    margin: 0;
    list-style: disc!important;
    padding-left: 20px!important;

    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .team-details-page .team-details-content ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.team-details-page .team-details-content ul li {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    /*display: flex;*/
    /*align-items: center;*/
    list-style-type: circle;
    gap: 10px;
}

.team-details-page .team-details-content ul li {
	list-style: none;
}

.team-details-page .team-details-content ul li svg {
    fill: var(--dark-text-color);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .team-details-page .team-details-content ul li {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .team-details-page .team-details-content ul li {
        font-size: 15px;
        display: block;
    }
}

.team-details-page .team-details-content ul.two {
    grid-template-columns: repeat(1, 1fr);
}

.team-details-page .team-details-content .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .team-details-page .team-details-content .social-list {
        gap: 20px;
    }
}

.team-details-page .team-details-content .social-list li {
    margin-bottom: 0;
}

.team-details-page .team-details-content .social-list li a {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    padding: 7px 15px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    transition: 0.5s;
}

.team-details-page .team-details-content .social-list li a:hover {
    color: var(--dark-white-color);
    background-color: var(--black-color);
}

.inner-team-section .inner-team-slider-area {
    cursor: url(../img/innerpages/icon/team-section-cursor.svg), default;
}

.inner-team-section .team-list-area .title {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: block;
    padding-left: 13px;
    position: relative;
    margin-bottom: 20px;
}

.inner-team-section .team-list-area .title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dark-text-color);
}

.inner-team-section .team-list-area .team-member-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.inner-team-section .team-list-area .team-member-list .single-team-member {
    padding: 30px 50px;
    border-bottom: 1px solid var(--borders-color);
    display: grid;
    grid-template-columns: 14% 34% 19% 33%;
    align-items: center;
}

@media (max-width: 1799px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        padding: 30px 10px;
    }
}

@media (max-width: 1699px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 14% 36% 19% 31%;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 14% 38% 19% 29%;
    }
}

@media (max-width: 1399px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 14% 38% 19% 29%;
    }
}

@media (max-width: 1199px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 12% 43% 19% 26%;
    }
}

@media (max-width: 991px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 10% 47% 25% 18%;
    }
}

@media (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        grid-template-columns: 8% 38% 36% 12%;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 25px;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member:first-child {
    border-top: 1px solid var(--borders-color);
}

.inner-team-section .team-list-area .team-member-list .single-team-member:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}

.inner-team-section .team-list-area .team-member-list .single-team-member .serial-no {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
}

@media (min-width: 576px) and (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .serial-no {
        font-size: 20px;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 1399px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile {
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile {
        gap: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile {
        gap: 12px;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .profile-img img {
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    border-radius: 50%;
}

@media (max-width: 1399px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .profile-img img {
        min-width: 110px;
        max-width: 110px;
        height: 110px;
    }
}

@media (max-width: 991px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .profile-img img {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .profile-img img {
        min-width: 70px;
        max-width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .profile-img img {
        min-width: 80px;
        max-width: 80px;
        height: 80px;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .team-member-name {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .team-member-name {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .team-member-name {
        font-size: 24px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .team-member-profile .team-member-name {
        font-size: 20px;
        line-height: 1.4;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .team-member-role {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.inner-team-section .team-list-area .team-member-list .single-team-member .details-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn {
        margin-left: 0;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .details-btn svg {
    fill: var(--title-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn svg {
        width: 14px;
    }
}

.inner-team-section .team-list-area .team-member-list .single-team-member .details-btn:hover {
    background-color: var(--black-color);
}

.inner-team-section .team-list-area .team-member-list .single-team-member .details-btn:hover svg {
    fill: var(--dark-white-color);
}

.inner-team-section.about2-page-team .section-title span {
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .inner-team-section.about2-page-team .section-title span {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .inner-team-section.about2-page-team .section-title span {
        margin-bottom: 15px;
    }
}

.inner-team-section.about2-page-team .section-title h2 {
    color: var(--title-color);
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .inner-team-section.about2-page-team .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .inner-team-section.about2-page-team .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .inner-team-section.about2-page-team .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .inner-team-section.about2-page-team .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .inner-team-section.about2-page-team .section-title h2 {
        font-size: 28px;
    }

    .team-card .team-content span {
        font-size: 15px;
    }
}

.inner-team-section.about2-page-team .team-card.three .team-img {
    width: 396px;
    height: 396px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;

    position: relative;
}

@media (max-width: 1799px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 396px;
        height: 396px;
    }
}

@media (max-width: 1699px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 370px;
        height: 370px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1399px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 278px;
        height: 278px;
    }
}

@media (max-width: 1199px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 312px;
        height: 312px;
    }
}

@media (max-width: 991px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 365px;
        height: 365px;
    }
}

@media (max-width: 767px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 268px;
        height: 268px;
    }
}

@media (max-width: 576px) {
    .inner-team-section.about2-page-team .team-card.three .team-img {
        width: 320px;
        height: 320px;
    }
}

.inner-team-section.about2-page-team .team-card.three .team-content h5 a {
    font-family: var(--font-spaceGrotesk);
    letter-spacing: 0.03em;
}

/*=====================================
  88. About Page CSS
========================================*/
.about-page-why-choose-section {
    background-color: #020202;
    padding: 110px 0 120px;
}

@media (max-width: 1199px) {
    .about-page-why-choose-section {
        padding: 90px 0 100px;
    }
}

@media (max-width: 767px) {
    .about-page-why-choose-section {
        padding: 80px 0 90px;
    }
}

.about-page-why-choose-section .section-title h2 {
    font-size: 70px;
    font-weight: 400;
}

@media (max-width: 1399px) {
    .about-page-why-choose-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .about-page-why-choose-section .section-title h2 {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .about-page-why-choose-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .about-page-why-choose-section .section-title h2 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .about-page-why-choose-section .section-title h2 {
        font-size: 40px;
    }
}

.about-page-why-choose-section .feature-wrap .single-feature {
    position: relative;
}

.about-page-why-choose-section .feature-wrap .single-feature .feature-content {
    max-width: 410px;
    width: 100%;
    text-align: center;
}

@media (max-width: 1399px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content {
        max-width: 100%;
    }
}

.about-page-why-choose-section .feature-wrap .single-feature .feature-content svg {
    fill: var(--white-color);
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content svg {
        margin-bottom: 35px;
    }
}

.about-page-why-choose-section .feature-wrap .single-feature .feature-content h3 {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.about-page-why-choose-section .feature-wrap .single-feature .feature-content p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-page-why-choose-section .feature-wrap .single-feature .feature-content p {
        font-size: 16px;
    }
}

.about-page-why-choose-section .feature-wrap .divider {
    fill: rgba(var(--white-color-opc), 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media (max-width: 767px) {
    .about-page-why-choose-section .feature-wrap .divider {
        display: none;
    }
}

.about-page-why-choose-section .bottom-area {
    max-width: 612px;
    width: 100%;
    border: 1px solid rgba(var(--white-color-opc), 0.15);
    border-radius: 100px;
    padding: 15px 35px;
    margin: 90px auto 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 991px) {
    .about-page-why-choose-section .bottom-area {
        margin: 70px auto 0;
    }
}

@media (max-width: 767px) {
    .about-page-why-choose-section .bottom-area {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-page-why-choose-section .bottom-area {
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 25px 20px;
        justify-content: center;
    }
}

.about-page-why-choose-section .bottom-area .img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.about-page-why-choose-section .bottom-area .img-grp li img {
    min-width: 45px;
    max-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
    margin-left: -20px;
}

.about-page-why-choose-section .bottom-area .img-grp li:first-child img {
    margin-left: 0;
}

.about-page-why-choose-section .bottom-area span {
    color: var(--dark-text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 576px) {
    .about-page-why-choose-section .bottom-area span {
        text-align: center;
    }
}

.about-page-why-choose-section .bottom-area span a {
    color: var(--primary-color1);
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1.5px;
    background-position: left 100%;
    transition: background-size 0.75s;
}

.about-page-why-choose-section .bottom-area span a:hover {
    background-size: 0px 1.5px;
    background-position: left 100%;
}

.inner-gallery-section .inner-gallery-slider {
    cursor: url(../img/innerpages/icon/team-section-cursor.svg), default;
}

.inner-gallery-section .inner-gallery-slider .gallery-img img {
    width: 100%;
    min-height: 460px;
    max-height: 460px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .inner-gallery-section .inner-gallery-slider .gallery-img img {
        min-height: 420px;
        max-height: 420px;
    }
}

@media (max-width: 1399px) {
    .inner-gallery-section .inner-gallery-slider .gallery-img img {
        min-height: 380px;
        max-height: 380px;
    }
}

@media (max-width: 767px) {
    .inner-gallery-section .inner-gallery-slider .gallery-img img {
        min-height: 330px;
        max-height: 330px;
    }
}

.inner-gallery-section .inner-gallery-slider .swiper-wrapper {
    align-items: center;
}

.inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+2) .gallery-img img, .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+3) .gallery-img img {
    min-height: 370px;
    max-height: 370px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+2) .gallery-img img, .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+3) .gallery-img img {
        min-height: 330px;
        max-height: 330px;
    }
}

@media (max-width: 1399px) {
    .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+2) .gallery-img img, .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+3) .gallery-img img {
        min-height: 300px;
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+2) .gallery-img img, .inner-gallery-section .inner-gallery-slider .swiper-wrapper .swiper-slide:nth-child(3n+3) .gallery-img img {
        min-height: 260px;
        max-height: 260px;
    }
}

/*=====================================
  89. About2 Page CSS
========================================*/
.about2-page-banner-section .banner-wrapper {
    padding: 200px 60px 120px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1399px) {
    .about2-page-banner-section .banner-wrapper {
        padding: 170px 50px 120px;
    }
}

@media (max-width: 1199px) {
    .about2-page-banner-section .banner-wrapper {
        padding: 160px 30px 100px;
    }
}

@media (max-width: 991px) {
    .about2-page-banner-section .banner-wrapper {
        flex-wrap: wrap;
        gap: 50px;
        padding: 140px 20px 80px;
    }
}

@media (max-width: 576px) {
    .about2-page-banner-section .banner-wrapper {
        padding: 120px 0 70px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content {
    max-width: 980px;
    width: 100%;
}

.home3-banner-section .banner-wrapper .banner-title h1,
.about2-page-banner-section .banner-wrapper .banner-content h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 85px;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 55px;
}

.about2-page-banner-section .banner-wrapper .banner-content h2 {
    margin-bottom: 75px;
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 75px;
    }
}

@media (max-width: 1399px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 62px;
        margin-bottom: 50px;
    }
}

@media (max-width: 1199px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 51px;
        margin-bottom: 45px;
    }
}

@media (max-width: 991px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 50px;
        line-height: 1.1;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .about2-page-banner-section .banner-wrapper .banner-content h2 {
        font-size: 22px;
        margin-bottom: 45px;
    }
}

@media (max-width: 576px) {
    .home3-banner-section .banner-wrapper .banner-title h1,
    .about2-page-banner-section .banner-wrapper .banner-content h1 {
        font-size: 34px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content h1 svg {
    fill: var(--title-color);
    margin-left: 10px;
}

@media (max-width: 1199px) {
    .about2-page-banner-section .banner-wrapper .banner-content h1 svg {
        width: 75px;
    }
}

@media (max-width: 991px) {
    .about2-page-banner-section .banner-wrapper .banner-content h1 svg {
        width: 68px;
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .about2-page-banner-section .banner-wrapper .banner-content h1 svg {
        width: 50px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (max-width: 1199px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

@media (max-width: 576px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area {
        gap: 10px;
        padding: 12px 20px 15px 15px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area svg {
    fill: #E62415;
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area svg path:last-child {
    fill: #17313B;
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area .content .star {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin-bottom: 8px;
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area .content .star li i {
    font-size: 12px;
    color: #E62415;
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area .content span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
}

@media (max-width: 576px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area .content span {
        font-size: 14px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 300px;
    width: 100%;
}

@media (max-width: 1399px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info {
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info {
        max-width: 285px;
    }
}

@media (max-width: 767px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info {
        max-width: 295px;
        gap: 10px;
    }
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info svg {
    fill: var(--title-color);
    min-width: 36px;
}

.about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1399px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info span {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .short-info span {
        font-size: 20px;
    }
}

.about2-page-banner-section .banner-wrapper .award-area {
    max-width: 295px;
    width: 100%;
}

.about2-page-banner-section .banner-wrapper .award-area .award-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about2-page-banner-section .banner-wrapper .award-area .award-list {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about2-page-banner-section .banner-wrapper .award-area .award-list {
        justify-content: start;
    }
}

.about2-page-banner-section .banner-wrapper .award-area .award-list li img {
    width: 56px;
    filter: grayscale(1);
}

.about2-page-banner-section .banner-wrapper .award-area .award-list li img.dark {
    display: none;
}

.about2-page-banner-section .banner-wrapper .award-area p {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    padding-top: 20px;
    text-align: end;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .about2-page-banner-section .banner-wrapper .award-area p {
        text-align: start;
    }
}

.about2-page-banner-section .about-banner-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .about2-page-banner-section .about-banner-image {
        height: 410px;
    }

    .about2-page-banner-section .banner-wrapper .award-area p {
        font-size: 20px;
    }
}

.about2-page-banner-section .about-banner-image .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.about2-page-banner-section .about-banner-image .banner-img img {
    /*height: 100%;*/
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .breadcrumb-section .breadcrumb-image-section .breadcrumb-img img,
    .about2-page-banner-section .about-banner-image .banner-img img {
        height: 100%;
    }
}

.about2-page-process-section {
    /*border-bottom: 1px solid var(--borders-color);*/
}

.about2-page-process-section .section-title h2 {
    font-family: var(--font-spaceGrotesk);
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .about2-page-process-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .about2-page-process-section .section-title h2 {
        font-size: 65px;
    }
}

@media (max-width: 1199px) {
    .about2-page-process-section .section-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .about2-page-process-section .section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .section-title h2 {
        font-size: 42px;
    }
}

.about2-page-process-section .process-wrapper {
    position: relative;
    z-index: 1;
}

.about2-page-process-section .process-wrapper::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--borders-color);
    z-index: -1;
}

@media (max-width: 991px) {
    .about2-page-process-section .process-wrapper::before {
        display: none;
    }

    .about2-page-process-section .process-wrapper {
        padding: 0;
    }
}

.about2-page-process-section .process-wrapper .single-process {
    max-width: 435px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .about2-page-process-section .process-wrapper .single-process {
        max-width: 420px;
    }
}

@media (max-width: 1399px) {
    .about2-page-process-section .process-wrapper .single-process {
        max-width: 420px;
    }
}

.about2-page-process-section .process-wrapper .single-process .step-no {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    background-color: var(--primary-color1);
    margin-bottom: 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about2-page-process-section .process-wrapper .single-process .step-no {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .about2-page-process-section .process-wrapper .single-process .step-no {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .process-wrapper .single-process .step-no {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

.about2-page-process-section .process-wrapper .single-process h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .about2-page-process-section .process-wrapper .single-process h2 {
        font-size: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about2-page-process-section .process-wrapper .single-process h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .process-wrapper .single-process h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.about2-page-process-section .process-wrapper .single-process p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .about2-page-process-section .process-wrapper .single-process p {
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about2-page-process-section .process-wrapper .single-process p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .process-wrapper .single-process p {
        margin-bottom: 20px;
    }
}

.about2-page-process-section .process-wrapper .single-process ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about2-page-process-section .process-wrapper .single-process ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about2-page-process-section .process-wrapper .single-process ul li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .process-wrapper .single-process ul li {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

.about2-page-process-section .process-wrapper .single-process ul li:last-child {
    margin-bottom: 0;
}

.about2-page-process-section .bottom-area {
    max-width: 540px;
    width: 100%;
    background-color: #F0F0F0;
    border-radius: 100px;
    padding: 16px 35px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1199px) {
    .about2-page-process-section .bottom-area {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about2-page-process-section .bottom-area {
        flex-wrap: wrap;
        border-radius: 15px;
        padding: 25px 20px;
    }
}

.about2-page-process-section .bottom-area .img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.about2-page-process-section .bottom-area .img-grp li img {
    min-width: 45px;
    max-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
    margin-left: -20px;
}

.about2-page-process-section .bottom-area .img-grp li:first-child img {
    margin-left: 0;
}

.about2-page-process-section .bottom-area span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.about2-page-process-section .bottom-area span a {
    color: var(--primary-color1);
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 100% 1.5px;
    background-position: left 100%;
    transition: background-size 0.75s;
}

.about2-page-process-section .bottom-area span a:hover {
    background-size: 0px 1.5px;
    background-position: left 100%;
}

.about2-page-blog-section .section-title {
    display: block;
    max-width: 1120px;
    width: 100%;
    margin-left: auto;
}

@media (max-width: 1699px) {
    .about2-page-blog-section .section-title {
        max-width: 1020px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .about2-page-blog-section .section-title {
        max-width: 920px;
    }
}

@media (max-width: 1399px) {
    .about2-page-blog-section .section-title {
        max-width: 850px;
    }
}

@media (max-width: 1199px) {
    .about2-page-blog-section .section-title {
        max-width: 770px;
    }
}

.about2-page-blog-section .section-title h2 {
    max-width: 100%;
}

.about2-page-blog-section .section-title .more-btn {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.about2-page-blog-section .section-title .more-btn svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.about2-page-blog-section .section-title .more-btn span {
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: left 100%;
    transition: background-size 0.75s;
}

.about2-page-blog-section .section-title .more-btn:hover span {
    background-size: 100% 1.5px;
    background-position: left 100%;
}

.about2-page-blog-section .section-title .more-btn:hover svg {
    transform: rotate(45deg);
}

/*=====================================
  90. Service Page CSS
========================================*/
.service-page-process-section .service-page-process-wrapper {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    gap: 100px;
}

@media (max-width: 1199px) {
    .service-page-process-section .service-page-process-wrapper {
        gap: 70px;
    }
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper {
        flex-direction: column;
        width: unset;
    }
}

.service-page-process-section .service-page-process-wrapper .process-wrap {
    min-width: 100vw;
    position: relative;
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-wrap {
        min-width: unset;
    }
}

.service-page-process-section .service-page-process-wrapper .process-wrap .container-fluid {
    height: 100%;
}

.service-page-process-section .service-page-process-wrapper .process-wrap .process-and-vector-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .process-wrap .process-and-vector-area .service-page-process-vector {
        display: none;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .process-wrap .process-and-vector-area .service-page-process-vector {
        display: none;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 50px;
    }
}

@media (max-width: 767px) {
    .service-page-process-section .service-page-process-wrapper .process-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process {
    width: 450px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process {
        width: 410px;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process {
        width: 410px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process {
        width: 380px;
    }
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process {
        width: unset;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 145px;
    line-height: 1;
    display: block;
    margin-bottom: 40px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
        font-size: 135px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
        font-size: 125px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
        font-size: 115px;
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
        font-size: 95px;
    }
}

@media (max-width: 576px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process .step-no {
        font-size: 80px;
        margin-bottom: 15px;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process h2 {
        font-size: 45px;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process h2 {
        font-size: 42px;
        line-height: 52px;
    }
}

@media (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process h2 {
        font-size: 36px;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 60px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process p {
        margin-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process p {
        margin-bottom: 45px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process p {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process p {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process p {
        font-size: 16px;
        margin-bottom: 35px;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borders-color);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process ul li {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process ul li {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .service-page-process-section .service-page-process-wrapper .process-list .single-process ul li {
        font-size: 17px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

.service-page-process-section .service-page-process-wrapper .process-list .single-process ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset;
}

.service-page-process-section .service-page-process-wrapper .service-page-process-img {
    max-width: 100vw;
    min-width: 100vw;
}

.service-page-process-section .service-page-process-wrapper .service-page-process-img img {
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-process-section .service-page-process-wrapper .service-page-process-img img {
        min-height: 600px;
        max-height: 600px;
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .service-page-process-section .service-page-process-wrapper .service-page-process-img img {
        min-height: 600px;
        max-height: 600px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-page-process-section .service-page-process-wrapper .service-page-process-img img {
        min-height: 480px;
        max-height: unset;
    }
}

.service-page-video-section {
    height: 900px;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-video-section {
        height: 880px;
    }
}

@media (max-width: 1399px) {
    .service-page-video-section {
        height: 820px;
    }
}

@media (max-width: 1199px) {
    .service-page-video-section {
        height: 780px;
    }
}

@media (max-width: 991px) {
    .service-page-video-section {
        height: 720px;
    }
}

@media (max-width: 767px) {
    .service-page-video-section {
        height: 600px;
    }
}

@media (max-width: 576px) {
    .service-page-video-section {
        height: 580px;
    }
}

.service-page-video-section video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-page-video-section .video-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.15);
    padding: 110px 50px;
}

@media (max-width: 1699px) {
    .service-page-video-section .video-content-wrap {
        padding: 110px 30px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-video-section .video-content-wrap {
        padding: 110px 10px;
    }
}

@media (max-width: 1399px) {
    .service-page-video-section .video-content-wrap {
        padding: 100px 10px;
    }
}

@media (max-width: 1199px) {
    .service-page-video-section .video-content-wrap {
        padding: 90px 10px;
    }
}

@media (max-width: 991px) {
    .service-page-video-section .video-content-wrap {
        padding: 80px 10px;
    }
}

@media (max-width: 767px) {
    .service-page-video-section .video-content-wrap {
        padding: 70px 10px;
    }
}

.service-page-video-section .video-content-wrap .video-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 70px;
}

.service-page-video-section .video-content-wrap .video-content .top-content {
    max-width: 730px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-video-section .video-content-wrap .video-content .top-content {
        max-width: 650px;
    }
}

@media (max-width: 1399px) {
    .service-page-video-section .video-content-wrap .video-content .top-content {
        max-width: 620px;
    }
}

.service-page-video-section .video-content-wrap .video-content .bottom-content {
    max-width: 620px;
    width: 100%;
    text-align: end;
    margin-left: auto;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content {
        max-width: 550px;
    }
}

@media (max-width: 1399px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content {
        max-width: 500px;
    }
}

@media (max-width: 1199px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content h2 img {
        width: 105px;
    }
}

@media (max-width: 991px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content h2 img {
        width: 90px;
    }
}

@media (max-width: 767px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content h2 img {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .service-page-video-section .video-content-wrap .video-content .bottom-content h2 img {
        width: 70px;
    }
}

.service-page-video-section .video-content-wrap .video-content h2 {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 100px;
    line-height: 100px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 90px;
    }
}

@media (max-width: 1399px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 78px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 55px;
    }
}

@media (max-width: 576px) {
    .service-page-video-section .video-content-wrap .video-content h2 {
        font-size: 45px;
    }
}

.service-page-video-section .video-content-wrap .video-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

@media (max-width: 767px) {
    .service-page-video-section .video-content-wrap .video-content ul {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .service-page-video-section .video-content-wrap .video-content ul {
        flex-wrap: wrap;
        margin-top: 25px;
        gap: 10px;
        row-gap: 15px;
    }
}

.service-page-video-section .video-content-wrap .video-content ul li {
    color: #eee;
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 17px 26px;
    background-color: #1E1E1E;
    border-radius: 100px;
}

@media (max-width: 991px) {
    .service-page-video-section .video-content-wrap .video-content ul li {
        font-size: 16px;
        padding: 15px 23px;
    }
}

@media (max-width: 767px) {
    .service-page-video-section .video-content-wrap .video-content ul li {
        font-size: 15px;
        padding: 13px 21px;
    }
}

/*=====================================
  91. Service2 Page CSS
========================================*/
.service2-page-banner-section .banner-wrapper {
    padding: 200px 0 120px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .banner-wrapper {
        padding: 180px 0 120px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .banner-wrapper {
        padding: 170px 0 120px;
    }
}

@media (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper {
        padding: 160px 0 100px;
    }
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper {
        flex-wrap: wrap;
        gap: 50px;
        padding: 140px 0 80px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper {
        padding: 130px 0 60px;
        gap: 35px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area {
    max-width: 895px;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area {
        max-width: 810px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area {
        max-width: 770px;
    }
}

@media (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area {
        max-width: 690px;
    }
}

@media (max-width: 991px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area {
        max-width: 500px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 90px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 75px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 70px;
        line-height: 1.1;
    }
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 62px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 {
        font-size: 42px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap {
        flex-wrap: wrap;
        gap: 5px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
    max-width: 150px;
    width: 100%;
    height: 70px;
    display: flex;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
        height: 65px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
        height: 65px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
        max-width: 120px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video {
        margin-bottom: 5px;
        margin-left: 5px;
        height: 42px;
        max-width: 100px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
    width: 100%;
    width: 100%;
    height: 71px;
    border-radius: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
        height: 65px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
        height: 65px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
        height: 55px;
    }
}

@media (max-width: 991px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
        max-width: 120px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .banner-video-wrap .banner-video video {
        height: 42px;
    }
}

.service2-page-banner-section .banner-wrapper .banner-title-area h1 .short-info {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    display: inline-block;
    max-width: 410px;
    margin-left: 30px;
}

@media (max-width: 991px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .short-info {
        display: block;
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .banner-title-area h1 .short-info {
        font-size: 17px;
        margin-top: 15px;
    }
}

.service2-page-banner-section .banner-wrapper .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper .service-list {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 25px;
        row-gap: 20px;
    }
}

.service2-page-banner-section .banner-wrapper .service-list li {
    position: relative;
    margin-bottom: 15px;
    text-align: end;
}

.service2-page-banner-section .banner-wrapper .service-list li:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .service-list li {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper .service-list li {
        margin-bottom: 0;
    }
}

.service2-page-banner-section .banner-wrapper .service-list li a {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    padding-left: 18px;
    position: relative;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-page-banner-section .banner-wrapper .service-list li a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .banner-wrapper .service-list li a {
        font-size: 20px;
    }
}

.service2-page-banner-section .banner-wrapper .service-list li a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--black-color);
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .service2-page-banner-section .banner-wrapper .service-list li a::before {
        opacity: 1;
    }
}

.service2-page-banner-section .banner-wrapper .service-list li a span {
    display: inline-block;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.service2-page-banner-section .banner-wrapper .service-list li:hover a::before {
    opacity: 1;
}

.service2-page-banner-section .banner-wrapper .service-list li:hover a span {
    background-size: 100% 1.5px;
    background-position: left 95%;
}

.service2-page-banner-section .service2-banner-image {
    position: relative;
    height: 680px;
    overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-page-banner-section .service2-banner-image {
        height: 650px;
    }
}

@media (max-width: 1399px) {
    .service2-page-banner-section .service2-banner-image {
        height: 620px;
    }
}

@media (max-width: 1199px) {
    .service2-page-banner-section .service2-banner-image {
        height: 580px;
    }
}

@media (max-width: 991px) {
    .service2-page-banner-section .service2-banner-image {
        height: 550px;
    }
}

@media (max-width: 576px) {
    .service2-page-banner-section .service2-banner-image {
        height: 480px;
    }
}

.service2-page-banner-section .service2-banner-image .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
}

.service2-page-banner-section .service2-banner-image .banner-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service2-why-choose-section {
    position: relative;
    overflow: hidden;
    padding-top: 200px;
}

@media (max-width: 991px) {
    .service2-why-choose-section {
        margin-bottom: 110px;
        padding-top: 110px;
    }
}

@media (max-width: 767px) {
    .service2-why-choose-section {
        margin-bottom: 100px;
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section {
        margin-bottom: 80px;
        padding-top: 80px;
    }
}

.service2-why-choose-section .why-choose-wrapper {
    position: relative;
}

.service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap {
    display: flex;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 50%;
}

@media (max-width: 991px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap {
        position: relative;
        top: unset;
        left: unset;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap {
        gap: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .why-choose-big-img {
        width: 280px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .why-choose-big-img {
        width: 245px;
    }
}

@media (max-width: 991px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .why-choose-big-img {
        width: 260px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .why-choose-sm-img {
    transform: translateY(-70px);
    width: auto;
}

@media (max-width: 991px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .why-choose-sm-img {
        transform: unset;
        width: 185px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
    position: absolute;
    top: 48%;
    left: 49%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background-color: var(--dark-white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
        left: 47%;
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
        left: 45%;
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 991px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
        opacity: 1;
        left: 32%;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
        left: 43.5%;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
        width: 85px;
        height: 85px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 991px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn {
        width: 65px;
        height: 65px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn svg {
    fill: var(--dark-black-color);
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area .play-btn svg {
        width: 18px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .mb-50 {
    margin-bottom: 45px;
}

@media (max-width: 767px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content .mb-50 {
        margin-bottom: 40px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 55px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
        font-size: 46px;
        margin-bottom: 45px;
    }
}

@media (max-width: 1399px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
        font-size: 46px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content h2 {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 25px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    display: block;
    margin-bottom: 25px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content span {
        font-size: 16px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content p {
        font-size: 16px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area h3 {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--borders-color);
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 230px;
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area ul li {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area ul li {
        font-size: 17px;
    }
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area ul li:last-child {
    margin-bottom: 0;
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area ul li svg {
    fill: var(--dark-text-color);
}

.service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area .goal-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area .goal-wrap img {
        width: 260px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area .goal-wrap img {
        width: 190px;
    }
}

@media (max-width: 576px) {
    .service2-why-choose-section .why-choose-wrapper .why-choose-content .approach-list-area .goal-wrap img {
        display: none;
    }
}

/*=====================================
  92. Team Page CSS
========================================*/
.team-philosophy-section {
    border-bottom: 1px solid var(--borders-color);
}

.team-philosophy-section .title-area {
    max-width: 335px;
    width: 100%;
}

@media (max-width: 991px) {
    .team-philosophy-section .title-area {
        max-width: unset;
    }
}

.team-philosophy-section .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 46px;
    line-height: 60px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .team-philosophy-section .title-area h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .team-philosophy-section .title-area h2 {
        font-size: 34px;
        line-height: 55px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .team-philosophy-section .title-area h2 {
        font-size: 30px;
        line-height: 50px;
    }
}

.team-philosophy-section .title-area .team-members-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 576px) {
    .team-philosophy-section .title-area .team-members-info {
        gap: 12px;
    }
}

.team-philosophy-section .title-area .team-members-info .img-grp {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.team-philosophy-section .title-area .team-members-info .img-grp li {
    margin-left: -20px;
}

.team-philosophy-section .title-area .team-members-info .img-grp li img {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--dark-white-color);
}

@media (max-width: 576px) {
    .team-philosophy-section .title-area .team-members-info .img-grp li img {
        min-width: 55px;
        max-width: 55px;
        height: 55px;
    }
}

.team-philosophy-section .title-area .team-members-info .img-grp li:first-child {
    margin-left: 0;
}

.team-philosophy-section .title-area .team-members-info .img-grp li span {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-white-color);
}

@media (max-width: 576px) {
    .team-philosophy-section .title-area .team-members-info .img-grp li span {
        min-width: 55px;
        max-width: 55px;
        height: 55px;
    }
}

.team-philosophy-section .title-area .team-members-info .img-grp li span svg {
    fill: var(--white-color);
}

.team-philosophy-section .title-area .team-members-info > span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

.team-philosophy-section .title-area .team-members-info > span strong {
    font-weight: 600;
}

.team-philosophy-section .content > span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
    display: block;
}

@media (max-width: 991px) {
    .team-philosophy-section .content > span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .team-philosophy-section .content > span {
        font-size: 20px;
    }
}

.team-philosophy-section .content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 65px;
}

@media (max-width: 1199px) {
    .team-philosophy-section .content p {
        margin-bottom: 55px;
    }
}

@media (max-width: 991px) {
    .team-philosophy-section .content p {
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .team-philosophy-section .content p {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .team-philosophy-section .content p {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

.team-page-what-drive-section .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .team-page-what-drive-section .title-area h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .team-page-what-drive-section .title-area h2 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 576px) {
    .team-page-what-drive-section .title-area h2 {
        font-size: 38px;
        line-height: 50px;
    }
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item {
    border-radius: 10px;
    border: none;
    margin-bottom: 25px;
    background-color: transparent;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header {
    border-radius: 10px;
    background-color: #F0F0F0;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    padding: 10px 20px 10px 25px;
    border-radius: 10px;
    background-color: transparent;
    border-color: transparent;
}

@media (max-width: 767px) {
    .team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 17px;
        line-height: 1.5;
        padding: 10px 20px;
    }
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button::after {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    content: "\f229";
    font-family: bootstrap-icons;
    background-image: none;
    font-weight: 600;
    font-size: 12px;
    right: 30px;
    transition: 0.5s;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    font-family: bootstrap-icons !important;
    content: "\f229";
    border: none;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header .accordion-button:focus {
    border-radius: 10px;
    box-shadow: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-body {
    padding: 20px 0 0;
    font-family: var(--font-kanit);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: var(--text-color);
    border-top: none;
    background-color: transparent;
    border-radius: 0 0 10px 10px;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-body a {
    color: #3F59DD;
    transition: 0.5s;
}

.team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-body a:hover {
    color: var(--title-color);
}

@media (max-width: 576px) {
    .team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-body {
        font-size: 16px;
        line-height: 1.6;
    }
}

.team-video-banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@media (max-width: 991px) {
    .team-video-banner-section {
        height: unset;
    }
}

.team-video-banner-section .video-wrapper {
    width: 300px;
    height: 120px;
    position: relative;
    border-radius: 100px;
}

@media (max-width: 991px) {
    .team-video-banner-section .video-wrapper {
        width: 100%;
        height: 550px;
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .team-video-banner-section .video-wrapper {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .team-video-banner-section .video-wrapper {
        height: 400px;
    }
}

.team-video-banner-section .video-wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}

.team-video-banner-section .video-wrapper .label-left, .team-video-banner-section .video-wrapper .label-right {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 35px;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .team-video-banner-section .video-wrapper .label-left, .team-video-banner-section .video-wrapper .label-right {
        display: none;
    }
}

.team-video-banner-section .video-wrapper .label-left {
    left: -155px;
}

.team-video-banner-section .video-wrapper .label-right {
    right: -150px;
}

.team-join-section .team-join-wrap {
    text-align: center;
}

.team-join-section .team-join-wrap svg {
    fill: var(--borders-color);
}

.team-join-section .team-join-wrap svg linearGradient stop {
    stop-color: var(--black-color);
}

.team-join-section .team-join-wrap svg linearGradient stop:last-child {
    stop-color: var(--borders-color);
}

@media (max-width: 576px) {
    .team-join-section .team-join-wrap svg {
        display: none;
    }
}

.team-join-section .team-join-wrap .btn-area {
    margin-top: 70px;
}

@media (max-width: 991px) {
    .team-join-section .team-join-wrap .btn-area {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .team-join-section .team-join-wrap .btn-area {
        margin-top: 50px;
    }
}

/*=====================================
  93. Service Details Page CSS
========================================*/
.service-dt-page-top-section .service-dt-page-thumb-img img {
    min-height: 350px;
    -o-object-fit: cover;
    object-fit: cover;

    display: block;
    width: 100%;
}

@media (max-width: 576px) {
    .service-dt-page-top-section .service-dt-page-thumb-img img {
        min-height: 300px;
    }
}

.service-dt-page-top-section .service-dt-content-wrap .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 35px;
    line-height: 36px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .service-dt-page-top-section .service-dt-content-wrap .title-area h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .service-dt-page-top-section .service-dt-content-wrap .title-area h2 {
        font-size: 28px;
        line-height: 1.5;
    }
}

@media (max-width: 991px) {
    .service-dt-page-top-section .service-dt-content-wrap .content-area {
        padding-top: 20px;
    }
}

.service-dt-page-top-section .service-dt-content-wrap .content-area p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .service-dt-page-top-section .service-dt-content-wrap .content-area p {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .service-dt-page-top-section .service-dt-content-wrap .content-area p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.service-dt-page-top-section .service-dt-content-wrap .content-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-dt-page-top-section .service-dt-content-wrap .content-area ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .service-dt-page-top-section .service-dt-content-wrap .content-area ul li {
        font-size: 16px;
    }
}

.service-dt-page-top-section .service-dt-content-wrap .content-area ul li:last-child {
    margin-bottom: 0;
}

.service-dt-why-choose-section {
    padding: 100px 0 120px;
    background-color: rgba(2, 2, 2, 0.2);
    position: relative;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .service-dt-why-choose-section {
        height: unset;
        padding: 70px 0 80px;
        background-color: #020202;
    }
}

.service-dt-why-choose-section video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

@media (max-width: 767px) {
    .service-dt-why-choose-section video {
        display: none;
    }
}

.service-dt-why-choose-section .pt-150 {
    padding-top: 150px;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .pt-150 {
        padding-top: 120px;
    }
}

@media (max-width: 991px) {
    .service-dt-why-choose-section .pt-150 {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .pt-150 {
        padding-top: 0;
    }
}

.service-dt-why-choose-section .gy-150 {
    --bs-gutter-y: 150px;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .gy-150 {
        --bs-gutter-y: 120px;
    }
}

@media (max-width: 991px) {
    .service-dt-why-choose-section .gy-150 {
        --bs-gutter-y: 80px;
    }
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .gy-150 {
        --bs-gutter-y: 40px;
    }
}

.service-dt-why-choose-section .scroll-text-section .scrolling-text .marquee__group h2 {
    color: var(--white-color);
}

.service-dt-why-choose-section .scroll-text-section .scrolling-text .marquee__group svg {
    fill: var(--white-color);
}

.service-dt-why-choose-section .title-content-wrap {
    max-width: 410px;
    width: 100%;
    margin-left: auto;
    padding-top: 45px;
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .title-content-wrap {
        max-width: unset;
        padding-top: 40px;
    }
}

.service-dt-why-choose-section .title-content-wrap p {
    color: var(--dark-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .service-dt-why-choose-section .title-content-wrap p {
        font-size: 17px;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card {
    padding: 45px 40px;
    background-color: var(--white-color);
    max-width: 410px;
    width: 100%;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .service-dt-why-choose-card {
        padding: 45px 30px;
    }
}

@media (max-width: 991px) {
    .service-dt-why-choose-section .service-dt-why-choose-card {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .service-dt-why-choose-section .service-dt-why-choose-card {
        padding: 40px 15px;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card .icon {
    margin-bottom: 90px;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .service-dt-why-choose-card .icon {
        margin-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .service-dt-why-choose-section .service-dt-why-choose-card .icon {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .service-dt-why-choose-section .service-dt-why-choose-card .icon {
        margin-bottom: 40px;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card .icon svg {
    fill: var(--dark-black-color);
}

.service-dt-why-choose-section .service-dt-why-choose-card .content h3 {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .service-dt-why-choose-section .service-dt-why-choose-card .content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card .content p {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .service-dt-why-choose-section .service-dt-why-choose-card .content p {
        font-size: 17px;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card:hover {
    background-color: var(--primary-color1);
}

.service-dt-why-choose-section .service-dt-why-choose-title-area {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .service-dt-why-choose-title-area {
        top: 90px;
    }
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .service-dt-why-choose-title-area {
        position: relative;
        top: unset;
    }
}

.service-dt-why-choose-section .service-dt-why-choose-card-area {
    padding-top: 350px;
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .service-dt-why-choose-card-area {
        padding-top: 0;
    }
}

.service-dt-why-choose-section .contact-btn {
    padding-bottom: 70px;
}

@media (max-width: 1199px) {
    .service-dt-why-choose-section .contact-btn {
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .service-dt-why-choose-section .contact-btn {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .service-dt-why-choose-section .contact-btn {
        padding-bottom: 70px;
    }
}

.service-dt-process-section .process-wrapper .pin-spacer:nth-child(2) .process-card {
    background-color: #F0F0F0;
}

.service-dt-process-section .process-wrapper .pin-spacer:nth-child(3) .process-card {
    background-color: #DDE6FF;
}

.service-dt-process-section .process-wrapper .pin-spacer:last-child .process-card {
    margin-bottom: 0;
}

.service-dt-process-section .process-wrapper .process-card {
    padding: 50px 60px 50px 70px;
    background-color: #CFF0DB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 1399px) {
    .service-dt-process-section .process-wrapper .process-card {
        padding: 50px 30px 50px 40px;
    }
}

@media (max-width: 991px) {
    .service-dt-process-section .process-wrapper .process-card {
        flex-wrap: wrap;
        gap: 40px;
        position: relative;
    }

    .service-dt-process-section .process-wrapper .process-card:nth-child(2) {
        background-color: #F0F0F0;
    }

    .service-dt-process-section .process-wrapper .process-card:nth-child(3) {
        background-color: #DDE6FF;
    }

    .service-dt-process-section .process-wrapper .process-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .service-dt-process-section .process-wrapper .process-card {
        padding: 50px 30px;
    }
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card {
        padding: 40px 20px;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content {
    max-width: 380px;
    width: 100%;
}

@media (max-width: 991px) {
    .service-dt-process-section .process-wrapper .process-card .process-content {
        max-width: unset;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content .step-no {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 9px 18px;
    border-radius: 50px;
    background-color: var(--white-color);
    display: inline-block;
    margin-bottom: 35px;
}

@media (max-width: 1399px) {
    .service-dt-process-section .process-wrapper .process-card .process-content .step-no {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .service-dt-process-section .process-wrapper .process-card .process-content .step-no {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card .process-content .step-no {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content h2 {
    color: var(--dark-title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 25px;
    max-width: 272px;
    width: 100%;
}

@media (max-width: 1199px) {
    .service-dt-process-section .process-wrapper .process-card .process-content h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .service-dt-process-section .process-wrapper .process-card .process-content h2 {
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .service-dt-process-section .process-wrapper .process-card .process-content h2 {
        font-size: 33px;
    }
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card .process-content h2 {
        font-size: 27px;
        line-height: 42px;
        margin-bottom: 15px;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content p {
    color: var(--global-text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
}

@media (max-width: 1199px) {
    .service-dt-process-section .process-wrapper .process-card .process-content p {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .service-dt-process-section .process-wrapper .process-card .process-content p {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card .process-content p {
        font-size: 16px;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-dt-process-section .process-wrapper .process-card .process-content ul li {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card .process-content ul li {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

.service-dt-process-section .process-wrapper .process-card .process-content ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .service-dt-process-section .process-wrapper .process-card .process-img {
        width: 300px;
    }
}

@media (max-width: 576px) {
    .service-dt-process-section .process-wrapper .process-card .process-img {
        width: 250px;
    }
}

/*=====================================
  94. Portfolio Grid Page CSS
========================================*/
@keyframes up-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.portfolio-grid-page {
    padding-top: 200px;
}

@media (max-width: 1399px) {
    .portfolio-grid-page {
        padding-top: 190px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-grid-page {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-grid-page {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-grid-page {
        padding-top: 140px;
    }
}

.portfolio-grid-page .portfolio-grid-page-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 1399px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 75px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-grid-page .portfolio-grid-page-title-area h1 {
        font-size: 47px;
    }
}

.portfolio-grid-page .portfolio-grid-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 576px) {
    .portfolio-grid-page .portfolio-grid-page-top {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.portfolio-grid-page .portfolio-grid-page-top .scroll-area {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

.portfolio-grid-page .portfolio-grid-page-top .scroll-area svg {
    fill: var(--dark-text-color);
    animation: up-down 1s linear infinite alternate;
}

.portfolio-grid-page .portfolio-grid-page-top .scroll-area span, .portfolio-grid-page .portfolio-grid-page-top .scroll-area h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
    margin-bottom: 0;
}

.portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list {
        gap: 15px;
        row-gap: 20px;
    }
}

.portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: #F0F0F0;
    transition: 0.5s;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item {
        font-size: 14px;
    }
}

.portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item.active {
    background-color: var(--black-color);
    color: var(--dark-white-color);
}

.portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

.portfolio-grid-page .portfolio-grid-page-top > span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: block;
    padding: 7px 16px;
    border: 1px solid var(--borders-color);
    border-radius: 50px;
}

.portfolio-grid-page .portfolio-tab-wrap .portfolio-card.style-2 .portfolio-content h3 a {
    font-family: var(--font-archivo);
    font-size: 35px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-grid-page .portfolio-tab-wrap .portfolio-card.style-2 .portfolio-content h3 a {
        font-size: 32px;
    }
}

@media (max-width: 1399px) {
    .portfolio-grid-page .portfolio-tab-wrap .portfolio-card.style-2 .portfolio-content h3 a {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .portfolio-grid-page .portfolio-tab-wrap .portfolio-card.style-2 .portfolio-content h3 a {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .portfolio-grid-page .portfolio-tab-wrap .portfolio-card.style-2 .portfolio-content h3 a {
        font-size: 26px;
    }
}

.portfolio-grid-page .portfolio-tab-wrap .single-tab {
    display: none;
}

.portfolio-grid-page .portfolio-tab-wrap .single-tab.show {
    display: block;
}

/*=====================================
  95. Portfolio Pattern Page CSS
========================================*/
.portfolio-pattern-page {
    padding-top: 200px;
}

@media (max-width: 1399px) {
    .portfolio-pattern-page {
        padding-top: 190px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-pattern-page {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-pattern-page {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-pattern-page {
        padding-top: 140px;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 300;
    font-size: 245px;
    line-height: 1;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 1699px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 220px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 200px;
    }
}

@media (max-width: 1399px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 180px;
    }
}

@media (max-width: 1199px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 160px;
    }
}

@media (max-width: 991px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 130px;
    }
}

@media (max-width: 767px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 100px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area h1 {
        font-size: 80px;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

@media (max-width: 991px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area .social-area {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area .social-area {
        gap: 30px;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area > svg {
    fill: var(--borders-color);
}

@media (max-width: 576px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area .social-area > svg {
        display: none;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a {
        width: 40px;
        height: 40px;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a svg {
    fill: var(--title-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a svg {
        width: 14px;
    }
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.portfolio-pattern-page .portfolio-pattern-page-title-area .social-area .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.portfolio-pattern-page .home6-portfolio-section .porfolio-bottom-area h2 {
    display: block;
}

.portfolio-pattern-page .home6-portfolio-section .porfolio-bottom-area p {
    margin: 25px 0 65px;
}

/*=====================================
  96. Portfolio Masonry Page CSS
========================================*/
.portfolio-masonry-page {
    padding-top: 200px;
}

@media (max-width: 1399px) {
    .portfolio-masonry-page {
        padding-top: 190px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-masonry-page {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-masonry-page {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-masonry-page {
        padding-top: 140px;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 12.37vw;
    line-height: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-title-area h1 {
        font-size: 12.2vw;
    }
}

@media (max-width: 1399px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-title-area h1 {
        font-size: 12.2vw;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-title-area h1 .data-text {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    display: block;
    padding: 16px 25px;
    background-color: var(--primary-color1);
    border-radius: 100px;
    position: absolute;
    top: 30%;
    left: 34%;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 991px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-title-area h1 .data-text {
        display: none;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content {
    max-width: 410px;
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content {
        margin-top: 40px;
    }
}

@media (max-width: 1399px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content {
        margin-top: 40px;
    }
}

@media (max-width: 1199px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content {
        margin-top: 25px;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 65px;
}

@media (max-width: 1399px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p {
        font-size: 16px;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content p strong {
    color: var(--title-color);
    font-weight: 500;
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a {
        width: 40px;
        height: 40px;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a svg {
    fill: var(--title-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a svg {
        width: 14px;
    }
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a:hover {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

.portfolio-masonry-page .portfolio-masonry-banner-area .banner-content .social-list li a:hover svg {
    fill: var(--dark-white-color);
}

/*=====================================
  97. Portfolio Details Page CSS
========================================*/
.portfolio-dt-banner-section .portfolio-dt-page-title-area {
    padding-top: 200px;
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area {
        padding-top: 190px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area {
        padding-top: 140px;
    }
}

.portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 75px;
        line-height: 1.1;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-page-title-area h1 {
        font-size: 47px;
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area {
    padding: 0 50px;
    border-top: 1px solid var(--borders-color);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area {
        padding: 0 20px;
    }
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area {
        border: unset;
        padding: 0;
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta {
        display: block;
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    padding: 27px 75px;
    border-right: 1px solid var(--borders-color);
    width: 100%;
    text-align: center;
}

@media (max-width: 1699px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        padding: 27px 65px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        padding: 27px 35px;
    }
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        padding: 27px 22px;
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        padding: 27px 10px;
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        border: 1px solid var(--borders-color);
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        padding: 25px 15px;
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li {
        border: unset;
        border-bottom: 1px solid var(--borders-color);
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:first-child {
    text-align: start;
}

@media (min-width: 992px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:first-child {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:first-child {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:first-child {
        border-top: 1px solid var(--borders-color);
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:last-child {
    text-align: end;
}

@media (min-width: 992px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:last-child {
        padding-right: 0;
        border-right: unset;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:last-child {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:nth-child(1) {
        border-bottom: unset;
        border-right: unset;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:nth-child(1) {
        border-bottom: 1px solid var(--borders-color);
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:nth-child(2) {
        border-bottom: unset;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:nth-child(2) {
        border-bottom: 1px solid var(--borders-color);
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li:nth-child(3) {
        border-right: unset;
    }
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li span {
    font-weight: 400;
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li a {
    color: #3F59DD;
    transition: 0.5s;
}

.portfolio-dt-banner-section .portfolio-dt-meta-area .portfolio-dt-meta li a:hover {
    color: var(--title-color);
}

.portfolio-dt-banner-section .portfolio-dt-gallery-wrap {
    display: grid;
    grid-template-columns: 55.2% 44.8%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap {
        grid-template-columns: 53% 47%;
    }
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap {
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap {
        display: block;
    }
}

.portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 390px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        min-height: 320px;
    }
}

@media (max-width: 1399px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        min-height: 280px;
    }
}

@media (max-width: 1199px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        min-height: 250px;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        max-height: 450px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .single-img img {
        min-height: 250px;
    }
}

.portfolio-dt-banner-section .portfolio-dt-gallery-wrap .img-grp {
    display: grid;
    grid-template-columns: 50% 50%;
}

@media (max-width: 576px) {
    .portfolio-dt-banner-section .portfolio-dt-gallery-wrap .img-grp {
        display: block;
    }
}

.portfolio-dt-banner-section .portfolio-dt-gallery-wrap .gallery-left .single-img {
    height: 100%;
}

.portfolio-dt-info-section .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .portfolio-dt-info-section .title-area h2 {
        font-size: 45px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .title-area h2 {
        font-size: 40px;
        line-height: 1.2;
    }
}

.portfolio-dt-info-section .title-area p {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
    padding-top: 25px;
}

@media (max-width: 991px) {
    .portfolio-dt-info-section .title-area p {
        font-size: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-info-section .title-area p {
        font-size: 16px;
    }
}

.portfolio-dt-info-section .info-wrap {
    padding-top: 70px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap {
        padding-top: 60px;
    }
}

.portfolio-dt-info-section .info-wrap .video-area {
    position: relative;
    display: inline-block;
}

.portfolio-dt-info-section .info-wrap .video-area .play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 145px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-dt-info-section .info-wrap .video-area .play-btn {
        right: 130px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .video-area .play-btn {
        right: 105px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .video-area .play-btn {
        width: 44px;
        height: 44px;
        right: 90px;
    }
}

.portfolio-dt-info-section .info-wrap .video-area .play-btn svg {
    fill: var(--dark-black-color);
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .video-area .play-btn svg {
        width: 14px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 70px;
}

@media (max-width: 1399px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap ul {
        margin-bottom: 60px;
    }
}

@media (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap ul {
        margin-bottom: 50px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap ul li {
        font-size: 17px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap ul li:last-child {
    margin-bottom: 0;
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap {
        justify-content: start;
        gap: 70px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap {
        gap: 30px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter {
    display: flex;
    align-items: end;
    gap: 30px;
    max-width: 235px;
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter {
        gap: 20px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 {
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 strong {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    display: inline-block;
}

@media (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 strong {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 strong {
        font-size: 55px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 sup {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 24px;
    font-weight: 500;
    top: 6px;
    position: absolute;
    margin-left: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 sup {
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter h2 sup {
        font-size: 20px;
    }
}

.portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter span {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-info-section .info-wrap .info-content-wrap .counter-wrap .single-counter span {
        font-size: 14px;
    }
}

.portfolio-dt-gallery2-section .portfolio-gallery-img {
    overflow: hidden;
}

.portfolio-dt-gallery2-section .portfolio-gallery-img img {
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .portfolio-dt-gallery2-section .portfolio-gallery-img img {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-gallery-img img {
        min-height: 400px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .title {
        font-size: 32px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .content p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .content p {
        font-size: 16px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-gallery2-content .content p:last-child {
    margin-bottom: 0;
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area {
    padding-top: 70px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area {
        padding-top: 50px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation {
        flex-wrap: wrap;
        gap: 10px;
        row-gap: 25px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation {
        gap: 10px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: 0.7s;
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow {
        min-width: 70px;
        max-width: 70px;
        height: 70px;
        font-size: 14px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow svg {
    fill: none;
    stroke: var(--title-color);
    transition: 0.5s;
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow:hover {
    color: var(--dark-title-color);
    box-shadow: inset 0 0 0 10em var(--primary-color1);
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow:hover svg {
    stroke: var(--dark-title-color);
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content {
    max-width: 175px;
    width: 100%;
}

@media (max-width: 576px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content {
        max-width: unset;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content h3 {
    margin-bottom: 0;
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content h3 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (max-width: 767px) {
    .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content h3 a {
        font-size: 25px;
    }
}

.portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .content h3 a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

/*=====================================
  98. Portfolio Horizontal Page CSS
========================================*/
.swiper-gl {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.swiper-gl .swiper-slide {
    position: relative;
}

.swiper-gl .swiper-gl-image {
    display: none;
}

.swiper-gl > canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.swiper-gl-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.portfolio-horizontal-slider-page {
    height: 100vh;
    width: 100%;
    position: relative;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item {
    height: 100vh;
    position: relative;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-bg {
    height: 100%;
    width: 100%;
    position: relative;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content {
    padding: 175px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content {
        padding: 150px 0;
    }
}

@media (max-width: 1399px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content {
        padding: 150px 0;
    }
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content {
        padding: 180px 0;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area {
    text-align: center;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 35px;
    line-height: 1.1;
    display: block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area span {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area span {
        font-size: 27px;
    }
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area span {
        font-size: 24px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 {
    line-height: 1;
    margin-bottom: 0;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 145px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 2px;
    background-position: right 85%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 130px;
    }
}

@media (max-width: 1399px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 120px;
    }
}

@media (max-width: 1199px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a {
        font-size: 55px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h1 a:hover, .portfolio-horizontal-slider-page .portfolio-horizontal-slider-item .portfolio-horizontal-slider-content .title-area h2 a:hover {
    background-size: 100% 2px;
    background-position: left 85%;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area {
        padding-bottom: 40px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list {
        order: 1;
    }
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list {
        gap: 15px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(104px);
    backdrop-filter: blur(104px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list li a svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list li a svg {
        width: 14px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper span {
        order: 1;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area {
    max-width: 544px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area {
        max-width: 480px;
    }
}

@media (max-width: 991px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area {
        order: 3;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area {
        gap: 10px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn svg {
    fill: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn {
        font-size: 15px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn:hover {
    color: var(--white-color);
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn:hover svg {
    fill: var(--white-color);
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .slider-btn.swiper-button-disabled {
    opacity: 0.3;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .pf-slider-pagination {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: unset;
    z-index: 9;
    bottom: unset;
    gap: 20px;
}

@media (max-width: 576px) {
    .portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .pf-slider-pagination {
        justify-content: center;
        gap: 10px;
    }
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: var(--white-color);
    opacity: 1;
    position: relative;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet::after {
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-horizontal-slider-page .portfolio-horizontal-bottom-area .bottom-wrapper .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
}

.portfolio-horizontal-slider-page .pf-horizontal-slider {
    cursor: url(../img/innerpages/portfolio-cursor.png), default;
}

/*=====================================
  99. Portfolio Parallax Page CSS
========================================*/
.portfolio-parallax-slider-page {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item {
    height: 100vh;
    position: relative;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-bg {
    height: 100%;
    width: 100%;
    position: relative;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content {
    padding: 175px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content {
        padding: 150px 0;
    }
}

@media (max-width: 1399px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content {
        padding: 150px 0;
    }
}

@media (max-width: 991px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content {
        padding: 180px 0;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area {
    text-align: center;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    padding: 9px 17px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(104px);
    backdrop-filter: blur(104px);
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area span {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area span {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 {
    line-height: 1;
    margin-bottom: 0;
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
    color: var(--white-color);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 400;
    font-size: 145px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 2px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 130px;
    }
}

@media (max-width: 1399px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 110px;
    }
}

@media (max-width: 1199px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a {
        font-size: 55px;
        line-height: 1.2;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h1 a:hover, .portfolio-parallax-slider-page .portfolio-parallax-slider-item .portfolio-parallax-slider-content .title-area h2 a:hover {
    background-size: 100% 2px;
    background-position: left 90%;
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area {
        padding-bottom: 40px;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area {
        order: 3;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area {
        gap: 10px;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s;
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn svg {
    fill: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

@media (max-width: 576px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn {
        font-size: 15px;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn:hover {
    color: var(--white-color);
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn:hover svg {
    fill: var(--white-color);
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .slider-btn.swiper-button-disabled {
    opacity: 0.3;
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .pf-slider-pagination {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: unset;
    z-index: 9;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    line-height: 1;
    gap: 20px;
    margin-bottom: -10px;
}

@media (max-width: 576px) {
    .portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .pf-slider-pagination {
        justify-content: center;
        gap: 10px;
    }
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background-color: var(--white-color);
    opacity: 1;
    position: relative;
    margin: 0;
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet::after {
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-parallax-slider-page .portfolio-parallax-bottom-area .portfolio-slider-btn-area .pf-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
}

.portfolio-parallax-slider-page .pf-parallax-slider {
    height: 100%;
    cursor: url(../img/innerpages/portfolio-cursor.png), default;
}

.portfolio-parallax-slider-page .pf-parallax-slider .swiper-wrapper {
    height: 100%;
}

.portfolio-parallax-slider-page .pf-parallax-slider .swiper-wrapper .swiper-slide {
    height: 100%;
}

.portfolio-parallax-slider-page .pf-parallax-slider .swiper-wrapper .swiper-slide-active span {
    animation: fadeInDown 1.7s;
}

.portfolio-parallax-slider-page .pf-parallax-slider .swiper-wrapper .swiper-slide-active h1, .portfolio-parallax-slider-page .pf-parallax-slider .swiper-wrapper .swiper-slide-active h2 {
    animation: fadeInUp 1.7s;
}

/*=====================================
  100. Portfolio Interactive Hover Page CSS
========================================*/
.portfolio-interactive-hover-page {
    height: 100vh;
    width: 100%;
    padding: 240px 0 130px;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page {
        padding: 160px 0 70px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page {
        padding: 150px 0 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page {
        padding: 140px 0 70px;
    }
}

.portfolio-interactive-hover-page .interactive-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    row-gap: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page .interactive-list {
        row-gap: 40px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page .interactive-list {
        gap: 65px;
        row-gap: 35px;
    }
}

@media (max-width: 1199px) {
    .portfolio-interactive-hover-page .interactive-list {
        gap: 35px;
        row-gap: 35px;
    }
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .interactive-list {
        gap: 25px;
        row-gap: 25px;
        max-height: 440px;
        overflow-y: scroll;
    }

    .portfolio-interactive-hover-page .interactive-list::-webkit-scrollbar {
        width: 0px;
    }
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page .interactive-list {
        row-gap: 25px;
    }
}

.portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-tartuffo-Trial);
    font-weight: 500;
    font-size: 70px;
    line-height: 1;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
        font-size: 65px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
        font-size: 60px;
    }
}

@media (max-width: 1199px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link {
        font-size: 35px;
    }
}

.portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link span {
    font-size: 22px;
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link span {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-link span {
        font-size: 16px;
    }
}

.portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.portfolio-interactive-hover-page .interactive-list .interactive-item .interactive-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.portfolio-interactive-hover-page .interactive-list .interactive-item:first-child .interactive-img {
    opacity: 1;
    visibility: visible;
}

.portfolio-interactive-hover-page .interactive-list .interactive-item.active .interactive-link {
    color: var(--white-color);
}

.portfolio-interactive-hover-page .interactive-list .interactive-item.active .interactive-img {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
    z-index: 1;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area {
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area {
        padding-bottom: 40px;
    }
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list {
        order: 1;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list {
        gap: 15px;
    }
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(104px);
    backdrop-filter: blur(104px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list li a svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list li a svg {
        width: 14px;
    }
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page .portfolio-interactive-bottom-area .bottom-wrapper span {
        order: 1;
    }
}

.portfolio-interactive-hover-page.interactive-scroll {
    padding: 180px 0 130px;
}

@media (max-width: 1699px) {
    .portfolio-interactive-hover-page.interactive-scroll {
        padding: 160px 0 70px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page.interactive-scroll {
        padding: 150px 0 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page.interactive-scroll {
        padding: 140px 0 70px;
    }
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list {
    display: block;
    max-height: 545px;
    overflow-y: scroll;
    text-align: center;
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list::-webkit-scrollbar {
    width: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list {
        max-height: 490px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list {
        max-height: 490px;
    }
}

@media (max-width: 1199px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list {
        max-height: 430px;
    }
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list {
        max-height: 440px;
    }
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-item {
    margin-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-item {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-item {
        margin-bottom: 30px;
    }
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-item:last-child {
    margin-bottom: 0;
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
    font-size: 100px;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    background-size: 100% 0%;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    transition: background-size 0.6s cubic-bezier(0.32, 0.55, 0.58, 0.76);
    background-image: linear-gradient(180deg, #fff 0%, #fff 50%, transparent 50.1%);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 90px;
    }
}

@media (max-width: 1399px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 90px;
    }
}

@media (max-width: 1199px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 75px;
    }
}

@media (max-width: 767px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 65px;
    }
}

@media (max-width: 576px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link {
        font-size: 44px;
        -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.4);
    }
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-list .interactive-link:hover {
    background-size: 100% 200%;
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-scroll-bar-area {
    max-width: 400px;
    width: 100%;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 0 4px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page.interactive-scroll .interactive-scroll-bar-area {
        order: 1;
        flex-basis: 100%;
        margin: 0 auto;
    }
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-scroll-bar-area .page-scroll-bar {
    position: relative;
    flex: 1;
    width: 100%;
    height: 4px;
    background: transparent;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-interactive-hover-page.interactive-scroll .interactive-scroll-bar-area .page-scroll-bar .scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: var(--white-color);
    transition: width 0.1s linear;
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page.interactive-scroll .portfolio-interactive-bottom-area .bottom-wrapper .social-list {
        order: 2;
        flex-basis: 50%;
    }
}

@media (max-width: 991px) {
    .portfolio-interactive-hover-page.interactive-scroll .portfolio-interactive-bottom-area .bottom-wrapper span {
        order: 3;
    }
}

/*=====================================
 101. Portfolio Showcase Page CSS
========================================*/
.portfolio-showcase-page {
    padding-top: 200px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-showcase-page {
        padding-top: 180px;
    }
}

@media (max-width: 1399px) {
    .portfolio-showcase-page {
        padding-top: 180px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-showcase-page {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-showcase-page {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-showcase-page {
        padding-top: 140px;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area {
    max-width: 910px;
    width: 100%;
}

@media (max-width: 1399px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area {
        max-width: 780px;
    }
}

@media (max-width: 1199px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area {
        max-width: 720px;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 90px;
    }
}

@media (max-width: 1399px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 1199px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 78px;
    }
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 60px;
        line-height: 1.1;
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 {
        font-size: 42px;
        line-height: 1.2;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    transform: translateY(10px);
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap {
        display: flex;
        margin-top: 15px;
        transform: translateY(0);
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video {
    display: inline-flex;
    height: 70px;
    padding-right: 44px;
    position: relative;
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video {
        height: 65px;
    }
}

@media (max-width: 767px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video {
        height: 60px;
        padding-right: 40px;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video video {
    width: 70px;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video video {
        width: 65px;
    }
}

@media (max-width: 767px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video video {
        width: 60px;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video .shape {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    fill: var(--primary-color1);
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video .shape {
        height: 65px;
    }
}

@media (max-width: 767px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .banner-video .shape {
        width: 45px;
        height: 60px;
    }
}

.portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .arrow {
    fill: none;
    stroke: var(--black-color);
}

@media (max-width: 991px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .arrow {
        width: 82px;
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-page .portfolio-showcase-page-title-area h1 .video-wrap .arrow {
        width: 70px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase {
    position: relative;
    transition: all 0.45s;
    height: 100%;
}

@media (max-width: 576px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-img img {
        min-height: 325px;
        max-height: 325px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-video {
    height: 100%;
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 576px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-video video {
        min-height: 325px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 40px;
    bottom: 40px;
    transform: scale(0.3);
    transition: all 0.45s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-white-color);
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap {
        left: 30px;
        right: 30px;
        top: 30px;
        bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap {
        left: 20px;
        right: 20px;
        top: 20px;
        bottom: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap {
        left: 15px;
        right: 15px;
        top: 15px;
        bottom: 15px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content {
    padding: 20px 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content {
        padding: 20px;
    }
}

@media (max-width: 1399px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content {
        padding: 20px 10px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content > a {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 15px;
    transition: 0.5s;
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content > a:hover {
    color: var(--dark-title-color);
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 {
    line-height: 1;
    margin-bottom: 16px;
}

@media (min-width: 576px) and (max-width: 767px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 {
        margin-bottom: 12px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
        font-size: 25px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
        font-size: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
        font-size: 24px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
        font-size: 23px;
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a {
        font-size: 26px;
    }
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content h2 a:hover {
    background-size: 100% 1px;
    background-position: 0 95%;
}

.portfolio-showcase-page .single-portfolio-showcase .pf-showcase-content-wrap .pf-shw-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
}

.portfolio-showcase-page .single-portfolio-showcase:hover .pf-showcase-content-wrap {
    transform: scale(1);
    opacity: 1;
}

.portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content span {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content span {
        font-size: 15px;
    }
}

.portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content h3 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content h3 {
        font-size: 24px;
    }
}

.portfolio-showcase-page .pf-showcase-info-area .pf-showcase-info-content h3 strong {
    font-weight: 500;
}

.portfolio-showcase-page .pf-showcase-info-area .service-list {
    padding: 0;
    margin: 0;
    list-style: none;
    max-width: 300px;
    width: 100%;
    margin-left: auto;
}

@media (max-width: 991px) {
    .portfolio-showcase-page .pf-showcase-info-area .service-list {
        margin-left: 0;
    }
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li {
    margin-bottom: 25px;
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li:last-child {
    margin-bottom: 0;
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    display: inline-flex;
    align-items: end;
    gap: 10px;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .portfolio-showcase-page .pf-showcase-info-area .service-list li a {
        font-size: 26px;
    }
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li a svg {
    fill: var(--dark-text-color);
    margin-bottom: 8px;
    transition: 0.5s;
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li a:hover {
    color: var(--dark-text-color);
}

.portfolio-showcase-page .pf-showcase-info-area .service-list li a:hover svg {
    transform: rotate(-90deg);
}

/*=====================================
  102. Portfolio Metro Page CSS
========================================*/
.portfolio-metro-page {
    padding-top: 200px;
}

@media (max-width: 1399px) {
    .portfolio-metro-page {
        padding-top: 190px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-metro-page {
        padding-top: 170px;
    }
}

@media (max-width: 991px) {
    .portfolio-metro-page {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .portfolio-metro-page {
        padding-top: 140px;
    }
}

.portfolio-metro-page .portfolio-metro-page-title-area {
    text-align: center;
}

.portfolio-metro-page .portfolio-metro-page-title-area h1 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 98px;
    line-height: 1;
    margin-bottom: 60px;
    text-align: center;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 1399px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 80px;
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 75px;
        line-height: 1.1;
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 60px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .portfolio-metro-page .portfolio-metro-page-title-area h1 {
        font-size: 46px;
        line-height: 1.2;
    }
}

.portfolio-metro-page .portfolio-metro-page-title-area .scroll-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 16px 27px;
    border-radius: 100px;
    border: 1px solid var(--borders-color);
}

.portfolio-metro-page .portfolio-metro-page-title-area .scroll-area svg {
    fill: var(--title-color);
    animation: up-down 1s linear infinite alternate;
}

.portfolio-metro-page .portfolio-metro-page-title-area .scroll-area span {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    display: block;
}

.portfolio-metro-page .portfolio-metro-wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 325px;
    gap: 0px;
}

@media (max-width: 1399px) {
    .portfolio-metro-page .portfolio-metro-wrap {
        grid-auto-rows: 250px;
    }
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-wrap {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 400px;
    }

    .portfolio-metro-page .portfolio-metro-wrap * {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap {
        grid-auto-rows: 320px;
    }
}

@media (max-width: 767px) {
    .portfolio-metro-page .portfolio-metro-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-metro-page .portfolio-metro-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro {
    overflow: hidden;
    position: relative;
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-wrap .single-pf-metro {
        grid-column: span 3;
        grid-row: auto;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-img {
    height: 100%;
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.75s;
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content {
    text-align: center;
    padding: 16px 37px;
    background-color: var(--dark-white-color);
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content {
        padding: 14px 34px;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content span {
        font-size: 14px;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content h2 {
        font-size: 20px;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro:hover .pf-metro-img img {
    transform: scale(1.05);
}

.portfolio-metro-page .portfolio-metro-wrap .single-pf-metro:hover .pf-metro-content {
    opacity: 1;
}

.portfolio-metro-page .portfolio-metro-wrap .item-1 {
    grid-column: 1/span 5;
    grid-row: 1/span 2;
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap .item-1 {
        grid-column: 1/span 7;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .item-2 {
    grid-column: 6/span 3;
    grid-row: 1/span 1;
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap .item-2 {
        grid-column: 8/span 5;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .item-3 {
    grid-column: 6/span 3;
    grid-row: 2/span 1;
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap .item-3 {
        grid-column: 8/span 5;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .item-4 {
    grid-column: 9/span 2;
    grid-row: 1/span 2;
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap .item-4 {
        grid-column: 10/span 3;
        grid-row: 3/span 2;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .item-5 {
    grid-column: 11/span 2;
    grid-row: 1/span 2;
}

@media (max-width: 991px) {
    .portfolio-metro-page .portfolio-metro-wrap .item-5 {
        grid-row: 3/span 2;
    }
}

.portfolio-metro-page .portfolio-metro-wrap .item-6 {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-7 {
    grid-column: 3/span 5;
    grid-row: 3/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-8 {
    grid-column: 8/span 5;
    grid-row: 3/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-9 {
    grid-column: 1/span 6;
    grid-row: 5/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-10 {
    grid-column: 7/span 6;
    grid-row: 5/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-11 {
    grid-column: 1/span 4;
    grid-row: 7/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-12 {
    grid-column: 5/span 4;
    grid-row: 7/span 2;
}

.portfolio-metro-page .portfolio-metro-wrap .item-13 {
    grid-column: 9/span 4;
    grid-row: 8/span 1;
}

.portfolio-metro-page .portfolio-metro-wrap .item-14 {
    grid-column: 9/span 4;
    grid-row: 7/span 1;
}

/*=====================================
  103. Portfolio Video Page CSS
========================================*/
.portfolio-video-page-banner {
    position: relative;
    height: 100vh;
}

@media (max-width: 576px) {
    .portfolio-video-page-banner {
        height: 620px;
    }
}

.portfolio-video-page-banner video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-video-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.portfolio-video-page-banner .banner-content-wrap {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding: 130px 0 70px;
}

@media (max-width: 767px) {
    .portfolio-video-page-banner .banner-content-wrap {
        padding: 130px 0 50px;
    }
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .banner-content-wrap {
        padding: 130px 0 40px;
    }
}

.portfolio-video-page-banner .banner-content-wrap .banner-title-area {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area {
        margin-bottom: 35px;
    }
}

@media (max-width: 1399px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area {
        margin-bottom: 30px;
    }
}

.portfolio-video-page-banner .banner-content-wrap .banner-title-area span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 35px;
    line-height: 1.3;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area span {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area span {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area span {
        font-size: 24px;
    }
}

.portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 145px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 135px;
    }
}

@media (max-width: 1399px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 125px;
    }
}

@media (max-width: 1199px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 115px;
    }
}

@media (max-width: 991px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 85px;
    }
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .banner-content-wrap .banner-title-area h1 {
        font-size: 65px;
    }
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper {
        gap: 20px;
    }
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list {
        order: 1;
    }
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list {
        gap: 15px;
    }
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(104px);
    backdrop-filter: blur(104px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list li a svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list li a svg {
        width: 14px;
    }
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .scroll-down-btn {
    cursor: pointer;
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .scroll-down-btn {
        order: 2;
        margin: 0 auto;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
    }
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper .scroll-down-btn svg {
    fill: var(--white-color);
}

.portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 576px) {
    .portfolio-video-page-banner .portfolio-video-banner-bottom-area .bottom-wrapper span {
        order: 1;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section {
    border-top: 1px solid var(--borders-color);
}

.pf-video-page-intro-section .pf-video-page-technology-section .title-area {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .title-area {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .title-area {
        margin-bottom: 40px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .title-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .title-area h2 {
        font-size: 30px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .technology-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology {
    min-width: 350px;
    max-width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid var(--borders-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: -45px;
}

@media (max-width: 1399px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology {
        min-width: 312px;
        max-width: 312px;
        height: 312px;
    }
}

@media (max-width: 1199px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology {
        min-width: 255px;
        max-width: 255px;
        height: 255px;
        margin-left: -35px;
    }
}

@media (max-width: 767px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology {
        min-width: 160px;
        max-width: 180px;
        height: 160px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology:first-child {
    margin-left: 0;
}

@media (max-width: 1199px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology img {
        width: 65px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology img {
        width: 35px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology img.dark {
    display: none;
}

.pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    display: block;
    margin-top: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology span {
        font-size: 16px;
        margin-top: 20px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
    padding: 35px 70px;
    background-color: #F0F0F0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1399px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
        padding: 35px 50px;
    }
}

@media (max-width: 991px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
        padding: 30px 40px;
    }
}

@media (max-width: 767px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
        flex-wrap: wrap;
        gap: 30px;
        border-radius: 20px;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
        padding: 40px 20px 30px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area {
    max-width: 235px;
    width: 100%;
    display: flex;
    align-items: end;
    gap: 30px;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area {
        gap: 25px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 70px;
    line-height: 55px;
    position: relative;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area h2 {
        font-size: 60px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area h2 sup {
    font-size: 22px;
    top: 5px;
    position: absolute;
    right: -25px;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area h2 sup {
        right: -22px;
        font-size: 20px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area span {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .customer-rating-area span {
        font-size: 15px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .content {
    max-width: 525px;
    width: 100%;
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .content p {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .content p {
        font-size: 17px;
    }
}

.pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap .content p span {
    color: var(--title-color);
    font-weight: 500;
}

.pf-video-page-gallery-section .mb-24 {
    margin-bottom: 24px;
}

.pf-video-page-gallery-section .pf-video-page-gallery-img {
    position: relative;
    overflow: hidden;
}

.pf-video-page-gallery-section .pf-video-page-gallery-img img {
    min-height: 520px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-img img {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-img img {
        min-height: 400px;
    }
}

.pf-video-page-gallery-section .pf-video-page-gallery-content h2 {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content h2 {
        font-size: 43px;
    }
}

@media (max-width: 767px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content h2 {
        font-size: 34px;
    }
}

.pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap p {
        font-size: 16px;
    }
}

.pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 35px;
}

@media (max-width: 991px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap ul {
        padding-top: 25px;
    }
}

.pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap ul li {
    color: var(--title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.pf-video-page-gallery-section .pf-video-page-gallery-content .content-wrap ul li:last-child {
    margin-bottom: 0;
}

/*=====================================
  104. Portfolio Creative Text Slider Page CSS
========================================*/
@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-creative-text-slider-page {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 120px 0 150px;
    z-index: 1;
    display: flex;
    align-items: end;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page {
        padding: 120px 0 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-creative-text-slider-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 991px) {
    .pf-creative-text-slider-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 767px) {
    .pf-creative-text-slider-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 576px) {
    .pf-creative-text-slider-page {
        align-items: center;
        padding: 150px 0 70px;
    }
}

.pf-creative-text-slider-page .video-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pf-creative-text-slider-page .video-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.3);
}

.pf-creative-text-slider-page .video-area video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap {
    width: 100%;
    position: relative;
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-img img {
    max-height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-img img {
        max-height: 450px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-img img {
        max-height: 450px;
    }
}

@media (max-width: 1199px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-img img {
        max-height: 420px;
    }
}

@media (max-width: 576px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-img img {
        min-height: 380px;
    }
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content {
    text-align: center;
    padding-top: 30px;
    transition: 0.3s ease-in-out !important;
    opacity: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content {
        padding-top: 25px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content {
        padding-top: 25px;
    }
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 {
    margin-bottom: 0;
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: center;
    display: inline-block;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a {
        font-size: 45px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .single-creative-text-slide .pf-creative-text-slider-content h2 a {
        font-size: 34px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-wrap .pf-creative-text-slider {
        margin: 0 70px;
    }
}

.pf-creative-text-slider-page .pf-creative-text-slider-wrap .pf-creative-text-slider .swiper-slide-active .pf-creative-text-slider-content {
    animation: fadeInUp2 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 1.2s;
}

.pf-creative-text-slider-page .pf-creative-text-slider-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-bottom-area {
        padding-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-bottom-area {
        padding-bottom: 30px;
    }
}

.pf-creative-text-slider-page .pf-creative-text-slider-bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pf-creative-text-slider-page .pf-creative-text-slider-bottom-area ul li {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.pf-creative-text-slider-page .pf-creative-text-slider-bottom-area ul li a {
    color: var(--white-color);
    transition: 0.5s;
}

.pf-creative-text-slider-page .pf-creative-text-slider-bottom-area ul li a:hover {
    color: var(--primary-color1);
}

.pf-creative-text-slider-page .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .social-list {
        left: 10px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .social-list {
        left: 10px;
    }
}

@media (max-width: 991px) {
    .pf-creative-text-slider-page .social-list {
        display: none;
    }
}

.pf-creative-text-slider-page .social-list li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.pf-creative-text-slider-page .social-list li a svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .pf-creative-text-slider-page .social-list li a svg {
        width: 14px;
    }
}

.pf-creative-text-slider-page .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.pf-creative-text-slider-page .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-paginations {
        right: 10px;
    }
}

@media (max-width: 1399px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-paginations {
        right: 10px;
    }
}

@media (max-width: 991px) {
    .pf-creative-text-slider-page .pf-creative-text-slider-paginations {
        display: none;
    }
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations span {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations span.pf-total {
    color: var(--dark-text-color);
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations .pf-progress {
    width: 12px;
    height: 148px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    padding: 3px;
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations .pf-progress .pf-progress-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
}

.pf-creative-text-slider-page .pf-creative-text-slider-paginations .pf-progress .pf-progress-track .pf-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-color1);
    border-radius: 10px;
    transition: height 0.6s ease;
}

/*=====================================
  105. Portfolio Caption Cursor Page CSS
========================================*/
.pf-caption-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-black-color);
    padding-left: 0;
    padding-right: 0;
    color: var(--primary-color1);
    pointer-events: none;
    clip-path: circle(0 at var(--x, 50%) var(--y, 50%));
    transition: clip-path 0.12s;
    will-change: clip-path;
    pointer-events: none;
}

.pf-caption-cursor-page .mb-200 {
    margin-bottom: 200px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .mb-200 {
        margin-bottom: 180px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .mb-200 {
        margin-bottom: 160px;
    }
}

@media (max-width: 1199px) {
    .pf-caption-cursor-page .mb-200 {
        margin-bottom: 130px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .mb-200 {
        margin-bottom: 110px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .mb-200 {
        margin-bottom: 24px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-page-title-area {
    position: relative;
}

.pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
    padding: 170px 50px 150px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1699px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
        padding: 170px 10px 150px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
        padding: 150px 10px 120px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
        padding: 150px 10px 110px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
        padding: 140px 10px 90px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner {
        padding: 140px 10px 80px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 245px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 230px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 200px;
    }
}

@media (max-width: 1199px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 180px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 150px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 110px;
    }
}

@media (max-width: 576px) {
    .pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-banner-title {
        font-size: 65px;
        line-height: 1.1;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-page-title-area .pf-caption-banner-inner .pf-caption-mask-inner .pf-caption-banner-title {
    color: var(--primary-color1);
}

.pf-caption-cursor-page .pf-caption-cursor-wrap {
    padding-top: 70px;
    border-top: 1px solid var(--borders-color);
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap {
        padding-top: 50px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-img-grp {
    display: flex;
    align-items: start;
    gap: 30px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-img-grp {
        gap: 25px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-img-grp {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-img-grp {
        flex-direction: column;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-img-grp.two {
    align-items: end;
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card {
        width: 100%;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card img {
    -o-object-fit: cover;
    object-fit: cover;
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content {
    padding: 20px 25px;
    border-radius: 10px;
    background-color: var(--primary-color1);
    -webkit-mask-image: url(../img/innerpages/pf-caption-cursor-content-bg.png);
    mask-image: url(../img/innerpages/pf-caption-cursor-content-bg.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 242px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content {
        padding: 18px 20px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content {
        padding: 18px 15px;
        min-width: 232px;
        -webkit-mask-position: right;
        mask-position: right;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content span {
    color: var(--dark-title-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    padding-left: 11px;
    position: relative;
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dark-black-color);
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content h3 {
    color: var(--dark-title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card .pf-caption-cursor-content h3 {
        font-size: 20px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card:hover .pf-caption-cursor-content {
    opacity: 1;
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
    max-width: 455px;
    max-height: 550px;
    min-height: 550px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
        max-width: 445px;
        max-height: 530px;
        min-height: 530px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
        max-width: 445px;
        max-height: 530px;
        min-height: 530px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
        max-width: 435px;
        max-height: 480px;
        min-height: 480px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
        max-width: 370px;
        min-width: 370px;
        max-height: 480px;
        min-height: 480px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.tall-img img {
        max-width: unset;
        min-width: unset;
        max-height: 450px;
        min-height: 450px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
    max-width: 410px;
    min-height: 350px;
    max-height: 350px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
        min-height: 320px;
        max-height: 320px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
        min-height: 320px;
        max-height: 320px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
        min-height: 280px;
        max-height: 280px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
        max-width: 300px;
        min-height: 300px;
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.sm-img img {
        max-width: unset;
        min-width: unset;
        max-height: 450px;
        min-height: 450px;
        width: 100%;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
    max-width: 785px;
    min-height: 650px;
    max-height: 650px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
        min-height: 600px;
        max-height: 600px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
        min-height: 580px;
        max-height: 580px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
        min-height: 570px;
        max-height: 570px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
        min-height: 550px;
        max-height: 550px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.large-img img {
        max-width: unset;
        min-width: unset;
        max-height: 450px;
        min-height: 450px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
    max-width: 1290px;
    min-height: 650px;
    max-height: 650px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
        min-height: 600px;
        max-height: 600px;
    }
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
        min-height: 600px;
        max-height: 600px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
        min-height: 550px;
        max-height: 550px;
    }
}

@media (max-width: 991px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
        min-height: 530px;
        max-height: 530px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.wide-img img {
        max-width: unset;
        min-width: unset;
        max-height: 450px;
        min-height: 450px;
    }
}

.pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.mini-img img {
    max-width: 345px;
    width: 100%;
    min-height: 350px;
    max-height: 350px;
}

@media (max-width: 1399px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.mini-img img {
        max-width: 260px;
        min-height: 320px;
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .pf-caption-cursor-page .pf-caption-cursor-wrap .pf-caption-cursor-card.mini-img img {
        max-width: unset;
        min-width: unset;
        max-height: 450px;
        min-height: 450px;
    }
}

/*=====================================
  106. Portfolio Carousel Page CSS
========================================*/
.portfolio-carousel-page {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 130px 0 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-carousel-page {
        padding: 100px 0 70px;
    }
}

@media (max-width: 1399px) {
    .portfolio-carousel-page {
        padding: 100px 0 70px;
    }
}

@media (max-width: 576px) {
    .portfolio-carousel-page {
        padding: 90px 0 70px;
    }
}

.portfolio-carousel-page .portfolio-carousel-content {
    text-align: center;
    opacity: 0;
}

.portfolio-carousel-page .portfolio-carousel-content span {
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 10px 18px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .portfolio-carousel-page .portfolio-carousel-content span {
        padding: 8px 18px;
        font-size: 14px;
    }
}

.portfolio-carousel-page .portfolio-carousel-content h1, .portfolio-carousel-page .portfolio-carousel-content h2 {
    margin-bottom: 0;
}

.portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 600;
    font-size: 100px;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 92%;
    transition: background-size 0.75s;
}

.portfolio-carousel-page .portfolio-carousel-content h1 a:hover, .portfolio-carousel-page .portfolio-carousel-content h2 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 92%;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 87px;
    }
}

@media (max-width: 1399px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .portfolio-carousel-page .portfolio-carousel-content h1 a, .portfolio-carousel-page .portfolio-carousel-content h2 a {
        font-size: 55px;
        line-height: 1.1;
    }
}

.portfolio-carousel-page .portfolio-carousel-content p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.portfolio-carousel-page .portfolio-carousel-img-slider-wrap {
    padding-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .portfolio-carousel-page .portfolio-carousel-img-slider-wrap {
        padding-top: 35px;
        margin-bottom: 35px;
    }
}

@media (max-width: 1399px) {
    .portfolio-carousel-page .portfolio-carousel-img-slider-wrap {
        padding-top: 35px;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .portfolio-carousel-page .portfolio-carousel-img-slider-wrap {
        padding: 25px 10px 0;
        margin-bottom: 30px;
    }
}

.portfolio-carousel-page .portfolio-carousel-img-slider-wrap .portfolio-carousel-img {
    border-radius: 20px;
    display: block;
}

@media (max-width: 576px) {
    .portfolio-carousel-page .portfolio-carousel-img-slider-wrap .portfolio-carousel-img {
        border-radius: 10px;
    }
}

.portfolio-carousel-page .portfolio-carousel-img-slider-wrap .portfolio-carousel-img img {
    border-radius: inherit;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-carousel-page .copyright-text {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    display: block;
    text-align: center;
}

.portfolio-carousel-page .portfolio-carousel-content-slider .swiper-slide-active .portfolio-carousel-content {
    animation: fadeInDown 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 0.5s;
}

/*=====================================
  107. Portfolio Coverflow Page CSS
========================================*/
.pf-coverflow-page {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 120px 0 130px;
    z-index: 1;
    display: flex;
    align-items: end;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-coverflow-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 1399px) {
    .pf-coverflow-page {
        padding: 120px 0 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-coverflow-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 991px) {
    .pf-coverflow-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 767px) {
    .pf-coverflow-page {
        padding: 120px 0 70px;
    }
}

@media (max-width: 576px) {
    .pf-coverflow-page {
        align-items: center;
        padding: 150px 10px 70px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap {
    width: 100%;
    position: relative;
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 576px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-img img {
        min-height: 380px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content {
    text-align: center;
    padding-top: 30px;
    transition: 0.3s ease-in-out !important;
    opacity: 0;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content {
        padding-top: 25px;
    }
}

@media (max-width: 1399px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content {
        padding-top: 25px;
    }
}

@media (max-width: 1199px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content {
        padding-top: 20px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 {
    margin-bottom: 0;
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: center;
    display: inline-block;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

@media (max-width: 1699px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 45px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 42px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 35px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content h2 a {
        font-size: 32px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-bottom: 2px;
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li {
    display: flex;
    color: var(--text-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li {
        font-size: 13px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li {
        font-size: 12px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li a, .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li span {
    color: var(--text-color);
    padding: 7px 17px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li a, .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li span {
        padding: 7px 14px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li a, .pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li span {
        padding: 7px 12px;
    }
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li a {
    transition: 0.5s;
}

.pf-coverflow-page .pf-coverflow-slider-wrap .single-coverflow-slide .pf-coverflow-slider-content ul li a:hover {
    background-color: var(--primary-color1);
    color: var(--dark-title-color);
}

.pf-coverflow-page .pf-coverflow-slider-wrap .portfolio-coverflow-slider .swiper-slide-active .pf-coverflow-slider-content {
    animation: fadeInUp2 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 0.8s;
}

.pf-coverflow-page .pf-coverflow-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-coverflow-page .pf-coverflow-bottom-area {
        padding-bottom: 40px;
    }
}

@media (max-width: 1399px) {
    .pf-coverflow-page .pf-coverflow-bottom-area {
        padding-bottom: 30px;
    }
}

.pf-coverflow-page .pf-coverflow-bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pf-coverflow-page .pf-coverflow-bottom-area ul li {
    color: var(--title-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.pf-coverflow-page .pf-coverflow-bottom-area ul li a {
    color: var(--title-color);
    display: inline-block;
    background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1px;
    background-position: right 100%;
    transition: background-size 0.75s;
}

.pf-coverflow-page .pf-coverflow-bottom-area ul li a:hover {
    background-size: 100% 1px;
    background-position: 0 100%;
}

/*=====================================
  108. Portfolio Thumb Slider Page CSS
========================================*/
.pf-thumb-slider-page {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-black-color);
}

.pf-thumb-slider-page .pf-paralax-img-slider-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9;
    pointer-events: auto;
    transition: opacity 0.5s ease, z-index 0.5s ease;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    will-change: transform;
}

@media (max-width: 1199px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap {
        gap: 25px;
    }
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide {
    flex: 0 0 auto;
    width: 410px;
    height: 532px;
    position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide {
        width: 380px;
        height: 450px;
    }
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 1199px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide {
        width: 320px;
        height: 400px;
    }
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 100% center;
    object-position: 100% center;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.5s;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide .overlay .expand-slide-btn {
    cursor: pointer;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide .overlay .expand-slide-btn svg {
    fill: var(--white-color);
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-wrap .single-paralax-img-slide:hover .overlay {
    opacity: 1;
    transform: scaleY(1);
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list {
        padding-bottom: 30px;
    }
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title {
    display: none;
    will-change: transform, opacity;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title a {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 90%;
    transition: background-size 0.75s;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title a {
        font-size: 46px;
    }
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title a {
        font-size: 46px;
    }
}

@media (max-width: 1199px) {
    .pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title a {
        font-size: 42px;
    }
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title a:hover {
    background-size: 100% 1.5px;
    background-position: 0 90%;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area .pf-paralax-img-slider-title-list .single-pf-paralax-title.active {
    display: block;
}

.pf-thumb-slider-page .pf-paralax-img-slider-area.hide {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap {
    position: relative;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.6s ease;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content {
    text-align: center;
    opacity: 0;
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content {
        margin-top: -50px;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 {
    margin-bottom: 0;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
    color: var(--white-color);
    font-family: var(--font-felidae);
    font-weight: 400;
    font-size: 145px;
    line-height: 1;
    text-transform: uppercase;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a span, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a span {
    display: inline-block;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 84%;
    transition: background-size 0.75s;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a:hover span, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a:hover span {
    background-size: 100% 1.5px;
    background-position: 0 84%;
}

@media (max-width: 1799px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 135px;
    }
}

@media (max-width: 1699px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 130px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 115px;
    }
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 105px;
    }
}

@media (max-width: 1199px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 95px;
    }
}

@media (max-width: 991px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 80px;
    }
}

@media (max-width: 576px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h1 a, .pf-thumb-slider-page .pf-thumb-slider-wrap .single-pf-thumb-slider .pf-thumb-slider-content h2 a {
        font-size: 65px;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .pf-thumb-bg-img-slider {
    cursor: url(../img/innerpages/portfolio-cursor.png), default;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .pf-thumb-bg-img-slider .swiper-slide-active .pf-thumb-slider-content {
    animation: fadeInDown 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 1.2s;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 70px;
    z-index: 2;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area {
        padding-bottom: 50px;
    }
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area {
        padding-bottom: 50px;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1399px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
        max-width: 840px;
    }
}

@media (max-width: 1199px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
        max-width: 750px;
    }
}

@media (max-width: 991px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
        max-width: 550px;
    }
}

@media (max-width: 767px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider {
        max-width: 280px;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider .single-pf-sm-slide {
    position: relative;
    cursor: pointer;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider .single-pf-sm-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.25);
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider .single-pf-sm-slide img {
    min-height: 85px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider .single-pf-sm-slide img {
        min-height: 75px;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .pf-thumb-sm-img-slider .swiper-slide-thumb-active .single-pf-sm-slide::before {
    opacity: 0;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 1;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn svg {
    fill: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}

@media (max-width: 576px) {
    .pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn {
        display: none;
    }
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn:hover {
    color: var(--white-color);
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn:hover svg {
    fill: var(--white-color);
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn.pf-thumb-bg-img-slider-next {
    left: unset;
    right: 10px;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap .navigation-and-sm-img-slider-area .slider-btn.swiper-button-disabled {
    opacity: 0.3;
}

.pf-thumb-slider-page .pf-thumb-slider-wrap.show {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/*=====================================
  109. Portfolio Scroll Split Page CSS
========================================*/
.pf-scroll-split-page {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(../img/innerpages/pf-scroll-split-page-bg.png), linear-gradient(180deg, rgb(2, 2, 2) 0%, rgb(2, 2, 2) 100%);
}

@media (max-width: 991px) {
    .pf-scroll-split-page {
        height: 100%;
        padding-top: 100px;
    }
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area {
    position: relative;
    height: 100%;
    perspective: 1400px;
    perspective-origin: left center;
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-img-slider-area {
        max-height: 500px;
    }
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider {
    height: 100%;
    overflow: hidden; /* important for 3D */
    transform-style: preserve-3d;
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider .swiper-wrapper {
    transform-style: preserve-3d;
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider .swiper-wrapper .swiper-slide {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider .swiper-wrapper .swiper-slide .pf-scroll-split-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider .swiper-wrapper .swiper-slide .pf-scroll-split-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    backface-visibility: hidden;
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-img-slider-area .pf-scroll-split-img-slider .swiper-wrapper .swiper-slide .pf-scroll-split-img img {
        max-height: 500px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area {
    height: 100%;
    position: relative;
    padding: 160px 50px 170px 70px;
    z-index: 1;
}

@media (max-width: 1699px) {
    .pf-scroll-split-page .pf-scroll-split-content-area {
        padding: 130px 10px 150px 50px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .pf-scroll-split-content-area {
        padding: 120px 10px 100px 30px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .pf-scroll-split-content-area {
        padding: 120px 10px 100px 30px;
    }
}

@media (max-width: 1199px) {
    .pf-scroll-split-page .pf-scroll-split-content-area {
        padding: 100px 10px 90px 20px;
    }
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-content-area {
        padding: 60px 10px 50px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
}

@media (max-width: 576px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap {
        gap: 40px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area {
    opacity: 0;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area span {
    color: var(--white-color);
    font-family: var(--font-spaceGrotesk);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    display: inline-block;
    padding: 9px 17px;
    border-radius: 100px;
    border: 1px solid rgba(var(--white-color-opc), 0.15);
    margin-bottom: 25px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area span {
        margin-bottom: 20px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area span {
        margin-bottom: 20px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 {
    margin-bottom: 0;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 600;
    font-size: 100px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a:hover, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a:hover {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

@media (max-width: 1699px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 95px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 85px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 78px;
    }
}

@media (max-width: 1199px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 68px;
    }
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 62px;
    }
}

@media (max-width: 576px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h1 a, .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .title-area h2 a {
        font-size: 48px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area {
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 65px;
}

@media (max-width: 1699px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul {
        margin-bottom: 55px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul {
        margin-bottom: 45px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul {
        margin-bottom: 45px;
    }
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul {
        margin-bottom: 35px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul li {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul li {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area ul li:last-child {
    margin-bottom: 0;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area .primary-btn1 {
    color: var(--dark-title-color);
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area .primary-btn1 svg {
    fill: var(--dark-title-color);
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-wrap .bottom-area .primary-btn1::after {
    background-color: var(--white-color);
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-slider {
    height: 100%;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-slider .swiper-slide-active .title-area {
    animation: fadeInDown 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 0.3s;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pf-scroll-split-content-slider .swiper-slide-active .bottom-area {
    animation: fadeInUp2 0.5s ease forwards;
    transition: opacity 0.5s ease;
    animation-delay: 0.3s;
}

.pf-scroll-split-page .pf-scroll-split-content-area .vector {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
    position: absolute;
    bottom: 60px;
    left: 0;
    padding: 0 50px 0 70px;
    min-height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1699px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
        padding: 0 10px 0 50px;
        bottom: 40px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
        bottom: 30px;
        padding: 0 10px 0 30px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
        bottom: 25px;
        padding: 0 10px 0 30px;
    }
}

@media (max-width: 991px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
        position: initial;
        padding: 0;
        bottom: unset;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area {
        flex-wrap: wrap;
    }
}

.pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area > span {
    color: var(--white-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

.pf-scroll-split-page .pf-scroll-split-content-area .pagination-and-copyright-area .social-list {
    position: relative;
    bottom: unset;
    left: unset;
}

.pf-scroll-split-page .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 60px;
    left: 50px;
    z-index: 1;
}

@media (max-width: 1699px) {
    .pf-scroll-split-page .social-list {
        left: 10px;
        bottom: 40px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .pf-scroll-split-page .social-list {
        bottom: 30px;
    }
}

@media (max-width: 1399px) {
    .pf-scroll-split-page .social-list {
        bottom: 25px;
    }
}

@media (max-width: 576px) {
    .pf-scroll-split-page .social-list {
        gap: 15px;
    }
}

.pf-scroll-split-page .social-list li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(104px);
    backdrop-filter: blur(104px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.pf-scroll-split-page .social-list li a svg {
    fill: var(--white-color);
    transition: 0.5s;
}

@media (max-width: 767px) {
    .pf-scroll-split-page .social-list li a svg {
        width: 14px;
    }
}

.pf-scroll-split-page .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

.pf-scroll-split-page .social-list li a:hover svg {
    fill: var(--dark-title-color);
}

.pf-scroll-split-page .swiper-pagination {
    position: relative;
    bottom: unset;
    top: unset;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pf-scroll-split-page .swiper-pagination .swiper-pagination-current, .pf-scroll-split-page .swiper-pagination .swiper-pagination-total {
    color: var(--white-color);
    font-family: var(--font-kanit);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    min-width: 20px;
}

.pf-scroll-split-page .swiper-pagination .pf-split-pagi-line {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
}

@media (max-width: 991px) {
    .pf-scroll-split-page .swiper-pagination {
        position: absolute;
        top: -50px;
        justify-content: center;
    }
}

/*=====================================
  110. Terms & Condition Page CSS
========================================*/
@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions-top-area {
        padding-bottom: 30px;
        margin-bottom: 40px;
        border-bottom: 1px solid var(--borders-color);
    }
}

.terms-and-conditions-page .terms-and-conditions-top-area .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border: 1px solid var(--borders-color);
    border-radius: 10px;
    max-width: 309px;
    margin-bottom: 25px;
}

.terms-and-conditions-page .terms-and-conditions-top-area .tag strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions-top-area .tag strong {
        font-size: 15px;
    }
}

.terms-and-conditions-page .terms-and-conditions-top-area .tag svg {
    fill: var(--borders-color);
}

.terms-and-conditions-page .terms-and-conditions-top-area .tag span {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions-top-area .tag span {
        font-size: 15px;
    }
}

.terms-and-conditions-page .terms-and-conditions-top-area p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions-top-area p {
        font-size: 16px;
    }
}

.terms-and-conditions-page .divider-line {
    fill: var(--borders-color);
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .terms-and-conditions-page .divider-line {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .terms-and-conditions-page .divider-line {
        display: none;
    }
}

.terms-and-conditions-page .terms-and-conditions h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }
}

.terms-and-conditions-page .terms-and-conditions p {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions p {
        font-size: 16px;
    }
}

.terms-and-conditions-page .terms-and-conditions p:last-child {
    margin-bottom: 0;
}

.terms-and-conditions-page .terms-and-conditions ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 50px;
    margin-bottom: 5px;
    padding-top: 5px;
}

@media (max-width: 767px) {
    .terms-and-conditions-page .terms-and-conditions ul {
        padding-left: 20px;
    }
}

.terms-and-conditions-page .terms-and-conditions ul li {
    color: var(--text-color);
    font-family: var(--font-kanit);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .terms-and-conditions-page .terms-and-conditions ul li {
        font-size: 16px;
    }
}

.terms-and-conditions-page .terms-and-conditions ul li strong {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 600;
}

/*=====================================
  111. Error Page CSS
========================================*/
.error-page {
    background-image: url(../img/innerpages/error-page-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 180px;
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .error-page {
        padding-top: 160px;
    }
}

@media (max-width: 1399px) {
    .error-page {
        padding-top: 160px;
    }
}

@media (max-width: 1199px) {
    .error-page {
        padding-top: 140px;
    }
}

@media (max-width: 576px) {
    .error-page {
        padding-top: 120px;
    }
}

.error-page .error-wrapper {
    text-align: center;
}

.error-page .error-wrapper img {
    margin-bottom: 65px;
}

@media (max-width: 1399px) {
    .error-page .error-wrapper img {
        max-width: 550px;
    }
}

@media (max-width: 1199px) {
    .error-page .error-wrapper img {
        max-width: 520px;
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .error-page .error-wrapper img {
        max-width: 480px;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .error-page .error-wrapper img {
        max-width: 100%;
        margin-bottom: 45px;
    }
}

.error-page .error-wrapper img.dark {
    display: none;
}

.error-page .error-wrapper h2 {
    color: var(--title-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .error-page .error-wrapper h2 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .error-page .error-wrapper h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .error-page .error-wrapper h2 {
        font-size: 38px;
    }
}

.error-page .error-wrapper p {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .error-page .error-wrapper p {
        font-size: 20px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .error-page .error-wrapper p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 576px) {
    .error-page .error-wrapper p {
        font-size: 17px;
        margin-bottom: 30px;
    }
}

.error-page .error-wrapper .primary-btn1 {
    min-width: 226px;
}

@media (max-width: 576px) {
    .error-page .error-wrapper .primary-btn1 {
        min-width: unset;
    }
}

body.dark #particle-ball {
    --ball-color: rgba(255, 255, 255, 0.2);
}

body.dark .primary-btn5.transparent {
    background-color: var(--borders-color);
    color: var(--title-color);
    border: 1px solid var(--borders-color);
    transition: 0.5s;
}

body.dark .primary-btn5.transparent span {
    background: #141414;
    border-radius: 100px;
    padding: 22px 37px;
}

body.dark .primary-btn5.transparent:hover {
    background-color: var(--primary-color1);
}

body.dark .primary-btn5.transparent:hover .btn-text {
    color: var(--dark-title-color);
}

body.dark .circle-btn.two {
    background-color: #020202;
    border-color: #020202;
}

body.dark .breadcrumb-section .breadcrumb-content span {
    background-color: #1E1E1E;
}

body.dark header.style-2 .company-logo .light {
    display: none;
}

body.dark header.style-2 .company-logo .dark {
    display: block;
}

body.dark header.style-2 .mobile-logo-area .mobile-logo-wrap .light {
    display: none;
}

body.dark header.style-2 .mobile-logo-area .mobile-logo-wrap .dark {
    display: block;
}

@media (min-width: 992px) {
    body.dark header.style-2 .main-menu > ul > li .mega-menu {
        background-color: #1E1E1E;
    }
}

@media (min-width: 992px) {
    body.dark header.style-2 .main-menu > ul > li ul.sub-menu {
        background-color: #1E1E1E;
    }
}

@media (min-width: 992px) {
    body.dark header.style-2.two .main-menu > ul {
        background-color: #1E1E1E;
    }
}

body.dark blockquote {
    background-color: #1E1E1E;
}

body.dark .home1-banner-section {
    background-color: #1E1E1E;
}

body.dark .home1-banner-section .shape {
    display: none;
}

body.dark .home1-banner-section .social-list li a {
    background-color: #020202;
}

body.dark .home1-banner-section .banner-content-wrap .banner-content .btn-and-rating-area .rating-area svg path:last-child {
    fill: var(--white-color);
}

body.dark .home1-call-section .call-wrapper {
    background-color: #1E1E1E;
}

body.dark .home1-service-section {
    background-color: #020202;
}

body.dark .home1-service-section .service-list .single-service {
    background-color: #141414;
}

body.dark .testimonial-card {
    background-color: #1E1E1E;
}

body.dark .slider-btn-grp .slider-btn {
    background-color: #020202;
}

body.dark .slider-btn-grp .slider-btn:hover {
    background-color: var(--white-color);
}

body.dark .slider-btn-grp .slider-btn:hover svg {
    fill: var(--dark-title-color);
}

body.dark .paginations .swiper-pagination-bullet {
    background-color: #999;
}

body.dark .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: var(--black-color);
    border-color: var(--black-color);
}

body.dark .home2-banner-section {
    background-image: linear-gradient(180deg, #141414 33.15%, rgba(20, 20, 20, 0.5) 100%), url(../img/home2/home2-banner-bg-dark.png);
}

body.dark .home2-banner-section .banner-video-area {
    background-color: #1E1E1E;
}

body.dark .service-card {
    background-color: #1E1E1E;
}

body.dark .service-card .content .primary-btn1::after {
    background-color: var(--primary-color1);
}

body.dark .service-card .content .primary-btn1:hover {
    color: var(--dark-title-color);
}

body.dark .service-card .content .primary-btn1:hover > span svg {
    fill: var(--dark-title-color);
}

body.dark .home2-testimonial-section {
    background-color: #020202;
}

body.dark .home2-award-section .award-table tbody tr:hover {
    background-color: #020202;
}

body.dark .home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area {
    background-color: #1E1E1E;
}

body.dark .home3-banner-section .banner-wrapper .banner-rating-and-info-area .rating-area svg path:last-child {
    fill: var(--white-color);
}

body.dark .home5-service-section .service-card2::before {
    background: linear-gradient(180deg, #141414 80.17%, #C2EE10 100%);
}

body.dark .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li a {
    background-color: #1E1E1E;
}

body.dark .home5-portfolio-section .single-portfolio .portfolio-content-wrap .content ul li a:hover {
    background-color: var(--primary-color1);
}

body.dark .testimonial-card2.three {
    background-color: #1E1E1E;
}

body.dark .blog-card2 .blog-content .primary-btn1::after {
    background-color: var(--primary-color1);
}

body.dark .blog-card2.three .blog-content .primary-btn1::after {
    background-color: var(--primary-color1);
}

body.dark .blog-card2.three .blog-content .primary-btn1:hover {
    border-color: var(--primary-color1);
}

body.dark .blog-card3 .blog-content-wrap {
    background-color: #1E1E1E;
}

body.dark .home6-about-section .about-content .btn-and-rating-area .rating-area svg path:last-child {
    fill: var(--white-color);
}

body.dark .home6-testimonial-section .testimonial-rating-area {
    background-color: #1E1E1E;
}

body.dark .home6-testimonial-section .testimonial-wrapper {
    background-color: #1E1E1E;
}

body.dark .home6-award-section .award-wrapper .founder-area .founder-content {
    background-color: #1E1E1E;
}

body.dark .home6-award-section .award-wrapper .award-list .single-award .award-logo-area img.dark {
    display: block;
}

body.dark .home6-award-section .award-wrapper .award-list .single-award .award-logo-area img.light {
    display: none;
}

body.dark .home7-banner-section .banner-wrapper .banner-right-content .rating-area svg path:last-child {
    fill: var(--white-color);
}

body.dark .home7-banner-section .banner-wrapper h1 span, body.dark .home7-banner-section .banner-wrapper h2 span {
    color: var(--primary-color1);
}

body.dark .home7-banner-section .banner-wrapper .banner-left-content .left-content svg {
    stroke: var(--primary-color1);
}

body.dark .home7-banner-section .banner-bottom-area .banner-bottom-wrap .bar-and-info .info svg {
    fill: var(--primary-color1);
}

body.dark .home7-banner-section .banner-bottom-area .banner-bottom-wrap .founded-year {
    color: var(--text-color);
    font-family: var(--font-archivo);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--borders-color);
    border-radius: 100px;
}

body.dark .home7-portfolio-section .slider-btn-grp .slider-btn {
    background-color: #1E1E1E;
}

body.dark .home7-portfolio-section .slider-btn-grp .slider-btn:hover {
    background-color: var(--primary-color1);
}

body.dark .home7-team-section .bottom-area .bottom-wrapper {
    background-color: #141414;
}

body.dark .home7-team-section .bottom-area .bottom-wrapper a {
    color: var(--primary-color1);
}

body.dark .home7-team-section .bottom-area .bottom-wrapper a svg {
    stroke: var(--primary-color1);
}

body.dark .home7-team-section .bottom-area .bottom-wrapper a span {
    background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
    background-repeat: no-repeat;
    background-size: 0px 1.5px;
    background-position: right 95%;
    transition: background-size 0.75s;
}

body.dark .home7-team-section .bottom-area .bottom-wrapper a:hover span {
    background-size: 100% 1.5px;
    background-position: 0 95%;
}

body.dark .home7-team-section .bottom-area::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--borders-color);
    z-index: -1;
}

body.dark .home7-testimonial-section {
    background-color: #020202;
}

body.dark .home7-testimonial-section .testimonial-card.two {
    background-color: #141414;
}

body.dark .home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn {
    background-color: #141414;
    border-color: #141414;
}

body.dark .home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn:hover {
    background-color: var(--white-color);
    border-color: var(--white-color);
}

body.dark .home7-testimonial-section .rate-and-slider-btn-wrap .slider-btn-grp .slider-btn.swiper-button-disabled {
    opacity: 0.5;
}

body.dark .award-table tbody tr:hover {
    background-color: #020202;
}

body.dark .team-card2 .team-img {
    background-color: #020202;
}

body.dark .home8-award-section .award-table2 tbody tr:hover {
    background-color: #020202;
    border-color: #020202;
}

body.dark .home8-contact-section .contact-wrapper .btn-area .copy-email-btn {
    background-color: #1E1E1E;
}

body.dark .home8-contact-section .contact-wrapper .btn-area .copy-email-btn:hover {
    background-color: var(--primary-color1);
}

body.dark .home8-contact-section .contact-wrapper .btn-area .copy-alert {
    background-color: #020202;
}

body.dark .home9-banner-section .banner-content .batch::before {
    background-color: transparent;
}

body.dark .home9-banner-section .banner-content .batch span {
    background-color: #1E1E1E;
}

body.dark .home9-about-section img.dark {
    display: inline-block;
}

body.dark .home9-about-section img.light {
    display: none;
}

body.dark .home9-sroll-text-section .single-sroll-text.two {
    background-color: #1E1E1E;
}

body.dark .home9-service-section .service-wrapper .single-service .service-icon-and-content-wrap .service-content-and-btn-wrap .service-content-area .service-content .service-list li a {
    background-color: #1E1E1E;
}

body.dark .home9-testimonial-section .home1-testimonial-slider .swiper-slide:nth-child(even) .testimonial-card {
    background-color: #1E1E1E;
}

body.dark .career-details-page .career-details-sidebar {
    background-color: #1E1E1E;
}

body.dark .slice-wrap .slice-item {
    background: #141414;
}

body.dark .cart-page .cart-order-sum-area .order-summary-wrap .order-summary-list li .coupon-area .form-inner input {
    background-color: #020202;
}

body.dark .product-details-page .product-details-content .product-quantity .quantity .quantity__minus, body.dark .product-details-page .product-details-content .product-quantity .quantity .quantity__plus {
    background-color: #020202;
}

body.dark .product-details-page .product-details-content .product-quantity .quantity .quantity__minus:hover, body.dark .product-details-page .product-details-content .product-quantity .quantity .quantity__plus:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

body.dark .product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner input {
    background-color: #020202;
}

body.dark .product-details-page .product-description-and-review-area .tab-content2 .review-form .form-inner textarea {
    background-color: #020202;
}

body.dark .related-product-section .related-product-slider-area .slider-btn-grp .slider-btn:hover svg {
    fill: none;
    stroke: #020202;
}

body.dark .partner-section .partner-wrap .marquee.dark {
    display: flex;
    visibility: visible;
}

body.dark .partner-section .partner-wrap .marquee.light {
    display: none;
    visibility: hidden;
}

body.dark .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner input, body.dark .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner textarea {
    background-color: #1E1E1E;
    border-color: #1E1E1E;
}

body.dark .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner input:focus, body.dark .contact-page .conatct-form-area .contact-form .contact-field-area .form-inner textarea:focus {
    border-color: var(--white-color);
}

body.dark .contact-map-section iframe {
    filter: invert(1) hue-rotate(180deg) brightness(0.7) grayscale(1);
}

body.dark .contact-me-page .contact-form-wrap {
    background-color: #1E1E1E;
}

body.dark .contact-me-page .contact-form-wrap .divider {
    fill: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    body.dark .contact-me-page .contact-form-wrap form {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

body.dark .contact-me-page .contact-form-wrap .form-inner input, body.dark .contact-me-page .contact-form-wrap .form-inner textarea {
    background-color: #020202;
    border-color: #020202;
}

body.dark .contact-me-page .contact-form-wrap .form-inner input:focus, body.dark .contact-me-page .contact-form-wrap .form-inner textarea:focus {
    border-color: var(--white-color);
}

body.dark .contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input {
    background-color: #1E1E1E;
    border-color: var(--black-color);
}

body.dark .contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input:checked {
    background-color: var(--black-color);
    border-color: var(--black-color);
}

body.dark .contact-me-page .contact-form-wrap .form-inner2 ul li .form-check .form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("../img/innerpages/icon/check-icon.svg");
}

body.dark .faq-section .faq-wrap .accordion .accordion-item {
    background-color: #1E1E1E;
}

body.dark .faq-section .faq-wrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #141414;
}

body.dark .faq-section .faq-wrap .accordion .accordion-item .accordion-body {
    background-color: #141414;
}

body.dark .about2-page-banner-section .banner-wrapper .award-area .award-list li .light {
    display: none;
}

body.dark .about2-page-banner-section .banner-wrapper .award-area .award-list li .dark {
    display: block;
}

body.dark .about2-page-banner-section .banner-wrapper .banner-content .rating-and-short-info .rating-area svg path:last-child {
    fill: var(--white-color);
}

body.dark .about2-page-process-section .bottom-area {
    background-color: #1E1E1E;
}

body.dark .service2-why-choose-section .why-choose-wrapper .why-choose-img-wrap .video-area {
    background-color: #141414;
}

body.dark .team-page-what-drive-section .team-page-what-drive-accordion .accordion .accordion-item .accordion-header {
    background-color: #1E1E1E;
}

body.dark .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn {
    background-color: #1E1E1E;
}

body.dark .inner-team-section .team-list-area .team-member-list .single-team-member .details-btn:hover {
    background-color: var(--white-color);
}

body.dark .blog-details-page .blog-details-sidebar .table-content-area {
    background-color: #1E1E1E;
}

body.dark .blog-details-page .details-navigation .single-navigation .arrow {
    background-color: #1E1E1E;
}

body.dark .comment-and-form-area .inquiry-form {
    background-color: #1E1E1E;
}

body.dark .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item {
    background-color: #1E1E1E;
}

body.dark .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item.active {
    background-color: var(--white-color);
}

body.dark .portfolio-grid-page .portfolio-grid-page-top .portfolio-tag-list .single-item:hover {
    background-color: var(--white-color);
    color: var(--dark-title-color);
}

body.dark .portfolio-dt-gallery2-section .portfolio-dt-navigation-area .details-navigation .single-navigation .arrow {
    background-color: #1E1E1E;
}

body.dark .pf-caption-mask {
    background-color: #1E1E1E;
}

body.dark .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology img.light {
    display: none;
}

body.dark .pf-video-page-intro-section .pf-video-page-technology-section .technology-list .single-technology img.dark {
    display: inline-block;
}

body.dark .pf-video-page-intro-section .pf-video-page-technology-section .customer-rating-and-content-wrap {
    background-color: #1E1E1E;
}

body.dark .portfolio-metro-page .portfolio-metro-wrap .single-pf-metro .pf-metro-content {
    background-color: #1E1E1E;
}

body.dark .error-page {
    background-image: url(../img/innerpages/error-page-bg-dark.png);
}

body.dark .error-page .error-wrapper img.light {
    display: none;
}

body.dark .error-page .error-wrapper img.dark {
    display: inline-block;
}

body.dark .error-page .error-wrapper .primary-btn1 {
    background-color: var(--primary-color1);
}

body.dark .error-page .error-wrapper .primary-btn1::after {
    background-color: var(--white-color);
}

body.dark .career-page-position-section .single-position {
    background-color: #1E1E1E;
}

body.dark .career-page-position-section .single-position.transparent {
    background-color: transparent;
}

body.dark .career-page-position-section .single-position.transparent .primary-btn1:after {
    background-color: var(--primary-color1);
}

body.dark .career-page-position-section .single-position.transparent .primary-btn1:hover {
    color: var(--dark-title-color);
}

body.dark .career-page-position-section .prefer-role-area {
    background-color: #1E1E1E;
}

body.dark .job-form-modal .modal-dialog .modal-content {
    background-color: #1E1E1E;
}

body.dark .pricing-plan-page .pricing-plan-tab-area .nav-area {
    background-color: #1E1E1E;
}

.home4-service-section .service-wrapper .accordion .accordion-item .accordion-header .accordion-button h2 a,
.blog-card2 .primary-btn1 > span {
    color: var(--dark-title-color);
}

.blog-card2 .primary-btn1:hover > span {
    color: var(--white-color);
}

.blog-card2.font-alt .blog-content h2 a, .blog-card2.font-alt .blog-content h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 66px;
