body {
    font-family: "Mulish", sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 200;
}

header .header__desktop {
    padding: 12px 0px;
}

header .header__mob {
    display: none;
}

header .header__mob .mob-overflow {
    display: flex;
    overflow-x: scroll;
}

header .header__mob .mob-overflow .bg-white-card-overlay {
    width: 200px;
}

header .header__mob .filter-links a {
    font-size: 14px !important;
}

header .header__mob .link-actived {
    color: #ba0000 !important;
}

header .header__mob .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

header .header__mob .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

header .header__mob .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header .header__mob .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header .header__mob input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

header .header__mob .slider.round {
    border-radius: 34px;
}

header .header__mob .slider.round:before {
    border-radius: 50%;
}

header .header__mob .offcanvas {
    width: 100% !important;
}

header .header__mob .offcanvas-header {
    padding: 10px 20px;
}

header .header__mob .canvas-into {
    /* Makes the nav visibile with the open class */
}

header .header__mob .canvas-into .head-links-mob a {
    color: black;
    font-size: 18px;
    font-weight: 600;
}

header .header__mob .canvas-into .head-links-mob div {
    padding: 9px 0px;
}

header .header__mob .canvas-into .offcanvas-collapse {
    position: fixed;
    top: 67px;
    /* Height of navbar */
    bottom: 0;
    right: 100%;
    left: -300px;
    width: 300px;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: white;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: left, visibility;
}

header .header__mob .canvas-into .offcanvas-collapse {
    align-items: start;
    border-right: 5px solid rgba(0, 0, 0, 0.2);
}

header .header__mob .canvas-into .offcanvas-collapse.open {
    left: 0;
    visibility: visible;
}

header .header__mob .canvas-into .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: column;
    flex-direction: column;
}

header .header__mob .canvas-into .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

header .header__mob .canvas-into .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

header .header__mob .canvas-into .nav-underline .nav-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}

header .header__mob .canvas-into .nav-underline .nav-link:hover {
    color: #007bff;
}

header .header__mob .canvas-into .nav-underline .active {
    font-weight: 500;
    color: #343a40;
}

header .header-links a {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-underline: none;
}

header .header-links a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background: white;
    opacity: 1;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}



header .header-links a:hover {
    color: white;
}

header .header-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (max-width: 992px) {
    header .header__desktop {
        display: none;
    }

    header .header__mob {
        display: block;
    }
}


.luxar_disclaimer_container.light,
.luxar_disclaimer_container.dark {
    background: #ba0000;
    color: #ffffff;
    opacity: 1;
}

.luxar_disclaimer_container {
    text-transform: none;
}

.luxar_disclaimer_container.dark .luxar_disclaimer_button,
.luxar_disclaimer_container.light .luxar_disclaimer_button {
    color: #fff;
    border-color: #fff;
}

.luxar_disclaimer_container.dark .luxar_disclaimer_button,
.luxar_disclaimer_container.light .luxar_disclaimer_button:hover {
    color: #ba0000;
    background: #fff;
    border-color: #fff;
}


.overflow-x-hidden {
    overflow-x: hidden;
}

.dark-gradient::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}

main {

    flex: 1 0 auto;
}

a {
    text-decoration: none;
}

.bg-blur {
    backdrop-filter: blur(3px);
}

.bg-grey-blur-non {
    opacity: 0;
}

.bg-grey-blur {
    opacity: 0.65;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100vw;
    height: 100%;
    background-color: #000;
}

.fixed-top {
    margin-top: 72px;
    position: fixed;
    z-index: 100;
}

.nav-body .container {
    background: #2F2F2F;
}

.nav-body .header__layer .side-links .backside-left {
    background-color: #2F2F2F;
    position: absolute;
    top: 10px;
    left: -300px;
    height: 595px;
    width: 68%;
    z-index: 0;
}

.nav-body .header__layer {
    background-color: #2F2F2F;
}

.nav-body .header__layer .bg-white-wide {
    border-radius: 0px 0px 0px 30px;
    position: absolute;
    width: 100%;
    height: 531px;
    max-height: 600px;
    top: 64px;
    z-index: 0;
}

