.product_section{
    width: 90%;
    margin: 0 auto;
    display: flex;
    margin-top: 10%;
}

.title_section_product{
    display: block;
    position: absolute;
    margin-top: -4rem;
    margin-right: 3.5rem;
    color: #EFA654;
    text-shadow: 0 2px 2px #0000001e;
}

.right_product{
    background-color: none;
    width: 25%;
    height: 300px;
}

.left_product{
    background-color: #fff;
    border-radius: 35px;
    width: 75%;
    height: 300px;
}

.buttons_product a{
    display: flex;
    margin: 0 auto;
    background-color: #E4E4E4;
    color: #626C7A;
    border: none;
    width: 250px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 10px;
    transition: 0.2s ease;
}

button a{
    text-decoration: none;
}

.buttons_product a:hover{
    background-color: #EFA654;
    color: #000;
    transition: 0.2s ease;
}

.left_product{
    display: flex;
}

.left_product img{
    width: 250px;
    height: 250px;
    border-radius: 35px;
    margin-top: 1.5rem;
    margin-right: 25px;
}

.left_product h2{
    color: #EFA654;
    text-shadow: 0 2px 2px #0000001e;
}

.left_product button{
    margin-top: 10px;
}

.text_left_product{
    margin-top: 5rem;
    margin-right: 2rem;
}

@keyframes moveleftright {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
}

.bg_color_left_product {
    background-color: #E4E4E4;
    width: 110px;
    height: 110px;
    border-radius: 50px;
    margin-right: 75%;
    margin-top: -5%;
    animation-name: moveleftright;    
    animation-duration: 2s;   
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.bg_color_right_product{
    background-color: #EFA654;
    width: 120px;
    height: 120px;
    border-radius: 50px;
    margin-right: 90%;
    margin-top: -80%;
    animation-name: moveUpDown;    
    animation-duration: 2s;   
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.buttons_product a.active_btn {
    background-color: #EFA654;
    color: black !important;
    transition: 0.3s;
    border-radius: 40px;
    padding: 5px 10px;
}

@media (max-width: 1024px){
    .bg_color_right_product{
        margin-top: -20.5rem;
        margin-right: 19rem;
    }
    .bg_color_left_product{
        margin-right: 16rem;
    }
    .left_product{
        margin-top: 0.5rem;
    }
    .product_section{
        margin-top: 12rem;
    }
    .title_section_product{
        margin-right: 1rem;
    }
}
@media (max-width: 768px) {
    .bg_color_left_product{
        margin-right: 5rem;
        margin-top: -2rem;
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 425px) {
    .product_section{
        width: 98%;
    }
    .left_product{
        display: block;
        height: 500px;
    }
    .text_left_product{
        margin-top: 0.5rem;
        margin-right: 1.5rem;
    }
    .buttons_product a{
        margin-top: 1rem;
    }
    .right_product{
        margin-top: 1.5rem;
    }
    .bg_color_right_product{
        margin-top: -25rem;
        margin-right: 15rem;
        width: 100px;
        height: 100px;
    }
    .left_product img{
        margin-right: 2rem;
    }
}
@media (max-width: 375px) {
    .buttons_product a{
        padding: 15px 1px;
    }
    .left_product img{
        margin-right: 0.9rem;
    }
    .bg_color_right_product{
        margin-top: -28rem;
    }
}
@media (max-width: 320px) {
    .left_product{
        height: 530px;
        width: 250px;
    }
    .left_product img{
        width: 210px;
        height: 210px;
        margin-right: 0.8rem;
    }
    .product_section{
        margin-top: 17rem;
    }
    .bg_color_right_product{
        margin-top: -25rem;
        margin-right: 12rem;
    }
    .buttons_product a{
        font-size: 15px;
    }
}