*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
}

.playfair-family {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #000000;
    --blue-color: rgba(136, 198, 100, 1);
    --dark-blue: rgba(15, 46, 93, 1);
    --body-color: #4C4C4C;
}

.primary-color {
    color: var(--primary-color);
}

.text-blue {
    color: var(--blue-color);
}

.dark-blue {
    background-color: var(--dark-blue);
}

.diff-bg {
    padding: 30px;
    border-radius: 40px;
    background-color: var(--dark-blue);
}

h1,
.h1 {
    font-size: clamp(2.25rem, 1.9173rem + 1.6634vw, 3.3125rem);
    font-weight: 900 !important;
}

h2,
.h2 {
    font-size: clamp(2rem, 1.8434rem + 0.7828vw, 2.5rem);
}

h3,
.h3 {
    font-size: clamp(1.375rem, 1.2558rem + 0.5961vw, 1.625rem);
}

h4,
.h4 {
    font-size: clamp(1.125rem, 1.0058rem + 0.5961vw, 1.375rem);
}

h5,
.h5 {
    font-size: clamp(1.125rem, 1.0654rem + 0.2981vw, 1.25rem);
}

h6,
.h6 {
    font-size: clamp(1rem, .9404rem + 0.2981vw, 1.125rem);
}

p {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
}

.font-16 {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

.spacer-y {
    padding-block: 120px;
}

.spacer-y-sm {
    padding-block: 65px;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.container {
    max-width: 1342px;
    padding-inline: 15px;
    margin: auto;
}

.mt-25 {
    margin-top: 25px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-60 {
    margin-bottom: 60px;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-regular {
    font-weight: 400 !important;
}

.w-sm {
    max-width: 660px;
}

.button {
    padding: 15px 30px;
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    transition: all .3s ease;
}

.button.button-primary {
    background: var(--blue-color);
}

.button.button-primary:hover {
    background-color: var(--dark-blue);
}

.button.button-white {
    color: var(--dark-blue);
    background: #FFF;
}

.button.button-white:hover {
    color: #FFF;
    background-color: var(--blue-color);
}

.button-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-bg {
    background-image: url("../Img/banner-bg.png");
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.round-banner-color {
    width: 720px;
    height: 720px;
    background-color: var(--blue-color);
    filter: blur(103px);
    opacity: 0.45;
    border-radius: 1000px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.z-index-up {
    z-index: 2;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 80s linear infinite;
}

.marquee-content {
    display: inline-block;
}

.marquee-content span {
    font-size: clamp(1.125rem, 0.5771rem + 2.7397vw, 2.875rem);
    font-weight: 600;
    color: #fff;
    margin-left: 40px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.footer-page-block {
    display: flex;
    gap: 38px;
}

.footer-page-block a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    padding-top: 25px;
    padding-bottom: 48px;
    border-top: 1px solid #FFFFFF4D;
}

img.advance-round {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.work-card {
    background-color: rgba(240, 243, 255, 1);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.service-wrap {
    background-image: url(../Img/service-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-row .row img {
    transition: all .3s ease;
}

.service-row .row img:hover {
    scale: 1.03;
}

.cta-wrap {
    border-radius: 26px;
    padding: 60px;
    background: var(--dark-blue);
    color: #FFF;
}

@media screen and (max-width: 992px) {
    .row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

}

@media screen and (max-width: 767px) {
    .round-banner-color {
        width: 420px;
        height: 300px;
    }

    .spacer-y {
        padding-block: 60px;
    }

    .spacer-y-sm {
        padding-block: 40px;
    }

    .footer-copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .marquee-content span {
        margin-left: 20px;
    }
}