@font-face {
    font-family: 'Outfit';
    src: url('/fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal;
}
.menu-link:hover{
    color: #81C8D8;
    transition: 0.3s ease-in-out;
    }
*{
    line-height: 130%;;
}
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span,
    a,
    div,
    p{
    font-family: 'Outfit', sans-serif;
}

.slide-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0A1535;
    opacity: .55;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
}
.tab-btn.active { color: #81C8D8; }
.tab-content { 
    position:absolute; inset:0; 
    opacity:0; transform:translateY(10px);
    transition:opacity .3s ease, transform .3s ease; 
    pointer-events:none;
}
.tab-content.active {
    opacity:1; transform:translateY(0); 
    pointer-events:auto;
}
      

.home-hero-slider {
    isolation: isolate;

    margin-top: 126px;
}

@media (max-width: 1279px) {
    .home-hero-slider {
        margin-top: 92px;
    }
}

@media (max-width: 767px) {
    .home-hero-slider {
        margin-top: 86px;
    }
}

.hero-swiper {
    width: 100%;
}

.hero-swiper .swiper-slide {
    height: auto;
}

.hero-swiper h1 p,
.hero-swiper h1 div {
    margin: 0;
}


.hero-pagination {
    position: static !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: fit-content !important;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid #8EB6DD;
    border-radius: 999px;

    background: rgba(194, 214, 234, 0.85);
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    margin: 0 !important;

    border-radius: 50%;

    background: #ffffff;

    opacity: 1;

    transition:
        width .3s ease,
        border-radius .3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 30px;

    border-radius: 999px;

    background: #ffffff;
}

@media (max-width: 1023px) {

    .home-hero-slider .container {
        min-height: auto;
        padding-top: 45px;
        padding-bottom: 85px;
    }

}

@media (max-width: 639px) {

    .home-hero-slider .container {
        padding-top: 30px;
        padding-bottom: 80px;
    }

    .hero-pagination {
        gap: 6px;
        padding: 7px 11px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }

}


.home-about-section {
    position: relative;
    width: 100%;
}




.home-about-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 95px 40px;
}



.home-about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr) minmax(0, 1.08fr);

    align-items: center;

    gap: 85px;
}


.about-visual-wrap {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-visual {
    position: relative;

    width: 100%;
    max-width: 570px;

    height: 535px;

    flex-shrink: 0;
}



.about-main-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 78%;
    height: 100%;

    border-radius: 30px;

    overflow: hidden;

    background: #f3f4f6;

    opacity: 0;

    transform: translateY(25px) scale(.985);

    transition:
        transform .9s cubic-bezier(.16, 1, .3, 1),
        opacity .7s ease;
}


.about-main-image img,
.about-floating-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.home-about-section.is-visible .about-main-image {
    opacity: 1;

    transform: translateY(0) scale(1);
}


.about-floating-image {
    position: absolute;

    z-index: 3;

    overflow: hidden;

    border: 10px solid #fff;

    border-radius: 30px;

    background: #fff;

    opacity: 0;

    will-change: transform, opacity;

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1),
        opacity .7s ease;
}


/* Sağ üst */
.about-floating-top {
    width: 47%;
    height: 54%;

    top: -2px;
    right: 0;

    transform: translate(90px, -45px);
}


/* Sol alt */
.about-floating-bottom {
    width: 36%;
    height: 31%;

    left: -2px;
    bottom: -2px;

    transform: translate(-90px, 50px);
}


.home-about-section.is-visible .about-floating-top,
.home-about-section.is-visible .about-floating-bottom {
    opacity: 1;

    transform: translate(0, 0);
}



.about-content {
    width: 100%;

    max-width: 690px;

    opacity: 0;

    transform: translateX(35px);

    transition:
        transform .9s cubic-bezier(.16, 1, .3, 1),
        opacity .7s ease;
}


.home-about-section.is-visible .about-content {
    opacity: 1;

    transform: translateX(0);
}




.about-eyebrow {
    margin-bottom: 14px;

    color: #062A9C;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
}


.about-title {
    max-width: 650px;

    margin: 0;

    color: #02034B;

    font-size: clamp(34px, 2.5vw, 46px);
    font-weight: 700;

    line-height: 1.16;

    letter-spacing: -0.02em;
}


.about-title span,
.about-title p,
.about-title div {
    line-height: inherit;
}


.about-title p {
    margin: 0;
}


.about-description {
    max-width: 650px;

    margin-top: 20px;

    color: #5A6070;

    font-size: 16px;

    line-height: 1.85;
}


.about-description p {
    margin: 0;
}




.about-info-row {
    display: grid;

    grid-template-columns:
        minmax(220px, .9fr) minmax(245px, 1.1fr);

    gap: 34px;

    margin-top: 28px;
}



.about-features {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 16px;
}


.about-feature-item {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}


.about-check {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2BAADF;

    color: #fff;
}


