/* ABOUT1 */
.about1 {
    min-height: 70vh;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.about1 .about-text {
    width: 60%;
    z-index: 10;
}

.about1 .about-text p {
    font-size: 2rem;
    line-height: 1.5;
}

/* RESUME BUTTON START */
.resume {
    margin: 2rem 0;
    display: inline-flex;
    align-items: center;
    padding: .25em .25em .25em 1.25em;
    background-color: var(--text);
    color: var(--bg);
    column-gap: 0.5em;
    border-radius: 100px;
}

.resume-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
}

.resume-icon-bg {
    background-color: var(--bg);
    position: absolute;
    height: 1px;
    width: 1px;
    border-radius: 50%;
    transform: scale(10);
    transition: all .3s ease;
}

.resume-icon i {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--text);
    opacity: 0;
    transition: all .3s ease;
}

.resume:hover {
    .resume-icon i {
        opacity: 1;
    }

    .resume-icon-bg {
        transform: scale(40);
    }
}

/* RESUME BUTTON END */

.connect {
    width: 20%;
}

.connect p {
    margin: 1rem 0;
    padding-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--middle);
    border-bottom: 1px solid var(--middle-light);
}

.connecting-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.connecting-links a {
    width: fit-content;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 300;
}

@media screen and (max-width: 768px) {

    .about1 {
        min-height: 50vh;
    }

    .about1 .about-text {
        width: 100%;
    }

    .about1 .about-text p {
        font-size: 1.2rem;
    }

    .connect {
        display: none;
    }

    .resume {
        margin: 1rem 0;
    }

    .resume:hover {
        .resume-icon-bg {
            transform: scale(30);
        }
    }

    .resume-icon {
        width: 2em;
        height: 2em;
    }

    .resume-icon i {
        width: 1.25em;
        height: 1.25em;
    }
}

@media screen and (max-width: 500px) {

    .about1 {
        padding: 1rem;
    }

    .about1 .about-text p {
        font-size: 1.1rem;
    }

    .resume {
        padding: .25em .25em .25em 1em;
    }

    .resume-icon {
        width: 1.75em;
        height: 1.75em;
    }

    .resume:hover {
        .resume-icon-bg {
            transform: scale(25);
        }
    }

}


/* ABOUT2 */
.about2 {
    min-height: 60vh;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.about2 .can-help {
    height: 10vh;
    margin-bottom: 2rem;
}

.about2 .can-help p {
    font-size: 3.5rem;
}

.about2 .helps {
    height: 40vh;
    width: 100%;
    display: flex;
    gap: 8rem;
}

.about2 .helps .help-box {
    height: 100%;
    width: 20rem;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    border-left: 1px solid var(--middle-light);
}

.about2 .helps .help-box .num {
    font-size: 3.5rem;
    color: var(--middle-light);
}

.about2 .helps .help-box .text {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.about2 .helps .help-box .text .head {
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .about2 .helps {
        gap: 4rem;
    }

    .about2 .helps .help-box {
        width: 18rem;
    }
}

@media (max-width: 992px) {
    .about2 .can-help p {
        font-size: 3rem;
    }

    .about2 .helps {
        gap: 2rem;
    }

    .about2 .helps .help-box {
        width: 16rem;
    }
}

@media (max-width: 768px) {

    .about2 .can-help {
        margin-bottom: 5rem;
    }

    .about2 .can-help p {
        font-size: 2.5rem;
    }

    .about2 .helps {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

    .about2 .helps .help-box {
        width: 100%;
        gap: 2.5rem;
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid var(--middle-light);
        padding-bottom: 2rem;
    }
}

@media (max-width: 576px) {

    .about2 {
        padding: 1rem;
    }

    .about2 .can-help p {
        font-size: 3rem;
    }

    .about2 .helps .help-box .num {
        font-size: 2.5rem;
    }

    .about2 .helps .help-box .text .head {
        font-size: 1.2rem;
    }
}