.news-page {
    background: #F5F5F5;
}

.section-news {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 80px;
}

.section-news iframe,
.news-detail__first-video iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}



.section-news__main {
    width: 63%;
    flex-shrink: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 27px 27px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.section-news__main:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid #E2E2E2;
    border-right: 100px solid transparent;
}

.section-news__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-news__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.01em;
    color: #3A3A3A;
    margin: 15px;
}

.js-container-sticky {
    height: 100%;
}

.section-news__sidebar {
    width: calc(100% - 63% - 15px);
    background: #2055A3;
    padding-bottom: 90px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 27px;
    position: relative;
}

.section-news__sidebar:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 90px solid rgba(255, 255, 255, 0.21);
    border-left: 85px solid transparent;
}


@media (max-width: 768px) {
    .section-news {
        flex-direction: column;
        margin-top: 0;
    }

    .section-news__main {
        width: 100%;
        padding-bottom: 30px;
    }

    .section-news__sidebar {
        width: 100%;
        order: -1;
        padding-bottom: 0;
    }

    .section-news__sidebar:before {
        display: none;
    }
}

/*SECTION-NEWS  ----------- END ------------*/

.my-btn {
    background: #F3F3F3;
    box-shadow: 0 0.551569px 0.551569px rgba(0, 0, 0, 0.25);
    color: #01337E;
    display: inline-flex;
    align-items: center;
    padding: 2px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
    transition: 0.2s ease;
}

.my-btn.my-btn--blue {
    background: #01337E;
    color: #fff;
}

.my-btn.my-btn--pale {
    background: #5880BA;
    color: #fff;
}

.my-btn.my-btn--blue:hover {
    background: #fff;
    color: #01337E;
    text-decoration: none;
}

.my-btn:hover {
    background: #01337E;
    color: #fff;
    text-decoration: none;
}


.card-news-important {
    background: #3E3E3E;
    color: #fff;
}

.card-news-important__header, .card-news-important__footer  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.card-news-important__date {
    font-weight: 400;
    font-size: 10px;
    line-height: 120.69%;
    color: #fff;
    align-items: center;
    gap: 5px;
    display: inline-flex;
}

.card-news-important__date svg {
    fill: #fff;
    margin-right: 5px;
}

.card-news-important__main {
    position: relative;
    display: block;
    overflow: hidden;
}

.card-news-important__main:before {
    content: '';
    display: block;
    padding-top: 80%;
}

.card-news-important__main:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-news-important__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.card-news-important__img {
    width: 100%;
    object-fit: cover;
}

.card-news-important__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 27px;
    text-align: center;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #F3F3F3;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
    padding: 10px;
}

.card-news-important__name {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #fff;
}

.section-news__sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/*CARD-NEWS-DEFAULT*/

.card-news-default {
    display: flex;
    align-items: flex-start;
    background: #F3F3F3;
    position: relative;
}


.card-news-default:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 40px solid #E2E2E2;
    border-left: 60px solid transparent;
    pointer-events: none;
}

.card-news-default:after {
    content: '';
    position: absolute;
    left: 0;
    top: -15px;
    height: calc(100% + 30px);
    width: 100%;
    border-bottom: 2px dashed #C7C7C7;
    pointer-events: none;
}

.news-modal {
    width: 80vw;
    position: absolute;
    z-index: 2;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    top:20px;
    height: 80vh;
    overflow-y: scroll;
}

.news-modal-container {
    background: #00000087;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
}

.card-news-default__img {
    width: 40%;
    flex-shrink: 0;
    position: relative;
}

.card-news-default__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.card-news-default__img:before {
    content: '';
    display: block;
    padding-top: 58%;
}

.card-news-default__container {
    padding: 10px 30px;
    text-align: left;
    width: 100%;
    min-height: 160px;
    position: relative;
}

.card-news-default__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-align: left;
}

.card-news-default__text {
    font-size: 16px;
    line-height: 19px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
    text-align: left;
}
.card-news-default__text img, .card-news-default__text div {
    display: none;
}
.card-news-default__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 121.69%;
    color: #888888;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
}

.card-news-default__date svg {
    fill: #888888;
    margin-right: 5px;
}

