.checkbox label input[type="checkbox"]:checked + i:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: url(../../../../assets/img/svg/checkbox_check.svg) no-repeat center / 18px 18px;
}

.checkbox label i {
    position: absolute;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../../../../assets/img/svg/checkbox.svg) no-repeat center / 18px 18px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.about__info {
    max-width: 835px;
    width: 100%;
}

.about__info--order-1 {
    order: 1;
}

.about__info--order-3 {
    order: 3;
}

.about__title {
    margin-bottom: 40px;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
}

.about__table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    background: #F2F6F9;
}

.about__row {
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.about__row--title {
    font-family: Montserrat, sans-serif;
}

.about__row--small {
    font-size: 12px;
    line-height: 14px;
    color: #737373;
}

.about__content {
    margin-top: 40px;
    margin-bottom: 60px;
}

.about__content.hide {
    position: relative;
    max-height: 315px;
    overflow: hidden;
    margin-bottom: 10px;
}

.about__content.hide::after {
    content: "";
    position: absolute;
    top: 45px;
    display: block;
    width: 100%;
    height: 270px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 63.78%, #FFFFFF 100%);
}

.about__content.hide + .about__show-text {
    display: block;
}

.about__show-text {
    order: 3;
    margin-top: 10px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 40px;
    color: #0C54A0;
    cursor: pointer;
    display: none;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*flex-wrap: wrap;*/
    margin-top: -40px;
    margin-bottom: 50px;
}

.about__item {
    display: flex;
    align-items: center;
    /*width: calc((100% / 3) - 20px);*/
    margin-top: 40px;
}

.about__img {
    margin-right: 30px;
}

.about__number {
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    line-height: 44px;
    color: #737373;
}

.about__text {
    color: #737373;
}

.about__btn {
    display: flex;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
}

.about__form {
    order: 2;
    flex: 0 0 auto;
    width: 280px;
    margin-left: 20px;
    position: absolute;
    right: 0;
}

.about__content.hide {
    position: relative;
    max-height: 315px;
    overflow: hidden;
    margin-bottom: 10px;
}

.about__content.hide::after {
    content: "";
    position: absolute;
    top: 45px;
    display: block;
    width: 100%;
    height: 270px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 63.78%, #FFFFFF 100%);
}

.about__show-text.hide {
    display: none !important;
}

@media (max-width: 1280px) {
    .about__info {
        max-width: 640px;
    }

    .about__number {
        font-size: 22px;
        line-height: 44px;
    }
}

@media (max-width: 1024px) {
    .about__form {
        position: static;
    }

    .about__title {
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 28px;
    }

    .about__info {
        max-width: 480px;
    }

    .about__info--md-expand {
        max-width: 100%;
    }

    .about__row {

    }

    .about__cell {
        width: calc(100% / 2);
    }

    .about__cell:nth-child(n + 3) {
        margin-top: 15px;
    }

    .about__content {
        margin-top: 30px;
        margin-bottom: 70px;
    }

    .about__features {
        margin-bottom: 40px;
    }

    .about__form {
        width: 228px;
        margin-left: 12px;
    }
}

@media (min-width: 768px) {
    .about__btn--sm-show {
        display: none;
    }
}

@media (max-width: 768px) {
    .about__info {
        max-width: 100%;
    }

    .about__info + .about__info {
        margin-top: 50px;
    }

    .about__content {
        margin-bottom: 40px;
    }

    .about__features {
        grid-template-columns: 1fr 1fr;
    }

    .about__item {
        /*width: calc((100% / 2) - 25px);*/
        margin-top: 35px;
    }

    .about__form {
        display: none;
    }
}

@media (max-width: 480px) {
    .about__title {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 28px;
    }

    .about__table {
        width: auto;
        margin-left: -15px;
        margin-right: -15px;
        padding: 10px;
    }

    .about__cell {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .about__row {
        font-size: 14px;
        line-height: 26px;
    }

    .about__cell:nth-child(n + 3) {
        margin-top: 0;
    }

    .about__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .about__number {
        font-size: 18px;
        line-height: 44px;
    }

    .about__text {
        font-size: 14px;
        line-height: 20px;
    }
}
