@font-face {
    font-family: "Manrope";
    src: url("../fonts/services-preview/manrope-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/services-preview/manrope-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/services-preview/manrope-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/services-preview/manrope-extrabold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

.services-preview-page {
    min-width: 320px;
    margin: 0;
    background: #fff
}

.services-showcase,
.services-showcase * {
    box-sizing: border-box;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif
}

.services-showcase button {
    font: inherit
}

.services-showcase {
    padding: 24px 22px 32px;
    overflow: hidden;
    color: #07152f;
    background: #fff
}

.services-showcase__container {
    width: min(1600px, 100%);
    margin: 0 auto
}

.services-showcase__heading {
    margin-bottom: 34px;
    text-align: center
}

.services-showcase__label {
    width: max-content;
    max-width: 100%;
    min-height: 40px;
    margin: 0 auto 20px;
    padding: 8px 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 24px;
    color: #0a8a22;
    background: #e9f8ec;
    font-size: 17px;
    font-weight: 700
}

.services-showcase__label svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.services-showcase__heading h1,
.services-showcase__heading h2 {
    margin: 0 0 12px;
    width: 100%;
    color: #06132b;
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.6px;
    text-align: center !important
}

.services-showcase__heading p {
    margin: 0;
    color: #5f6f89;
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.45
}

.services-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}

.service-card {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    border: 1px solid #dce7f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(36, 74, 118, .055)
}

.service-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: right center
}

.service-card__content {
    position: relative;
    z-index: 2;
    width: 50%;
    min-height: 292px;
    padding: 26px 0 25px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.service-card:nth-child(2) .service-card__content {
    width: 54%
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 14px
}

.service-card--blue .service-card__icon {
    color: #1266e8;
    background: #edf4ff
}

.service-card--green .service-card__icon {
    color: #0b9825;
    background: #e8f8eb
}

.service-card__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-card h2,
.service-card h3 {
    margin: 0 0 14px;
    color: #071124;
    font-size: clamp(19px, 1.35vw, 23px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.35px
}

.service-card p {
    margin: 0;
    color: #35445c;
    font-size: 15px;
    line-height: 1.52
}

.services-showcase__footer {
    margin-top: 22px;
    display: flex;
    justify-content: center
}

.services-showcase__request {
    min-width: 280px;
    min-height: 64px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #2879f5, #0759df);
    box-shadow: 0 11px 26px rgba(18, 93, 223, .24);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease
}

.services-showcase__request:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(18, 93, 223, .32)
}

.services-showcase__request svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

@media (max-width: 1120px) {
    .services-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .service-card {
        min-height: 0;
        display: flex;
        flex-direction: column
    }
    .service-card__content,
    .service-card:nth-child(2) .service-card__content {
        order: 1;
        width: 100%;
        min-height: 218px;
        padding: 26px 24px 14px;
        flex: 0 0 auto;
        background: #fff
    }
    .service-card__image {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        order: 2;
        width: auto;
        max-width: 100%;
        height: 230px;
        margin-left: auto;
        flex: 0 0 auto
    }
}

@media (max-width: 700px) {
    .services-showcase {
        padding: 20px 12px 28px
    }
    .services-showcase__heading {
        margin-bottom: 24px
    }
    .services-showcase__label {
        min-height: 35px;
        margin-bottom: 15px;
        padding: 7px 13px;
        font-size: 13px
    }
    .services-showcase__heading h1,
    .services-showcase__heading h2 {
        margin-bottom: 10px;
        font-size: 34px;
        letter-spacing: -.7px
    }
    .services-showcase__heading p {
        font-size: 15px
    }
    .services-showcase__grid {
        grid-template-columns: 1fr;
        gap: 12px
    }
    .service-card {
        min-height: 0;
        display: flex;
        flex-direction: column
    }
    .service-card__content {
        order: 1;
        width: 100%;
        min-height: 0;
        padding: 20px 18px 12px;
        flex: 0 0 auto;
        background: #fff
    }
    .service-card:nth-child(2) .service-card__content {
        width: 100%
    }
    .service-card__image {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        order: 2;
        width: auto;
        max-width: 100%;
        height: 230px;
        margin-left: auto;
        flex: 0 0 auto
    }
    .service-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px
    }
    .service-card__icon svg {
        width: 27px;
        height: 27px
    }
    .service-card h2,
    .service-card h3 {
        margin-bottom: 10px;
        font-size: 20px
    }
    .service-card p {
        font-size: 13px;
        line-height: 1.45
    }
    .services-showcase__footer {
        margin-top: 16px
    }
    .services-showcase__request {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        font-size: 16px
    }
}
