.about {
    padding-block: 60px;
    background-color: #F4F3F9;
}

.about-img-bg {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.about-img-bg img {
    width: auto;
    height: 300px;
}

#img1 {
    margin-top: 20%;
}
.about-title {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.about-title h1 {
    color: #414042;
    font-size: 45px;
    margin-right: 10px;
}

.about-content {
    z-index: 10;
}

#solusipay {
    color: #218B54;
}

.about-boxes {
    display: flex;
    justify-content: center;
}

.about-box {
    max-width: 20%;
    height: fit-content;
    margin: 10px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
    color: white;
    letter-spacing: 0.15px;
    line-height: 150%;
    text-align: start;
}

.about-box-one {
    background-image: url("../../assets/about/bg/Title.png");
}

.about-box-two {
    background-image: url("../../assets/about/bg/Title-1.png");
}

.about-box-three {
    background-image: url("../../assets/about/bg/Title-2.png");
}

.about-text {
    align-self: center;
    text-align: justify;
}


@media (max-width: 950px) {
    .about-boxes {
        flex-direction: column;
    }
    .about-box {
        max-width: none;
        margin: 2% 5%
    }
    .about-img-bg {
        display: none;
    }
}

@media (max-width: 500px) {
    .about-title h1 {
        color: #414042;
        font-size: clamp(20px, 30px, 45px);
    }
    .about-box svg {
        width: 50px;
        height: 50px;
    }
}