.nav-body .header__layer .side-links {
    position: relative;
    z-index: 1;
}

.nav-body .header__layer .overlay-body {
    position: relative;
    z-index: 1;
}

.nav-body .under-link a {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: #FFFFFF;
}

.nav-body .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.nav-body .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nav-body .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.nav-body .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.nav-body input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.nav-body .slider.round {
    border-radius: 34px;
}

.nav-body .slider.round:before {
    border-radius: 50%;
}

.nav-body .overflow-scroll {
    overflow-x: hidden !important;
}

.nav-body .size-scroll {
    max-height: 450px;
}

.nav-body .size-scroll .post-title {
    font-weight: 500;
    font-size: 10px;
    line-height: 13px;
    /* identical to box height, or 171% */
    color: #2F2F2F;
}

.nav-body .size-scroll .btn-white-bord-orange {
    font-weight: 500;
    font-size: 10px;
    line-height: 13px;
    color: #ba0000;
}

.nav-body .size-scroll .btn-white-bord-orange:hover {

    color: white;
}

.nav-body .overflow-scroll::-webkit-scrollbar {
    width: 10px;
    display: none;
}

.nav-body .overflow-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
}

.nav-body .overflow-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    display: none;
}

.nav-body .nav-news-link {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #2F2F2F;
}

.nav-body .nav-news-link div {
    padding-bottom: 15px;
}

.nav-body .nav-link-actived {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #2F2F2F;
}

.nav-body .filter-links a {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    /* or 19px */
    letter-spacing: 0.005em;
}

.nav-body .filter-links .link-actived {
    color: #ba0000 !important;
}

.nav-body .side-links .head-links div {
    padding-bottom: 20px;
}

.nav-body .side-links .head-links a {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #FFFFFF;
}

.nav-body .side-links .bottom-links div {
    padding-bottom: 20px;
}

.nav-body .side-links .bottom-links a {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    /* identical to box height, or 29px */
    letter-spacing: 0.005em;
    color: #FFFFFF;
}

.nav-body .side-links .head-links {
    position: relative;
    z-index: 1;
}

.nav-body .header__layer .bottom-links {
    position: relative;
    z-index: 1;
}

.main-menu {
    width: 100%;
    height: 70%;
    opacity: 0;
    visibility: hidden;
}

.nav-open .main-menu {
    opacity: 1;
    visibility: visible;
}

.main-menu .nav li a {
    color: #FFF;
    font-size: 5vh;
    font-weight: 600;
}

.main-menu .nav li {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
    -moz-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
    -o-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
    animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
}

.nav-open .main-menu .nav li {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1111;
    height: 42px;
    /*display: block;*/
    width: 50px;
    padding: 0px;
}

.nav-button #nav-icon3 {
    width: 24px;
    height: 22px;
    display: inline-block;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.nav-button #nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.nav-button #nav-icon3 span:nth-child(1) {
    top: 0;
}

.nav-button #nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 7px;
}

.nav-button #nav-icon3 span:nth-child(4) {
    top: 14px;
}

.border-rad-15px {
    border-radius: 15px;
}

.section__upper-title {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .section__upper-title {
        margin-top: 0px;
    }

    .section__upper-title .upper-item img {
        height: 100%;
        width: 100%;
    }

    /*.section__upper-title .upper-item a {
      display: none !important;
    }*/
}

@media (max-width: 1199px) {
    .section__upper-title .upper-item {
        flex-direction: column-reverse;
    }

    .section__upper-title .upper-item .me-5 {
        margin-right: 0rem !important;
    }

    .section__upper-title .upper-item .me-5 img {
        height: 125px;
        object-fit: cover;
        width: 100%;
    }
}

.section__input-mobile-main .input-news {
    border: 1px solid #dadada;
    border-radius: 25px;
    background: white;
}

.section__input-mobile-main .input-news input {
    /*padding: 10px 0;*/
    border: unset;
}

.section__input-mobile-main .input-news input:focus {
    outline: unset;
}


