/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&amp;family=Schibsted+Grotesk:wght@400;500;600;700&amp;family=Inter:wght@400;500;600;700&amp;display=swap");

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    --font-inter: "Inter", sans-serif;
    font-size: var(--font-sm);
    background-color: var(--white);
    color: var(--gray-600);
    font-weight: 400;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --transparent: transparent;

    --primary: #43AB48;
    --secondary: #313737;

    --primary-100: #0B1D0C;
    --primary-200: #173B19;
    --primary-300: #2B6E2E;
    --primary-400: #358839;
    --primary-500: #43AB48;
    --primary-600: #6CC671;
    --primary-700: #BDE5BF;
    --primary-800: #E2F4E3;
    --primary-900: #F0F9F1;
    --primary-1000: #F8FCF8;

    --secondary-100: #051019;
    --secondary-200: #313737;
    --secondary-300: #184C77;
    --secondary-400: #1E5F95;
    --secondary-500: #1976bc;
    --secondary-600: #77B3E4;
    --secondary-700: #B2D4F0;
    --secondary-800: #DDECF8;
    --secondary-900: #EEF5FC;
    --secondary-1000: #F6FAFD;

    --gray-white: #FCFBFA;
    --gray-dark: #141514;
    --gray-50: #F6F6F6;
    --gray-100: #E7E7E7;
    --gray-200: #D1D1D1;
    --gray-300: #B0B0B0;
    --gray-400: #888888;
    --gray-500: #6D6D6D;
    --gray-600: #5D5D5D;
    --gray-700: #4F4F4F;
    --gray-800: #454545;
    --gray-900: #3D3D3D;
    --gray-950: #060606;

    --font-heading1: 70px;
    --font-heading2: 60px;
    --font-heading3: 39px;
    --font-heading4: 31px;
    --font-heading5: 25px;
    --font-heading6: 20px;
    --font-lg: 25px;
    --font-md: 18px;
    --font-sm: 16px;
    --font-xsm: 14.5px;

    --font-archivo: "Archivo Narrow", sans-serif;
    --font-schibsted: "Schibsted Grotesk", sans-serif;
    --font-inter: "Inter", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--font-archivo);
    font-size: var(--font-md);
    line-height: 160%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-archivo);
    font-optical-sizing: auto;
    font-style: normal;
}

.archivo {
    font-family: var(--font-archivo);
}

.schibsted {
    font-family: var(--font-schibsted);
}

.inter {
    font-family: var(--font-inter);
}

.heading1 {
    font-size: var(--font-heading1);
}

.heading2 {
    font-size: var(--font-heading2);
    letter-spacing: -2.4px;
    line-height: 72px;
}

.heading3 {
    font-size: var(--font-heading3);
}

.heading4 {
    font-size: var(--font-heading4);
}

.heading5 {
    font-size: var(--font-heading5);
}

.heading6 {
    font-size: var(--font-heading6);
}

.text-xsm {
    font-size: var(--font-xsm);
}

.text-sm {
    font-size: var(--font-sm);
    letter-spacing: -0.2px;
    line-height: 25.6px;
}

.text-md {
    font-size: var(--font-md);
    letter-spacing: -0.2px;
    line-height: 28.8px;
}

.text-lg {
    font-size: var(--font-lg);
}


.thin {
    font-weight: 100;
}

.extra-light {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.black {
    font-weight: 900;
}


.dark-text {
    color: var(--secondary);
}

.light-text {
    color: var(--white);
}


.light {
    opacity: 80%;
}

.text-primary {
    color: var(--secondary-500) !important;
}

.text-gray-600 {
    color: var(--gray-600) !important;
}

.bg-primary-600 {
    background-color: var(--secondary-600) !important;
}


a,
a:hover {
    text-decoration: none;
    transition: all 0.6s;
    color: inherit;
}

/* Spacing classes */
.py-6 {
    padding: 75px 0;
}



.primary-button {
    background-color: var(--white);
    font-size: var(--font-xsm);
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    letter-spacing: 1.9px;
    padding: 20px 34px;
    text-transform: uppercase;
    align-items: center;

    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.primary-button:hover {
    color: var(--secondary);
}

.primary-button svg {
    width: 24px;
    height: 24px;
}

.primary-button span {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
}

.primary-button svg {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
}

.primary-button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--secondary-500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-out;
    z-index: 0;
}

.primary-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

.primary-button:hover svg {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
    color: var(--white);
}

.secondary-button {
    background-color: var(--white);
    font-size: var(--font-xsm);
    font-weight: 700;
    color: var(--secondary-500);
    display: flex;
    letter-spacing: 1.9px;
    padding: 20px 34px;
    text-transform: uppercase;
    align-items: center;
    border: 1px solid var(--secondary-500);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.secondary-button span {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
}

.secondary-button svg {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
}

.secondary-button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--secondary-500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-out;
    z-index: 0;
}

.secondary-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.secondary-button:hover span {
    color: var(--white);
}

.secondary-button:hover {
    border: 1px solid var(--secondary-500);
}

.secondary-button:hover svg {
    position: relative;
    z-index: 1;
    transition: color 0.2s ease-in-out;
    color: var(--white);
}

.secondary-button svg {
    width: 24px;
    height: 24px;
}

.mob-content {
    display: none;
}

.container {
    max-width: 1328px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    position: relative;
    background-image: url("../images/home/herovector.html");
    background-position: left -323px top -22px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--secondary-300);
    padding: 0;
    height: 100dvh;
    overflow: hidden;
}

