@charset "UTF-8";
:root {
    --mainColor: #009f6f;
    --mainColor20: #009f6f33;
    --mainColor05: #009f6f0d;
    --linearGradient: linear-gradient(45deg, #11b14e 0%, #38c684 50%, #009f6f 100%);
    --secondColor: #11b14e;
    --goldColor: #f4bd4b;
    --whiteColor: #ffffff;
    --darkColor: #191919;
    --lightGrayColor: #d6d6d6;
    --lightBorderColor: #e1e1e1;
    --grayColor: #777;
    --transition: 0.3s ease-in-out;
    --shadow: 0px 2px 4px #c1c1c1;
    --BigShadow: 0 16px 32px 0 #071c1f1a;
}

@font-face {
    font-family: "fontRegular";
    font-display: swap;
    src: url(../webfonts/IBMPlexSansArabic-Regular.ttf);
}
@font-face {
    font-family: "fontBold";
    font-display: swap;
    src: url(../webfonts/IBMPlexSansArabic-Bold.ttf);
    font-weight: 900;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    scroll-behavior: smooth;
    direction: ltr;
}

::-webkit-scrollbar {
    width: 8px;
    height: 6px;
    border-radius: 0px !important;
}

::-webkit-scrollbar-track {
    border-radius: 0px !important;
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background-color: #cacaca;
    outline: none;
    border-radius: 20px !important;
}

:target {
    scroll-margin-top: 50px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--mainColor);
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.row {
    margin: 0px;
}

body {
    overflow-x: hidden !important;
    width: 100vw;
    background: var(--whiteColor);
}

body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: 1.6;
    font-family: "fontRegular", sans-serif;
}

@media (max-width: 767px) {
    .container,
    .container-fluid {
        padding: 0px 8px;
    }
}
video,
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.btn {
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.btn i {
    font-size: 16px;
}

.btn:focus {
    box-shadow: none;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    border-color: transparent;
}

input {
    accent-color: var(--mainColor) !important;
}

.odometer-inside {
    direction: ltr !important;
}

.fancybox__container {
    z-index: 1999;
}
.fancybox__container * {
    direction: ltr !important;
}

::-moz-placeholder {
    font-size: 12px;
    color: #8d8d8d !important;
    font-weight: normal !important;
}

::placeholder {
    font-size: 12px;
    color: #8d8d8d !important;
    font-weight: normal !important;
}

::-moz-selection {
    background-color: var(--mainColor);
}

::selection {
    background-color: var(--mainColor);
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: ltr;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}
.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 30px;
}

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

.form-select,
.form-control {
    min-height: 48px;
    background-color: var(--whiteColor);
    color: var(--darkColor);
    border-color: var(--lightGrayColor);
}
.form-select:focus,
.form-control:focus {
    box-shadow: none;
}

.tooltip {
    --bs-tooltip-bg: var(--textlightGrayr);
}
.tooltip .tooltip-inner {
    font-size: 10px;
    padding: 8px 16px !important;
}

content {
    min-height: calc(100dvh - 660px);
    display: flex;
    flex-direction: column;
}

.spinerLoader {
    background-color: var(--whiteColor);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinerLoader .spinerLoaderImg {
    width: 100px;
    height: 100px;
    -webkit-mask-image: url("../img/favicon.svg");
    mask-image: url("../img/favicon.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: relative;
}
.spinerLoader .spinerLoaderImg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    z-index: 2;
    background: var(--linearGradient);
    transform: translateY(50%) translateX(-100%) rotate(60deg);
    animation: slide-up 1s forwards;
}
.spinerLoader .spinerLoaderImg::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background-image: url("../img/favicon.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1) opacity(0.5);
}
@keyframes slide-up {
    from {
        transform: translateY(50%) translateX(-100%) rotate(60deg);
    }
    to {
        transform: translateY(0%) translateX(0%) rotate(60deg);
    }
}

.lazyDiv {
    position: relative;
    overflow: hidden;
}
.lazyDiv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #000;
    transition: transform 2s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(0%);
}
.lazyDiv.oppositeDir::after {
    left: unset;
    right: 0;
}
.lazyDiv .lazy {
    position: relative;
    z-index: 1;
    width: 100%;
}
.lazyDiv.loaded::after {
    transform: translateX(-100%);
}
.lazyDiv.loaded.oppositeDir::after {
    transform: translateX(100%);
}
.lazyDiv.loaded.down::after {
    transform: translateY(100%);
}
.lazyDiv.loaded.up::after {
    transform: translateY(-100%);
}

.container {
    width: min(100% - 4px, 1320px);
    max-width: unset;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
    transition: var(--transition);
    padding: 12px;
}
header .inner {
    margin: auto;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 4px;
    border-radius: 100px;
    text-align: center;
    transition: var(--transition);
    width: min(100% - 8px, 1320px);
    background-color: transparent;
}
header .inner .navbar-brand {
    margin-right: auto;
    padding: 8px;
}
header .inner .navbar-brand img {
    height: 45px;
    min-width: 100px;
    max-width: 250px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
    padding-bottom: 2px;
}
header .inner .navbar {
    padding: 0;
}
header .inner .navbar .navbar-nav {
    flex: 1;
}
header .inner .navbar .navbar-nav .navLink {
    flex: 1;
    white-space: nowrap;
    padding: 8px 16px;
    color: var(--darkColor);
    transition: var(--transition);
    border-radius: 16px;
    position: relative;
    isolation: isolate;
}
header .inner .navbar .navbar-nav .navLink::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateX(-100%);
    border-radius: 30%;
    -webkit-clip-path: polygon(15% 0%, 85% 0%, 102% 50%, 85% 100%, 15% 100%, -2% 50%);
    clip-path: polygon(15% 0%, 85% 0%, 102% 50%, 85% 100%, 15% 100%, -2% 50%);
}
header .inner .navbar .navbar-nav .navLink.active {
    color: var(--whiteColor);
}
header .inner .navbar .navbar-nav .navLink.active::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}
header .inner .navbar .logo {
    display: none;
    padding: 5px;
    margin-bottom: 20px;
}
header .inner .navbar .logo img {
    height: 40px;
    min-width: 120px;
    max-width: 250px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}
