@import url(https://fonts.googleapis.com/css2?family=Spartan:wght@100..900&display=swap);
:root {
    --hero-heading-font-size: 8rem;
    --hs2-font-size: 7rem;
    --heading-font-size: 4.8rem;
    --heading-sm-font-size: 4rem;
    --tab-title-size: 3rem;
    --title-lg-font-size: 2.4rem;
    --title-font-size: 2rem;
    --paragraph-font-size: 1.6rem;
    --title-sm-size: 1.8rem;
    --paragraph-sm-size: 1.5rem;
    --paragraph-x-sm-size: 1.4rem;
    --btn-font-size: 1.2rem;
    --global-color-primary: rgb(27, 192, 96);
    --color-primary-light: rgb(208 236 255);
    --color-primary-light-2: rgb(241 244 248);
    --color-primary-light-1: rgb(31, 201, 102);
    --color-primary-light-3: rgb(25, 163, 82);
    --global-color-heading: rgb(33, 37, 41);
    --global-color-secondary: rgb(20, 27, 37);
    --global-color-dark: rgb(27 35 48);
    --global-color-text: rgb(84, 89, 95);
    --global-color-text-1: rgb(78, 80, 85);
    --global-color-text-2: rgb(67, 73, 81);
    --color-paragraph-1: rgb(106, 114, 127);
    --color-paragraph-2: rgb(120, 124, 132);
    --color-grey: rgb(221 226 233);
    --color-dark-3: #1f2734;
    --global-color-accent: #f1f4f8;
    --global-primary-white: rgb(255, 255, 255);
    --color-warning: rgb(255 159 0);
    --color-black: #000000;
    --border-color: rgb(210 211 213);
    --nav-border-color: rgb(121, 127, 135);
    --color-white-rgba-6: rgba(255, 255, 255, 0.6);
    --color-white-rgba-2: rgba(255, 255, 255, 0.188);
    --color-white-rgba-19: rgba(255, 255, 255, 0.19);
    --color-bg-transparent: rgba(0, 0, 0, 0);
    --tabs-bg-color: rgba(20, 27, 37, 0.235);
    --font-family-spartan: "Spartan";
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    line-height: 1;
    overflow-x: hidden;
}
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--global-color-primary);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: var(--global-color-primary);
}
.preloader {
    position: fixed;
    top: 0;
    left: 50%;
    width: 200vw;
    height: 200vh;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--global-color-dark);
    z-index: 999999999;
}
@media (max-width: 991px) {
    .preloader {
        width: 100vh;
        height: 100vh;
    }
}
.preloader-icon {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.preloader .preloader-icon-container {
    display: inline-block;
    width: 70px;
    height: 70px;
    margin: auto;
    --icon-color: var(--global-color-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.preloader .preloader-icon-container .animated-preloader {
    display: inline-block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--global-color-primary);
    border-radius: 50%;
}
.preloader .preloader-icon-container .animated-preloader:after {
    content: "";
    display: inline-block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: var(--global-color-dark);
    -webkit-animation: preloader-inside-white 1s ease-in-out infinite;
    animation: preloader-inside-white 1s ease-in-out infinite;
}
.preloader .preloader-icon-container .animated-preloader:before {
    content: "";
    display: inline-block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 50%;
    background: var(--global-color-primary);
    -webkit-animation: preloader-inside-red 1s ease-in-out infinite;
    animation: preloader-inside-red 1s ease-in-out infinite;
}
@media (max-width: 991px) {
    .preloader .preloader-icon-container {
        width: 50px;
        height: 50px;
    }
}
@-webkit-keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes preloader-inside-white {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@-webkit-keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    30% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes preloader-inside-red {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    30% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 999999;
    padding: 1.5rem;
    background-color: var(--global-color-primary);
    fill: var(--global-primary-white);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.back-to-top-inner {
    width: 2rem;
    height: 2rem;
    fill: inherit;
}
.back-to-top svg {
    width: 100%;
    height: 100%;
    fill: inherit;
}
.back-to-top.scrolled {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--color-grey);
    fill: var(--global-color-primary);
}
@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.custom-fadeInUp {
    animation-name: customFadeInUp;
}
.primary--heading {
    font-family: var(--font-family-spartan);
    color: var(--global-color-heading);
    font-size: var(--heading-font-size);
    line-height: 7rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .primary--heading {
        font-size: calc(3.5rem + 1.5 * (100vw - 250px) / 1150);
        width: 100%;
        line-height: calc(5.5rem + 1.5 * (100vw - 250px) / 1150);
    }
}
.primary--heading::after {
    content: "";
    display: block;
    position: relative;
    width: 8.9rem;
    height: 0.3rem;
    background-color: var(--global-color-primary);
    margin-top: 1.2rem;
}
p {
    font-family: var(--font-family-spartan);
    font-size: var(--paragraph-font-size);
    color: var(--global-color-text);
    line-height: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.button:link,
.button:visited {
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 767px) {
    .button:link,
    .button:visited {
        display: block;
    }
}
.button:link .button-inner,
.button:visited .button-inner {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-primary);
    padding: 2.3rem 5rem;
    border-radius: 10px;
    margin: 0 auto;
    transition: all 0.25s ease, color 0s ease;
}
.button:link .button-inner span,
.button:visited .button-inner span {
    display: inline-block;
    color: inherit;
    transition: transform 0.25s ease, color 0s ease;
    padding-top: 0.1rem;
    font-family: var(--font-family-spartan);
    font-weight: 600;
    font-size: var(--btn-font-size);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.button:link .button-inner .icon,
.button:visited .button-inner .icon {
    opacity: 0;
    z-index: 1;
    transform: translateX(-20px);
    visibility: visible;
    height: 1.4rem;
    width: 1.4rem;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease,
        color 0s ease;
}
.button:active .button-inner,
.button:hover .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-secondary);
}
.button:active .button-inner span,
.button:hover .button-inner span {
    transform: translateX(-20px);
}
.button:active .button-inner .icon,
.button:hover .button-inner .icon {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}
.blue--btn:link .button-inner,
.blue--btn:visited .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-primary);
}
.blue--btn:active .button-inner,
.blue--btn:hover .button-inner {
    background-color: var(--global-primary-white);
    color: var(--global-color-secondary);
    fill: var(--global-color-secondary);
}
.white--btn:link .button-inner,
.white--btn:visited .button-inner {
    background-color: var(--global-primary-white);
    color: var(--global-color-secondary);
}
.white--btn:active .button-inner,
.white--btn:hover .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-primary);
}
.about-us-v1-section {
    padding: 15rem 0rem 10.6rem 0rem;
}
@media (max-width: 991px) {
    .about-us-v1-section {
        padding: 85px 50px 150px 50px;
    }
}
@media (max-width: 767px) {
    .about-us-v1-section {
        padding: 85px 10px 150px 10px;
    }
}
.about-us-v1-section .about-us-v1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
    .about-us-v1-section .about-us-v1 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .about-us-v1-section .about-us-v1 .about-us-content-block {
        padding: 0;
    }
}
.about-us-v1-section .about-us-v1 .about-us-content-block .primary--heading {
    max-width: 86%;
}
.about-us-v1-section .about-us-v1 .about-cards-block {
    display: flex;
}
@media (max-width: 767px) {
    .about-us-v1-section .about-us-v1 .about-cards-block {
        flex-direction: column;
    }
}
.about-us-v1-section .about-us-v1 .about-cards-block .about-card {
    padding: 10px;
}
.about-us-v1-section .about-us-v1 .about-cards-block .about-card .icon {
    fill: var(--global-color-primary);
    height: 60px;
    width: 60px;
}
.about-us-v1-section
    .about-us-v1
    .about-cards-block
    .about-card
    .about-card__title {
    font-size: var(--title-font-size);
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    line-height: 3rem;
    margin: 2rem 0;
}
.about-us-v1-section .about-us-v1 .about-img-block {
    padding: 15px;
    position: relative;
}
@media (max-width: 991px) {
    .about-us-v1-section .about-us-v1 .about-img-block {
        padding-top: 20px;
    }
}
.about-us-v1-section .about-us-v1 .about-img-block .about-img {
    width: 100%;
    border-radius: 10px 10px 10px 10px;
    height: 50rem;
    object-fit: cover;
    object-position: initial;
}
@media (max-width: 991px) {
    .about-us-v1-section .about-us-v1 .about-img-block .about-img {
        height: 100%;
    }
}
.about-us-v1-section .about-us-v1 .about-img-block .frame-img {
    position: absolute;
    height: 96%;
    top: 8px;
    z-index: 10;
    left: 5px;
    width: 98%;
}
@media (max-width: 991px) {
    .about-us-v1-section .about-us-v1 .about-img-block .frame-img {
        width: 99%;
        height: 100%;
    }
}
.about-us-v1-section .about-us-v1 .about-img-block .single-icon-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 1.9rem 2rem 1.8rem 3rem;
    background-color: var(--global-color-primary);
    position: relative;
    z-index: 10;
    width: 49%;
    margin-top: -89px;
}
@media (max-width: 1200px) {
    .about-us-v1-section .about-us-v1 .about-img-block .single-icon-box {
        margin-top: -68px;
        padding: 1.3rem 2rem 1.3rem 3rem;
    }
}
@media (max-width: 991px) {
    .about-us-v1-section .about-us-v1 .about-img-block .single-icon-box {
        width: 100%;
        margin-top: 6px;
    }
}
.about-us-v1-section .about-us-v1 .about-img-block .single-icon-box .content {
    font-size: var(--paragraph-sm-size);
    color: var(--global-primary-white);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    line-height: 2.4rem;
    width: 70%;
}
.about-us-v1-section
    .about-us-v1
    .about-img-block
    .single-icon-box
    .icon-inner {
    border-radius: 50%;
    background-color: var(--global-primary-white);
    padding: 1.3rem 1.3rem;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us-v1-section
    .about-us-v1
    .about-img-block
    .single-icon-box
    .icon-inner
    .icon-svg {
    fill: var(--global-color-primary);
    height: 25px;
    width: 25px;
}
.section-wrapper {
    background-color: var(--global-color-secondary);
    display: flow-root;
}
@media (max-width: 991px) {
    .section-wrapper {
        padding: 0 5rem 0 0;
    }
}
@media (max-width: 767px) {
    .section-wrapper {
        padding: 0 1rem 0 0;
    }
}
.section-wrapper .about-us-v1-section {
    background-image: url(5edfdff550371d4d810d.jpg);
    margin-top: -25.4rem;
    border-radius: 0 15px 15px 0;
}
@media (max-width: 991px) {
    .section-wrapper .about-us-v1-section {
        margin-top: -100px;
        padding: 60px 50px 130px 50px;
    }
}
@media (max-width: 767px) {
    .section-wrapper .about-us-v1-section {
        padding: 50px 10px 130px 10px;
    }
}
.about-us-v2-section {
    padding: 15rem 0rem 15rem 0rem;
}
@media (max-width: 991px) {
    .about-us-v2-section {
        padding: 75px 50px 115px 50px;
    }
}
@media (max-width: 767px) {
    .about-us-v2-section {
        padding: 75px 10px 115px 10px;
    }
}
.about-us-v2-section .about-us-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 991px) {
    .about-us-v2-section .about-us-v2 {
        grid-template-columns: 1fr;
    }
}
.about-us-v2-section .about-us-v2 .about-us-content-block .about-list {
    margin-top: 3rem;
    margin-bottom: 3rem;
    list-style: none;
}
.about-us-v2-section
    .about-us-v2
    .about-us-content-block
    .about-list
    .list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5.5px 0;
}
.about-us-v2-section
    .about-us-v2
    .about-us-content-block
    .about-list
    .list-item
    .list-icon {
    height: 30px;
    width: 30px;
    fill: var(--global-color-primary);
    margin-right: 7.5px;
}
.about-us-v2-section
    .about-us-v2
    .about-us-content-block
    .about-list
    .list-item
    .list-title {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    color: var(--global-color-secondary);
    font-weight: 600;
    line-height: 18px;
    padding-left: 20px;
    margin: 6px 0px 0px 0px;
    line-height: 30px;
}
.about-us-v2-section
    .about-us-v2
    .about-us-content-block
    .about-list
    .list-item:not(:last-child) {
    padding-bottom: 10px;
}
.about-us-v2-section .about-us-v2 .about-img-block {
    position: relative;
}
.about-us-v2-section .about-us-v2 .about-img-block .back-img {
    display: flex;
    justify-content: flex-end;
    width: 75%;
    border-radius: 10px;
    height: auto;
    margin: 0 0 0 auto;
}
@media (max-width: 767px) {
    .about-us-v2-section .about-us-v2 .about-img-block .back-img {
        width: 100%;
        margin-bottom: 20px;
    }
}
.about-us-v2-section .about-us-v2 .about-img-block .upper-block {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 1rem;
    margin-top: -16rem;
}
@media (max-width: 1200px) {
    .about-us-v2-section .about-us-v2 .about-img-block .upper-block {
        margin-top: -17.5rem;
    }
}
@media (max-width: 767px) {
    .about-us-v2-section .about-us-v2 .about-img-block .upper-block {
        margin-top: 0;
        flex-direction: column;
        gap: 2rem;
    }
}
.about-us-v2-section .about-us-v2 .about-img-block .upper-block .front-img {
    width: 50%;
    object-position: initial;
    filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
        hue-rotate(0deg);
    border-radius: 10px 10px 10px 10px;
    height: 256px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .about-us-v2-section .about-us-v2 .about-img-block .upper-block .front-img {
        width: 100%;
    }
}
.about-us-v2-section
    .about-us-v2
    .about-img-block
    .upper-block
    .single-icon-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 1.9rem 2rem 1.8rem 3rem;
    background-color: var(--global-color-secondary);
    position: relative;
    z-index: 10;
    width: 100%;
}
@media (max-width: 1200px) {
    .about-us-v2-section
        .about-us-v2
        .about-img-block
        .upper-block
        .single-icon-box {
        padding: 1.2rem 2rem 1.2rem 2rem;
    }
}
.about-us-v2-section
    .about-us-v2
    .about-img-block
    .upper-block
    .single-icon-box
    .content {
    font-size: var(--paragraph-sm-size);
    color: var(--global-primary-white);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    line-height: 2.4rem;
    width: 70%;
}
.about-us-v2-section
    .about-us-v2
    .about-img-block
    .upper-block
    .single-icon-box
    .icon-inner {
    border-radius: 50%;
    background-color: var(--global-color-primary);
    padding: 1.3rem 1.3rem;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us-v2-section
    .about-us-v2
    .about-img-block
    .upper-block
    .single-icon-box
    .icon-inner
    .icon-svg {
    fill: var(--global-primary-white);
    height: 25px;
    width: 25px;
}
.clients-section {
    background-image: url(5edfdff550371d4d810d.jpg);
    background-size: cover;
    background-position: center;
    display: flow-root;
    padding-bottom: 14rem;
}
@media (max-width: 991px) {
    .clients-section {
        padding: 0px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .clients-section {
        padding: 0px 10px 50px 10px;
    }
}
.clients-section .slider-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .clients-section .slider-header {
        flex-direction: column;
        margin-bottom: 2rem;
    }
}
.clients-section .swiper {
    width: 100%;
    height: 100%;
}
.clients-section .swiper .client-block {
    background-color: var(--global-primary-white);
    border-radius: 10px;
    min-height: 11.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.clients-section .swiper .client-block img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: all 0.25s ease;
}
.clients-section .swiper .client-block:hover img {
    opacity: 1;
}
.clients-section .client-slider-btns {
    display: flex;
}
.clients-section .client-slider-btns .slider-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--global-primary-white);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.clients-section .client-slider-btns .slider-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.clients-section .client-slider-btns .slider-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.clients-section .client-slider-btns .slider-btn:hover svg,
.clients-section .client-slider-btns .slider-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.clients-section .client-slider-btns .slider-btn:hover::after,
.clients-section .client-slider-btns .slider-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.clients-section .client-slider-btns .slider-btn:first-child {
    margin-right: 2rem;
}
.clients-section.client-swiper-section {
    padding-top: 14rem;
}
.clients-section-wrapper .clients-section {
    padding-top: 14rem;
    padding-bottom: 14rem;
    background-image: none;
    background-color: var(--global-primary-white);
}
@media (max-width: 991px) {
    .clients-section-wrapper .clients-section {
        padding: 200px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .clients-section-wrapper .clients-section {
        padding: 200px 10px 50px 10px;
    }
}
.clients-section-wrapper .clients-section .swiper .client-block {
    background-color: var(--color-primary-light-2);
    transition: all 0.25s ease;
}
.clients-section-wrapper .clients-section .client-slider-btns .slider-btn {
    background-color: var(--color-primary-light-2);
}
.contact-v1-section {
    padding: 0 0 3.5rem 0;
}
.contact-v1-section .contact-v1-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}
@media (max-width: 991px) {
    .contact-v1-section .contact-v1-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-v1-section .contact-v1-wrapper .image-block .contact-img {
    border-radius: 10px 0 0 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    .contact-v1-section .contact-v1-wrapper .image-block .contact-img {
        border-radius: 10px 10px 0 0;
        width: 100%;
    }
}
@media (max-width: 991px) {
    .contact-v1-section .contact-v1-wrapper .image-block {
        justify-self: auto;
    }
}
.contact-v1-section .contact-v1-wrapper .contact-form-block {
    background-color: var(--global-color-secondary);
    border-radius: 0 10px 10px 0;
    padding: 5.5rem 6.5rem 4rem 6.5rem;
}
@media (max-width: 1200px) {
    .contact-v1-section .contact-v1-wrapper .contact-form-block {
        padding: 75px;
    }
}
@media (max-width: 991px) {
    .contact-v1-section .contact-v1-wrapper .contact-form-block {
        border-radius: 0 0 10px 10px;
        padding: 50px;
        margin-top: -25%;
    }
}
@media (max-width: 767px) {
    .contact-v1-section .contact-v1-wrapper .contact-form-block {
        padding: 25px 25px 30px 25px;
    }
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 991px) {
    .contact-v1-section
        .contact-v1-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group {
    position: relative;
    width: 100%;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"],
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"],
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"],
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: var(--global-primary-white);
    border-radius: 2.5px;
    margin-top: 2rem;
    border: 0;
    outline: none;
    border-bottom: 1px solid var(--global-color-text-2);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]:focus,
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]:focus,
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]:focus,
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea:focus {
    border-bottom: 1px solid var(--global-primary-white);
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 15rem;
    resize: none;
    margin-top: 3rem;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    .error-icon {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 1.2rem;
    width: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group:last-child {
    grid-column: 3/-3;
}
@media (max-width: 992px) {
    .contact-v1-section
        .contact-v1-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper
        .input-group:last-child {
        grid-column: auto;
    }
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group.error
    .error-icon {
    opacity: 1;
    left: 95%;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .submit-btn {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    margin: 3.4rem auto 0 auto;
    border: 3px solid var(--global-color-primary);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
    cursor: pointer;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .submit-btn
    .submit-icon {
    height: 3rem;
    width: 3rem;
    fill: var(--global-color-primary);
    transition: fill 0.1s ease;
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .submit-btn:hover {
    background-color: var(--global-color-primary);
}
.contact-v1-section
    .contact-v1-wrapper
    .contact-form-block
    .contact-form
    .submit-btn:hover
    .submit-icon {
    fill: var(--global-primary-white);
}
.contact-v1-section .contact-v1-wrapper .contact-form-block .alert {
    margin-top: 2em;
    padding: 2rem 2rem 1.7rem 2rem;
    border-radius: 10px;
    display: none;
    text-align: left;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
}
.contact-v1-section .contact-v1-wrapper .contact-form-block .alert.error {
    background-color: var(--color-warning);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.contact-v1-section .contact-v1-wrapper .contact-form-block .alert.success {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.contact-section {
    margin-top: -10rem;
    width: 100%;
}
.contact-page-section {
    padding: 15rem 0;
}
@media (max-width: 991px) {
    .contact-page-section {
        padding: 4rem 5rem 5rem 5rem;
    }
}
@media (max-width: 767px) {
    .contact-page-section {
        padding: 4rem 1rem 5rem 1rem;
    }
}
.contact-page-section .map-block {
    max-width: 87%;
    margin: auto;
}
@media (max-width: 767px) {
    .contact-page-section .map-block {
        max-width: 100%;
    }
}
.contact-page-section .map-block iframe {
    width: 100%;
    border: none;
    height: 457px;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px)
        hue-rotate(0deg);
    border-radius: 10px 10px 10px 10px;
}
.contact-page-section .map-block .phone-email-block {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: -82px;
    position: relative;
    z-index: 10;
}
@media (max-width: 991px) {
    .contact-page-section .map-block .phone-email-block {
        flex-direction: column;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .contact-page-section .map-block .phone-email-block {
        margin-top: 20px;
    }
}
.contact-page-section .map-block .phone-email-block a {
    text-decoration: none;
}
.contact-page-section .map-block .phone-email-block a .icon-box-alt {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--global-color-primary);
    border-radius: 10px;
    padding: 3.4rem 3rem 2.7rem 3rem;
    font-family: var(--font-family-spartan);
}
@media (max-width: 991px) {
    .contact-page-section .map-block .phone-email-block a .icon-box-alt {
        flex-direction: column;
        text-align: center;
    }
}
.contact-page-section .map-block .phone-email-block a .icon-wrapper svg {
    font-size: 3.4rem;
    height: 3.4rem;
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.contact-page-section .map-block .phone-email-block a .icon-box-alt .sub {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-primary-light);
}
.contact-page-section .map-block .phone-email-block a .icon-box-alt .main {
    line-height: 36px;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--global-primary-white);
    word-break: break-word;
}
.contact-page-section .contact-form-wrapper .contact-form-block {
    padding: 6rem 0rem 0rem 0rem;
    max-width: 70%;
    margin: auto;
}
@media (max-width: 767px) {
    .contact-page-section .contact-form-wrapper .contact-form-block {
        max-width: 100%;
    }
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .primary--heading {
    font-size: 4rem;
    text-align: center;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .primary--heading::after {
    margin: 12px auto;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 991px) {
    .contact-page-section
        .contact-form-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group {
    position: relative;
    width: 100%;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"],
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"],
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"],
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: var(--global-primary-white);
    border-radius: 2.5px;
    margin-top: 2rem;
    border: 0;
    outline: none;
    border-bottom: 1px solid var(--color-grey);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]:focus,
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]:focus,
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]:focus,
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea:focus {
    border-bottom: 1px solid var(--global-color-primary);
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 15rem;
    resize: none;
    margin-top: 3rem;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    .error-icon {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 1.2rem;
    width: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group:last-child {
    grid-column: 3/-3;
}
@media (max-width: 992px) {
    .contact-page-section
        .contact-form-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper
        .input-group:last-child {
        grid-column: auto;
    }
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group.error
    .error-icon {
    opacity: 1;
    left: 95%;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .submit-btn {
    display: block;
    width: 208px;
    margin: 3.4rem auto 0 auto;
    border: none;
    outline: none;
    background-color: var(--global-color-primary);
    padding: 2.3rem 5rem 2.3rem 5rem;
    font-family: var(--font-family-spartan);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: normal;
    border-radius: 10px;
    color: var(--global-primary-white);
    transition: all 0.25s ease;
    cursor: pointer;
}
.contact-page-section
    .contact-form-wrapper
    .contact-form-block
    .contact-form
    .submit-btn:hover {
    background-color: var(--global-color-secondary);
}
@media (max-width: 767px) {
    .contact-page-section
        .contact-form-wrapper
        .contact-form-block
        .contact-form
        .submit-btn {
        margin: 3.4rem 0 0 0;
        width: 100%;
    }
}
.contact-page-section .contact-form-wrapper .contact-form-block .alert {
    margin-top: 2em;
    padding: 2rem 2rem 1.7rem 2rem;
    border-radius: 10px;
    display: none;
    text-align: left;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
}
.contact-page-section .contact-form-wrapper .contact-form-block .alert.error {
    background-color: var(--color-warning);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.contact-page-section .contact-form-wrapper .contact-form-block .alert.success {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.contact-v2-section {
    padding: 0 0 3.5rem 0;
}
.contact-v2-section .contact-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}
@media (max-width: 991px) {
    .contact-v2-section .contact-v2-wrapper {
        grid-template-columns: 1fr;
    }
}
.contact-v2-section .contact-v2-wrapper .image-block .contact-img {
    border-radius: 10px 0 0 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    .contact-v2-section .contact-v2-wrapper .image-block .contact-img {
        border-radius: 10px 10px 0 0;
        width: 100%;
        height: 40rem;
        object-position: top;
    }
}
@media (max-width: 991px) {
    .contact-v2-section .contact-v2-wrapper .image-block {
        justify-self: center;
        width: 100%;
    }
}
.contact-v2-section .contact-v2-wrapper .content-block {
    background-color: var(--global-color-secondary);
    border-radius: 0 10px 10px 0;
    padding: 105px;
}
@media (max-width: 1200px) {
    .contact-v2-section .contact-v2-wrapper .content-block {
        padding: 75px;
    }
}
@media (max-width: 991px) {
    .contact-v2-section .contact-v2-wrapper .content-block {
        border-radius: 0 0 10px 10px;
        padding: 50px;
        margin-top: -15rem;
    }
}
@media (max-width: 767px) {
    .contact-v2-section .contact-v2-wrapper .content-block {
        padding: 25px 25px 30px 25px;
    }
}
.contact-v2-section .contact-v2-wrapper .content-block .primary--heading {
    color: var(--global-primary-white);
    font-size: var(--heading-sm-font-size);
    line-height: 6rem;
}
@media (max-width: 991px) {
    .contact-v2-section .contact-v2-wrapper .content-block .primary--heading {
        font-size: 35px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .contact-v2-section .contact-v2-wrapper .content-block .primary--heading {
        font-size: 30px;
    }
}
.contact-v2-section .contact-v2-wrapper .content-block .contact-btns {
    padding-top: 15px;
}
.contact-v2-section
    .contact-v2-wrapper
    .content-block
    .contact-btns
    .button:last-child {
    margin: 0 0 0 30px;
}
@media (max-width: 767px) {
    .contact-v2-section
        .contact-v2-wrapper
        .content-block
        .contact-btns
        .button:last-child {
        margin: 1rem 0 0 0;
    }
}
@media (max-width: 767px) {
    .contact-v2-section .contact-v2-wrapper .content-block .contact-btns {
        padding-top: 0;
    }
}
.contact-v2-section-container {
    background-color: var(--global-color-secondary);
    margin-top: 50rem;
    display: flex;
    flex-wrap: wrap;
}
.contact-v2-section-container .contact-v2-section {
    padding: 0 0 3.5rem 0;
    margin-bottom: -4rem;
    margin-top: -30rem;
    width: 100%;
}
@media (max-width: 991px) {
    .contact-v2-section-container .contact-v2-section {
        padding: 0px 50px 50px 50px;
    }
}
@media (max-width: 991px) {
    .contact-v2-section-container .contact-v2-section {
        padding: 0px 10px 50px 10px;
    }
}
.contact-v2-section-container .contact-v2-section .content-block {
    background-color: var(--global-color-primary);
}
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .primary--heading::after {
    background-color: var(--color-primary-light-1);
}
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .blue--btn:link
    .button-inner,
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .blue--btn:visited
    .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-secondary);
}
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .blue--btn:active
    .button-inner,
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .blue--btn:hover
    .button-inner {
    background-color: var(--global-primary-white);
    color: var(--global-color-secondary);
    fill: var(--global-color-secondary);
}
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .white--btn:link
    .button-inner,
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .white--btn:visited
    .button-inner {
    background-color: var(--global-primary-white);
    color: var(--global-color-secondary);
}
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .white--btn:active
    .button-inner,
.contact-v2-section-container
    .contact-v2-section
    .content-block
    .contact-btns
    .white--btn:hover
    .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-secondary);
}
.contact-block.contact-v2-section-container {
    margin-top: 28rem;
}
@media (max-width: 991px) {
    .contact-block.contact-v2-section-container {
        margin-top: 30rem;
    }
}
.facts-section {
    padding: 11rem 0;
}
@media (max-width: 991px) {
    .facts-section {
        padding: 110px 50px 43px 50px;
    }
}
@media (max-width: 767px) {
    .facts-section {
        padding: 110px 10px 43px 10px;
    }
}
.facts-section .icon-box {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 15px 15px;
    background-color: var(--global-color-primary);
    z-index: 1;
    position: absolute;
    top: -15rem;
    right: 0rem;
}
.facts-section .icon-box svg {
    height: 6rem;
    width: 6rem;
    fill: var(--global-primary-white);
}
@media (max-width: 991px) {
    .facts-section .icon-box {
        font-size: 5rem;
        width: 14rem;
        height: 14rem;
        top: -26rem;
        right: 0rem;
    }
}
.facts-section .facts-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    row-gap: 6rem;
}
@media (max-width: 991px) {
    .facts-section .facts-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .facts-section .facts-cards-wrapper {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 3rem;
    }
}
.facts-section .facts-cards-wrapper .facts-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.facts-section .facts-cards-wrapper .facts-card .img-block .fact-img {
    border-radius: 15px 15px 15px 15px;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.facts-section .facts-cards-wrapper .facts-card .icon-card {
    font-size: 5rem;
    width: 11.9rem;
    height: 11.9rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 15px 15px;
    background-color: var(--global-color-primary);
    margin-top: -8rem;
}
.facts-section .facts-cards-wrapper .facts-card .icon-card svg {
    height: 5rem;
    width: auto;
    fill: var(--global-primary-white);
}
.facts-section .facts-cards-wrapper .facts-card .number-title-wrapper {
    text-align: center;
    margin-top: 3rem;
}
.facts-section
    .facts-cards-wrapper
    .facts-card
    .number-title-wrapper
    .counter-number {
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-size: var(--title-font-size);
    font-weight: 700;
    line-height: 30px;
}
.facts-section .facts-cards-wrapper .facts-card .number-title-wrapper .title {
    color: var(--global-color-text-1);
    font-family: var(--font-family-spartan);
    font-size: var(--title-font-size);
    font-weight: 500;
    line-height: 35px;
}
.home-1-fact-section {
    background-color: var(--global-primary-white);
    border-radius: 0 10px 10px 0;
    margin-top: -25.4rem;
    margin-bottom: 15rem;
    width: 100%;
}
@media (max-width: 991px) {
    .home-1-fact-section {
        margin-top: -100px;
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .home-1-fact-section {
        margin-bottom: 40px;
    }
}
.home-1-fact-section .icon-box {
    right: 2rem;
    top: -16rem;
}
.home-1-fact-section .container {
    position: relative;
}
.home-1-fact-section .elementor-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.facts-dark-section {
    background-color: var(--global-color-secondary);
}
.facts-dark-section .facts-section {
    padding: 7rem 0rem 36rem 0rem;
}
@media (max-width: 991px) {
    .facts-dark-section .facts-section {
        padding: 95px 50px 300px 50px;
    }
}
@media (max-width: 767px) {
    .facts-dark-section .facts-section {
        padding: 95px 10px 280px 10px;
    }
}
.facts-dark-section .container {
    position: relative;
}
.facts-dark-section .icon-box {
    top: -15rem;
}
.facts-dark-section .primary--heading {
    color: var(--global-primary-white);
}
.facts-dark-section
    .facts-cards-wrapper
    .facts-card
    .number-title-wrapper
    .counter-number {
    color: var(--global-primary-white);
}
.facts-dark-section
    .facts-cards-wrapper
    .facts-card
    .number-title-wrapper
    .title {
    color: var(--color-paragraph-1);
}
.icon-box {
    display: flex;
    font-size: 6rem;
    width: 17.1rem;
    height: 16.7rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--global-color-primary);
}
.icon-box .svg-icon {
    fill: var(--global-primary-white);
    height: 6rem;
    width: auto;
}
@media (max-width: 991px) {
    .icon-box {
        height: 14rem;
        width: 14rem;
    }
    .icon-box .svg-icon {
        height: 5rem;
        width: auto;
    }
}
.latest-news-section {
    padding: 15rem 0rem 23rem 0rem;
}
@media (max-width: 991px) {
    .latest-news-section {
        padding: 190px 50px 160px 50px;
    }
}
@media (max-width: 767px) {
    .latest-news-section {
        padding: 190px 10px 160px 10px;
    }
}
.latest-news-section .primary--heading {
    text-align: center;
}
.latest-news-section .primary--heading::after {
    margin: auto;
}
.news-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.6rem;
    row-gap: 3rem;
    padding-top: 5rem;
}
@media (max-width: 991px) {
    .news-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 1rem;
    }
}
@media (max-width: 767px) {
    .news-card-wrapper {
        padding-top: 0;
    }
}
.news-card-wrapper .news-card .news-img-box {
    width: 100%;
    max-width: 100%;
    height: 29.6rem;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.news-card-wrapper .news-card .news-img-box .news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.25s ease;
}
.news-card-wrapper .news-card .news-content {
    padding: 0 2rem;
}
.news-card-wrapper .news-card .news-content a {
    text-decoration: none;
}
.news-card-wrapper .news-card .news-content a span {
    display: block;
}
.news-card-wrapper .news-card .news-content .details {
    display: flex;
    align-items: flex-end;
    margin-top: -3rem;
    gap: 2rem;
    transform: scale(1);
    transition: all 0.25s ease;
}
.news-card-wrapper .news-card .news-content .details .date {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    line-height: 2.4rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 84.3px;
}
.news-card-wrapper .news-card .news-content .details .date .wrapper {
    aspect-ratio: 1/1;
    padding: 1.9rem 2.1rem 1rem 2.1rem;
}
.news-card-wrapper .news-card .news-content .details .date .wrapper .day {
    font-size: var(--title-lg-font-size);
    font-family: var(--font-family-spartan);
    color: var(--global-primary-white);
}
.news-card-wrapper .news-card .news-content .details .date .wrapper .month {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--paragraph-font-size);
    font-family: var(--font-family-spartan);
    color: var(--global-primary-white);
}
.news-card-wrapper .news-card .news-content .details .date .hover {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    fill: inherit;
    background-color: inherit;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-wrapper .news-card .news-content .details .date .hover svg {
    height: 4rem;
    width: 4rem;
    fill: inherit;
}
.news-card-wrapper .news-card .news-content .details h6 {
    font-size: var(--paragraph-x-sm-size);
    font-weight: 500;
    color: var(--global-color-text-1);
    line-height: 2rem;
    font-family: var(--font-family-spartan);
}
.news-card-wrapper .news-card .news-content h4 {
    text-align: center;
    font-family: var(--font-family-spartan);
    font-size: var(--title-lg-font-size);
    font-weight: 600;
    line-height: 4rem;
    color: var(--global-color-secondary);
    margin-top: 1.4rem;
    letter-spacing: -0.1rem;
    word-break: break-word;
}
@media (max-width: 991px) {
    .news-card-wrapper .news-card .news-content h4 {
        font-size: var(--title-font-size);
        line-height: 3.5rem;
    }
}
.news-card-wrapper .news-card:hover .news-img-box .news-img {
    transform: scale(1.1);
}
.news-card-wrapper .news-card:hover .news-content .details {
    transform: translateX(20px) scale(1);
}
.news-card-wrapper .news-card:hover .news-content .details .date .hover {
    top: 0;
}
@media (max-width: 991px) {
    .latest-news-section-wrapper .latest-news-section {
        padding: 45px 50px 160px 50px;
    }
}
@media (max-width: 767px) {
    .latest-news-section-wrapper .latest-news-section {
        padding: 45px 10px 160px 10px;
    }
}
.testimonial-section {
    background-image: url(5edfdff550371d4d810d.jpg);
    background-size: cover;
    background-position: center;
    padding: 15rem 0rem 40rem 0rem;
    overflow: hidden;
}
@media (min-width: 991px) {
    .testimonial-section {
        background-attachment: fixed;
    }
}
@media (max-width: 991px) {
    .testimonial-section {
        padding: 45px 50px 166px 50px;
    }
}
@media (max-width: 767px) {
    .testimonial-section {
        padding: 45px 10px 166px 10px;
    }
}
.testimonial-section .slider-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .testimonial-section .slider-header {
        flex-direction: column;
        margin-bottom: 3rem;
    }
}
.testimonial-section .client-slider-btns {
    display: flex;
}
.testimonial-section .client-slider-btns .slider-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--global-primary-white);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.testimonial-section .client-slider-btns .slider-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.testimonial-section .client-slider-btns .slider-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.testimonial-section .client-slider-btns .slider-btn:hover svg,
.testimonial-section .client-slider-btns .slider-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.testimonial-section .client-slider-btns .slider-btn:hover::after,
.testimonial-section .client-slider-btns .slider-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.testimonial-section .client-slider-btns .slider-btn:first-child {
    margin-right: 2rem;
}
.testimonial-section .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.testimonial-slide {
    display: flex;
    align-items: flex-end;
}
@media (max-width: 991px) {
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
    }
}
.testimonial-slide .image {
    width: 20rem;
    height: 36.4rem;
}
@media (max-width: 991px) {
    .testimonial-slide .image {
        width: 100%;
    }
}
.testimonial-slide .image .testi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.testimonial-slide .content {
    width: calc(100% - 17rem);
    margin-left: -3rem;
    margin-bottom: -0.8rem;
}
@media (max-width: 991px) {
    .testimonial-slide .content {
        width: 90%;
        margin: -8rem 0 0 0;
    }
}
.testimonial-slide .content .content-wrapper {
    background-color: var(--global-primary-white);
    border-radius: 10px;
    padding: 4rem 3.3rem;
}
.testimonial-slide .content .content-wrapper p {
    line-height: 1.8;
}
.testimonial-slide .content .details {
    margin-top: 3rem;
    margin-left: 6rem;
}
.testimonial-slide .content .details h5 {
    font-family: var(--font-family-spartan);
    font-size: var(--title-font-size);
    font-weight: 600;
    line-height: 2.4rem;
    color: var(--color-black);
}
.testimonial-slide .content .details h6 {
    font-family: var(--font-family-spartan);
    font-size: var(--btn-font-size);
    font-weight: 700;
    line-height: 2.4rem;
    color: var(--global-color-primary);
    letter-spacing: 0.1rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .testimonial-slide .content .details {
        margin-left: 0;
    }
}
.clients-wrapper-section {
    margin-top: -238px;
}
@media (max-width: 991px) {
    .clients-wrapper-section {
        padding-left: 1rem;
    }
}
.clients-wrapper-section .testimonial-section {
    background-attachment: none;
    padding: 13rem 0rem 14rem 0rem;
    border-radius: 10px 0 0 10px;
}
@media (max-width: 991px) {
    .clients-wrapper-section .testimonial-section {
        padding: 45px 50px 45px 50px;
    }
}
@media (max-width: 767px) {
    .clients-wrapper-section .testimonial-section {
        padding: 45px 10px 45px 10px;
    }
}
.testimonial-block {
    padding: 13.4rem 0rem 14rem 0rem;
}
@media (max-width: 991px) {
    .testimonial-block {
        padding: 45px 50px 55px 50px;
    }
}
@media (max-width: 767px) {
    .testimonial-block {
        padding: 45px 10px 55px 10px;
    }
}
.testimonial-block .testimonial-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 767px) {
    .testimonial-block .testimonial-cards-wrapper {
        grid-template-columns: 1fr;
    }
}
.testimonial-block
    .testimonial-cards-wrapper
    .testimonial-slide
    .content
    .content-wrapper {
    background-color: var(--color-primary-light-2);
}
.testimonial-block .primary--heading {
    color: var(--global-color-secondary);
    margin: 0 auto 7rem auto;
    max-width: 54%;
    text-align: center;
}
.testimonial-block .primary--heading::after {
    margin: 12px auto;
}
@media (max-width: 991px) {
    .testimonial-block .primary--heading {
        max-width: 100%;
        margin: 0 auto 3rem auto;
    }
}
.team-section {
    padding: 13rem 0rem 14rem 0rem;
}
@media (max-width: 991px) {
    .team-section {
        padding: 45px 50px 95px 50px;
    }
}
@media (max-width: 767px) {
    .team-section {
        padding: 45px 10px 95px 10px;
    }
}
.team-section .slider-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6rem;
}
@media (max-width: 991px) {
    .team-section .slider-header {
        flex-direction: column;
    }
}
.team-section .team-slider-btns {
    display: flex;
}
.team-section .team-slider-btns .slider-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--global-color-accent);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.team-section .team-slider-btns .slider-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.team-section .team-slider-btns .slider-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.team-section .team-slider-btns .slider-btn:hover svg,
.team-section .team-slider-btns .slider-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.team-section .team-slider-btns .slider-btn:hover::after,
.team-section .team-slider-btns .slider-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.team-section .team-slider-btns .slider-btn:first-child {
    margin-right: 2rem;
}
.team-section .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.team-member {
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.team-member .team-member-image {
    max-width: 100%;
    height: 44rem;
    border-radius: 10px;
    position: relative;
    top: -4rem;
    left: -1rem;
    z-index: 2;
}
.team-member .team-member-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px !important;
}
.team-member .team-member-bg {
    width: 100%;
    height: 100%;
    background-color: var(--global-color-secondary);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.team-member .team-member-content {
    margin-top: -2rem;
    z-index: 2;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.team-member .team-member-content-inner {
    padding: 0 3.5rem 1.8rem 3.5rem;
}
@media (max-width: 991px) {
    .team-member .team-member-content-inner {
        padding: 0 1.5rem 1.8rem 1.5rem;
    }
}
.team-member .team-member-content h4 {
    font-size: var(--title-font-size);
    font-family: var(--font-family-spartan);
    font-weight: 700;
    color: var(--global-primary-white);
    line-height: 2.8rem;
}
.team-member .team-member-content h5 {
    font-size: var(--paragraph-x-sm-size);
    font-family: var(--font-family-spartan);
    font-weight: 500;
    color: var(--color-paragraph-1);
    line-height: 2.8rem;
}
.team-member .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    transition: all 0.25s ease;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
    width: 20px;
    height: 20px;
}
.team-member .reveal::after,
.team-member .reveal::before {
    position: absolute;
    display: inline-block;
    background-color: var(--color-black);
    content: "";
    width: 12px;
    height: 2px;
    --width: (20px * 0.6);
    --height: (20px * 0.1);
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.team-member .reveal.plus {
    background-color: var(--color-paragraph-1);
}
.team-member .reveal.plus::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.team-member .reveal.plus::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.team-member .reveal:not(.plus)::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.team-member .reveal:not(.plus)::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.team-member .team-member-content .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
@media (max-width: 991px) {
    .team-member .team-member-content .reveal {
        bottom: 1rem;
        right: 1rem;
    }
}
.team-member .team-member-content ul {
    margin: 0px;
    padding: 0;
    height: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.team-member .team-member-content li {
    list-style: none;
    transform: translateY(50px);
    opacity: 0;
}
.team-member .team-member-content li a {
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-dark-3);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 4.5rem;
    height: 4.5rem;
    flex-basis: min-content;
}
.team-member .team-member-content li a svg {
    vertical-align: middle;
    height: 1.8rem;
    width: 1.8rem;
    fill: var(--color-paragraph-1);
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.team-member .team-member-content li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: block;
    background-color: var(--global-color-primary);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: center;
    transition: all 0.25s ease;
    z-index: 1;
    opacity: 0;
}
.team-member .team-member-content li a:hover svg,
.team-member .team-member-content li a:active svg {
    fill: var(--global-primary-white);
}
.team-member .team-member-content li a:hover::after,
.team-member .team-member-content li a:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
@media (max-width: 991px) {
    .team-member .team-member-content li a {
        width: 3.5rem;
        height: 3.5rem;
    }
    .team-member .team-member-content li a svg {
        height: 1.4rem;
    }
}
@media (max-width: 991px) {
    .team-member .team-member-image {
        width: 100%;
    }
    .team-member .team-member-image img {
        -o-object-position: top;
        object-position: top;
    }
}
.team-section-wrapper {
    padding-bottom: 9rem;
}
@media (max-width: 991px) {
    .team-section-wrapper {
        padding: 15rem 0 7rem;
    }
}
.recent-work-section {
    padding: 8rem 0rem 34.5rem 0rem;
    background-image: url(5edfdff550371d4d810d.jpg);
}
@media (max-width: 991px) {
    .recent-work-section {
        padding: 100px 50px 140px 50px;
    }
}
@media (max-width: 767px) {
    .recent-work-section {
        padding: 100px 10px 140px 10px;
    }
}
.recent-work-section .project-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding-top: 3rem;
}
@media (max-width: 991px) {
    .recent-work-section .project-cards-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
.recent-work-section .project-single-wrapper {
    width: calc(50% - 3rem);
    margin: 15px auto;
}
@media (max-width: 991px) {
    .recent-work-section .project-single-wrapper {
        width: 100%;
    }
}
.recent-work-section .more-btn {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
@media (max-width: 767px) {
    .recent-work-section .more-btn .button {
        width: 100%;
    }
}
.recent-work-section .container {
    position: relative;
}
.recent-work-section .icon-box {
    position: absolute;
    right: 0;
    top: -13rem;
}
.project-single-wrapper {
    text-decoration: none;
}
.project-single-wrapper .project-single {
    position: relative;
    z-index: 2;
    text-decoration: none;
    margin: 4rem 0 0 1rem;
}
.project-single-wrapper .project-single .post-thumbnail {
    max-width: 100%;
    width: 56.1rem;
    height: 45.6rem;
    border-radius: 10px;
    position: relative;
    top: -4rem;
    left: -1rem;
    z-index: 2;
}
.project-single-wrapper .project-single .post-thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}
.project-single-wrapper .project-single .project-reveal {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(2rem);
    z-index: 2;
}
.project-single-wrapper .project-single .project-reveal svg {
    height: 2rem;
    width: 2.6rem;
    fill: var(--global-primary-white);
}
.project-single-wrapper .project-single .project-bg {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--global-color-primary);
    border-radius: 10px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 25px;
    z-index: 1;
}
.project-single-wrapper .project-single .project-content {
    margin-top: -2rem;
    z-index: 2;
    position: relative;
    height: 0;
    pointer-events: none;
}
.project-single-wrapper .project-single .project-content-inner {
    padding: 0 3.5rem 1.8rem 3.5rem;
}
.project-single-wrapper .project-single .project-content .categories {
    font-size: var(--btn-font-size);
    font-family: var(--font-family-spartan);
    font-weight: 700;
    color: var(--color-white-rgba-6);
    text-transform: uppercase;
    line-height: 2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(2rem);
}
.project-single-wrapper .project-single .project-content h4 {
    font-size: var(--title-sm-size);
    font-family: var(--font-family-spartan);
    font-weight: 700;
    color: var(--global-primary-white);
    line-height: 3.4rem;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(2rem);
}
@media (max-width: 991px) {
    .project-single-wrapper .project-single .project-bg {
        left: 0 !important;
        opacity: 1 !important;
    }
    .project-single-wrapper .project-single .post-thumbnail {
        width: 100%;
        height: auto;
    }
    .project-single-wrapper .project-single .project-content {
        height: auto !important;
    }
    .project-single-wrapper .project-single .project-reveal {
        transform: translate(0px, 0px);
        opacity: 0;
        clip-path: polygon(0% 100%, 120% 100%, 100% 0%, 0% 0%);
    }
    .project-single-wrapper .project-single .project-content-inner {
        padding: 0 2.5rem 1.8rem 3.5rem;
    }
    .project-single-wrapper .project-single .project-content .categories,
    .project-single-wrapper .project-single .project-content h4 {
        -webkit-clip-path: polygon(
            0% 100%,
            100% 100%,
            100% 0%,
            0% 0%
        ) !important;
        clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%) !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
.recent-work-swiper-section {
    background-color: var(--global-primary-white);
    padding: 15rem 0 20rem;
}
@media (max-width: 991px) {
    .recent-work-swiper-section {
        padding: 45px 50px 200px 50px;
    }
}
@media (max-width: 767px) {
    .recent-work-swiper-section {
        padding: 45px 10px 180px 10px;
    }
}
.recent-work-swiper-section .slider-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .recent-work-swiper-section .slider-header {
        flex-direction: column;
        margin-bottom: 3rem;
    }
}
.recent-work-swiper-section .client-slider-btns {
    display: flex;
}
.recent-work-swiper-section .client-slider-btns .slider-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--global-color-accent);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.recent-work-swiper-section .client-slider-btns .slider-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.recent-work-swiper-section .client-slider-btns .slider-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.recent-work-swiper-section .client-slider-btns .slider-btn:hover svg,
.recent-work-swiper-section .client-slider-btns .slider-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.recent-work-swiper-section .client-slider-btns .slider-btn:hover::after,
.recent-work-swiper-section .client-slider-btns .slider-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.recent-work-swiper-section .client-slider-btns .slider-btn:first-child {
    margin-right: 2rem;
}
.recent-work-swiper-section .swiper {
    overflow: visible;
}
.recent-work-swiper-section .swiper .swiper-pagination {
    bottom: -6rem;
}
@media (max-width: 991px) {
    .recent-work-swiper-section .swiper .swiper-pagination {
        bottom: -4rem;
    }
}
.recent-work-swiper-section
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    background-color: var(--global-color-accent);
    opacity: 1;
    transition: all 0.25s ease;
}
.recent-work-swiper-section
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet:hover {
    background-color: var(--global-color-primary);
}
.recent-work-swiper-section
    .swiper
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--global-color-primary);
}
@media (max-width: 991px) {
    .margin-top {
        margin-top: 15rem;
    }
}
.project-card-section {
    padding: 14rem 0rem 15rem 0rem;
}
@media (max-width: 991px) {
    .project-card-section {
        padding: 40px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .project-card-section {
        padding: 40px 10px 50px 10px;
    }
}
.project-card-section .project-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.project-card-section .project-single-wrapper {
    width: calc(50% - 3rem);
    margin: 15px auto;
}
@media (max-width: 991px) {
    .project-card-section .project-single-wrapper {
        width: 100%;
    }
}
.project-card-section .hidden-item {
    display: none;
}
.project-card-section .hidden-item.visible {
    display: block;
}
.project-card-section .more-btn {
    display: flex;
    justify-content: center;
}
.project-card-section .more-btn .button {
    margin-top: 5rem;
}
@media (max-width: 991px) {
    .project-card-section .more-btn .button {
        width: 100%;
        margin-top: 3rem;
    }
}
.project-card-section .more-btn .button:hover .button-inner span {
    transform: none;
}
.bg-pattern {
    background: url(5edfdff550371d4d810d.jpg);
    background-size: cover;
}
.bg-pattern .client-slider-btns .slider-btn {
    background-color: var(--global-primary-white);
}
.work-v1-section {
    padding: 17.5rem 0rem 15rem 0rem;
    background-color: var(--global-color-secondary);
}
@media (max-width: 991px) {
    .work-v1-section {
        padding: 330px 0px 40px 50px;
    }
}
@media (max-width: 767px) {
    .work-v1-section {
        padding: 200px 10px 40px 10px;
    }
}
.work-v1-section .primary--heading {
    text-align: center;
    color: var(--global-primary-white);
    max-width: 62%;
    margin: 0 auto 10rem auto;
}
.work-v1-section .primary--heading::after {
    margin: 12px auto;
}
@media (max-width: 991px) {
    .work-v1-section .primary--heading {
        max-width: 100%;
        margin: 0 auto 3rem auto;
    }
}
.work-v1-section .work-cards-wrapper {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.work-v1-section .work-cards-wrapper .image-box {
    width: calc(33.33% - 3rem);
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-top: 4rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 991px) {
    .work-v1-section .work-cards-wrapper .image-box {
        width: calc(50% - 3rem);
    }
}
@media (max-width: 767px) {
    .work-v1-section .work-cards-wrapper .image-box {
        width: 100%;
    }
}
.work-v1-section .work-cards-wrapper .image-box-image {
    max-width: 100%;
    height: 24.7rem;
    border-radius: 10px;
    position: relative;
    top: -4rem;
    left: -1rem;
    z-index: 2;
}
.work-v1-section .work-cards-wrapper .image-box-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.work-v1-section .work-cards-wrapper .image-box-bg {
    width: 100%;
    height: 100%;
    background-color: var(--global-color-dark);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.work-v1-section .work-cards-wrapper .image-box-content {
    z-index: 2;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.work-v1-section .work-cards-wrapper .image-box-content-inner {
    padding: 0 3.9rem 2rem 3.9rem;
}
@media (max-width: 991px) {
    .work-v1-section .work-cards-wrapper .image-box-content-inner {
        padding: 0 3rem 3rem 3rem;
    }
}
.work-v1-section .work-cards-wrapper .image-box-content .icon {
    width: -moz-max-content;
    width: max-content;
    font-size: 7rem;
    height: 7rem;
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
@media (max-width: 991px) {
    .work-v1-section .work-cards-wrapper .image-box-content .icon {
        font-size: 5rem;
        height: 5rem;
    }
}
.work-v1-section .work-cards-wrapper .image-box-content h4 {
    font-size: var(--title-lg-font-size);
    font-family: var(--font-family-spartan);
    line-height: 4rem;
    font-weight: 600;
    color: var(--global-primary-white);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 991px) {
    .work-v1-section .work-cards-wrapper .image-box-content h4 {
        font-size: 2rem;
        line-height: 3rem;
        margin-top: 3rem;
    }
}
.work-v1-section .work-cards-wrapper .image-box-content .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
.work-v1-section .work-cards-wrapper .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    transition: all 0.25s ease;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
    width: 20px;
    height: 20px;
}
.work-v1-section .work-cards-wrapper .reveal::after,
.work-v1-section .work-cards-wrapper .reveal::before {
    position: absolute;
    display: inline-block;
    background-color: var(--color-black);
    content: "";
    width: 12px;
    height: 2px;
    --width: (20px * 0.6);
    --height: (20px * 0.1);
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.work-v1-section .work-cards-wrapper .reveal.plus {
    background-color: var(--color-paragraph-1);
}
.work-v1-section .work-cards-wrapper .reveal.plus::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.work-v1-section .work-cards-wrapper .reveal.plus::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.work-v1-section .work-cards-wrapper .reveal:not(.plus)::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.work-v1-section .work-cards-wrapper .reveal:not(.plus)::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.work-v1-section .work-cards-wrapper .image-box-content .content {
    opacity: 0;
    transform: translateY(25px);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    height: 0;
    margin-bottom: 0;
}
.work-v1-section .work-cards-wrapper .image-box-content .content p {
    margin-bottom: 0;
    color: var(--color-primary-light);
}
.work-v1-section .work-cards-wrapper .image-box-content .content a {
    color: var(--global-primary-white);
    display: inline-block;
    position: relative;
    margin-top: 20px;
}
.work-v1-section .work-cards-wrapper .image-box-content .content a::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--global-primary-white);
    opacity: 0;
    transition: all 0.5s ease;
}
.work-v1-section
    .work-cards-wrapper
    .image-box-content
    .content
    a:hover::after {
    width: 100%;
    opacity: 1;
}
.work-v1-section .work-cards-wrapper .image-box.dropped .image-box-content,
.work-v1-section .work-cards-wrapper .image-box.dropped .image-box-bg {
    background-color: var(--global-color-primary);
}
.work-v1-section
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .icon {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.work-v1-section
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .reveal {
    background-color: var(--color-primary-light-1);
}
.work-v1-section
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .reveal::before,
.work-v1-section
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .reveal::after {
    background-color: var(--global-color-primary);
}
.work-v1-section
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .content
    p {
    color: var(--color-primary-light);
}
@media (max-width: 991px) {
    .work-v1-section .work-cards-wrapper .image-box-image {
        width: 100%;
    }
}
.work-v1-section .work-cards-wrapper .icon-box {
    display: flex;
    font-size: 6rem;
    width: 17.1rem;
    height: 16.7rem;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--global-color-primary);
}
.work-v1-section .work-cards-wrapper .icon-svg {
    display: block;
}
.work-v1-section .work-cards-wrapper .icon-svg svg {
    width: auto;
    height: 100%;
    fill: inherit;
    vertical-align: top;
}
@media (max-width: 991px) {
    .fields-section.work-v1-section {
        padding: 50px 0px 40px 50px;
    }
}
@media (max-width: 767px) {
    .fields-section.work-v1-section {
        padding: 50px 10px 40px 10px;
    }
}
.work-v1-light-section .work-v1-section {
    padding: 13rem 0rem 15rem 0rem;
    background-color: var(--global-primary-white);
}
@media (max-width: 991px) {
    .work-v1-light-section .work-v1-section {
        padding: 190px 50px 40px 50px;
    }
}
@media (max-width: 767px) {
    .work-v1-light-section .work-v1-section {
        padding: 190px 10px 40px 10px;
    }
}
.work-v1-light-section .work-v1-section .primary--heading {
    color: var(--global-color-secondary);
    margin: 0 auto 7rem auto;
    max-width: 50%;
}
@media (max-width: 991px) {
    .work-v1-light-section .work-v1-section .primary--heading {
        max-width: 100%;
        margin: 0 auto 3rem auto;
    }
}
@media (max-width: 991px) {
    .work-v1-wrapper.work-v1-light-section .work-v1-section {
        padding: 33px 50px 80px 50px;
    }
}
@media (max-width: 991px) {
    .work-v1-wrapper.work-v1-light-section .work-v1-section {
        padding: 33px 10px 80px 10px;
    }
}
.work-v1-section.work-v1-colored
    .work-cards-wrapper
    .image-box.dropped
    .image-box-content
    .content
    p {
    color: var(--white-transparent-color) !important;
}
.about-us-v3-section {
    background-color: var(--global-color-secondary);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    position: relative;
    padding: 0rem 0rem 10.6rem 0rem;
}
@media (max-width: 991px) {
    .about-us-v3-section {
        padding: 50px 50px 200px 0px;
    }
}
@media (max-width: 767px) {
    .about-us-v3-section {
        padding: 25px 10px 200px 0px;
    }
}
.about-us-v3-section .about-us-v3 {
    display: flex;
    column-gap: 3rem;
    row-gap: 4.5rem;
}
@media (max-width: 991px) {
    .about-us-v3-section .about-us-v3 {
        flex-direction: column-reverse;
    }
}
.about-us-v3-section .about-us-v3 .about-us-content-block {
    margin-left: 50px;
}
@media (max-width: 767px) {
    .about-us-v3-section .about-us-v3 .about-us-content-block {
        margin-left: 10px;
    }
}
.about-us-v3-section .about-us-v3 .about-us-content-block .primary--heading {
    color: var(--global-primary-white);
}
.about-us-v3-section .about-us-v3 .about-us-content-block p {
    color: var(--color-paragraph-2);
}
.about-us-v3-section .about-us-v3 .about-us-content-block .about-list {
    margin-top: 3rem;
    margin-bottom: 3rem;
    list-style: none;
}
.about-us-v3-section
    .about-us-v3
    .about-us-content-block
    .about-list
    .list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5.5px 0;
}
.about-us-v3-section
    .about-us-v3
    .about-us-content-block
    .about-list
    .list-item
    .list-icon {
    min-height: 20px;
    max-width: 20px;
    fill: var(--global-color-primary);
    margin-right: 7.5px;
}
.about-us-v3-section
    .about-us-v3
    .about-us-content-block
    .about-list
    .list-item
    .list-title {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    color: var(--global-primary-white);
    font-weight: 600;
    line-height: 18px;
    padding-left: 20px;
    margin: 6px 0px 0px 0px;
    line-height: 30px;
}
.about-us-v3-section
    .about-us-v3
    .about-us-content-block
    .about-list
    .list-item:not(:last-child) {
    padding-bottom: 10px;
}
@media (min-width: 768px) {
    .about-us-v3-section .about-us-v3 .about-us-content-block {
        width: 58.126%;
    }
}
@media (max-width: 991px) {
    .about-us-v3-section .about-us-v3 .about-us-content-block {
        width: 100%;
    }
}
.about-us-v3-section .about-us-v3 .r-image {
    width: 100%;
    height: 100%;
}
.about-us-v3-section .about-us-v3 .r-image-inner {
    --height-elementor: 130%;
    border-radius: 0rem 1rem 1rem 0rem;
    position: absolute;
}
@media (max-width: 991px) {
    .about-us-v3-section .about-us-v3 .r-image-inner {
        --height-elementor: 35rem;
    }
}
.about-us-v3-section .about-us-v3 .r-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.about-us-v3-section .about-us-v3 .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
}
.about-us-v3-section .about-us-v3 .about-img-block img {
    max-width: 100%;
}
@media (min-width: 768px) {
    .about-us-v3-section .about-us-v3 .about-img-block {
        width: 41.874%;
    }
}
@media (max-width: 991px) {
    .about-us-v3-section .about-us-v3 .about-img-block {
        width: 100%;
    }
}
footer {
    background-color: #fff;
    padding: 15rem 0;
}
@media (max-width: 991px) {
    footer {
        padding: 30px 50px 25px 50px;
    }
}
@media (max-width: 767px) {
    footer {
        padding: 30px 10px 25px 10px;
    }
}
footer .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 3rem;
}
@media (max-width: 991px) {
    footer .footer-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
footer .footer-wrapper .footer-title {
    color: var(--global-primary-white);
    font-family: var(--font-family-spartan);
    font-size: var(--btn-font-size);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0px 58px 0px;
}
@media (max-width: 767px) {
    footer .footer-wrapper .footer-title {
        margin: 10px 0px 30px 0px;
    }
}
footer .footer-wrapper p {
    color: var(--color-paragraph-1);
    max-width: 98%;
}
footer .footer-wrapper .about-col .logo-box {
    margin-bottom: 3rem;
}
footer .footer-wrapper .about-col .logo-box .logo-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
footer .footer-wrapper .about-col .social-links-block {
    padding-top: 3rem;
}
footer .footer-wrapper .about-col .social-links-block .social-links {
    margin: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: left;
}
footer .footer-wrapper .about-col .social-links-block .social-links li {
    list-style: none;
}
footer .footer-wrapper .about-col .social-links-block .social-links li a {
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-dark-3);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 4.5rem;
    height: 4.5rem;
    flex-basis: min-content;
}
footer .footer-wrapper .about-col .social-links-block .social-links li a svg {
    vertical-align: middle;
    height: 1.8rem;
    width: 1.8rem;
    fill: var(--color-paragraph-1);
    display: inline-flex;
    position: relative;
    z-index: 2;
}
footer
    .footer-wrapper
    .about-col
    .social-links-block
    .social-links
    li
    a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: block;
    background-color: var(--global-color-primary);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: center;
    transition: all 0.25s ease;
    z-index: 1;
    opacity: 0;
}
footer
    .footer-wrapper
    .about-col
    .social-links-block
    .social-links
    li
    a:hover
    svg,
