.section {
    padding: 30px 15px;
    text-align: center;
    margin: 0 auto;
    max-width: 70dvw;

    @media (max-width: 600px) {
        max-width: 100dvw;
    }
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    @media (max-width: 600px) {
        flex-direction: column-reverse;
        text-align: center;
    }
}

.header-text {
    text-align: left;
    flex: 1;

    & .big-title {
        color: white;
        font-size: 4em;
        font-weight: bold;
    }

    & .subtitle-text {
        font-size: 18px;
        margin-top: 10px;
    }

    @media (max-width: 600px) {
        text-align: center;
    }
}

.header-image {
    flex: 1;
    display: flex;
    justify-content: center;

    & img {
        width: 100%;
        max-width: 450px;
        border-radius: var(--lumo-border-radius-l);

        @media (max-width: 600px) {
            max-width: 250px;
        }
    }
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;

    @media (max-width: 600px) {
        font-size: 20px;
    }
}

.img-placeholder {
    width: 100%;
    background: transparent;
    border-radius: var(--lumo-border-radius-l);
    margin: 0 auto;
    position: relative;
    display: block;

    @media (max-width: 600px) {
        height: 130px;
    }
}

.img-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--lumo-border-radius-l);
    filter: none;
}

.btn {
    display: block;
    margin: 0.5rem 0;
    padding: 1rem 4rem;
    background: red;
    color: #fff;
    border-radius: var(--lumo-border-radius-l);
    font-size: var(--lumo-font-size-l);
    font-weight: bold;
    text-decoration: none;
    text-align: center;

    &.small {
        width: fit-content;
        margin: 0 auto;
        margin-top: 50px;
    }

    @media (max-width: 600px) {
        font-size: 16px;
        padding: 10px 25px;
    }
}

.icons {
    margin-top: 12px;
    font-size: 20px;
}

.subtitle {
    margin: 30px 0 15px 0;
    font-size: var(--lumo-font-size-m);
}

.flex-column {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media (max-width: 600px) {
        margin: 0 auto;
    }
}

e-slider {
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .promos-btn {
        font-size: 14px;
    }

    .hidden-mobile,
    e-slider {
        display: none;
    }
}