.home_container{
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.home_block{
    width: 100%;
}
.home_block_bg{
    padding: 70px 20px;
    background: var(--bg);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;

}


.btn_wrapper{
    border-radius: 0 0 30px 30px;
    padding: 19px 40px;
    width: 180px;
    height: 60px;
    background: var(--acsent);
    margin: 0 auto;
}


.btn_text{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: var(--white);
}



.about_section_container{
    display: flex;
    justify-content: space-between;
    gap: 197px;
}
.about_title_groupe{
    max-width: 245px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;

}
.section_title{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 52px;
    color: var(--black);
}
.about_text_groupe{
    max-width: 850px;
    width: 100%;
}
.about_text_groupe p{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 176%;
    color: var(--black);
}
.about_link{
    display: flex;
    gap: 15px;
    text-decoration: none;
    align-items: center;
}
.link_text{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    color: var(--acsent);
}

.contact_section_container{
    border-radius: 50px;
    background: var(--bg);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center
}
.contact_title_groupe{
    text-align: center;
}
.contact_links{
    display: flex;
    gap: 100px;
}
.contact_link_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.contact_title{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    color: var(--black);
}
.contact_text{
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    color: var(--acsent);
}


@media only screen and (max-width: 1312px){
    .home_block_bg{
        border-radius: 0;
    }
    .home_container{
        gap: 70px;
    }
    
    .about_section_container {
        gap: 50px;
    }

}
@media only screen and (max-width: 768px){
    .home_block_bg {
        padding: 50px 20px;
        gap: 30px;
    }
   
}
    
@media only screen and (max-width: 756px){
   
    .about_section_container {
        flex-direction: column;
        gap: 30px;
    }
   
    .about_title_groupe {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .home_container {
        gap: 50px;
    }
    .section_title{
        font-size: 44px;
    }
    

}
@media only screen and (max-width: 567px){
    .about_title_groupe {
        gap: 15px;
    }
    .home_block_bg {
        padding: 30px 20px;
        gap: 20px;
    }
    .section_title{
        font-size: 32px;
    }
    .about_text_groupe p{
        font-weight: 500;
        font-size: 15px;
        line-height: 160%;
    }
    .link_text{
        font-weight: 600;
        font-size: 20px;
    }
    .contact_text{
        font-size: 20px;
        text-align: center;
    }
    .about_link{
        gap: 10px;
    }
    .about_link img{
        width: 20px;
        height: 20px;
    }
    .contact_links {
        gap:20px;
        flex-direction: column;
    }
}