@font-face {
    font-family: "rai24";
    src: url(../index/rai24.eot);
    src: url(../index/rai24.eot) format("embedded-opentype"),
    url(../index/rai24.woff) format("woff"),
    url(../index/rai24.ttf) format("truetype"),
    url(../index/rai24.svg?original&) format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

html,
body {
    height: 100%;
}
body, body * {
    -webkit-font-smoothing: antialiased;
}

.layout {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    background-color: white;
}

.layout__header {
    position: sticky;
    top: 0;
    flex: none;
    background-color: white;
    box-shadow: 0 0 50px hsla(0, 0%, 55.3%, 0.3);
    z-index: 10;
}

.layout__main {
    flex: 1 0 auto;
}

.layout__footer {
    position: relative;
    flex: none;
    background-color: #262a40;
}

/* Header */
.reading-bar {
    height: 4px;
    width: 0%;
    background-color: #009;
    transition: width 0.1s ease-out;
}

.header {
    display: flex;
    flex-direction: column;
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 12px;
}

.header::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #009;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    gap: 60px;
}

.header__top .header__burger {
    display: none;
    align-items: center;
    gap: 18px;
}

.header__top .header__burger .header__logo {
    display: none;
}
.header__logo, .header__burger{
    line-height: 32px;
    height: 32px;
    position: relative;
}
.header__logo::before{
    content: "\e903";
    font-family: rai24, sans-serif;
    font-size: 155px;
    color: #009;
    line-height: inherit;
}
.burger::before{
    font-size: 25px;
    content: "\76";
    font-family: rai24, sans-serif;
    color: #5e5e6e;
    line-height: inherit;
}
.logo {
    width: 121px;
    height: 48px;
}

.header__top .header__logo > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__top .header__nav {
    display: none;
    width: 100%;
}

.header__top .header-nav-list {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
}

.header__top .header-nav-list__item--devider {
    border-left: 1px solid #cdcdd6;
    height: 20px;
}

.header__top .header__items {
    align-items: center;
}

.header__top .header__item--weather,
.header__top .header__item--raytext {
    display: none !important;
}

.header__top .header__item--weather .weather-logo {
    position: relative;
    display: flex;
    flex-direction: column;
}

.header__top .header__item--raytext {
    display: flex;
    align-items: center;
}

.header__top .header__item--raytext::before{
    font-family: rai24, sans-serif;
    content: "\41";
    font-size: 48px;
    color: #5e5e6e;
    line-height: 1;
}

.weather-logo .weather-logo__text--warm,
.weather-logo .weather-logo__text--cold {
    position: absolute;
    right: -20px;
    top: 0;
}

.weather-logo .weather-logo__text--warm {
    font-weight: 700;
    color: #d44025;
}

.weather-logo .weather-logo__text--cold {
    top: 15px;
    font-weight: 700;
    color: #3d5eff;
}

.weather-logo__text--country {
    font-size: 12px;
    font-weight: 600;
    color: #3c3c4d;
    margin: 0;
}

.header__bottom--desktop {
    display: none;
}

.header__bottom--mobile {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #212335;
}

.header__bottom--mobile .mobile-nav-header {
    display: flex;
    justify-content: space-between;
}

.header__bottom {
    position: relative;
    max-height: 65px; /* Задай реальную высоту блока */
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.header__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #cdcdd6;
}

.header__bottom.is-hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px); /* небольшое смещение вверх */
    padding: 0;
    margin: 0;
}

.header__bottom .nav-header {
    padding-left: 35px;
}

.header__bottom .nav-header__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.header__bottom .header-social-media {
    display: flex;
    gap: 10px;
}

.header__bottom .header-social-media .header-social-media__item {
    width: 24px;
    height: 24px;
}

.header__item {
    font-size: 12px;
}

.nav-header__list > li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.nav-header__list > li > svg {
    transform: rotate(90deg);
}

