:root {
    --bs-primary-rgb: 47, 165, 255;
    --bs-dark-rgb: 31, 31, 31;
    --bs-light-rgb: 247, 247, 247;
    --ff-default: "Manrope", sans-serif;
    --fs-md: 20px;
    --fs-lg: 24px;
    --anim: 0.4s ease;
}

body {
    font-family: var(--ff-default), sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

a, button {
    color: inherit;
}

img, svg {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
}

.fs-medium {
    font-size: var(--fs-md);
    line-height: 1.2;
}

.fs-large {
    font-size: var(--fs-lg);
    line-height: 1.2;
}

.title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgb(var(--bs-primary-rgb));
    color: rgb(var(--bs-white-rgb));
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
}

.button--white {
    background-color: rgb(var(--bs-white-rgb));
    color: rgb(var(--bs-dark-rgb));
}

.header {
    z-index: 100;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.hero {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero__title {
    font-size: 50px;
}

.hero__description {
    font-size: 18px;
}

.advantage-item__number {
    font-size: 30px;
    line-height: 1;
}

.offer__wrapper {
    border-radius: 40px;
}

.offer__image {
    margin-top: -30%;
    display: block;
}

.benefit-item__name {
    font-size: 60px;
    line-height: 1.2;
}

.benefit-item__description {
    font-size: 18px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1200px) {
    .reviews-slider__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .reviews-slider__wrapper .swiper-slide {
        width: auto!important;
    }
}