footer
    .footer-wrapper
    .about-col
    .social-links-block
    .social-links
    li
    a:active
    svg {
    fill: var(--global-primary-white);
}
footer
    .footer-wrapper
    .about-col
    .social-links-block
    .social-links
    li
    a:hover::after,
footer
    .footer-wrapper
    .about-col
    .social-links-block
    .social-links
    li
    a:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
footer .footer-wrapper .links-col {
    justify-self: center;
}
@media (max-width: 991px) {
    footer .footer-wrapper .links-col {
        justify-self: start;
    }
}
footer .footer-wrapper .links-col .footer-list-items,
footer .footer-wrapper .contact-col .footer-list-items {
    padding: 0;
}
footer .footer-wrapper .links-col .footer-list-item,
footer .footer-wrapper .contact-col .footer-list-item {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    align-items: center;
}
footer .footer-wrapper .links-col .footer-list-item:not(:first-child),
footer .footer-wrapper .contact-col .footer-list-item:not(:first-child) {
    margin-top: 8px;
}
footer .footer-wrapper .links-col .footer-list-item:not(:last-child),
footer .footer-wrapper .contact-col .footer-list-item:not(:last-child) {
    padding-bottom: 8px;
}
footer .footer-wrapper .links-col .footer-list-item a,
footer .footer-wrapper .contact-col .footer-list-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
footer .footer-wrapper .links-col .footer-list-icon,
footer .footer-wrapper .contact-col .footer-list-icon {
    padding-right: 15px;
    display: flex;
    align-items: center;
}
footer .footer-wrapper .links-col .footer-list-icon svg,
footer .footer-wrapper .contact-col .footer-list-icon svg {
    height: 16px;
    width: 16px;
    fill: var(--global-color-primary);
}
footer .footer-wrapper .links-col .footer-list-text,
footer .footer-wrapper .contact-col .footer-list-text {
    color: var(--color-paragraph-1);
    font-family: var(--font-family-spartan);
    font-size: var(--paragraph-font-size);
    line-height: 3rem;
    font-weight: 500;
    align-self: center;
    transition: color 0.3s;
    position: relative;
    width: max-content;
}
footer .footer-wrapper .links-col .footer-list-text::after,
footer .footer-wrapper .contact-col .footer-list-text::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--global-primary-white);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
footer .footer-wrapper .links-col .footer-list-item :hover .footer-list-text,
footer .footer-wrapper .contact-col .footer-list-item :hover .footer-list-text {
    color: var(--global-primary-white);
}
footer
    .footer-wrapper
    .links-col
    .footer-list-item
    :hover
    .footer-list-text::after,