@media screen and (max-width: 992px) {
    header .inner .navbar {
        order: 3;
        padding: 4px;
        border-radius: 8px;
    }
    header .inner .navbar .navbar-toggler {
        padding: 4px;
    }
    header .inner .navbar .navbar-nav {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        gap: 8px;
        background-color: var(--whiteColor);
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.1019607843) -20px 10px 9px -4px;
        width: 300px;
        text-align: start;
        padding: 24px;
        transform: translateX(-400px);
        transition: var(--transition);
        z-index: 2;
    }
    header .inner .navbar .navbar-nav .logo {
        display: block;
    }
    header .inner .navbar .navbar-nav.show {
        transform: translateX(0px);
    }
    header .inner .navbar .navbar-nav .navLink {
        flex: unset;
        border-radius: 12px;
    }
    header .inner .navbar .navbar-nav .navLink.active {
        color: var(--whiteColor);
        background: var(--linearGradient);
        background-size: 400%;
        animation: animateBg 5s linear infinite;
    }
    header .inner .navbar .navbar-nav .navLink::before {
        display: none;
    }
}
header .inner .language {
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 40%;
}
header .inner .language span {
    font-family: "fontBold";
    color: var(--darkColor);
}
header .inner .language:after {
    border-radius: 40%;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
header.headerAnimate .inner {
    width: min(100% - 8px, 1100px);
    background-color: var(--whiteColor);
    box-shadow: 0px 20px 100px rgba(0, 159, 111, 0.5411764706);
    padding: 4px 24px;
}

.outlineGradient {
    position: relative;
    z-index: 1;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    color: var(--darkColor);
    border-radius: 8px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    align-items: center;
    gap: 4px;
    -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    border-radius: 25%;
}
.outlineGradient::after {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 1;
    transform: translate(-50%, 50%);
    background-color: var(--whiteColor);
    border-radius: 8px;
    transition: var(--transition);
    -webkit-clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    border-radius: 25%;
}
.outlineGradient span {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: var(--darkColor);
    transition: var(--transition);
}
.outlineGradient:hover::after {
    opacity: 0;
}
.outlineGradient:hover span {
    color: var(--whiteColor) !important;
}

.gradientText * {
    background: var(--linearGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateBg 5s linear infinite;
    background-size: 400%;
}

@keyframes animateBg {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
.shapes {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 600px;
    height: 600px;
}
.shapes span {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 50%;
    aspect-ratio: 1;
    border: 4px solid rgba(255, 255, 255, 0.1882352941);
    border-radius: 60% 60% 40% 40%/50% 50% 50% 50%;
    transition: var(--transition);
    animation: rotate 5s linear infinite;
}
.shapes span:nth-child(1) {
    width: 70%;
}
.shapes span:nth-child(2) {
    width: 50%;
    border-radius: 50% 50% 40% 50%/60% 80% 40% 40%;
    border-width: 8px;
}
.shapes span:nth-child(3) {
    width: 30%;
    border-radius: 50% 60% 50% 50%/60% 60% 80% 40%;
    border-width: 12px;
}
@keyframes rotate {
    0% {
        transform: translate(50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

.hero {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    isolation: isolate;
    width: min(100% - 24px, 1320px);
    margin: 140px auto 40px;
    padding: 40px 0;
    gap: 16px;
    justify-content: center;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    border-radius: 16px;
    color: var(--whiteColor);
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .hero {
        margin: 120px auto 20px;
    }
}
.hero .text {
    padding: 24px;
    width: min(100% - 32px, 800px);
    display: flex;
    gap: 24px;
    flex-direction: column;
    text-align: center;
}
.hero .text .title {
    font-weight: bold;
    font-family: "fontBold", sans-serif;
    font-size: 40px;
    text-wrap: balance;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero .text .des {
    text-wrap: balance;
}
.hero .text .outlineGradient {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.hero .bannerView {
    border-radius: 16px;
}
.hero .bannerView * {
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-mask-image: url(../img/favicon.svg);
    mask-image: url(../img/favicon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
}
.hero .shapes {
    top: 0;
    left: unset;
    right: 0;
    transform: translate(50%, -50%);
}
.hero:hover .shapes span:nth-child(1) {
    width: 90%;
}
.hero:hover .shapes span:nth-child(2) {
    width: 60%;
}
.hero:hover .shapes span:nth-child(3) {
    width: 35%;
}

.scrollDown {
    width: 25px;
    height: 50px;
    border: 2px solid var(--mainColor20);
    border-radius: 100px;
    position: relative;
    margin: 0px auto 0;
    transition: var(--transition);
    display: flex;
}
@media (max-width: 768px) {
    .scrollDown {
        margin: 30px auto 0;
    }
}
.scrollDown .mouse {
    width: 12px;
    height: 12px;
    background: var(--mainColor);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    animation: scrollDown linear 2s infinite;
    transition: var(--transition);
}

.home {
    padding: 200px 0 100px;
    position: relative;
    z-index: 2;
    min-height: 60dvh;
}
@media screen and (max-width: 768px) {
    .home {
        padding: 150px 0 50px;
    }
}
.home::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 0;
    right: 0%;
    box-shadow: 0px 0px 25vw 25vw rgba(17, 177, 78, 0.3019607843);
    z-index: -2;
    opacity: 0.6;
}
.home::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    bottom: 0;
    left: 0%;
    box-shadow: 0px 0px 25vw 25vw rgba(17, 177, 78, 0.3019607843);
    z-index: -2;
    opacity: 0.6;
}
.home .content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: min(100% - 24px, 800px);
    margin: 0 auto;
    gap: 16px;
}
.home .content .title {
    font-weight: bold;
    font-family: "fontBold", sans-serif;
    font-size: 60px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    color: var(--darkColor);
    text-wrap: balance;
}
.home .content .title span {
    display: inline-flex;
    font-size: 60px;
    color: var(--mainColor);
}
@media screen and (max-width: 768px) {
    .home .content .title {
        font-size: 45px;
    }
    .home .content .title span {
        font-size: 45px;
    }
}
.home .content .des {
    text-wrap: balance;
    color: var(--grayColor);
}
.home .content .outlineGradient {
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
}
.home .content .outlineGradient::after {
    background: transparent;
}
.home .content .outlineGradient span {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
}
.home .content .outlineGradient img {
    filter: brightness(0) invert(1);
    width: 0;
    height: 16px;
    transition: var(--transition);
}
.home .content .outlineGradient:hover img {
    margin-left: 8px;
    width: 16px;
}
.home .content .btns {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.home .content .btns .customBtn {
    padding: 8px 32px;
    border-radius: 100px;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    font-weight: bold;
    background-color: var(--mainColor05);
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
}
.home .content .btns .customBtn img {
    width: 20px;
    aspect-ratio: 1;
    transition: var(--transition);
}
.home .content .btns .customBtn span {
    transition: var(--transition);
}
.home .content .btns .customBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: var(--mainColor);
    border-radius: 100px;
    transition: var(--transition);
    z-index: -1;
}
.home .content .btns .customBtn:hover {
    color: var(--whiteColor);
}
.home .content .btns .customBtn:hover::before {
    opacity: 1;
}
.home .content .btns .customBtn:hover img {
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 500px) {
    .home .content .btns .customBtn {
        order: 2;
    }
}
@media screen and (max-width: 600px) {
    .home .content .btns .requestDemoBtn {
        display: flex;
        justify-content: center;
        order: 1;
        width: 100%;
    }
}
.home .content .requestDemo {
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 48px;
    border-radius: 100px;
    color: var(--whiteColor);
    font-weight: bold;
    font-size: 16px;
    outline: 4px solid rgba(0, 159, 111, 0.1882352941);
    box-shadow: 0 0 0 8px rgba(0, 159, 111, 0.1882352941);
    margin: 8px 0;
}
.home .content .requestDemo.btn2 {
    background: var(--whiteColor);
    color: var(--mainColor);
}
.home .content .social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    width: 100%;
    justify-content: center;
}
.home .content .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--mainColor);
    background-color: transparent;
    transition: var(--transition);
}
.home .content .social a img {
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: var(--transition);
}
.home .content .social a:hover {
    background-color: var(--mainColor);
    transform: translateY(-4px);
}
.home .content .social a:hover img {
    filter: brightness(0) invert(1);
}
.home .lazyDiv {
    width: min(100% - 24px, 1400px);
    margin: 24px auto;
    aspect-ratio: 3/1;
    border-radius: 24px;
}
.home .lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    display: flex;
    justify-content: space-around;
}
.home .lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--mainColor20) 0%, transparent 100%);
    position: relative;
}
.home .lines span::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--mainColor20);
    border-radius: 100%;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    animation: moveDown 3s linear infinite;
}
.home .lines span:nth-child(1)::before {
    animation-duration: 2s;
    animation-delay: 0.3s;
}
.home .lines span:nth-child(2)::before {
    animation-duration: 2.3s;
    animation-delay: 0.6s;
}
.home .lines span:nth-child(3)::before {
    animation-duration: 2.6s;
    animation-delay: 0.9s;
}
.home .lines span:nth-child(4)::before {
    animation-duration: 2.9s;
    animation-delay: 1.2s;
}
.home .lines span:nth-child(5)::before {
    animation-duration: 3.2s;
    animation-delay: 1.5s;
}
.home .lines span:nth-child(6)::before {
    animation-duration: 3.5s;
    animation-delay: 1.8s;
}
.home .lines span:nth-child(7)::before {
    animation-duration: 3.8s;
    animation-delay: 2.1s;
}
.home .lines span:nth-child(8)::before {
    animation-duration: 4.1s;
    animation-delay: 2.4s;
}
.home .lines span:nth-child(9)::before {
    animation-duration: 4.4s;
    animation-delay: 2.7s;
}
.home .lines span:nth-child(10)::before {
    animation-duration: 4.7s;
    animation-delay: 3s;
}
.home .lines span:nth-child(11)::before {
    animation-duration: 5s;
    animation-delay: 3.3s;
}
.home .lines span:nth-child(12)::before {
    animation-duration: 5.3s;
    animation-delay: 3.6s;
}
.home .lines span:nth-child(13)::before {
    animation-duration: 5.6s;
    animation-delay: 3.9s;
}
.home .lines span:nth-child(14)::before {
    animation-duration: 5.9s;
    animation-delay: 4.2s;
}
.home .lines span:nth-child(15)::before {
    animation-duration: 6.2s;
    animation-delay: 4.5s;
}
.home .lines span:nth-child(16)::before {
    animation-duration: 6.5s;
    animation-delay: 4.8s;
}
.home .lines span:nth-child(17)::before {
    animation-duration: 6.8s;
    animation-delay: 5.1s;
}
.home .lines span:nth-child(18)::before {
    animation-duration: 7.1s;
    animation-delay: 5.4s;
}
.home .lines span:nth-child(19)::before {
    animation-duration: 7.4s;
    animation-delay: 5.7s;
}
.home .lines span:nth-child(20)::before {
    animation-duration: 7.7s;
    animation-delay: 6s;
}
.home .lines span:nth-child(21)::before {
    animation-duration: 8s;
    animation-delay: 6.3s;
}
.home .lines span:nth-child(22)::before {
    animation-duration: 8.3s;
    animation-delay: 6.6s;
}
.home .lines span:nth-child(23)::before {
    animation-duration: 8.6s;
    animation-delay: 6.9s;
}
.home .lines span:nth-child(24)::before {
    animation-duration: 8.9s;
    animation-delay: 7.2s;
}
.home .lines span:nth-child(25)::before {
    animation-duration: 9.2s;
    animation-delay: 7.5s;
}
.home .lines span:nth-child(26)::before {
    animation-duration: 9.5s;
    animation-delay: 7.8s;
}
.home .lines span:nth-child(27)::before {
    animation-duration: 9.8s;
    animation-delay: 8.1s;
}
.home .lines span:nth-child(28)::before {
    animation-duration: 10.1s;
    animation-delay: 8.4s;
}
.home .lines span:nth-child(29)::before {
    animation-duration: 10.4s;
    animation-delay: 8.7s;
}
.home .lines span:nth-child(30)::before {
    animation-duration: 10.7s;
    animation-delay: 9s;
}
.home .lines span:nth-child(31)::before {
    animation-duration: 11s;
    animation-delay: 9.3s;
}
.home .lines span:nth-child(32)::before {
    animation-duration: 11.3s;
    animation-delay: 9.6s;
}
.home .lines span:nth-child(33)::before {
    animation-duration: 11.6s;
    animation-delay: 9.9s;
}
.home .lines span:nth-child(34)::before {
    animation-duration: 11.9s;
    animation-delay: 10.2s;
}
.home .lines span:nth-child(35)::before {
    animation-duration: 12.2s;
    animation-delay: 10.5s;
}
.home .lines span:nth-child(36)::before {
    animation-duration: 12.5s;
    animation-delay: 10.8s;
}
.home .lines span:nth-child(37)::before {
    animation-duration: 12.8s;
    animation-delay: 11.1s;
}
.home .lines span:nth-child(38)::before {
    animation-duration: 13.1s;
    animation-delay: 11.4s;
}
.home .lines span:nth-child(39)::before {
    animation-duration: 13.4s;
    animation-delay: 11.7s;
}
.home .lines span:nth-child(40)::before {
    animation-duration: 13.7s;
    animation-delay: 12s;
}
.home .lines span:nth-child(41)::before {
    animation-duration: 14s;
    animation-delay: 12.3s;
}
.home .lines span:nth-child(42)::before {
    animation-duration: 14.3s;
    animation-delay: 12.6s;
}
.home .lines span:nth-child(43)::before {
    animation-duration: 14.6s;
    animation-delay: 12.9s;
}
.home .lines span:nth-child(44)::before {
    animation-duration: 14.9s;
    animation-delay: 13.2s;
}
.home .lines span:nth-child(45)::before {
    animation-duration: 15.2s;
    animation-delay: 13.5s;
}
.home .lines span:nth-child(46)::before {
    animation-duration: 15.5s;
    animation-delay: 13.8s;
}
.home .lines span:nth-child(47)::before {
    animation-duration: 15.8s;
    animation-delay: 14.1s;
}
.home .lines span:nth-child(48)::before {
    animation-duration: 16.1s;
    animation-delay: 14.4s;
}
.home .lines span:nth-child(49)::before {
    animation-duration: 16.4s;
    animation-delay: 14.7s;
}
.home .lines span:nth-child(50)::before {
    animation-duration: 16.7s;
    animation-delay: 15s;
}
.home .lines span:nth-child(51)::before {
    animation-duration: 17s;
    animation-delay: 15.3s;
}
.home .lines span:nth-child(52)::before {
    animation-duration: 17.3s;
    animation-delay: 15.6s;
}
.home .lines span:nth-child(53)::before {
    animation-duration: 17.6s;
    animation-delay: 15.9s;
}
.home .lines span:nth-child(54)::before {
    animation-duration: 17.9s;
    animation-delay: 16.2s;
}
.home .lines span:nth-child(55)::before {
    animation-duration: 18.2s;
    animation-delay: 16.5s;
}
.home .lines span:nth-child(56)::before {
    animation-duration: 18.5s;
    animation-delay: 16.8s;
}
.home .lines span:nth-child(57)::before {
    animation-duration: 18.8s;
    animation-delay: 17.1s;
}
.home .lines span:nth-child(58)::before {
    animation-duration: 19.1s;
    animation-delay: 17.4s;
}
.home .lines span:nth-child(59)::before {
    animation-duration: 19.4s;
    animation-delay: 17.7s;
}
.home .lines span:nth-child(60)::before {
    animation-duration: 19.7s;
    animation-delay: 18s;
}
.home .lines span:nth-child(61)::before {
    animation-duration: 20s;
    animation-delay: 18.3s;
}
.home .lines span:nth-child(62)::before {
    animation-duration: 20.3s;
    animation-delay: 18.6s;
}
.home .lines span:nth-child(63)::before {
    animation-duration: 20.6s;
    animation-delay: 18.9s;
}
.home .lines span:nth-child(64)::before {
    animation-duration: 20.9s;
    animation-delay: 19.2s;
}
.home .lines span:nth-child(65)::before {
    animation-duration: 21.2s;
    animation-delay: 19.5s;
}
.home .lines span:nth-child(66)::before {
    animation-duration: 21.5s;
    animation-delay: 19.8s;
}
.home .lines span:nth-child(67)::before {
    animation-duration: 21.8s;
    animation-delay: 20.1s;
}
.home .lines span:nth-child(68)::before {
    animation-duration: 22.1s;
    animation-delay: 20.4s;
}
.home .lines span:nth-child(69)::before {
    animation-duration: 22.4s;
    animation-delay: 20.7s;
}
.home .lines span:nth-child(70)::before {
    animation-duration: 22.7s;
    animation-delay: 21s;
}
.home .lines span:nth-child(71)::before {
    animation-duration: 23s;
    animation-delay: 21.3s;
}
.home .lines span:nth-child(72)::before {
    animation-duration: 23.3s;
    animation-delay: 21.6s;
}
.home .lines span:nth-child(73)::before {
    animation-duration: 23.6s;
    animation-delay: 21.9s;
}
.home .lines span:nth-child(74)::before {
    animation-duration: 23.9s;
    animation-delay: 22.2s;
}
.home .lines span:nth-child(75)::before {
    animation-duration: 24.2s;
    animation-delay: 22.5s;
}
.home .lines span:nth-child(76)::before {
    animation-duration: 24.5s;
    animation-delay: 22.8s;
}
.home .lines span:nth-child(77)::before {
    animation-duration: 24.8s;
    animation-delay: 23.1s;
}
.home .lines span:nth-child(78)::before {
    animation-duration: 25.1s;
    animation-delay: 23.4s;
}
.home .lines span:nth-child(79)::before {
    animation-duration: 25.4s;
    animation-delay: 23.7s;
}
.home .lines span:nth-child(80)::before {
    animation-duration: 25.7s;
    animation-delay: 24s;
}
.home .lines span:nth-child(81)::before {
    animation-duration: 26s;
    animation-delay: 24.3s;
}
.home .lines span:nth-child(82)::before {
    animation-duration: 26.3s;
    animation-delay: 24.6s;
}
.home .lines span:nth-child(83)::before {
    animation-duration: 26.6s;
    animation-delay: 24.9s;
}
.home .lines span:nth-child(84)::before {
    animation-duration: 26.9s;
    animation-delay: 25.2s;
}
.home .lines span:nth-child(85)::before {
    animation-duration: 27.2s;
    animation-delay: 25.5s;
}
.home .lines span:nth-child(86)::before {
    animation-duration: 27.5s;
    animation-delay: 25.8s;
}
.home .lines span:nth-child(87)::before {
    animation-duration: 27.8s;
    animation-delay: 26.1s;
}
.home .lines span:nth-child(88)::before {
    animation-duration: 28.1s;
    animation-delay: 26.4s;
}
.home .lines span:nth-child(89)::before {
    animation-duration: 28.4s;
    animation-delay: 26.7s;
}
.home .lines span:nth-child(90)::before {
    animation-duration: 28.7s;
    animation-delay: 27s;
}
.home .lines span:nth-child(91)::before {
    animation-duration: 29s;
    animation-delay: 27.3s;
}
.home .lines span:nth-child(92)::before {
    animation-duration: 29.3s;
    animation-delay: 27.6s;
}
.home .lines span:nth-child(93)::before {
    animation-duration: 29.6s;
    animation-delay: 27.9s;
}
.home .lines span:nth-child(94)::before {
    animation-duration: 29.9s;
    animation-delay: 28.2s;
}
.home .lines span:nth-child(95)::before {
    animation-duration: 30.2s;
    animation-delay: 28.5s;
}
.home .lines span:nth-child(96)::before {
    animation-duration: 30.5s;
    animation-delay: 28.8s;
}
.home .lines span:nth-child(97)::before {
    animation-duration: 30.8s;
    animation-delay: 29.1s;
}
.home .lines span:nth-child(98)::before {
    animation-duration: 31.1s;
    animation-delay: 29.4s;
}
.home .lines span:nth-child(99)::before {
    animation-duration: 31.4s;
    animation-delay: 29.7s;
}
.home .lines span:nth-child(100)::before {
    animation-duration: 31.7s;
    animation-delay: 30s;
}
@keyframes moveDown {
    0% {
        top: 0;
        opacity: 0;
    }
    50% {
        top: 50%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.aboutPage {
    padding: 40px 0 40px;
    position: relative;
    z-index: 2;
}
.aboutPage .title {
    font-weight: bold;
    color: var(--mainColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-family: "fontBold", sans-serif;
    font-size: 40px;
    line-height: 1.2;
}
.aboutPage .sectionTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.aboutPage .subTitle {
    color: var(--grayColor);
}
.aboutPage .row:nth-child(2n) {
    flex-direction: row-reverse;
}
.aboutPage .info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 16px;
}
@media (max-width: 768px) {
    .aboutPage .info {
        padding: 24px 16px;
    }
}
.aboutPage .info .des {
    color: var(--grayColor);
}
.aboutPage .info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.aboutPage .info ul li {
    padding: 4px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.aboutPage .info ul li::before {
    content: "";
    background-image: url(../img/icons/check.svg);
    width: 16px;
    height: 16px;
    background-size: contain;
}
.aboutPage .lazyImg {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    border-radius: 40px;
}
@media screen and (min-width: 400px) and (max-width: 992px) {
    .aboutPage .lazyImg {
        max-height: 500px;
    }
}
.aboutPage .lazyImg::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 10px;
    border: 10px solid var(--mainColor);
    width: 100%;
    height: 100%;
    border-radius: 40px;
}
.aboutPage .lazyImg .lazyDiv {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}
.aboutPage .lazyImg .lazyDiv .simpleParallax {
    height: 100%;
    border-radius: 40px;
}
.aboutPage .lazyImg .lazyDiv img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    -o-object-position: top;
    object-position: top;
}
.aboutPage .statistic {
    padding: 8px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}
.aboutPage .statistic .counterUp {
    font-weight: bold;
    font-size: 100px;
    background: rgba(167, 169, 172, 0.062745098);
    background-size: contain;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1px #a7a9ac;
    font-family: "Manrope Alt", Sans-serif;
}
@media (max-width: 768px) {
    .aboutPage .statistic .counterUp {
        font-size: 70px;
    }
}
.aboutPage .statistic h6 {
    font-weight: bold;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    max-height: 100px;
    text-align: center;
    transform: scaleY(-1);
}

.downloadProfile {
    display: inline-flex;
    padding: 12px;
    padding-left: 52px;
    padding-right: 24px;
    height: 48px;
    border-radius: 100px;
    transition: var(--transition);
    -webkit-clip-path: none;
    clip-path: none;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    transition: var(--transition);
}
.downloadProfile::after {
    border-radius: 100px;
    -webkit-clip-path: none;
    clip-path: none;
}
.downloadProfile .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 12px;
    background-color: var(--mainColor);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    z-index: 4;
}
.downloadProfile .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    filter: brightness(0) invert(1);
}
.downloadProfile .text {
    color: var(--darkColor);
    text-transform: capitalize;
}
.downloadProfile:hover {
    padding-right: 52px;
    padding-left: 24px;
    transition: var(--transition);
}
.downloadProfile:hover .icon {
    left: calc(100% - 44px);
}