.hero-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.8fr;
    grid-auto-columns: 1fr;
    display: grid;
    max-width: 1280px;
    margin: auto;
}

.hero-content {
    display: flex;
    gap: 24px;
    flex-direction: column;
    width: 620px;
}

.hero-video-container {
    position: absolute;
    left: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-btn {
    display: flex;
    margin-top: 24px;
}

main > section {
    padding: 100px 0;
}

.head-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.head-wrapper h2 {
    color: var(--secondary-500);
    font-weight: 500;
}

.head-wrapper.white h2 {
    color: var(--white);
}

.head-line {
    height: 1px;
    width: 282px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--secondary-500));
}

.head-wrapper.white .head-line {
    background: linear-gradient(to right, rgba(69, 69, 69, 0), var(--white));
}


.vector01,
.vector02,
.vector03,
.vector04 {
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.vector {
    opacity: 0.2;
    transition: opacity 0.5s ease;
    font-size: 2rem;
    margin: 100px 0;
    text-align: center;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
    position: sticky;
    top: 100px;
}

.about-image-one {
    max-width: 948px;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    margin: auto;
}

.about-image-two {
    max-width: 1184px;

}


/* outcomes section */
.outcomes-content h3 {
    color: var(--gray-700);
}

.outcomes-content p {
    color: var(--gray-500);
}

.outcomes-underline {
    height: 1px;
    width: 48px;
    background: var(--gray-100);
    margin-top: 12px;
    margin-bottom: 12px;
}


/* Services section */
.services-container {
    margin-top: 24px;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.8fr;
    grid-auto-columns: 1fr;
    display: grid;
    align-items: end;
}

.services-container h3 {
    color: var(--secondary);
}

.services-container p {
    color: var(--gray-600);
}

.services-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    margin-top: 50px;
}