footer
    .footer-wrapper
    .contact-col
    .footer-list-item
    :hover
    .footer-list-text::after {
    width: 100%;
    opacity: 1;
}
footer .footer-wrapper .contact-col .footer-list-items {
    padding-top: 3rem;
}
footer .footer-wrapper .subscribe-col .footer-form {
    position: relative;
}
footer .footer-wrapper .subscribe-col .footer-form .input-group {
    position: relative;
    width: 100%;
}
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="text"],
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="email"],
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="tel"],
footer .footer-wrapper .subscribe-col .footer-form .input-group textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 3.4rem 2rem 3.4rem 2rem;
    border-radius: 1rem 1rem 1rem 1rem;
    color: var(--global-primary-white);
    border: 0;
    outline: none;
    background-color: var(--color-dark-3);
    transition: all 0.25s ease;
}
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="text"]:focus,
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="email"]:focus,
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group
    input[type="tel"]:focus,
footer .footer-wrapper .subscribe-col .footer-form .input-group textarea:focus {
    background-color: var(--global-primary-white);
    color: var(--color-black);
}
footer .footer-wrapper .subscribe-col .footer-form .input-group .error-icon {
    position: absolute;
    top: 30%;
    right: 100%;
    transform: translateX(calc(100% - 2rem));
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 2rem;
    width: 2rem;
    transition: all 0.3s ease-in-out;
}
footer
    .footer-wrapper
    .subscribe-col
    .footer-form
    .input-group.error
    .error-icon {
    opacity: 1;
    right: 2rem;
}
footer .footer-wrapper .subscribe-col .footer-form .submit-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
footer .footer-wrapper .subscribe-col .footer-form .submit-btn .submit-icon {
    height: 2rem;
    width: 2rem;
    fill: var(--global-color-primary);
    transition: fill 0.1s ease;
}
footer .footer-wrapper .subscribe-col .alert {
    margin-top: 2em;
    padding: 2rem 2rem 1.7rem 2rem;
    border-radius: 10px;
    display: none;
    text-align: left;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.8rem;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
}
footer .footer-wrapper .subscribe-col .alert.error {
    background-color: var(--color-warning);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
footer .footer-wrapper .subscribe-col .alert.success {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
footer .footer-wrapper .subscribe-col .unsubscribe-tag {
    margin-top: 3rem;
    font-size: var(--btn-font-size);
}
footer .copy-right {
    font-size: var(--btn-font-size);
}
@media (min-width: 576px) {
    .hero-section-1 .hs1 .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .hero-section-1 .hs1 .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .hero-section-1 .hs1 .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .hero-section-1 .hs1 .container {
        max-width: 1140px;
    }
}
.hero-section-1 .hs1 .hs1-content-wrapper {
    position: relative;
}
.hero-section-1 .hs1 .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-section-1 .hs1 .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.hero-section-1 .hs1 .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-section-1 .hs1 .hs1-content .hs1-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-section-1 .hs1 .hs1-content .content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 26.8rem 0 33.2rem 0;
    background-position: center;
    background-size: 100% 100%;
}
.hero-section-1 .hs1 .hs1-content .content {
    padding: 25.8rem 0rem 30rem 0rem;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-content .content {
        padding: 12.3rem 0rem 30rem 0rem;
    }
}
.hero-section-1 .hs1 .hs1-content .hs1-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation-name: bgAnim1;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-direction: alternate;
    animation-timing-function: linear;
}
@keyframes bgAnim1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.hero-section-1 .hs1 .hs1-content .slider-nav {
    display: flex;
    justify-content: end;
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--color-white-rgba-2);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn:hover svg,
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn:hover::after,
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.hero-section-1 .hs1 .hs1-content .slider-nav .slider-nav-btn:first-child {
    margin-right: 2rem;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-content .slider-nav {
        display: none;
    }
}
.hero-section-1 .hs1 .hero-main-content {
    position: relative;
    z-index: 10;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hero-main-content {
        padding: 0 5rem;
    }
}
@media (max-width: 767px) {
    .hero-section-1 .hs1 .hero-main-content {
        padding: 0 1rem;
    }
}
.hero-section-1 .hs1 .hero-main-content .headings .sub-heading {
    font-family: var(--font-family-spartan);
    color: var(--global-color-primary);
    font-size: var(--title-font-size);
    font-weight: 700;
    margin-bottom: 2rem;
}
.hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
    font-family: var(--font-family-spartan);
    font-size: var(--hero-heading-font-size);
    font-weight: 600;
    line-height: 100px;
    color: var(--global-primary-white);
    margin-bottom: 5rem;
    max-width: 75%;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
        font-size: 4rem;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    .hero-section-1 .hs1 .hero-main-content .headings .hero--heading {
        max-width: 100%;
    }
}
.hero-section-1 .hs1 .hero-main-content .headings .hero-btns {
    display: flex;
    column-gap: 2rem;
    row-gap: 1rem;
}
@media (max-width: 767px) {
    .hero-section-1 .hs1 .hero-main-content .headings .hero-btns {
        flex-direction: column;
    }
}
.hero-section-1 .hs1 .hs1-content-wrapper .slider-nav-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 20;
}
.hero-section-1 .hs1 .hs1-box .swiper-container {
    overflow: visible;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .swiper-container {
        padding-top: 3rem;
    }
}
.hero-section-1 .hs1 .hs1-box .swiper-container .swiper-wrapper {
    align-items: center;
}
.hero-section-1 .hs1 .image-box {
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-top: 4rem;
}
.hero-section-1 .hs1 .hs1-box .image-box {
    margin-top: 0;
}
.hero-section-1 .hs1 .image-box-content {
    z-index: 2;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.hero-section-1 .hs1 .hs1-box .image-box-content-inner {
    padding: 5rem 5rem 2.5rem 5rem;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .image-box-content-inner {
        padding: 3rem 3rem 2.5rem 3rem;
    }
}
.hero-section-1 .hs1 .hs1-box .image-box-content .icon svg {
    width: max-content;
    font-size: 7rem;
    height: 7rem;
    /* color: var(--global-color-primary);
    fill: var(--global-color-primary); */
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .image-box-content .icon svg {
        font-size: 6rem;
        height: 6rem;
    }
}
.hero-section-1 .hs1 .hs1-box .card-swiper {
    position: relative;
}
@media (min-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .card-swiper {
        max-width: 33.3%;
    }
}
.hero-section-1 .hs1 .hs1-box {
    margin-top: -22.3rem;
    transition: all 0.3s ease;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box {
        margin-top: -18.3rem;
    }
}
.hero-section-1 .hs1 .hs1-box .image-box-content h4 {
    font-size: var(--title-lg-font-size);
    font-family: var(--font-family-spartan);
    line-height: 4rem;
    font-weight: 600;
    color: var(--global-primary-white);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .image-box-content h4 {
        font-size: 2rem;
        line-height: 3rem;
        margin-top: 3rem;
    }
}
.hero-section-1 .hs1 .hs1-box .image-box-content .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
.hero-section-1 .hs1 .hs1-box .reveal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    transition: all 0.25s ease;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
    width: 20px;
    height: 20px;
}
.hero-section-1 .hs1 .hs1-box .reveal::after,
.hero-section-1 .hs1 .hs1-box .reveal::before {
    position: absolute;
    display: inline-block;
    background-color: var(--color-black);
    content: "";
    width: 12px;
    height: 2px;
    --width: (20px * 0.6);
    --height: (20px * 0.1);
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.hero-section-1 .hs1 .hs1-box .reveal.plus {
    background-color: var(--color-paragraph-1);
}
.hero-section-1 .hs1 .hs1-box .reveal.plus::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.hero-section-1 .hs1 .hs1-box .reveal.plus::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.hero-section-1 .hs1 .hs1-box .reveal:not(.plus)::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.hero-section-1 .hs1 .hs1-box .reveal:not(.plus)::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.hero-section-1 .hs1 .hs1-box .image-box-content .content {
    opacity: 0;
    transform: translateY(25px);
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    height: 0;
    margin-bottom: 0;
}
.hero-section-1 .hs1 .hs1-box .image-box-content .content p {
    margin-bottom: 0;
    color: var(--color-primary-light);
}
.hero-section-1 .hs1 .hs1-box .image-box-content .content a:hover::after {
    width: 100%;
    opacity: 1;
}
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content .icon svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content .reveal {
    background-color: var(--color-primary-light-1);
}
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content .reveal::before,
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content .reveal::after {
    background-color: var(--global-color-primary);
}
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content .content p {
    color: var(--color-primary-light);
}
.hero-section-1 .hs1 .hs1-box .image-box-bg {
    width: 100%;
    height: 100%;
    background-color: var(--global-color-secondary);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.hero-section-1 .hs1 .hs1-box .dropped .image-box-content,
.hero-section-1 .hs1 .hs1-box .dropped .image-box-bg {
    background-color: var(--global-color-primary);
}
.hero-section-1 .hs1 .hs1-box .slider-nav {
    position: absolute;
    bottom: calc(100% + 2rem);
    left: 0;
    z-index: 2;
    display: none;
    justify-content: space-between;
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--color-white-rgba-2);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn:hover svg,
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn:active svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn:hover::after,
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.hero-section-1 .hs1 .hs1-box .slider-nav .slider-nav-btn:first-child {
    margin-right: 2rem;
}
@media (max-width: 991px) {
    .hero-section-1 .hs1 .hs1-box .slider-nav {
        display: flex;
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .hero-section-1 .hs1 .hs1-box .slider-nav {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.swiper-button-disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed;
}
.hero-2-section {
    background-image: url(549616e36f30f1d6fe25.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 22rem 0rem 6rem 0rem;
}
@media (max-width: 991px) {
    .hero-2-section {
        padding: 11.4rem 0 0 0;
    }
}
.hero-2-section .hs2 .hs2-content {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5rem;
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .hero-2-section .hs2 .hs2-content {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
}
.hero-2-section .hs2 .hs2-content .hero--heading {
    font-family: var(--font-family-spartan);
    font-size: var(--hs2-font-size);
    line-height: 10rem;
    font-weight: 600;
    color: var(--global-primary-white);
    max-width: 92%;
    margin-bottom: 1rem;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-content .hero--heading {
        font-size: calc(4rem + 3 * (100vw - 250px) / 1150);
        line-height: calc(6rem + 4 * (100vw - 250px) / 1150);
        max-width: 100%;
    }
}
.hero-2-section .hs2 .hs2-content-wrapper {
    width: 100%;
    max-width: 90%;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-content-wrapper {
        max-width: 100%;
    }
}
.hero-2-section .hs2 .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-2-section .hs2 .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.hero-2-section .hs2 .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-2-section .hs2 .hs2-content .content.first-render {
    opacity: 1;
    visibility: visible;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-2-section .hs2 .hs2-content .content {
    opacity: 0;
    visibility: hidden;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    position: relative;
}
.hero-2-section .hs2 .slider-nav-hs2 {
    display: flex;
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--color-white-rgba-19);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn svg {
    height: 2.2rem;
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    background-color: var(--global-primary-white);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn:hover svg,
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn:active svg {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn:hover::after,
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.hero-2-section .hs2 .slider-nav-hs2 .slider-nav-btn:first-child {
    margin-right: 2rem;
}
.hero-2-section .hs2 .hs2-image .hs2-image-wrapper {
    width: 75%;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-image .hs2-image-wrapper {
        width: 100%;
        padding: 0 50px;
    }
}
@media (max-width: 767px) {
    .hero-2-section .hs2 .hs2-image .hs2-image-wrapper {
        padding: 0 10px;
    }
}
.hero-2-section .hs2 .hs2-image .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-2-section .hs2 .hs2-image .swiper-container {
    overflow: visible;
}
.hero-2-section .hs2 .hs2-image .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.hero-2-section .hs2 .hs2-image .swiper-wrapper {
    transform: translateZ(0);
}
.hero-2-section .hs2 .hs2-image .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-2-section .hs2 .hs2-image .swiper-slide-active .image {
    transform: translateY(11rem);
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-image .swiper-slide-active .image {
        transform: translateY(5rem);
    }
}
.hero-2-section .hs2 .hs2-image .image {
    transition: all 0.25s ease;
    transition-delay: 0.3s;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-image .image {
        height: 30rem;
    }
}
.hero-2-section .hs2 .hs2-image .image img {
    border-radius: 1rem 1rem 1rem 1rem;
    max-width: 100%;
}
@media (max-width: 991px) {
    .hero-2-section .hs2 .hs2-image .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.hero-colored-bg {
    background-image: url(a21e441e371f5ba8f5f3.jpg);
}
.about-us-v4-section {
    background-color: var(--global-color-secondary);
    padding: 15rem 0rem 10.6rem 0rem;
}
@media (max-width: 991px) {
    .about-us-v4-section {
        padding: 66px 50px 200px 50px;
    }
}
@media (max-width: 767px) {
    .about-us-v4-section {
        padding: 45px 10px 200px 10px;
    }
}
.about-us-v4-section .about-us-v4 {
    display: flex;
    column-gap: 3rem;
    row-gap: 4.5rem;
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 {
        flex-direction: column-reverse;
    }
}
.about-us-v4-section .about-us-v4 .about-us-content-block {
    margin-left: 50px;
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 .about-us-content-block {
        margin-left: 0;
    }
}
.about-us-v4-section .about-us-v4 .about-us-content-block .primary--heading {
    color: var(--global-primary-white);
}
.about-us-v4-section .about-us-v4 .about-us-content-block .accordion {
    padding-top: 3rem;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item {
    border: none;
    background-color: var(--color-bg-transparent);
    transition: all 0.25s ease;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item:not(.shown) {
    background-color: var(--global-color-dark);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item:nth-child(n + 2) {
    margin-top: 1rem;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item:first-of-type,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item:last-of-type {
    border-radius: 5px;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-header {
    padding: 1.8rem 3rem 1.4rem 3rem;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    button:not(:disabled) {
    cursor: pointer;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button {
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.25s ease;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button.keep-open[aria-expanded="true"] {
    pointer-events: none;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:focus {
    box-shadow: none;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button
    span {
    display: inline-block;
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button::after {
    display: none;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:not(.collapsed) {
    color: var(--global-primary-white);
    background-color: var(--color-bg-transparent);
    box-shadow: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button.collapsed::after,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:not(.collapsed)::after {
    background-image: none;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .collapse:not(.show) {
    display: none;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .about-us-v4-section
        .about-us-v4
        .about-us-content-block
        .accordion
        .collapsing {
        transition: none;
    }
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .about-us-v4-section
        .about-us-v4
        .about-us-content-block
        .accordion
        .collapsing.collapse-horizontal {
        transition: none;
    }
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button
    .icon {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: var(--global-color-primary);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button
    .icon::after,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button
    .icon::before {
    position: absolute;
    display: inline-block;
    background-color: var(--color-black);
    content: "";
    width: 10px;
    height: 2px;
    width: 12px;
    height: 2px;
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button.collapsed
    .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button.collapsed
    .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:not(.collapsed)
    .icon {
    background-color: var(--color-primary-light-1);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:not(.collapsed)
    .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-button:not(.collapsed)
    .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-collapse {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-body {
    padding: 1rem 5rem 1rem 3rem;
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item
    p {
    color: var(--global-primary-white);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item.shown {
    background-color: var(--global-color-primary);
}
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item.shown
    .accordion-button
    .icon::after,
.about-us-v4-section
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item.shown
    .accordion-button
    .icon::before {
    background-color: var(--global-color-primary);
}
@media (min-width: 768px) {
    .about-us-v4-section .about-us-v4 .about-us-content-block {
        width: 58.126%;
    }
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 .about-us-content-block {
        width: 100%;
    }
}
.about-us-v4-section .about-us-v4 .r-image {
    width: 100%;
    height: 100%;
}
.about-us-v4-section .about-us-v4 .r-image-inner {
    --height-elementor: 130%;
    border-radius: 0rem 1rem 1rem 0rem;
    position: absolute;
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 .r-image-inner {
        --height-elementor: 35rem;
    }
}
.about-us-v4-section .about-us-v4 .r-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.about-us-v4-section .about-us-v4 .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
}
.about-us-v4-section .about-us-v4 .about-img-block img {
    max-width: 100%;
}
.about-us-v4-section .about-us-v4 .about-img-block .icon-box {
    position: absolute;
    top: -95px;
    left: 0;
    z-index: 10;
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 .about-img-block .icon-box {
        display: none;
    }
}
@media (min-width: 768px) {
    .about-us-v4-section .about-us-v4 .about-img-block {
        width: 41.874%;
    }
}
@media (max-width: 991px) {
    .about-us-v4-section .about-us-v4 .about-img-block {
        width: 100%;
    }
}
.about-us-v4-section.about-us-v4-colored
    .about-us-v4
    .about-us-content-block
    .accordion
    .accordion-item
    p {
    color: var(--white-transparent-color) !important;
}
.hero-4-section {
    padding: 0rem 0rem 40rem 0rem;
}
@media (max-width: 991px) {
    .hero-4-section {
        padding: 77px 0px 140px 0px;
    }
}
.hero-4-section .img-block {
    text-align: right;
    margin: 0% -5% 0% 0%;
}
.hero-4-section .img-block .hero-4-img {
    height: auto;
    max-width: 100%;
    object-fit: initial;
    object-position: initial;
}
.hero-4-section .hero-text-block {
    margin-top: -390px;
}
@media (max-width: 1200px) {
    .hero-4-section .hero-text-block {
        margin-top: -25%;
    }
}
@media (max-width: 991px) {
    .hero-4-section .hero-text-block {
        margin-top: -20%;
        padding: 0px 50px 0px 50px;
    }
}
@media (max-width: 767px) {
    .hero-4-section .hero-text-block {
        margin-top: 0%;
        padding: 0;
    }
}
.hero-4-section .hero-text-block .headings .sub-heading {
    font-family: var(--font-family-spartan);
    color: var(--global-color-primary);
    font-size: var(--title-font-size);
    font-weight: 600;
    margin-bottom: 2rem;
}
.hero-4-section .hero-text-block .headings .hero--heading {
    font-family: var(--font-family-spartan);
    font-size: var(--hs2-font-size);
    font-weight: 600;
    line-height: 100px;
    color: var(--global-color-secondary);
    margin-bottom: 5rem;
    max-width: 75%;
}
@media (max-width: 991px) {
    .hero-4-section .hero-text-block .headings .hero--heading {
        font-size: 4rem;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    .hero-4-section .hero-text-block .headings .hero--heading {
        max-width: 100%;
    }
}
.hero-4-section .hero-text-block .headings .hero-btns {
    display: flex;
    column-gap: 2rem;
    row-gap: 1rem;
}
@media (max-width: 767px) {
    .hero-4-section .hero-text-block .headings .hero-btns {
        flex-direction: column;
    }
}
.hero-4-section
    .hero-text-block
    .headings
    .hero-btns
    .blue--btn:link
    .button-inner,
.hero-4-section
    .hero-text-block
    .headings
    .hero-btns
    .blue--btn:visited
    .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-secondary);
}
.hero-4-section
    .hero-text-block
    .headings
    .hero-btns
    .blue--btn:active
    .button-inner,
.hero-4-section
    .hero-text-block
    .headings
    .hero-btns
    .blue--btn:hover
    .button-inner {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    background-color: var(--global-color-primary);
}
.work-v2-section {
    background-color: var(--global-color-secondary);
    padding: 0 0 11rem 0;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .work-v2-section {
        padding: 0px 50px 45px 50px;
    }
}
@media (max-width: 767px) {
    .work-v2-section {
        padding: 0px 0px 45px 0px;
    }
}
.work-v2-section .video-block {
    margin-top: -8rem;
}
@media (max-width: 767px) {
    .work-v2-section .video-block {
        padding: 10px;
    }
}
.work-v2-section .video-block iframe {
    border: none;
}
.work-v2-section .video-block .elementor-widget-video {
    height: 567px;
    width: 100%;
    position: relative;
}
@media (max-width: 991px) {
    .work-v2-section .video-block .elementor-widget-video {
        width: 100%;
        height: 30rem;
    }
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .elementor-open-inline {
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .elementor-video {
    border-radius: 1rem 1rem 1rem 1rem;
    width: 100%;
    height: 567px;
}
@media (max-width: 991px) {
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .elementor-video {
        width: 100%;
        height: 30rem;
    }
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .image-overlay {
    background-image: url(video-bg.jpg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    border-radius: 1rem 1rem 1rem 1rem;
    cursor: pointer;
    text-align: center;
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .image-overlay-2 {
    background-image: url(b9d923677165dd894ecf.jpg);
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .rodio-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    pointer-events: none;
}
@media (max-width: 991px) {
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container {
        justify-content: center;
        align-items: center;
    }
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .rodio-overlay-container
    .rodio-overlay-text {
    width: 47%;
    text-align: left;
    margin: 0rem 0rem 0rem 8.8rem;
    pointer-events: none;
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .rodio-overlay-container
    .rodio-overlay-text
    span {
    --box-shadow-size: 11px;
    font-size: var(--heading-font-size);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    color: var(--global-primary-white);
    line-height: 9rem;
    background-color: var(--global-color-primary);
    box-shadow: var(--box-shadow-size) 0 0 var(--global-color-primary),
        calc(var(--box-shadow-size) * -1) 0 0 var(--global-color-primary);
    border-radius: 1rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 0 var(--box-shadow-size);
    padding: 0.7rem 0;
}
@media (max-width: 991px) {
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container
        .rodio-overlay-text
        span {
        font-size: 28px;
        line-height: 50px;
    }
}
@media (max-width: 991px) {
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container
        .rodio-overlay-text {
        width: 80%;
        margin: 0px 0px 0px 0px;
    }
}
.work-v2-section
    .video-block
    .elementor-widget-video
    .video-wrapper
    .rodio-overlay-container
    .rodio-icon {
    position: absolute;
    left: 100px;
    bottom: -30px;
}
@media (max-width: 991px) {
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container
        .rodio-icon {
        left: 1rem;
        bottom: -5rem;
    }
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container
        .rodio-icon
        .icon-box {
        width: 9.9rem;
        height: 9.9rem;
    }
    .work-v2-section
        .video-block
        .elementor-widget-video
        .video-wrapper
        .rodio-overlay-container
        .rodio-icon
        .svg-icon {
        height: 4rem;
        width: 4rem;
    }
}
.work-v2-section .primary--heading.custom-heading {
    text-align: center;
    color: var(--global-primary-white);
    max-width: 62%;
    margin: 0 auto 10rem auto;
}
.work-v2-section .primary--heading.custom-heading::after {
    margin: auto;
}
@media (max-width: 991px) {
    .work-v2-section .primary--heading.custom-heading {
        max-width: 100%;
        margin: 0 auto 3rem auto;
    }
}
.work-content-block {
    margin-top: 43px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    padding: 15px 0;
}
@media (max-width: 991px) {
    .work-content-block {
        grid-template-columns: 1fr;
        margin-top: 80px;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .work-content-block {
        padding: 0 10px;
    }
}
.work-content-block .rodio-tabs {
    --gap: 1.5rem;
    --width: 50%;
}
.work-content-block .rodio-tabs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 991px) {
    .work-content-block .rodio-tabs-inner {
        grid-template-columns: auto;
    }
}
.work-content-block .rodio-tabs .nav-tabs {
    border: none;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
}
@media (max-width: 991px) {
    .work-content-block .rodio-tabs .nav-tabs {
        gap: 1rem;
    }
}
.work-content-block .rodio-tabs .nav-item {
    width: calc(50% - 1.5rem);
}
@media (max-width: 399px) {
    .work-content-block .rodio-tabs .nav-item {
        width: 100%;
    }
}
.work-content-block .rodio-tabs .nav-link {
    background-color: var(--global-color-dark);
    color: var(--color-paragraph-1);
    fill: var(--color-paragraph-1);
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    padding: 3.5rem 3rem 2.1rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    cursor: pointer;
}
.work-content-block .rodio-tabs .nav-link .icon-wrapper {
    margin-bottom: 3rem;
}
.work-content-block .rodio-tabs .nav-link .icon {
    height: 5rem;
    fill: inherit;
}
.work-content-block .rodio-tabs .nav-link span {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    letter-spacing: -0.5px;
}
.work-content-block .rodio-tabs .tab-content {
    position: relative;
    margin: calc(var(--gap) / 2 * -1);
    transition: all 0.25s ease;
}
.work-content-block .rodio-tabs .tab-pane {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    padding: var(--gap) 0 0 var(--gap);
    width: 100%;
}
@media (max-width: 767px) {
    .work-content-block .rodio-tabs .tab-pane {
        padding: var(--gap) 0 0 1rem;
    }
}
.work-content-block .rodio-tabs .tab-pane.first-render {
    opacity: 1;
    visibility: visible;
}
.work-content-block .rodio-tabs .tab-content > .active {
    display: block !important;
    z-index: 50;
}
.work-content-block .rodio-tabs .tab-pane.active {
    opacity: 1;
}
.work-content-block .rodio-tabs .tab-pane > div {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}
.work-content-block .rodio-tabs .tab-pane.first-render .tab-pane-inner {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}
.work-content-block .rodio-tabs .tab-pane h3 {
    font-family: var(--font-family-spartan);
    font-size: var(--tab-title-size);
    font-weight: 600;
    color: var(--global-primary-white);
    margin-bottom: 3rem;
}
.work-content-block .rodio-tabs .tab-pane.tab-text .text-pane p {
    color: var(--color-paragraph-1);
}
.work-content-block
    .rodio-tabs
    .tab-pane.tab-text
    .text-pane
    p:not(:last-child) {
    margin-bottom: 3rem;
}
.work-content-block .rodio-tabs .nav-link:hover,
.work-content-block .rodio-tabs .nav-link.active {
    border-color: var(--color-bg-transparent);
    color: var(--color-black);
    background-color: var(--global-primary-white);
}
.work-content-block .rodio-tabs .nav-link:hover .icon,
.work-content-block .rodio-tabs .nav-link.active .icon {
    fill: var(--global-color-primary);
}
.work-content-block .accordion {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5px;
}
.work-content-block .accordion .accordion-item {
    border: none;
    background-color: var(--color-bg-transparent);
    transition: all 0.25s ease;
}
.work-content-block .accordion .accordion-item:nth-child(n + 2) {
    margin-top: 1rem;
}
.work-content-block .accordion .accordion-item,
.work-content-block .accordion .accordion-item:first-of-type,
.work-content-block .accordion .accordion-item:last-of-type {
    border-radius: 5px;
}
.work-content-block .accordion button:not(:disabled) {
    cursor: pointer;
}
.work-content-block .accordion .accordion-button {
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.25s ease;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
}
.work-content-block
    .accordion
    .accordion-button.keep-open[aria-expanded="true"] {
    pointer-events: none;
}
.work-content-block .accordion .accordion-button,
.work-content-block .accordion .accordion-button:focus {
    box-shadow: none;
}
.work-content-block .accordion .accordion-button span {
    display: inline-block;
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
}
.work-content-block .accordion .accordion-button::after {
    display: none;
}
.work-content-block .accordion .accordion-button,
.work-content-block .accordion .accordion-button:not(.collapsed) {
    color: var(--global-primary-white);
    background-color: var(--color-bg-transparent);
    box-shadow: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.work-content-block .accordion .accordion-button.collapsed::after,
.work-content-block .accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
}
.work-content-block .accordion .collapse:not(.show) {
    display: none;
}
.work-content-block .accordion .collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .work-content-block .accordion .collapsing {
        transition: none;
    }
}
.work-content-block .accordion .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .work-content-block .accordion .collapsing.collapse-horizontal {
        transition: none;
    }
}
.work-content-block .accordion .accordion-button .icon {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: var(--global-color-primary);
}
.work-content-block .accordion .accordion-button .icon::after,
.work-content-block .accordion .accordion-button .icon::before {
    position: absolute;
    display: inline-block;
    background-color: var(--color-black);
    content: "";
    width: 10px;
    height: 2px;
    width: 12px;
    height: 2px;
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.work-content-block .accordion .accordion-button.collapsed .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.work-content-block .accordion .accordion-button.collapsed .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.work-content-block .accordion .accordion-button:not(.collapsed) .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.work-content-block .accordion .accordion-button:not(.collapsed) .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.work-content-block .accordion .accordion-collapse {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.work-content-block .accordion .accordion-body {
    padding: 2rem 0rem 0.8rem 0rem;
}
.work-content-block .accordion .accordion-item p {
    color: var(--color-paragraph-1) !important;
}
@media (max-width: 991px) {
    .work-v2-wrapper .work-v2-section {
        padding: 0px 50px 45px 0px;
    }
}
@media (max-width: 991px) {
    .work-v2-wrapper .work-v2-section {
        padding: 0px 10px 45px 0px;
    }
}
@media (max-width: 991px) {
    .work-v2-wrapper .work-v2-section .container {
        padding-left: 50px;
    }
}
@media (max-width: 991px) {
    .work-v2-wrapper .work-v2-section .container {
        padding: 0 1.5rem;
    }
}
.result-section {
    background-color: var(--global-primary-white);
    padding: 11rem 0rem 8rem 0rem;
}
@media (max-width: 991px) {
    .result-section {
        padding: 66px 50px 66px 50px;
    }
}
@media (max-width: 767px) {
    .result-section {
        padding: 25px 0px 200px 10px;
    }
}
.result-section .result-block {
    display: flex;
    column-gap: 3rem;
    row-gap: 4.5rem;
}
@media (max-width: 991px) {
    .result-section .result-block {
        flex-direction: column-reverse;
    }
}
.result-section .result-block .about-us-content-block {
    margin-left: 50px;
}
@media (max-width: 991px) {
    .result-section .result-block .about-us-content-block {
        margin-left: 0;
    }
}
.result-section .result-block .about-us-content-block .primary--heading {
    color: var(--global-color-secondary);
}
.result-section .result-block .about-us-content-block p {
    color: var(--color-paragraph-2);
    margin-top: 1rem;
}
.result-section .result-block .about-us-content-block .progress-block {
    margin-top: 4rem;
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-wrapper {
    position: relative;
    background-color: #eee;
    color: #fff;
    height: 100%;
    border-radius: 5px;
    z-index: 0;
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-wrapper:not(:last-child) {
    margin-bottom: 15px;
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-wrapper::after {
    content: attr(aria-valuetext);
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: -1;
    color: var(--color-paragraph-2);
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    font-family: var(--font-family-spartan);
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-bar {
    display: flex;
    width: 0;
    font-size: 11px;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    transition: width 1s ease-in-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-wrapper:nth-child(odd)
    .elementor-progress-bar {
    background-color: var(--global-color-secondary);
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-wrapper:nth-child(even)
    .elementor-progress-bar {
    background-color: var(--global-color-primary);
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-text {
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 15px;
    position: absolute;
    right: 3rem;
    color: var(--global-primary-white);
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    font-family: var(--font-family-spartan);
}
.result-section
    .result-block
    .about-us-content-block
    .progress-block
    .elementor-progress-percentage {
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 3rem;
    letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
    .result-section .result-block .about-us-content-block {
        width: 58.126%;
    }
}
@media (max-width: 991px) {
    .result-section .result-block .about-us-content-block {
        width: 100%;
    }
}
.result-section .result-block .r-image {
    width: 100%;
    height: 100%;
}
.result-section .result-block .r-image-inner {
    --height-elementor: 130%;
    border-radius: 0rem 1rem 1rem 0rem;
    position: absolute;
}
@media (max-width: 991px) {
    .result-section .result-block .r-image-inner {
        --height-elementor: 35rem;
    }
}
.result-section .result-block .r-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.result-section .result-block .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
}
.result-section .result-block .about-img-block img {
    max-width: 100%;
}
@media (min-width: 768px) {
    .result-section .result-block .about-img-block {
        width: 41.874%;
    }
}
@media (max-width: 991px) {
    .result-section .result-block .about-img-block {
        width: 100%;
    }
}
.section-wrapper {
    background-color: var(--global-color-secondary);
    display: flow-root;
}
@media (max-width: 991px) {
    .section-wrapper {
        padding: 0 5rem 0 0;
    }
}
@media (max-width: 767px) {
    .section-wrapper {
        padding: 0 1rem 0 0;
    }
}
.section-wrapper .result-section {
    margin-top: -25.4rem;
    border-radius: 0 15px 15px 0;
}
@media (max-width: 991px) {
    .section-wrapper .result-section {
        margin-top: -100px;
    }
}
.toggle-card-section {
    background-color: var(--global-color-secondary);
    padding: 0rem 0rem 18.3rem 0rem;
    position: relative;
    margin-top: -9.2rem;
}
@media (max-width: 991px) {
    .toggle-card-section {
        padding: 0px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .toggle-card-section {
        padding: 0px 15px 50px 15px;
    }
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs {
    --gap: 1.5rem;
    --width: 50%;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-tabs {
    border: none;
    max-width: 100%;
    margin: 0;
    display: flex;
    gap: 3rem;
    list-style: none;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link {
    padding: 2rem 3.3rem 2rem 3.3rem;
    background-color: var(--tabs-bg-color);
    border-radius: 1rem 1rem 1rem 1rem;
    color: var(--color-paragraph-1);
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-tabs .icon {
    margin: 0rem 1.3rem 0rem 0rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link .icon {
    height: 3rem;
    width: 3rem;
    fill: var(--color-paragraph-1);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link
    .button-list-text {
    flex: 1;
    text-align: left;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link span {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    letter-spacing: 0px;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs.tab-landscape {
    --gap: 1rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs.tab-landscape .nav-tabs {
    gap: var(--gap);
    margin-bottom: var(--gap);
    width: max-content;
    display: block;
    position: relative;
    z-index: 10;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs.tab-landscape .nav-item {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs.tab-landscape .nav-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.4rem 2.5rem 2.2rem 2.5rem;
    border: none;
    border-radius: 1rem;
    position: relative;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-link
    .icon-wrapper {
    margin-bottom: 0;
    display: block;
}
.toggle-card-section .toggle-card-wrapper .tabs-wrapper {
    position: relative;
    z-index: 999;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link.active,
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link:hover {
    background-color: var(--global-color-dark);
    border-radius: 1rem 1rem 1rem 1rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link.active .icon,
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link:hover .icon {
    fill: var(--global-color-primary);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link.active
    .button-list-text {
    color: var(--global-primary-white);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link:hover
    .button-list-text {
    color: var(--global-primary-white);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-link::after {
    content: "";
    position: absolute;
    top: calc(100% - 1rem);
    left: 0;
    width: 100%;
    height: 0;
    background-color: inherit;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-link.active::after {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    height: 4rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .nav-link::after {
    display: block;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .selectify-wrapper {
    display: none;
}
@media (max-width: 991px) {
    .toggle-card-section .toggle-card-wrapper .rodio-tabs .selectify-wrapper {
        display: block;
    }
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify {
    max-width: 100%;
    position: relative;
    font-family: var(--font-family-spartan);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper {
    position: relative;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    fill: var(--global-primary-white);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    fill: var(--global-primary-white);
    pointer-events: none;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon
    svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    fill: inherit;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .selectify-wrapper .icon {
    margin-right: 1.3rem;
    font-size: 3rem;
    height: 3rem;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .icon-wrapper {
    flex: 0.1;
    pointer-events: none;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active
    .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active {
    display: block;
    padding: 2rem;
    max-width: 100%;
    font-family: var(--font-family-spartan);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--global-color-secondary);
    border-radius: 10px;
    background-color: var(--global-color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .active
    .button-list-text {
    fill: var(--global-primary-white);
    color: var(--global-primary-white);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .button-list-text {
    pointer-events: none;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul {
    position: absolute;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    max-height: 50rem;
    width: 100%;
    border-radius: 10px;
    background-color: var(--color-grey-1);
    list-style: none;
    pointer-events: none;
    z-index: 999999;
    margin: 1rem 0 0 0;
    padding: 2rem 0;
    font-size: 1.8rem;
    color: var(--color-black);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify.shown
    ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul {
    background-color: var(--global-color-dark);
    color: var(--global-color-text);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul
    li {
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    margin: 0 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    ul
    li
    .icon-wrapper {
    flex: 0.1;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul
    li.selected {
    color: var(--global-primary-white);
    background-color: var(--global-color-secondary);
    font-weight: 600;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    li.selected
    .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs {
    --gap: 1rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-content {
    position: relative;
    margin: calc(var(--gap) / 2 * -1);
    transition: all 0.25s ease;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .tab-content {
    margin: 0;
    padding: 0;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-pane {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    padding: var(--gap) 0 0 var(--gap);
    width: 100%;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs.tab-landscape .tab-pane {
    margin: 0;
    padding: 0;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-pane.first-render {
    opacity: 1;
    visibility: visible;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-content > .active {
    display: block !important;
    z-index: 50;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-pane.active {
    opacity: 1;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-pane > div {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane.first-render
    .tab-pane-inner {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-panel-wrapper {
    background-color: var(--global-color-dark);
    padding: 5rem 5rem 5rem 5rem;
    border-radius: 10px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
@media (max-width: 991px) {
    .toggle-card-section .toggle-card-wrapper .rodio-tabs .tab-panel-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 0 2rem 0;
    }
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .pane-content-block {
    padding: 30px;
}
.toggle-card-section
    .toggle-card-wrapper
    .rodio-tabs
    .pane-content-block
    .primary--heading {
    color: var(--global-primary-white);
    font-size: var(--tab-title-size);
    line-height: 30px;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .pane-content-block p {
    margin-bottom: 3rem;
    color: var(--color-paragraph-1);
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .r-image {
    width: 100%;
    height: 100%;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .r-image-inner {
    --height-elementor: 130%;
    border-radius: 1rem 1rem 1rem 1rem;
    position: absolute;
    width: 100%;
}
@media (max-width: 991px) {
    .toggle-card-section .toggle-card-wrapper .rodio-tabs .r-image-inner {
        --height-elementor: 25rem;
    }
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .r-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
    padding: 3rem;
}
.toggle-card-section .toggle-card-wrapper .rodio-tabs .about-img-block img {
    max-width: 100%;
}
@media (max-width: 991px) {
    .toggle-card-section .toggle-card-wrapper .rodio-tabs .mobile-hidden {
        display: none !important;
    }
}
.work-v3-section {
    background-image: url(5edfdff550371d4d810d.jpg);
    background-color: #bfbfbf;
    padding: 20rem 0rem 0rem 0rem;
    z-index: 0;
}
@media (min-width: 991px) {
    .work-v3-section {
        background-attachment: fixed;
    }
}
.work-v3-section .container {
    position: relative;
}
.work-v3-section .img-block {
    position: absolute;
    right: -26%;
}
@media (max-width: 991px) {
    .work-v3-section .img-block {
        right: -150px;
        height: 70rem;
        width: 100%;
        margin: auto;
        top: 150px;
    }
}
.work-v3-section .img-block .pattern-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.work-v3-section .toggle-card-section-2 {
    background-color: rgba(0, 0, 0, 0);
    padding: 0rem 0rem 18.3rem 0rem;
    margin-top: 0;
}
@media (max-width: 991px) {
    .work-v3-section .toggle-card-section-2 {
        padding: 0px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .work-v3-section .toggle-card-section-2 {
        padding: 0px 10px 50px 10px;
    }
}
.work-v3-section .toggle-card-section-2 .toggle-card-wrapper .rodio-tabs {
    --gap: 1.5rem;
    --width: 50%;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-tabs {
    border: none;
    max-width: 100%;
    margin: 0;
    display: flex;
    gap: 3rem;
    list-style: none;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link {
    padding: 2rem 3.3rem 2rem 3.3rem;
    background-color: var(--global-primary-white);
    border-radius: 1rem 1rem 1rem 1rem;
    color: var(--color-paragraph-1);
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-tabs
    .icon {
    margin: 0rem 2rem 0rem 0rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link
    .icon {
    height: 3rem;
    width: auto;
    fill: var(--color-paragraph-1);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link
    .button-list-text {
    flex: 1;
    text-align: left;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link
    span {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    letter-spacing: 0px;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape {
    --gap: 1rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-tabs {
    gap: var(--gap);
    margin-bottom: var(--gap);
    width: max-content;
    display: block;
    position: relative;
    z-index: 10;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-item {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.4rem 2.5rem 2.2rem 2.5rem;
    border: none;
    cursor: pointer;
    border-radius: 1rem;
    position: relative;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .nav-link
    .icon-wrapper {
    margin-bottom: 0;
    display: block;
}
.work-v3-section .toggle-card-section-2 .toggle-card-wrapper .tabs-wrapper {
    position: relative;
    z-index: 100;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link.active,
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link:hover {
    background-color: var(--global-primary-white);
    border-radius: 1rem 1rem 1rem 1rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link.active
    .icon,
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link:hover
    .icon {
    fill: var(--global-color-primary);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link.active
    .button-list-text {
    color: var(--color-black);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .nav-link:hover
    .button-list-text {
    color: var(--color-black);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper {
    display: none;
}
@media (max-width: 991px) {
    .work-v3-section
        .toggle-card-section-2
        .toggle-card-wrapper
        .rodio-tabs
        .selectify-wrapper {
        display: block;
    }
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify {
    max-width: 100%;
    position: relative;
    font-family: var(--font-family-spartan);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper {
    position: relative;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    fill: var(--global-primary-white);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    fill: var(--global-color-text-1);
    pointer-events: none;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon
    svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    fill: inherit;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .icon {
    margin-right: 1.3rem;
    font-size: 3rem;
    height: 3rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .icon-wrapper {
    flex: 0.1;
    pointer-events: none;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active
    .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    .active {
    display: block;
    padding: 2rem;
    max-width: 100%;
    font-family: var(--font-family-spartan);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--global-color-secondary);
    border-radius: 10px;
    background-color: var(--global-primary-white);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .active
    .button-list-text {
    fill: var(--color-black);
    color: var(--color-black);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .button-list-text {
    pointer-events: none;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul {
    position: absolute;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    max-height: 50rem;
    width: 100%;
    border-radius: 10px;
    background-color: var(--color-primary-light-2);
    list-style: none;
    pointer-events: none;
    z-index: 999999;
    margin: 1rem 0 0 0;
    padding: 2rem 0;
    font-size: 1.8rem;
    color: var(--color-black);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify.shown
    ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul {
    background-color: var(--color-primary-light-2);
    color: var(--global-color-text-1);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul
    li {
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: var(--global-color-text-1);
    fill: var(--color-black);
    margin: 0 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    ul
    li
    .icon-wrapper {
    flex: 0.1;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    ul
    li.selected {
    color: var(--color-black);
    background-color: var(--global-primary-white);
    font-weight: 600;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .selectify-wrapper
    .selectify
    li.selected
    .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.work-v3-section .toggle-card-section-2 .toggle-card-wrapper .rodio-tabs {
    --gap: 1rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-content {
    position: relative;
    margin: calc(var(--gap) / 2 * -1);
    transition: all 0.25s ease;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .tab-content {
    margin: 0;
    padding: 0;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    padding: var(--gap) 0 0 var(--gap);
    width: 100%;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs.tab-landscape
    .tab-pane {
    margin: 0;
    padding: 0;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane.first-render {
    opacity: 1;
    visibility: visible;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-content
    > .active {
    display: block !important;
    z-index: 50;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane.active {
    opacity: 1;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane
    > div {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-pane.first-render
    .tab-pane-inner {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .tab-panel-wrapper {
    background-color: var(--global-primary-white);
    padding: 5rem 5rem 5rem 5rem;
    border-radius: 10px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
@media (max-width: 991px) {
    .work-v3-section
        .toggle-card-section-2
        .toggle-card-wrapper
        .rodio-tabs
        .tab-panel-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 0 2rem 0;
    }
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .pane-content-block {
    padding: 30px;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .pane-content-block
    .primary--heading {
    color: var(--color-black);
    font-size: var(--tab-title-size);
    line-height: 30px;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .pane-content-block
    p {
    margin-bottom: 3rem;
    color: var(--global-color-text-1);
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .r-image {
    width: 100%;
    height: 100%;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .r-image-inner {
    --height-elementor: 130%;
    border-radius: 1rem 1rem 1rem 1rem;
    position: absolute;
    width: 100%;
}
@media (max-width: 991px) {
    .work-v3-section
        .toggle-card-section-2
        .toggle-card-wrapper
        .rodio-tabs
        .r-image-inner {
        --height-elementor: 25rem;
    }
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .r-image
    img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
    padding: 3rem;
}
.work-v3-section
    .toggle-card-section-2
    .toggle-card-wrapper
    .rodio-tabs
    .about-img-block
    img {
    max-width: 100%;
}
@media (max-width: 991px) {
    .work-v3-section
        .toggle-card-section-2
        .toggle-card-wrapper
        .rodio-tabs
        .mobile-hidden {
        display: none !important;
    }
}
.search-error-section {
    padding: 15rem 0;
}
@media (max-width: 991px) {
    .search-error-section {
        padding: 5rem;
    }
}
@media (max-width: 991px) {
    .search-error-section {
        padding: 5rem 1rem;
    }
}
.search-error-section .search-error-wrapper {
    text-align: center;
    max-width: 65%;
    margin: auto;
}
.search-error-section .search-error-wrapper .icon {
    width: 12rem;
    height: 12rem;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--global-color-primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-error-section .search-error-wrapper .icon svg {
    height: 5rem;
    fill: var(--global-primary-white);
}
.search-error-section .search-error-wrapper .primary--heading {
    font-size: 4rem;
    line-height: 6rem;
    font-weight: 600;
    letter-spacing: -0.1rem;
    margin-top: 4.3rem;
    text-align: center;
}
.search-error-section .search-error-wrapper .primary--heading::after {
    margin: 12px auto;
}
.search-error-section .search-error-wrapper p {
    margin-top: 3.5rem;
    padding: 0 10%;
}
.search-error-section .search-error-wrapper .button {
    margin-top: 3rem;
}
.search-error-section .search-error-wrapper .button:hover .button-inner span {
    transform: none;
}
@media (max-width: 991px) {
    .search-error-section .search-error-wrapper {
        max-width: 100%;
    }
    .search-error-section .search-error-wrapper .primary--heading {
        font-size: calc(3.5rem + 1.5 * (100vw - 250px) / 1150);
        line-height: calc(5.5rem + 1.5 * (100vw - 250px) / 1150);
    }
    .search-error-section .search-error-wrapper .button {
        width: 100%;
    }
}
.page-header-section {
    background-image: url(c43b003f31a7f4c5ecfe.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--global-color-secondary);
    background-position: top center;
    padding: 20rem 0 9rem 0;
}
.page-header-section.secteurd {
    background-image: url(secteur-bg.jpg);
}
.page-header-section.historique {
    background-image: url(6ba463a9f78016e0c58f-2.jpg);
}
.page-header-section.concept {
    background-image: url(concept-bg.jpg);
}
@media (max-width: 991px) {
    .page-header-section {
        padding: 113px 0 40px 0;
    }
}
.page-header-section .page-header-wrapper .page-header-content {
    text-align: center;
}
.page-header-section .page-header-wrapper .page-header-content h1 {
    color: var(--global-primary-white);
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-size: 6rem;
    line-height: 8rem;
    font-weight: 600;
    font-family: var(--font-family-spartan);
}
@media (max-width: 991px) {
    .page-header-section .page-header-wrapper .page-header-content h1 {
        font-size: calc(3.5rem + 2.5 * (100vw - 250px) / 1150);
        line-height: calc(5.5rem + 2.5 * (100vw - 250px) / 1150);
    }
}
.page-header-section .page-header-wrapper .page-header-content .breadcrumbs {
    padding: 0 1rem;
}
.page-header-section .page-header-wrapper .page-header-content .breadcrumbs ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header-section
    .page-header-wrapper
    .page-header-content
    .breadcrumbs
    ul
    li {
    display: inline-block;
    color: var(--color-primary-light-1);
    font-family: var(--font-family-spartan);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    display: flex;
    align-items: center;
}
.page-header-section
    .page-header-wrapper
    .page-header-content
    .breadcrumbs
    ul
    li
    a {
    color: inherit;
    text-decoration: none;
}
.page-header-section
    .page-header-wrapper
    .page-header-content
    .breadcrumbs
    ul
    li:nth-child(n + 2)::before {
    content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27%230099ff%27%3E%3Cpath d=%27M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z%27/%3E%3C/svg%3E");
    display: inline-block;
    width: 1.6rem;
    margin: 0 1rem;
    fill: var(--color-primary-light-1);
}
.page-header-colored {
    background-image: url(6ba463a9f78016e0c58f.jpg);
}
.page-header-colored
    .page-header-wrapper
    .page-header-content
    .breadcrumbs
    ul
    li:nth-child(n + 2)::before {
    content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27%23ff7800%27%3E%3Cpath d=%27M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z%27/%3E%3C/svg%3E");
}
.get-in-touch-section {
    background-color: var(--global-color-secondary);
    padding: 12rem 0rem 14rem 0rem;
}
@media (max-width: 991px) {
    .get-in-touch-section {
        padding: 100px 50px 200px 50px;
    }
}
@media (max-width: 767px) {
    .get-in-touch-section {
        padding: 100px 10px 200px 10px;
    }
}
.get-in-touch-section .container {
    position: relative;
}
.get-in-touch-section .icon-box {
    position: absolute;
    right: 0;
    top: -16rem;
}
.get-in-touch-section .primary--heading {
    color: var(--global-primary-white);
}
.get-in-touch-section .get-in-touch-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    padding-top: 2rem;
}
@media (max-width: 991px) {
    .get-in-touch-section .get-in-touch-wrapper {
        grid-template-columns: 1fr;
    }
}
.get-in-touch-section .get-in-touch-wrapper .contact-form-block {
    background-color: var(--global-color-dark);
    border-radius: 10px 0px 0px 10px;
    padding: 5.5rem 6.5rem 4rem 6.5rem;
}
@media (max-width: 1200px) {
    .get-in-touch-section .get-in-touch-wrapper .contact-form-block {
        padding: 75px;
    }
}
@media (max-width: 991px) {
    .get-in-touch-section .get-in-touch-wrapper .contact-form-block {
        border-radius: 10px 10px 0px 0px;
        padding: 50px;
    }
}
@media (max-width: 767px) {
    .get-in-touch-section .get-in-touch-wrapper .contact-form-block {
        padding: 25px 25px 30px 25px;
    }
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 991px) {
    .get-in-touch-section
        .get-in-touch-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper {
        grid-template-columns: 1fr;
    }
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group {
    position: relative;
    width: 100%;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"],
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"],
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"],
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: var(--global-primary-white);
    border-radius: 2.5px;
    margin-top: 2rem;
    border: 0;
    outline: none;
    border-bottom: 1px solid var(--global-color-text-2);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]:focus,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]:focus,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]:focus,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea:focus {
    border-bottom: 1px solid var(--global-primary-white);
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]::placeholder,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]::placeholder,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]::placeholder,
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea::placeholder {
    color: var(--color-paragraph-1);
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 15rem;
    resize: none;
    margin-top: 3rem;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group
    .error-icon {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 1.2rem;
    width: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group:last-child {
    grid-column: 3/-3;
}
@media (max-width: 992px) {
    .get-in-touch-section
        .get-in-touch-wrapper
        .contact-form-block
        .contact-form
        .form-wrapper
        .input-group:last-child {
        grid-column: auto;
    }
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .form-wrapper
    .input-group.error
    .error-icon {
    opacity: 1;
    left: 95%;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .submit-btn {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    margin: 3.4rem auto 0 auto;
    border: 3px solid var(--global-color-primary);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
    cursor: pointer;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .submit-btn
    .submit-icon {
    height: 3rem;
    width: 3rem;
    fill: var(--global-color-primary);
    transition: fill 0.1s ease;
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .submit-btn:hover {
    background-color: var(--global-color-primary);
}
.get-in-touch-section
    .get-in-touch-wrapper
    .contact-form-block
    .contact-form
    .submit-btn:hover
    .submit-icon {
    fill: var(--global-primary-white);
}
.get-in-touch-section .get-in-touch-wrapper .contact-form-block .alert {
    margin-top: 2em;
    padding: 2rem 2rem 1.7rem 2rem;
    border-radius: 10px;
    display: none;
    text-align: left;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
}
.get-in-touch-section .get-in-touch-wrapper .contact-form-block .alert.error {
    background-color: var(--color-warning);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.get-in-touch-section .get-in-touch-wrapper .contact-form-block .alert.success {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.get-in-touch-section .get-in-touch-wrapper .r-image {
    width: 100%;
    height: 100%;
}
.get-in-touch-section .get-in-touch-wrapper .r-image-inner {
    --height-elementor: 150%;
    border-radius: 0rem 0rem 0rem 1rem;
    position: absolute;
}
@media (max-width: 991px) {
    .get-in-touch-section .get-in-touch-wrapper .r-image-inner {
        --height-elementor: 30rem;
        border-radius: 1rem 0rem 0rem 1rem;
    }
}
.get-in-touch-section .get-in-touch-wrapper .r-image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit !important;
}
.get-in-touch-section .get-in-touch-wrapper .about-img-block {
    position: relative;
    min-height: 1px;
    display: flex;
}
.get-in-touch-section .get-in-touch-wrapper .about-img-block img {
    max-width: 100%;
}
@media (min-width: 768px) {
    .get-in-touch-section .get-in-touch-wrapper .about-img-block {
        width: 41.874%;
    }
}
@media (max-width: 991px) {
    .get-in-touch-section .get-in-touch-wrapper .about-img-block {
        width: 100%;
    }
}
.faqs-section {
    padding: 13.5rem 0rem 14rem 0rem;
}
@media (max-width: 991px) {
    .faqs-section {
        padding: 45px 50px 55px 50px;
    }
}
@media (max-width: 767px) {
    .faqs-section {
        padding: 45px 10px 55px 10px;
    }
}
.faqs-section .primary--heading {
    color: var(--global-color-secondary);
    margin: 0 auto 4rem auto;
    max-width: 54%;
    text-align: center;
}
.faqs-section .primary--heading::after {
    margin: 12px auto;
}
@media (max-width: 991px) {
    .faqs-section .primary--heading {
        max-width: 100%;
    }
}
.faqs-section .accordion {
    max-width: 70%;
    margin: auto;
}
@media (max-width: 991px) {
    .faqs-section .accordion {
        max-width: 100%;
    }
}
.faqs-section .accordion .accordion-item {
    border: none;
    background-color: var(--color-bg-transparent);
    transition: all 0.25s ease;
}
.faqs-section .accordion .accordion-item:not(.shown) {
    background-color: var(--color-primary-light-2);
}
.faqs-section .accordion .accordion-item:nth-child(n + 2) {
    margin-top: 1rem;
}
.faqs-section .accordion .accordion-item,
.faqs-section .accordion .accordion-item:first-of-type,
.faqs-section .accordion .accordion-item:last-of-type {
    border-radius: 5px;
}
.faqs-section .accordion .accordion-header {
    padding: 2.5rem 3rem 2rem 3rem;
}
.faqs-section .accordion button:not(:disabled) {
    cursor: pointer;
}
.faqs-section .accordion .accordion-button {
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.25s ease;
    padding: 0;
    border: none;
    outline: none;
    width: 100%;
    --size: 20px;
    --width: calc(20px * 0.6);
    --height: calc(20px * 0.1);
}
.faqs-section .accordion .accordion-button.keep-open[aria-expanded="true"] {
    pointer-events: none;
}
.faqs-section .accordion .accordion-button,
.faqs-section .accordion .accordion-button:focus {
    box-shadow: none;
}
.faqs-section .accordion .accordion-button span {
    display: inline-block;
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    font-weight: 600;
    line-height: 3rem;
}
.faqs-section .accordion .accordion-button::after {
    display: none;
}
.faqs-section .accordion .accordion-button,
.faqs-section .accordion .accordion-button:not(.collapsed) {
    color: var(--global-primary-white);
    background-color: var(--color-bg-transparent);
    box-shadow: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.faqs-section .accordion .accordion-button.collapsed::after,
.faqs-section .accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
}
.faqs-section .accordion .collapse:not(.show) {
    display: none;
}
.faqs-section .accordion .accordion-button.collapsed {
    color: var(--global-color-dark);
}
.faqs-section .accordion .collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .faqs-section .accordion .collapsing {
        transition: none;
    }
}
.faqs-section .accordion .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .faqs-section .accordion .collapsing.collapse-horizontal {
        transition: none;
    }
}
.faqs-section .accordion .accordion-button .icon {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: var(--global-color-primary);
}
.faqs-section .accordion .accordion-button .icon::after,
.faqs-section .accordion .accordion-button .icon::before {
    position: absolute;
    display: inline-block;
    background-color: var(--global-primary-white);
    content: "";
    width: 10px;
    height: 2px;
    width: 12px;
    height: 2px;
    top: 10px;
    left: 10px;
    transform: translate(-10px, -10px);
    transition: transform 0.5s ease;
    border-radius: 3px;
}
.faqs-section .accordion .accordion-button.collapsed .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(90deg);
}
.faqs-section .accordion .accordion-button.collapsed .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon {
    background-color: var(--color-primary-light-1);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon::after {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(180deg);
}
.faqs-section .accordion .accordion-button:not(.collapsed) .icon::before {
    transform: translate3d(4px, 9px, 0) translate(-10px, -10px) rotate(-180deg);
}
.faqs-section .accordion .accordion-collapse {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.faqs-section .accordion .accordion-body {
    padding: 0rem 8rem 1.5rem 3rem;
}
@media (max-width: 991px) {
    .faqs-section .accordion .accordion-body {
        padding: 0rem 3rem 1.5rem 3rem;
    }
}
.faqs-section .accordion .accordion-item p {
    color: var(--color-primary-light);
}
.faqs-section .accordion .accordion-item.shown {
    background-color: var(--global-color-primary);
}
.faqs-section .accordion .accordion-item.shown .accordion-button .icon::after,
.faqs-section .accordion .accordion-item.shown .accordion-button .icon::before {
    background-color: var(--global-color-primary);
}
.gallery-section {
    padding: 14rem 0rem 15rem 0rem;
}
@media (max-width: 991px) {
    .gallery-section {
        padding: 40px 50px 40px 50px;
    }
}
@media (max-width: 767px) {
    .gallery-section {
        padding: 40px 10px 40px 10px;
    }
}
.gallery-section .gallery .filter-wrapper {
    margin-bottom: 2.5rem;
    font-family: var(--font-family-spartan);
}
@media (max-width: 991px) {
    .gallery-section .gallery .filter-wrapper {
        margin-bottom: 0rem;
    }
}
.gallery-section .gallery .filter-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
@media (max-width: 991px) {
    .gallery-section .gallery .filter-list {
        display: none;
    }
}
.gallery-section .gallery .filter-list a {
    border-radius: 10px;
    color: var(--global-color-text-1);
    display: block;
    padding: 1.5rem 3rem 1rem 3rem;
    font-size: 1.4rem;
    line-height: 3rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}
.gallery-section .gallery .filter-list a.selected {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    font-weight: 700;
}
.gallery-section .gallery .filter-list a:not(.selected):hover,
.gallery-section .gallery .gallery .filter-list a:not(.selected):focus {
    background-color: var(--global-color-dark);
    color: var(--global-primary-white);
}
.gallery-section .gallery .selectify-wrapper {
    display: none;
}
@media (max-width: 991px) {
    .gallery-section .gallery .selectify-wrapper {
        display: block;
    }
}
.gallery-section .gallery .selectify-wrapper .selectify {
    max-width: 100%;
    position: relative;
    font-family: var(--font-family-spartan);
}
.gallery-section .gallery .selectify-wrapper .selectify .active-wrapper {
    position: relative;
}
.gallery-section
    .gallery
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    fill: var(--global-primary-white);
}
.gallery-section
    .gallery
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    fill: var(--global-color-text-1);
    pointer-events: none;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.gallery-section
    .gallery
    .selectify-wrapper
    .selectify
    .active-wrapper
    .arrow-icon
    svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    fill: inherit;
}
.gallery-section .gallery .selectify-wrapper .icon {
    margin-right: 1.3rem;
    font-size: 3rem;
    height: 3rem;
}
.gallery-section .gallery .selectify-wrapper .selectify .icon-wrapper {
    flex: 0.1;
}
.gallery-section .gallery .selectify-wrapper .selectify .active .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.gallery-section .gallery .selectify-wrapper .selectify .active {
    display: block;
    padding: 2rem;
    max-width: 100%;
    font-family: var(--font-family-spartan);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--global-color-secondary);
    border-radius: 10px;
    background-color: var(--color-primary-light-2);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.gallery-section .gallery .selectify-wrapper .active .button-list-text {
    fill: var(--color-black);
    color: var(--color-black);
}
.gallery-section .gallery .selectify-wrapper .selectify ul {
    position: absolute;
    top: 120%;
    opacity: 0;
    visibility: hidden;
    max-height: 50rem;
    width: 100%;
    border-radius: 10px;
    background-color: var(--color-primary-light-2);
    list-style: none;
    pointer-events: none;
    z-index: 999999;
    margin: 1rem 0 0 0;
    padding: 2rem 0;
    font-size: 1.8rem;
    color: var(--color-black);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.gallery-section .gallery .selectify-wrapper .selectify.shown ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.gallery-section .gallery .selectify-wrapper .selectify ul {
    background-color: var(--color-primary-light-2);
    color: var(--global-color-text-1);
}
.gallery-section .gallery .selectify-wrapper .selectify ul li {
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    color: var(--global-color-text-1);
    fill: var(--color-black);
    font-weight: 500;
    margin: 0 0.75rem;
    line-height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.gallery-section .gallery .selectify-wrapper ul li .icon-wrapper {
    flex: 0.1;
}
.gallery-section .gallery .selectify-wrapper .selectify ul li.selected {
    color: var(--color-black);
    background-color: var(--global-primary-white);
    font-weight: 600;
}
.gallery-section
    .gallery
    .selectify-wrapper
    .selectify
    li.selected
    .icon-wrapper {
    color: var(--global-color-primary);
    fill: var(--global-color-primary);
}
.gallery-section .gallery .gallery-item-wrapper {
    width: calc(50% - 3rem);
    margin: 15px;
}
@media (max-width: 991px) {
    .gallery-section .gallery .gallery-item-wrapper {
        width: 100%;
        margin: 0 0 1rem 0;
    }
}
.gallery-section .gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}
.gallery-section .gallery .gallery-item img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}
.gallery-section .gallery .gallery-item .hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 60%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-primary-light-3);
    transition: all 0.25s ease;
}
.gallery-section .gallery .gallery-item .hover svg {
    fill: var(--global-primary-white);
    height: 5rem;
}
.gallery-section .gallery .gallery-item:hover .hover {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.gallery-section .gallery .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.gallery-section .gallery .modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 5px;
}
.gallery-section .gallery .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--global-primary-white);
    height: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}
.gallery-section .gallery .close svg {
    width: 18px;
    height: auto;
    fill: var(--global-primary-white);
}
.gallery-section .gallery .prev,
.gallery-section .gallery .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 50px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.32);
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 1001;
    display: grid;
    transition: background-color 0.3s ease;
}
.gallery-section .gallery .prev svg,
.gallery-section .gallery .next svg {
    height: 25px;
    fill: var(--global-primary-white);
    align-self: center;
    justify-self: center;
}
.gallery-section .gallery .prev:hover,
.gallery-section .gallery .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.gallery-section .gallery .prev {
    left: 20px;
}
.gallery-section .gallery .next {
    right: 20px;
}
.gallery-section .gallery-3-col .gallery-item-wrapper {
    width: calc(33.33% - 3rem);
    margin: 15px;
}
@media (max-width: 991px) {
    .gallery-section .gallery-3-col .gallery-item-wrapper {
        width: 100%;
        margin: 15px 0;
    }
}
.blog-section {
    padding: 14rem 0rem 15rem 0rem;
}
@media (max-width: 991px) {
    .blog-section {
        padding: 40px 50px 50px 50px;
    }
}
@media (max-width: 767px) {
    .blog-section {
        padding: 40px 10px 50px 10px;
    }
}
.blog-section .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-top: 9.2rem;
}
@media (max-width: 991px) {
    .blog-section .pagination {
        margin-top: 3rem;
    }
}
.blog-section .pagination .page-numbers {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.blog-section .pagination li,
.blog-section .pagination span,
.blog-section .pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 4.4rem;
    text-decoration: none;
    height: 4.4rem;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--font-family-spartan);
    color: var(--global-color-text-1) !important;
    fill: var(--global-color-text-1);
    background-color: var(--color-primary-light-2);
    transition: all 0.25s ease;
}
.blog-section .pagination li *.current {
    color: var(--global-primary-white) !important;
    background-color: var(--global-color-secondary);
}
.blog-section .pagination li *.next {
    background-color: var(--global-color-primary);
    fill: var(--global-primary-white);
    transition: all 0.25s ease;
}
.blog-section .pagination li > *:not(.prev):not(.next) {
    padding-top: 0.5rem;
}
.blog-section .pagination li svg {
    width: 1rem;
    transition: all 0.25s ease;
}
.blog-section .pagination li:hover a,
.blog-section .pagination li:focus a {
    fill: var(--global-primary-white);
    color: var(--global-primary-white) !important;
    background-color: var(--global-color-secondary);
}
.blog-section .news-card-wrapper {
    padding-top: 0;
}
.blog-section .sub--heading {
    font-size: var(--title-lg-font-size);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    line-height: 1.5;
    color: var(--global-color-secondary);
    margin-bottom: 2.5rem;
}
.blog-section .sub--heading::after {
    content: "";
    width: 4.3rem;
    height: 0.2rem;
    display: block;
    margin-top: 1rem;
    background-color: var(--global-color-primary);
}
.blog-section .blog-section-wrapper {
    display: grid;
    grid-template-columns: 3fr 1.5fr;
    gap: 3rem;
}
@media (max-width: 991px) {
    .blog-section .blog-section-wrapper {
        grid-template-columns: auto;
    }
}
.blog-section .blog-section-wrapper .news-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
    .blog-section .blog-section-wrapper .news-card-wrapper {
        grid-template-columns: auto;
    }
}
.blog-section .blog-section-wrapper .pagination .page-numbers {
    margin-left: 0;
}
.blog-section .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.blog-section .blog-sidebar .search {
    position: relative;
    border-radius: 10px;
    background-color: var(--color-primary-light-2);
}
.blog-section .blog-sidebar .search input {
    height: 6rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--global-color-text-1);
    border: 0;
    width: 100%;
    padding: 0 5rem 0 3rem;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.blog-section .blog-sidebar .search input::placeholder {
    color: var(--color-paragraph-1);
    font-size: 1.6rem;
    font-weight: 500;
}
.blog-section .blog-sidebar .search button {
    border: none;
    outline: none;
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 3rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--global-color-primary);
}
.blog-section .blog-sidebar .search button svg {
    height: 1.6rem;
    fill: var(--global-color-primary);
}
.blog-section .blog-sidebar .categories {
    background-color: var(--color-primary-light-2);
    padding: 3.8rem;
    border-radius: 10px;
}
.blog-section .blog-sidebar .categories ul {
    list-style: none;
    padding: 0;
}
.blog-section .blog-sidebar .categories li {
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font-family-spartan);
    font-size: var(--btn-font-size);
    font-weight: 500;
    color: var(--global-color-text-1);
}
.blog-section .blog-sidebar .categories li a {
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    color: var(--global-color-secondary);
    display: flex;
    line-height: 3rem;
    padding: 1.2rem 0;
    flex: 1;
    position: relative;
    text-transform: capitalize;
    padding-right: 1rem;
    transition: all 0.25s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(0, 0, 0, 0);
}
.blog-section .blog-sidebar .categories li a:hover {
    color: var(--global-color-primary);
    text-decoration-color: var(--global-color-primary);
}
.blog-section .blog-sidebar .categories li:nth-child(n + 2) {
    border-top: 1px solid var(--color-grey);
}
.blog-section .blog-sidebar .blog-sidebar-form {
    background-color: var(--global-color-secondary);
    padding: 3.8rem;
    border-radius: 10px;
}
.blog-section .blog-sidebar .blog-sidebar-form .sub--heading {
    color: var(--global-primary-white);
    text-align: center;
    font-size: var(--title-font-size);
}
.blog-section .blog-sidebar .blog-sidebar-form .sub--heading::after {
    margin: 1rem auto 0;
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group {
    position: relative;
    width: 100%;
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="text"],
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="email"],
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="tel"],
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: var(--global-primary-white);
    border-radius: 2.5px;
    margin-top: 2rem;
    border: 0;
    outline: none;
    border-bottom: 1px solid var(--global-color-text-2);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="text"]:focus,
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="email"]:focus,
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    input[type="tel"]:focus,
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    textarea:focus {
    border-bottom: 1px solid var(--global-primary-white);
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group
    .error-icon {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 1.2rem;
    width: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group:last-child {
    grid-column: 3/-3;
}
@media (max-width: 992px) {
    .blog-section
        .blog-sidebar
        .blog-sidebar-form
        .subscribe-form
        .form-wrapper
        .input-group:last-child {
        grid-column: auto;
    }
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .form-wrapper
    .input-group.error
    .error-icon {
    opacity: 1;
    left: 95%;
}
.blog-section .blog-sidebar .blog-sidebar-form .subscribe-form .submit-btn {
    border: none;
    outline: none;
    border-radius: 10px;
    margin-top: 3rem;
    width: 100%;
    display: inline-block;
    padding: 2.3rem;
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    font-family: var(--font-family-spartan);
    font-size: var(--btn-font-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: normal;
    cursor: pointer;
    transition: all 0.25s ease, color 0.1s ease;
}
.blog-section
    .blog-sidebar
    .blog-sidebar-form
    .subscribe-form
    .submit-btn:hover {
    color: var(--global-color-secondary);
    background-color: var(--global-primary-white);
}
.blog-section .blog-sidebar .blog-sidebar-form .alert {
    margin-top: 2em;
    padding: 2rem 2rem 1.7rem 2rem;
    border-radius: 10px;
    display: none;
    text-align: left;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-20px);
}
.blog-section .blog-sidebar .blog-sidebar-form .alert.error {
    background-color: var(--color-warning);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.blog-section .blog-sidebar .blog-sidebar-form .alert.success {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    transform: translateY(0px);
}
.blog-section .blog-sidebar .post-block {
    background-color: var(--color-primary-light-2);
    padding: 3.8rem;
    border-radius: 10px;
}
.blog-section .blog-sidebar .post-block ul {
    list-style: none;
    padding: 0;
}
.blog-section .blog-sidebar .post-block li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.blog-section .blog-sidebar .post-block li a {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-dark);
    padding: 1.2rem 0;
    flex: 1;
    position: relative;
    text-transform: capitalize;
    padding-right: 1rem;
    transition: all 0.25s ease;
}
.blog-section .blog-sidebar .post-block li .post-img {
    width: 7rem;
    height: 7rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.blog-section .blog-sidebar .post-block li .hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 60%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary-light-3);
    transition: all 0.25s ease;
}
.blog-section .blog-sidebar .post-block li .hover svg {
    fill: var(--global-primary-white);
    height: 2.5rem;
}
.blog-section .blog-sidebar .post-block li h6 {
    font-family: var(--font-family-spartan);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--global-color-secondary);
    line-height: 2.6rem;
    margin-bottom: 0;
}
.blog-section .blog-sidebar .post-block li:hover .hover {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.blog-section .blog-sidebar .post-block li:nth-child(n + 2) {
    border-top: 1px solid var(--color-grey);
}
.blog-section .blog-sidebar .archives {
    background-color: var(--color-primary-light-2);
    padding: 3.8rem;
    border-radius: 10px;
}
.blog-section .blog-sidebar .archives ul {
    list-style: none;
    padding: 0;
}
.blog-section .blog-sidebar .archives li {
    transition: all 0.25s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--font-family-spartan);
    font-size: var(--btn-font-size);
    font-weight: 500;
    color: var(--global-color-text-1);
}
.blog-section .blog-sidebar .archives li a {
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    color: var(--global-color-secondary);
    display: block;
    line-height: 3rem;
    padding: 1.2rem 0;
    flex: 1;
    position: relative;
    text-transform: uppercase;
    padding-right: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
    text-underline-offset: 2px;
    text-decoration-color: rgba(0, 0, 0, 0);
}
.blog-section .blog-sidebar .archives li a sup {
    font-weight: 600;
    margin-left: 0.4rem;
    font-size: 1rem;
}
.blog-section .blog-sidebar .archives li a:hover {
    color: var(--global-color-primary);
    text-decoration-color: var(--global-color-primary);
}
.blog-section .blog-sidebar .archives li a:hover span {
    text-decoration: underline;
}
.blog-section .blog-sidebar .archives li:nth-child(n + 2) {
    border-top: 1px solid var(--color-grey);
}
.blog-detail {
    padding: 15rem 0;
}
@media (max-width: 991px) {
    .blog-detail {
        padding: 50px;
    }
}
@media (max-width: 767px) {
    .blog-detail {
        padding: 50px 10px;
    }
}
.blog-detail .blog-detail-thumbnail {
    width: 78%;
    margin: auto;
    height: 45.7rem;
    margin-bottom: 5rem;
}
@media (max-width: 991px) {
    .blog-detail .blog-detail-thumbnail {
        width: 100%;
        height: 30rem;
    }
}
.blog-detail .blog-detail-thumbnail img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.blog-detail .blog-detail-thumbnail .details {
    margin-left: 2rem;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-top: -3rem;
}
.blog-detail .blog-detail-thumbnail .details .date {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    font-family: var(--font-family-spartan);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.4rem;
    border-radius: 10px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 84.3px;
}
.blog-detail .blog-detail-thumbnail .details .date a {
    color: inherit;
    display: block;
    text-decoration: none;
    text-align: center;
}
.blog-detail .blog-detail-thumbnail .details .date a .wrapper {
    aspect-ratio: 1/1;
    padding: 1.9rem 2.1rem 1rem 2.1rem;
}
.blog-detail .blog-detail-thumbnail .details .date a span {
    display: block;
}
.blog-detail .blog-detail-thumbnail .details .date a span.day {
    font-size: 2.4rem;
}
.blog-detail .blog-detail-thumbnail .details .date a span.day {
    font-size: 2.4rem;
}
.blog-detail .blog-detail-thumbnail .details h6 {
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--global-color-text-1);
    line-height: 2rem;
}
.blog-detail .border-bottom {
    border-bottom: 1px solid var(--border-color);
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.blog-detail .project-discription {
    font-weight: 700;
    font-size: var(--title-font-size);
    color: var(--global-color-secondary);
    line-height: 34px;
}
.blog-detail .about-list {
    margin-top: 3rem;
    margin-bottom: 3rem;
    list-style: none;
}
.blog-detail .about-list .list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5.5px 0;
}
.blog-detail .about-list .list-item .list-icon {
    min-height: 20px;
    max-width: 20px;
    fill: var(--global-color-primary);
    margin-right: 7.5px;
}
.blog-detail .about-list .list-item .list-title {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    color: var(--global-color-secondary);
    font-weight: 600;
    line-height: 18px;
    padding-left: 20px;
    margin: 6px 0px 0px 0px;
    line-height: 30px;
}
.blog-detail .project-swiper-container {
    margin-top: 3.3rem;
    margin-bottom: 5rem;
}
.blog-detail .project-swiper-container .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.blog-detail .project-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-detail .project-swiper-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 991px) {
    .blog-detail .project-swiper-container .swiper-slide img {
        height: 30rem;
    }
}
.blog-detail .primary--heading {
    padding-top: 5rem;
}
.blog-detail .primary--heading::after {
    display: none;
}
@media (max-width: 991px) {
    .blog-detail .primary--heading {
        font-size: 3rem;
        line-height: 4rem;
    }
}
.blog-detail .sub-heading {
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-size: var(--tab-title-size);
    font-weight: 600;
    margin-bottom: 3rem;
}
.blog-detail .post-tags {
    margin-top: 2rem;
    font-family: var(--font-family-spartan);
}
.blog-detail .post-tags h6 {
    font-size: 3rem;
    line-height: 5rem;
    font-weight: 600;
}
.blog-detail .post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin-top: 1rem;
    list-style: none;
}
.blog-detail .post-tags li {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.5rem;
    background-color: var(--color-primary-light-2);
    color: var(--global-color-secondary);
    border-radius: 5px;
    text-decoration: none;
    list-style: none;
    transition: all 0.25s ease;
}
.blog-detail .post-tags li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
    color: inherit;
    text-decoration: none;
}
.blog-detail .post-tags li:hover {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
}
.blog-detail .blog-detail-wrapper {
    width: 62%;
    margin: auto;
}
@media (max-width: 991px) {
    .blog-detail .blog-detail-wrapper {
        width: 100%;
        margin: auto;
    }
}
.blog-detail .blog-detail-wrapper .margin-top {
    margin-top: 3rem;
}
.blog-related-section {
    background-image: url(5edfdff550371d4d810d.jpg);
    padding: 14.5rem 0;
    background-color: var(--color-primary-light-2);
}
@media (max-width: 991px) {
    .blog-related-section {
        padding: 43px 50px 40px 50px;
    }
}
@media (max-width: 767px) {
    .blog-related-section {
        padding: 43px 10px 40px 10px;
    }
}
.blog-related-section .news-card .news-img-box {
    width: 100%;
    max-width: 100%;
    height: 29.6rem;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.blog-related-section .news-card .news-img-box .news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: all 0.25s ease;
}
.blog-related-section .news-card .news-content {
    padding: 0 2rem;
}
.blog-related-section .news-card .news-content a {
    text-decoration: none;
}
.blog-related-section .news-card .news-content a span {
    display: block;
}
.blog-related-section .news-card .news-content .details {
    display: flex;
    align-items: flex-end;
    margin-top: -3rem;
    gap: 2rem;
    transform: scale(1);
    transition: all 0.25s ease;
}
.blog-related-section .news-card .news-content .details .date {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
    font-size: var(--paragraph-font-size);
    font-weight: 600;
    line-height: 2.4rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 84.3px;
}
.blog-related-section .news-card .news-content .details .date .wrapper {
    aspect-ratio: 1/1;
    padding: 1.9rem 2.1rem 1rem 2.1rem;
}
.blog-related-section .news-card .news-content .details .date .wrapper .day {
    font-size: var(--title-lg-font-size);
    font-family: var(--font-family-spartan);
    color: var(--global-primary-white);
}
.blog-related-section .news-card .news-content .details .date .wrapper .month {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--paragraph-font-size);
    font-family: var(--font-family-spartan);
    color: var(--global-primary-white);
}
.blog-related-section .news-card .news-content .details .date .hover {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    fill: inherit;
    background-color: inherit;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-related-section .news-card .news-content .details .date .hover svg {
    height: 4rem;
    width: 4rem;
    fill: inherit;
}
.blog-related-section .news-card .news-content .details h6 {
    font-size: var(--paragraph-x-sm-size);
    font-weight: 500;
    color: var(--global-color-text-1);
    line-height: 2rem;
    font-family: var(--font-family-spartan);
}
.blog-related-section .news-card .news-content h4 {
    text-align: center;
    font-family: var(--font-family-spartan);
    font-size: var(--title-lg-font-size);
    font-weight: 600;
    line-height: 4rem;
    color: var(--global-color-secondary);
    margin-top: 1.4rem;
    letter-spacing: -0.1rem;
    word-break: break-word;
}
@media (max-width: 991px) {
    .blog-related-section .news-card .news-content h4 {
        font-size: var(--title-font-size);
        line-height: 3.5rem;
    }
}
.blog-related-section .news-card:hover .news-img-box .news-img {
    transform: scale(1.1);
}
.blog-related-section .news-card:hover .news-content .details {
    transform: translateX(20px) scale(1);
}
.blog-related-section .news-card:hover .news-content .details .date .hover {
    top: 0;
}
.blog-related-section .blog-swiper-block .slider-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6rem;
}
@media (max-width: 991px) {
    .blog-related-section .blog-swiper-block .slider-header {
        flex-direction: column;
    }
}
.blog-related-section .blog-swiper-block .team-slider-btns {
    display: flex;
}
.blog-related-section .blog-swiper-block .team-slider-btns .slider-btn {
    cursor: pointer;
    padding: 1.4rem;
    border-radius: 50%;
    background-color: var(--global-primary-white);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 3rem;
    aspect-ratio: 1/1;
    min-width: 4.4rem;
    min-height: 4.4rem;
    flex-basis: min-content;
}
.blog-related-section .blog-swiper-block .team-slider-btns .slider-btn svg {
    height: 2.2rem;
    color: var(--global-color-text-1);
    fill: var(--global-color-text-1);
    fill: inherit;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.blog-related-section .blog-swiper-block .team-slider-btns .slider-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-origin: center center;
    background-color: var(--global-color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s ease;
}
.blog-related-section
    .blog-swiper-block
    .team-slider-btns
    .slider-btn:hover
    svg,
.blog-related-section
    .blog-swiper-block
    .team-slider-btns
    .slider-btn:active
    svg {
    color: var(--global-primary-white);
    fill: var(--global-primary-white);
}
.blog-related-section
    .blog-swiper-block
    .team-slider-btns
    .slider-btn:hover::after,
.blog-related-section
    .blog-swiper-block
    .team-slider-btns
    .slider-btn:active::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.blog-related-section
    .blog-swiper-block
    .team-slider-btns
    .slider-btn:first-child {
    margin-right: 2rem;
}
@media (max-width: 991px) {
    .blog-related-section .blog-swiper-block.desktop {
        display: none;
    }
}
.blog-related-section .blog-related-cards.mobile {
    display: none;
}
@media (max-width: 991px) {
    .blog-related-section .blog-related-cards.mobile {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}
.blog-comment-wrapper {
    max-width: 62%;
    margin: auto;
}
@media (max-width: 991px) {
    .blog-comment-wrapper {
        max-width: 100%;
    }
}
.comments-area {
    padding-top: 14.3rem;
}
@media (max-width: 991px) {
    .comments-area {
        padding: 50px 50px 44px 50px;
    }
}
@media (max-width: 767px) {
    .comments-area {
        padding: 50px 10px 44px 10px;
    }
}
.comments-area .comments-title {
    font-size: 3.4rem;
    font-weight: 600;
    margin-bottom: 4.5rem;
}
.comments-area .comment-list {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-spartan);
}
.comments-area .comment-list .comment {
    position: relative;
}
.comments-area .comment-list .comment:not(:first-child) {
    margin-top: 5rem;
}
.comments-area .comment-list .parent--comment {
    display: flex;
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 3.9rem;
}
@media (max-width: 991px) {
    .comments-area .comment-list .parent--comment {
        padding-bottom: 0.6rem;
    }
}
@media (max-width: 500px) {
    .comments-area .comment-list .parent--comment {
        display: block;
    }
}
.comments-area .comment-list .comment--avatar {
    margin-right: 3.8rem;
    border-radius: 1rem;
}
.comments-area .comment-list .comment--avatar img {
    border-radius: inherit;
}
@media (max-width: 500px) {
    .comments-area .comment-list .comment--avatar {
        width: 100%;
        margin-bottom: 2rem;
    }
}
.comments-area .comment-list .comment--content {
    width: 85%;
}
.comments-area .comment .comment-inner-wrapper {
    margin-bottom: 2rem;
}
.comments-area .comment .comment-inner-wrapper a {
    text-decoration: none;
}
.comments-area .comment .comment-inner-wrapper .name {
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: 600;
    color: var(--global-color-secondary);
    letter-spacing: normal;
    position: relative;
    width: max-content;
    max-width: 70%;
    transition: all 0.25s ease;
    text-decoration-color: var(--global-color-primary) !important;
}
.comments-area .comment .comment-inner-wrapper .name:hover {
    text-decoration: underline !important;
    text-decoration-color: var(--global-color-primary) !important;
    text-decoration-thickness: 2px !important;
}
.comments-area .comment .comment-inner-wrapper .date {
    font-size: 1.2rem;
    line-height: initial;
    font-weight: 500;
    color: var(--global-color-text-1);
    letter-spacing: initial;
    background: none;
    text-align: left;
    margin-top: 0.7rem;
}
.comments-area .comment--content > *:nth-child(n + 2) {
    margin-top: 1.5rem;
}
.comments-area .comment-list .comment--content .reply-button {
    position: absolute;
    top: 5px;
    right: 10px;
    margin-top: 0;
}
.comments-area .reply-button a {
    display: inline-block;
    text-decoration: none;
    padding: 1.7rem 1.8rem 1.3rem 1.8rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    border-radius: 5px;
    background-color: var(--color-primary-light-2);
    color: var(--global-color-secondary) !important;
    transition: all 0.25s ease;
}
.comments-area .reply-button a:hover {
    background-color: var(--global-color-primary);
    color: var(--global-primary-white) !important;
}
.comments-area .comment-list .comment .comment .parent--comment {
    padding-left: 15%;
}
@media (max-width: 991px) {
    .comments-area .comment-list .comment .comment .parent--comment {
        padding-left: 2.5%;
    }
}
@media (max-width: 991px) {
    .comments-area .comment-list .comment .comment {
        margin-left: 3.5%;
    }
}
.comment-form--wrapper {
    padding: 7rem 0 14rem 0;
}
@media (max-width: 991px) {
    .comment-form--wrapper {
        padding: 0 50px 40px 50px;
    }
}
@media (max-width: 767px) {
    .comment-form--wrapper {
        padding: 0 10px 40px 10px;
    }
}
.comment-form--wrapper .primary--heading {
    font-size: 3.4rem;
}
.comment-form--wrapper .comment-form .form-floating {
    height: 100%;
    position: relative;
}
.comment-form--wrapper .comment-form .form-floating .form-control {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--global-color-text-1);
    padding: 1rem 0.75rem;
    line-height: 1.25;
    border-radius: none;
    width: 100%;
    border: 0;
    outline: nonee;
    border-bottom: 1px solid var(--color-grey);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.comment-form--wrapper .comment-form .form-floating .form-control:focus {
    box-shadow: none;
    border-color: var(--global-color-primary);
    outline: none;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.comment-form--wrapper .comment-form .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem 0.75rem;
    pointer-events: none;
    color: var(--global-color-text-1);
    border: 1px solid rgba(0, 0, 0, 0);
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.comment-form--wrapper .comment-form .comment-form .textarea-group {
    margin-top: 2rem;
}
.comment-form--wrapper .comment-form .comment-form .textarea-group textarea {
    width: 100%;
    height: 100%;
    height: 11rem;
    resize: none;
}
.comment-form--wrapper .comment-form .comment-form .cookies-consent {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    position: relative;
    gap: 1rem;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}
.comment-form--wrapper .comment-form .comment-form .cookies-consent .paragraph {
    font-family: var(--font-family-spartan);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--global-color-text-1);
    line-height: initial;
    border: none;
}
.comment-form--wrapper
    .comment-form
    .comment-form
    .cookies-consent
    input[type="checkbox"] {
    width: 2.2rem;
    height: 2.2rem;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid var(--color-grey);
}
.comment-form--wrapper .comment-form .comment-form .flex-input {
    display: flex;
    gap: 2rem;
}
.comment-form--wrapper .comment-form .comment-form .flex-input .field-group {
    width: 100%;
}
@media (max-width: 991px) {
    .comment-form--wrapper .comment-form .comment-form .flex-input {
        flex-direction: column;
    }
}
.comment-form--wrapper .comment-form .comment-submit {
    display: inline-block;
    background-color: var(--global-color-primary);
    color: var(--global-primary-white) !important;
    fill: var(--global-primary-white) !important;
    border-radius: 1rem;
    border: none;
    outline: none;
    text-transform: uppercase;
    padding: 2.3rem 5rem;
    font-family: var(--font-family-spartan);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: normal;
    transition: all 0.25s ease, color 0.1s ease;
    margin-top: 2.6rem;
}
.comment-form--wrapper .comment-form .comment-submit:hover,
.comment-form--wrapper .comment-form .comment-submit:focus {
    background-color: var(--global-color-secondary);
    color: var(--global-primary-white);
}
@media (max-width: 991px) {
    .comment-form--wrapper .comment-form .comment-submit {
        width: 100%;
    }
}
.comment-form--wrapper .comment-form .form-floating > .form-control ~ label,
.comment-form--wrapper .comment-form .form-floating > .form-control ~ label {
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}
.comment-form--wrapper
    .comment-form
    .form-floating
    > .form-control:focus
    ~ label {
    transform: scale(0.85) translateY(-2rem) translateX(0.15rem);
    top: 0;
    opacity: 0.65;
}
.comment-form--wrapper .comment-form-container {
    max-width: 62%;
    margin: auto;
}
@media (max-width: 991px) {
    .comment-form--wrapper .comment-form-container {
        max-width: 100%;
    }
}
.project-detail {
    padding: 15rem 0;
}
@media (max-width: 991px) {
    .project-detail {
        padding: 50px;
    }
}
@media (max-width: 767px) {
    .project-detail {
        padding: 50px 10px;
    }
}
.project-detail .project-detail-thumbnail {
    width: 78%;
    margin: auto;
    height: 45.7rem;
    margin-bottom: 5rem;
}
@media (max-width: 991px) {
    .project-detail .project-detail-thumbnail {
        width: 100%;
        height: 30rem;
    }
}
.project-detail .project-detail-thumbnail img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.project-detail .border-bottom {
    border-bottom: 1px solid var(--border-color);
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.project-detail .project-discription {
    font-weight: 700;
    font-size: var(--title-font-size);
    color: var(--global-color-secondary);
}
.project-detail .about-list {
    margin-top: 3rem;
    margin-bottom: 3rem;
    list-style: none;
}
.project-detail .about-list .list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5.5px 0;
}
.project-detail .about-list .list-item .list-icon {
    min-height: 20px;
    max-width: 20px;
    fill: var(--global-color-primary);
    margin-right: 7.5px;
}
.project-detail .about-list .list-item .list-title {
    font-family: var(--font-family-spartan);
    font-size: var(--title-sm-size);
    color: var(--global-color-secondary);
    font-weight: 600;
    line-height: 18px;
    padding-left: 20px;
    margin: 6px 0px 0px 0px;
    line-height: 30px;
}
.project-detail .project-swiper-container {
    margin-top: 3.3rem;
    margin-bottom: 5rem;
}
.project-detail .project-swiper-container .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.project-detail .project-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-detail .project-swiper-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 991px) {
    .project-detail .project-swiper-container .swiper-slide img {
        height: 30rem;
    }
}
.project-detail .primary--heading {
    font-size: var(--heading-sm-font-size);
}
@media (max-width: 991px) {
    .project-detail .primary--heading {
        font-size: 3rem;
        line-height: 4rem;
    }
}
.project-detail .sub-heading {
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-size: var(--tab-title-size);
    font-weight: 600;
    margin-bottom: 3rem;
}
.project-detail .project-detail-wrapper {
    width: 56%;
    margin-left: 10.5%;
}
@media (max-width: 991px) {
    .project-detail .project-detail-wrapper {
        width: 100%;
        margin: 0;
    }
}
.project-detail .project-detail-wrapper .margin-top {
    margin-top: 3rem;
}
.project-detail .project-detail-sidebar {
    display: inline-block;
    margin-top: 11.5rem;
}
@media (max-width: 991px) {
    .project-detail .project-detail-sidebar {
        margin-top: 0;
    }
}
.project-detail .project-detail-sidebar .detail {
    line-height: 30px;
}
.project-detail .project-detail-sidebar .detail span.title {
    font-size: var(--title-sm-size);
    font-family: var(--font-family-spartan);
    font-weight: 600;
    color: var(--global-color-secondary);
}
.project-detail .project-detail-sidebar .detail span:not(.title) {
    font-size: var(--paragraph-font-size);
    font-family: var(--font-family-spartan);
    font-weight: 500;
    color: var(--global-color-text-1);
}
.project-detail .project-main-wrapper {
    display: flex;
    gap: 3rem;
}
@media (max-width: 991px) {
    .project-detail .project-main-wrapper {
        display: block;
    }
}
header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    transition: all 0.25s ease;
}
@media (max-width: 991px) {
    header .header-wrapper {
        height: 70px;
    }
}
header .header-inner-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}
header.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: var(--nav-border-color);
    transition: all 0.25s ease;
    padding: 0 5rem;
}
@media (max-width: 991px) {
    header.sticky-nav {
        top: 0;
        padding: 0 5rem;
    }
}
@media (max-width: 767px) {
    header.sticky-nav {
        top: 0;
        padding: 0 2.5rem;
    }
}
header.home-2-header.sticky-nav {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(0, 0, 0, 0);
}
header.home-2-header.sticky-nav
    .navigation-menu.desktop
    > .menu-item-has-children
    > a
    .icon {
    fill: #8dd1fe;
}
header.home-2-header.sticky-nav {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(0, 0, 0, 0);
}
header.home-2-header.sticky-nav
    .navigation-menu.desktop
    > .menu-item-has-children
    > a
    .icon.white-fill {
    fill: var(--global-primary-white);
}
header.home-2-header.scrolled
    .navigation-menu.desktop
    > .menu-item-has-children
    > a
    .icon {
    fill: var(--global-color-primary);
}
header.home-2-header.scrolled
    .navigation-menu.desktop
    > .menu-item-has-children
    > a
    .icon.white-fill {
    fill: var(--global-color-primary);
}
header.home-3-header.sticky-nav {
    top: 44px;
}
@media (max-width: 991px) {
    header.home-3-header.sticky-nav {
        top: 0;
    }
}
header.home-3-header.scrolled {
    top: 0px;
}
@media (max-width: 991px) {
    header.home-3-header.scrolled {
        top: 0;
    }
}
header.home-4-header.sticky-nav {
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(0, 0, 0, 0);
}
header.home-4-header.sticky-nav .desktop-wrapper .navigation-menu > li > a {
    color: var(--global-color-secondary);
}
header.home-4-header.sticky-nav .bars .bar {
    background-color: var(--global-color-primary);
}
header.home-4-header.scrolled .desktop-wrapper .navigation-menu > li > a {
    color: var(--global-primary-white);
}
header.home-4-header.scrolled .bars .bar {
    background-color: var(--global-primary-white);
}
header .logo {
    position: relative;
}
header .logo .show-sticky {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}
header .logo .hide-sticky {
    transition: all 0.25s ease;
}
header.scrolled {
    top: 0;
    background-color: var(--global-color-secondary);
    border-style: solid;
    border-color: rgba(2, 1, 1, 0);
}
header.scrolled .header-wrapper {
    height: 70px;
}
@media (max-width: 991px) {
    header.scrolled .header-wrapper {
        height: 50px;
    }
}
header.scrolled .logo .show-sticky {
    opacity: 1;
    visibility: visible;
}
header.scrolled .logo .hide-sticky {
    opacity: 0;
    visibility: hidden;
}
header .hamburger.direction-left {
    display: none;
}
@media (max-width: 991px) {
    header .hamburger.direction-left {
        display: block;
    }
}
.navigation-menu {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    z-index: 9999;
}
.navigation-menu-wrapper {
    height: 100%;
    z-index: 9999;
}
.navigation-menu ul {
    margin: 0;
}
.navigation-menu > li > a {
    padding: 0 25px;
}
.navigation-menu > li > a::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.25s ease;
}
.navigation-menu > li > a:hover::after {
    width: 100%;
    opacity: 1;
}
.navigation-menu li {
    height: 100%;
    list-style: none;
}
.navigation-menu a {
    font-family: var(--font-family-spartan);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: var(--global-primary-white);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    outline: 0;
    position: relative;
}
.navigation-menu a .icon {
    height: 14px;
    transition: all 0.25s ease;
}
.navigation-menu a .icon svg {
    vertical-align: top;
}
.navigation-menu.navigation-menu-2 a {
    color: var(--global-primary-white);
}
.navigation-menu .menu-item-has-children {
    position: relative;
}
.navigation-menu .menu-item-has-children .active-tab {
    color: var(--global-primary-white);
}
.navigation-menu .sub-menu {
    position: absolute;
    top: 100%;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    padding: 2rem 0;
    border-radius: 1rem;
    min-width: 28rem;
    margin-top: 15px;
    margin-left: -25px;
}
.navigation-menu .sub-menu li {
    padding: 0 1rem;
}
.navigation-menu .sub-menu li a {
    opacity: 0;
    visibility: hidden;
    padding: 1.4rem 3rem 1.4rem 3rem;
    line-height: 2.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--global-color-text-1);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.navigation-menu .sub-menu li:hover > a,
.navigation-menu .sub-menu li.current-menu-item > a {
    background-color: var(--color-primary-light-2);
    color: var(--global-color-secondary);
}
.navigation-menu .sub-menu li:hover > a svg,
.navigation-menu .sub-menu li.current-menu-item > a svg {
    fill: var(--primary-white);
}
.navigation-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 10px);
    background-color: var(--global-primary-white);
    border-radius: 10px;
    box-shadow: inset 25px 0px 25px -25px rgba(0, 0, 0, 0.2),
        0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    margin-left: 0;
}
.navigation-menu .sub-menu .sub-menu a {
    color: var(--global-color-text-1);
}
.navigation-menu .sub-menu .sub-menu li:hover > a,
.navigation-menu .sub-menu .sub-menu li.current-menu-item > a {
    background-color: var(--color-primary-light-2);
    color: var(--global-color-secondary);
}
.navigation-menu .sub-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
}
.navigation-menu > .menu-item-has-children {
    position: relative;
}
.navigation-menu > .menu-item-has-children::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
}
.navigation-menu > .menu-item-has-children .menu-item-has-children {
    position: static;
}
.home-2-menu a:link,
.home-2-menu a:visited {
    color: var(--grey);
}
.home-2-menu a:active,
.home-2-menu a:hover {
    color: var(--grey-black);
}
.nav-dropdown-bg {
    position: fixed;
    background-color: var(--global-primary-white);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    transform-origin: center center;
    border-radius: 1rem;
    pointer-events: none;
    display: block;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.nav-dropdown-bg-icon,
.nav-dropdown-bg .icon {
    position: fixed;
    top: -16px;
    left: 50px;
    z-index: inherit;
    transform: scale(1);
    display: block;
    pointer-events: none;
}
.nav-dropdown-bg-icon svg,
.nav-dropdown-bg .icon svg {
    width: 30px;
    height: 30px;
    fill: var(--global-primary-white);
}
.nav-dropdown-bg-icon {
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}
.nav-dropdown-bg .icon {
    opacity: 0;
}
.header-wrapper {
    z-index: 9999;
}
@media (max-width: 991px) {
    .header-wrapper.desktop {
        display: none;
    }
}
@media (min-width: 991px) {
    .header-wrapper.mobile {
        display: none;
    }
}
.mobile.navigation-menu {
    display: block;
    position: relative;
    padding: 0;
    --item-font-size: 18px;
    --item-font-weight: 500;
    --item-line-height: 60px;
    --item-color-normal: var(--color-paragraph-1);
}
.mobile.navigation-menu li {
    width: 100%;
    height: auto;
    display: block;
}
.mobile.navigation-menu li a {
    padding-right: 15px;
    padding-left: 0;
}
.mobile.navigation-menu a {
    font-size: var(--item-font-size);
    font-weight: var(--item-font-weight);
    line-height: var(--item-line-height);
    color: var(--item-color-normal);
}
.mobile.navigation-menu li:hover,
.mobile.navigation-menu li:focus,
.mobile.navigation-menu li:active,
.mobile.navigation-menu li.current-menu-item,
.mobile.navigation-menu li.current-menu-ancestor {
    color: var(--global-primary-white);
}
.mobile.navigation-menu li:hover > a,
.mobile.navigation-menu li:focus > a,
.mobile.navigation-menu li:active > a,
.mobile.navigation-menu li.current-menu-item > a,
.mobile.navigation-menu li.current-menu-ancestor > a {
    background-color: rgba(0, 0, 0, 0);
    color: inherit !important;
}
.mobile.navigation-menu li:hover > a .icon svg,
.mobile.navigation-menu li:focus > a .icon svg,
.mobile.navigation-menu li:active > a .icon svg,
.mobile.navigation-menu li.current-menu-item > a .icon svg,
.mobile.navigation-menu li.current-menu-ancestor > a .icon svg {
    fill: var(--global-color-primary) !important;
}
.mobile.navigation-menu .icon {
    fill: var(--item-color-normal) !important;
    width: 10px;
    height: 15px;
    pointer-events: none;
}
.mobile.navigation-menu .icon svg {
    width: inherit;
    height: inherit;
}
.mobile.navigation-menu .menu-item-has-children {
    position: static;
}
.mobile.navigation-menu .sub-menu {
    top: 0;
    width: 100%;
    left: 100%;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    min-width: 100%;
}
.mobile.navigation-menu .sub-menu li a {
    padding: 0;
    font-size: var(--item-font-size);
    font-weight: var(--item-font-weight);
    line-height: var(--item-line-height);
    color: var(--item-color-normal);
}
.mobile.navigation-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}
.mobile.navigation-menu .sub-menu .back-button a {
    justify-content: initial;
    align-items: center;
    color: var(--global-primary-white);
    display: flex;
    align-items: center;
}
.mobile.navigation-menu .sub-menu .back-button a .icon {
    transform: rotate(180deg);
    fill: var(--global-color-primary) !important;
    margin-right: 0.8rem;
}
.mobile.navigation-menu .sub-menu li:hover a {
    background-color: rgba(0, 0, 0, 0) !important;
}
.navigation-menu.desktop {
    padding: 0;
}
.navigation-menu.desktop > li {
    display: flex;
    align-items: center;
}
.navigation-menu.desktop > li > a {
    height: unset;
}
.navigation-menu.desktop > li > a::after {
    bottom: -5px;
}
.navigation-menu.desktop > .menu-item-has-children > a::after {
    display: none;
}
.navigation-menu.desktop > .menu-item-has-children > a .icon {
    width: 9px;
    height: auto;
    margin-left: 0.5rem;
    fill: var(--global-color-primary);
    display: inline-flex;
}
.navigation-menu.desktop > li {
    position: relative;
}
.navigation-menu.desktop > .current-menu-ancestor::after,
.navigation-menu.desktop > .current-menu-item::after {
    display: block;
}
.navigation-menu.desktop > li {
    padding: 0;
    padding-right: 4.5rem;
}
.navigation-menu.desktop > li::after {
    content: "";
    width: 85%;
    height: 3px;
    display: none;
    background-color: var(--global-color-primary);
    position: absolute;
    top: 0;
    left: calc(50% - 2.25rem);
    transform: translateX(-50%);
    z-index: -1;
}
.navigation-menu.desktop > li > a {
    justify-content: flex-start;
    padding: 0;
}
@media (max-width: 991px) {
    .navigation-menu.desktop {
        display: none;
    }
}
.search {
    position: relative;
}
.search-icon {
    padding: 1rem;
    background-color: var(--main-orange);
    border-radius: 50%;
    aspect-ratio: 1;
    cursor: pointer;
    min-width: 34px;
    min-height: 34px;
}
.search-icon svg {
    height: 1.4rem;
    fill: var(--primary-white);
}
.search-icon:hover {
    background-color: var(--primary-white);
}
.search-icon:hover svg {
    fill: var(--main-orange);
}
.search-dropdown {
    position: absolute;
    top: calc(100% + 2rem);
    right: -3.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5rem);
    transition: all 0.3s ease;
}
.search-dropdown input {
    width: 610px;
    max-width: 100%;
    height: 60px;
    outline: none;
    padding: 18px 30px;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-sizing: border-box;
    font-family: var(--font-family-spartan);
    line-height: 1.2;
    color: var(--grey);
    font-size: var(--font-size-xx-sm);
}
.search-dropdown input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
.search-dropdown button {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
.search-dropdown button svg {
    height: 2rem;
    fill: var(--main-orange);
    vertical-align: middle;
}
.search-dropdown .arrow-icon {
    position: absolute;
    top: -2.4rem;
    right: 3rem;
    width: 0;
    height: 0;
    width: 4rem;
    height: 4rem;
    fill: var(--primary-white);
}
.search.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .search {
        display: none;
    }
}
.hamburger-icon {
    cursor: pointer;
    padding: 0 1rem;
}
.hamburger-icon .bar {
    width: 18px;
    height: 3px;
    background-color: var(--global-primary-white);
}
.hamburger-icon .bar:nth-child(n + 2) {
    margin-top: 3px;
}
.hamburger-icon .bar:nth-child(2) {
    margin-left: 2px;
}
@media (max-width: 991px) {
    .hamburger-icon .bar {
        height: 2px;
    }
}
.hamburger-content {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--global-color-secondary);
    width: 100vw;
    height: 100vh;
    z-index: 99999999;
    transition: all 0.5s ease-in-out;
}
.hamburger.direction-left .hamburger-content {
    transform: translateX(-100%);
}
.hamburger.direction-right .hamburger-content {
    right: -100%;
}
.hamburger.shown.direction-left .hamburger-content {
    transform: translateX(0);
}
.hamburger.shown.direction-right .hamburger-content {
    right: 0;
}
.hamburger-close {
    font-size: 22px;
    height: 22px;
    fill: var(--global-primary-white);
    cursor: pointer;
}
.hamburger-close svg {
    height: inherit;
    fill: inherit;
}
.hamburger .hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(20, 27, 37, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 9999999;
    transition: all 0.5s ease-in-out;
}
.hamburger.shown .hamburger-overlay {
    opacity: 1;
    visibility: visible;
}
.hamburger-content {
    --padding-left: 3.8rem;
    --padding-right: 3.8rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.hamburger-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.hamburger-content-main {
    margin-top: 5.5rem;
}
.hamburger-content-main .navigation-menu > li::after {
    display: none;
}
.hamburger-content-main .navigation-menu > li > a {
    padding: 0 0;
}
.hamburger-content-main .navigation-menu .sub-menu {
    margin-top: 0;
    margin-left: 3.8rem;
}
.hamburger-content-main ul {
    padding: 0 var(--padding-left) 0 var(--padding-right) !important;
}
.hamburger-content .social-links-block {
    margin-top: auto;
    padding-top: 3rem;
}
.hamburger-content .social-links-block .social-links {
    margin: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: left;
}
.hamburger-content .social-links-block .social-links li {
    list-style: none;
}
.hamburger-content .social-links-block .social-links li a {
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-dark-3);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 4.5rem;
    height: 4.5rem;
    flex-basis: min-content;
}
.hamburger-content .social-links-block .social-links li a svg {
    vertical-align: middle;
    height: 1.8rem;
    width: 1.8rem;
    fill: var(--color-paragraph-1);
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.hamburger-content .social-links-block .social-links li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: block;
    background-color: var(--global-color-primary);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: center;
    transition: all 0.25s ease;
    z-index: 1;
    opacity: 0;
}
.hamburger-content .social-links-block .social-links li a:hover svg,
.hamburger-content .social-links-block .social-links li a:active svg {
    fill: var(--global-primary-white);
}
.hamburger-content .social-links-block .social-links li a:hover::after,
.hamburger-content .social-links-block .social-links li a:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.hamburger-content .copy-right {
    margin-top: 17px;
    font-size: 12px;
    color: var(--color-paragraph-1);
}
header .home-2-humburger .bar {
    background-color: var(--primary-black);
}
header.scrolled .hamburger-icon .bar {
    background-color: var(--global-primary-white);
}
.hamburger.direction-right .hamburger-content {
    left: auto;
    width: 470px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 48px 30px 48px;
    background-color: var(--global-primary-white);
}
.hamburger.direction-right .hamburger-content-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 3rem;
}
.hamburger.direction-right .hamburger-content-header .hamburger-close svg {
    fill: var(--color-black);
}
.hamburger.direction-right .hamburger-content .hamburger-content-inner {
    display: flex;
    flex-direction: column;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .icon-box {
    position: absolute;
    font-size: 3.2rem;
    width: 8rem;
    height: 8rem;
    justify-content: center;
    align-items: center;
    left: 30px;
    top: -30px;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .icon-box
    svg {
    height: 3.2rem;
    fill: var(--global-primary-white);
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .hamburger-image {
    position: relative;
    align-self: center;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .hamburger-image
    img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .heading-title {
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-size: 2.4rem;
    font-weight: 600;
    margin: 3rem 0;
    text-align: left;
}
.hamburger.direction-right .hamburger-content .hamburger-content-inner .follow {
    color: var(--global-color-secondary);
    font-family: var(--font-family-spartan);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group {
    position: relative;
    width: 100%;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"],
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"],
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"],
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 4.8rem;
    font-family: var(--font-family-spartan);
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: var(--global-primary-white);
    border-radius: 2.5px;
    margin-top: 1rem;
    border: 0;
    outline: none;
    border-bottom: 1px solid var(--global-color-text-2);
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]:focus,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]:focus,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]:focus,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    textarea:focus {
    border-bottom: 1px solid var(--global-primary-white);
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="text"]::placeholder,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="email"]::placeholder,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    input[type="tel"]::placeholder,
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    textarea::placeholder {
    color: var(--color-paragraph-1);
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    textarea {
    height: 11rem;
    resize: none;
    margin-top: 3rem;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group
    .error-icon {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 18px;
    fill: var(--color-warning);
    opacity: 0;
    height: 1.2rem;
    width: 1.2rem;
    transition: all 0.3s ease-in-out;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .form-wrapper
    .input-group.error
    .error-icon {
    opacity: 1;
    left: 95%;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .submit-btn {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    margin: 3rem auto 0 auto;
    border: 3px solid var(--global-color-primary);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.25s ease;
    cursor: pointer;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .submit-btn
    .submit-icon {
    height: 3rem;
    width: 3rem;
    fill: var(--global-color-primary);
    transition: fill 0.1s ease;
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .submit-btn:hover {
    background-color: var(--global-color-primary);
}
.hamburger.direction-right
    .hamburger-content
    .hamburger-content-inner
    .contact-form
    .submit-btn:hover
    .submit-icon {
    fill: var(--global-primary-white);
}
.hamburger.direction-right .hamburger-content .social-links-block {
    padding-top: 3rem;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links {
    margin: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: left;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li {
    list-style: none;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a {
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-primary-light-2);
    transition: all 0.25s ease;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 4.5rem;
    height: 4.5rem;
    flex-basis: min-content;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a
    svg {
    vertical-align: middle;
    height: 1.8rem;
    width: 1.8rem;
    fill: #8c8f95;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: block;
    background-color: var(--global-color-primary);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: center;
    transition: all 0.25s ease;
    z-index: 1;
    opacity: 0;
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a:hover
    svg,
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a:active
    svg {
    fill: var(--global-primary-white);
}
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a:hover::after,
.hamburger.direction-right
    .hamburger-content
    .social-links-block
    .social-links
    li
    a:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.hamburger.direction-right .hamburger-content .copy-right {
    margin-top: 17px;
    font-size: 12px;
    color: var(--color-paragraph-1);
}
.hamburger.direction-right {
    display: block;
}
@media (max-width: 991px) {
    .hamburger.direction-right {
        display: none;
    }
}
.contact-form-hamburger.hamburger.direction-right .hamburger-content {
    background-color: var(--global-color-secondary);
}
.contact-form-hamburger.hamburger.direction-right
    .hamburger-content-header
    .hamburger-close
    svg {
    fill: var(--global-primary-white);
}
.contact-form-hamburger.hamburger.direction-right
    .hamburger-content
    .heading-title {
    color: var(--global-primary-white);
    margin: 3rem 0 1rem;
}
.announcement-bar {
    background-color: var(--global-color-secondary);
    padding: 1.5rem 5rem;
}
@media (max-width: 991px) {
    .announcement-bar {
        display: none;
    }
}
.announcement-bar .announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.announcement-bar .announcement-content .announcement-bar-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.announcement-bar
    .announcement-content
    .announcement-bar-links
    li
    .social-link {
    font-family: var(--font-family-spartan);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.announcement-bar
    .announcement-content
    .announcement-bar-links
    li
    .social-link
    svg {
    width: 1.25em;
    fill: var(--global-color-primary);
    margin-right: 5px;
}
.announcement-bar
    .announcement-content
    .announcement-bar-links
    li
    .social-link
    span {
    color: var(--color-paragraph-1);
    transition: color 0.3s;
    margin: 3px 0px 0px 0px;
    padding-left: 5px;
}
.announcement-bar
    .announcement-content
    .announcement-bar-links
    li:hover
    .social-link
    span {
    color: var(--global-primary-white);
}
@media (max-width: 991px) {
    .announcement-bar {
        display: none;
    }
}

.footer-wrapper .subscribe-col .footer-form .input-group input[type="email"] {
    background-color: #fff;
    color: var(--global-color-text-1);
}
.footer-wrapper .subscribe-col .footer-form .input-group input[type="email"]:focus {
    background-color: var(--global-color-text-1);
    color: var(--global-primary-white);
}
.footer-list-item :hover {
    color: var(--global-color-primary) !important;
}