/* -------------------------------------> About Banner <------------------------------------- */
section {
    margin: 30px 50px;
}
.title{
    text-align: center;
    font-size: 50px;
    margin-bottom: 70px;
    margin-top: 50px;
    color: #002f26;
}
.about-box {
    display: flex;
    text-align: justify;
}

.about-box img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.about-content{
    padding-left: 30px;
}

.about-space{
    margin-bottom: 15px;
}

/* -------------------------------------> About Banner (Mobile) <------------------------------------- */
@media screen and (max-width: 768px) {
    .about-box {
        display: block;
        text-align: center;
    }

    .about-space{
        margin-bottom: 15px;
    }
    .about-box p{
        text-align: justify;
    }
    .about-box img {
        display: inline-block;
        max-width: 100%;
        height: auto;
    }

    .about-content {
        padding: 0px;
        text-align: center;
    }
}

/* -------------------------------------> Certificates <------------------------------------- */
.certificates-box{
    margin-top: 50px;
    text-align: center;
}
.certificates-box h1{
    font-size: 50px;
    margin-top: 70px;
    color: #002f26;
}
.certificates-box hr{
    margin-bottom: 80px;
}
.certificates-img{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
}

.item1 img,
.item2 img,
.item3 img {
    border-radius: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.item1 img:hover,
.item2 img:hover,
.item3 img:hover {
    transform: scale(1.1);
}
/* -------------------------------------> Certificates (Mobile)<------------------------------------- */
@media screen and (max-width: 768px){
    .certificates-img{
        display: block;
        text-align: center;
    }

    .item1 img,
    .item2 img,
    .item3 img {
         margin-bottom: 30px;
    }
}