.about-feature-text {
    color: #101449;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.35;
}




.about-stats {
    min-width: 0;

    padding-left: 30px;

    border-left: 1px solid #e5e7eb;
}



.about-rating {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 66px;
}


.about-avatar {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    overflow: hidden;

    border: 3px solid #fff;
    border-radius: 50%;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}


.about-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-rating-content {
    min-width: 0;
}


.about-stars {
    display: flex;

    align-items: center;

    gap: 2px;

    margin-bottom: 5px;

    color: #FFB313;
}


.about-rating-text {
    color: #60636D;

    font-size: 14px;

    line-height: 1.35;
}



.about-experience {
    width: 100%;

    max-width: 260px;

    min-height: 106px;

    margin-top: 17px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-radius: 9px;

    background: #2BAADF;

    color: #fff;
}


.about-experience-number {
    flex-shrink: 0;

    font-size: 52px;
    font-weight: 700;

    line-height: 1;
}


.about-experience-number * {
    font-size: inherit !important;

    line-height: inherit !important;
}


.about-experience-divider {
    width: 1px;
    height: 51px;

    flex: 0 0 1px;

    background: rgba(255, 255, 255, .4);
}


.about-experience-label {
    max-width: 100px;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.25;
}


.about-experience-label * {
    font-size: inherit !important;

    line-height: inherit !important;
}


.about-button-wrap {
    margin-top: 30px;
}


.about-button {
    min-height: 50px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 6px;

    background: #062A9C;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    transition:
        background-color .3s ease,
        transform .3s ease;
}


.about-button:hover {
    background: #041F78;

    transform: translateY(-2px);
}




@media (max-width: 1399px) {

    .home-about-container {
        max-width: 1280px;

        padding: 80px 35px;
    }


    .home-about-grid {
        grid-template-columns:
            minmax(0, .95fr) minmax(0, 1.05fr);

        gap: 55px;
    }


    .about-visual {
        max-width: 500px;
        height: 475px;
    }


    .about-title {
        font-size: 38px;
    }


    .about-info-row {
        grid-template-columns: minmax(190px, .9fr) minmax(210px, 1fr);

        gap: 22px;
    }


    .about-stats {
        padding-left: 22px;
    }


    .about-experience {
        max-width: 235px;

        padding: 16px 18px;
    }


    .about-experience-number {
        font-size: 46px;
    }

}