.service-block {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-img-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.service-block img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.service-block-button {
    position: absolute;
    margin-bottom: 20px;
    margin-right: 20px;
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.service-content h4 {
    color: var(--secondary);

}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.service-lest-talk {
    color: var(--tailwind-50);
}


/* Solution section */
.solution {
    background-color: var(--secondary-300);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.solution-wrapper {
    position: relative;
    z-index: 2;
}

.solution-vector01 {
    position: absolute;
    width: 950px;
    left: -475px;
    opacity: 10%;
    top: 0;
}

.solution-vector02 {
    position: absolute;
    width: 950px;
    right: -475px;
    opacity: 10%;
    bottom: 0;
}

.head-secondary {
    margin-top: 24px;
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-border {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}


/*  Core Values section */
.our-value {
    position: relative;
    overflow: hidden;
}

.our-value-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
}

.our-value-block {
    display: flex;
    gap: 24px;
    padding: 40px;
    border: 1px solid #E7E7E7;
}

.our-value-block.one {
    border: none;
}

.our-value-block.two {
    border: none;
    border-left: 1px solid #E7E7E7;
}

.our-value-block.three {
    border-left: none;
    border-right: none;
}

.our-value-block.four {
    border-right: none;
}

.our-value-block.five {
    border: none;
}

.our-value-block.six {
    border: none;
    border-left: 1px solid #E7E7E7;
}

.our-value-image {
    width: 72px;
    height: 72px;
}


/* Journey section */
.sc-journey-item {
    background: #fff;
    border: 1px solid #E7E7E7;
    max-width: 387px;
    padding: 24px;
}

.sc-journey-item span {
    font-size: var(--font-heading3);
    color: var(--secondary-500);
    opacity: 40%;
    font-weight: 500;
    font-family: var(--font-archivo);
}

.sc-journey-item ul {
    padding-left: 24px;
    color: var(--gray-800);
    font-weight: 400;
    font-family: var(--font-inter);
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Slick slider custom css */
.same-height-slide .slick-track {
    display: flex !important;
    align-items: stretch;
}

.same-height-slide .slick-slide {
    height: auto !important;
    display: flex;
}

.same-height-slide .slick-slide > div {
    height: 100%;
    width: 100%;
}

.slick-slide:focus {
    outline: none;
}

.slick-arrow {
    position: absolute;
    right: 0;
    bottom: -30px;
    top: inherit;
    left: inherit;
    transform: inherit;
    background-color: var(--secondary-700);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease-in-out 0s;
}

.slick-arrow:hover, .slick-arrow:focus {
    background-color: var(--secondary-500);
}

.slick-arrow.slick-prev {
    right: 80px;
}

.slick-arrow::before {
    content: '';
    background-image: url('../images/shreeji/right-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: block;
}

.slick-arrow.slick-prev::before {
    transform: rotate(180deg);
}
/* slick slider custom css */


.commitment-section {
    background-color: var(--secondary-300);
}

.cta-image {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.cta-image img {
    width: 110%;
    right: -1px;
    top: 0;
    position: absolute;
}

.contact {
    background-color: #FCFCFC;
    overflow: hidden;
}

.contact-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    overflow: hidden;
}

.contact-left {
    position: relative;
    background-color: var(--secondary-300);
    padding: 40px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 150px;
    overflow: hidden;
}

.cta-vector {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 42%;
}

.cta-vector02 {
    position: absolute;
    right: -20%;
    top: -30%;
}

.contact-content {
    color: var(--white);
    font-weight: 400;
    display: flex;
    gap: 16px;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-block h4 {
    color: var(--white);
    font-size: var(--font-sm);
    opacity: 0.5;
}

.contact-info-block p {
    color: var(--white);
    font-size: var(--font-md);
}

.contact-right {
    background-color: var(--white);
    padding: 40px;
}

.contact-right h3 {
    color: var(--gray-800);
    font-weight: 500;
}

.contact-right form {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-right input {
    width: 100%;
    background-color: #FAFAFA;
    border: 1px solid #E7E7E7;
    padding: 12px 24px;
    border-radius: 0;
    outline: none;
    font-weight: 500;
}

.contact-right textarea {
    width: 100%;
    background-color: #FAFAFA;
    border: 1px solid #E7E7E7;
    padding: 12px 24px;
    border-radius: 0;
    outline: none;
    font-weight: 500;
    height: 120px;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: var(--gray-600);
}

.contact-right .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin: auto;
}

.form-block {
    width: 100%;
}

.form-block.form-button {
    display: flex;

}

.form-block.form-button button {
    outline: none;
    cursor: pointer;
}

footer {
    background-color: var(--secondary-300);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-vector {
    position: absolute;
    right: 0;
    top: 10px;
    height: 100%;
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 20px;
    border-bottom: 1px solid rgba(252, 251, 250, 10%);
}

.footer-logo {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    max-width: 413px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-left-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-left-block p {
    font-size: var(--font-md);
    color: var(--gray-50);
    font-family: var(--font-archivo);
    font-weight: 500;
}

.footer-left-links {
    display: flex;
    gap: 25px;
}

.footer-left-links a {
    color: var(--gray-100);
    font-family: var(--font-archivo);
    font-size: 16px;
    color: var(--gray-100);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    transition: all 0.6s ease-out;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.footer-left-links a:hover {
    color: var(--secondary-500);
}

.footer-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(252, 251, 250, 10%);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 80px;
    border-left: 1px solid rgba(252, 251, 250, 10%);
}

.footer-right-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-right-content p,
.footer-right-content p a {
    color: var(--gray-100);
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--gray-100);
}

.footer-bottom-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.footer-bottom-links a {
    text-transform: uppercase;
    color: var(--gray-100);
    font-family: var(--font-archivo);
    font-size: 16px;
    color: var(--gray-100);
    font-weight: 500;
    letter-spacing: -0.2px;
}

@media (min-width: 992px) {
    .shape-img {
        float: left;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        shape-outside: circle(50%);
        shape-margin: 20px;
        margin: 0 20px 20px 0;
    }
}

@media screen and (max-width: 1200px) {
    .hero-content {
        display: flex;
        gap: 24px;
        flex-direction: column;
        width: 100%;
    }

    :root {
        --font-heading1: 70px;
        --font-heading2: 60px;
        --font-heading3: 39px;
        --font-heading4: 31px;
        --font-heading5: 25px;
        --font-heading6: 20px;
        --font-lg: 25px;
        --font-md: 18px;
        --font-sm: 16px;
        --font-xsm: 14.5px;
    }

    .about-image-one {
        display: flex;
        top: 55px;
    }

    .about-image-one svg {
        width: 80%;
        margin: auto;
        height: auto;
    }

    .about-image-two {
        width: 100%;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 0;
        border-top: 1px solid rgba(252, 251, 250, 10%);
        border-left: none;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 0.9fr;
    }
}

@media screen and (max-width: 991.98px) {
    :root {
        --font-heading1: 50px;
        --font-heading2: 40px;
        --font-heading3: 29px;
        --font-heading4: 25px;
        --font-heading5: 22px;
        --font-heading6: 20px;
        --font-lg: 25px;
        --font-md: 18px;
        --font-sm: 16px;
        --font-xsm: 14.5px;
    }

    main > section {
        padding: 50px 0;
    }

    .heading2 {
        letter-spacing: -1.4px;
        line-height: 45px;
    }

    .footer-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        row-gap: 40px;
    }

    .services-container {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    footer {
        padding-top: 50px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-left {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-image img {
        width: 90%;
        right: -63px;
        top: 0;
        position: relative;
    }

    .primary-button,
    .secondary-button {
        padding: 15px 20px;
    }

    .our-value-image {
        width: 52px;
        height: 52px;
        margin-top: 5px;
        flex: none;
    }

    .contact-wrapper {
        margin-top: 25px;
    }

    #header {
        top: 0;
    }

    .hero {
        min-height: 100dvh;
        height: auto;
        padding: 100px 0;
    }

    .hero-wrapper {
        min-height: auto;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-video-container {
        position: relative;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
    }

    .about-image-one img {
        width: 100%;
    }

    .about-image-two img {
        width: 100%;
    }

    .cta-image img {
        width: 111%;
        right: -42px;
        top: 138px;
        position: absolute;
    }

    .contact-left {
        margin-right: 0;
    }

    .cta-vector {
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 32%;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .head-secondary {
        margin-top: 14px;
    }

    .nav-buttons.mob {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 1rem .5rem;
        margin: 0 0rem 0px;
        padding-left: 0;
    }

    .navbar-nav {
        padding-top: 25px;
    }

    .about-image-one {
        display: flex;
        top: 10%;
    }

    .mob-content {
        display: block;
    }

    .sc-journey-item {
        max-width: 100%;
    }
}

@media screen and (max-width: 767.98px) {
    :root {
        --font-heading1: 40px;
        --font-heading2: 30px;
        --font-heading3: 25px;
        --font-heading4: 22px;
        --font-heading5: 20px;
        --font-heading6: 18px;
        --font-lg: 25px;
        --font-md: 18px;
        --font-sm: 16px;
        --font-xsm: 14.5px;
    }

    .heading2 {
        letter-spacing: -1.4px;
        line-height: 35px;
    }

    .hero-wrapper {
        padding-top: 0px;
    }

    .hero-video-container {
        position: relative;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

    .hero-wrapper {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .hero {
        padding-bottom: 40px;
    }

    .head-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        z-index: 2;
        flex-direction: column;
    }

    .outcomes-grid {
        flex-wrap: wrap;
        row-gap: 50px;
    }

    .outcomes-content {
        width: 50%;
        text-align: center;
    }

    .outcomes-underline {
        height: 1px;
        width: 48px;
        background: var(--gray-100);
        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
    }

    .solution-border {
        border: none;
    }

    .our-value-block {
        display: flex;
        gap: 24px;
        padding: 15px;
        border: 1px solid #E7E7E7;
        flex-direction: column;
    }

    .contact-left {
        gap: 50px;
    }

    .contact-right {
        padding: 40px 0 0;
    }

    .contact-right form {
        margin-top: 25px;
    }

    .contact-right .form-row {
        display: flex;
        flex-direction: column;
    }

    .footer-left-links {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }

    .contact-left {
        padding: 20px;
        padding-right: 0;
    }

    .about-grid {
        gap: 15px;
    } 

    .contact{
        margin-bottom: 0;
    }
}

@media screen and (max-width: 479.98px) {
    .our-value-grid {
        grid-template-columns: 1fr;
    }

    .our-value-block {
        border: none !important;
        flex-direction: row;
        padding: 30px 15px;
    }
}














/* About us css */
.jumbotron-section {
    min-height: 30vh;
    background-color: var(--secondary-300);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--secondary-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
}

.card {
    position: relative;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
}

.card:hover {
    top: -10px;
    box-shadow: none;
}