@media(min-width: 768px) {
    .section__main .posts .nonWide-img {
        aspect-ratio: 240/160;
        object-fit: cover;
        object-position: center;
    }
}


@media (min-width: 993px) {
    .section__input-mobile-main .input-news {
        display: none !important;
    }
}

.section__nav-links-main .nav-links {
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
}

.section__nav-links-main .nav-links li {
    display: flex;
    justify-content: center;
}

.section__nav-links-main .nav-links a {
    -webkit-line-clamp: 1;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section__nav-links-main .nav-links a:hover {
    color: #6c6c6c;
}

.h2_dzen {
    font-size: 1.8rem;
}

@media (max-width: 576px) {
    .section__news-title {
        font-size: 5.6vw !important;
        line-height: 5.6vw !important;
    }

    .h2_dzen {
        font-size: 4.6vw;
    }

    .btn-grey span {
        font-size: 16px !important;
    }
}

.section__nav-links-main .nav-links li {
    margin: 0px !important;
}

@media (max-width: 768px) {
    .btn-orange-feedback span {
        font-size: 14px !important;
    }

    .section__nav-links-main .nav-links {
        padding: 20px 0;
    }

    .section__nav-links-main .nav-links li {
        margin: 0 10px !important;
    }

    .section__nav-links-main .nav-links a {
        padding: 10px 23px !important;
    }
}

@media (max-width: 992px) {

    .section__nav-links-main .nav-links li {
        width: unset !important;
        margin: 0 10px !important;
    }

    .section__nav-links-main .nav-links {
        padding: 20px 0;
        margin-top: 0;
        text-align: center;
        width: 100%;
        left: 0%;
        background: unset !important;
        position: relative;
        flex-direction: column;
        justify-content: center !important;
    }

    .section__nav-links-main .nav-links a {


        background: white;
        border-radius: 20px;
        padding: 10px 23px;
        align-items: center;
        display: flex;
    }
}

@media (min-width: 401px) and (max-width: 500px) {
    .section__nav-links-main .nav-links a {
        padding: 10px 23px !important;
    }
}

@media (max-width: 501px) {
    .section__nav-links-main .nav-links a {
        padding: 0px 19px;
    }
}

.section__main {
    margin-top: 30px;
}

.section__main .advertising {
    /* position: sticky; */
    top: 13%;
}

.section__main .advertising .title-advert {
    width: 40%;
    background: white;
    font-weight: 300;
    font-size: 12px;
    padding: 4px 13px;
    line-height: 9px;
    /* identical to box height, or 150% */
    color: #2F2F2F;
}

.section__main .col-lg-8 .bg-white img {
    border-radius: 0 0 15px 15px;
}

.section__main-post-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 74px;
    /* identical to box height, or 153% */
}

.section__main .text-post {
    width: 650px;
    position: absolute;
    top: calc(50% - 39px + 100px);
    left: 5%;
}

.section__main .text-post a {
    text-shadow: 1px 0 5px black;
    font-size: 26px;
    line-height: 32px;
    color: #FFFFFF;
}

@media (max-width: 1400px) {
    .section__main .text-post {
        top: calc(50% - 100px + 100px);
        width: 500px;
    }
}

@media (max-width: 1200px) {
    .section__main .text-post {

        width: 400px;
    }
}

@media (max-width: 992px) {
    .section__main .text-post {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .section__main .text-post {
        width: unset;
        top: 20%;
    }
}

@media (max-width: 576px) {
    .section__main .text-post {
        top: 15%;
    }

    .section__main .text-post a {
        font-size: 5vw;
    }
}

.section__main .btn-post {
    position: absolute;
    bottom: 6%;
    right: 5%;
}

.section__main .slider .splide {
    padding: 3em 0 3em 0;
}

.section__main .slider .text-splide {
    padding: 12px 25px;
    position: absolute;
    /*top: 0;*/
    bottom: 0;
    left: 0;
    z-index: 100;
}

.section__main .slider .splide__slide::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}

.section__main .slider .splide__slide:hover:before {
    opacity: 0.9;
}

