* {
    font-family: 'SF-Pro-Text-Regular', sans-serif;
}

body {
    background: #120F3A;
    /* padding: 0 140px; */
    padding: 0 1rem 50px;
    margin: 0 auto;
    visibility: collapse;
    overflow: hidden;

}

body.loaded {
    visibility: visible;
    overflow: auto;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #120F3A;
    left: 0;
    top: 0;
    visibility: collapse;
    z-index: 99;
}

body.loaded_hiding .preloader {
    visibility: visible;
}


.preloader__image {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    color: white;
    animation: preloader-rotate 2s infinite linear;
}


@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 83px;
    padding-top: 50px;
}

.header_inform {
    display: flex;
    align-items: center;
}

.menu_item__link:focus,
.menu_item__link:active,
.menu_item__link,
.menu_item__link:hover,
.menu_item__link:visited {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-style: normal;
    font-weight: 500;

    font-size: 16px;
    line-height: 19px;
    color: #BCC9F3;
    position: relative;
    display: inline-block;
    margin-right: 24px;
}

/* .menu_item__link:before {
    content: "";
    width: 65px;
    height: 15px;
    background-image: url(../images/highlight.svg);
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
} */


.soc_button {
    display: flex;
    align-items: center;
}

.soc_button_link {
    background: #fff;
    border-radius: 6px;
    /* padding: 7px 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.soc_button_link:not(:last-child) {
    margin-right: 8px;
}

.soc_button_link:first-child {
    padding: 10px 8px;
}

.soc_button_link:first-child svg {
    color: #5865f2;
}

.soc_button_link:not(:first-child) svg {
    display: none;
}

.soc_button_link img {
    height: 40px;
    width: 120px;
}

.categories {
    display: flex;
    align-items: center;
}

a.categorie_link {
    color: red
}

.article_inner {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.article_image {
    width: 40%;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);

    display: flex;
    align-items: flex-start;
    height: auto;
    max-height: 340px;
}

.article_image img {
    background: transparent;
    width: 100%;
    transition: all .5s;
    height: 100%;
    object-fit: cover;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

a.article_image {
    position: relative;
    transition: all .5s linear;
}

a.article_image:before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.article_inner a.article_image:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.article_content {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 24px 0 24px 5%;
}

a.article_content__title,
a.article_content__title:visited {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 16px;
}


.article_content__content {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: #FFFFFF;
    opacity: 0.9;
}

.article_content__cat li a {
    font-family: 'SF-Pro-Text-Medium';
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.14px;
    color: #002F12;
    background: #33B566;

    max-width: max-content;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cats-list {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    padding: 20px 10px;
    margin: -20px -10px;
}

.cats-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.cats-list::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: transparent;
}


.cats-list::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
}

.blog-section {
    margin-bottom: 40px;
}

.cats-list li {
    margin-right: 12px;
}

.cats-list li a {
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 50px;
    display: inline-block;
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-style: normal;
    font-size: 22px;
    line-height: 24px;
    display: block;
    text-align: center;
    font-weight: 600;
}

ul.post-categories {
	display: flex;
}

.post-categories li a {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    color: #002F12;
    font-weight: 600;
}

.cat-item:last-child {
    margin-right: 0;
}

.cats-list li.cyan a {
    border-color: rgb(66, 206, 224);
    color: rgb(66, 206, 224);
}

.cats-list li.cyan a:hover {
    box-shadow: 0px 0px 15px rgb(66, 206, 224);
}

.cats-list li.cyan.current-cat a {
    background: rgb(66, 206, 224);
    color: rgb(18, 16, 58)
}

.cats-list li.blue a {
    border-color: rgb(31, 175, 245);
    color: rgb(31, 175, 245);
}

.cats-list li.blue a:hover {
    box-shadow: 0px 0px 15px rgb(31, 175, 245);
}

.cats-list li.blue.current-cat a {
    background: rgb(31, 175, 245);
    color: rgb(18, 16, 58)
}

.cats-list li.green a {
    border-color: rgb(51, 181, 102);
    color: rgb(51, 181, 102);
}

.cats-list li.green a:hover {
    box-shadow: 0px 0px 15px rgb(51, 181, 102);
}

.cats-list li.green.current-cat a {
    background: rgb(51, 181, 102);
    color: rgb(18, 16, 58)
}

.cats-list li.red a {
    border-color: rgb(236, 119, 152);
    color: rgb(236, 119, 152);
}

.cats-list li.red a:hover {
    box-shadow: 0px 0px 15px rgb(236, 119, 152);
}

.cats-list li.red.current-cat a {
    background: rgb(236, 119, 152);
    color: rgb(18, 16, 58)
}

.cats-list li.orange a {
    border-color: rgb(245, 110, 75);
    color: rgb(245, 110, 75);
}

.cats-list li.orange a:hover {
    box-shadow: 0px 0px 15px rgb(245, 110, 75);
}

.cats-list li.orange.current-cat a {
    background: rgb(245, 110, 75);
    color: rgb(18, 16, 58)
}

.cats-list li.yellow a {
    border-color: rgb(255, 174, 74);
    color: rgb(255, 174, 74);
}

.cats-list li.yellow a:hover {
    box-shadow: 0px 0px 15px rgb(255, 174, 74);
}

.cats-list li.yellow.current-cat a {
    background: rgb(255, 174, 74);
    color: rgb(18, 16, 58)
}

.cats-list li.sulu a {
    border-color: rgb(194, 220, 128);
    color: rgb(194, 220, 128);
}

.cats-list li.sulu a:hover {
    box-shadow: 0px 0px 15px rgb(194, 220, 128);
}

.cats-list li.sulu.current-cat a {
    background: rgb(194, 220, 128);
    color: rgb(18, 16, 58)
}

.article_single {
    max-width: 70%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.single_title {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #fff;
    margin-bottom: 32px;
    text-align: left;
}

.single_image {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.single_content {
    font-family: 'SF-Pro-Text-Regular';
    font-size: 24px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.9)
}

.single_content p {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
    color: #ABA9BC;
}

.single_content p:first-child {
    font-weight: bold;
    color: #F9F9FB;
    opacity: 0.9;
}

.single_content h2,
.single_content h3 {
    font-family: 'SF-Pro-Text-Medium', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 24px;
}

.single_content p,
.single_content img {
    margin-bottom: 24px;
}


.single_content img,
.single_content figure {
    width: 100%;
    border-radius: 8px;
}

.single_content a:visited,
.single_content a {
    color: #4169e1;
    font-weight: bold;
}

.single_content a:hover {
    color: inherit;
    text-decoration: underline;
}

.more-items {
    margin: 30px auto 0;
    display: block;
    background: #395FDB;
    padding: 12px 24px;
    border-radius: 999px;
    max-width: 50%;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0;
    color: #FFFFFF !important;
}

.back_button {
    margin-bottom: 24px;
}

.back_button__link:visited,
.back_button__link:hover,
.back_button__link:active,
.back_button__link {
    display: inline-block;
    background: #676581;
    padding: 12px 23px 12px 16px;
    border-radius: 50px;



    font-family: 'SF-Pro-Text-Medium', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.41px;
    color: #FFFFFF !important;
}

.back_button__link:before {
    content: "";
    width: 18px;
    height: 13.69px;
    position: relative;
    display: inline-block;
    background-image: url(../images/arrow.svg);
    background-position: 0 1.1px;
    background-size: contain;
    background-repeat: no-repeat;
}

@media(max-width: 1460px) {

    a.article_content__title,
    a.article_content__title:visited {
        font-size: 32px;
    }

    .article_content {
        padding: 14px 0 14px 5%;
    }

    .article_content__content {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width: 1460px) {
    /* body {
        padding: 0 100px;
    } */

    .article_image {
        max-height: 250px;
    }

    a.article_content__title,
    a.article_content__title:visited {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 7px;
    }
}

