.promo {
    padding: 75px 0;
    height: 500px;
    box-sizing: border-box;
    background: linear-gradient(119.01deg, rgba(255, 255, 255, 0.84) 0.939%, rgba(20, 157, 158, 0.38) 100.968%);
}

.promo .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 75px;
    height: 100%;
}

.price-promo-title {
    font-size: 56px;
    line-height: 1.21;
}

.price-promo-title:last-child {
    align-self: flex-end;
}

.price {
    padding: 41px 0 60px 0;
}

.ui-accordion-header {
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.ui-accordion-content {
    display: none;
}

.ui-accordion-header-icon {
    background: url(../img/arrow.svg) no-repeat center;
    width: 20px;
    height: 10px;
    position: absolute;
    top: calc(50% - 4px);
    right: 43px;
}

.ui-accordion-header-active .ui-accordion-header-icon {
    background: url("../img/arrow.svg") no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.price-table {
    border-spacing: 0;
    width: 100%;
}

.price-table-head {
    background: rgb(20, 157, 158);
}

.price-table-head:first-of-type {
    transform: translateY(-10px);
}

.price-table-head th {
    color: rgb(255, 255, 255);
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
    text-align: left;
    padding: 18px 43px 19px 43px;
}

.price-table-head th:first-child {
    border-radius: 20px 0 0 20px;
}

.price-table-head th:last-child {
    border-radius: 0 20px 20px 0;
}

.price-table-row {
    color: rgb(34, 34, 34);
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-transform: uppercase;
}

.price-table-row.odd {
    background: rgb(245, 245, 245);
}

.price-table-row.even {
    background: rgb(232, 232, 232);
}

.ui-accordion-header.ui-accordion-header-active {
    background: rgb(245, 245, 245);
    color: rgb(20, 157, 158);
}

.table-title-category {
    padding: 16px 43px 17px 43px;
}

.inner-row-title {
    background: rgb(232, 232, 232);
}

.inner-row-title.main {
    background: rgb(202, 231, 224);
}

.table-title-inner-category {
    color: rgb(34, 34, 34);
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    padding: 16px 43px 17px 43px;
}

.inner-row {
    background: rgb(245, 245, 245);
    color: rgb(34, 34, 34);
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    line-height: 29px;
}

.inner-row td {
    border-top: 1px solid rgb(107, 107, 107);
}

.cell-name {
    padding: 16px 43px;
    font-weight: 400;
    width: 836px;
}

.cell-price {
    background: rgb(222, 222, 222);
    padding: 16px 48px;
    font-weight: 500;
    text-align: center;
}

.cell-btn {
    padding: 6px 5px;
}

.blog-news-section {
    padding: 62px 0 66px 0;
}

.blog-news-section .container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.blog-news-items {
    margin-top: 30px;
    list-style: none;
    display: flex;
    gap: 35px;
}

.blog-link,
.news-link {
    text-decoration: none;
    font-size: 0;
}

.blog-date {
    color: rgb(163, 163, 163);
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 10px;
}

.blog-name {
    margin-top: 8px;
    color: rgb(0, 0, 0);
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    max-width: 300px;
}

.blog-img,
.news-img {
    max-width: 300px;
    margin-left: -5px;
    border-radius: 20px;
}

.blog-img img,
.news-img img {
    width: 100%;
    border-radius: 20px;
}

.all-blog,
.all-news {
    margin-top: 20px;
    color: rgb(255, 90, 48);
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .blog-news-section .container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 424px) {
    .blog-news-section {
        padding: 30px 0;
    }

    .blog-news-section .container {
        gap: 15px;
    }

    .blog-news-items {
        gap: 20px;
    }

    .blog-title,
    .news-title {
        font-size: 22px;
    }

    .blog-name {
        font-size: 16px;
    }
}