.modules {
    background: linear-gradient(180deg, #FFF5ED 0%, #FBD8C8 100%);
}

.modules--container {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .modules--container {
        flex-direction: row;
        gap: clamp(24px, 6.94vw, 100px);
        padding: 0;
    }
}

.modules--header {
    text-align: center;
    padding: 0 24px;
}

@media screen and (min-width: 992px) {
    .modules--header {
        text-align: left;
        width: 100%;
        flex: 1;
        max-width: 600px;
        padding: 64px 0;
        padding-left: 80px;
    }
}

@media screen and (min-width: 1280px) {
    .modules--header {
        padding: 112px 0 132px 80px;
    }
}

.modules--header .uptitle {
    margin-bottom: 8px;
}

.modules--header h2 {
    margin-bottom: 24px;
}

.modules--header div {
    display: none;
}

@media screen and (min-width: 992px) {
    .modules--header div {
        margin-top: 24px;
        display: flex;
        gap: 24px;
        justify-content: flex-start;
    }
}

.modules--content {
    position: relative;
    padding: 0 24px;
}

@media screen and (min-width: 992px) {
    .modules--content {
        padding: 0;
        max-height: 100%;
        overflow: auto;
        flex: 1;
        padding-right: 80px;
        padding-left: clamp(0px, 2.22vw, 32px);
    }
}

.modules--content::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 992px) {
    .modules--scroll {
        position: absolute;
        width: calc(100% - 80px - clamp(0px, 2.22vw, 32px));
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

.modules--scroll--nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

@media screen and (min-width: 992px) {
    .modules--scroll--nav {
        display: none;
    }
}

.modules--item {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
}

@media screen and (min-width: 992px) {
    .modules--item {
        background: white;
        border-radius: 32px;
        box-shadow: 6px 6px 28px 0 rgba(0, 0, 0, 0.15);
    }

    .modules--item:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .modules--item {
        padding: 64px 60px;
    }
}

.modules--item h3 {
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .modules--item h3 {
        margin-bottom: 24px;
    }
}

.modules--mob-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

@media screen and (min-width: 992px) {
    .modules--mob-buttons {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */