:root {
    --uniBgColor: #ffffff;
}

.row-news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(min-content, max-content));
    gap: 0 24px;
    grid-template-areas: "news-module1 news-module1 news-module2 news-module3" ". . . news-button";
}

@media (max-width: 767px) {
    .row-news {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, minmax(min-content, max-content));
        gap: 0 24px;
        grid-template-areas: "news-module1" "news-button";
    }
}
.news-row, .news-page-container .row-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 375px);
    gap: 0 24px;
}

.news-page-container .row-news {
    grid-template-areas: "news-module1 news-module2 news-module3" ". . news-button";
}

@media (max-width: 992px) {
    .news-row, .news-page-container .row-news {
        grid-template-rows: repeat(1, 320px);
    }
    .news-container {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .news-row, .news-page-container .row-news {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 350px;
        gap: 0 24px;
    }
}
@media (min-width: 768px) {
    .news-module__item:first-of-type {
        grid-row-start: 1;
        grid-column-start: 1;
        grid-row-end: 2;
        grid-column-end: 3;
    }
}
.news-button {
    max-height: 51px;
    box-shadow: 0 0 0 rgba(55, 67, 85, 0);
}

.news-module .news-module__item:first-of-type {
    grid-area: news-module1;
}

.news-module .news-module__item:nth-of-type(2) {
    grid-area: news-module2;
}

.news-module .news-module__item:nth-of-type(3) {
    grid-area: news-module3;
}

.news-module .news-module__item:last-of-type {
    grid-area: news-button;
}

@media screen and (max-width: 767px) {
    div.news-module__heading {
        margin-top: 30px;
    }
}

.news-module__item {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eceff4;
}
@media screen and (max-width: 767px) {
    .news-module__item {
        width: 100%;
    }
}

.news-module__image {
    cursor: pointer;
    display: block;
    position: relative;
    height: 100%;
}

.news-module__image img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
}

.news-module__description {
    display: flex;
    flex-direction: column;
    margin: 15px 24px 24px;
    flex-basis: 100%;
}

.news-story-page .news-module__description {
    display: flex;
    flex-direction: column;
    margin: 15px 0 5px;
    flex-basis: 100%;
}

.news-story-page .news-module__description .news-module__name {
    min-height: 46px;
    transition: 0.2s;
    margin: 0 0 40px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: inherit;
    width: 100%;
    text-align: left;
    overflow: hidden;
}

@media (max-width: 992px) {
    .news-story-page .news-module__description .news-module__name {
        margin: 0 0 20px;
    }
}
.news-story-page .news-module__description .news-module__name:hover {
    color: #4292EF;
}

.news-module__category-date-viewed {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    color: #8493a8;
    font-size: 12px;
}

.news-module__category {
    color: #374355;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px;
}

.news-module__date {
    flex: 0 0 auto;
    margin: 0 15px 0 0;
}

.news-module__viewed {
    flex: 0 0 auto;
}

.news-module__date .fa, .news-module__viewed .fa {
    margin: 0 5px 0 0;
    font-size: 0.9em;
}

.news-module__name {
    display: block;
    margin: 0 0 25px;
    font-size: 15px;
    color: #374355;
}

.news-row .news-module__name {
    margin: 0 0 50px;
    min-height: 43px;
}

.news-row .news-module__item:first-child {
    position: relative;
    border: none;
}
.news-row .news-module__item:first-child .news-module__image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    border-radius: 4px;
}
.news-row .news-module__item:first-child .news-module__description {
    position: absolute;
    bottom: 10px;
    padding: 0;
}
.news-row .news-module__item:first-child .news-module__category-date-viewed {
    color: #FFFFFF;
}
.news-row .news-module__item:first-child .news-module__name {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 5px;
}
.news-row .news-module__item:first-child .news-module__text {
    display: none;
}

@media (max-width: 992px) {
    .news-module__name {
        display: block;
        margin: 0 0 25px;
        font-size: 13px;
        color: #374355;
    }
    .news-row .news-module__name {
        margin: 0 0 25px;
    }
    .news-module__description {
        margin: 15px 24px;
    }
}
.news-module__text a {
    font-size: 12px;
    font-weight: 500;
    color: #374355;
    transition: 0.2s;
}

.news-module__text a:hover {
    color: #4292ef;
}