.socialMedia {
    display: flex;
    justify-content: end;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
    padding: 8px;
}
.socialMedia a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grayColor);
    color: var(--grayColor);
    border-radius: 100px;
    transition: var(--transition);
}
.socialMedia a img {
    transition: var(--transition);
    filter: contrast(0.4);
}
.socialMedia a:hover {
    background-color: var(--mainColor);
    color: var(--darkColor);
    border: 1px solid var(--mainColor);
    transform: translateY(-4px);
    box-shadow: 0px 4px rgba(0, 0, 0, 0.1882352941);
}
.socialMedia a:hover img {
    filter: contrast(1) brightness(0) invert(1);
}

.vision {
    position: relative;
    padding: 40px 0;
    background-color: var(--whiteColor);
}
@media screen and (max-width: 768px) {
    .vision {
        padding: 40px 0;
    }
}
.vision .BG {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vision .BG::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(92, 96, 104, 0.9058823529);
}
.vision .BG img {
    width: 100%;
    height: 100%;
}
.vision .container {
    position: relative;
    z-index: 2;
}
.vision .container .group {
    background-color: var(--whiteColor);
    padding: 32px;
    height: 100%;
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1254901961);
    border-radius: 12px;
}
@media screen and (max-width: 768px) {
    .vision .container .group {
        padding: 16px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1254901961);
    }
}
.vision .container .group .text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    flex: 1;
}
.vision .container .group .text .title {
    font-weight: bold;
    font-family: "fontBold", sans-serif !important;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--darkColor);
}
.vision .container .group .text .title img {
    height: 32px;
    aspect-ratio: 1/1;
}
.vision .container .group .text .des {
    color: var(--grayColor);
}
.vision .container .group video {
    max-width: 120px;
    aspect-ratio: 1;
    mix-blend-mode: multiply;
    filter: hue-rotate(270deg);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.vision .container .values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow: hidden;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .vision .container .values {
        gap: 8px;
    }
}
.vision .container .values .value {
    padding: 12px;
    flex: 1;
    border: 1px dashed var(--mainColor20);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    position: relative;
    isolation: isolate;
    min-width: 150px;
    color: var(--darkColor);
}
.vision .container .values .value::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0%;
    left: 100%;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 2s linear infinite;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: var(--transition);
    visibility: hidden;
}
.vision .container .values .value img {
    min-width: 80px;
    height: 80px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    transition: var(--transition);
    padding: 20px;
    margin-bottom: auto;
    mix-blend-mode: unset;
}
.vision .container .values .value h6 {
    transition: var(--transition);
    white-space: nowrap;
    text-transform: capitalize;
}
.vision .container .values .value:hover h6 {
    color: white;
}
.vision .container .values .value:hover p {
    color: white;
}
.vision .container .values .value:hover img {
    filter: brightness(0) invert(1);
}
.vision .container .values .value:hover::after {
    left: 0%;
    opacity: 1;
    visibility: visible;
}

@keyframes scrollDown {
    0% {
        transform: translate(50%, 0px);
        opacity: 0;
    }
    50% {
        transform: translate(50%, 16px);
        opacity: 1;
    }
    100% {
        transform: translate(50%, 32px);
        opacity: 0;
    }
}
.swiperControl {
    position: relative;
    bottom: unset;
    left: unset;
    padding: 20px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.swiperControl .swiperBtns {
    display: flex;
    gap: 8px;
}
.swiperControl .swiperBtns .swiper-button-next,
.swiperControl .swiperBtns .swiper-button-prev {
    position: relative;
    right: unset;
    left: unset;
    top: unset;
    bottom: unset;
    margin: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mainColor);
    width: 40px;
    height: 40px;
    border: 1px solid var(--mainColor);
    border-radius: 100%;
    transition: var(--transition);
    opacity: 0.8;
}
.swiperControl .swiperBtns .swiper-button-next::after,
.swiperControl .swiperBtns .swiper-button-prev::after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-image: url("../img/icons/left.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: var(--transition);
}
@media (max-width: 768px) {
    .swiperControl .swiperBtns .swiper-button-next::after,
    .swiperControl .swiperBtns .swiper-button-prev::after {
        font-size: 24px;
    }
}
.swiperControl .swiperBtns .swiper-button-next:hover,
.swiperControl .swiperBtns .swiper-button-prev:hover {
    opacity: 1;
    background-color: var(--mainColor);
    color: var(--mainColor);
}
.swiperControl .swiperBtns .swiper-button-next:hover::after,
.swiperControl .swiperBtns .swiper-button-prev:hover::after {
    filter: brightness(0) invert(1);
}
.swiperControl .swiperBtns .swiper-button-next.swiper-button-disabled,
.swiperControl .swiperBtns .swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
}
.swiperControl .swiperBtns .swiper-button-next {
    right: unset;
}
.swiperControl .swiperBtns .swiper-button-next::after {
    transform: unset;
}
.swiperControl .swiper-pagination {
    position: relative;
    min-height: 16px;
    right: unset;
    left: unset;
    top: unset;
    bottom: unset;
    margin: unset;
    display: flex;
    justify-content: end;
    align-items: center;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--mainColor);
    transition: var(--transition);
    border-radius: 16px;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
}

.clients {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
    overflow: hidden;
}
.clients .sectionTitle {
    text-align: center;
    padding-bottom: 55px;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 767px) {
    .clients .sectionTitle {
        padding-bottom: 40px;
    }
}
.clients .sectionTitle .sub {
    font-weight: bold;
    color: var(--mainColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 40px;
}
.clients .sectionTitle .title {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.clients .sectionTitle .hint {
    color: var(--grayColor);
}
.clients .logo {
    padding: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
}
.clients .logo img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
}
.clients .logo:hover img {
    filter: none;
}
.clients .swiperControl {
    position: relative;
    padding-top: 60px;
}
.clients .swiperControl .swiper-pagination {
    justify-content: center;
}
.clients .swiperControl .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--whiteColor);
}
.clients .inner {
    background-color: var(--mainColor);
    text-align: center;
    padding: 24px;
    height: 100%;
}
.clients .inner .subTitle {
    color: var(--darkColor);
    font-weight: bold;
    font-family: "fontBold", sans-serif !important;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 15px;
    }
    span,
    p,
    body {
        font-size: 14px;
    }
}
.serviceArea {
    background: linear-gradient(rgba(0, 159, 111, 0.768627451), rgba(0, 159, 111, 0.7960784314)), url("../img/services.jpg");
    background-size: 300%;
    animation: animateBg 80s linear infinite;
    padding: 80px 8px;
}
.serviceArea .serviceTop {
    text-align: center;
    padding-bottom: 55px;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 767px) {
    .serviceArea .serviceTop {
        padding-bottom: 40px;
    }
}
.serviceArea .serviceTop .secTitle {
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 40px;
}
.serviceArea .serviceTop .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: #eee;
    font-family: fontBold;
}
.serviceArea .serviceTop .hint {
    color: #eee;
}
.serviceArea .allServices {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.serviceArea .allServices img {
    transition: var(--transition);
}
.serviceArea .allServices .serviceItem {
    position: relative;
    flex: 1 32%;
    min-width: 300px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.075);
    border: 2px solid rgba(0, 159, 111, 0.4117647059);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}
