/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

sup {
    font-size: 10px;
    font-weight: 700;
    position: relative;
    vertical-align: top;
    top: 8px;
}

.fw700 {
    font-weight: 700 !important;
}

@keyframes filtered {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
        display: block;
    }
}

@keyframes visible {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes hidefilter {
    0% {
        height: 100%;
        opacity: 100%;
    }

    100% {
        height: 0;
        opacity: 0;
    }
}

.fadeout {
    opacity: 0;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}

.hide-filter {
    display: none !important;
}

.fade {
    animation: 0.2s fade;
    -webkit-animation: 0.2s fade;
}

.filter-title img {
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.open img {
    transform: rotate(90deg);
    transition: 0.2s;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.mb19 {
    margin-bottom: 19px;
}

.mb41 {
    margin-bottom: 41px;
}

.mt60 {
    margin-top: 60px;
}

.mb60 {
    margin-bottom: 60px;
}

/* ARTICLES */
.none {
    display: none !important;
}

.hide {
    display: none;
}

.filtered {
    animation: 0.5s filtered;
    animation-fill-mode: forwards;
    -webkit-animation: 0.5s filtered;
}

.articles_page {
    width: 100%;
    padding: 88px 0 148px 0;
    background-image: url("../img/interactive/main.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.articles-container {
    max-width: 1171px;
    width: 100%;
    margin: 0 auto;
}

.articles-title {
    margin-top: 15px;
    font-size: 58px;
    font-weight: 700;
    line-height: 58px;
    color: #ffffff;
}

.articles-subtitle {
    font-size: 20px;
    max-width: 745px;
    color: #ffffff;
    font-weight: 700;
}

.articles-main-content {
    margin: 84px 0 0 0;
    display: flex;
    gap: 20px;
}

.articles-filter {
    width: 310px;
}

.filter-interactive {
    display: flex;
    gap: 11.89px;
    padding: 35px 20px 20px 28px;
    border-radius: 20px 20px 0 0;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
    margin-bottom: 2px;
    cursor: pointer;
}

.filter-interactive p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.filter-list {
    padding: 28px 20px 35px 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.articles-subtitles {
    display: none;
}

.filter-title {
    display: flex;
    gap: 11.89px;
    cursor: pointer;
}

.filter-title:hover {
    opacity: 80%;
}

.filter-item p {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
}

.filter_sub-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 49px;
    padding-top: 20px;
    animation: 0.5s visible;
    animation-fill-mode: forwards;
    -webkit-animation: 0.5s visible;
}

.sub-list-item p {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    cursor: pointer;
}

.sub-list-item:hover {
    opacity: 80%;
}

.articles-column {
    width: calc(100% - 330px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.interactive {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.articles-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.articles-item {
    cursor: pointer;
    width: 270px;
    height: 348px;
    background-color: #ffffff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
}

.article-content {
    position: absolute;
    left: 0;
}

.articles-item_img {
    position: absolute;
}

.articles-item_group-name {
    width: 100%;
    height: 229px;
    background-color: #9061c3;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
}

.articles-item_group-name p {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
}

.articles-item_title {
    margin-top: 20px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #2d1448;
}

.articles-item:hover .articles-item_title {
    opacity: 80%;
}

.article-text-content {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    background-color: #ffffff;
    border-radius: 20px;
}

.article-text-content_img {
    width: 400px;
    display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.article-text-content_img button {
    padding: 15px 33px;
    background-color: #9060c3;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
}

.article-text-content_img button:hover {
    opacity: 80%;
}

.article-text-content_desc {
    width: calc(100% - 440px);
    padding: 40px 60px 86px 0;
    position: relative;
}
.article-text-content_desc p {
    margin-bottom: 20px;
}
.article-main-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 49.17px;
    color: #2d1448;
    max-width: 608px;
    text-transform: uppercase;
}

.article-text {
    color: #2d1448;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.lit-title {
    color: #2d1448;
    font-size: 22px;
    font-weight: 7x00;
    line-height: 28px;
}

ol li::marker {
    font-weight: 700;
}

ol li p {
    padding-left: 5px;
}

ol li a {
    color: #2d1448;
    text-decoration: underline !important;
    word-wrap: break-word;
}

ol li a:hover {
    opacity: 80%;
}

.article-sub-title {
    color: #2d1448;
    font-size: 38px;
    font-weight: 700;
    line-height: 49.17px;
}

.article-text-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-text-list li {
    position: relative;
    padding-left: 15px;
}

.article-text-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #2d1448;
}

.vrez {
    padding: 15px;
    background-color: #eceeff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.article-text-list li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #2d1448;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    left: 0;
    top: 12px;
}

.rec-articles {

    padding: 0 30px;
}

.rec-title {
    width: 100%;
    text-align: center;
    margin-top: 59px;
    font-size: 58px;
    font-weight: 700;
    line-height: 18px;
    color: #2d1448;
}

.article-rec-list {
    display: flex;
    margin-top: 58px;
    justify-content: space-between;
    gap: 20px;
    overflow-x: auto;
    width: 100%;
    height: 348px;
}

.article-rec-list::-webkit-scrollbar {
    display: none;
}

.rec-item {
    width: 270px;
    min-width: 270px;
    background-color: #ffffff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    height: 348px;
    cursor: pointer;
}

.rec-item_img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.rec-item_group-name {
    width: 100%;
    height: 229px;
    background-color: #9061c3;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    z-index: 9;
}

.rec-item_group-name p {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
}

.rec-item_title {
    padding: 20px 20px 0 20px;
    font-family: PT Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #2d1448;
}

.rec-item:hover .rec-item_title {
    opacity: 80%;
}

.back-btn {
    margin-top: 50px;
    padding: 15px 33px;
    background-color: #9060c3;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    gap: 9px;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    color: #ffffff;
    align-items: center;
}

.back-btn:hover {
    opacity: 80%;
}

.test-btn {
    position: absolute;
    bottom: -60px;
    right: -24px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 17px;
    color: #ffffff;
    background: linear-gradient(90deg, #989ecf 0%, #8958be 100%);
    border: 3px solid #8a5cbf;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.interactive-link {
    color: #ffffff;
    padding: 8.5px 6px;
    font-weight: 700;
    background: linear-gradient(90deg, #989ecf 0%, #8958be 100%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 1240px) {
    .articles_page {
        width: 100%;
        padding: 66px 30px 0 30px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

}

@media (max-width: 947px) {
    .article-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        padding: 0 30px;
        padding-top: 30px;
    }

    .article-text-content_desc {
        width: 100% !important;
    }

    .articles_page {
        width: 100%;
        padding: 66px 30px 0 30px;
    }

    .articles-interactive {
        height: 360px;
    }

    .articles-list {}

    .articles-item {
        width: calc(50% - 10px);
        max-width: 270px;
    }

    .articles-item_img {
        object-fit: cover;
        height: 194px;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .article-text-content_img {
        width: 100%;
        align-items: flex-start;
    }

    .article-text-content_desc {
        padding-right: 0;
        /* padding-bottom: 40px; */
    }

    .mobile-hide {
        display: none;
    }

    .article-main-title {
        max-width: 100%;
    }

    .article-text-content_desc {
        width: 100%;
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    .articles-main-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 62px;
    }

    .map-content {
        align-items: flex-start;
    }

    .articles_page {
        padding-left: 15px;
        padding-right: 15px;
    }

    .articles-filter {
        width: 100%;
    }

    .articles-column {
        width: 100%;
    }

    .articles-item {
        width: calc(33% - 10px);
        max-width: 270px;
    }

    .articles-item_title {
        font-size: 18px;
    }

    .articles-item_group-name {
        font-size: 10px;
    }
}

@media (max-width: 822px) {
    .articles-list {
        justify-content: space-around;
    }

    .articles-item {
        width: calc(50% - 10px);
    }

    .articles-subtitle {
        font-size: 16px;
    }

    .mb60 {
        margin-bottom: 40px;
    }

    .mt60 {
        margin-top: 40px;
    }

    .articles-title {
        font-size: 38px;
    }

    .rec-item_group-name {
        font-size: 10px;
        margin-bottom: 0;
    }
}

@media (max-width: 620px) {
    .article-main-title {
        font-size: 30px;
        line-height: 39px;
    }

    .article-sub-title {
        font-size: 30px;
        line-height: 39px;
    }

    .rec-title {
        font-size: 39px;
    }

    .test-btn {
        width: 100px;
        height: 100px;
        font-size: 12px;
        bottom: -40px;
    }
}

@media (max-width: 545px) {
    .article-text-content {
        padding: 0 15px;
        padding-top: 15px;
    }

    .mobile-hide {
        display: block;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .articles-main-content {
        margin-top: 32px;
    }

    .articles-item {
        width: 100%;
        max-width: 270px;
    }

    .articles-title {
        line-height: 40px;
    }

    .article-main-title {
        font-size: 20px;
        line-height: 29px;
    }

    .article-text {
        font-size: 16px;
    }

    .article-text-list li {
        font-size: 16px;
    }

    .article-sub-title {
        font-size: 20px;
        line-height: 29px;
    }

    .article-sub-title {
        font-size: 20px;
        line-height: 29px;
    }
}

.article-hero-block {
    width: 100%;
    background-image: url("../img/interactive/main.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px 20px 0 0;
    display: flex;
    gap: 60px;
    padding: 30px 0 120px 0;
    justify-content: center;
    position: relative;
}

.article-hero-block h1 {
    font-family: PT Sans;
    font-size: 70px;
    font-weight: 700;
    line-height: 75px;
    letter-spacing: -1.2000000476837158px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 17px 0 60px 0;
    color: #2d1448;
}

.article-hero-block p {
    font-family: PT Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.3px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2d1448;
}

.hero-block-desc {
    max-width: 535px;
    height: 100%;
}

.breadcrumbs-hero {
    font-family: PT Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d1448;
    margin-top: 9px;
}

.breadcrumbs-hero p {
    font-size: 14px;
}

.article-clickbait {
    position: absolute;
    bottom: 0;
    padding: 30px 0;
    width: 100%;
    background-color: #f2f3f9;
    border-radius: 20px 20px 0 0;
    font-family: PT Sans;
    font-size: 22px;
    font-weight: 700;
    line-height: 29.7px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2d1448;
}

.article-meta {
    border-radius: 20px;
    background-color: #e0f8fd;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.meta-content {
    padding: 44px 0 44px 40px;
    font-family: PT Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.3px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2d1448;
}

.meta-content h3 {
    font-family: PT Sans;
    font-size: 34px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 30px;
}

.meta-content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    padding-left: 10px;
    margin: 0;
}

.meta-content ul li {
    position: relative;
    padding-left: 14px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inside {
    margin-left: 25px;
    position: relative;
}
.inside:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #2D1448;
    left: -15px;
    top: 9px;
}

.meta-content ul li a {
    color: #2d1448;
    transition: .2s;
}

.meta-content ul li a:hover {
    text-decoration: underline;
    text-decoration-offset: 3px;
    transition: .2s;
}

.meta-content ul li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #2d1448;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
}

.content-metadata {
    /* width: 231px; */
    height: auto;
    background-color: #bae6f0;
    border-radius: 20px;
    padding: 44px 30px 44px 30px;
}

.content-metadata div {
    margin-bottom: 35px;
}

.content-metadata div p:last-child {
    font-family: PT Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2d1448;
}

.time-to-read {
    margin-bottom: 0 !important;
}

.meta-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 24.3px !important;
    margin: 0 !important;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(116, 125, 156, 1);
    text-transform: uppercase;
}

@media (max-width: 1340px) {
    .article-hero-block {
        padding-left: 30px;
        padding-right: 30px;
    }

}

@media(max-width: 768px) {
    .article-meta {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .article-meta {
        flex-direction: column;
    }

    .meta-content {
        padding-bottom: 0;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .content-metadata {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 550px) {
    .article-hero-block h1 {
        font-size: 38px;
        line-height: 38px;
    }

    .article-hero-block img {
        display: none;
    }

    .article-clickbait {
        font-size: 20px;
        line-height: 20px;
    }
}

.article-name-bread {
    max-width: 300px;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media(max-width: 991px) {
    .article-name-bread {
        max-width: 150px;
    }
}
.article-content ul li:before {
    top: 12px !important;
}