.section__main .slider .text-splide span {
    text-shadow: 1px 0 5px black;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #FFFFFF;
}

@media (max-width: 576px) {
    .section__main .slider .text-splide {
        padding: 10px;
    }

    .section__main .slider .text-splide span {
        font-size: 5vw;
        line-height: unset;
    }
}

.section__main .slider .arrows-bottom {
    width: 415px;
    position: absolute;
    bottom: 0;
    right: -1px;
    border-radius: 30px 0px 0px 15px;
}

.section__main .slider .arrows-bottom .arrows-bg {
    width: 80px;
    border-radius: 30px;
}

@media (max-width: 992px) {
    .section__main .slider .arrows-bottom .btns-mob {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section__main .slider .arrows-bottom .justify-content-between {
        justify-content: end !important;
    }
}

@media (max-width: 992px) {
    .section__main .slider .splide {
        padding: 0 0 0 0;
    }

    .section__main .slider .arrows-bottom {
        width: 300px;
    }
}

@media (max-width: 400px) {
    .section__main .slider .arrows-bottom {
        width: 250px;
    }
}

.section__main #news-slider svg {
    fill: none !important;
}

.section__main #news-slider .splide__arrow {
    position: relative;
    display: block;
    flex-direction: column;
}

.section__main #news-slider .splide__arrow--prev {
    left: 0em;
}

.section__main #news-slider .splide__arrow--next {
    right: 0;
}

@media (max-width: 992px) {
    .section__main #news-slider .arrows-bg {
        display: none !important;
    }
}

.section__main .popular {
    backdrop-filter: blur(14.0375px);
    border-radius: 15px;
    margin-top: 3em;
}

.section__main .popular .main-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}

.section__main .popular .theme-title {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.section__main .popular .time {
    font-weight: 300;
    font-size: 13px;
    line-height: 24px;
}

.section__main .popular .text-input {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #2F2F2F;
}

.section__main .popular .text-input a {
    color: #2F2F2F;
}

.section__main .posts .wide-img {

    max-height: 470px;

}

.section__main .posts .nonWide-img {
    max-height: 256px;
}

.section__main .posts .post-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    /* identical to box height, or 200% */
    color: #2F2F2F;
}

.section__main .posts .bg-white {
    box-shadow: 0px 4px 8px rgba(225, 233, 255, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

.section__main .posts .body-text-post {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 135px;
    overflow: hidden;
}

.section__main .posts .body-text-post a {
    transition: 0.1s ease-in-out;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.section__main .mob-advertis {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

@media (min-width: 993px) {
    .section__main .mob-advertis {
        display: none;
    }

    .section__main .posts .post-title-desk {
        display: block;
    }

    .section__main .posts .post-title-mob {
        display: none !important;
    }

}

@media (max-width: 992px) {
    .section__main {
        margin-top: 0px;
    }

    .section__main .links-feedback {
        display: none;
    }

    .section__main .posts .post-title-desk {
        display: none !important;
    }

    .section__main .mob-advertis {
        padding-bottom: 10px;
    }
}

.section__video {
    margin-bottom: 15px;
    padding: 25px 0;
    background: #2F2F2F;
    /* Track */
    /* Handle */
}

.section__video #video-mob-pos .splide__arrows {
    bottom: 0;
    top: 0;
    width: 100%;
    position: relative;
}

.section__video #video-mob-pos .splide__arrows .splide__arrow--prev {
    top: 1em;
    transform: rotate(270deg);
    left: 0;
}


.section__video #video-mob-pos .splide__arrows .splide__arrow--next {
    top: 1em;
    bottom: 0;
    transform: rotate(270deg);
    left: 90%;
}

.section__video #video-mob-pos .splide__arrows svg {
    fill: white !important;
}

.section__video #video-mob-pos .splide__pagination {
    top: 97% !important;
    display: flex;
    flex-direction: unset;
    counter-reset: pagination-num;
}

.section__video #video-mob-pos .splide__pagination li {
    margin-right: 5px;
}

.section__video #video-mob-pos .splide__pagination li .is-active {
    background: white;
    color: black;
}

