

/********************************************************************************/ /* About */



.customers-box{
    position: relative;
    background: #ffffff;
    height: 56px;
    width: 278px;
    border-radius: 100px;
    margin-right: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.customers-box:before{
    content:" ";
    width: 1px;
    height: 26px;
    background: color-mix(in srgb, var(--dark_gray_color) 24%, transparent);
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
}
.customers-box .img-wrap{
    display: flex;
    align-items: center;
    width: 102px;
}
.customers-box .img-wrap img{
    width: 43px;
    height: 43px;
    border-radius: 100%;
    border: 3px solid #fff;
    margin-right: -12px;
}
.customers-box .img-wrap svg{
    background: var(--complete_color);
    width: 43px;
    height: 43px;
    padding: 10px;
    border-radius: 100%;
    border: 3px solid #fff;
}
.customers-box .customer-box-text{
    padding-right: 9px;
    display: flex;
    flex-direction: column;
}
.customers-box .customer-box-text b{
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary_color);
}
.customers-box .customer-box-text span{
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: var(--dark_gray_color);
}
.customers-box i{
    width: 43px;
    height: 43px;
    border: 3px solid #fff;
    border-radius: 100%;
    background: color-mix(in srgb, var(--secondary_color) 8%, transparent);
    color: var(--secondary_color);
    transform: rotate(45deg);
    font-size: 18px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .right-box{
    padding-left: 40px;
}
.about-text{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 48px;
}
.about-text em{
    color: var(--primary_color);
    font-style: normal;
}
.about-btns .btn{
    height: 56px;
    align-items: center;
    display: inline-flex;
}
.about-btns .btn span{
    margin-left: 16px;
}
.about-btns{
    display: flex;
    align-items: center;
    gap: 16px;
}
.about .left-box{
    display: flex;
    gap: 20px;
}
.about .left-box img{
    object-fit: cover;
    border-radius: 24px;
    width: calc(100% - 210px);
}
.about-items{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 190px;
}
.about-item {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 10px;
    position: relative;
}
.about-item i{
    width: 32px;
    height: 32px;
    font-size: 16px;
    background: color-mix(in srgb, var(--primary_color) 6%, transparent);
    color: color-mix(in srgb, var(--primary_color) 52%, transparent);
    border-radius:  100%;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: absolute;
    top: 10px;
    right: 10px;
}
.about-item b{
    font-size: 26px;
    font-weight: bold;
    color: var(--secondary_color);
    line-height: 1;
    display: block;
    direction: ltr;
}
.about-item b span{
    font-size: 22px;
    font-weight: 400;
    color: var(--primary_color);
}
.about-item div{
    font-size: 16px;
    font-weight: 500;
    color: var(--text_color);
    line-height: 1;
}
.about-item div em{
    color: var(--primary_color);
    font-style: normal;
}



@media (max-width: 1199px) {
    .about .right-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .about .left-box{
        flex-direction: column;
    }
    .about .left-box img{
        width: 100%;
    }
    .about-items{
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .about-item{
        width: 30%;
    }
    .customers-box{
        margin-right: 24px;
    }
    .customers-box:before{
        content: none;
    }

}

@media (max-width: 991px) {

    .about .right-box{
        padding: 0;
        justify-content: center;
        align-items: center;
        margin-bottom: 32px;
    }
    .about .right-box .section-head{
        padding-bottom: 32px;
    }
    .about-text{
        font-size: 16px;
        line-height: 32px;
        margin-bottom: 32px;
    }
    .about-btns{
        flex-direction: column;
        justify-content: center;
    }
    .about-btns .btn{
        width: 300px;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .about-items{
        gap: 16px;
    }
    .customers-box{
        width: auto;
        margin: 0;
    }
}



@media (max-width: 575px) {

    .about-items {
        flex-wrap: wrap;
    }

    .about-item {
        width: calc(50% - 8px);
    }

    .about-item:last-child {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .about .right-box .section-head{
        flex-direction: column;
        gap: 16px;
    }
    .customers-box{
        width: 100%;
    }
}