.product-first-screen {
    overflow: hidden;
    margin-bottom: 64px;
    padding-top: 119px;
}

.product-first-screen__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
}

.product-first-screen__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-basis: 737px;
}

.product-first-screen__image {
    display: flex;
    flex-basis: 739px;
}

.product-first-screen__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 512px;
}

@media screen and (max-width: 1440.98px) {
    .product-first-screen {
        padding-top: 125px;
    }


    .product-first-screen__content {
        flex-basis: 577px;
    }

    .product-first-screen__image {
        display: flex;
        flex-basis: 577px;
    }

}

@media screen and (max-width: 1024.98px) {
    .product-first-screen {
        padding-top: 64px;
    }

    .product-first-screen__wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .product-first-screen__content,
    .product-first-screen__image {
        flex-basis: 100%;
    }

    .product-first-screen__content {
        gap: 32px;
    }

    .product-first-screen__image img {
       min-height: 223px;
    }
}

@media screen and (max-width: 599.98px) {
    .product-first-screen__text {
        font-size: 16px;
    }
}

