@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --black: #000000;
    --black-1: #02141c;
    --black-2: #232323;
    --black-3: #383737;
    --white: #ffffff;
    --white-1: #cde1ef;
    --white-2: #F7F5F2;
    --white-3: #F0F2F8;
    --white-4: #F6F7F9;
    --blue: #064166;
    --green: #84cfd0;
    --green-1: #71dadc;
    --green-2: #319899;
    --green-3: #e0ffff;
    --skyblue: #6a8da3;
}

html {
    overscroll-behavior: none;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-green-1 {
    color: var(--green-1) !important;
}

.text-green-2 {
    color: var(--green-2) !important;
}

.bg-white {
    background-color: #F6F6F9 !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-white-2 {
    background-color: var(--white-2) !important;
}

.bg-white-3 {
    background-color: var(--white-3) !important;
}

.bg-white-4 {
    background-color: var(--white-4) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-black-1 {
    background-color: var(--black-1) !important;
}

.bg-black-2 {
    background-color: var(--black-2) !important;
}

.bg-black-3 {
    background-color: var(--black-3) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-green-1 {
    background-color: var(--green-1) !important;
}

.bg-green-2 {
    background-color: var(--green-2) !important;
}

.bg-green-3 {
    background-color: var(--green-3) !important;
}

.bg-skyblue {
    background-color: var(--skyblue) !important;
}


ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.image-cover {
    height: 100%;
    position: relative;
    min-height: 300px;
}

.image-cover img.image-cover-photo {
    display: block;
    width: 100%;
    /*height: 100%;*/
    position: relative;
    z-index: 2;
    border-radius: 7px;
    display: none;
}

.image-cover img.image-photo {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 7px;
}

.image-cover img.image-photo.image-photo-left {
    object-position: top left;
}

h1,
h2,
h3 {
    font-weight: 500;
}

h1 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 0px;
}


h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

h3 {
    font-size: 22px;
}



p:last-child {
    margin-bottom: 0px;
}

.fw-500 {
    font-weight: 500;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background-color: transparent;
    padding: 0px;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: .3s;
    padding-top: 24px;
    padding-bottom: 24px;
}

.header.sticky {
    position: fixed;
    background: var(--white-3);
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
    border-bottom: 1px solid var(--green);
    padding-top: 18px;
    padding-bottom: 18px;
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 250px;
    height: auto;
    transition: .3s;
    filter: invert(1) brightness(1000);
}


.header.sticky .logo {
    filter: initial;
}


.hamburger-cover {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.hamburger-btn {
    width: 50px;
    flex: 0 0 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 0px;
    background: transparent;
    border-radius: 0px;
    gap: 10px;
    padding: 0px;
}

.hamburger-btn span {
    width: 100%;
    height: 0px;
    border-bottom: 3px solid var(--white);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.header.sticky .hamburger-btn span {
    border-bottom: 3px solid var(--blue);
}

.hamburger-btn:hover span {
    border-bottom: 3px solid var(--green);
}

.header.sticky .hamburger-btn:hover span {
    border-bottom: 3px solid var(--green);
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(6 65 102 / 68%);
    background-color: var(--green);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    /*backdrop-filter: blur(2px);*/
}

.overlay.active {
    opacity: .75;
    visibility: visible;
}

/* Menu Panel Styles */
.menu-panel {
    position: fixed;
    top: 18px;
    right: -768px;
    width: 768px;
    height: calc(100% - 36px);
    background-color: transparent;
    z-index: 1001;
    transition: right 0.6s cubic-bezier(.45, 0, .25, 1);
    /*transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-left: 58px;
}

.menu-panel.active {
    right: 18px;
}

/* Header Section */
.close-icon {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 2px solid var(--blue);
    background-color: var(--blue);
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translatey(-50%);
}

.close-icon i {
    line-height: 0px;
}

.close-icon:hover {
    color: var(--blue);
    /*border: 2px solid var(--green);*/
    background-color: var(--white);
}

/* Content Box */
.content-box {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: var(--blue);
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    position: relative;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.content-box::before {
    content: '';
    width: 0px;
    height: 100%;
    border-right: 1px solid var(--white);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translatex(-50%);
}

.content-box::after {
    content: '';
    width: 100%;
    height: 0;
    border-bottom: 1px solid var(--white);
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translatey(-50%);
}

.menu-box {
    width: 50%;
    flex: 0 0 50%;
    height: 50%;
}

.menu-box>a {
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    color: var(--white);
    transition: .5s;

}

@-webkit-keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.shape-1 {
    position: absolute;
    right: 20%;
    top: 50px;
}

.services-dropdown-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .6s;
}

.services-dropdown-content i {
    display: none;
    color: var(--white);
    line-height: 0px;
}

.menu-box img {
    width: 60px;
    opacity: 0;
    transform: scale(0);
    transition: .6s opacity, .6s transform, .3s filter;
    filter: invert(1) brightness(1000);
}

.menu-box:hover img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(23%) saturate(502%) hue-rotate(134deg);
    animation: bounceIn 1s ease;
}

.menu-box.active img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(23%) saturate(502%) hue-rotate(134deg);
}

.menu-panel.active .menu-box img {
    opacity: 1;
    transform: scale(1);
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.menu-box span {
    font-size: 26px;
    font-weight: 400;
    opacity: 0;
    transform: scale(0);
    transition: .95s;
    white-space: nowrap;
    color: var(--white);
}

.menu-box:hover span {
    color: #8fe6ea;
}

.menu-box.active span {
    color: #8fe6ea;
}

.menu-panel.active .menu-box span {
    opacity: 1;
    transform: scale(1);
}

.menu-panel .services-dropdown {
    position: relative;
    overflow: hidden;
}

.menu-panel .services-dropdown ul {
    width: 100%;
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translatex(-50%);
    transition: .6s;
    text-align: center;
}

.menu-panel .services-dropdown:hover ul {
    bottom: calc(0% + 18px);
}


.menu-panel .services-dropdown ul li a {
    font-size: 20px !important;
    color: var(--white);
    display: block;
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: .3s;
}

.menu-panel .services-dropdown ul li a.active {
    color: #8fe6ea;
}

.menu-panel .menu-box.services-dropdown:hover .services-dropdown-content {
    top: -60px;
    transform: translate(-50%, 0%);
    padding: 0px;
}

.menu-panel .menu-box.services-dropdown:hover .services-dropdown-content img {
    transform: scale(0);
    opacity: 0;
    /*width:0px;*/
}

.menu-panel .services-dropdown ul li a:hover {
    color: #8fe6ea;
    /*border-bottom: 1px solid var(--green);*/
}

.hero {
    height: auto;
    position: relative;
    padding-top: 150px;
    padding-bottom: 110px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: top center;
    text-align: center;
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .7);
    background: linear-gradient(#064166e3, #0000005c);
    z-index: 0;
}

.main-hero {
    min-height: 100vh;
    background-image: url(../images/hero.jpg);
    padding-top: 150px;
}

.main-hero h1 {
    margin-bottom: 20px;
}

.hero-p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero-1 {
    background-image: url(../images/hero-1.jpg);
}

.hero-2 {
    background-image: url(../images/hero-2.jpg);
}

.hero-3 {
    background-image: url(../images/hero-3.jpg);
}

.hero-4 {
    background-image: url(../images/hero-4.jpg);
}

.hero-5 {
    background-image: url(../images/hero-5.jpg);
}

.hero-6 {
    background-image: url(../images/hero-6.jpg);
}

.hero-7 {
    background-image: url(../images/hero-7.jpg);
    background-position: center center;
}

.hero-8 {
    background-image: url(../images/hero-8.jpg);
    background-position: center center;
}

.hero-9 {
    background-image: url(../images/hero-9.jpg);
    background-position: center center;
}

.hero-10 {
    background-image: url(../images/hero-10.jpg);
}

.btn-default {
    background-color: var(--blue);
    border-radius: 1.5px;
    justify-content: center;
    align-items: center;
    height: 64px;
    min-height: 64px;
    padding: 6px 62px 6px 20px;
    transition: all .5s;
    display: flex;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-size: 18px;
    border-radius: 3px;
    min-width: 200px;
}

.btn-default-1 {
    background-color: var(--white);
    color:var(--blue);
    border:0px
}

.btn-arrow-cover {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: flex;
    position: absolute;
    left: -6.5px;
    top: 50%;
    transform: translatey(-50%);

}

.btn-arrow {
    background-color: var(--white);
    border-radius: 2.5px;
    justify-content: flex-end;
    align-items: center;
    width: 51px;
    height: 51px;
    margin-left: 13px;
    padding-left: 8px;
    padding-right: 14px;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.btn-default-1 .btn-arrow {
    background-color: var(--blue);
}

.btn-default-1 .btn-arrow img {
    filter: invert(1) brightness(1000);
}

.btn-default:hover .btn-arrow {
    width: 100%;
    height: 51px;
}

.btn-arrow .btn-arrow-open {
    width: 100%;
    max-width: 25.841px;
    position: relative;
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .3s;
}

.btn-default:hover .btn-arrow .btn-arrow-open {
    transform: translate3d(0px, -142%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.btn-arrow .btn-arrow-hide {
    width: 100%;
    max-width: 25.841px;
    position: absolute;
    bottom: -32px;
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .3s;
}

.btn-default:hover .btn-arrow .btn-arrow-hide {
    transform: translate3d(0px, -170%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.btn-text-cover {
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.btn-text {
    margin-right: 4px;
    position: relative;
}

.btn-text.btn-text-open {
    white-space: nowrap;
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .3s;
}

.btn-default:hover .btn-text.btn-text-open {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.btn-text.btn-text-hide {
    color: var(--black);
    width: 100%;
    position: absolute;
    top: 100%;
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: .3s;
}

.btn-default-1 .btn-text.btn-text-hide {
    color: white;
}

.btn-default:hover .btn-text.btn-text-hide {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

p.p-after-hero {
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
}

.home-1::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-shape-1.png);
    background-size: cover;
    background-position: top right;
    opacity: .15;
}

.shape-2 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.image-filter {
    filter: invert(1) brightness(10000);
}

.service-row {
    padding-top: 70px;
    padding-bottom: 70px;
    border-top: 1px solid var(--white);
}

.service-row:last-child {
    padding-bottom: 0px;
}

.service-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.service-item h3 {
    font-size: 32px;
}
.a-bit-of-insight-1::after{
    content:'';
    width:100%;
    height:100%;
    position: absolute;
    inset:0%;
    background-image: url(../images/bg-shape-2.png);
    background-position:top right;
    background-size: cover;
}
.row-boxs {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.row-box {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.row-box-30 {
    gap: 30px;
}

.row-box-icon {
    width: 70px;
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px;
    background-color: var(--white);
    margin-top: 8px;
}

.row-box-icon img {
    width: 100%;
}

.row-box-icon-af-bf {
    background-color: transparent;
}

.row-box-icon-af-bf::before,
.row-box-icon-af-bf::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    border-radius: 6px;
}

.row-box-icon-af-bf::before {
    border: 1px solid var(--white);
    z-index: 0;
    top: 0px;
    left: 0px;
}

.row-box-icon-af-bf::after {
    background-color: #319899;
    z-index: 1;
    left: 8px;
    top: 8px;
}

.row-box-icon-af-bf img {
    position: relative;
    z-index: 2;
    margin-left: 16px;
    margin-top: 16px;
    filter: invert(1) brightness(1000);
}

.home-last {
    overflow: hidden;
}



.cta-section {
    background-image: url(../images/cta-image.jpg);
    background-size: cover;
    background-position: top right;
}

.cta-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(to right, rgba(0, 0, 0, .75) 60%, rgba(87, 30, 136, 0) 100%);
    background: linear-gradient(to right, #144d71ed 40%, rgba(87, 30, 136, 0) 100%);
    z-index: 0;
}

.cta-section * {
    z-index: 1;
}
.a-bit-of-insight-3::after{
    content:'';
    width:100%;
    height:100%;
    position: absolute;
    inset:0%;
    background-image: url(../images/bg-shape-3.png);
    background-position:center;
    background-size: cover;
    filter: invert(1) brightness(1000);
}
.custom-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.custom-card-icon {
    width: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-card-icon img {
    width: 100%;
    filter: invert(1) brightness(1000);
}

.seo-3 .custom-card-icon {
    background-color: var(--white-1);
    padding: 12px;
    border-radius: 100%;
}

.seo-3 .custom-card-icon img {
    filter: initial;
}

.seo-process-row {
    position: relative;
}

.seo-arrow {
    position: absolute;
    left: calc(33% - 70px);
    width: 160px;
    top: 30px;
    filter: invert(1) brightness(1000);
}

.seo-arrow-2 {
    left: calc(66% - 70px);
}

.seo-last .custom-card {
    align-items: start;
    background-color: var(--blue);
    padding: 20px;
    border-radius: 10px;
}

ul.list {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 6px;
    font-size: 18px;
}

ul.list li {
    position: relative;
    padding-left: 30px;
}

ul.list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/check.png);
    background-size: contain;
    position: absolute;
    top: 3px;
    left: 0px;
    filter: invert(1) brightness(1000);
}

.seo-imaage-last {
    width: 100%;
}

.seo-3 {
    padding-bottom: 200px;
}

.seo-4-row {
    margin-top: -200px;
    background: var(--white-2);
    padding: 40px;
    border-radius: 10px 10px 0px 0px;
    position: relative;
    text-align: center;
    padding-bottom: 60px;
}

.seo-4-row::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/seo-4-bg.png);
    background-size: cover;
    opacity: .5;
}

.seo-4-row * {
    position: relative;
    z-index: 1;
}

.smm-card {
    padding: 20px;
    background-color: var(--blue);
    margin-bottom: 20px;
    position: relative;
}

.smm-card .left-curve svg {
    width: auto;
    height: auto;
}

.smm-card .left-curve .left-border {
    background-color: var(--white);
    width: 3px;
}

.smm-card .branding-card-icon {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    filter: invert(1) brightness(1000);
    z-index: 1;
}

.smm-3 .custom-card {
    border: 1px solid var(--green-2);
    padding: 20px;
    border-radius: 10px;
    border-top: 10px solid var(--green-2);
    height: 100%;
}

.smm-3 .custom-card-icon {
    background-color: var(--green-2);
    padding: 8px;
    border-radius: 10px;
}

.smm-box {
    padding: 24px;
    border-radius: 10px;
}

.branding-card {
    height: 100%;
    background: var(--blue);
    padding: 50px;
    position: relative;
    border-radius: 10px 10px 10px 0px;
    color: var(--white);
}

.branding-card ul.list li::before {
    filter: initial;
}

.branding-card-icon {
    position: absolute;
    top: -28px;
    left: -20px;
    width: 60px;
}

.branding-4 .branding-card {
    margin-left: 20px;
}

.left-curve {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(-3px);
}

.left-curve svg {
    width: 60px;
    height: 60px;
}

.left-curve .left-border {
    flex: 1 1;
    border-radius: 0 0 100px 100px;
    margin-top: -1px;
    width: 6px;
    background-color: var(--green-2);
}

.branding-card-1 .left-curve .left-border {
    background-color: var(--green-2);
}
.branding-3::after {
    content: '';
    width:100%;
    height:100%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-shape-6.webp);
    background-position: 50% 0px;
    background-size: 1081px;
    filter: invert(1) brightness(1000);
    opacity:.8;
}

.branding-3 .custom-card {
    text-align: center;
    align-items: center;
    justify-content: start;
    padding: 0px;
    font-size: 18px;
    border-radius: 10px;
    height: 100%;
}

.branding-3 .custom-card .custom-card-icon {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--blue);
}

.branding-3 .custom-card .custom-card-icon h3 {
    margin-bottom: 0px;
    line-height: 1.5;
}

.branding-3 .custom-card .custom-card-content {
    background-color: var(--blue);
    padding: 12px 15px;
    width:100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
}

.branding-3 .custom-card .custom-card-content::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 10px;
    border: 2px solid var(--blue);
    border-radius: 100px;
    top: -15px;
    left: 50%;
    transform: translatex(-50%);
}

.branding-5 ul.list {
    background-color: var(--blue);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.branding-6 .image-cover {
    color: var(--white);
    padding:30px 40px;
    display: flex;
    align-items:start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius:5px;
    font-size:17px;
}
.branding-6 ul.list{
 font-size:17px;
}
.branding-6 .image-cover::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .75;
    position: absolute;
    inset: 0px;
    z-index: 1;
}

.branding-6 .image-cover::after {
    content: '';
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    border: 1.5px solid #ffffff;
    border-radius: 5px;
}

.branding-6 .image-cover * {
    position: relative;
    z-index: 2;
}

.branding-6 .image-cover img {
    z-index: 0;
}

.mc-3 .custom-card {
    background-color: var(--green-2);
    justify-content: start;
    align-items: start;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
}

.mc-4 {
    background-image: url(../images/bg-shape-4.webp);
    background-size: cover;
    background-position: center center;
}



.mc-card {
    padding:30px 30px 25px;
    background-color: var(--blue);
    color: #ffffff;
    height: 100%;
    border-radius: 10px;
}

.mc-card img {
    border-radius: 10px;
}

.mc-card-2 {
    background-color: var(--green-2);
}

.mc-card-content {
    padding-top: 30px;
    font-size: 18px;
    border-radius: 0px 0px 10px 10px;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
    margin-bottom: 20px;
}

.legal-pages ul {
    margin-bottom: 26px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages strong {
    font-weight: 600;
}

.legal-pages strong+p {
    margin-left: 24px;
}

.legal-pages a {
    color: var(--blue);
    text-decoration: none;
}


.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}
.image-bg {
    position: absolute;
    bottom: 0px;
    right: 0px;
    filter: invert(1) brightness(100);
}
.image-bg-1{
    left:0px;
    right:auto;
    filter: initial;
    opacity: .5;
}
.smm-1::after {
    content: '';
    width: 40%;
    height: 40%;
    position: absolute;
    inset: 0%;
    background-image: url(../images/bg-shape-5.png);
    background-position: center;
    background-size: cover;
    filter: invert(1) brightness(1000);
    right: 0px;
    left: auto;
}










footer.main-footer {
    position: relative;
    background-color: var(--black);
    color: var(--white);
    font-size: 18px;
    /* background-image: url(../images/footer-bg.jpg);
    background-position: center center;*/
}

footer.main-footer::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    background-image: url(https://starplatethemes.com/html/nexin/main-html/assets/images/backgrounds/testimonial-three-bg.jpg);
    background-size: cover;
    background-position: top center;
    opacity: .5;
}

footer.main-footer * {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 0px 12px;
    border-bottom: 1px solid var(--white);
    position: relative;
    z-index: 1;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.footer-item {
    width: 21%;
    flex: 0 0 21%;
    padding: 70px 0px;
}

.footer-item:first-child {
    width: calc(48% - 60px);
    flex: 0 0 calc(48% - 60px);
}

.footer-item:nth-child(2) {
    width: 15%;
    flex: 0 0 15%;
}

.footer-item:last-child {
    width: 16%;
    flex: 0 0 16%;
}

.footer-logo {
    width: fit-content;
    display: block;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 250px;
}

.footer-item h3 {
    color: var(--green);
    margin-bottom: 30px;
    font-size: 22px;
    margin-top: 5px;
    position: relative;
}

.footer-item h3::before {
    content: '';
    width: 60px;
    height: 0px;
    border-bottom: 2px solid var(--green);
    position: absolute;
    left: 0px;
    bottom: -14px;
    border-radius: 1000px;
}

.footer-item h3::after {
    content: '';
    width: 10px;
    height: 0px;
    border-bottom: 2px solid var(--green);
    position: absolute;
    left: 70px;
    bottom: -14px;
    border-radius: 1000px;
}

.footer-item h3 {}

.footer-item .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-item .footer-links a.footer-menu-item {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
}

.footer-item .footer-links a.footer-menu-item:not(.footer-menu-item-no-link):hover {
    color: var(--green);
}

.footer-item .footer-links a.footer-menu-item .footer-link-icon {
    margin-right: 6px;
    vertical-align: middle;
    margin-top: -3px;
    filter: invert(1) brightness(1000);
}

.footer-item .footer-menu-item-no-link {
    pointer-events: none !important;
    cursor: default !important;
}

.footer-item .footer-links a.footer-menu-item.active {
    color: var(--green);
    pointer-events: none !important;
    cursor: default !important;
}

.footer-bottom {
    padding: 30px 12px;
    position: relative;
    z-index: 1;
}

.footer-item .legal-links {
    justify-content: end;
    flex-direction: row;
    gap: 0px;
}

.footer-bottom .footer-item {
    width: 100%;
    flex: 0 0 100%;
    padding: 0px;
    border-left: 0px;
    margin: 0px;
}

.copy-right {
    color: var(--white);
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: var(--green-2) #0000;
    animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}

.loader::before {
    border-color: var(--blue) #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader::after {
    margin: 8px;
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}