.about{
    position: relative;
    min-height: 100vh;
}

.about .child img{
    position: absolute;
    bottom: 0;
    right: 10%;
    height: 330px;
}
@media (max-width: 992px) {
    .about .child img{
        display: none;
    }
    
}

.about .overlay{
    min-height: 100vh;
    background-image: url('../assets/svg/intelligence.svg');
    background-repeat: no-repeat;
    background-position: center -20%;
    background-size: 1050px 750px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

@media (max-width: 768px )  {
    .about .overlay{
        background-image: none;
    }
    
}
@media (min-width: 768px) and (max-width: 991px) {
    .about .overlay{
        background-size: 1050px 530px;
        background-position-y: top;
    }
    
}


.about-section-title{
    text-align: center;
    position: absolute;
    display: none;
}
.about-section-title h2{
    font-size: 3.5rem;
    color: #333;
}

.about-section-title h2 span{
    color: #956AC6;
    font-weight: bolder;
    line-height: 2.2rem;
}
.about-section-title p{
    font-size: 1.7rem;
    color: #FF5555;
    margin-bottom: 15px;
    line-height: 1.6rem;
}

.about .cards-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
}
.about .cards-container .card{
    padding: 20px;
    max-width: 300px;
    width: 100%;
    box-shadow: var(--main-shadow);
    border-radius: 10px;
    background-color: #ffffff5d;
    transition: var(--main-transition);
}
.about .cards-container .card:hover{
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}
.about .cards-container .card:first-child{
    transform: translateX(100%);
}

@media (max-width: 767px)  {
    .about .cards-container .card:first-child {
            transform: translateX(0%);
        }

    
}
@media (min-width: 768px) and (max-width: 992px){
    .about .cards-container .card:first-child {
            transform: translateX(75%);
        }

    
}
.about .cards-container .card:nth-child(2){
    transform: translate(-100%, -150%);
}

@media (min-width: 768px) and (max-width: 992px) {
    .about .cards-container .card:nth-child(2) {
        transform: translate(-75%, -175%);
    }

}

@media (max-width: 767px) {
    .about .cards-container .card:nth-child(2) {
            transform: translate(0, 0%);
        }

}

.about .cards-container .card:nth-child(3){
    transform: translate(100%, -40%);
}

@media (min-width: 768px) and (max-width: 992px) {
    .about .cards-container .card:nth-child(3) {
            transform: translate(75%, -60%);
        }


}

@media (max-width: 767px) {
    .about .cards-container .card:nth-child(3) {
        transform: translate(0, 0);
    }


}
.about .cards-container .card:last-child{
    transform: translate(-100%, -200%);
}

@media (min-width: 768px) and (max-width: 992px) {
    .about .cards-container .card:last-child {
            transform: translate(-70%, -250%);
        }


}
@media (max-width: 767px) {
    .about .cards-container .card:last-child {
        transform: translate(0%, 0%);
    }


}
.about .cards-container .card .card-title{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}
.about .cards-container .card h3{
    font-size: 2rem;
    color: #FF5555;
    margin-bottom: 10px;
}
.about .cards-container .card p{
    font-size: 1.8rem;
    color: #777;
    line-height: 2.2rem;
}