.header__items {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.header__item > svg {
    width: 20px;
    height: 20px;
}

.header__item:nth-child(2) {
    display: none;
}

.header__item:nth-child(2) > p,
.header__item:nth-child(3) > p,
.header__item:nth-child(4) > p {
    display: none;
}

.header__items .header__item:first-child:hover {
    background-color: #0053cf;
}

.header__items .header__item:not(:first-child):hover {
    color: #0053cf;
}

.header__items .header__item:not(:first-child) {
    color: #1a4a8f;
}

.nav-header__item:first-child {
    display: flex !important;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.nav-header__item .header__items {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 16px;
}

.header__item--special {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* END => Header */

/* Main */
.main {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-section--intro {
    padding-top: 26px;
}

.page-section--intro .page-section__label {
    font-weight: 700;
    font-size: 20px;
    color: #3d5eff;
}

.page-section--intro .page-section__headline > hr {
    background-color: #cdcdd6;
    height: 1px;
    width: 100%;
    margin: 10px 0 20px;
}

.page-section--intro article {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
article img, article video{
    width: 100%;
}

 article h2 {
    font-size: 19px;
    font-style: italic;
    font-weight: 700;
}

.page-section--intro article .datetime {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-section--intro article .datetime::before {
    display: inline-block;
    content: url('../index/calendar-icon.png');
    width: 24px;
    height: 34px;
}

.page-section--intro article .datetime__textbox {
    font-size: 13px;
    line-height: 18px;
    color: #5e5e6e;
    font-weight: 600;
}

.page-section--intro article .media-caption {
    padding-top: 8px;
    color: #5e5e6e;
    font-size: 16px;
    line-height: 20px;
}

.page-section--intro article .desktop-border > a > img {
    width: 100%;
}

.page-section--content .page-section__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.page-section--content .page-section__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.page-section--content .text-decor {
    float: left;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    color: #009;
}

.page-section--content > img {
    margin-bottom: 20px;
}

.page-section--content .my-link {
    color: #0053cf;
}

.page-section--content .article__content__unit {
    margin-bottom: 28px;
    position: relative;
    font-size: 20px;
    line-height: 30px;
}

.page-section--content .article-image-wrapper {
    position: relative;
}

.page-section--content .article__content__unit--image .article-image {
    display: block;
    width: 100%;
}

.page-section--content .article__content__unit .article-image-caption,
.article__content__unit .article-image-date {
    color: #212335;
    background-color: #f5f7ff;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 20px;
}

.page-section--content .article__content__unit .article-image-date {
    padding-top: 10px;
    padding-bottom: 20px;
    font-weight: 600;
    display: flex;
}

.page-section--content .article__content__unit .article-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.page-section--content .tags {
    position: relative;
    margin-bottom: 50px;
}

.page-section--content .tags::after {
    content: '';
    width: 40px;
    height: 28px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    background: -moz-linear-gradient(left, transparent, #fff);
    background: -webkit-linear-gradient(left, transparent, #fff);
    background: linear-gradient(90deg, transparent, #fff);
}

.page-section--content .tags__list {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    scrollbar-width: none;
}

.page-section--content .tags__list::before {
    font-family: 'Merriweather', serif;
    content: 'Tag';
    font-size: 19px;
    line-height: 24px;
    padding-right: 24px;
    font-weight: 900;
    color: #009;
}

.page-section--content .tags__item {
    display: inline-block;
    padding: 0 16px 16px 0;
}

.page-section--content .tags__item .tags__link {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding: 4px 12px;
    color: #3d5eff;
    background-color: #f5f7ff;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;
    -ms-border-radius: 55px;
    border-radius: 55px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-section--content .tags__item .tags__link:hover {
    color: #eef1fc !important;
    background-color: #3d5eff;
}

/* END => Main  */

/* Footer */
.layout__footer {
    position: relative;
}

.layout__footer::after {
    position: absolute;
    content: '';
    top: -20px;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: #009;
}

.footer--desktop {
    display: none;
}

.footer--desktop {
    padding: 0 !important;
}

.footer--mobile,
.footer--desktop {
    position: relative;
    padding: 20px 16px;
    background-color: #262a40;
    color: #edeff3;
}

.footer--mobile::after {
    position: absolute;
    content: '';
    top: -20px;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: #009;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__item > a {
    font-family: 'Inter', sans-serif;
    color: #edeff3;
    font-size: 17px;
    font-weight: bold;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__list {
    display: flex;
    flex-direction: column;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__item {
    padding: 24px 0;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__item:not(:last-child) {
    border-bottom: 1px solid #4e5266;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__item:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__item:last-child {
    display: flex;
    gap: 40px;
}

.footer--mobile
.mobile-nav-footer
.mobile-nav-footer__item:last-child
.mobile-nav-footer__button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    height: 36px;
    margin: 0;
    padding: 8px 12px;
    border: solid 2px #4e5266;
    border-radius: 4px;
    background-color: rgba(72, 76, 97, 0.2);
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #edeff3;
    cursor: pointer;
    transition: 250ms ease-in;
    white-space: nowrap;
}

.footer--mobile
.mobile-nav-footer
.mobile-nav-footer__item:last-child
.mobile-nav-footer__button
> svg {
    margin-right: 12px;
    fill: #edeff3;
    width: 17px;
    height: 16px;
    transition: 250ms ease-in;
}

.footer--mobile
.mobile-nav-footer
.mobile-nav-footer__item:last-child
.mobile-nav-footer__item-text {
    position: relative;
    font-size: 13px;
    letter-spacing: -0.3px;
    color: #b1b2b9;
    padding-left: 16px;
    margin-top: 16px;
}

.footer--mobile
.mobile-nav-footer
.mobile-nav-footer__item:last-child
.mobile-nav-footer__item-text::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0ae16d;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__raytext {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    background-color: #edeff3;
    color: #262a40;
    padding: 6px 4px;
    margin-bottom: 10px;
}

.footer--mobile .mobile-nav-footer .mobile-nav-footer__policy-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 20px;
}

.footer--desktop .footer__top .footer__items {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer--desktop .footer__bottom {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer--desktop .footer__top {
    padding-top: 64px;
    padding-bottom: 60px;
    background-color: #212335;
}

.footer--desktop .footer-user-info .footer-user-info__item > a {
    color: #edeff3;
}

.footer--desktop .footer__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer--desktop .footer-top-nav__row {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin: 0 -12px;
    row-gap: 30px;
}

.footer--desktop .footer-top-nav__row .footer-top-nav__col {
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    padding: 0 12px;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer--desktop
.footer-top-nav__row
.footer-top-nav__col:nth-child(1) {
    width: 50%;
}

.footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(2) {
    width: 33.333%;
}

.footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(3) {
    width: 16.333%;
    order: 3;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col:nth-child(3)
.footer-top-nav__list {
    flex-direction: row;
    gap: 10px;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col:nth-child(3)
.footer-top-nav__list
.footer-top-nav__item {
    min-width: 30px;
    height: 30px;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer-top-nav__list
.footer-top-nav__item
> a
> svg
> rect {
    fill: #cdcdd6;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer-top-nav__list
.footer-top-nav__item
> a
> svg
> path {
    fill: #212335;
}

.footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(4) {
    width: 100%;
    order: 4;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer-top-nav__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    column-gap: 10px;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer-top-nav__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 12px;
    margin-bottom: 16px;
    color: #cdcdd6;
    border-bottom: 1px solid #5e5e6e;
    font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

.footer--desktop
.footer-top-nav__row
.footer-top-nav__col
.footer-top-nav__list
.footer-top-nav__item {
    font-size: 16px;
    line-height: 20px;
    color: #cdcdd6;
    padding-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer--desktop .footer__bottom {
    padding-top: 40px;
    padding-bottom: 48px;
}

.footer--desktop .footer__bottom .footer-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer--desktop .footer__bottom .footer-headline .footer-headline__title {
    font-size: 19px;
    font-weight: 900;
}

.footer--desktop .footer__bottom .footer-headline .footer-headline__button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer--desktop .footer__bottom .footer-headline .footer-headline__button > p {
    font-size: 15px;
    margin-bottom: 0;
}

.footer--desktop .footer__bottom .footer__devider {
    border-bottom: 1px solid #4e5266;
}

.footer--desktop .footer__bottom .footer__item--user-info {
    display: flex;
    gap: 30px;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-info__list
.footer-user-info__item:not(:first-child) {
    border-left: 1px solid #4e5266;
    padding-left: 10px;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-info__list
.footer-user-info__item
> a {
    font-size: 15px;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-action__button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    height: 36px;
    margin: 0;
    padding: 8px 12px;
    border: solid 2px #4e5266;
    border-radius: 4px;
    background-color: rgba(72, 76, 97, 0.2);
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #edeff3;
    cursor: pointer;
    transition: 250ms ease-in;
    white-space: nowrap;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-action__button
> svg {
    margin-right: 12px;
    fill: #edeff3;
    width: 17px;
    height: 16px;
    transition: 250ms ease-in;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-action__label {
    position: relative;
    font-size: 13px;
    letter-spacing: -0.3px;
    color: #b1b2b9;
    padding-left: 16px;
    margin-top: 16px;
}

.footer--desktop
.footer__bottom
.footer__item--user-info
.footer-user-action__label::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0ae16d;
}

.footer--desktop .footer__bottom .footer-user-info .footer-user-info__list {
    display: flex;
    gap: 10px;
}

.footer--desktop .footer__bottom .footer__item--policy .footer-policy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer--desktop
.footer__bottom
.footer__item--policy
.footer-policy
.footer-policy__raytext {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    background-color: #edeff3;
    color: #262a40;
    padding: 6px 4px;
}

.footer--desktop
.footer__bottom
.footer__item--policy
.footer-policy
.footer-policy__text {
    max-width: 950px;
    font-size: 13px;
    line-height: 20px;
}

/* END => Footer */
.header__logo::before{
    font-size: 98px;
}
.burger::before{
    font-size: 20px;
}
.header__top{
    padding: 12px 0;
}
.header__logo-desktop{
    height: 32px;
}
.header__burger{
  display: none;
}
@media screen and (min-width: 768px) {
    .header__top .header-nav-list{
        gap: 8px;
    }
    .header__logo::before{
        font-size: 98px;
    }
    .burger::before{
        font-size: 20px;
    }
    .header{
        max-width: 984px;
        margin: 0 auto;
        font-size: 16px;
    }
    .header__top .header__nav{
        font-size: 16px;
    }
    .header__top .header__item--raytext::before{
        font-size: 30px;
    }
    .header__top{
        gap: 32px;
    }
    .header__top{
        padding: 18px 0;
    }
    .header__top .header__burger .header__logo {
        display: block;
    }

    .header__top .header__logo-desktop {
        display: none;
    }

    .header__bottom--mobile {
        display: none;
    }

    .footer--desktop {
        display: block;
    }

    .header__top .header__nav {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
    }
    .header-nav-list__item.more{
        padding-bottom: 16px;
        font-size: 25px;
    }

    .header__top .header-nav-list {
        align-items: center;
    }

    .header__top .header-nav-list .header-nav-list__item:nth-child(3n-1) {
        display: none;
    }

    .header__bottom--desktop .nav-header__item:nth-child(3n-1) {
        display: none;
    }

    .header__top .header-nav-list .header-nav-list__item--with-icon {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .header__top .header-nav-list .header-nav-list__item--with-icon::after {
        display: inline-block;
        content: url('../index/arrow-bottom.png');
    }

    .header__top .header__item--weather,
    .header__top .header__item--raytext {
        display: block !important;
    }

    .header__bottom--desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 44px;
        transition: height 0.4s, opacity 0.4s;
        overflow: hidden;
    }

    .header__bottom--desktop .nav-header__list {
        flex-wrap: wrap;
    }

    .header__bottom--desktop .nav-header__list .nav-header__item > a {
        font-size: 14px;
    }

    .header__bottom--desktop .nav-header__item {
        display: table-cell;
        white-space: nowrap;
    }

    .page-section--intro h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .page-section--intro article h2 {
        font-size: 24px;
    }

    .page-section--intro .datetime {
        margin-bottom: 26px;
    }

    .page-section--content {
        padding-left: 30px;
    }

    .page-section--content > h3 {
        font-size: 25px;
    }

    .header__items {
        display: flex;
        gap: 25px;
        font-size: 16px;
    }

    .page-section--intro .datetime__textbox {
        font-size: 18px;
    }

    .header__item:nth-child(2) {
        display: flex;
    }

    .header__item:nth-child(2) > p,
    .header__item:nth-child(3) > p,
    .header__item:nth-child(4) > p {
        display: flex;
    }

    .nav-footer__list {
        width: 33.333%;
    }

    .user-info-list {
        flex-direction: row;
        gap: 15px;
    }

    .page-section--intro article > a > img {
        width: 100%;
    }

    .page-section--intro article > .media-caption {
        padding: 10px 30px 0;
    }

    .page-section--content .page-section__title {
        font-size: 26px;
    }

    .page-section--content .page-section__text {
        font-size: 20px;
    }

    .page-section--content .TextBox {
        font-size: 20px;
    }

    .page-section--content .tags__title {
        font-size: 18px;
    }

    .page-section--content .tags__item {
        tab-size: 18px;
    }

    .footer--desktop {
        display: block;
    }

    .footer--mobile {
        display: none;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col,
    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(2) {
        width: 50%;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(3) {
        width: 25%;
        order: 4;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(4) {
        width: 75%;
        order: 3;
    }

    .footer--desktop
    .footer-top-nav__row
    .footer-top-nav__col:nth-child(4)
    .footer-top-nav__list {
        max-height: 230px;
    }

    .footer--desktop
    .footer-top-nav__row
    .footer-top-nav__col
    .footer-top-nav__list {
        max-height: 170px;
    }
}

@media screen and (min-width: 1028px) {
    .header__top .header-nav-list .header-nav-list__item:nth-child(3n-1) {
        display: flex;
    }
    .header__logo::before{
        font-size: 123px;
    }
    .burger::before{
        font-size: 20px;
    }
    .header{
        max-width: 984px;
        margin: 0 auto;
        font-size: 16px;
    }
    .header__top .header__nav{
        font-size: 16px;
    }
    .header__top .header__item--raytext::before{
        font-size: 38px;
    }
    .header__top{
        gap: 32px;
    }
    .header__top{
        padding: 18px 0;
    }

    .header__bottom--desktop .nav-header__item:nth-child(3n-1) {
        display: block;
    }

    .logo {
        width: 155px;
        height: auto;
    }

    .page-section--intro .social-items {
        display: flex !important;
    }

    .footer-contacts .footer-contacts__row {
        flex-direction: row;
    }

    .footer-contacts__right-col,
    .footer-contacts__left-col {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-contacts__left-col {
        gap: 30px;
    }

    .footer-contacts__items {
        display: flex;
        gap: 15px;
    }

    .footer-contacts__right-col {
        gap: 60px;
    }

    .footer-socials-media {
        gap: 15px;
    }

    .footer--desktop
    .footer-top-nav__row
    .footer-top-nav__col
    .footer-top-nav__list {
        max-height: 120px;
    }

    .footer--desktop
    .footer-top-nav__row
    .footer-top-nav__col
    .footer--desktop
    .footer-top-nav__row
    .footer-top-nav__col:nth-child(1) {
        width: 50%;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(2) {
        width: 33.333%;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(3) {
        width: 16.333%;
        order: 3;
    }

    .footer--desktop .footer-top-nav__row .footer-top-nav__col:nth-child(4) {
        width: 100%;
        order: 4;
    }
}

@media screen and (min-width: 1140px) {

    .header{
        max-width: 1296px;

    }
    .header__top{
        padding: 22px 0;

    }
    .header__logo::before{
        font-size: 155px;
    }
    .burger::before{
        font-size: 25px;
    }
    .header__top .header__item--raytext::before{
        font-size: 48px;
    }
    .header__top .header__nav{
        font-size: 18px;
    }
    .nav-footer__list {
        width: 14%;
    }

    .page-section--intro h1 {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .page-section--intro article h2 {
        font-size: 24px;
    }

    .page-section--intro article .desktop-border {
        max-width: 66.6%;
        padding-right: 40px;
        border-right: 1px solid #e0e0e0;
    }

    .page-section--content {
        max-width: 66.6%;
        padding-right: 40px;
        border-right: 1px solid #e0e0e0;
    }

    .page-section--intro .page-section--intro .datetime {
        margin-bottom: 26px;
    }

    .page-section--content {
        padding-left: 30px;
    }

    .page-section--content > h3 {
        font-size: 25px;
    }

    .page-section--content .tags__list {
        white-space: normal;
    }
}

@media screen and (min-width: 1353px) {
}

/* END => Media queries */


.customJS-styles__activation-message {
  color: white;
  font-weight: 700;
  font-size: 16px;
  background: #073e86c2;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 0px!important;
  margin-top: 0!important;
}

.customJS-styles__icon {
  color: red;
  font-size: 35px;
  text-align: center;
  margin-right: 7px;
}

