@charset "UTF-8";

.media {
    width: 100%;
    background-image: url(../images/media-bg.png)!important;
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 9px 16px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
}

@media (max-width:1630px) {
    .media {
        margin-bottom: 40px;
    }
}

@media (max-width:1280px) {
    .media {
        margin-bottom: 30px;
    }
}

@media (max-width:960px) {
    .media {
        margin-bottom: 20px;
    }
}

.media-logo {
    margin-right: 75px;
    max-width: 180px;
    flex-shrink: 0;
}

.media-logo img {
    display: block;
    width: 100%;
}

@media (max-width:600px) {
    .media-logo {
        display: none;
    }
}

.media-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:960px) {
    .media-list {
        flex: auto;
    }
}

.media-item {
    max-width: 360px;
    width: 30%;
    font-size: 1.2rem;
    line-height: 1.17;
    margin-bottom: 9px;
}

@media (max-width:960px) {
    .media-item {
        font-size: 1.1rem;
        max-width: none;
        width: auto;
        margin-right: 20px;
    }
}

.media-item p {
    display: flex;
    align-items: center;
}

.media-item .icon {
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
    max-width: 32px;
    max-height: 22px;
    flex-shrink: 0;
}

@media (max-width:960px) {
    .media-item .icon {
        width: 32px;
    }
}

.media-item .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.articles-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fdfdfd;
    margin-bottom: 20px;
    transition: all .2s ease-in-out 0s;
}

.articles-item:hover {
    box-shadow: 2px 2px 8px rgba(0,0,0,.05);
}

.articles-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 260px;
    border-top: 1px solid #dad0c9;
    border-left: 1px solid #dad0c9;
    border-right: 1px solid #dad0c9;
}

@media (max-width:1630px) {
    .articles-item-img {
        height: 200px;
    }
}

@media (max-width:1280px) {
    .articles-item-img {
        height: 150px;
    }
}

@media (max-width:520px) {
    .articles-item-img {
        height: 100px;
    }
}

.articles-item-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.articles-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    object-fit: cover;
}

.articles-item-img iframe {
    height: 100%;
}

.articles-item-info {
    border: 1px solid #dad0c9;
    border-top: none;
    padding: 25px 28px;
    min-height: 224px;
    width: 100%;
    flex: 1;
}

@media (max-width:1630px) {
    .articles-item-info {
        padding: 15px;
        min-height: auto;
    }
}

.articles-item-date {
    margin-bottom: 17px;
    font-size: 1.2rem;
    line-height: 1.17;
    color: #58514c;
    text-transform: uppercase;
    display: none;
}

.articles-item-name {
    display: block;
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 2.4rem;
    line-height: 1.25;
    color: #3c394b;
}

@media (max-width:1630px) {
    .articles-item-name {
        font-size: 2rem;
    }
}

@media (max-width:1280px) {
    .articles-item-name {
        font-size: 1.6rem;
    }
}

.articles-item-name:hover {
    text-decoration: none;
}

.articles-item__gallary-item .articles-item-info {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-height: auto;
}

