/* about section 1*/
#about-section-one{
    background: var(--color-white);
    gap: 50px;

}
#about-section-one article section {
    max-width: 700px;
}
#about-section-one article section ul {
    flex-direction: row;
}



/* about-divisor-section-3 */
.about-divisor-section-3{
    width: 100%;
    min-height: 700px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;

    background-color: var(--background-divisor-lightgray-2);
}

/* top-section */
.about-divisor-section-3 .top-section{
    width: 100%;
    min-height: 700px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;

    background-color: var(--background-divisor-lightgray-2);
}
.about-divisor-section-3 .top-section img{
    max-width: 500px;
    width: 100%;
}
.about-divisor-section-3 .top-section article header h2{

    font-family: 'Yellowtail', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--seccond-color-green);
}
.about-divisor-section-3 .top-section article section{
    max-width: 500px;
}
.about-divisor-section-3 .top-section article section h3{
    font-size: 30px;
    font-weight: 800;

    margin-bottom: 14px;

    color: var(--first-color-blue);
}
.about-divisor-section-3 .top-section article section p{
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: var(--third-color-darkgrey);
}
.about-divisor-section-3 .top-section article ul{
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    gap: 30px;
}
.about-divisor-section-3 .top-section article ul li{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-divisor-section-3 .top-section article ul li h4{
    max-width: 300px;
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;

    font-size: 20px;
    font-weight: 500;
    color: var(--first-color-blue);
    background-color: var(--background-divisor-lightgray-3);
}
.about-divisor-section-3 .top-section article ul li h4 img{
    width: 15px;
    border-radius: 50%;
    margin-right: 7px;
}
.about-divisor-section-3 .top-section article ul li p{
    max-width: 400px;
    width: 100%;
    margin-left: 50px;
}

/* bottom-section */
.about-divisor-section-3 .bottom-section{
    min-height: 375px;
    max-width: 1200px;
    width: 100%;

    padding: 50px 0;
}
.about-divisor-section-3 .bottom-section ul{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;

    flex-wrap: wrap;
}
.about-divisor-section-3 .bottom-section ul li, .about-divisor-section-3 .bottom-section ul li article{
    max-width: 200px;
    width: 100%;
    height: 275px;
    background-color: var(--color-white);
    border-radius: 20px;
}
.about-divisor-section-3 .bottom-section ul li article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.about-divisor-section-3 .bottom-section ul li article img{
    max-width: 75px;
    width: 100%;
    height: 75px;
    margin-bottom: 5px;
}
.about-divisor-section-3 .bottom-section ul li article header h5{
    font-size: 20px;
    font-weight: 800;
    color: var(--first-color-blue);
    text-align: center;
}
.about-divisor-section-3 .bottom-section ul li article p{
    max-width: 170px;
    text-align: center;

    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--third-color-darkgrey);
}


@media only screen and (max-width: 1000px) {
    #about-section-one article{
        padding: 25px 50px;
    }
    #about-section-one article section ul {
        flex-direction: column;
        gap: 60px;
    }
    .why-us-section .top-section{
        flex-direction: column;
        padding: 50px;
    }
}
@media only screen and (max-width: 600px) {
    .why-us-section .top-section{
        flex-direction: column;
        padding: 50px 15px;
    }
    #about-section-one article{
        padding: 25px 15px;
    }
    .about-divisor-section-3 .top-section article ul li p {
        margin-left: 0;
    }
}
@media only screen and (max-width: 400px) {
    .about-divisor-section-3 .top-section article ul li p {
        max-width: 300px;
    }
}