@media (max-width: 1099px) {

    .home-about-container {
        max-width: 900px;

        padding: 75px 30px;
    }


    .home-about-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .about-visual {
        max-width: 580px;
        height: 525px;
    }


    .about-content {
        max-width: 720px;

        margin: 0 auto;
    }


    .about-info-row {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

}


@media (max-width: 767px) {

    .home-about-container {
        padding: 60px 20px;
    }


    .home-about-grid {
        gap: 50px;
    }


    .about-visual {
        max-width: 570px;

        height: clamp(360px, 85vw, 500px);
    }


    .about-main-image {
        width: 80%;

        border-radius: 24px;
    }


    .about-floating-image {
        border-width: 7px;

        border-radius: 22px;
    }


    .about-floating-top {
        width: 47%;
        height: 52%;

        transform: translate(55px, -30px);
    }


    .about-floating-bottom {
        width: 38%;
        height: 30%;

        transform: translate(-55px, 35px);
    }


    .about-title {
        font-size: clamp(30px, 8vw, 38px);
    }


    .about-description {
        font-size: 15px;
    }


    /*
    * Telefonda sağ alt alan artık kesinlikle yan yana sıkışmıyor.
    */
    .about-info-row {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .about-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px 18px;
    }


    .about-stats {
        padding-top: 24px;
        padding-left: 0;

        border-top: 1px solid #e5e7eb;
        border-left: 0;
    }


    .about-experience {
        max-width: 280px;
    }

}



@media (max-width: 520px) {

    .about-visual {
        height: 350px;
    }


    .about-features {
        grid-template-columns: 1fr;
    }


    .about-title {
        font-size: 30px;
    }


    .about-experience {
        width: 100%;
        max-width: 100%;
    }


    .about-button {
        width: 100%;
    }

}

@media (prefers-reduced-motion: reduce) {

    .about-main-image,
    .about-floating-image,
    .about-content {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}      
.home-services-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #edf5f7;
}


.home-services-layout {
    display: grid;

    grid-template-columns:
        minmax(310px, 1fr) minmax(0, 2fr);

    width: 100%;
}


.home-services-info {
    position: relative;

    min-height: 470px;

    padding: 70px 50px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(145deg,
            #e8f3f6 0%,
            #f1f7f8 100%);

    opacity: 0;

    transform: translateX(-50px);

    transition:
        opacity .85s ease,
        transform .9s cubic-bezier(.16, 1, .3, 1);
}



.home-services-info::after {
    position: absolute;

    content: "";

    width: 340px;
    height: 340px;

    left: -160px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(43, 170, 223, .08);

    pointer-events: none;
}


.home-services-section.is-visible .home-services-info {
    opacity: 1;

    transform: translateX(0);
}


.home-services-info-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 410px;
}


.home-services-eyebrow {
    margin-bottom: 16px;

    color: #062a9c;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;

    text-transform: uppercase;

    letter-spacing: .02em;
}



.home-services-title {
    margin: 0;

    color: #02034b;

    font-size: clamp(34px, 3vw, 48px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -.025em;
}


.home-services-title p,
.home-services-title div {
    margin: 0;

    line-height: inherit;
}


.home-services-title span {
    line-height: inherit;
}


.home-services-description {
    margin-top: 22px;

    color: #586170;

    font-size: 16px;

    line-height: 1.8;
}


.home-services-description p {
    margin: 0;
}



.home-services-button {
    width: fit-content;

    min-height: 50px;

    margin-top: 32px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(6, 42, 156, .35);

    border-radius: 6px;

    color: #062a9c;

    background: rgba(255, 255, 255, .45);

    font-size: 14px;
    font-weight: 700;

    transition:
        color .3s ease,
        background-color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.home-services-button:hover {
    color: #fff;

    background: #062a9c;

    border-color: #062a9c;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(6, 42, 156, .15);
}


.home-services-button-icon {
    transition:
        transform .3s ease;
}


.home-services-button:hover .home-services-button-icon {
    transform:
        translate(2px, -2px);
}


.home-services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    align-items: stretch;

    min-width: 0;
}


.home-service-card {
    position: relative;

    min-width: 0;
    min-height: 470px;

    overflow: hidden;

    isolation: isolate;

    opacity: 0;

    transform:
        translateY(45px) scale(.97);

    transition:
        opacity .7s ease var(--service-delay),
        transform .85s cubic-bezier(.16, 1, .3, 1) var(--service-delay);
}


.home-services-section.is-visible .home-service-card {
    opacity: 1;

    transform:
        translateY(0) scale(1);
}


.home-service-card-image {
    position: absolute;

    inset: 0;

    z-index: -3;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.16, 1, .3, 1);
}


.home-service-card:hover .home-service-card-image {
    transform: scale(1.075);
}



.home-service-card-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(to top,
            rgba(2, 3, 75, .72) 0%,
            rgba(2, 3, 75, .23) 48%,
            rgba(2, 3, 75, .06) 100%);

    transition:
        background .4s ease;
}


.home-service-card:hover .home-service-card-overlay {
    background:
        linear-gradient(to top,
            rgba(6, 42, 156, .82) 0%,
            rgba(43, 170, 223, .37) 55%,
            rgba(43, 170, 223, .10) 100%);
}


.home-service-card-glow {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        rgba(43, 170, 223, 0);

    transition:
        background-color .4s ease;
}


.home-service-card:hover .home-service-card-glow {
    background:
        rgba(43, 170, 223, .08);
}



.home-service-card-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    padding: 24px 22px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    transition:
        transform .35s ease;
}


.home-service-card:hover .home-service-card-content {
    transform: translateY(-5px);
}


.home-service-card-title {
    margin: 0;

    color: #fff;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.35;
}



.home-service-card-arrow {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2baadf;

    color: #fff;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, .08);

    transition:
        color .3s ease,
        background-color .3s ease,
        transform .3s ease;
}


.home-service-card:hover .home-service-card-arrow {
    color: #062a9c;

    background: #fff;

    transform:
        translate(3px, -3px);
}


.home-services-empty {
    grid-column: 1 / -1;

    min-height: 350px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    color: #5a6070;

    font-size: 16px;
}


@media (max-width: 1399px) {

    .home-services-info {
        padding:
            60px 36px;
    }


    .home-services-title {
        font-size: 38px;
    }


    .home-service-card {
        min-height: 420px;
    }


    .home-service-card-content {
        padding:
            22px 17px;
    }


    .home-service-card-title {
        font-size: 16px;
    }

}

@media (max-width: 1199px) {

    .home-services-layout {
        grid-template-columns:
            minmax(290px, .85fr) minmax(0, 1.6fr);
    }


    .home-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-service-card {
        min-height: 330px;
    }

}


@media (max-width: 900px) {

    .home-services-layout {
        grid-template-columns: 1fr;
    }


    .home-services-info {
        min-height: auto;

        padding:
            60px 30px;
    }


    .home-services-info-inner {
        max-width: 650px;
    }


    .home-services-title {
        max-width: 500px;
    }


    .home-services-description {
        max-width: 600px;
    }


    .home-service-card {
        min-height: 350px;
    }

}

