/*about-main*/
.about-main {
    padding-block: 5rem 4rem;
    position: relative;
    margin: 60px 0 130px 0;
}

.about-main .about-main-container {
    position: relative;
    z-index: 1;
}

.about-main .about_holder {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: calc(60% - 1.5rem) calc(40% - 1.5rem);
}

.about-main .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-main .about-img-box {
    position: absolute;
    z-index: 1;
    height: fit-content;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 2px 3px 10px;
}

.about-main .about-image-boxes {
    position: relative;
    font-size: 0.5rem;
    padding: 17em;
}

.about-main .about-img-box1 {
    top: -20%;
    left: 0;
    width: 22.39%;
    height: 170px;
}

.about-main .about-img-box2 {
    left: 16.53%;
    z-index: 0;
    width: 50.5%;
    height: 450px;
    top: 50%;
    transform: translateY(-50%);
}

.about-main .about-img-box3 {
    right: 0;
    width: 42.36%;
    height: 310px;
    top: 50%;
}

.about-main .about-subTitle {
    font-size: 18px;
    padding-bottom: 1rem;
}

.about-main .about-title {
    font-size: 1.8rem;
}

.about-main .about-desc {
    font-size: 1rem;
    margin-block: 1rem 1.3rem;
}

.about-main .about-more-link {
    display: flex;
    font-size: 0.9rem;
    padding-block: 0.5rem;
    width: fit-content;
    color: #2f2f2f;
}

.about-main .about-more-link > img {
    margin-left: 0.6rem;
    height: 1.5rem;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.about-main .about-more-link:hover > img {
    margin-left: 1rem;
}

.about-main .about-info-box {
    padding-inline: 1rem;
}

@media screen and (max-width: 992px) {
    .about-main {
        margin-top: 80px;
        margin-bottom: 0;
    }
    .about-main .about_holder {
        grid-template-columns: 1fr;
    }

    .about-main .about-info-box {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .about-main .about-img-box2 {
        width: 90%;
        height: 256px;
        left: 0;
    }
    .about-main .about-img-box1 {
        width: 42.39%;
        height: 110px;
    }
    .about-main .about-img-box3 {
        right: 6%;
        width: 41.36%;
        height: 123px;
        top: 63%;
    }
    .about-main .about-info-box {
        padding-top: 0;
    }
}