.about .wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about .subtitle{
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.about .info-text{
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--light-gray);
    margin-bottom: 18px;
    max-width: 590px;
}

.about .section-title{
    font-weight: 500;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-bottom: 63px;
}

.about .section-title span{
    color: var(--orange);
}

.about .right-col ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 86px;
}

.about .number{
    font-weight: 500;
    font-size: 45px;
    line-height: 110%;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 19px;
}

.about .number span{
    color: var(--orange);
    margin-right: 10px;
}

.about li p{
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--light-gray);
}

@media screen and (max-width: 1199px){
    .about .section-title{
        font-size: 35px;
    }
}

@media screen and (max-width: 768px){
    .about .wrapper{
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about .section-title{
        font-size: 30px;
        margin-bottom: 63px;
    }

    .about .info-text{
        font-size: 13px;
    }

    .about .number{
        font-size: 30px;
    }

    .about li p{
        font-size: 13px;
    }

    .about .right-col ul{
        grid-template-columns: 1fr;
        gap: 41px;
    }
}