@media (max-width: 639px) {

    .home-services-info {
        padding:
            50px 20px;
    }


    .home-services-eyebrow {
        margin-bottom: 12px;

        font-size: 12px;
    }


    .home-services-title {
        font-size: 30px;
    }


    .home-services-description {
        margin-top: 18px;

        font-size: 15px;
    }


    .home-services-button {
        margin-top: 26px;
    }


    .home-services-grid {
        grid-template-columns: 1fr;
    }


    .home-service-card {
        min-height: 320px;
    }


    .home-service-card-content {
        padding: 20px;
    }


    .home-service-card-title {
        font-size: 18px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .home-services-info,
    .home-service-card {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .home-service-card-image,
    .home-service-card-content,
    .home-service-card-arrow {
        transition: none !important;
    }

}
.about-counter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 38px 24px;
    width: 100%;
    margin: 52px auto 0;
}

.about-counter-item {
    flex: 0 1 190px;
    min-width: 170px;
    text-align: center;
}

.about-values-card {
    position: relative;
    height: 100%;
    border: 1px solid #dfe3e8;
    border-radius: 9px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-values-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 36px;
    width: 60px;
    height: 6px;
    background: #022299;
}

.about-values-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px rgba(2, 34, 153, .08);
}

.about-values-card-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

@media (min-width: 1100px) {
    .about-counter-list {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 20px;
    }

    .about-counter-item {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .about-counter-list {
        gap: 34px 12px;
        margin-top: 40px;
    }

    .about-counter-item {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

    .about-values-card::before {
        left: 24px;
        width: 52px;
    }

    .about-values-card-icon img {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 420px) {
    .about-counter-item {
        flex: 0 0 100%;
    }
}
        .blog-list-page {
    background: #fff;
    padding: 90px 0
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.blog-card {
    overflow: hidden;
    border: 1px solid #eceef2;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .045);
    transition: transform .3s ease, box-shadow .3s ease
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .09)
}

.blog-card-image {
    height: 250px;
    overflow: hidden
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04)
}

.blog-card-body {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 28px 32px 30px
}

.blog-card-title {
    color: #02034b;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28
}

.blog-card-text {
    margin-top: 22px;
    color: #505765;
    font-size: 15px;
    line-height: 1.65
}

.blog-card-button {
    width: max-content;
    margin-top: auto;
    padding-top: 24px
}

.blog-card-button span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #b9c2de;
    border-radius: 6px;
    color: #062a9c;
    font-size: 14px;
    font-weight: 700;
    transition: .25s
}

.blog-card:hover .blog-card-button span {
    color: #fff;
    border-color: #062a9c;
    background: #062a9c
}

.blog-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease
}

.blog-reveal.show {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .blog-list-page {
        padding: 70px 0
    }
}

@media(max-width:639px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .blog-list-page {
        padding: 45px 0
    }

    .blog-card-image {
        height: 220px
    }

    .blog-card-body {
        min-height: 260px;
        padding: 24px
    }

    .blog-card-title {
        font-size: 20px
    }
}
        .blog-detail-page {
    background: #fff;
    padding: 80px 0 90px
}

.blog-detail-wrap {
    width: min(100%, 1120px);
    margin: 0 auto
}

.blog-main-image {
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6
}

.blog-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-content {
    margin-top: 50px;
    color: #454c59;
    font-size: 16px;
    line-height: 1.8
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #02034b;
    font-weight: 700;
    line-height: 1.3
}

.blog-content h2 {
    margin: 30px 0 12px;
    font-size: 30px
}

.blog-content h3 {
    margin: 26px 0 10px;
    font-size: 24px
}

.blog-content h4 {
    margin: 22px 0 9px;
    font-size: 20px
}

.blog-content p {
    margin: 0 0 15px
}

.blog-content ul {
    margin: 14px 0 20px;
    padding-left: 20px;
    list-style: disc
}

.blog-content ol {
    margin: 14px 0 20px;
    padding-left: 22px;
    list-style: decimal
}

.blog-content li {
    margin: 6px 0
}

.blog-content a {
    color: #ff6438;
    font-weight: 600
}

.blog-quote {
    position: relative;
    margin: 42px 0;
    padding: 38px 80px 38px 42px;
    border-left: 5px solid #062a9c;
    background: #f7f7f7;
    color: #02034b;
    font-size: 19px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.65
}

.blog-quote:after {
    content: "”";
    position: absolute;
    right: 28px;
    top: 8px;
    color: #dedede;
    font-size: 95px;
    font-style: normal;
    font-weight: 800;
    line-height: 1
}

.blog-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-top: 46px
}

.blog-highlight-image {
    overflow: hidden;
    border-radius: 10px
}

.blog-highlight-image img {
    width: 100%;
    height: 380px;
    object-fit: cover
}

.blog-highlight-content h2 {
    color: #02034b;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3
}

.blog-highlight-content p {
    margin-top: 12px;
    color: #4d5562;
    font-size: 15px;
    line-height: 1.75
}

.blog-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 20px
}

