.technique {
    background-color: #161620;
    padding: 135px 72px;
    position: relative;
}

.technique__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.technique__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.technique__title {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1.24px;
}

.technique__text {
    color: #E4E4E4;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
}

.technique__text--mobile {
    display: none;
}

.technique__list {
    margin-top: 32px;
    color: #D5D5D7;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.technique__btn {
    margin-top: 32px;
    display: flex;
    width: 248px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 47px;
    background: #FFF;
    color: #161620;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    border: none;
    cursor: pointer;
}

.technique__btn:hover {
    background-color: #52a03a;
}

.technique__img {
    max-width: 40%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    right: 5%;
    z-index: 2;
    bottom: 70px;
}

.technique__img_bg {
    /* max-width: 60%; */
    height: 100%;
    z-index: 1;
    object-fit: fill;
    position: absolute;
    right: 5%;
    bottom: 70px;
}

@media (max-width: 991px) {
    .technique {
        padding: 60px 20px;
        display: flex;
        flex-direction: column-reverse;
    }

    .technique__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .technique__img {
        max-width: 100%;
        margin-top: 32px;
        position: relative;
    }

    .technique__img_bg {
        display: none;
    }

    .technique__title {
        font-size: 32px;
    }

    .technique__text--desktop {
        display: none;
    }

    .technique__text--mobile {
        display: block;
        color: #E4E4E4;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-style: italic;
        font-weight: 400;
        line-height: 140%;
    }

    .technique__list {
        color: #D5D5D7;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        margin-top: 0;
    }

    .technique__btn {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        font-weight: 600;
    }
}