.product {
    padding: 120px 0 168px 0;
}

.product-img-wrapper {
    position: relative;
    margin-right: 86px;
    padding-left: 60px;
    padding-bottom: 74px;
}

.product-card {
    position: absolute;
    left: 0;
    bottom: 0;
}

.product-img {
    border-radius: 18px;
}

.product-row {
    display: flex;
    justify-content: space-between;
}

.product-content {
    max-width: 584px;
}

.product-content-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 157%;
}

.product-content-title + * {
    margin-top: 10px;
}

.product-content-subtitle {
    font-family: 'Georgia', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 157%;
    color: #01996D;
}

.product-content-subtitle + * {
    margin-top: 20px;
}

.product-content-text + * {
    margin-top: 40px;
}

.product-content-text {
    line-height: 144.5%;
    max-width: 530px;
}

.product-content-btn {
    display: flex;
}

@media (max-width: 1299px) {
    .product {
        padding-top: 80px;
    }

    .product-img-wrapper {
        flex: 1 0 auto;
        flex-basis: 50%;
    }

    .product-content-subtitle {
        font-size: 30px;
        line-height: 130%;
    }

    .product-card {
        top: 60%;
    }
}

@media (max-width: 991px) {
    .product {
        padding-top: 40px;
    }

    .product-row {
        flex-direction: column-reverse;
    }

    .product-card {
        position: relative;
        z-index: 2;
        margin-top: -10%;
        display: flex;
        justify-content: center;
    }

    .product-content-subtitle {
        font-size: 30px;
        line-height: 130%;
    }

    .product-img-wrapper {
        flex: 1 0 auto;
        flex-basis: 50%;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .product-content-btn {
        padding-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .product {
        padding-bottom: 40px;
    }

    .product-card {
        margin-top: -30% 15px 0;
    }
}