@media screen and (min-width: 768px) {
    .news-module__item:first-child {
        position: relative;
        border: none;
    }
    .news-module__item:first-child .news-module__image:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
        border-radius: 4px;
    }
    .news-module__item:first-child .news-module__description {
        position: absolute;
        bottom: 0;
        padding: 0 25px;
    }
    .news-module__item:first-child .news-module__category-date-viewed {
        color: #FFFFFF;
    }
    .news-module__item:first-child .news-module__name {
        font-size: 24px;
        color: #FFFFFF;
    }
    .news-module__item:first-child .news-module__text {
        display: none;
    }
}

.news-module__item:last-child {
    margin-left: auto;
    margin-top: -1px;
    text-align: center;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news-list__layout {
    display: flex;
}

.news-list__item {
    margin: 0 0px 20px;
    padding: 0;
}

.news-list__image img {
    border-radius: 3px 3px 0 0;
    cursor: pointer;
}

.news-list__category-date-viewed {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    color: #8493a8;
    font-size: 0.85em;
}

.news-list__date {
    margin: 0 15px 0 0;
}

.news-list__date .fa, .news-list__viewed .fa {
    margin: 0 5px 0 0;
}

.news-list__name {
    display: block;
    margin: 0 0 10px;
    font-weight: 500;
}

.news-list__description {
    padding: 15px;
}

.news-list__text {
    line-height: 1.5em;
    font-size: 0.95em;
}

.news-page {
    margin: 0 0 30px;
}

@media (max-width: 767px) {
    .news-page {
        margin: 0 20px 30px;
    }
}
.news-page__image {
    float: left;
    margin: 0 20px 10px 0;
    width: 30%;
}

.news-page__image img {
    border-radius: 3px;
}

.news-page__description {
    font-size: 15px;
    line-height: 1.4;
}

.news-page__description img, .news-page__description iframe {
    max-width: 100%;
}

.news-page__social-posted {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.news-page__posted {
    color: #8493a8;
    margin: -15px 0 20px;
    font-size: 15px;
}

.news-page__posted .fa-eye {
    margin: 0 5px 0 0;
}

.news-page__posted .fa-calendar {
    margin: 0 5px 0 15px;
}

.news-page ol, .news-page ul {
    display: inline-block;
    padding: 0 0 0 15px;
    clear: both;
}

.news-prevnext {
    margin: 0 0 30px;
    padding: 15px 0;
    background: #f8f8f8;
    border-radius: 4px;
}

.news-prevnext__item {
    height: 100%;
    padding: 0 5px;
}

.news-prevnext__item.prev {
    text-align: right;
}

.news-prevnext__a {
    display: flex;
    height: calc(100% - 20px);
    padding: 0 0 10px;
    font-weight: 500;
    text-decoration: underline;
}

.news-prevnext__a.prev {
    justify-content: flex-end;
}

.news-prevnext__date {
    font-size: 0.95em;
    color: #8493a8;
}

.mfp-bg {
    opacity: 0 !important;
    transition: all ease-in-out 0.3s;
}

.mfp-bg.mfp-ready {
    opacity: 0.6 !important;
}

.mfp-bg.mfp-removing {
    opacity: 0 !important;
}

.mfp-wrap {
    z-index: 1066;
}

.mfp-arrow {
    opacity: 0 !important;
    transition: all ease-in-out 0.3s;
}

.mfp-ready .mfp-arrow {
    opacity: 0.5 !important;
}

.mfp-removing .mfp-arrow {
    opacity: 0 !important;
}

.mfp-figure {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px #555;
}

.mfp-figure:after {
    display: none !important;
}

.mfp-close {
    color: #555 !important;
    right: 10px !important;
}

.mfp-bottom-bar {
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.mfp-bottom-bar .mfp-title {
    max-width: 85%;
    padding: 0 !important;
    font-size: 0.9em;
    color: #8493a8;
}

.mfp-bottom-bar .mfp-counter {
    position: relative;
    color: #555;
}

.news-container {
    max-width: 924px;
    margin-top: 40px;
    margin-left: -462px;
}

@media (max-width: 1079px) {
    .news-container {
        width: 100%;
        margin-left: 0;
    }
}
.news-container .news-module__item {
    margin-bottom: 25px;
}

.news-container .news-module__item:last-child {
    margin-left: 0;
    margin-top: 0;
    text-align: left;
}

@media (min-width: 1345px) {
    .news-page-container {
        max-width: 974px;
        margin-left: -487px;
    }
}
@media (max-width: 1344px) {
    .news-page-container {
        max-width: 874px;
        margin-left: -437px;
    }
}
@media (max-width: 1079px) {
    .news-page-container {
        max-width: 100%;
        margin-left: 0;
        padding: 0;
    }
}
.news-page-container .heading {
    font-size: 36px;
}

@media (max-width: 769px) {
    .news-page-container .heading {
        margin: 10px 20px 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 42px;
    }
}
.news-page-container .news-module__item {
    max-width: 282px;
    border: 1px solid #eceff4;
    margin-bottom: 20px;
}

.news-page-container .news-module__item .news-module__image:after {
    content: none;
}

.news-page-container .news-module__item .news-module__description {
    position: relative;
    bottom: auto;
    padding: 15px 24px 24px;
}

.news-page-container .news-module__item .news-module__category-date-viewed {
    color: #374355;
}

.news-page-container .news-module__item .news-module__name {
    font-size: 15px;
    color: #374355;
}

.news-page-container .news-module__item .news-module__text {
    display: block;
}

.news-page-container .news-module__item:last-child {
    display: none;
}

.news-page-back {
    text-transform: uppercase;
}
@media screen and (min-width: 768px) {
    .news-page-back {
        position: absolute;
    }
}

@media (max-width: 1079px) {
    .news-page-back {
        display: none;
    }
}
.news-page__social {
    padding: 25px 0;
    margin: 40px 0;
    border-top: 1px solid #eceff4;
    border-bottom: 1px solid #eceff4;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .news-module__item:nth-of-type(2) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .news-module__item:nth-of-type(3) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .news-container .news-module__item:nth-of-type(2) {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .news-container .news-module__item:nth-of-type(3) {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .news-module.news-0 {
        margin: 0 19px 30px;
    }
}



.universal-content_column {
    background-color: var(--uniBgColor);
}

.universal-content h2 {
    text-align: center;
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 600;
}

.universal-content h3 {
    text-align: left;
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 600;
}

.universal-content_column p {
    text-align: center;
    max-width: 94%;
    margin: 0 auto 40px;
    font-size: 16px;
    font-weight: 400;
}

.universal-content_image-description p {
    text-align: left;
    font-size: 16px;
}

.universal-content img {
    width: 100%;
    object-fit: contain;
}

.universal-content::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
    width: 100vw;
    height: 100%;
    background-color: var(--uniBgColor);
}

.universal-content {
    margin: 0;
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.universal-content_image-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.universal-content_image-description div {
    align-self: center;
}

.universal-content_small-image img {
    max-width: 80%;
    margin: 0 10%;
}

@media screen and (max-width: 991px) {
    .universal-content h2 {
        font-size: 22px;
        margin: 0 0 10px;
    }

    .universal-content h3 {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .universal-content_column p {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .universal-content_image-description p {
        font-size: 14px;
        margin: 0;
    }

    .universal-content {
        padding: 25px 0;
    }

    .universal-content_image-description {
        gap: 40px;
    }

    .universal-content_image-description img {
        max-width: 80%;
        margin: 0 10%;
    }
}

@media screen and (max-width: 767px) {
    .universal-content_small-image img {
        max-width: 90%;
        margin: 0 5%;
    }
}

@media screen and (max-width: 566px) {
    .universal-content_column h2 {
        text-align: left;
    }

    .universal-content_column p {
        text-align: left;
        max-width: 100%;
    }

    .universal-content_image-description {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .universal-content_image-description div {
        grid-area: 1 / 1 / 2 / 2;
    }

    .universal-content_image-description img {
        grid-area: 2 / 1 / 3 / 2;
    }
}

.universal-content_list-wrapper p {
    text-align: left;
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 400;
}

.universal-content_list {
    text-align: left;
    max-width: 100%;
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 15px;
}

.universal-content_list li {
    padding: 3px 0 3px 0;
}

.universal-content_list-wrapper h3, .universal-content_list-wrapper h2 {
    text-align: left;
}

@media screen and (max-width: 991px) {
    .universal-content_list-wrapper p {
        font-size: 14px;
        margin: 0 0 20px;
    }

    .universal-content_list {
        font-size: 14px;
        margin: 0 0 20px;
    }
}

.universal-content {
    opacity: 0;
    transform: translateY(20px);
}

.universal-landing_animation-show {
    opacity: 1;
    transition: all .7s;
    transform: translateY(0%);
}


/*# sourceMappingURL=news.css.map */


/* ------------------------------------------------------------------------------------------------- */

.landing-promotion {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
}
.promotion-section-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.promotion-section-1__titles {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.promotion-section-1__titles h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.promotion-section-1__titles h2:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 12px;
    text-wrap: nowrap;
}
.promotion-section-1__titles h2:nth-child(1)::after {
    content: "";
    width: 320px;
    height: 3px;
    background-color: #000;
    margin: 0 0 0 auto;
}
.promotion-section-1__titles h2:nth-child(2) {
    text-align: end;
}
.promotion-section-1__titles h2 span {
    color: #D59B38;
}
.promotion-section-1 p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    max-width: 620px;
    width: 100%;
    align-self: end;
}
.promotion-section-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
}
.promotion-section-1 ul li {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    padding: 4px 35px;
    border-radius: 40px;
    background: #D59B38;
    width: auto;
}
.promotion-section-1 img {
    max-width: 940px;
    width: 100%;
}
@media screen and (max-width: 1344px) {
    .landing-promotion {
        max-width: 844px;
    }
    .promotion-section-1__titles h2:nth-child(1)::after {
        width: 216px;
    }
    .promotion-section-1 ul {
        gap: 20px;
    }
    .promotion-section-1 ul li {
        padding: 4px 20px;
    }
}
@media screen and (max-width: 1079px) {
    .landing-promotion {
        max-width: 940px;
    }
    .promotion-section-1__titles h2:nth-child(1)::after {
        width: 320px;
    }
    .promotion-section-1 ul {
        gap: 25px;
    }
    .promotion-section-1 ul li {
        padding: 4px 35px;
    }
}
@media screen and (max-width: 991px) {
    .landing-promotion {
        max-width: 720px;
    }
    .promotion-section-1 {
        gap: 20px;
    }
    .promotion-section-1__titles h2 {
        font-size: 40px;
    }
    .promotion-section-1__titles h2:nth-child(1) {
        gap: 10px;
    }
    .promotion-section-1__titles h2:nth-child(1)::after {
        width: 197px;
    }
    .promotion-section-1 p {
        font-size: 16px;
        max-width: 520px;
    }
    .promotion-section-1 ul {
        gap: 20px;
    }
    .promotion-section-1 ul li {
        font-size: 18px;
        padding: 4px 20px;
    }
}
@media screen and (max-width: 767px) {
    .promotion-section-1__titles h2 {
        font-size: 32px;
    }
    .promotion-section-1__titles h2:nth-child(1) {
        gap: 8px;
    }
    .promotion-section-1__titles h2:nth-child(1)::after {
        width: 100%;
    }
    .promotion-section-1__titles h2:nth-child(1) span {
        padding: 0 20px 0 0;
    }
    .promotion-section-1 p {
        max-width: 418px;
    }
    .promotion-section-1 ul {
        flex-wrap: wrap;
        justify-content: start;
        gap: 13px;
        max-width: 418px;
        align-self: end;
    }
    .promotion-section-1 ul li {
        color: #FFF;
        font-size: 16px;
        padding: 2px 14px;
    }
}
@media screen and (max-width: 566px) {
    .promotion-section-1__titles h2 {
        font-size: 28px;
    }
    .promotion-section-1__titles h2:nth-child(1) {
        flex-direction: column;
        align-items: start;
        position: relative;
    }
    .promotion-section-1__titles h2:nth-child(1)::after {
        width: calc(100% - 150px);
        position: absolute;
        right: 0;
        bottom: 16px;
    }
    .promotion-section-1__titles h2:nth-child(1) span {
        padding: 0;
    }
    .promotion-section-1 p {
        max-width: 100%;
    }
    .promotion-section-1 ul {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        max-width: 100%;
    }
}

/* section-2------------------------------------------------------------------------------------ */
.promotion-section-2 {
    margin: 100px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.promotion-section-2 h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.promotion-section-2 h2::before {
    content: "";
    width: 220px;
    height: 40px;
    background-color: #D59B38;
}
.promotion-section-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.promotion-section-2 ul li {
    display: flex;
    align-items: start;
    gap: 20px;
}
.promotion-section-2__place {
    position: relative;
    max-width: 220px;
    width: 100%;
}
.promotion-section-2__place::after {
    content: "";
    width: 100%;
    height: 50px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
    position: absolute;
    top: -29px;
    left: 0;
    z-index: -1;
}
.promotion-section-2 ul li:nth-child(1) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/one.svg);
}
.promotion-section-2 ul li:nth-child(2) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/two.svg);
}
.promotion-section-2 ul li:nth-child(3) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/three.svg);
}
.promotion-section-2 ul li:nth-child(4) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/four-five.svg);
}
.promotion-section-2 ul li:nth-child(5) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/six-eight.svg);
}
.promotion-section-2 ul li:nth-child(6) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/nine-ten.svg);
}
.promotion-section-2 ul li:nth-child(7) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/eleven-twenty.svg);
}
.promotion-section-2 ul li:nth-child(8) .promotion-section-2__place:after {
    background-image: url(/image/catalog/news-promotion/twenty-one-thirty.svg);
}
.promotion-section-2__place h3 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}
.promotion-section-2__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promotion-section-2__info a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    transition: all .2s ease;
}
.promotion-section-2__info a:hover {
    color: #D59B38;
}
.promotion-section-2__info h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
}
.promotion-section-2__info p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
@media screen and (max-width: 1344px) {
    .promotion-section-2 h2::before {
        width: 196px;
    }
    .promotion-section-2__place {
        max-width: 196px;
    }
    .promotion-section-2__place::after {
        top: -32px;
    }
    .promotion-section-2__place h3 {
        font-size: 20px;
    }
}
@media screen and (max-width: 1079px) {
    .promotion-section-2 h2::before {
        width: 220px;
    }
    .promotion-section-2__place {
        max-width: 220px;
    }
    .promotion-section-2__place::after {
        top: -29px;
    }
    .promotion-section-2__place h3 {
        font-size: 22px;
    }
}
@media screen and (max-width: 991px) {
    .promotion-section-2 {
        margin: 80px 0 0 0;
        gap: 70px;
    }
    .promotion-section-2 h2 {
        font-size: 40px;
        gap: 30px;
    }
    .promotion-section-2 h2::before {
        width: 180px;
    }
    .promotion-section-2 ul {
        gap: 53px;
    }
    .promotion-section-2 ul li {
        gap: 30px;
    }
    .promotion-section-2__place {
        max-width: 180px;
    }
    .promotion-section-2__place::after {
        top: -33px;
    }
    .promotion-section-2__place h3 {
        font-size: 18px;
    }
    .promotion-section-2__info a {
        font-size: 16px;
    }
    .promotion-section-2__info h4 {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .promotion-section-2 {
        margin: 60px 0 0 0;
        gap: 58px;
    }
    .promotion-section-2 h2 {
        font-size: 32px;
        gap: 30px;
    }
    .promotion-section-2 h2::before {
        width: 153px;
    }
    .promotion-section-2 ul {
        gap: 38px;
    }
    .promotion-section-2 ul li {
        gap: 30px;
    }
    .promotion-section-2__place {
        max-width: 153px;
    }
    .promotion-section-2__place::after {
        height: 43px;
        top: -28px;
    }
    .promotion-section-2__place h3 {
        font-size: 16px;
    }
    .promotion-section-2__info {
        gap: 6px;
    }
}
@media screen and (max-width: 566px) {
    .promotion-section-2 {
        gap: 58px;
    }
    .promotion-section-2 h2 {
        font-size: 28px;
    }
    .promotion-section-2 h2::before {
        content: none;
    }
    .promotion-section-2 ul {
        gap: 58px;
    }
    .promotion-section-2 ul li {
        flex-direction: column;
        gap: 10px;
    }
    .promotion-section-2__place {
        max-width: 100%;
    }
    .promotion-section-2__info {
        gap: 2px;
    }
    .promotion-section-2__info a {
        font-size: 14px;
    }
    .promotion-section-2__info h4 {
        font-size: 14px;
    }
    .promotion-section-2__info p {
        font-size: 14px;
    }
}

/* section-3------------------------------------------------------------------------------------------- */
.promotion-section-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 66px 0;
}
.promotion-section-3__wrap {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.promotion-section-3__wrap h3 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}
.promotion-section-3__wrap h3:nth-child(2) {
    color: #D59B38;
}
.promotion-section-3__wrap p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.promotion-section-3 img {
    max-width: 460px;
    width: 100%;
    margin: 0 0 0 -300px;
}