.section__video #video-mob-pos .splide__pagination li button {
    color: white;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.section__video #video-mob-pos .splide__pagination__page:before {
    counter-increment: pagination-num;
    content: counter(pagination-num);
}

.section__video #video-mob-pos .splide__pagination__page {
    background: unset;
}

.section__video .video-scroll {
    max-height: 630px;
    overflow: scroll;
    overflow-x: hidden;
}

.section__video ::-webkit-scrollbar {
    width: 5px;
}

.section__video ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #2F2F2F;
    border-radius: 10px;
}

.section__video ::-webkit-scrollbar-thumb {
    background: #494949;
    border-radius: 10px;
}

.section__video .list {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

.section__video-title {
    text-transform: uppercase;
    font-size: 48px;
    color: white;
}

.section__video-textInput {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    color: #FFFFFF;
}

.section__video-data {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

@media (min-width: 993px) {
    .section__video #video-mob-pos {
        display: none;
    }
}

@media (max-width: 992px) {
    .section__video .desk-video-pos {
        display: none;
    }
}

.section__news .advertising {
    position: sticky;
    top: 13%;
}

.section__news .advertising .title-advert {
    background: white;
    font-weight: 300;
    font-size: 12px;
    padding: 4px 13px;
    line-height: 9px;
    color: #2F2F2F;
}

@media (min-width: 993px) {
    .section__news .mob-advertis {
        display: none !important;
    }

    .section__news .mob-raiting {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .section__news .desk-raiting {
        display: none !important;
    }

    .section__news .advertising {
        display: none;
    }

    .section__news .bg-white {
        padding: 20px !important;
    }

    .section__news .mistake-mob {
        display: none !important;
    }
}

.section__news .contacts-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 74px;
    /* identical to box height, or 230% */
    color: #2F2F2F;
}

.section__news .contacts-num {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    /* identical to box height, or 24px */
    letter-spacing: 0.005em;
    color: #878787;
}

.section__news .helper {
    max-width: 305px;
}

.section__news .helper .bg-white {
    background: #FFFFFF;
    border-radius: 11px;
    padding: 6px 10px;
}

.section__news .splide {
    padding: 0;
}

.section__news .splide__pagination {
    bottom: -2em;
}

.section__news .splide__pagination .splide__pagination__page {
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #D9D9D9;
}

.section__news .splide__pagination .splide__pagination__page.is-active {
    border: 2px solid #163C59;
}

.section__news .card-news {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(225, 233, 255, 0.5);
    border-radius: 15px;
    height: 100%;
}

.section__news .card-news .card-img img {
    width: 100%;
    height: 256px;
    border-radius: 15px 15px 0 0px;
    object-fit: cover;
}

.section__news .card-news .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    /* or 133% */
    color: #2F2F2F;
}

@media(max-width: 768px) {
    .section__news .card-news .card-title {
        font-size: 18px;
        line-height: 1.2;
        -webkit-line-clamp: 4;
        height: 90px;
    }
}

.section__news .card-news .card-title a {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.section__news .card-news .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 90px;
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    /* or 178% */
    color: #2F2F2F;
}

.section__news .bg-white {
    padding: 50px;
    border-radius: 14px 14px 0 0;
}

.section__news-data {
    font-weight: 500;
    font-size: 12.7247px;
    line-height: 22px;
    /* identical to box height, or 171% */
    color: #2F2F2F;
}

.section__news-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #2F2F2F;
}


.section__news-body-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.section__news-body-text-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
    /* identical to box height, or 91% */
    color: #000000;
}