.blog-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #02034b;
    font-size: 17px;
    font-weight: 500
}

.blog-highlight-check {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #062a9c;
    color: #fff;
    font-size: 13px;
    font-weight: 800
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 42px;
    padding: 22px 0;
    border-top: 1px solid #e2e4e8;
    border-bottom: 1px solid #e2e4e8
}

.blog-tags,
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #02034b;
    font-size: 14px
}

.blog-tags strong,
.blog-share strong {
    font-weight: 700
}

.blog-tag {
    color: #4e5560
}

.blog-share a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #062a9c;
    transition: .2s
}

.blog-share a:hover {
    background: #eef3ff
}

@media(max-width:900px) {
    .blog-main-image {
        height: 430px
    }

    .blog-highlight {
        grid-template-columns: 1fr
    }

    .blog-highlight-image img {
        height: 420px
    }
}

@media(max-width:639px) {
    .blog-detail-page {
        padding: 40px 0 55px
    }

    .blog-main-image {
        height: 270px
    }

    .blog-content {
        margin-top: 30px;
        font-size: 15px
    }

    .blog-content h2 {
        font-size: 25px
    }

    .blog-content h3 {
        font-size: 21px
    }

    .blog-quote {
        margin: 30px 0;
        padding: 28px 48px 28px 24px;
        font-size: 16px
    }

    .blog-quote:after {
        right: 14px;
        font-size: 70px
    }

    .blog-highlight {
        margin-top: 32px;
        gap: 22px
    }

    .blog-highlight-image img {
        height: 280px
    }

    .blog-highlight-content h2 {
        font-size: 25px
    }

    .blog-meta {
        align-items: flex-start;
        flex-direction: column
    }
}
        .contact-map iframe {
    width: 100% !important;
    height: 380px !important;
    border: 0 !important;
    display: block
}

.contact-info-title {
    color: #02034b;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25
}

.contact-info-text {
    color: #424958;
    font-size: 16px;
    line-height: 1.45
}

.contact-info-phone {
    display: block;
    color: #02034b;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2
}

.contact-form-input {
    width: 100%;
    height: 50px;
    border: 1px solid #d9dde5;
    background: #fff;
    padding: 0 20px;
    color: #222;
    border-radius: 4px;
    outline: none;
    transition: .2s
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #062a9c;
    box-shadow: 0 0 0 3px rgba(6, 42, 156, .08)
}

.contact-form-textarea {
    width: 100%;
    min-height: 135px;
    border: 1px solid #d9dde5;
    background: #fff;
    padding: 16px 20px;
    color: #222;
    border-radius: 4px;
    resize: vertical;
    outline: none;
    transition: .2s
}

@media(max-width:767px) {
    .contact-map iframe {
        height: 300px !important
    }

    .contact-info-title {
        font-size: 21px
    }

    .contact-info-phone {
        font-size: 22px
    }
}
    .home-expertise-section,
.home-success-section,
.home-process-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-expertise-section {
    background: #062a9c;
    color: #fff;
    padding: 105px 24px;
}

.home-expertise-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, .95fr) minmax(0, 1.15fr);

    align-items: center;

    gap: 76px;
}

.home-expertise-image {
    width: 100%;
    height: 380px;

    overflow: hidden;

    border-radius: 14px;
}

.home-expertise-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.home-expertise-image:hover img {
    transform: scale(1.04);
}


.home-expertise-title {
    max-width: 590px;

    margin: 0 0 28px;

    color: #fff;

    font-size: clamp(34px, 3vw, 45px);
    font-weight: 700;

    line-height: 1.13;

    letter-spacing: -.025em;
}


.home-expertise-bottom {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(220px, .8fr);

    gap: 42px;
}


.home-expertise-copy {
    min-width: 0;
}


.home-expertise-text {
    color: rgba(255, 255, 255, .84);

    font-size: 15px;

    line-height: 1.8;
}

.home-expertise-text p {
    margin: 0;
}


.home-expertise-button {
    width: fit-content;

    min-height: 50px;

    margin-top: 26px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    background: #fff;

    border-radius: 6px;

    color: #062a9c;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .3s ease,
        background-color .3s ease;
}

.home-expertise-button:hover {
    background: #27abe2;

    transform: translateY(-2px);
}


.home-expertise-stats {
    padding-left: 28px;

    border-left:
        2px solid rgba(255, 255, 255, .16);

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 42px;
}


.home-expertise-stat {
    display: flex;

    align-items: center;

    gap: 18px;
}


.home-expertise-stat img {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    object-fit: contain;
}


.home-expertise-stat strong {
    display: block;

    color: #fff;

    font-size: 36px;
    font-weight: 700;

    line-height: 1;
}


.home-expertise-stat span {
    display: block;

    margin-top: 8px;

    color: #fff;

    font-size: 14px;
}


.home-success-section {
    background: #fff;

    padding: 100px 24px 0;

    color: #02034b;
}


