@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Monument Extended';
    src: url('../fonts/MonumentExtended-Regular.woff2') format('woff2'),
        url('../fonts/MonumentExtended-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

:root {
    --color-blue: #003AD2;
    --color-light-gray: #E5E6F2;
    --color-white: #ffffff;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

ul li {
    line-height: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: inherit;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

body {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.05em;
    line-height: 120%;
    font-family: 'Inter', sans-serif;
    color: var(--color-light-gray);
    background: #0D0F27;
}

.cs-subheading {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cs-heading {
    font-weight: 500;
    font-size: clamp(24px, 4.44vw, 64px);
    line-height: 104%;
}

.btn-primary {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--color-light-gray);
    background: var(--color-blue);
    border-radius: 50px;
    padding: 24.5px 53px;
}


.btn-primary:hover {
    background: var(--color-light-gray);
    color: var(--color-blue);
}

.filter-bg {
    position: relative;
}

.filter-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(13, 15, 39, 0.3);
}

.container {
    max-width: 1376px;
    padding: 0 16px;
    margin: 0 auto;
}

.blur-shape {
    position: absolute;
    width: 500px;
    height: 700px;
    background-color: var(--color-blue);
    opacity: 0.6;
    filter: blur(100px);
    mix-blend-mode: lighten;
    transform: rotate(65.35deg);
    left: 0;
    top: -350px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header .site-branding a {
    max-width: 194px;
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding: 24px 0 24px 17px;

}

.header .main-navigation ul {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.header .main-navigation .hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    backdrop-filter: blur(12.4px);
    -webkit-backdrop-filter: blur(12.4px);
    background: #FFFFFF33;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.header .main-navigation ul li {
    line-height: 0;
}

.header .main-navigation ul li a {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-white);
    display: inline-block;
    padding: 8px 10px;
    min-width: 132px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header .menu-toggle {
    display: none;
}


/* Home page */
/* Hero Section */
.home-hero {
    height: 817px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero .container {
    height: 100%;
}

.home-hero-main {
    position: relative;
    height: 100%;
}

.home-hero-content {
    position: absolute;
    bottom: 14%;
    right: 18%;
}

.home-hero-content h1 {
    font-weight: 300;
    font-size: clamp(24px, 4.44vw, 64px);
    line-height: 104%;
    max-width: 529px;
}

.home-hero-content h1 span {
    color: var(--color-blue);
    font-style: italic;
    font-weight: 500;
}

.home-hero-content h1 strong {
    font-style: italic;
    font-weight: 500;
}


/* About Section */
.home-about {
    padding-top: 141px;
    padding-bottom: 121px;
}

.home-about-subheading {
    margin-bottom: 31px;
}

.home-about-heading {
    font-weight: 300;
    font-size: clamp(36px, 4.44vw, 64px);
    line-height: 104%;
}

.home-about-heading span {
    font-weight: 500;
    font-style: italic;
}

.home-about-content p {
    padding-bottom: 2rem;
    letter-spacing: -0.05em;
}

.home-about-content p:last-child {
    padding-bottom: 0;
}

.home-about-main {
    display: flex;
    flex-wrap: wrap;
}

.home-about-left {
    width: 30%;
    margin-right: 20.6%;
}

.home-about-right {
    width: 49.4%;
    padding-right: 20px;
}

/* Home Services */
.home-services {
    padding-top: 62px;
    padding-bottom: 140px;
    overflow-x: hidden;
}

.home-services .cs-subheading {
    margin-bottom: 20px;
}

.home-services-main {
    padding: 36px 0;
    position: relative;
}

.home-services-main::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home-services-bg1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.home-services-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 100%;
    background-image: url('../images/blur1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.home-services-list {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 160px 165px;
    max-width: 701px;
    margin: 0 auto;
}

.home-services-item {
    border-radius: 50%;
    width: calc(50% - 80px);
    height: 100%;
    border: 2px solid var(--color-light-gray);
    padding: 62px 29px;
    aspect-ratio: 1;
    transition: all 0.3s ease-in-out;
    max-width: 268px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;

}

.home-services-item:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.home-services-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.home-services-item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.home-services-title {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
}

/* brands-distribute */
.brands-distribute {
    padding-bottom: 60px;
}

.brands-distribute .cs-subheading {
    margin-bottom: 47px;
}

.brands-distribute-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.brands-distribute-item {
    width: calc(50% - 8px);
}

.brands-distribute-item img {
    width: 100%;
    object-fit: cover;
}

/* Our Values Page */
/* Hero Values */
.vl-hero {
    height: 535px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
    z-index: 2;
}

.vl-hero .container {
    height: 100%;
    position: relative;
}

.vl-hero-content {
    position: absolute;
    bottom: 43px;
    left: 15px;
    z-index: 2;
}

.vl-content-main {
    padding-top: 117px;
    padding-bottom: 183px;
    position: relative;
    overflow-x: hidden;
}

.vl-content-main .blur-shape {
    left: auto;
    right: -200px;
    top: 0;
    opacity: 0.25;
}

.vl-content-main .container {
    max-width: 1226px;
    position: relative;
}

.core-values-mb {
    display: none;
}

.core-values-flex {
    display: flex;
    justify-content: center;
}

.core-values .circle {
    aspect-ratio: 1 / 1;
    max-width: 35.6%;
    width: 100%;
}

.core-values .circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-light-gray);
    padding: 103.5px 46.5px;
    margin-right: -40px;
    margin-bottom: -47px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;

}

.core-values-bottom .circle {
    margin: 0 -20px;
}

.core-values-bottom .circle:first-child {
    margin-right: -20px;
}

.core-values-bottom .circle:last-child {
    margin-left: -20px;
}

.core-values-top {
    margin-bottom: -46px;
}

.core-values-top .circle:first-child {
    margin-right: -20px;
}

.core-values-top .circle:last-child {
    margin-left: -20px;
}

.core-values .circle-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.core-values .circle img {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
}

.core-values-title {
    font-weight: 700;
    font-size: clamp(16px, 4.44vw, 40px);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 6px;
}

.core-values-desc {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: -0.05em;
}

.core-values .circle:hover .circle-inner {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

/* Contact Page */
.page-template-tpl-contact .footer-partner {
    display: none;
}

.page-template-tpl-contact .footer-main {
    padding-top: 53px;
}

.contact-main {
    padding: 130px 0 200px;
    overflow-x: hidden;
}

.contact-main .container {
    position: relative;
}

.contact-form-mb {
    display: none;
}

.contact-heading {
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 76px;
    font-size: clamp(36px, 4.44vw, 64px);
}

.contact-heading span {
    font-weight: 500;
    font-style: italic;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-left {
    width: 29.84%;
    margin-right: 29.3%;
}

.contact-right {
    width: 40.86%;
    padding-top: 17px;
}

.contact-form label {
    display: block;
}

.contact-form input:not([type="submit"]),
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-light-gray);
    padding: 16px 0;
    color: var(--color-light-gray);
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0;
}

.contact-form textarea {
    height: 247px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-light-gray);
}

.contact-form form p {
    margin-bottom: 14px;
}

.contact-form input[type="submit"] {
    margin-top: 15px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 17.5px;
    border: 1px solid var(--color-light-gray);
    color: var(--color-light-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-form input[type="submit"]:hover {
    background: var(--color-light-gray);
    color: var(--color-blue);
}

.contact-info {
    font-size: 24px;
    line-height: 29px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    letter-spacing: 0;
    margin-bottom: 43px;
    max-width: 96%;
}

.contact-info h4 {
    font-weight: 600;
}

.contact-info p {
    font-weight: 300;

}

.contact-socials {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 76px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* Footer */

.footer-partner {
    margin-bottom: -188px;
    position: relative;
}


.footer-partner-content {
    background-image: url('../images/become-a-partner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 434px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.footer-partner-heading {
    font-weight: 600;
    font-size: clamp(20px, 4.44vw, 64px);
    line-height: 104%;
    text-transform: uppercase;
    margin-bottom: 35px;

}

.footer-partner-content a {
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 0;
    border: 1px solid var(--color-light-gray);
    width: 100%;
    max-width: 444px;
    padding: 18px;
    border-radius: 50px;
    text-align: center;
}

.footer-partner-content a:hover {
    background: var(--color-light-gray);
    color: var(--color-blue);
}

.footer-main {
    background: #000000;
    padding: 280px 0 39px 0;
}

.footer-logo {
    max-width: 415px;
    width: 31%;
}

.footer-main-inner {
    display: flex;
    gap: 49px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 107px;
}

.footer-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 175px;
    padding-right: 116px;
    justify-content: space-between;
}

.footer-links-title {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 20px;
    letter-spacing: 0;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
}

.footer-bottom-links p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
}

/* Not Found */

.not-found-content {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 200px 0;
}

.not-found-content h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

.not-found-content p {
    margin-bottom: 30px;
    text-align: center;
}

.not-found-img {
    max-width: 500px;
    margin: 0 auto 20px;
}

.not-found-img img {
    margin-left: 14%;
}


@media (max-width:1280px) {
    .footer-menus {
        gap: 30px 100px;
        padding-right: 30px;
    }

    .home-about-left {
        width: 40%;
        margin-right: 10%;
    }

    .home-about-right {
        width: 50%;
        padding-right: 0;
    }

    .home-hero-content {
        right: 12%;
    }

    .core-values .circle-inner {
        padding: 60px 45px;
    }

    .core-values .circle-content {
        flex: 1 1 auto;
    }

    .core-values .circle {
        max-width: 33.33%;
    }

    .core-values-top {
        margin-bottom: -3.5%;
    }

    /* Contact Page */
    .contact-left {
        width: 30%;
        margin-right: 25%;
    }

    .contact-right {
        width: 45%;
    }
}

@media (max-width: 1023px) {
    .blur-shape {
        width: 300px;
        height: 500px;
    }



    .btn-primary {
        padding: 20px 40px;
    }

    .header .site-branding a {
        max-width: 150px;
    }

    .header-inner {
        padding: 20px 0;
    }

    .header .menu-toggle {
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 5px;
        background: #FFFFFF33;
        backdrop-filter: blur(12.4px);
        -webkit-backdrop-filter: blur(12.4px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 100;
    }

    .header .main-navigation {
        position: absolute;
        top: 100%;
        right: 16px;
        z-index: 99;
        transform: translateY(-50%);
        transform-origin: top;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;

    }

    .header .main-navigation.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;

    }

    .header .main-navigation ul {
        flex-direction: column;
        border-radius: 5px;
        backdrop-filter: blur(12.4px);
        -webkit-backdrop-filter: blur(12.4px);
        background: #FFFFFF33;
        padding: 2px 0;
    }

    .header .main-navigation ul li a {
        padding: 6px 8px;
        min-width: auto;
        border-radius: 0;
    }

    .header .main-navigation .hover-bg {
        display: none;
    }

    .header-right {
        gap: 16px;
    }

    .home-hero {
        height: 600px;
    }

    .home-hero-content {
        right: 6%;
    }


    .home-hero-content h1 {
        max-width: 400px;
    }

    .home-services-list {
        gap: 100px;
    }

    .home-services-item {
        width: calc(50% - 50px);
        padding: 40px 29px;
    }

    .home-services-item-inner {
        flex: 1 1 auto;
    }

    .home-about {
        padding: 100px 0;
    }


    .home-about-main {
        gap: 30px;
    }

    .home-about-left {
        width: 100%;
        margin-right: 0;
    }

    .home-about-right {
        width: 100%;
    }

    .vl-hero {
        height: 450px;
    }


    .core-values {
        display: none;
    }

    .core-values-mb {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .core-values-mb .circle:first-child {
        max-width: 100%;
        aspect-ratio: unset;
        margin: 0 !important;
        margin-bottom: -5.6% !important;
    }


    .core-values-mb .circle {
        max-width: 50%;
    }

    .core-values-mb .circle:nth-child(odd) {
        margin-left: -20px;
    }

    .core-values-mb .circle:nth-child(even) {
        margin-right: -20px;
    }

    .core-values-mb .circle:first-child .circle-inner {
        max-width: 50%;
        height: 100%;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    /* Contact  Page */
    .contact-left {
        width: 100%;
        margin-right: 0%;
    }

    .contact-main .blur-shape {
        top: -200px;
        left: -100px;
    }

    .contact-right {
        display: none;
    }

    .contact-form-mb {
        display: block;
    }

    .contact-main {
        padding: 80px 0 150px;
    }

    .contact-heading {
        margin-bottom: 48px;
    }

    .contact-socials {
        padding-top: 30px;
    }

    /* Footer */

    .footer-menus {
        gap: 30px 80px;
        padding-right: 15px;
    }

    .footer-main-inner {
        margin-bottom: 80px;
    }

    .footer-partner-content {
        min-height: 300px;
    }


    .footer-partner-content a {
        max-width: 250px;
    }
}

@media (max-width:767px) {
    .blur-shape {
        width: 200px;
        height: 280px;
    }

    .contact-main .blur-shape {
        top: -100px;
        left: -50px;
    }

    .cs-subheading {
        font-size: 16px;
        line-height: 19px;
    }

    .btn-primary {
        font-size: 13px;
        line-height: 16px;
        padding: 12px 16px;
    }

    .header .site-branding a {
        max-width: 78px;
    }

    .header-inner {
        padding: 12px 0;
    }

    .header .main-navigation ul li a {
        font-size: 14px;
        line-height: 17px;
        padding: 6px 8px;

    }

    .home-hero {
        height: 100%;
        aspect-ratio: 393 / 332;
    }

    .home-hero-content {
        bottom: 12%;
    }

    .home-hero-content h1 {
        max-width: 46%;
        margin-left: auto;
    }

    .brands-distribute-item {
        width: 100%;
    }

    .home-services-list {
        gap: 64px;
    }

    .home-services-item {
        width: calc(50% - 32px);
        padding: 26px 14px;
    }



    .home-about {
        padding-top: 40px;
        padding-bottom: 58px;
    }

    .home-about-subheading {
        margin-bottom: 16px;
    }


    .home-about-content p {
        font-size: 14px;
        line-height: 120%;
        padding-bottom: 1rem;
    }

    .home-services {
        padding-top: 0;
        padding-bottom: 40px;
    }

    .home-services-main::before {
        width: 150%;
    }

    .home-services .cs-subheading {
        margin-bottom: 0;
    }

    .home-services-main {
        padding: 40px 0;
        position: relative;
    }

    .vl-hero {
        height: 100%;
        width: 100%;
        aspect-ratio: 393 / 220;
    }

    .vl-hero-content {
        bottom: 24px;
        left: 24px;
    }

    .vl-content-main {
        padding-top: 27px;
        padding-bottom: 50px;
    }

    .core-values-mb .circle:first-child .circle-inner {
        max-width: 52.7%;
    }

    .core-values-title {
        font-size: 16px;
        line-height: 19px;
    }

    .core-values-mb .circle {
        max-width: 52.7%;
    }

    .core-values-mb .circle:nth-child(odd) {
        margin-left: -10px;
    }

    .core-values-mb .circle:nth-child(even) {
        margin-right: -10px;
    }

    .core-values .circle-inner {
        padding: 39.5px 24.5px;
    }

    .core-values-title {
        margin-bottom: 4px;
    }

    .core-values-desc {
        font-size: 10px;
        line-height: 1.2;
    }

    .core-values .circle img {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
    }

    .vl-content-main .blur-shape {
        display: none;
    }

    .brands-distribute .cs-subheading {
        margin-bottom: 20px;
    }

    .brands-distribute {
        padding-bottom: 24px;
    }

    .contact-main {
        padding: 38px 0 46px;
    }

    .contact-form form p {
        margin-bottom: 42px;
    }

    .contact-form form p:last-of-type {
        margin-top: -9px;
        margin-bottom: 27px;
    }

    .contact-form textarea {
        height: 140px;
    }

    .contact-form input:not([type="submit"]),
    .contact-form textarea {
        padding: 8px 0;
        font-size: 14px;
        line-height: 17px;
    }

    .contact-form input[type="submit"] {
        margin-top: 0;
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0;
        padding: 11px;
    }

    .contact-info {
        font-size: 16px;
        line-height: 19px;
        gap: 4px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 17px;
    }

    .contact-socials a {
        width: 24px;
        height: 24px;
    }

    .contact-socials {
        padding-top: 0;
        gap: 54px;
    }

    .page-template-tpl-contact .footer-main {
        padding-top: 32px;
    }

    /* Footer */
    .footer-main-inner {
        flex-direction: column-reverse;
        margin-bottom: 47px;
        gap: 40px;
    }

    .footer-links-title {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 15px;
    }

    .footer-links ul li a {
        font-size: 12px;
        line-height: 15px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-logo {
        max-width: 173px;
        width: 100%;
    }

    .footer-menus {
        gap: 30px 126px;
        justify-content: unset;
    }

    .footer-bottom-links {
        gap: 16px 36px;
        justify-content: center;
    }

    .footer-bottom-links a {
        font-size: 10px;
        line-height: 12px;
    }

    .footer-bottom-links p {
        font-size: 10px;
        line-height: 12px;
    }

    .footer-main {
        padding: 136px 0 27px;
    }

    .footer-partner-heading {
        margin-bottom: 16px;
    }

    .footer-partner {
        margin-bottom: -90px;
    }

    .footer-partner-content a {
        font-size: 13px;
        line-height: 16px;
        max-width: 153px;
        padding: 12px 16px;
    }

    .footer-partner-content {
        min-height: 157px;
        padding-top: 45px;
        padding-bottom: 35px;
    }

    .not-found-content {
        min-height: 80vh;
        padding: 100px 0;
    }

    .not-found-content h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .not-found-content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 19px;
    }

    .not-found-img {
        max-width: 80%;
    }

    .not-found-img img {
        margin-left: 12%;
    }

    .not-found-content a {
        padding: 12px 24px;
    }

}

@media (max-width:480px) {
    .home-services-item {
        max-width: 134px;
    }

    .home-services-title {
        font-size: 14px;
        line-height: 17px;
    }

    .home-services-item-inner {
        gap: 4px;
    }

    .home-services-item img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width:392px) {
    .home-hero-content {
        bottom: 30px;
        right: 0;
    }

    .core-values .circle-inner {
        padding: 30px 24px;
    }
}