/* About Page */

.about-con {
    background-color: var(--light--green-color);
}
.about-con .about_contact_box span {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--accent--color);
}
.about-con .about_contact_box h2 {
    margin-bottom: 14px;
    color: var(--primary--color);
}
.about-con .about_contact_box p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0 !important;
    color: var(--primary--color);
}

/* About Page Vision */

.aboutvision-con .aboutvision-leftimage {
    position: absolute;
    left: -70px;
    top: -100px;
}
.aboutvision-con .all_row {
    display: flex;
    flex-wrap: wrap;
}
.aboutvision-con .all_column {
    display: flex;
}
.aboutvision-con .all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.aboutvision-con .about_box_content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-radius: 0;
    background-color: var(--secondary--color);
    border: 1px solid rgb(8 33 19 / 20%);
    transition: all 0.3s ease-in-out;
}
.aboutvision-con .about_box_content:hover {
    border: 1px solid var(--accent--color);
}
.aboutvision-con .about_box_content .heading {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutvision-con .about_box_content .aboutvision-icon {
    margin-right: 18px;
}
.aboutvision-con .about_box_content h2 {
    margin-bottom: 0;
}
.aboutvision-con .about_box_content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--primary--color);
}

/* RESPONSIVE */
@media screen and (max-width: 1400px) {
    .aboutvision-con .aboutvision-leftimage {
        left: -20px;
        top: -90px;
    }
}
@media only screen and (max-width: 1199px) {
    /* About Page */

    .about-con .about_contact_box span {
        margin-bottom: 14px;
    }

    /* About Page Vision */

    .aboutvision-con .aboutvision-leftimage {
        display: none;
    }
    .aboutvision-con .about_box_content {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 991px) {
    /* About Page */

    .about-con .about_wrapper_box {
        text-align: center;
    }
    .about-con .about_wrapper_box .about-image img {
        width: 370px;
    }
    .about-con .about_contact_box {
        text-align: center;
    }
    .about-con .about_contact_box span {
        font-size: 18px;
        line-height: 18px;
    }
    .about-con .about_contact_box p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px !important;
    }
    
    /* About Page Vision */

    .aboutvision-con .about_box_content .heading {
        margin-bottom: 15px;
    }
    .aboutvision-con .about_box_content p {
        font-size: 14px;
        line-height: 24px;
    }
}
@media only screen and (max-width: 767px) {
    /* About Page */

    .about-con .about_wrapper_box .about-image img {
        width: 310px;
    }
    .about-con .about_contact_box span {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 14px;
    }
    .about-con .about_contact_box p {
        margin-bottom: 30px !important;
    }    
    
    /* About Page Vision */

    .aboutvision-con .about_box_content {
        padding: 20px;
        margin-bottom: 20px;
    }
    .aboutvision-con .about_box_content .aboutvision-icon img {
        width: 65px;
    }
}
@media only screen and (max-width: 575px) {
    /* About Page */

    .about-con .about_wrapper_box .about-image img {
        width: 230px;
    }
    .about-con .about_contact_box p {
        margin-bottom: 20px !important;
    }
}