.home-success-pattern {
    position: absolute;

    width: min(920px, 65vw);

    left: 50%;
    top: 40%;

    transform:
        translate(-50%, -50%);

    opacity: .15;

    pointer-events: none;
}


.home-success-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1220px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .85fr) minmax(0, 1.15fr);

    align-items: center;

    gap: 90px;
}


.home-success-content {
    max-width: 500px;
}


.home-success-eyebrow {
    margin-bottom: 15px;

    color: #062a9c;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}


.home-success-title {
    margin: 0;

    color: #02034b;

    font-size: clamp(32px, 3vw, 43px);
    font-weight: 700;

    line-height: 1.14;

    letter-spacing: -.02em;
}


.home-success-text {
    margin-top: 24px;

    color: #626675;

    font-size: 16px;

    line-height: 1.8;
}

.home-success-text p {
    margin: 0;
}


.home-success-progress {
    margin-top: 25px;
}


.home-success-progress-head {
    margin-bottom: 10px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #02034b;

    font-size: 15px;
}


.home-success-progress-track {
    width: 100%;
    height: 8px;

    overflow: hidden;

    background: #dfe5e8;

    border-radius: 100px;
}


.home-success-progress-bar {
    width: var(--progress-width);
    height: 100%;

    background: #27abe2;

    border-radius: inherit;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 1.4s cubic-bezier(.16, 1, .3, 1);
}


.home-success-section.is-visible .home-success-progress-bar {
    transform: scaleX(1);
}


.home-success-image {
    width: 100%;
    height: 460px;

    overflow: hidden;
}


.home-success-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.home-success-marquee {
    position: relative;

    z-index: 4;

    width: calc(100% + 48px);

    margin:
        85px -24px 0;

    overflow: hidden;

    white-space: nowrap;
}


.home-success-marquee-track {
    width: max-content;

    display: flex;

    align-items: center;

    animation:
        homeSuccessMarquee 26s linear infinite;
}


.home-success-marquee-item {
    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding-right: 30px;

    color: transparent;

    -webkit-text-stroke:
        1.4px #686b76;

    font-size: clamp(38px, 4.5vw, 66px);

    font-weight: 500;

    letter-spacing: .04em;

    line-height: 1.2;
}


.home-success-marquee-item b {
    color: #27abe2;

    -webkit-text-stroke: 0;

    font-size: .8em;
}


@keyframes homeSuccessMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


.home-process-section {
    min-height: 650px;

    padding: 105px 24px 120px;

    background: #062a9c;

    color: #fff;
}


.home-process-pattern {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .12;

    pointer-events: none;
}


.home-process-container {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1220px;

    margin: 0 auto;
}


.home-process-heading {
    text-align: center;
}


.home-process-eyebrow {
    margin-bottom: 13px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
}


.home-process-heading h2 {
    max-width: 470px;

    margin: 0 auto;

    color: #fff;

    font-size: clamp(34px, 3vw, 44px);
    font-weight: 700;

    line-height: 1.1;
}


.home-process-steps {
    margin-top: 62px;

    display: flex;

    align-items: flex-start;

    justify-content: center;
}


.home-process-step {
    width: 220px;

    flex: 0 0 220px;

    text-align: center;
}


.home-process-icon {
    position: relative;

    width: 105px;
    height: 105px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
}


.home-process-icon img {
    width: 56px;
    height: 56px;

    object-fit: contain;
}


.home-process-number {
    position: absolute;

    right: -2px;
    top: 0;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #27abe2;

    color: #fff;

    font-size: 12px;
    font-weight: 700;
}


.home-process-step h3 {
    margin: 0;

    color: #fff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;
}


.home-process-description {
    margin-top: 10px;

    color: rgba(255, 255, 255, .65);

    font-size: 14px;

    line-height: 1.65;
}


.home-process-description p {
    margin: 0;
}


.home-process-arrow {
    width: 120px;

    flex: 0 1 120px;

    margin: 27px 6px 0;

    color: #fff;
}


.home-process-arrow svg {
    width: 100%;
}



.home-reveal-section [data-reveal] {
    opacity: 0;

    transition:
        opacity .85s ease,
        transform .95s cubic-bezier(.16, 1, .3, 1);

    transition-delay:
        var(--reveal-delay, 0ms);
}


.home-reveal-section [data-reveal="left"] {
    transform: translateX(-50px);
}


.home-reveal-section [data-reveal="right"] {
    transform: translateX(50px);
}


.home-reveal-section [data-reveal="top"] {
    transform: translateY(-30px);
}


.home-reveal-section [data-reveal="step"] {
    transform: translateY(45px);
}


.home-reveal-section.is-visible [data-reveal] {
    opacity: 1;

    transform: translate(0, 0);
}



@media (max-width: 1100px) {

    .home-expertise-container {
        gap: 45px;
    }


    .home-expertise-bottom {
        grid-template-columns: 1fr;
    }


    .home-expertise-stats {
        padding-left: 0;

        padding-top: 25px;

        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, .2);

        flex-direction: row;

        justify-content: flex-start;
    }


    .home-success-container {
        gap: 45px;
    }


    .home-process-step {
        width: 180px;

        flex-basis: 180px;
    }


    .home-process-arrow {
        width: 70px;

        flex-basis: 70px;
    }

}



