.product-description{
    background: #2A2A2A;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 800px;
}

.product-description__text, .product-description__image{
    width: 40%;
    height: 80%;
}

.product-description__text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-description__text-header,
.product-description__text-paragraph,
.product-description__text-price,
.product-description_text-btn{
    color: white;
    margin-bottom: 20px;
}

.product-description__text-header{
    font-size: 3.4rem;
}

.product-description__text-paragraph,
.product-description__text-price{
    font-size: 1.5rem;
}

.product-description__image{
    background-color: rgba(196, 196, 196, 0.2);
    border-radius: 5px;
}

.product-description__text-button{
    padding: 10px 30px;
    background: #81363B;
    width: 30%;
    text-align: center;
}

.product-description_text-btn{
    text-decoration: none;
}

.product-description__image{
    display: flex;
    flex-direction: column;
}

.product_description__image-photo{
    height: 80%;
    width: 100%;
}

.product-description__image-circles{
    display: flex;
    width: 100%;
    height: 20%;
    justify-content: space-around;
}

.product-description__image-circle{
    height: 8vh;
    width: 8vh;
    border-radius: 50%;
}

.product-description__image-circle:nth-child(1){
    background-color: #FF444B;
}

.product-description__image-circle:nth-child(2){
    background-color: #8044FF;
}

.product-description__image-circle:nth-child(3){
    background-color: #44FF8F;
}

@media (max-width: 1025px){
    .product-description{
        flex-direction: column;
    }
    
    .product-description__image{
        margin-top: 50px;
        order: 1;
        width: 75vw;
    }

    .product-description__text{
        order: 2;
        width: 60vw;
        justify-content: center;
    }

    .product-description__image-circle{
        height: 4vh;
        width: 4vh;
    }

    .product-description__text-button{
        width: 100%;
        margin-bottom: 30px;
    }

    .product-description__text-header{
        font-size: 2.5rem;
    }

    .product-description__text-paragraph{
        font-size: 1.2rem;
    }

    .product-description__text-price{
        font-size: 1.5rem;
    }
}