.card-news-default__bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    z-index: 1;
    bottom: 10px;
    width: 90%;
    position: absolute;
}

.card-news-default.card-news-default--mod {
    color: #fff;
    background: #2055A3;
    flex-direction: column;
}

.card-news-default.card-news-default--mod .card-news-default__title{
    color: #fff;
}

.card-news-default.card-news-default--mod .card-news-default__container {
    padding: 15px 30px 30px;
}

@media (max-width: 1024px) {
    .card-news-default.card-news-default--mod .card-news-default__container {
        padding: 15px 15px 30px;
    }
}

.card-news-default.card-news-default--mod:before {
    width: 0;
    height: 0;
    right: inherit;
    left: 0;
    bottom: 0;
    border-bottom: 30px solid #E2E2E2;
    border-right: 40px solid transparent;
    border-left: inherit;
    z-index: 1;
}

.card-news-default.card-news-default--mod:after {
    top: 0;
    height: 100%;
}

.card-news-default.card-news-default--mod .card-news-default__text {
    color: #fff;
}

.card-news-default.card-news-default--mod .card-news-default__date {
    color: #fff;
    opacity: 0.7;
}

.card-news-default.card-news-default--mod .card-news-default__date svg {
    fill: #fff;
}

.card-news-default.card-news-default--mod .card-news-default__img {
    width: 100%;
}

@media (max-width: 768px) {
    .card-news-default {
        flex-direction: column;
    }

    .card-news-default__img {
        width: 100%;
    }

    .card-news-default__container {
        padding: 15px;
    }

    .card-news-default.card-news-default--mod .card-news-default__container {
        padding: 15px;
    }

    .card-news-default.card-news-default--mod:after {
        height: calc(100% + 15px);
    }
}
/*CARD-NEWS-DEFAULT ---------  END  ----------*/

.my-pagination {
    display: inline-flex;
    list-style: none;
}

.my-page-item {
    margin: 0 2px;
}

.my-page-item .disabled {
    pointer-events: none;
}


.my-page-link {
    width: 40px;
    height: 40px;
    line-height: 50px;
    border: 1px solid #A0A0A0;
    border-radius: 50%;
    outline: none;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6E6E6E;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    background: #fff;
}

.my-page-link.my-pagination-link--active {
    background: #01337E;
    border-color: #01337E;
    color: #fff;
}

.my-page-link.my-pagination-link--disable {
    pointer-events: none;
    cursor: default;
    opacity: 0.7;
}

.my-page-link:hover {
    border-color: #01337E;
    text-decoration: none;
}

.my-paginator-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
    z-index: 1;
    position: relative;
}

.my-paginator-box__load {
    border: 1px solid #A0A0A0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 50px;
    color: #A0A0A0;
    border-radius: 25px;
    background: transparent;
    transition: 0.15s ease-in-out;
}

svg {
    font-size: 10px;
    margin-right: 10px;
}

.my-paginator-box__load:hover {
    color: #01337E;
    border-color: #01337E;
}

.my-paginator-box__load.disabled {
    opacity: 0.5;
}