@media screen and (max-width: 1344px) {

}
@media screen and (max-width: 1079px) {

}
@media screen and (max-width: 991px) {
    .promotion-section-3__wrap {
        max-width: 355px;
    }
    .promotion-section-3__wrap h3 {
        font-size: 20px;
    }
    .promotion-section-3 img {
        max-width: 365px;
    }
}
@media screen and (max-width: 767px) {
    .promotion-section-3__wrap {
        max-width: 295px;
    }
    .promotion-section-3__wrap h3 {
        font-size: 18px;
    }
    .promotion-section-3 img {
        max-width: 260px;
    }
}
@media screen and (max-width: 566px) {
    .promotion-section-3 {
        flex-direction: column;
        align-items: start;
        margin: 60px 0;
    }
    .promotion-section-3__wrap {
        max-width: 280px;
    }
    .promotion-section-3__wrap h3 {
        font-size: 16px;
    }
    .promotion-section-3__wrap p {
        font-size: 14px;
    }
    .promotion-section-3 img {
        margin: 0;
    }
}
/* section-4------------------------------------------------------------------------------------------- */
.promotion-section-4 {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.promotion-section-4 h2 {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}
.promotion-section-4 h2::before {
    content: "";
    width: 270px;
    height: 40px;
    background-color: #D59B38;
}
.promotion-section-4__wrap {
    display: grid;
    grid-template-columns: 220px 640px;
    column-gap: 55px;
    row-gap: 50px;
    padding: 0 0 0 25px;
}
.promotion-section-4__telegram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    grid-area: 1 / 1 / 3 / 2;
}
.promotion-section-4__qr {
    max-width: 200px;
    width: 100%;
}
.promotion-section-4__telegram a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8.5px 25.5px;
    border-radius: 30px;
    background: #08C;
}
.promotion-section-4__telegram a span {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.promotion-section-4__telegram a img {
    width: 18px;
}
.promotion-section-4__wrap ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;

    grid-area: 1 / 2 / 2 / 3;
}
.promotion-section-4__wrap ol li {
    display: flex;
    gap: 18px;
    align-items: start;
}
.promotion-section-4__wrap ol li:nth-child(1)::before {
    content: "";
    width: 42px;
    height: 40px;
    background-image: url(/image/catalog/news-promotion/list-1.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    display: flex;
    flex-shrink: 0;
    margin: 7px 0 0 0;
}
.promotion-section-4__wrap ol li:nth-child(2)::before {
    content: "";
    width: 42px;
    height: 40px;
    background-image: url(/image/catalog/news-promotion/list-2.svg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    display: flex;
    flex-shrink: 0;
    margin: 7px 0 0 0;
}
.promotion-section-4__wrap ol li p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.promotion-section-4__wrap ol li p span {
    font-weight: 700;
}
.promotion-section-4 .promotion-section-4__text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;

    grid-area: 2 / 2 / 3 / 3;
}
.promotion-section-4 .promotion-section-4__text span {
    font-weight: 700;
}

@media screen and (max-width: 1344px) {
    .promotion-section-4 h2 {
        gap: 20px;
    }
    .promotion-section-4 h2::before {
        width: 240px;
    }
    .promotion-section-4__wrap {
        grid-template-columns: 220px 580px;
        column-gap: 30px;
        row-gap: 30px;
        padding: 0 0 0 12px;
    }
}
@media screen and (max-width: 1079px) {
    .promotion-section-4 h2 {
        gap: 30px;
    }
    .promotion-section-4 h2::before {
        width: 270px;
    }
    .promotion-section-4__wrap {
        grid-template-columns: 220px 640px;
        column-gap: 55px;
        row-gap: 50px;
        padding: 0 0 0 25px;
    }
}
@media screen and (max-width: 991px) {
    .promotion-section-4 {
        gap: 40px;
    }
    .promotion-section-4 h2 {
        font-size: 40px;
        gap: 20px;
    }
    .promotion-section-4 h2::before {
        width: 215px;
    }
    .promotion-section-4__wrap {
        grid-template-columns: 190px 485px;
        column-gap: 30px;
        row-gap: 40px;
        padding: 0 0 0 13px;
    }
    .promotion-section-4__telegram {
        gap: 20px;
    }
    .promotion-section-4__qr {
        max-width: 170px;
    }
    .promotion-section-4__telegram a {
        padding: 10px 19px;
    }
    .promotion-section-4__telegram a span {
        font-size: 16px;
    }
    .promotion-section-4__telegram a img {
        width: 16px;
    }
    .promotion-section-4__wrap ol {
        gap: 20px;
    }
    .promotion-section-4__wrap ol li:nth-child(1)::before {
        margin: 0;
    }
    .promotion-section-4__wrap ol li:nth-child(2)::before {
        margin: 0;
    }
    .promotion-section-4__wrap ol li p {
        font-size: 16px;
    }
    .promotion-section-4 .promotion-section-4__text {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .promotion-section-4 {
        gap: 30px;
    }
    .promotion-section-4 h2 {
        font-size: 32px;
    }
    .promotion-section-4 h2::before {
        content: none;
    }
    .promotion-section-4__wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    .promotion-section-4__qr {
        display: none;
    }
    .promotion-section-4__telegram {
        align-items: start;
    }
    .promotion-section-4__telegram a {
        justify-content: center;
        max-width: 334px;
        width: 100%;
    }
    .promotion-section-4__wrap ol {
        order: -1;
    }
}
@media screen and (max-width: 566px) {
    .promotion-section-4 {
        gap: 20px;
    }
    .promotion-section-4 h2 {
        font-size: 28px;
    }
    .promotion-section-4__wrap {
        gap: 20px;
    }
    .promotion-section-4__wrap ol li p {
        font-size: 14px;
    }
}

/* section-5------------------------------------------------------------------------------------ */
.promotion-section-5 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 100px 0;
}
.promotion-section-5__titles {
    display: flex;
    gap: 30px;
    align-items: center;
}
.promotion-section-5__titles h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    padding: 12px 15px;
    background-color: #D59B38;
}
.promotion-section-5__titles h3 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
}
.promotion-section-5__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.promotion-section-5 p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.promotion-section-5 p span {
    font-weight: 700;
}
.promotion-section-5 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 780px;
    width: 100%;
}
.promotion-section-5 ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}
.promotion-section-5 ul li div {
    width: 50px;
    height: 2px;
    background: #D59B38;
    margin: 14px 0 0 0;
    display: flex;
    flex-shrink: 0;
}