.serviceArea .allServices .serviceItem .serviceRoute {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.serviceArea .allServices .serviceItem .serviceRoute .serviceIcon {
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
    object-fit: contain;
}
.serviceArea .allServices .serviceItem .serviceRoute span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px dashed var(--whiteColor);
    transition: var(--transition);
}
.serviceArea .allServices .serviceItem .serviceRoute span img {
    width: 16px;
    height: 16px;
    transition: var(--transition);
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
}
.serviceArea .allServices .serviceItem .title {
    font-family: "fontBold";
    color: #fff;
}
.serviceArea .allServices .serviceItem .subTitle {
    color: #eee;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.serviceArea .allServices .serviceItem .arrow {
    margin-top: 24px;
    align-self: flex-end;
    width: 20px;
    height: 20px;
}
.serviceArea .allServices .serviceItem .serviceList {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 16px;
    border-radius: 24px;
    background-color: var(--whiteColor);
    align-content: center;
    transition: var(--transition);
    animation: subHide 0.5s forwards;
}
@keyframes subHide {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
.serviceArea .allServices .serviceItem .serviceList span {
    min-width: calc(50% - 8px);
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--darkColor);
    opacity: 0;
    text-align: start;
    filter: brightness(0.8);
}
.serviceArea .allServices .serviceItem .serviceList span img {
    width: 16px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
}
.serviceArea .allServices .serviceItem .more {
    margin-top: auto;
    color: var(--whiteColor);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--mainColor);
    padding: 4px 12px;
    border-radius: 100px;
    outline: 2px solid var(--whiteColor);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.serviceArea .allServices .serviceItem .more img {
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.serviceArea .allServices .serviceItem:hover .serviceList {
    animation: subMove 0.5s forwards;
}
@keyframes subMove {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}
.serviceArea .allServices .serviceItem:hover .serviceList span {
    animation: fade-in 0.5s ease-in-out forwards;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(1) {
    animation-delay: 0.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(2) {
    animation-delay: 0.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(3) {
    animation-delay: 0.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(4) {
    animation-delay: 0.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(5) {
    animation-delay: 0.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(6) {
    animation-delay: 0.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(7) {
    animation-delay: 1.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(8) {
    animation-delay: 1.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(9) {
    animation-delay: 1.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(10) {
    animation-delay: 1.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(11) {
    animation-delay: 1.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(12) {
    animation-delay: 1.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(13) {
    animation-delay: 1.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(14) {
    animation-delay: 2.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(15) {
    animation-delay: 2.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(16) {
    animation-delay: 2.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(17) {
    animation-delay: 2.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(18) {
    animation-delay: 2.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(19) {
    animation-delay: 2.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(20) {
    animation-delay: 3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(21) {
    animation-delay: 3.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(22) {
    animation-delay: 3.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(23) {
    animation-delay: 3.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(24) {
    animation-delay: 3.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(25) {
    animation-delay: 3.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(26) {
    animation-delay: 3.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(27) {
    animation-delay: 4.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(28) {
    animation-delay: 4.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(29) {
    animation-delay: 4.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(30) {
    animation-delay: 4.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(31) {
    animation-delay: 4.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(32) {
    animation-delay: 4.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(33) {
    animation-delay: 4.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(34) {
    animation-delay: 5.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(35) {
    animation-delay: 5.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(36) {
    animation-delay: 5.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(37) {
    animation-delay: 5.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(38) {
    animation-delay: 5.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(39) {
    animation-delay: 5.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(40) {
    animation-delay: 6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(41) {
    animation-delay: 6.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(42) {
    animation-delay: 6.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(43) {
    animation-delay: 6.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(44) {
    animation-delay: 6.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(45) {
    animation-delay: 6.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(46) {
    animation-delay: 6.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(47) {
    animation-delay: 7.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(48) {
    animation-delay: 7.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(49) {
    animation-delay: 7.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(50) {
    animation-delay: 7.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(51) {
    animation-delay: 7.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(52) {
    animation-delay: 7.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(53) {
    animation-delay: 7.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(54) {
    animation-delay: 8.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(55) {
    animation-delay: 8.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(56) {
    animation-delay: 8.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(57) {
    animation-delay: 8.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(58) {
    animation-delay: 8.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(59) {
    animation-delay: 8.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(60) {
    animation-delay: 9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(61) {
    animation-delay: 9.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(62) {
    animation-delay: 9.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(63) {
    animation-delay: 9.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(64) {
    animation-delay: 9.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(65) {
    animation-delay: 9.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(66) {
    animation-delay: 9.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(67) {
    animation-delay: 10.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(68) {
    animation-delay: 10.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(69) {
    animation-delay: 10.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(70) {
    animation-delay: 10.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(71) {
    animation-delay: 10.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(72) {
    animation-delay: 10.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(73) {
    animation-delay: 10.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(74) {
    animation-delay: 11.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(75) {
    animation-delay: 11.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(76) {
    animation-delay: 11.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(77) {
    animation-delay: 11.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(78) {
    animation-delay: 11.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(79) {
    animation-delay: 11.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(80) {
    animation-delay: 12s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(81) {
    animation-delay: 12.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(82) {
    animation-delay: 12.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(83) {
    animation-delay: 12.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(84) {
    animation-delay: 12.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(85) {
    animation-delay: 12.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(86) {
    animation-delay: 12.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(87) {
    animation-delay: 13.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(88) {
    animation-delay: 13.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(89) {
    animation-delay: 13.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(90) {
    animation-delay: 13.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(91) {
    animation-delay: 13.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(92) {
    animation-delay: 13.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(93) {
    animation-delay: 13.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(94) {
    animation-delay: 14.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(95) {
    animation-delay: 14.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(96) {
    animation-delay: 14.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(97) {
    animation-delay: 14.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(98) {
    animation-delay: 14.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(99) {
    animation-delay: 14.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(100) {
    animation-delay: 15s;
}
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.serviceArea .allServices .serviceItem:hover .more {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    z-index: 2;
}

.flipCard {
    aspect-ratio: 1;
    max-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    perspective: 1000px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.flipCard .cardFront {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    background-color: var(--whiteColor);
    backface-visibility: hidden;
    transform: rotateY(0deg);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.0509803922);
}
.flipCard .cardFront .workType {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.flipCard .cardFront .workType span {
    padding: 4px 16px;
    border-radius: 100px;
    color: var(--mainColor);
    background-color: var(--whiteColor);
    font-size: 12px;
    text-transform: capitalize;
}
.flipCard .cardFront .img {
    width: 100%;
    height: 100%;
}
.flipCard .cardFront .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}
.flipCard .cardFront .cardLogo {
    width: 100%;
    max-height: 200px;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
}
.flipCard .cardFront .content {
    background: linear-gradient(to top, #009f6f 0%, #009f6f, rgba(0, 159, 111, 0) 40%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 28px;
    justify-content: flex-end;
}
.flipCard .cardFront .content .title {
    font-family: "fontBold";
    color: var(--whiteColor);
    text-transform: capitalize;
}
.flipCard .cardFront .content .location,
.flipCard .cardFront .content .date {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}
.flipCard .cardFront .content .location img,
.flipCard .cardFront .content .date img {
    width: 14px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
    -o-object-fit: contain;
    object-fit: contain;
}
.flipCard .cardBack {
    padding: 28px;
    position: absolute;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--whiteColor);
}
.flipCard .cardBack .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flipCard .cardBack .content .favimg {
    height: 40px;
    -o-object-position: left;
    object-position: left;
    -o-object-fit: contain;
    object-fit: contain;
    filter: grayscale(1);
}
.flipCard .cardBack .content .title {
    font-weight: bold;
    font-family: "fontBold";
    text-transform: capitalize;
    color: var(--mainColor);
}
.flipCard .cardBack .content .des {
    color: #777;
    font-size: 14px;
    flex: 1;
    overflow: hidden;
}
.flipCard .cardBack .content .outlineGradient {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    border-radius: 100px;
}
.flipCard .cardBack .content .outlineGradient span {
    font-size: 12px;
}
.flipCard .cardBack .content .outlineGradient::after {
    border-radius: 100px;
}
.flipCard .cardBack .content .outlineGradient img {
    height: 12px;
    margin-left: 4px;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 1;
    transition: var(--transition);
}
.flipCard .cardBack .content .outlineGradient:hover img {
    filter: brightness(0) invert(1);
}
.flipCard:hover {
    z-index: 2;
}
.flipCard:hover .cardFront {
    transform: rotateY(-180deg);
}
.flipCard:hover .cardBack {
    transform: rotateY(0deg);
}

.productCard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    background-color: var(--whiteColor);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
}
.productCard .view {
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.productCard .view img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 16px;
}
.productCard .view::after {
    position: absolute;
    top: 0;
    right: -80%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.productCard .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px;
}
.productCard .content .workLinks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.productCard .content .workLinks .link {
    padding: 4px 16px;
    border-radius: 100px;
    color: var(--darkColor);
    background-color: var(--lightBorderColor);
    font-size: 12px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.productCard .content .workLinks .link img {
    width: 16px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transition: var(--transition);
}
.productCard .content .workLinks .link::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transition: var(--transition);
    background-color: var(--mainColor);
    z-index: -1;
}
.productCard .content .workLinks .link::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transition: var(--transition);
    background-color: var(--mainColor);
    z-index: -1;
}
.productCard .content .workLinks .link:hover {
    color: #fff;
    background-color: var(--secondColor);
}
.productCard .content .workLinks .link:hover img {
    filter: brightness(0) invert(1);
}
.productCard .content .workLinks .link:hover::after {
    top: -70px;
    right: -70px;
}
.productCard .content .workLinks .link:hover::before {
    bottom: -70px;
    left: -70px;
}
.productCard .content .title {
    font-family: "fontBold";
    text-transform: capitalize;
    color: var(--darkColor);
    font-size: 20px;
}
.productCard .content .title:hover {
    color: var(--mainColor);
}
.productCard .content .des {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    color: var(--grayColor);
}
.productCard .content .location,
.productCard .content .date {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}
.productCard .content .location img,
.productCard .content .date img {
    width: 14px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
    -o-object-fit: contain;
    object-fit: contain;
}
.productCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--BigShadow);
}
.productCard:hover .view::after {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        right: 125%;
    }
}
.productDetails {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
}
.productDetails .details {
    background-color: var(--whiteColor);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
}
.productDetails .view {
    width: 100%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.productDetails .view img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 16px;
}
.productDetails .view::after {
    position: absolute;
    top: 0;
    right: -80%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.productDetails .view:hover::after {
    animation: shine 1s;
}
.productDetails .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: start;
}
.productDetails .content .icon {
    width: 40px;
    height: 40px;
}
.productDetails .content .icon.serviceIcon {
    filter: brightness(0);
}
.productDetails .content .workLinks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.productDetails .content .workLinks .link {
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--darkColor);
    background-color: var(--lightBorderColor);
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.productDetails .content .workLinks .link img {
    width: 24px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transition: var(--transition);
}
.productDetails .content .workLinks .link::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transition: var(--transition);
    background-color: var(--mainColor);
    z-index: -1;
}
.productDetails .content .workLinks .link::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transition: var(--transition);
    background-color: var(--mainColor);
    z-index: -1;
}
.productDetails .content .workLinks .link:hover {
    color: var(--whiteColor);
    background-color: var(--secondColor);
}
.productDetails .content .workLinks .link:hover img {
    filter: brightness(0) invert(1);
}
.productDetails .content .workLinks .link:hover::after {
    top: -70px;
    right: -70px;
}
.productDetails .content .workLinks .link:hover::before {
    bottom: -70px;
    left: -70px;
}
.productDetails .content .title {
    font-family: "fontBold";
    text-transform: capitalize;
    color: var(--darkColor);
    font-size: 30px;
}
.productDetails .content .title:hover {
    color: var(--mainColor);
}
.productDetails .content .des {
    color: var(--grayColor);
}
.productDetails .content .location,
.productDetails .content .date {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
}
.productDetails .content .location img,
.productDetails .content .date img {
    width: 14px;
    aspect-ratio: 1/1;
    filter: brightness(0) invert(1);
    -o-object-fit: contain;
    object-fit: contain;
}
.productDetails .swiper {
    width: 100%;
}
.productDetails .productSlider {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.productDetails .productSlider .swiper-slide {
    position: relative;
}
.productDetails .productSlider .swiper-slide iframe,
.productDetails .productSlider .swiper-slide video,
.productDetails .productSlider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 12px;
}
.productDetails .productSlider .slider {
    aspect-ratio: 1;
    max-height: 600px;
    border-radius: 12px;
}
.productDetails .productSlider .slider img {
    cursor: zoom-in;
}
.productDetails .productSlider .thumbs {
    box-sizing: border-box;
    max-height: 600px;
}
.productDetails .productSlider .thumbs .swiper-slide {
    max-height: 120px;
    aspect-ratio: 1;
    opacity: 0.3;
    filter: grayscale(1);
}
.productDetails .productSlider .thumbs .swiper-slide img {
    cursor: pointer;
    border-radius: 8px;
}
.productDetails .productSlider .thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    filter: none;
}
@media screen and (min-width: 992px) {
    .productDetails .productSlider {
        flex-direction: row-reverse;
    }
    .productDetails .productSlider .slider {
        flex: 5;
    }
    .productDetails .productSlider .thumbs {
        flex: 1;
    }
}
.productDetails .productSlider .swiperControl {
    position: absolute;
    left: 0;
    bottom: 0;
}
.productDetails .productSlider .swiperControl .swiperBtns .swiper-button-next,
.productDetails .productSlider .swiperControl .swiperBtns .swiper-button-prev {
    --darkColor: var(--whiteColor);
}
.productDetails .productSlider .swiperControl .swiperBtns .swiper-button-next::after,
.productDetails .productSlider .swiperControl .swiperBtns .swiper-button-prev::after {
    filter: brightness(0) invert(1);
}
.productDetails .productGoals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--whiteColor);
    padding: 24px;
}
.productDetails .productGoals .goal {
    color: var(--darkColor);
    font-size: 18px;
    font-family: "fontBold";
}
.productDetails .productBox {
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--lightBorderColor);
    border-radius: 16px;
    background-color: var(--whiteColor);
}
@media screen and (max-width: 768px) {
    .productDetails .productBox {
        padding: 16px;
    }
    .productDetails .productBox .title {
        padding: 8px;
    }
    .productDetails .productBox ul {
        padding: 0 12px;
    }
}
.productDetails .productBox .title {
    font-weight: bold;
    text-align: start;
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lightBorderColor);
    color: var(--darkColor);
}
.productDetails .productBox .serviceList {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
}
.productDetails .productBox .serviceList span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--darkColor);
    text-align: start;
}
.productDetails .productBox .serviceList span img {
    width: 16px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
}
.productDetails .productBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.productDetails .productBox ul li {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    border-radius: 8px;
    gap: 8px;
    align-items: baseline;
    color: var(--grayColor);
}
.productDetails .productBox ul li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background: url(../img/star.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.productDetails .productBox ul li span {
    flex: 1;
}
.productDetails .productBox ul li p {
    flex: 3;
    font-weight: bold;
}
.productDetails .productBox ul li:nth-child(2n) {
    background-color: var(--lightBorderColor);
}
.productDetails .productBox .features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.productDetails .productBox .features span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--lightBorderColor);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--darkColor);
}
.productDetails .requestDemo {
    position: sticky;
    bottom: 40px;
    right: 0%;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 24px 0;
}
.productDetails .requestDemo .btn {
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    width: min(100% - 40px, 300px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 100px;
    color: var(--whiteColor);
    font-weight: bold;
    font-size: 16px;
    outline: 4px solid rgba(0, 159, 111, 0.1882352941);
    box-shadow: 0 0 0 8px rgba(0, 159, 111, 0.1882352941);
}

.mt-header {
    margin-top: -93px;
    position: relative;
    z-index: 2;
}

.banner {
    padding: 130px 0 20px;
    position: relative;
    display: flex;
    isolation: isolate;
}
.banner .links {
    margin-bottom: 4px;
}
.banner .links a {
    padding: 4px;
    position: relative;
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: capitalize;
}
.banner .links a:last-child::after {
    display: none;
}
.banner .links a::after {
    content: " ↣ ";
}
.banner .links a.active {
    cursor: default;
    color: #777;
}
.banner h2 {
    font-weight: bold;
    padding: 4px;
    color: var(--mainColor);
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .banner h2 {
        font-size: 20px;
    }
}

.ourProducts {
    padding: 60px 12px 40px 12px;
    padding-bottom: 120px;
    background-color: var(--mainColor20);
    z-index: 1;
}
.ourProducts .swiperControl {
    padding: 0;
    width: auto;
}
.ourProducts .swiper-wrapper {
    padding: 40px 0;
}
.ourProducts .sectionTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    text-align: center !important;
}
@media (max-width: 768px) {
    .ourProducts .sectionTop {
        flex-direction: column;
        align-items: center;
    }
}
.ourProducts .sectionTop .top {
    text-align: center;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}
@media (max-width: 768px) {
    .ourProducts .sectionTop .top {
        align-items: center;
        margin: auto;
    }
}
.ourProducts .sectionTop .top .secTitle {
    font-weight: bold;
    color: var(--darkColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .ourProducts .sectionTop .top .secTitle {
        font-size: 24px;
    }
}
.ourProducts .sectionTop .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.ourProducts .sectionTop .top .hint {
    color: var(--grayColor);
}
.ourProducts .sectionTop .outlineGradient {
    white-space: nowrap;
}
.ourProducts .sectionTop .outlineGradient::after {
    background: transparent;
}
.ourProducts .sectionTop .outlineGradient span {
    color: #fff;
    display: flex;
    align-items: center;
}
.ourProducts .sectionTop .outlineGradient img {
    filter: brightness(0) invert(1);
    width: 0;
    height: 16px;
    transition: var(--transition);
}
.ourProducts .sectionTop .outlineGradient:hover img {
    margin-left: 8px;
    width: 16px;
}

.haveBG {
    background-color: var(--whiteColor);
    z-index: 2;
    position: relative;
}

.stats {
    background-color: var(--whiteColor);
    z-index: 2;
    position: relative;
    padding-bottom: 24px;
}
.stats .container {
    position: relative;
    z-index: 4;
    margin-top: -60px;
    background: var(--linearGradient);
    padding: 40px;
    border-radius: 20px;
    animation: animateBg 5s linear infinite;
    background-size: 400%;
    overflow: hidden;
}
.stats .container .top {
    text-align: center;
    padding-bottom: 55px;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 8px;
}
@media (max-width: 767px) {
    .stats .container .top {
        padding-bottom: 40px;
    }
}
.stats .container .top .secTitle {
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .stats .container .top .secTitle {
        font-size: 24px;
    }
}
.stats .container .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: #eee;
    font-family: fontBold;
}
.stats .container .top .hint {
    color: #eee;
}
.stats .container .all {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.stats .container .all .statistic {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.0549019608);
    border-radius: 16px;
    padding: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.0549019608);
}
.stats .container .all .statistic .counterUp {
    font-weight: bold;
    font-family: "fontBold";
    color: #fff;
}
.stats .container .all .statistic h6 {
    font-family: "fontBold";
    text-transform: capitalize;
    color: #fff;
}
.stats .container:hover .shapes span:nth-child(1) {
    width: 90%;
}
.stats .container:hover .shapes span:nth-child(2) {
    width: 60%;
}
.stats .container:hover .shapes span:nth-child(3) {
    width: 35%;
}

.careers {
    background: var(--mainColor20);
    padding: 60px 24px;
    position: relative;
    z-index: 2;
    isolation: isolate;
}
.careers::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/favicon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.06;
}
.careers .container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.careers .top {
    text-align: start;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: center;
}
@media (max-width: 992px) {
    .careers .top {
        text-align: center;
        margin: auto;
    }
}
.careers .top .secTitle {
    font-weight: bold;
    color: var(--mainColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 40px;
}
.careers .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.careers .top .hint {
    color: var(--darkColor);
}
.careers form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--whiteColor);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--BigShadow);
}
.careers form .hint {
    color: var(--grayColor);
    font-style: italic;
}
.careers form .form-select,
.careers form .form-control {
    min-height: 48px;
    border-radius: 8px;
}
.careers form .outlineGradient {
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
    -webkit-clip-path: polygon(10% 0%, 90% 0%, 102% 50%, 90% 100%, 10% 100%, -2% 50%);
    clip-path: polygon(10% 0%, 90% 0%, 102% 50%, 90% 100%, 10% 100%, -2% 50%);
}
.careers form .outlineGradient::after {
    display: none;
}

.contact {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}
.contact form {
    background: var(--mainColor);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1019607843);
    padding: 20px;
    padding-top: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
@media (max-width: 576px) {
    .contact form {
        padding: 32px 0;
    }
}
.contact form .form-group {
    display: flex;
    width: 100%;
}
@media (max-width: 768px) {
    .contact form .form-group {
        flex-direction: column;
        gap: 48px;
    }
}
.contact form .form-group .inputfield {
    width: 100%;
    padding: 0 16px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.contact form .form-group .inputfield label {
    position: absolute;
    font-size: 14px;
    color: var(--whiteColor);
    left: 16px;
    transform: translateY(-50%);
    top: 50%;
    font-weight: 500;
    transition: var(--transition);
    text-transform: capitalize;
    cursor: auto;
}
.contact form .form-group .inputfield label i {
    margin-right: 4px;
}
.contact form .form-group .inputfield label.message-label {
    top: 20%;
}
.contact form .form-group .inputfield label.h {
    top: -4px;
    color: var(--whiteColor);
}
.contact form .form-group .inputfield input,
.contact form .form-group .inputfield textarea {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background: none;
    color: var(--whiteColor);
}
.contact form .form-group .inputfield input:focus + span::after,
.contact form .form-group .inputfield textarea:focus + span::after {
    width: calc(100% - 32px);
}
.contact form .form-group .inputfield textarea {
    padding: 16px 0;
    height: 130px;
}
.contact form .form-group .inputfield .highlight {
    width: 100%;
    height: 1px;
    background: var(--lightGrayColor);
}
.contact form .form-group .inputfield .highlight::after {
    content: "";
    width: 0;
    transition: var(--transition);
    left: 50%;
    height: 1px;
    background: var(--whiteColor);
    position: absolute;
    transform: translate(-50%);
}
.contact form .outlineGradient {
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    align-self: flex-end;
    margin-right: 16px;
}
.contact .contact_info {
    width: 100%;
    height: 100%;
}
.contact .contact_info .top {
    text-align: start;
    padding-bottom: 55px;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 767px) {
    .contact .contact_info .top {
        padding-bottom: 40px;
        margin: auto;
    }
}
.contact .contact_info .top .secTitle {
    font-weight: bold;
    color: var(--darkColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .contact .contact_info .top .secTitle {
        font-size: 24px;
    }
}
.contact .contact_info .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.contact .contact_info .top .hint {
    color: var(--grayColor);
}
.contact .contact_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact .contact_info .field {
    width: 100%;
    display: flex;
    gap: 16px;
    align-items: center;
}
.contact .contact_info .field .icon {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--mainColor);
    overflow: hidden;
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact .contact_info .field .icon::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: var(--transition);
    background: var(--mainColor);
}
.contact .contact_info .field .icon img,
.contact .contact_info .field .icon path,
.contact .contact_info .field .icon svg {
    width: 20px;
    height: 20px;
    fill: var(--mainColor);
}
.contact .contact_info .field .text {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.contact .contact_info .field .text h4 {
    margin-bottom: 4px;
    color: var(--grayColor);
    font-size: 13px;
    font-weight: bold;
    width: 100%;
}
.contact .contact_info .field .text a {
    color: var(--mainColor);
}
.contact .contact_info .field:hover .icon {
    border-color: transparent;
}
.contact .contact_info .field:hover .icon path,
.contact .contact_info .field:hover .icon svg {
    fill: var(--whiteColor);
    z-index: 2;
}
.contact .contact_info .field:hover .icon::after {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .contact .row {
        flex-direction: column-reverse;
    }
}

.modal .modal-content {
    background: var(--whiteColor);
    padding: 24px;
    border-radius: 16px;
    position: relative;
}
.modal .modal-content .btnClose {
    position: absolute;
    right: -12px;
    top: -12px;
    background: var(--darkColor);
    color: var(--whiteColor);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    outline: 2px solid var(--whiteColor);
    font-family: "fontBold";
    font-size: 16px;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .modal .modal-content .btnClose {
        right: 0;
        top: 0;
    }
}
.modal .modal-content .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal .modal-content .form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.modal .modal-content .form .form-group label {
    color: var(--grayColor);
    font-size: 13px;
    font-weight: bold;
}
.modal .modal-content .form .form-group label span {
    color: red;
}
.modal .modal-content .form button {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 150px;
    margin: 10px auto 0;
    justify-content: center;
}

.animate_lines,
.animate_chars,
.animate_chars {
    overflow-x: inherit;
}

.infinite {
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    padding: 12px 0;
    margin-top: 40px;
}
.infinite .swiper {
    width: 100%;
    padding: 0 24px;
}
.infinite .swiper .swiper-wrapper {
    transition-timing-function: linear;
}
.infinite .swiper .swiper-slide {
    padding: 8px 0;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
}
.infinite .swiper .swiper-slide::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/star.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}
.infinite .swiper .swiper-slide .item {
    padding: 4px 16px;
    color: #fff;
    font-size: 18px;
}

footer {
    padding: 40px 0 40px;
    position: relative;
    background-color: var(--whiteColor);
    position: relative;
    z-index: 2;
}
footer::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    top: 0%;
    left: 0%;
    background: linear-gradient(90deg, rgb(94, 248, 63) 0%, rgb(0, 226, 169) 33%, rgb(150, 223, 241) 66%, rgb(72, 246, 87) 100%);
    background-size: 400%;
    animation: animateBg 8s linear infinite;
    border-radius: 12px;
}
footer .logo {
    height: 60px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
    margin-bottom: 16px;
}
footer .info {
    color: var(--darkColor);
}
footer .copywriting {
    display: flex;
    padding: 16px 24px;
    margin-top: 24px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background-color: var(--mainColor05);
    border-radius: 24px;
}
@media screen and (max-width: 768px) {
    footer .copywriting {
        justify-content: space-around;
    }
}
footer .copywriting .hint {
    color: var(--darkColor);
}
footer .copywriting .social {
    display: flex;
    align-items: center;
    gap: 8px;
}
footer .copywriting .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--mainColor);
    background-color: transparent;
    transition: var(--transition);
}
footer .copywriting .social a img {
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: var(--transition);
}
footer .copywriting .social a:hover {
    background-color: var(--mainColor);
    transform: translateY(-4px);
}
footer .copywriting .social a:hover img {
    filter: brightness(0) invert(1);
}
footer .group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
footer .group .title {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--darkColor);
}
footer .group .title::after {
    content: "";
    height: 3px;
    width: 32px;
    border-radius: 4px;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 8s linear infinite;
}
footer .group ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 8px;
}
footer .group ul li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    position: relative;
    min-width: 150px;
}
footer .group ul li img {
    width: 20px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transition: var(--transition);
}
footer .group ul li::before {
    content: "";
    height: 2px;
    width: 4px;
    transition: var(--transition);
    border-radius: 4px;
    background: var(--mainColor);
}
footer .group ul li a {
    color: var(--darkColor);
    display: flex;
    align-items: center;
    gap: 8px;
}
footer .group ul li:hover::before {
    width: 16px;
}
footer .group ul li:hover a {
    color: var(--mainColor);
}

.body-overlay {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    top: 0;
    opacity: 1;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: top right;
    background-image: url(../img/body-bg.png);
}

.text_invert > div {
    background-image: linear-gradient(to left, var(--mainColor) 50%, var(--grayColor) 50%);
    background-size: 200% 100%;
    background-position-x: -100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.8;
}

.portfolio {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: min(100% - 24px, 1320px);
    margin: 0 auto;
    height: 100%;
    padding: 32px 0;
}
.portfolio .portfolioFilter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.portfolio .portfolioFilter a {
    display: flex;
    background-color: var(--lightGrayColor);
    color: var(--darkColor);
    padding: 8px 20px;
    border-radius: 100px;
}
.portfolio .portfolioFilter a.activeBtn {
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 8s linear infinite;
    color: var(--whiteColor);
}
.portfolio .portfolioItems {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative !important;
    height: 100% !important;
    min-height: 50vh;
}

.portfolioItem {
    display: none;
    flex: 1 30%;
    background-color: var(--whiteColor);
    padding: 24px;
    border-radius: 24px;
    min-width: 300px;
    max-width: 40%;
    transition: var(--transition);
    opacity: 0;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .portfolioItem {
        max-width: unset;
        flex: 1 40%;
    }
}
.portfolioItem.show {
    display: flex;
    animation: fadeUp 0.5s ease-in-out forwards;
}
.portfolioItem.show:nth-child(1) {
    animation-delay: 0.1s;
}
.portfolioItem.show:nth-child(2) {
    animation-delay: 0.2s;
}
.portfolioItem.show:nth-child(3) {
    animation-delay: 0.3s;
}
.portfolioItem.show:nth-child(4) {
    animation-delay: 0.4s;
}
.portfolioItem.show:nth-child(5) {
    animation-delay: 0.5s;
}
.portfolioItem.show:nth-child(6) {
    animation-delay: 0.6s;
}
.portfolioItem.show:nth-child(7) {
    animation-delay: 0.7s;
}
.portfolioItem.show:nth-child(8) {
    animation-delay: 0.8s;
}
.portfolioItem.show:nth-child(9) {
    animation-delay: 0.9s;
}
.portfolioItem.show:nth-child(10) {
    animation-delay: 1s;
}
.portfolioItem.show:nth-child(11) {
    animation-delay: 1.1s;
}
.portfolioItem.show:nth-child(12) {
    animation-delay: 1.2s;
}
.portfolioItem.show:nth-child(13) {
    animation-delay: 1.3s;
}
.portfolioItem.show:nth-child(14) {
    animation-delay: 1.4s;
}
.portfolioItem.show:nth-child(15) {
    animation-delay: 1.5s;
}
.portfolioItem.show:nth-child(16) {
    animation-delay: 1.6s;
}
.portfolioItem.show:nth-child(17) {
    animation-delay: 1.7s;
}
.portfolioItem.show:nth-child(18) {
    animation-delay: 1.8s;
}
.portfolioItem.show:nth-child(19) {
    animation-delay: 1.9s;
}
.portfolioItem.show:nth-child(20) {
    animation-delay: 2s;
}
.portfolioItem.show:nth-child(21) {
    animation-delay: 2.1s;
}
.portfolioItem.show:nth-child(22) {
    animation-delay: 2.2s;
}
.portfolioItem.show:nth-child(23) {
    animation-delay: 2.3s;
}
.portfolioItem.show:nth-child(24) {
    animation-delay: 2.4s;
}
.portfolioItem.show:nth-child(25) {
    animation-delay: 2.5s;
}
.portfolioItem.show:nth-child(26) {
    animation-delay: 2.6s;
}
.portfolioItem.show:nth-child(27) {
    animation-delay: 2.7s;
}
.portfolioItem.show:nth-child(28) {
    animation-delay: 2.8s;
}
.portfolioItem.show:nth-child(29) {
    animation-delay: 2.9s;
}
.portfolioItem.show:nth-child(30) {
    animation-delay: 3s;
}
.portfolioItem.show:nth-child(31) {
    animation-delay: 3.1s;
}
.portfolioItem.show:nth-child(32) {
    animation-delay: 3.2s;
}
.portfolioItem.show:nth-child(33) {
    animation-delay: 3.3s;
}
.portfolioItem.show:nth-child(34) {
    animation-delay: 3.4s;
}
.portfolioItem.show:nth-child(35) {
    animation-delay: 3.5s;
}
.portfolioItem.show:nth-child(36) {
    animation-delay: 3.6s;
}
.portfolioItem.show:nth-child(37) {
    animation-delay: 3.7s;
}
.portfolioItem.show:nth-child(38) {
    animation-delay: 3.8s;
}
.portfolioItem.show:nth-child(39) {
    animation-delay: 3.9s;
}
.portfolioItem.show:nth-child(40) {
    animation-delay: 4s;
}
.portfolioItem.show:nth-child(41) {
    animation-delay: 4.1s;
}
.portfolioItem.show:nth-child(42) {
    animation-delay: 4.2s;
}
.portfolioItem.show:nth-child(43) {
    animation-delay: 4.3s;
}
.portfolioItem.show:nth-child(44) {
    animation-delay: 4.4s;
}
.portfolioItem.show:nth-child(45) {
    animation-delay: 4.5s;
}
.portfolioItem.show:nth-child(46) {
    animation-delay: 4.6s;
}
.portfolioItem.show:nth-child(47) {
    animation-delay: 4.7s;
}
.portfolioItem.show:nth-child(48) {
    animation-delay: 4.8s;
}
.portfolioItem.show:nth-child(49) {
    animation-delay: 4.9s;
}
.portfolioItem.show:nth-child(50) {
    animation-delay: 5s;
}
.portfolioItem.show:nth-child(51) {
    animation-delay: 5.1s;
}
.portfolioItem.show:nth-child(52) {
    animation-delay: 5.2s;
}
.portfolioItem.show:nth-child(53) {
    animation-delay: 5.3s;
}
.portfolioItem.show:nth-child(54) {
    animation-delay: 5.4s;
}
.portfolioItem.show:nth-child(55) {
    animation-delay: 5.5s;
}
.portfolioItem.show:nth-child(56) {
    animation-delay: 5.6s;
}
.portfolioItem.show:nth-child(57) {
    animation-delay: 5.7s;
}
.portfolioItem.show:nth-child(58) {
    animation-delay: 5.8s;
}
.portfolioItem.show:nth-child(59) {
    animation-delay: 5.9s;
}
.portfolioItem.show:nth-child(60) {
    animation-delay: 6s;
}
.portfolioItem.show:nth-child(61) {
    animation-delay: 6.1s;
}
.portfolioItem.show:nth-child(62) {
    animation-delay: 6.2s;
}
.portfolioItem.show:nth-child(63) {
    animation-delay: 6.3s;
}
.portfolioItem.show:nth-child(64) {
    animation-delay: 6.4s;
}
.portfolioItem.show:nth-child(65) {
    animation-delay: 6.5s;
}
.portfolioItem.show:nth-child(66) {
    animation-delay: 6.6s;
}
.portfolioItem.show:nth-child(67) {
    animation-delay: 6.7s;
}
.portfolioItem.show:nth-child(68) {
    animation-delay: 6.8s;
}
.portfolioItem.show:nth-child(69) {
    animation-delay: 6.9s;
}
.portfolioItem.show:nth-child(70) {
    animation-delay: 7s;
}
.portfolioItem.show:nth-child(71) {
    animation-delay: 7.1s;
}
.portfolioItem.show:nth-child(72) {
    animation-delay: 7.2s;
}
.portfolioItem.show:nth-child(73) {
    animation-delay: 7.3s;
}
.portfolioItem.show:nth-child(74) {
    animation-delay: 7.4s;
}
.portfolioItem.show:nth-child(75) {
    animation-delay: 7.5s;
}
.portfolioItem.show:nth-child(76) {
    animation-delay: 7.6s;
}
.portfolioItem.show:nth-child(77) {
    animation-delay: 7.7s;
}
.portfolioItem.show:nth-child(78) {
    animation-delay: 7.8s;
}
.portfolioItem.show:nth-child(79) {
    animation-delay: 7.9s;
}
.portfolioItem.show:nth-child(80) {
    animation-delay: 8s;
}
.portfolioItem.show:nth-child(81) {
    animation-delay: 8.1s;
}
.portfolioItem.show:nth-child(82) {
    animation-delay: 8.2s;
}
.portfolioItem.show:nth-child(83) {
    animation-delay: 8.3s;
}
.portfolioItem.show:nth-child(84) {
    animation-delay: 8.4s;
}
.portfolioItem.show:nth-child(85) {
    animation-delay: 8.5s;
}
.portfolioItem.show:nth-child(86) {
    animation-delay: 8.6s;
}
.portfolioItem.show:nth-child(87) {
    animation-delay: 8.7s;
}
.portfolioItem.show:nth-child(88) {
    animation-delay: 8.8s;
}
.portfolioItem.show:nth-child(89) {
    animation-delay: 8.9s;
}
.portfolioItem.show:nth-child(90) {
    animation-delay: 9s;
}
.portfolioItem.show:nth-child(91) {
    animation-delay: 9.1s;
}
.portfolioItem.show:nth-child(92) {
    animation-delay: 9.2s;
}
.portfolioItem.show:nth-child(93) {
    animation-delay: 9.3s;
}
.portfolioItem.show:nth-child(94) {
    animation-delay: 9.4s;
}
.portfolioItem.show:nth-child(95) {
    animation-delay: 9.5s;
}
.portfolioItem.show:nth-child(96) {
    animation-delay: 9.6s;
}
.portfolioItem.show:nth-child(97) {
    animation-delay: 9.7s;
}
.portfolioItem.show:nth-child(98) {
    animation-delay: 9.8s;
}
.portfolioItem.show:nth-child(99) {
    animation-delay: 9.9s;
}
.portfolioItem.show:nth-child(100) {
    animation-delay: 10s;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.portfolioItem:nth-child(even) {
    flex: 2 30%;
}
@media screen and (max-width: 768px) {
    .portfolioItem:nth-child(even) {
        flex: 2 40%;
    }
}
.portfolioItem .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--darkColor);
}
.portfolioItem .content .top {
    display: flex;
    align-items: baseline;
}
.portfolioItem .content .top .title {
    flex: 1;
    transition: var(--transition);
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portfolioItem .content .top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 8s linear infinite;
    transition: var(--transition);
}
.portfolioItem .content .top span img {
    width: 16px;
    height: 16px;
    transition: var(--transition);
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: rotate(225deg);
}
.portfolioItem .content .des {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--grayColor);
}
.portfolioItem .image {
    width: 100%;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0;
}
.portfolioItem .image img {
    width: 100%;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 16px;
}
.portfolioItem .image::after {
    position: absolute;
    top: 0;
    right: -80%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.portfolioItem:hover .content .top .title {
    color: var(--mainColor);
}
.portfolioItem:hover .content .top .icon img {
    transform: rotate(260deg);
}
.portfolioItem:hover .image::after {
    animation: shine 1s;
}

.loadMore {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--darkColor);
}
.loadMore .spin {
    animation: spin 1s linear infinite;
    transform-origin: center;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loadMore .spin img,
.loadMore .spin svg {
    width: 24px;
    height: 24px;
    fill: var(--mainColor);
}
.loadMore .spin img *,
.loadMore .spin svg * {
    fill: var(--mainColor);
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.phoneView .swiper {
    width: 100%;
    padding: 30px 0;
    position: relative;
}
.phoneView .swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 234px;
    height: 507px;
    position: relative;
}
@media (max-width: 768px) {
    .phoneView .swiper .swiper-slide {
        width: 175.5px;
        height: 380px;
    }
}
.phoneView .swiper .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 16px;
}
.phoneView .swiper .frame {
    width: 270px;
    height: 535px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
}
@media (max-width: 768px) {
    .phoneView .swiper .frame {
        width: 202.5px;
        height: 401px;
    }
}
.phoneView .swiper-3d .swiper-slide-shadow,
.phoneView .swiper-3d .swiper-slide-shadow-bottom,
.phoneView .swiper-3d .swiper-slide-shadow-left,
.phoneView .swiper-3d .swiper-slide-shadow-right,
.phoneView .swiper-3d .swiper-slide-shadow-top {
    border-radius: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.062745098);
    border: 4px solid var(--whiteColor);
}
.phoneView .swiper-3d .swiper-slide-shadow-left {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.phoneView .swiper-3d .swiper-slide-shadow-right {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.floatBtns {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}
.floatBtns .main,
.floatBtns a {
    cursor: pointer;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.floatBtns .main img,
.floatBtns a img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.floatBtns .main {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1843137255);
    color: var(--darkColor);
    border-radius: 0 100% 100% 0;
}
.floatBtns .main img {
    width: 24px;
    height: 24px;
}
.floatBtns .subs a {
    box-shadow: none;
    position: absolute;
    left: 10px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0px) translateY(0px);
    border: 1px solid var(--whiteColor);
}
.floatBtns .subs a:nth-child(1) {
    transition-delay: 0.2s, 0s, 0.2s;
}
.floatBtns .subs a:nth-child(2) {
    transition-delay: 0.3s, 0s, 0.3s;
}
.floatBtns .subs a:nth-child(3) {
    transition-delay: 0.4s, 0s, 0.4s;
}
.floatBtns .subs a:nth-child(4) {
    transition-delay: 0.5s, 0s, 0.5s;
}
.floatBtns .subs a:nth-child(5) {
    transition-delay: 0.6s, 0s, 0.6s;
}
.floatBtns .subs a:nth-child(6) {
    transition-delay: 0.7s, 0s, 0.7s;
}
.floatBtns .subs a:nth-child(7) {
    transition-delay: 0.8s, 0s, 0.8s;
}
.floatBtns .subs a:nth-child(8) {
    transition-delay: 0.9s, 0s, 0.9s;
}
.floatBtns .subs a:nth-child(9) {
    transition-delay: 1s, 0s, 1s;
}
.floatBtns .subs a:nth-child(10) {
    transition-delay: 1.1s, 0s, 1.1s;
}
.floatBtns .subs a:nth-child(11) {
    transition-delay: 1.2s, 0s, 1.2s;
}
.floatBtns .subs a:nth-child(12) {
    transition-delay: 1.3s, 0s, 1.3s;
}
.floatBtns .subs a:nth-child(13) {
    transition-delay: 1.4s, 0s, 1.4s;
}
.floatBtns .subs a:nth-child(14) {
    transition-delay: 1.5s, 0s, 1.5s;
}
.floatBtns .subs a:nth-child(15) {
    transition-delay: 1.6s, 0s, 1.6s;
}
.floatBtns .subs a:nth-child(16) {
    transition-delay: 1.7s, 0s, 1.7s;
}
.floatBtns .subs a:nth-child(17) {
    transition-delay: 1.8s, 0s, 1.8s;
}
.floatBtns .subs a:nth-child(18) {
    transition-delay: 1.9s, 0s, 1.9s;
}
.floatBtns .subs a:nth-child(19) {
    transition-delay: 2s, 0s, 2s;
}
.floatBtns .subs a:nth-child(20) {
    transition-delay: 2.1s, 0s, 2.1s;
}
.floatBtns .subs a:nth-child(21) {
    transition-delay: 2.2s, 0s, 2.2s;
}
.floatBtns .subs a:nth-child(22) {
    transition-delay: 2.3s, 0s, 2.3s;
}
.floatBtns .subs a:nth-child(23) {
    transition-delay: 2.4s, 0s, 2.4s;
}
.floatBtns .subs a:nth-child(24) {
    transition-delay: 2.5s, 0s, 2.5s;
}
.floatBtns .subs a:nth-child(25) {
    transition-delay: 2.6s, 0s, 2.6s;
}
.floatBtns .subs a:nth-child(26) {
    transition-delay: 2.7s, 0s, 2.7s;
}
.floatBtns .subs a:nth-child(27) {
    transition-delay: 2.8s, 0s, 2.8s;
}
.floatBtns .subs a:nth-child(28) {
    transition-delay: 2.9s, 0s, 2.9s;
}
.floatBtns .subs a:nth-child(29) {
    transition-delay: 3s, 0s, 3s;
}
.floatBtns .subs a:nth-child(30) {
    transition-delay: 3.1s, 0s, 3.1s;
}
.floatBtns .subs a:nth-child(31) {
    transition-delay: 3.2s, 0s, 3.2s;
}
.floatBtns .subs a:nth-child(32) {
    transition-delay: 3.3s, 0s, 3.3s;
}
.floatBtns .subs a:nth-child(33) {
    transition-delay: 3.4s, 0s, 3.4s;
}
.floatBtns .subs a:nth-child(34) {
    transition-delay: 3.5s, 0s, 3.5s;
}
.floatBtns .subs a:nth-child(35) {
    transition-delay: 3.6s, 0s, 3.6s;
}
.floatBtns .subs a:nth-child(36) {
    transition-delay: 3.7s, 0s, 3.7s;
}
.floatBtns .subs a:nth-child(37) {
    transition-delay: 3.8s, 0s, 3.8s;
}
.floatBtns .subs a:nth-child(38) {
    transition-delay: 3.9s, 0s, 3.9s;
}
.floatBtns .subs a:nth-child(39) {
    transition-delay: 4s, 0s, 4s;
}
.floatBtns .subs a:nth-child(40) {
    transition-delay: 4.1s, 0s, 4.1s;
}
.floatBtns .subs a:nth-child(41) {
    transition-delay: 4.2s, 0s, 4.2s;
}
.floatBtns .subs a:nth-child(42) {
    transition-delay: 4.3s, 0s, 4.3s;
}
.floatBtns .subs a:nth-child(43) {
    transition-delay: 4.4s, 0s, 4.4s;
}
.floatBtns .subs a:nth-child(44) {
    transition-delay: 4.5s, 0s, 4.5s;
}
.floatBtns .subs a:nth-child(45) {
    transition-delay: 4.6s, 0s, 4.6s;
}
.floatBtns .subs a:nth-child(46) {
    transition-delay: 4.7s, 0s, 4.7s;
}
.floatBtns .subs a:nth-child(47) {
    transition-delay: 4.8s, 0s, 4.8s;
}
.floatBtns .subs a:nth-child(48) {
    transition-delay: 4.9s, 0s, 4.9s;
}
.floatBtns .subs a:nth-child(49) {
    transition-delay: 5s, 0s, 5s;
}
.floatBtns .subs a:nth-child(50) {
    transition-delay: 5.1s, 0s, 5.1s;
}
.floatBtns .subs a:nth-child(51) {
    transition-delay: 5.2s, 0s, 5.2s;
}
.floatBtns .subs a:nth-child(52) {
    transition-delay: 5.3s, 0s, 5.3s;
}
.floatBtns .subs a:nth-child(53) {
    transition-delay: 5.4s, 0s, 5.4s;
}
.floatBtns .subs a:nth-child(54) {
    transition-delay: 5.5s, 0s, 5.5s;
}
.floatBtns .subs a:nth-child(55) {
    transition-delay: 5.6s, 0s, 5.6s;
}
.floatBtns .subs a:nth-child(56) {
    transition-delay: 5.7s, 0s, 5.7s;
}
.floatBtns .subs a:nth-child(57) {
    transition-delay: 5.8s, 0s, 5.8s;
}
.floatBtns .subs a:nth-child(58) {
    transition-delay: 5.9s, 0s, 5.9s;
}
.floatBtns .subs a:nth-child(59) {
    transition-delay: 6s, 0s, 6s;
}
.floatBtns .subs a:nth-child(60) {
    transition-delay: 6.1s, 0s, 6.1s;
}
.floatBtns .subs a:nth-child(61) {
    transition-delay: 6.2s, 0s, 6.2s;
}
.floatBtns .subs a:nth-child(62) {
    transition-delay: 6.3s, 0s, 6.3s;
}
.floatBtns .subs a:nth-child(63) {
    transition-delay: 6.4s, 0s, 6.4s;
}
.floatBtns .subs a:nth-child(64) {
    transition-delay: 6.5s, 0s, 6.5s;
}
.floatBtns .subs a:nth-child(65) {
    transition-delay: 6.6s, 0s, 6.6s;
}
.floatBtns .subs a:nth-child(66) {
    transition-delay: 6.7s, 0s, 6.7s;
}
.floatBtns .subs a:nth-child(67) {
    transition-delay: 6.8s, 0s, 6.8s;
}
.floatBtns .subs a:nth-child(68) {
    transition-delay: 6.9s, 0s, 6.9s;
}
.floatBtns .subs a:nth-child(69) {
    transition-delay: 7s, 0s, 7s;
}
.floatBtns .subs a:nth-child(70) {
    transition-delay: 7.1s, 0s, 7.1s;
}
.floatBtns .subs a:nth-child(71) {
    transition-delay: 7.2s, 0s, 7.2s;
}
.floatBtns .subs a:nth-child(72) {
    transition-delay: 7.3s, 0s, 7.3s;
}
.floatBtns .subs a:nth-child(73) {
    transition-delay: 7.4s, 0s, 7.4s;
}
.floatBtns .subs a:nth-child(74) {
    transition-delay: 7.5s, 0s, 7.5s;
}
.floatBtns .subs a:nth-child(75) {
    transition-delay: 7.6s, 0s, 7.6s;
}
.floatBtns .subs a:nth-child(76) {
    transition-delay: 7.7s, 0s, 7.7s;
}
.floatBtns .subs a:nth-child(77) {
    transition-delay: 7.8s, 0s, 7.8s;
}
.floatBtns .subs a:nth-child(78) {
    transition-delay: 7.9s, 0s, 7.9s;
}
.floatBtns .subs a:nth-child(79) {
    transition-delay: 8s, 0s, 8s;
}
.floatBtns .subs a:nth-child(80) {
    transition-delay: 8.1s, 0s, 8.1s;
}
.floatBtns .subs a:nth-child(81) {
    transition-delay: 8.2s, 0s, 8.2s;
}
.floatBtns .subs a:nth-child(82) {
    transition-delay: 8.3s, 0s, 8.3s;
}
.floatBtns .subs a:nth-child(83) {
    transition-delay: 8.4s, 0s, 8.4s;
}
.floatBtns .subs a:nth-child(84) {
    transition-delay: 8.5s, 0s, 8.5s;
}
.floatBtns .subs a:nth-child(85) {
    transition-delay: 8.6s, 0s, 8.6s;
}
.floatBtns .subs a:nth-child(86) {
    transition-delay: 8.7s, 0s, 8.7s;
}
.floatBtns .subs a:nth-child(87) {
    transition-delay: 8.8s, 0s, 8.8s;
}
.floatBtns .subs a:nth-child(88) {
    transition-delay: 8.9s, 0s, 8.9s;
}
.floatBtns .subs a:nth-child(89) {
    transition-delay: 9s, 0s, 9s;
}
.floatBtns .subs a:nth-child(90) {
    transition-delay: 9.1s, 0s, 9.1s;
}
.floatBtns .subs a:nth-child(91) {
    transition-delay: 9.2s, 0s, 9.2s;
}
.floatBtns .subs a:nth-child(92) {
    transition-delay: 9.3s, 0s, 9.3s;
}
.floatBtns .subs a:nth-child(93) {
    transition-delay: 9.4s, 0s, 9.4s;
}
.floatBtns .subs a:nth-child(94) {
    transition-delay: 9.5s, 0s, 9.5s;
}
.floatBtns .subs a:nth-child(95) {
    transition-delay: 9.6s, 0s, 9.6s;
}
.floatBtns .subs a:nth-child(96) {
    transition-delay: 9.7s, 0s, 9.7s;
}
.floatBtns .subs a:nth-child(97) {
    transition-delay: 9.8s, 0s, 9.8s;
}
.floatBtns .subs a:nth-child(98) {
    transition-delay: 9.9s, 0s, 9.9s;
}
.floatBtns .subs a:nth-child(99) {
    transition-delay: 10s, 0s, 10s;
}
.floatBtns .subs a:nth-child(100) {
    transition-delay: 10.1s, 0s, 10.1s;
}
.floatBtns:hover .subs a {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1843137255);
    opacity: 1;
    visibility: visible;
}
.floatBtns:hover .subs a:nth-child(1) {
    transform: translateX(0px) translateY(-70px);
}
.floatBtns:hover .subs a:nth-child(2) {
    transform: translateX(45px) translateY(-47px);
}
.floatBtns:hover .subs a:nth-child(3) {
    transform: translateX(60px) translateY(0px);
}
.floatBtns:hover .subs a:nth-child(4) {
    transform: translateX(45px) translateY(47px);
}
.floatBtns:hover .subs a:nth-child(5) {
    transform: translateX(0) translateY(70px);
}

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

.whyChooseUs {
    background-color: var(--whiteColor);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.whyChooseUs .hint {
    color: var(--mainColor);
}
.whyChooseUs .title {
    color: var(--darkColor);
    font-weight: bold;
}
.whyChooseUs .des {
    color: var(--darkColor);
}
.whyChooseUs .box {
    background-color: var(--mainColor05);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.whyChooseUs .box img {
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 1;
}
.whyChooseUs .box .subTitle {
    color: var(--darkColor);
    font-weight: bold;
}

.faq {
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
}
.faq .hint {
    color: var(--mainColor);
}
.faq .title {
    color: var(--darkColor);
    font-weight: bold;
}
.faq .accordion {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq .accordion .accordion-item {
    border-radius: 16px;
    border: none;
    background-color: var(--whiteColor);
}
.faq .accordion .accordion-item .accordion-button {
    background: var(--lightBorderColor);
    border-radius: 16px;
    box-shadow: none;
    font-weight: bold;
    transition: var(--transition);
    color: var(--darkColor);
}
.faq .accordion .accordion-item .accordion-button::after {
    margin-left: auto;
    margin-right: unset;
}
.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    color: #fff;
}
.faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.faq .accordion .accordion-item .accordion-body {
    color: var(--darkColor);
}

.marketing {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.marketing .hint {
    color: var(--mainColor);
}
.marketing .title {
    color: var(--darkColor);
    font-weight: bold;
}
.marketing .ourMarketers {
    margin-top: 24px;
}
.marketing .marketer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background-color: var(--whiteColor);
    border-radius: 24px;
    box-shadow: var(--BigShadow);
}
.marketing .marketer .content {
    display: flex;
    gap: 8px;
    align-items: center;
}
.marketing .marketer .content img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
    height: 32px;
    border-radius: 4px;
}
.marketing .marketer .locaton {
    color: var(--mainColor);
    font-weight: bold;
}
.marketing .marketer .name {
    color: var(--darkColor);
    font-weight: bold;
}
.marketing .marketer .contactMarketer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 4px;
}
.marketing .marketer .contactMarketer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: 100px;
    margin-top: 8px;
    border: 1px solid var(--mainColor20);
    transition: var(--transition);
}
.marketing .marketer .contactMarketer a img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: var(--transition);
}
.marketing .marketer .contactMarketer a:hover {
    border-color: transparent;
}
.marketing .marketer .contactMarketer a:hover.whatsApp {
    background-color: #25d366;
}
.marketing .marketer .contactMarketer a:hover.whatsApp img {
    filter: brightness(0) invert(1);
}
.marketing .marketer .contactMarketer a:hover.call {
    background-color: #3e86e4;
}
.marketing .marketer .contactMarketer a:hover.call img {
    filter: brightness(0) invert(1);
}
.marketing .marketer .contactMarketer a:hover.email {
    background-color: #ff4343;
}
.marketing .marketer .contactMarketer a:hover.email img {
    filter: brightness(0) invert(1);
}

.howToBeMarketer {
    padding: 60px 0;
    position: relative;
    background-color: var(--mainColor05);
    z-index: 2;
}
.howToBeMarketer .hint {
    color: var(--mainColor);
}
.howToBeMarketer .title {
    color: var(--darkColor);
    font-weight: bold;
}
.howToBeMarketer .timeLine {
    padding: 60px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.howToBeMarketer .timeLine::after {
    content: "";
    width: 2px;
    height: calc(100% - 100px);
    position: absolute;
    background-color: var(--mainColor20);
    right: 50%;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
}
.howToBeMarketer .timeLine .timeLineItem {
    width: calc(50% - 16px);
    background-color: var(--whiteColor);
    padding: 24px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--BigShadow);
    border-bottom: 4px solid var(--mainColor20);
}
.howToBeMarketer .timeLine .timeLineItem h5 {
    font-weight: bold;
    color: var(--mainColor);
}
.howToBeMarketer .timeLine .timeLineItem .favimg {
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    filter: grayscale(1) opacity(0.2);
}
.howToBeMarketer .timeLine .timeLineItem p {
    color: var(--darkColor);
}
.howToBeMarketer .timeLine .timeLineItem::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--mainColor20);
    position: absolute;
    right: -8px;
    left: unset;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
}
.howToBeMarketer .timeLine .timeLineItem:nth-child(even) {
    align-self: flex-end;
}
.howToBeMarketer .timeLine .timeLineItem:nth-child(even)::before {
    right: unset;
    left: -24px;
}
@media screen and (max-width: 768px) {
    .howToBeMarketer .timeLine::after {
        content: "";
        right: unset;
        left: 0%;
        transform: translateY(-50%);
    }
    .howToBeMarketer .timeLine .timeLineItem {
        width: calc(100% - 16px);
        margin-left: auto;
    }
    .howToBeMarketer .timeLine .timeLineItem::before {
        left: -24px !important;
        right: unset !important;
    }
}

.latestPortfolio {
    padding: 60px 12px 40px 12px;
    background-color: var(--whiteColor);
    z-index: 1;
}
.latestPortfolio .swiperControl {
    padding: 0;
    width: auto;
}
.latestPortfolio .swiper-wrapper {
    padding: 40px 0;
    height: unset;
}
.latestPortfolio .swiper-wrapper .swiper-slide {
    height: 100% !important;
}
.latestPortfolio .sectionTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    text-align: center !important;
}
@media (max-width: 768px) {
    .latestPortfolio .sectionTop {
        flex-direction: column;
        align-items: center;
    }
}
.latestPortfolio .sectionTop .top {
    text-align: center;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}
@media (max-width: 768px) {
    .latestPortfolio .sectionTop .top {
        align-items: center;
        margin: auto;
    }
}
.latestPortfolio .sectionTop .top .secTitle {
    font-weight: bold;
    color: var(--darkColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .latestPortfolio .sectionTop .top .secTitle {
        font-size: 24px;
    }
}
.latestPortfolio .sectionTop .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.latestPortfolio .sectionTop .top .hint {
    color: var(--grayColor);
}
.latestPortfolio .sectionTop .outlineGradient {
    white-space: nowrap;
}
.latestPortfolio .sectionTop .outlineGradient::after {
    background: transparent;
}
.latestPortfolio .sectionTop .outlineGradient span {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
}
.latestPortfolio .sectionTop .outlineGradient img {
    filter: brightness(0) invert(1);
    width: 0;
    height: 16px;
    transition: var(--transition);
}
.latestPortfolio .sectionTop .outlineGradient:hover img {
    margin-left: 8px;
    width: 16px;
}
.latestPortfolio .portfolioItem {
    display: flex;
    animation: fadeUp 0.5s ease-in-out forwards;
    max-width: unset !important;
    height: 100% !important;
    border: 1px solid var(--lightBorderColor);
}

.dark-mode {
    --whiteColor: #191919;
    --darkColor: #e7e7e7;
    --lightGrayColor: #292929;
    --lightBorderColor: #1e1e1e;
    --grayColor: #a4a4a4;
    --shadow: 0px 2px 4px #3e3e3e;
    --BigShadow: 0 16px 32px 0 #1d1d1fe5;
}

.Blog .BlogItems {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}
@media (max-width: 430px) {
    .Blog .BlogItems {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}
.Blog .BlogItems .blogCard {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--whiteColor);
    color: var(--darkColor);
    position: relative;
    height: 420px;
    transition: var(--transition);
}
.Blog .BlogItems .blogCard:hover {
    transform: scale(1.03);
    box-shadow: var(--BigShadow);
}
.Blog .BlogItems .blogCard:hover h2 {
    color: var(--mainColor);
}
.Blog .BlogItems .blogCard figure {
    border-radius: 20px;
    height: 60%;
}
.Blog .BlogItems .blogCard figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}
.Blog .BlogItems .blogCard h2 {
    font-size: 1.8rem;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.Blog .BlogItems .blogCard .BlogDes {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.Blog .BlogItems .blogCard .userInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block-end: 1dvh;
}
.Blog .BlogItems .blogCard .userInfo p {
    font-size: 0.8rem;
    opacity: 0.8;
}
.Blog .BlogItems .blogCard .userInfo img {
    width: 16px;
    aspect-ratio: 1;
}
.Blog .BlogItems .AELink {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.Blog .BlogItems .loadMore {
    grid-column: 1/-1;
}

.SameBlog {
    padding-block: 70px 40px;
}
.SameBlog .sectionTop {
    position: relative;
    margin-bottom: 30px;
}
.SameBlog .sectionTop .swiper-button-next {
    right: 10px;
    left: auto;
}
.SameBlog .sectionTop .swiper-button-prev {
    right: 80px;
    left: auto;
}
.SameBlog .sectionTop .swiper-button-next,
.SameBlog .sectionTop .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 4;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    color: var(--darkColor);
}
.SameBlog .sectionTop .swiper-button-next:hover::before,
.SameBlog .sectionTop .swiper-button-prev:hover::before {
    opacity: 0;
}
.SameBlog .sectionTop .swiper-button-next:hover:after,
.SameBlog .sectionTop .swiper-button-prev:hover:after {
    color: var(--whiteColor);
}
.SameBlog .sectionTop .swiper-button-next::before,
.SameBlog .sectionTop .swiper-button-prev::before {
    content: "";
    position: absolute;
    bottom: 50%;
    right: 50%;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 1;
    transform: translate(50%, 50%);
    background-color: var(--whiteColor);
    border-radius: 50%;
    transition: var(--transition);
}
.SameBlog .sectionTop .swiper-button-next:after,
.SameBlog .sectionTop .swiper-button-prev:after {
    font-size: 24px;
    color: var(--darkColor);
    z-index: 2;
}
.SameBlog .blogCard {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--whiteColor);
    color: var(--darkColor);
    position: relative;
    height: 420px;
    transition: var(--transition);
}
.SameBlog .blogCard:hover {
    transform: scale(1.03);
    box-shadow: var(--BigShadow);
}
.SameBlog .blogCard:hover h2 {
    color: var(--mainColor);
}
.SameBlog .blogCard figure {
    border-radius: 20px;
    height: 60%;
}
.SameBlog .blogCard figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}
.SameBlog .blogCard h2 {
    font-size: 1.8rem;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.SameBlog .blogCard .BlogDes {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.SameBlog .blogCard .userInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block-end: 1dvh;
}
.SameBlog .blogCard .userInfo p {
    font-size: 0.8rem;
    opacity: 0.8;
}
.SameBlog .blogCard .userInfo img {
    width: 16px;
    aspect-ratio: 1;
}

.BlogDetails {
    display: grid;
    grid-template-columns: 320px 1fr;
    width: min(100% - 24px, 1320px);
    margin-inline: auto;
}
@media (max-width: 991px) {
    .BlogDetails {
        grid-template-columns: 1fr;
    }
}
.BlogDetails ul {
    padding-right: 0;
}
.BlogDetails ul li {
    list-style-type: none;
}
.BlogDetails aside .asideBox {
    background-color: var(--mainColor05);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 5dvh;
}
.BlogDetails aside .asideBox h3 {
    padding-bottom: 2dvh;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}
.BlogDetails aside .asideBox h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 70%;
    height: 2px;
    background-color: var(--thirdColor);
}
.BlogDetails aside .asideBox form .formGroup,
.BlogDetails aside .asideBox ul .formGroup {
    position: relative;
}
.BlogDetails aside .asideBox form .formGroup input,
.BlogDetails aside .asideBox ul .formGroup input {
    width: 100%;
    height: 58px;
    padding-inline: 8px;
    border: 1px solid var(--lightGrayColor);
    border-radius: 12px;
}
.BlogDetails aside .asideBox form .formGroup button,
.BlogDetails aside .asideBox ul .formGroup button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 0;
    background-color: var(--mainColor05);
    height: 58px;
    padding-inline: 20px;
    border-radius: 12px;
    transition: var(--transition);
}
.BlogDetails aside .asideBox form .formGroup button img,
.BlogDetails aside .asideBox ul .formGroup button img {
    width: 25px;
    height: 25px;
    transition: var(--transition);
}
.BlogDetails aside .asideBox form .formGroup button:hover,
.BlogDetails aside .asideBox ul .formGroup button:hover {
    background-color: var(--secondColor);
}
.BlogDetails aside .asideBox form .formGroup button:hover img,
.BlogDetails aside .asideBox ul .formGroup button:hover img {
    filter: invert(1);
}
.BlogDetails aside .asideBox ul {
    padding-right: 0;
}
.BlogDetails aside .asideBox ul li {
    list-style-type: none;
}
.BlogDetails aside .asideBox ul li a,
.BlogDetails aside .asideBox ul li p {
    margin-bottom: 3dvh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--mainColor05);
    padding: 24px;
    border-radius: 12px;
    font-size: 1.2rem;
    opacity: 0.8;
    color: var(--darkColor);
}
.BlogDetails aside .asideBox ul li a:hover, .BlogDetails aside .asideBox ul li a.active,
.BlogDetails aside .asideBox ul li p:hover,
.BlogDetails aside .asideBox ul li p.active {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    opacity: 1;
}
.BlogDetails aside .asideBox ul li a:hover i, .BlogDetails aside .asideBox ul li a.active i,
.BlogDetails aside .asideBox ul li p:hover i,
.BlogDetails aside .asideBox ul li p.active i {
    color: var(--whiteColor);
}
.BlogDetails aside .asideBox ul li p {
    justify-content: flex-start;
    gap: 12px;
    transition: var(--transition);
    padding: 16px;
    font-size: 0.9rem;
    margin-bottom: 1.5dvh;
}
.BlogDetails aside .asideBox ul li p i {
    color: var(--thirdColor);
}
.BlogDetails aside .asideBox ul li button {
    margin-top: 3dvh;
}
.BlogDetails aside .asideBox.AsideTags h3 {
    font-size: 1.4rem;
}
.BlogDetails aside .asideBox.AsideTags ul {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}
.BlogDetails aside .asideBox.AsideTags ul p {
    background-color: transparent;
    border: 1px solid var(--lightBorderColor);
    border-radius: 100px;
    padding: 12px 24px;
}
@media (max-width: 991px) {
    .BlogDetails aside {
        margin-top: 5dvh;
    }
}
.BlogDetails .details {
    padding-inline: 3dvh;
}
.BlogDetails .details figure:not(.icon) {
    margin-bottom: 4dvh;
}
.BlogDetails .details figure:not(.icon) img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}
.BlogDetails .details .icon {
    margin-bottom: 3dvh;
}
.BlogDetails .details .icon img {
    height: 70px;
    filter: invert(1);
}
.BlogDetails .details ul {
    display: inline-flex;
    gap: 16px;
    margin-bottom: 0;
}
.BlogDetails .details ul li {
    font-size: 0.8rem;
    color: var(--darkColor);
}
.BlogDetails .details ul li i {
    font-size: 1rem;
    color: var(--thirdColor);
    padding-inline-end: 4px;
}
.BlogDetails .details hr {
    opacity: 0.2;
    margin: 3dvh 0;
}
.BlogDetails .details h4 {
    font-size: 1.5rem;
    font-weight: 700;
}
.BlogDetails .details p {
    padding-top: 3dvh;
    opacity: 0.8;
    line-height: 2;
    font-size: 0.9rem;
}
.BlogDetails .details p.hilight-text {
    background-color: var(--mainColor05);
    padding: 30px;
    margin-block: 2dvh;
    position: relative;
}
.BlogDetails .details p.hilight-text::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    inset-inline-start: 0;
    inset-block: 0;
    background-color: var(--thirdColor);
}
.BlogDetails .details .Share {
    display: flex;
    align-items: center;
    gap: 16px;
}
.BlogDetails .details .Share h6 {
    font-size: 1.4rem;
}
.BlogDetails .details .Share a {
    display: inline-flex;
    margin-inline-start: 12px;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--mainColor);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
.BlogDetails .details .Share a img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: var(--transition);
}
.BlogDetails .details .Share a:hover {
    background-color: var(--whiteColor);
    box-shadow: var(--BigShadow);
}
.BlogDetails .details .projectShare {
    display: inline-flex;
    margin-top: 3dvh;
    gap: 16px;
    flex-wrap: wrap;
}
.BlogDetails .details .projectShare li {
    margin-bottom: 2dvh;
}
.BlogDetails .details .projectShare a {
    background-color: var(--mainColor20);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
}
.BlogDetails .details .projectShare a img {
    width: 24px;
    margin-inline-end: 0.5dvh;
}

.portfolioHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.portfolioHeader .searchForm .formGroup {
    position: relative;
    width: 300px;
    max-width: 100%;
    height: 48px;
}
.portfolioHeader .searchForm .formGroup input {
    width: 100%;
    height: 100%;
    padding-inline-start: 10px;
    border: 1px solid var(--lightGrayColor);
    border-radius: 100px;
}
.portfolioHeader .searchForm .formGroup .btnSearch {
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    inset-inline-end: 1px;
    background-color: var(--mainColor);
    height: 46px;
    width: 46px;
    border-radius: 50%;
}
.portfolioHeader .searchForm .formGroup .btnSearch img {
    filter: invert(1);
}

.ClientReivew {
    padding: 60px 12px 40px 12px;
    padding-bottom: 120px;
    background-color: var(--mainColor20);
    z-index: 1;
}
.ClientReivew .swiperControl {
    padding: 0;
    width: auto;
}
.ClientReivew .swiper-wrapper {
    padding: 40px 0;
}
.ClientReivew .sectionTop {
    position: relative;
    margin-bottom: 8px;
}
.ClientReivew .sectionTop .top {
    text-align: center;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}
@media (max-width: 768px) {
    .ClientReivew .sectionTop .top {
        align-items: center;
        margin: auto;
    }
}
.ClientReivew .sectionTop .top .secTitle {
    font-weight: bold;
    color: var(--darkColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .ClientReivew .sectionTop .top .secTitle {
        font-size: 24px;
    }
}
.ClientReivew .sectionTop .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.ClientReivew .sectionTop .top .hint {
    color: var(--grayColor);
}
.ClientReivew .sectionTop .swiper-button-next {
    right: auto;
    left: 80px;
}
.ClientReivew .sectionTop .swiper-button-next,
.ClientReivew .sectionTop .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 4;
    background: var(--linearGradient);
    background-size: 400%;
    animation: animateBg 5s linear infinite;
    color: var(--darkColor);
}
.ClientReivew .sectionTop .swiper-button-next:hover::before,
.ClientReivew .sectionTop .swiper-button-prev:hover::before {
    opacity: 0;
}
.ClientReivew .sectionTop .swiper-button-next:hover:after,
.ClientReivew .sectionTop .swiper-button-prev:hover:after {
    color: var(--whiteColor);
}
.ClientReivew .sectionTop .swiper-button-next::before,
.ClientReivew .sectionTop .swiper-button-prev::before {
    content: "";
    position: absolute;
    bottom: 50%;
    right: 50%;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 1;
    transform: translate(50%, 50%);
    background-color: var(--whiteColor);
    border-radius: 50%;
    transition: var(--transition);
}
.ClientReivew .sectionTop .swiper-button-next:after,
.ClientReivew .sectionTop .swiper-button-prev:after {
    font-size: 24px;
    color: var(--darkColor);
    z-index: 2;
}
.ClientReivew .content {
    background-color: var(--whiteColor);
    border: 1px solid var(--lightBorderColor);
    padding: 24px 20px;
    border-radius: 16px;
    min-height: 333px;
    max-height: 333px;
}
.ClientReivew .content.WriteReview {
    position: relative;
}
.ClientReivew .content.WriteReview::before {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-end: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 110px;
    background: url("../img/favicon.svg") no-repeat;
    background-size: cover;
    filter: brightness(0);
    opacity: 0.05;
}
.ClientReivew .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ClientReivew .content .top .clientInfo h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--darkColor);
}
.ClientReivew .content .top .clientInfo p {
    padding: 0;
}
.ClientReivew .content .top img {
    width: 24px;
    aspect-ratio: 1/1;
}
.ClientReivew .content p {
    font-size: 1.05rem;
    color: var(--grayColor);
    line-height: 1.6;
}
.ClientReivew .content video,
.ClientReivew .content p,
.ClientReivew .content img {
    margin-block: 12px;
}
.ClientReivew .content video,
.ClientReivew .content img {
    border-radius: 8px;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
    object-fit: cover;
}

.layOutProtfolio {
    display: grid;
    grid-template-columns: 300px 1fr;
}
@media (max-width: 767px) {
    .layOutProtfolio {
        grid-template-columns: 1fr;
    }
}
.layOutProtfolio .portfolioItem {
    height: auto;
}
.layOutProtfolio aside {
    background-color: var(--whiteColor);
    box-shadow: var(--BigShadow);
    padding: 24px 12px;
    border-radius: 16px;
    height: -moz-fit-content;
    height: fit-content;
}
.layOutProtfolio aside .searchForm {
    padding-bottom: 16px;
}
.layOutProtfolio aside .searchForm .formGroup {
    position: relative;
    max-width: 100%;
    height: 48px;
}
.layOutProtfolio aside .searchForm .formGroup input {
    width: 100%;
    height: 100%;
    padding-inline-start: 10px;
    border: 1px solid var(--lightGrayColor);
    border-radius: 100px;
}
.layOutProtfolio aside .searchForm .formGroup .btnSearch {
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    inset-inline-end: 1px;
    background-color: var(--mainColor);
    height: 46px;
    width: 46px;
    border-radius: 50%;
}
.layOutProtfolio aside .searchForm .formGroup .btnSearch img {
    filter: invert(1);
}
.layOutProtfolio aside .accordion .accordion-item {
    border-color: rgba(225, 225, 225, 0.5215686275);
}
.layOutProtfolio aside .accordion .accordion-item .accordion-header button {
    font-size: 1.18rem;
    font-weight: 700;
}
.layOutProtfolio aside .accordion .accordion-item .accordion-header button::after {
    height: 1rem;
    margin-left: auto;
    margin-right: 0;
}
.layOutProtfolio aside .accordion .accordion-item .accordion-header button:focus {
    box-shadow: none;
    color: var(--mainColor);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.layOutProtfolio aside .accordion .accordion-item .accordion-header button:not(.collapsed) {
    background-color: transparent;
    color: var(--mainColor);
}
.layOutProtfolio aside .accordion .accordion-item .accordion-body .formGroup {
    display: grid;
    grid-template-columns: 2fr auto;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}
.layOutProtfolio aside .accordion .accordion-item .accordion-body .formGroup label {
    font-size: 1.03rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--grayColor);
}
.layOutProtfolio aside .accordion .accordion-item .accordion-body .formGroup input {
    width: 20px;
    height: 20px;
    accent-color: var(--mainColor);
}
.layOutProtfolio aside .actions {
    margin-top: 20px;
}
.layOutProtfolio aside .actions button {
    width: 100%;
    padding: 12px 16px;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    border: 1px solid transparent;
}
.layOutProtfolio aside .actions .customBtn {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    margin-bottom: 0.4rem;
}
.layOutProtfolio aside .actions .customBtn:hover {
    border-color: var(--mainColor);
    background-color: transparent;
    color: var(--mainColor);
}
.layOutProtfolio aside .actions .restFilter {
    padding-block: 0;
    color: rgb(202, 45, 45);
}

.faqSection {
    padding: 60px 12px 40px 12px;
    position: relative;
    z-index: 1;
    width: 90%;
    margin-inline: auto;
}
.faqSection .sectionTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    text-align: center !important;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .faqSection .sectionTop {
        flex-direction: column;
        align-items: center;
    }
}
.faqSection .sectionTop .top {
    text-align: center;
    width: min(100% - 40px, 800px);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 8px;
}
@media (max-width: 768px) {
    .faqSection .sectionTop .top {
        align-items: center;
        margin: auto;
    }
}
.faqSection .sectionTop .top .secTitle {
    font-weight: bold;
    color: var(--darkColor);
    text-transform: uppercase;
    font-family: fontBold;
    font-size: 30px;
}
@media screen and (max-width: 768px) {
    .faqSection .sectionTop .top .secTitle {
        font-size: 24px;
    }
}
.faqSection .sectionTop .top .secSubTitle {
    font-style: italic;
    font-weight: bold;
    color: var(--grayColor);
    font-family: fontBold;
}
.faqSection .sectionTop .top .hint {
    color: var(--grayColor);
}
.faqSection .sectionTop .outlineGradient {
    white-space: nowrap;
}
.faqSection .sectionTop .outlineGradient::after {
    background: transparent;
}
.faqSection .sectionTop .outlineGradient span {
    color: var(--whiteColor);
    display: flex;
    align-items: center;
}
.faqSection .sectionTop .outlineGradient img {
    filter: brightness(0) invert(1);
    transform: scaleX(-1);
    width: 0;
    height: 16px;
    transition: var(--transition);
}
.faqSection .sectionTop .outlineGradient:hover img {
    margin-right: 8px;
    width: 16px;
}
.faqSection .accordion .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 16px;
}
.faqSection .accordion .accordion-item .accordion-header {
    border-color: transparent;
    padding: 8px;
}
.faqSection .accordion .accordion-item .accordion-header button {
    font-size: 1.18rem;
    font-weight: 700;
}
.faqSection .accordion .accordion-item .accordion-header button::after {
    height: 1rem;
}
.faqSection .accordion .accordion-item .accordion-header button:focus {
    box-shadow: none;
    color: var(--mainColor);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.faqSection .accordion .accordion-item .accordion-header button:not(.collapsed) {
    background-color: transparent;
    color: var(--mainColor);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 rgba(222, 226, 230, 0.4588235294);
}
.changeColor {
    filter: invert(1);
}/*# sourceMappingURL=styleEN.css.map */