:root {
    --helperBlue: #576ED6;
}

.about {
    max-width: 1126px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 140px;
}

.about__title {
    color: var(--helperBlue);
    font-weight: 700;
    font-size: 24px;
    margin: 140px 0;
    text-align: center;
}

.about-swiper {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;

}

.about-item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
    background-color: white;

    box-shadow: 38px 48px 200px 0 #B2B2B240;
    flex: 1 0 30%;

    max-width: 378px;
    width: 100%;
    min-height: 340px;
    position: absolute;
    transition: transform 0.5s ease, z-index 0.5s ease;
}

.about-item.center {
    transform: translateX(0) scale(1.1);
    z-index: 3;
}

.about-item.left{
    transform: translateX(-400px) scale(0.8);
    z-index: 1;
}

.about-item.right {
    transform: translateX(400px) scale(0.8);
    z-index: 1;
}

.about-item__title {
    margin: 24px 0 16px;
    text-align: center;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
}

.about-item__description {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    user-select: none;
}

.about-item__icon {
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 1200px) {
    .about-item {
        max-width: 330px;
    }
    .about-item.left{
        transform: translateX(-330px) scale(0.8);

    }
    
    .about-item.right {
        transform: translateX(330px) scale(0.8);

    }
}

@media screen and (max-width: 1000px) {
    .about-item {
        max-width: 300px;
    }
    .about-item.left{
        transform: translateX(-300px) scale(0.8);

    }
    
    .about-item.right {
        transform: translateX(300px) scale(0.8);
    }

    .about-item__icon {
        width: 45px;
        height: 45px;
    }
    .about-item__title {
        font-size: 18px;
    }
    .about-item__description {
        font-size: 14px;
    }
}
@media screen and (max-width: 900px) {
    .about__title {
        margin-bottom: 70px;
    }
    .about-item {
        max-width: 231px;
        min-height: 251px;
        padding: 10px;
    }
    .about-item.left{
        transform: translateX(-230px) scale(0.8);

    }
    
    .about-item.right {
        transform: translateX(230px) scale(0.8);
    }

    .about-item__icon {
        width: 30px;
        height: 30px;
    }
    .about-item__title {
        margin: 10px 0 10px;
        font-size: 14px;
    }
    .about-item__description {
        font-size: 12px;
        line-height: 17px;
    }
}

@media screen and (max-width: 700px) {
    .about__title {
        margin-bottom: 0px;
        font-size: 18px;
    }
    .about-item {
        max-width: 198px;
        min-height: 170px;
        padding: 8px;
    }
    .about-item.left{
        transform: translateX(-200px) scale(0.8);

    }
    
    .about-item.right {
        transform: translateX(200px) scale(0.8);
    }

    .about-item__icon {
        width: 30px;
        height: 30px;
    }
    .about-item__title {
        margin: 10px 0 10px;
        font-size: 14px;
    }
    .about-item__description {
        font-size: 10px;
        line-height: 17px;
    }
    
}

@media screen and (max-width: 600px) { 
    .about {
        padding-left: 0;
        padding-right: 0;
    }
    .about-swiper {
        overflow: hidden;
    }
}