.apropos_header{
    padding: 40px 0;
    background-color: rgb(236, 236, 236);
}

.header_title{
    color: var(--primary);
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.header_text{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: top;
    
}
.header_text a{
    text-decoration: none;
    color: var(--secondary);
    font-size: 14px;
    font-weight:bold;
    margin-right: 5px;
}
.header_text a:hover{
    text-decoration: none;
}

.header_text p{
    margin-left: 5px;
    font-size: 14px;
    color: gray;
}

.about_container{
    margin: auto;
    margin-top: 10px;
    width: 80%;
    padding: 40px;
}

.about_us{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    align-items:center;
    padding: 30px 100px;
    
}

.about_us.noreverse{
    background-color: rgb(243, 243, 243);
    border-radius: 10px;
}

.about_us .about_img_container{
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_us .about_img_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about_content{
    padding: 10px;
}

.about_title{
    color: var(--primary);
    font-size: 25px;
    font-weight: bold;

}

.about_desc{
    margin-top: 30px;
    color: rgb(85, 85, 85);
    font-size: 14px;
}

@media screen and (max-width: 1100px) {
    .header_title{
        font-size: 20px;
    }

    .about_container{
        width: 100%;
        padding: 40px 5px;
       
    }

    .about_us{
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin: 30px 0;
    }

   .about_us .about_img_container{
        width: 100%;
        height: 200px;
    }

    .about_us .about_img_container img{
        border-radius: 5px;
        filter: brightness(60%);
    }

    .about_title{
        font-size: 18px;
    }

    .about_desc{
        color:rgb(44, 44, 44);
    }

}

@media screen and (max-width: 720px) {

    .header_title{
        font-size: 20px;
    }
    .about_container{
        width: 100%;
        padding: 40px 5px;
    }
    .about_us{
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

   .about_us .about_img_container{
        display: none;
    }

    .about_title{
        font-size: 18px;
    }

    .about_desc{
        color:rgb(44, 44, 44);
    }

}


@media screen and (max-width: 480px) {
    .header_title{
        font-size: 20px;
    }
    .about_container{
        width: 100%;
        padding: 40px 5px;
    }
    .about_us{
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

   .about_us .about_img_container{
        display: none;
    }

    .about_title{
        font-size: 18px;
    }

    .about_desc{
        color:rgb(44, 44, 44);
    }

}