@media (max-width: 992px) {
    /* body {
        padding: 0 30px;
    } */

    .article_image {
        height: 200px;
    }

    .article_single {
        max-width: 100%;
    }

    .single_image {
        width: 100%;
        border-radius: 13px;
    }
}

@media (max-width: 767px) {
    /* body {
        padding: 0 16px;
    } */

    .article_image {
        width: 100%;
        height: auto;
        margin-bottom: 32px;
    }

    .header {
        margin-bottom: 16px;
    }

    .logo {
        max-width: 117px;
    }

    .menu {
        display: none;
    }

    .article_inner {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .soc_button_link {
        height: 40px;
        padding: 10px 8px;
    }

    .article_content {
        width: 100%;
        padding: 0;
        justify-content: center;

    }

    .article_content__cat {
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 12px;
        padding: 8px 16px;
    }

    .post-categories li a {
        font-size: 14px;
        line-height: 17px;
    }

    a.article_content__title,
    a.article_content__title:visited {
        font-size: 32px;
        line-height: 40px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 16px;
    }


    .article_content__content {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;

        font-size: 16px;
        line-height: 24px;
    }

    .cats-list li a {
        padding: 6px 12px;
        font-size: 16px;
        line-height: 24px;
    }

    .blog-section {
        margin-bottom: 32px;
    }

    .single_title {
        font-size: 40px;
        line-height: 44px;
    }

    .single_content {
        font-size: 20px;
        line-height: 25px;
    }

    .single_image {
        border-radius: 8px;
    }

    .soc_button_link:not(:first-child) svg {
        display: block;
        color: rgb(18, 16, 58);
    }

    .soc_button_link img {
        display: none;
    }

    .more-items {
        max-width: 100%;
    }
}



@media (min-width: 100%) {
    body {
        max-width: 100%;
    }
}

@media (min-width: 774px) {
    body {
        max-width: 774px
    }
}

@media (min-width: 1036px) {
    body {
        max-width: 1036px;
        padding: 0 0 50px;
    }
}

@media (min-width: 1298px) {
    body {
        max-width: 1298px
    }
}