.articles-item__gallary-item .articles-item-date {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.articles-item__gallary-item .articles-item-date .icon {
    margin-right: 5px;
}

.articles-item__gallary-item .articles-item-name {
    width: 66%;
    flex-shrink: 0;
}

.articles-item__gallary-item:hover {
    text-decoration: none;
}

.articles-item__video {
    position: relative;
}

.articles-item__video.yt:after {
    content: '';
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ff6417;
    background-image: url(../images/play.svg);
    background-repeat: no-repeat;
    background-position: 55% center;
    transition: all .2s ease-in-out 0s;
}

@media (max-width:1280px) {
    .articles-item__video.yt:after {
        top: calc(50% - 40px);
        left: calc(50% - 40px);
        width: 80px;
        height: 80px;
    }
}

@media (max-width:820px) {
    .articles-item__video.yt:after {
        top: calc(50% - 35px);
        left: calc(50% - 35px);
        width: 70px;
        height: 70px;
    }
}

@media (max-width:520px) {
    .articles-item__video.yt:after {
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        width: 60px;
        height: 60px;
        background-size: 26px 31px;
    }
}

.articles-item__video.yt:hover:after {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.articles-item__count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.articles {
    width: 100%;
}

.articles-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.articles-tabs .articles-content-item .articles-item .articles-item-name {
    font-weight: 300;
}

.articles-link {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    position: relative;
}

@media (max-width:1280px) {
    .articles-link {
        margin-bottom: 25px;
    }
}

@media (max-width:520px) {
    .articles-link {
        padding-bottom: 15px;
        margin-bottom: 0;
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        display: block;
    }
}

.articles-link-item {
    padding: 0 50px;
    border: none;
    background: 0 0;
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-weight: 300;
    font-size: 3rem;
    line-height: 1.33;
    color: #58514c;
    text-transform: uppercase;
    transition: all .2s ease-in-out 0s;
}

@media (max-width:1280px) {
    .articles-link-item {
        font-size: 2.5rem;
    }
}

@media (max-width:960px) {
    .articles-link-item {
        font-size: 2rem;
        padding: 0 15px;
    }
}

@media (max-width:520px) {
    .articles-link-item {
        padding: 0 5px;
    }

    .articles-link-item:first-child {
        padding-left: 0;
    }
}

.articles-link-item:hover {
    color: #6a6585;
}

.articles-link-item__special {
    color: #698ed3;
}

.articles-link-item__special .text {
    display: inline-block;
}

.articles-link-item__special .icon {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width:630px) {
    .articles-link-item__special .icon {
        display: none;
    }
}

.articles-link-item__special .icon .fill,.articles-link-item__special .icon .stroke {
    transition: all .2s ease-in-out 0s;
}

.articles-link-item__special:hover {
    color: #92b0e8;
}

.articles-link-item__special:hover .icon .fill {
    fill: #92b0e8;
}

.articles-link-item__special:hover .icon .stroke {
    stroke: #92b0e8;
}

.articles-link-item.active-js {
    color: #ff6417;
}

@media (max-width:520px) {
    .articles-link-item.active-js {
        color: #ff6417;
    }
}

.articles-link-item.active-js .icon .fill {
    fill: #3c394b;
}

.articles-link-item.active-js .icon .stroke {
    stroke: #3c394b;
}

.articles-link-line {
    height: 2px;
    background-color: #ff6417;
    position: absolute;
    bottom: -10px;
}

@media (max-width:520px) {
    .articles-link-line {
        display: none;
    }
}

.articles-content {
    width: 100%;
}

.articles-content-item {
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0 -10px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

@media (max-width:1280px) {
    .articles-content-item {
        padding-bottom: 25px;
    }
}

@media (max-width:820px) {
    .articles-content-item {
        margin: 0 -5px;
    }
}

.articles-content-item.active-js {
    display: flex;
}

.articles-content-item .articles-item {
    margin: 0 10px 20px;
    width: calc(25% - 20px);
}

@media (max-width:820px) {
    .articles-content-item .articles-item {
        margin: 0 5px 10px;
        width: calc(50% - 10px);
    }

    .articles-content-item .articles-item img {
        font-family: "object-fit:contain";
        object-fit: contain;
    }
}

@media (max-width:375px) {
    .articles-content-item .articles-item {
        margin: 0 5px 10px;
        width: calc(100% - 10px);
    }
}

.articles-content-item .articles-item:nth-child(n+4)+.btn {
    display: inline-block;
}

.articles-content-item .btn {
    display: none;
    margin: 30px auto 0;
}

@media (max-width:1280px) {
    .articles-content-item .btn {
        margin: 15px auto 0;
    }
}

.gallery {
    width: 100%;
    margin-bottom: 60px;
}

.gallery .header-block {
    color: #58514c;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gallery-list {
    position: relative;
    width: 100%;
}

@media (max-width:720px) {
    .gallery-list {
        width: calc(100% - 30px);
    }
}

.gallery-list-arrow {
    position: absolute;
    width: 20px;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 0;
    border: none;
    background: 0 0;
    transition: all .2s ease-in-out 0s;
    opacity: .8;
}

@media (max-width:720px) {
    .gallery-list-arrow {
        height: 30px;
        width: 10px;
    }
}

.gallery-list-arrow svg {
    display: block;
    width: 100%;
}

.gallery-list-arrow:hover {
    opacity: 1;
}

.gallery-list-arrow__prev {
    left: -30px;
}

@media (max-width:720px) {
    .gallery-list-arrow__prev {
        left: -15px;
    }
}

.gallery-list-arrow__next {
    right: -30px;
}

@media (max-width:720px) {
    .gallery-list-arrow__next {
        right: -15px;
    }
}

.gallery-list .swiper-wrapper {
    align-items: stretch;
}

.gallery-list .swiper-slide {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    height: auto;
}

@media (max-width:960px) {
    .gallery-list .swiper-slide {
        max-width: 280px;
    }
}

.gallery-list .swiper-slide .articles-item {
    margin-bottom: 0;
    height: 100%;
}

@media (max-width:960px) {
    .gallery-list .swiper-slide .articles-item {
        max-width: 280px;
    }
}

.gallery-list .swiper-slide .articles-item:hover {
    text-decoration: none;
}

.gallery-list .swiper-slide .articles-item-img__video {
    height: auto;
}

@media (max-width:1630px) {
    .gallery-list .swiper-slide .articles-item-img {
        height: 280px;
    }
}

@media (max-width:1280px) {
    .gallery-list .swiper-slide .articles-item-img {
        height: 150px;
    }
}

.gallery-list .swiper-slide .articles-item-info {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: row-reverse;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:1280px) {
    .gallery-list .swiper-slide .articles-item-info {
        padding: 10px;
    }
}

.gallery-list .swiper-slide .articles-item-name {
    width: 66%;
    flex-shrink: 0;
}

.gallery-list .swiper-slide .articles-item-date {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 7px;
    border-radius: 10px;
    background-color: #ff6316;
    cursor: pointer;
    width: 34px;
    height: 34px;
    transition: all .2s ease-in-out 0s;
}

.gallery-list .swiper-slide .articles-item-date .icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.gallery-video .gallery-list .swiper-slide .articles-item-name {
    width: 100%;
}

.director-page .form-wrapper {
    padding-top: 60px;
}

.director-page .form-container {
    max-width: 297px;
}

.director-page .form-container .form-btn {
    margin-top: 0;
}

.director-page .media {
    margin-top: 42px;
}

.director-wrapper {
    padding: 54px 0 53px;
    background-color: #f4f4f4;
    position: relative;
    z-index: 1;
}

@media (max-width:960px) {
    .director-wrapper {
        padding: 25px 0;
    }
}

.director-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../images/quotes.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 231px;
    height: 187px;
    top: 38px;
    left: 158px;
}

@media (max-width:720px) {
    .director-wrapper:before {
        display: none;
    }
}

.director-container {
    margin: 0 auto;
    max-width: 695px;
    display: flex;
    position: relative;
}

@media (max-width:960px) {
    .director-container {
        padding: 0 20px;
    }
}

.director-container:after {
    content: '';
    display: block;
    width: 66px;
    height: 54px;
    background-image: url(../images/quotes.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -27px;
    bottom: -20px;
}

@media (max-width:720px) {
    .director-container:after {
        display: none;
    }
}

.director-avatar {
    min-width: 180px;
    height: 180px;
    margin-right: 60px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.director-avatar img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: 100%;
    max-height: 100%;
}

.director-description {
    position: relative;
}

.director-description span {
    display: block;
}

.director-description-header {
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 4rem;
    color: #58514c;
    margin-bottom: 2rem;
}

.director-description-text {
    font-family: "Open Sans",Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 1.4rem;
    line-height: 2.5rem;
    color: #3c394b;
}

.director-description-name {
    font-family: Oswald,Arial,Helvetica CY,Nimbus Sans L,sans-serif;
    font-size: 2.4rem;
    line-height: 3rem;
    color: #3c394b;
    margin: 2rem 0 1.3rem;
}