.section__news-attached {
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    background: linear-gradient(180deg, #F4F7FF 0%, rgba(244, 247, 255, 0) 100%);
}

.section__news-attached .attach-pos {
    position: absolute;
    top: -50px;
    left: -40px;
}

.section__news-attached .attach-text {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    /* or 133% */
    color: #000000;
}

.section__news-body-img img {
    max-width: 335px;
}

@media (max-width: 768px) {
    .section__news-title {
        font-size: 5vw;
        line-height: 5vw;
    }

    .section__news .feedback-mob {
        flex-direction: column;
    }

    .telephone-pos {
        padding: 0 10px 0 0 !important;
    }

    .section__news .feedback-mob .pe-3 {
        /*padding-top: 10px;*/
        padding-right: .35rem !important;
        padding-left: .35rem !important;
    }

    .section__news .mistake-mob {
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }
}

.section__comments {
    margin-bottom: 15px;
}

.section__comments .w-lg-100 {
    width: unset !important;
}

@media (max-width: 768px) {
    .section__comments .w-sm-100 {
        width: 100% !important;
    }

    .section__comments .bg-white {
        padding: 20px !important;
    }

    .section__comments .comm-links-mob {
        display: flex;
        flex-direction: column !important;
    }
}

.section__comments .bg-white {
    border-radius: 0 0 14px 14px;
    padding: 50px;
}

.section__comments .riaNews .card-news {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(225, 233, 255, 0.5);
    border-radius: 15px;
}

.section__comments .riaNews .card-news .card-img img {
    width: 100%;
    height: 256px;
    border-radius: 15px 15px 0 0px;
    object-fit: cover;
}

.section__comments .riaNews .card-news .card-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    /* or 133% */
    color: #2F2F2F;
}

.section__comments .riaNews .card-news .card-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    /* or 178% */
    color: #2F2F2F;
}

.section__comments .text-input-area textarea {
    padding: 10px 10px;
    width: 100%;
    border: 1px solid #2F2F2F;
    border-radius: 15px;
}

.section__comments .text-input-area textarea::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #BFBFBF;
}

.section__comments .splide {
    padding: 0;
}

.section__comments .splide__pagination {
    bottom: -2em;
}

.section__comments .splide__pagination .splide__pagination__page {
    border-radius: 20px;
    width: 20px;
    height: 20px;
    background: #D9D9D9;
}

.section__comments .splide__pagination .splide__pagination__page.is-active {
    border: 2px solid #163C59;
}

.section__feedback .bg-white-padding {
    background: white;
    padding: 50px;
    border-radius: 14px;
}

.section__feedback .col-lg-8 h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 74px;
    /* identical to box height, or 153% */
    color: #2F2F2F;
}

.section__feedback .feedback-bg .bg-white {
    border-radius: 14px !important;
}

.modal-dialog {
    max-width: 1200px;
}

.modal-dialog span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    /* or 188% */
    color: #000000;
}

.feedback-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 26px;
    /* identical to box height, or 81% */
    color: #ba0000;
}

.feedback-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    /* or 130% */
    color: #000000;
}

.search-page p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

#bx_incl_area_1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.rate-red {
    display: none;
}

.rate-green {
    display: none;
}

.temperature {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;

    color: #2F2F2F;
}

#bx_incl_area_1>div {}

footer .footer-row-1 {
    height: auto;
    padding: 30px 0 0 0;
}

footer .footer-row-1 .linksCity div {
    padding-bottom: 10px;
}

footer .footer-row-1 .linksCity a {
    text-align: start;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #000;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-underline: none;
}

footer .footer-row-1 .linksCity a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background: black;
    opacity: 1;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

footer .footer-row-1 .linksCity a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

footer .footer-row-1 .footer-img-top a {
    width: 100px;
}

footer .footer-row-1 .footer-img-top img {
    width: 100px;
    object-fit: cover;
}

footer .footer-row-1 .linksCity a:hover {
    color: black;
}

footer .footer-row-1 .category div {
    padding-bottom: 9px;
}

footer .footer-row-1 .category a {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #000;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-underline: none;
}

footer .footer-row-1 .category a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background: black;
    opacity: 1;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

footer .footer-row-1 .category a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

footer .footer-row-1 .category a:hover {
    color: black;
}

footer .footer-row-1 .contact {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000000;
}

footer .footer-row-1 .email {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #878787;
}

footer .footer-row-1 .email p {
    font-weight: 400;
    font-size: 18px;
}

footer .footer-row-1 .email a {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: #000;
}

footer .footer-row-1 .text-inline {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #878787;
}

