.syllabus__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 2rem;
}

.syllabus__option {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.syllabus__option-name {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 115%;
    color: #7E828F;
}

.syllabus__option-value {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 120%;
}

.syllabus-table {
    display: flex;
    flex-direction: column;
    margin-top: 3.2rem;
}

.syllabus-table__head {
    display: grid;
    grid-template-columns: 1fr 10fr 2fr 4fr 2fr;
}

.syllabus-table__body .syllabus-table__row {
    display: grid;
    grid-template-columns: 1fr 10fr 2fr 2fr 2fr 2fr;
}

.syllabus-table__head .syllabus-table__col {
    display: flex;
    flex-direction: column;
}

.syllabus-table__head .syllabus-table__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.syllabus-table__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #0088CCCC;
    border-bottom: 1px solid #0088CCCC;
    padding: 1rem;
}

.syllabus-table__head .syllabus-table__cell {
    border-top: 1px solid #0088CCCC;
}

.syllabus-table__head > .syllabus-table__cell:first-child,
.syllabus-table__body .syllabus-table__row .syllabus-table__cell:first-child {
    border-left: 1px solid #0088CCCC;
}

.syllabus-table__head .syllabus-table__col .syllabus-table__row .syllabus-table__cell {
    border-top: 0;
}

.syllabus-table__body .syllabus-table__row b {
    display: contents;
}

.syllabus-table__body .syllabus-table__row .syllabus-table__cell:nth-child(2) {
    text-align: left;
    justify-content: left;
}
.syllabus-table__footer .syllabus-table__row {
    display: grid;
    grid-template-columns: 11fr 2fr 2fr 2fr 2fr;
}
.syllabus-table__footer .syllabus-table__row .syllabus-table__cell:nth-child(1) {
    text-align: left;
    justify-content: left;
    border-left: 1px solid #0088CCCC;
}

.calc {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: .6rem;
    gap: 2rem;
}
.calc__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.calc__left {
    display: flex;
    flex-direction: column;
    width: 83.2rem;
    gap: 2rem;
}
.calc__right{
    flex: 1;
}
.calc__title {
    font-size: 2.1rem;
    color: #1D2029;
    font-weight: 500;
    line-height: 120%;
}
.calc__head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: .6rem;
}
.calc__info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}
.calc__price{
    font-size: 3rem;
    line-height: 120%;
    color: #0088CC;
}
.calc__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .4rem;
}
.calc__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.2rem;
    border-radius: .2rem;
    border: 1px solid #0088CC;
    transition: all .3s ease;
    cursor: pointer;
}
.calc__btn.active {
    background-color: #0088CC;
}
.calc__btn span{
    font-size: 1.2rem;
    line-height: 110%;
    color: #0088CC;
}
.calc__btn.active span {
    color: #fff;
}

.calc__items {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}

.calc__item {
    background-color: #fff;
    border-radius: .6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}
.calc__item-name{
    font-size: 1.2rem;
    color: #7E828F;
    line-height: 120%;
}
.calc__item-val{
    font-size: 1.5rem;
    color: #1D2029;
    line-height: 120%;
}

@media (max-width: 1280px){
    .syllabus-table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .syllabus-table {
        min-width: 1500px;
    }
    .syllabus-table__head .syllabus-table__cell {
        text-align: center;
    }
}
@media (min-width: 768px) and (max-width: 1280px){

}
@media (max-width: 767px){
    .syllabus-table__cell {
        padding: .5rem;
        font-size: 1.2rem;
    }
}

.bitrix24-form__container {
    margin-left: 10px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 0;
    margin-top: 10px;
}

@media (max-width:490px) {
    .calc__info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.content-new {
    font-size: 1.8rem;
    line-height: 120%;
    margin-bottom: 8rem;
}

.content-new p {
    font-size: 1.8rem;
    line-height: 120%;
    margin: 0 0 1.2rem;
}
.content-new span {
    font-size: 1.8rem;
    line-height: 120%;
}

.content-new p + h2,
.content-new p + h3,
.content-new p + h4,
.content-new ul + h2,
.content-new ul + h3,
.content-new ul + h4,
.content-new ol + h2,
.content-new ol + h3,
.content-new ol + h4 {
    font-weight: 500;
    margin-top: 4.8rem;
    margin-bottom: 2.4rem;
}

.content-new h2 + p:not(:has(+ ul, + ol)) {
    margin-bottom: 2rem;
}

.content-new ul,
.content-new ol {
    margin: 0 0 1.2rem;
    padding-left: 3rem;
}

.content-new ul {
    display: flex;
    flex-direction: column;
    margin: 0 0 1.2rem;
    list-style: none;
    padding: 0;

}
.content-new ul li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
    padding-left: 1.7rem;
    position: relative;
    font-size: 1.6rem;
    line-height: 120%;
    color: #7E828F;
}
.content-new ul li p {
    font-size: 1.6rem;
    line-height: 120%;
    color: #7E828F;
}
.content-new ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--primary);
    border-radius: 50%;
}

.content-new ol {
    display: flex;
    flex-direction: column;
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: decimal;
    padding-left: 1.7rem;
}
.content-new ol li {
    font-size: 1.6rem;
    line-height: 120%;
    color: #7E828F;
}
.content-new ol li p {
    font-size: 1.6rem;
    line-height: 120%;
    color: #7E828F;
}
.content-new ol li::marker {
    color: var(--primary);
}
.content-new li {
    font-size: 1.8rem;
    margin-bottom: .8rem;
    line-height: 120%;
}

.content-new li:last-child {
    margin-bottom: 0;
}

.content-new li p {
    margin: 0;
}

.content-new .bold,
.content-new strong,
.content-new b {
    font-weight: 700;
}

.content-new h2:empty,
.content-new h3:empty,
.content-new h4:empty,
.content-new p:empty {
    display: none;
}