.share-social {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .my-page-link {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


.share-social__item {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: 0.2s ease opacity;
    margin-right: 5px;
    display: inline-flex;
}
.share-social__item:last-child {
    margin-right: 0;
}

.share-social__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.share-social__item:hover {
    opacity: 0.7;
}


.news-video {
    display: flex;
    /* color: black; */
    background: #E2E2E2;
    margin-bottom: 30px;
}

.news-video:last-child {
    margin-bottom: 0;
}

.news-video__title {
    color: #454545;
    margin-bottom: 15px;
    font-weight: bold;
}

.news-video__text {
    font-size: 16px;
    line-height: 19px;
    color: #454545;
    /* height: 15vw; */
    overflow: hidden;
    position: relative;
}

.news-video__text > * {
    font-size: 16px;
    line-height: 19px;
    color: #454545;
}

  .news-video__text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, transparent, #E2E2E2 50%);
  }

.news-video__bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

.news-video__date {
    margin: 15px 0;
    color: #454545;
    font-weight: 400;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.news-video__date svg {
    fill: #454545;
    margin-right: 5px;
}

.news-video__v {
    width: 63%;
    flex-shrink: 0;
    position: relative;
    padding-top: 36%;
    height: 100%;
    background: rgb(18, 18, 18);
    margin-right: 15px;
}

.news-video__v iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.news-video__container {
    width: calc(100% - 63% - 15px);
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}

@media (max-width: 1024px) {
    .news-video__container {
        padding: 15px;
    }
}

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

    .news-video__v {
        width: 100%;
        padding-top: 56.5%;
        margin: 0;
    }

    .news-video__container {
        width: 100%;
        margin-right: 0;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .container.container--sm-mg0 {
        padding: 0;
    }
}

.section-video {
    /* background: #3E3E3E; */
}

@media (min-width: 576px) {
    .container {
        width: 100%;
        max-width: 1140px;
    }
}


.news-detail {
    padding-bottom: 80px;
}

.news-detail--grey {
    background: #3E3E3E;
}

.news-detail--blue {
    background: #2055A3;
}

.news-detail--grey *, .news-detail--blue *  {
    color: #fff;
}

.single-news-head:before {
    display: none !important;
}

.single-news-head:after {
    display: none !important;
}

.news-detail__title {
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 129.69%;
    text-align: center;
    text-transform: uppercase;
    color: #2055A3;
    margin: 16px 0;
}

@media (max-width: 767px) {

    .news-detail__title {
        font-size: 26px;
    }

}

.news-detail--grey .news-detail__title, .news-detail--blue .news-detail__title {
    color: #fff;
}

.news-detail__first-screen {
    max-height: 800px;
    height: 100%;
    position: relative;
}

.news-detail__first-video {
    width: 100%;
    position: relative;
    padding: 58% 0 0 0;
}

.news-detail__first-screen--video:after, .news-detail__first-screen--video:before {
    display: none;
}

.news-detail__first-screen:before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.news-detail__first-screen:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: rotate(180deg);
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.news-detail--grey .news-detail__first-screen:after {
    background: linear-gradient(180deg, #3E3E3E 0%, rgba(62, 62, 62, 0) 100%);
}

.news-detail--grey .news-detail__first-screen:before {
    background: linear-gradient(180deg, #3E3E3E 0%, rgba(62, 62, 62, 0) 100%);
}

.news-detail__social {
    text-align: right;
    margin: 30px 0 50px;
}

.news-detail__first-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-detail__bottom {
    margin-top: 50px;
    text-align: center;
}

.news-detail__accent {
    text-align: center;
    text-transform: uppercase;
    color: currentColor;
    margin-bottom: 100px;
}

.news-detail__accent h2 {
    margin-bottom: 30px;
    color: currentColor;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 129.69%;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .news-detail__accent h2 {
        font-size: 28px;
    }
}

.news-detail__text p {
    margin-bottom: 18px;
}

.news-detail__text {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 129.69%;
    color: currentColor;
}

.news-detail__text img {
    width: 100% !important;
    object-fit: contain;
    margin: 30px 0;
    height: auto !important;
}

.question {
    color: #2055A3;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.news-detail--blue .question {
    color: #fff;
}

.answer {
    margin-bottom: 30px;
}

.news-detail__date {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    color: currentColor;
}

.news-detail__date svg{
    width: 15px;
    height: 15px;
}

.news-detail__date svg path {
    fill: currentColor;
}

.news-detail.news-detail--blue .button{
    background: #fff;
    color: #2055A3 !important;
}

.vimeo-wrapper {
    position: relative;
    padding-top: 56%;
}

.vimeo-wrapper iframe {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.vimeo-play {
    /*position: absolute;*/
    /*left: 50%;*/
    /*top: 50%;*/
    /*transform: translate(-50%, -50%);*/
    z-index: 2;
    pointer-events: none;
}


.vimeo-voice {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 3;
    cursor: pointer;
}

.vimeo-voice.is-active .vimeo-voice__off {
    display: none;
}
.vimeo-voice.is-active .vimeo-voice__on {
    display: block;
}

.vimeo-voice__off {
    display: block;
}

.vimeo-voice__on {
    display: none;
}

.vimeo-voice svg path {
    fill: #ffff;
}