@media (max-width: 767px) {

    .home-expertise-section {
        padding:
            65px 20px;
    }


    .home-expertise-container,
    .home-success-container {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .home-expertise-image {
        height: 290px;
    }


    .home-expertise-title {
        font-size: 32px;
    }


    .home-expertise-stats {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .home-expertise-stat {
        align-items: flex-start;

        flex-direction: column;
    }


    .home-expertise-stat strong {
        font-size: 30px;
    }


    .home-success-section {
        padding:
            65px 20px 0;
    }


    .home-success-image {
        height: 300px;
    }


    .home-success-marquee {
        width: calc(100% + 40px);

        margin:
            60px -20px 0;
    }


    .home-success-marquee-item {
        font-size: 38px;
    }


    .home-process-section {
        min-height: auto;

        padding:
            70px 20px 80px;
    }


    .home-process-steps {
        margin-top: 50px;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 20px;
    }


    .home-process-step {
        width: auto;

        flex: initial;
    }


    .home-process-arrow {
        display: none;
    }

}


@media (max-width: 480px) {

    .home-process-steps {
        grid-template-columns: 1fr;
    }


    .home-expertise-stats {
        grid-template-columns: 1fr;
    }

}


@media (prefers-reduced-motion: reduce) {

    .home-reveal-section [data-reveal],
    .home-success-progress-bar {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .home-success-marquee-track {
        animation: none;
    }

}
        .references-page {
    background: #fff
}

.references-intro {
    padding: 105px 0 70px;
    text-align: center
}

.references-label {
    color: #062A9C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase
}

.references-title {
    max-width: 850px;
    margin: 15px auto 0;
    color: #02034B;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2
}

.references-text {
    max-width: 820px;
    margin: 22px auto 0;
    color: #5A6070;
    font-size: 15px;
    line-height: 1.8
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 90px
}

.reference-card {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border: 1px solid #E3E6EB;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: .3s
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: #BFC7D4;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07)
}

.reference-card h3 {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4
}

.reference-card p {
    margin-top: 10px;
    color: #5F6470;
    font-size: 14px;
    line-height: 1.5
}

.reference-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.reference-reveal.show {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:991px) {
    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .references-intro {
        padding: 80px 0 55px
    }

    .references-title {
        font-size: 36px
    }
}

@media(max-width:639px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 60px
    }

    .references-intro {
        padding: 55px 0 40px
    }

    .references-title {
        font-size: 30px
    }

    .references-text {
        font-size: 14px
    }

    .reference-card {
        min-height: 118px
    }
}
    .site-footer {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #02033b;
        color: #fff
    }

    .site-footer-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px
    }

    .footer-cta-wrap {
        position: relative;
        z-index: 10;
        padding-top: 34px
    }

    .footer-cta {
        position: relative;
        min-height: 140px;
        padding: 34px 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        overflow: hidden;
        border-radius: 0 0 12px 12px;
        background: #082b9d
    }

    .footer-cta-title {
        position: relative;
        z-index: 3;
        max-width: 500px;
        margin: 0;
        color: #fff;
        font-size: clamp(25px, 2.2vw, 34px);
        font-weight: 700;
        line-height: 1.15
    }

    .footer-cta-title p {
        margin: 0
    }

    .footer-cta-button {
        position: relative;
        z-index: 3;
        min-width: 160px;
        min-height: 52px;
        padding: 0 27px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 6px;
        background: #fff;
        color: #062a9c;
        font-size: 14px;
        font-weight: 700;
        transition: .3s
    }

    .footer-cta-button:hover {
        color: #fff;
        background: #2baadf;
        transform: translateY(-2px)
    }

    .footer-cta-deco {
        position: absolute;
        color: rgba(255, 255, 255, .11);
        pointer-events: none
    }

    .footer-cta-deco-left {
        width: 160px;
        left: -18px;
        top: -45px
    }

    .footer-cta-deco-right {
        width: 150px;
        right: 260px;
        top: 3px;
        transform: rotate(-14deg)
    }

    .footer-main {
        position: relative;
        z-index: 4;
        padding: 82px 0 65px;
        display: grid;
        grid-template-columns: minmax(240px, .85fr) minmax(400px, 1.7fr) minmax(240px, .8fr);
        gap: 55px
    }

    .footer-brand-logo {
        width: 100%;
        max-width: 300px;
        margin-bottom: 25px
    }

    .footer-about {
        max-width: 285px;
        color: rgba(255, 255, 255, .7);
        font-size: 14px;
        line-height: 1.9
    }

    .footer-about p {
        margin: 0
    }

    .footer-heading {
        position: relative;
        margin: 0 0 30px;
        padding-bottom: 18px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3
    }

    .footer-heading:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 28px;
        height: 4px;
        border-radius: 20px;
        background: #27abe2
    }

    .footer-services-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 17px 36px
    }

    .footer-service-link {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 11px;
        color: rgba(255, 255, 255, .68);
        font-size: 14px;
        line-height: 1.45;
        transition: .25s
    }

    .footer-service-link i {
        width: 16px;
        flex: 0 0 16px;
        color: #fff;
        font-size: 13px;
        text-align: center;
        transition: .25s
    }

    .footer-service-link:hover {
        color: #2baadf;
        transform: translateX(3px)
    }

    .footer-service-link:hover i {
        color: #2baadf
    }

    .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 22px
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        color: rgba(255, 255, 255, .72);
        font-size: 14px;
        line-height: 1.65
    }

    .footer-contact-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
        color: #fff;
        font-size: 18px
    }

    .footer-contact-item a {
        color: inherit;
        transition: .25s
    }

    .footer-contact-item a:hover {
        color: #2baadf
    }

    .footer-regions {
        position: relative;
        z-index: 4;
        padding: 46px 0 58px;
        border-top: 1px solid rgba(255, 255, 255, .23)
    }

    .footer-region-list {
        display: flex;
        flex-direction: column;
        gap: 25px
    }

    .footer-region-item h4 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4
    }

    .footer-region-item-text {
        color: rgba(255, 255, 255, .7);
        font-size: 12px;
        line-height: 1.9
    }

    .footer-region-item-text p {
        margin: 0
    }

    .footer-bottom {
        position: relative;
        z-index: 4;
        min-height: 95px;
        padding: 28px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 25px;
        border-top: 1px solid rgba(255, 255, 255, .15)
    }

    .footer-copyright {
        color: rgba(255, 255, 255, .55);
        font-size: 12px;
        line-height: 1.5
    }

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px
    }

    .footer-social-link {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .1);
        color: #fff;
        font-size: 16px;
        transition: .25s
    }

    .footer-social-link:hover {
        background: #2baadf;
        transform: translateY(-3px)
    }

    .footer-developer {
        text-align: right
    }

    .footer-developer-label {
        display: block;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, .35);
        font-size: 12px
    }

    .footer-developer-link {
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        transition: .25s
    }

    .footer-developer-link:hover {
        color: #2baadf
    }

    @media(max-width:1199px) {
        .footer-main {
            grid-template-columns: minmax(220px, .75fr) minmax(360px, 1.4fr);
            gap: 45px
        }

        .footer-contact {
            grid-column: 1/-1
        }

        .footer-contact-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px 35px
        }
    }

    @media(max-width:899px) {
        .footer-cta {
            padding: 30px
        }

        .footer-cta-deco-right {
            right: 190px
        }

        .footer-main {
            grid-template-columns: 1fr 1fr;
            padding-top: 65px
        }

        .footer-contact {
            grid-column: 1/-1
        }

        .footer-bottom {
            grid-template-columns: 1fr;
            text-align: center
        }

        .footer-copyright {
            order: 2
        }

        .footer-social {
            order: 1
        }

        .footer-developer {
            order: 3;
            text-align: center
        }
    }

    @media(max-width:699px) {
        .site-footer-container {
            padding-left: 18px;
            padding-right: 18px
        }

        .footer-cta-wrap {
            padding-top: 20px
        }

        .footer-cta {
            min-height: auto;
            padding: 28px 22px;
            align-items: flex-start;
            flex-direction: column;
            gap: 24px
        }

        .footer-cta-title {
            font-size: 25px
        }

        .footer-cta-button {
            width: 100%
        }

        .footer-cta-deco-left {
            width: 125px
        }

        .footer-cta-deco-right {
            width: 110px;
            right: 0;
            bottom: -15px;
            top: auto
        }

        .footer-main {
            grid-template-columns: 1fr;
            gap: 48px;
            padding-top: 55px;
            padding-bottom: 50px
        }

        .footer-brand-logo {
            max-width: 270px
        }

        .footer-about {
            max-width: 100%
        }

        .footer-services-list,
        .footer-contact-list {
            grid-template-columns: 1fr
        }

        .footer-contact {
            grid-column: auto
        }

        .footer-regions {
            padding-top: 38px
        }

        .footer-heading {
            font-size: 19px
        }
    }

    @media(max-width:420px) {
        .footer-social {
            gap: 7px
        }

        .footer-social-link {
            width: 38px;
            height: 38px;
            font-size: 14px
        }
    }
    .home-expertise-stat img{
    filter: brightness(0) invert(1);
}