@media screen and (max-width: 1344px) {
    .promotion-section-5__titles h3 {
        font-size: 34px;
    }
}
@media screen and (max-width: 1079px) {
    .promotion-section-5__titles h3 {
        font-size: 36px;
    }
}
@media screen and (max-width: 991px) {
    .promotion-section-5 {
        gap: 20px;
        margin: 90px 0;
    }
    .promotion-section-5__titles {
        gap: 20px;
    }
    .promotion-section-5__titles h2 {
        font-size: 36px;
        padding: 14px;
    }
    .promotion-section-5__titles h3 {
        font-size: 29px;
    }
    .promotion-section-5 p {
        font-size: 16px;
    }
    .promotion-section-5 ul li div {
        width: 40px;
        margin: 12px 0 0 0;
    }
}
@media screen and (max-width: 767px) {
    .promotion-section-5 {
        margin: 60px 0;
    }
    .promotion-section-5__titles h2 {
        font-size: 30px;
        padding: 22px 16px;
    }
    .promotion-section-5__titles h3 {
        font-size: 24px;
    }
    .promotion-section-5__wrap {
        gap: 10px;
    }
    .promotion-section-5 ul {
        gap: 6px;
    }
}
@media screen and (max-width: 566px) {
    .promotion-section-5__titles {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
    .promotion-section-5__titles h2 {
        padding: 5px 10px;
        width: 100%;
    }
    .promotion-section-5__titles h3 {
        font-size: 18px;
    }
    .promotion-section-5__wrap {
        gap: 10px;
    }
    .promotion-section-5 p {
        font-size: 14px;
    }
    .promotion-section-5 ul li div {
        width: 20px;
        margin: 10px 0 0 0;
    }
}

.tabnew {
    margin: 0 0 30px 0;
}
.tabnew ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 894px;
    width: 100%;
}
.tabnew ul li button {
    color: #364355;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    padding: 13px 36px;
    border-radius: 4px;
    border: 1px solid #D59B38;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.tabnew ul li button:hover {
    color: #D28A0D;
}
.tabnew ul li button:active {
    background-color: #D28A0D;
}
.tabnew ul li button.active {
    background-color: #D59B38;
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .tabnew ul {
        gap: 10px;
    }
    .tabnew ul li button {
        padding: 12px 26px;
    }
}
@media screen and (max-width: 566px) {
    .tabnew ul {
        gap: 8px;
    }
    .tabnew ul li button {
        padding: 10px 20px;
    }
}