footer .footer-row-1 .socials div {
    padding-bottom: 10px;
}

footer .footer-row-1 .socials svg:hover {
    fill: black;
}

footer .footer-row-1 .socials svg:hover path {
    fill: black;
}

footer .footer-row-2 .footer-text, .footer__bottom-text {
    padding: 17px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.005em;
    color: #878787;
}


.footer__bottom-text{
	text-align: start;
	padding: 0 13px 20px 13px;
}

.border-bottom-black {
    border-bottom: 1px solid #000000;
}

.btn-black {
    background: #000000;
    border-radius: 8px;
    align-items: center;
    padding: 10px 24px;
    border: unset;
}

.btn-orange-dark {
    align-items: center;
    padding: 14px 24px;
    background: #ED5E22;
    border-radius: 8px;
}

.btn-orange-dark span {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
}

.btn-orange {
    background: #ba0000;
    border-radius: 8px;
}

.btn-orange span {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    /* or 19px */
    text-align: center;
    letter-spacing: 0.005em;
    /* Light/Text Link Color/White */
    color: #FFFFFF;
}

.bg-grey-light {
    background: #EFEFEF;
    border-radius: 15px;
}

.bg-grey-light span {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.005em;
    color: #000000;
}

.bg-grey-dark {
    padding: 14px 30px;
    background: #D9D9D9;
    border-radius: 15px;
}

.bg-grey-dark span {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height, or 162% */
    color: #000000;
}

.btn-grey {
    background: #F4F7FF;
    border-radius: 15px;
    color: black;
}

.btn-grey span {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    /* identical to box height, or 24px */
    color: #000000;
}

.bg-white-border {
    background: #FFFFFF;
    border: 1px solid #C3C3C3;
    border-radius: 15px;
}

.btn-border-white {
    transition: 0.1s ease-in-out;
    background: unset;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: white;
}

.btn-border-white:hover {
    background: white;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    color: black;
}

.is-non_actived {
    display: none !important;
}

.is-actived {
    display: block !important;
}

.btn-exit-mob {
    color: red !important;
}

.btn-white {
    background: white;
    border-radius: 8px;
    color: #2F2F2F;
}

.btn-black {
    background: #2F2F2F;
    border-radius: 8px;
    color: white;
}

.advert-pos {
    position: absolute;
    top: 0;
    right: 0;
}

.max-w-350p {
    max-width: 350px;
}

@media (min-width: 993px) {
    footer .socials-mob {
        display: none !important;
    }

    footer .lorem-mob {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .advertising {
        display: none;
    }

    footer .socials {
        display: none !important;
    }
}


/* Icon 3 */

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2) {
    top: 10px;
}

#nav-icon3 span:nth-child(3) {
    top: 15px;
}



#nav-icon3.open span:nth-child(1) {

    top: 0;
    width: 0%;
    left: 0%;
}

#nav-icon3.open span:nth-child(2) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media(max-width: 992px) {
    .footer-img-top {
        justify-content: center;
    }
}

.search-page form {
    width: 100%;
    display: flex;
}

.search-page form input[type=text] {
    padding: 5px 7px;
    width: 100%;
}

.search-page form input[type=submit] {
    padding: 0 7px;

}

.search-page form input[type=text] {
    border: 1px solid #bbbbbb;
    border-radius: 8px;
    color: black;
}


.search-page form input[type=submit] {
    transition: 0.1s ease-in-out;
    background: white;
    border: 1px solid #ba0000;
    border-radius: 8px;
    color: #ba0000;
}

@media(max-width: 992px) {
    .footer-links-cat {
        padding-bottom: 0px !important;
    }
}

.modern-page-navigation {
    margin: 25px 0;
    justify-content: center;
    display: flex;
}

#search_inner {
    display: none;
}

#menu_inner {
    display: none;
}

.active_block {
    display: flex !important;
}

.splide .splide__slide {
    overflow: hidden;
    border-radius: 10px !important;
}

.news-dzen-h {
    padding-top: 5px;
    opacity: 0.6;
}

/* Dark mode */