@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
html
{
    font-family: 'Inter', sans-serif;
}
:root
{
    --main-black: #0B1F33;
    --main-blue: #345DAB;
    --main-dark-blue:#294B8C;
    --main-gray: #5F5F5F;
    --main-gray-white:#828282;
    --main-red: #EF4040;
    --gray-light: #F5F7FA;
}
body
{
    font-family: 'Inter';
    color: var(--main-black);
}
iframe { max-width: 100%}
a
{
    transition: color 0.2s;
}
.news-detail__text a
{
    color: var(--main-red);
}
a:hover
{
    color: var(--main-dark-blue);
}
footer a:hover
{
    color: var(--main-red);
}
@media (min-width:1600px) {
    .container
    {
        max-width: 1520px;
    }
}

@media (max-width: 768px) {
    .container
    {
        max-width: 93.75%;
    }
}
.page-wrap
{
    position: relative;
    padding-top: 50px;
    padding-bottom: 70px;
    min-height: calc(100vh - 170px - 100px);
}
.section
{
    padding: 100px 0;
}
@media (max-width: 576px) {
    .section
    {
        padding: 50px 0;
    }
}
@media (max-width: 576px) {
    #about .container .row>*
    {
        padding-right: 0;
        padding-left: 0;
    }
    
}
.large-text
{
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 131%;
    letter-spacing: -0.5px;
}
@media(max-width:576px)
{
    .large-text
    {
        font-weight: 600;
        font-size: 14px;
        line-height: 143%;
        letter-spacing: -0.25px;
    }
}
.medium-text
{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}
.small-text
{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    display: flex;
    align-items: flex-end;
    letter-spacing: -0.25px;
}
.xs-text
{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 114%;
    letter-spacing: -0.25px;
}
/* @media(max-width:576px)
{
    .medium-text
    {
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .small-text
    {
        font-weight: 500;
        font-size: 10px;
        line-height: 140%;
        letter-spacing: -0.25px;
    }
} */
.caption
{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: -0.5px;
    
}
.h1
{
    font-style: normal;
    font-weight: 900;
    font-size: 42px;
    line-height: 124%;
    text-transform: uppercase;
    margin-bottom: 50px;
}
@media (max-width: 768px) 
{
    .h1
    {
        font-size: 32px;
        line-height: 125%;
        letter-spacing: -0.5px;
    }
}

.h2
{
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}
@media (max-width: 576px) 
{
    .h1,
    .h2
    {
        font-size: 26px;
        line-height: 108%;
        letter-spacing: -0.5px;
    }
}
.h3
{
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 123%;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}
.h4
{
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 127%;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}
/* @media (max-width:768px) {
    .h4
    {
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
    
} */
.h5
{
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: -0.25px;
    margin-bottom: 0;
}
/* @media (max-width:576px) {
    .h5
    {
        font-weight: 700;
        font-size: 11px;
        letter-spacing: -0.15px;
    }
    
} */
.main-btn
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 31px;
    background: var(--main-blue);
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.5px;
    border: 0;
    color: #FFFFFF;
    text-decoration: none;
    
}
.main-btn:hover
{
    background: var(--main-dark-blue);
    color: #FFFFFF;
}
@media (max-width:768px)
{
    .main-btn
    {
        border-radius: 10px;
        padding: 14px 40px;
        font-weight: 400;
        font-size: 1.125rem;
    }
}
@media (max-width:768px)
{
    .main-btn
    {
        font-size: 12px;
    }
}

.sub-btn
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 21px 0;
    margin-top: 4px;
    border: 3px solid var(--main-blue);
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    line-height: 120%;
    letter-spacing: -0.5px;
    background: transparent;
    text-decoration: none;
    color: var(--main-black);
    text-align: center;
}
@media (min-width: 769px) {
    .sub-btn:hover
    {
        background: var(--main-blue);
        color: #FFFFFF;
    }
}

@media (max-width: 768px) {
    .sub-btn
    {
        padding: 14px 0;
        background: var(--main-red);
        border-radius: 10px;
        border: 3px solid var(--main-red);
        color: #FFFFFF;
    }
}
@media (max-width: 768px) {
    .sub-btn
    {
        font-weight: 400;
        font-size: 12px;
        line-height: 200%;
        text-align: center;
        letter-spacing: -0.5px;
    }
}
.page-btn
{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 21px 0;
    margin-top: 4px;
    border: 3px solid var(--main-blue);
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    line-height: 120%;
    letter-spacing: -0.5px;
    background: transparent;
    text-decoration: none;
    color: var(--main-black);
    text-align: center;
}
.page-btn:hover
{
    background: var(--main-blue);
    color: #FFFFFF;
}
@media (max-width: 768px) {
    .page-btn
    {
        padding: 14px 0;
        background: var(--main-blue);
        color: #FFFFFF;
        font-weight: 400;
        font-size: 18px;
        line-height: 133%;
        text-align: center;
        letter-spacing: -0.5px;
    }
}
@media (max-width: 576px) {
    .page-btn
    {
        font-size: 12px;
        line-height: 200%;
    }
}

.custom__row
{
    display: flex;
    row-gap: 30px;
}

@media (max-width: 576px)
{
    .custom__row
    {
        row-gap: 30px;
    }
}
.main-card
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    filter: drop-shadow(0px 1px 4px #E3EBFC) drop-shadow(0px 24px 48px rgba(230, 235, 245, 0.4));
    border-radius: 15px;
    cursor: pointer;
    height: 100%;   
}
.main-card + a
{
    height: 100%;
}
.main-card a
{
    width: 100%;
    height: 100%;
}
.main-card:hover
{
    filter: drop-shadow(0px 12px 32px rgba(11, 31, 51, 0.18));
}
.main-card__image
{
    position: relative;
    width: 100%;
}
.main-card__image::before
{
    content: '';
    display: block;
    padding-top: 80%;
}
.main-card__image img
{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    object-fit: cover;
}
.main-card__image-a4
{
    width: 100%;
    position: relative;
}
.main-card__image-a4::before {
    display: block;
    padding-top: 130%;
    content: "";
}
.main-card__image-a4 img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-card__body
{
    width: 100%;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background: #FFFFFF;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.main-card__hover
{
    position: relative;
}
.main-card__hover img
{
    transition: 0.3s ease-in-out;
}
.main-card__hover-content
{
    opacity: 0;
    display: flex;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    top: 50%;
    left: 0;
    background: #294B8C;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    margin: 0;
    transition: 0.3s ease-in-out;
    
}

.main-card__hover:hover img
{
    opacity: 0.5;
}
.main-card__hover:hover .main-card__hover-content
{
    opacity: 1;
    
}
.main-card__body-date
{
    margin-top: 1rem;
}
.main-card__body-text
{
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main-card.news-card,
.main-card.news-card .main-card__body,
.main-card.news-card .main-card__body .main-card__body-text
{
    height: 100%;
}
@media (max-width: 576px) 
{
    .main-card__body
    {
        padding: 15px;
    }
    .main-card__body-text
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .main-card__body-date
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
}
.blue-text
{
    color: var(--main-blue);
}
.gray-text
{
    color: var(--main-gray);
}
.light-gray-text
{
    color: var(--main-gray-white);
}
.red-text
{
    color: var(--main-red);
}
.white-text
{
    color: #FFFFFF;
}

.blue-square
{
    height: 15px;
    width: 15px;
    flex-shrink: 0;
    margin: auto 0;
    background: var(--main-blue);
}
@media (max-width: 576px) {
    .blue-square
    {
        height: 10px;
        width: 10px;
    }
}
.radio__type
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
    column-gap: 7px;
}
.radio__type div
{
    /* display: flex; */
}
.radio__type-btn
{
    padding: 10px 18px;
    background: #FAFCFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 8px;
    cursor: pointer;
}
.radio__type-input:checked + .radio__type-btn
{
    background: #345DAB;
    color: #FFFFFF;
}
.radio__type-input__btn
{
    
    padding: 10px 18px;
    background: #FAFCFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 8px;
    text-decoration: none;
}
.radio__type-input__btn:hover
{
    background: #345DAB;
    color: #FFFFFF;
}
.radio__type-input__btn-active
{
    background: #345DAB;
    color: #FFFFFF;
}
.radio__type-input
{
    width: 100%;
    height: 100%;
    display: none;
}
@media (max-width:992px)
{
    .radio__type
    {
        row-gap: 25px;
    }
}
@media (max-width:576px)
{
    .radio__type-btn,
    .radio__type-input__btn
    {
        padding: 5px 18px;
        font-size: 12px;
        line-height: 200%;
        text-align: center;
        letter-spacing: -0.5px;
    }
    .radio__type
    {
        row-gap: 20px;
        margin-bottom: 20px;
    }
}
.pagination-group
{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.pagination-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 80px;
    margin-bottom: 200px;
    padding: 9px 0;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 5px;
    color: var(--main-black);
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    letter-spacing: -0.5px;
    text-decoration: none;
}
.pagination-btn > *
{
    flex-shrink: 0;
}
.pagination-btn-pressed
{
    color: #FFFFFF;
    background: var(--main-blue);
}
.pagination-btn > .icon-arrow-left > .path1::before,
.pagination-btn > .icon-arrow-right > .path1::before
{
    
    color: #FFFFFF;
}
.pagination-btn > .icon-arrow-left > .path2::before,
.pagination-btn > .icon-arrow-right > .path2::before
{
    color: var(--main-blue);
}

@media(max-width:576px)
{
    .pagination-group
    {
        column-gap: 7px;
    }
    .pagination-btn
    {
        width: 34px;
        height: 34px;
        margin-top: 60px;
        margin-bottom: 100px;
        padding: 6px 0;
        font-size: 14px;
    }
}
.swiper-prev,
.swiper-next
{
    position: absolute;
    font-size: 48px;
}

.download__hover
{
    text-decoration: none;
    color: inherit;
    font-size: 60px;
}
.download__hover:hover
{
    color: inherit;
}
@media(max-width:576px)
{
    .download__hover
    {
        font-size: 42px;
    }
}
/* Хедер */
header
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    position: relative;
    box-shadow: 0px 2px 2px rgba(157, 172, 207, 0.08);
    position: sticky;
    left: 0;
    top: 0;
    z-index: 500;
    padding-top: 20px;
}
.header__name
{
    font-weight: 500;
    font-size: 40px;
    line-height: 1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #345DAB;
    margin-bottom: 20px;
}
@media (min-width:1200px) {
    header .container.content
{
    height: 80px;
}
}

header .divider
{
    height: 1px;
    background-color: #A7A7A7;
}
header .container
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__logo
{
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
}
.header__menu
{
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    height: 100%;
    position: relative;
}
.header__lines,
.header__close
{
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.header__menu-item
{
    display: flex;
    align-items: center;
    column-gap: 1px;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 120%;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}
.header__menu-item img
{
    height: 100%;
    width: 24px;
}
.header__menu-item__inner
{
    max-height: 0;
    position: absolute;
    top: 99.9%;
    left: -50%;
    z-index: 50;
    overflow: hidden;
    transition: all 0.25s ease;
}
.header__menu-item__inner-show
{
    max-height: 3000px;
    transition: all 1s ease;
}
.item__inner-content
{
    display: flex;
    flex-direction: column;
    padding: 40px 60px 40px 40px;
    width: 100%;
    height: 100%;
    row-gap: 20px;
    list-style: none;
    background: #FFFFFF;
    box-shadow: 0px 12px 32px rgba(11, 31, 51, 0.18);
    font-size: 18px;
    line-height: 22px;
}
.header__menu-item__inner li
{
    display: flex;
    align-items: center;
    column-gap: 20px;
    text-align: left;
}

@media (max-width: 1700px) {
    .header__menu-item
    {
        font-size: 1rem;
    }
    .header__name
    {
        font-size: 35px;
    }
}
@media (max-width:1720px)
{
    .header__menu-item
    {
        font-size: 0.9rem;
    }
    .header__menu
    {
        column-gap: 1rem;
    }
}
@media (max-width:1400px)
{
    .header__menu-item
    {
        font-size: 0.7rem;
    }
    .header__name
    {
        font-size: 30px;
    }
    .header__menu
    {
        column-gap: 0.8rem;
    }
}
@media (max-width:1200px)
{
    .section
    {
        padding: 75px 0;
    }
    header
    {
        padding-top: 0;
        height: 100px;
        box-shadow: 0px 1px 4px #E3EBFC, 0px 6px 16px rgba(230, 235, 245, 0.8);
    }
    header .container
    {
        justify-content: flex-end;
    }
    .header__menu
    {
        display: none;
    }
    .header__lines
    {
        display: flex;
    }
    .header__logo
    {
        left: 20px;
    }
    .header__menu-item__inner
    {
        position: static; 
        left: none; 
        left: none; 
        z-index: none;
    }
    .item__inner-content
    {
        background: transparent;
        color: #FFFFFF;
        border-top: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
        margin: 20px 0;
        padding: 20px 0;
        box-shadow: none;
    }
    .header__name
    {
        display: none;
    }
    header .divider
    {
        display: none;
    }
}
@media (max-width: 991px) {
    .header__name
    {
        font-size: 25px;
    }
}
@media (max-width: 1200px) {
    .header__menu-item__inner li
    {
        justify-content: end;
        text-align: right;
    }
}
@media (max-width:991px)
{
    .section
    {
        padding: 50px 0;
    }
}
@media (max-width:576px)
{
    header
    {
        box-shadow: 0px 2px 2px rgba(157, 172, 207, 0.08);
    }
    
}

/* Мобильное меню */
#mobileMenu
{
    background-color: var(--main-blue);
    position: fixed;
    padding: 0;
    top: 91px;
    left: 0;
    width: 100%;
    max-height: 100%;
    min-height: fit-content;
    z-index: 400;
    overflow-x: scroll;
    transform: translateY(-100%);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.3s linear;
}
#mobileMenu.open
{
    padding-top: 20px;
    padding-bottom: 120px;
    transform: translateY(0);
    overflow:scroll;
    transition: all 0.5s linear;
}
.mobile-menu__menu
{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    text-align: right;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.mobile-menu__menu-item
{
    width: 100%;
    cursor: pointer;
}
.mobile-menu__menu-item img
{
    margin-left: 20px;
}
/* Слайдер на главной */
#main-slider
{
    position: relative;
    padding: 0;
    
}
.slider__main
{
    overflow: hidden;
    height: 500px;
}
.swiper-main__prev,
.swiper-main__next
{
    position: absolute;
    font-size: 48px;
}
.swiper-main__prev
{
    left: -40px;
}
.swiper-main__next
{
    right: -40px;
}
.main-slide
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: 80%;
}
@media (min-width:1200px) 
{
    
    .main-slide .container
    {
        min-height: 330px;
    }    
}
@media (min-width:991px) 
{
    .main-slide .container
    {
        min-height: 274px;
    }    
}
@media (min-width:768px) 
{
    
    .main-slide .container
    {
        min-height: 330px;
    }    
}

.main-slide__label
{
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 3rem;
    line-height: 117%;
    letter-spacing: -0.01em;
}
/* .slider__btn
{
    width: 56%;
} */
.main-slide__cities
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}
.main-slide__cities-list
{
    list-style: none;
}
.main-slide__cities-list li
{
    font-style: normal;
    font-weight: 900;
    font-size: 1.625rem;
    line-height: 131%;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--main-blue);
}
.swiper-main__pagination-container
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.swiper-main__navigation-container
{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
}

.swiper-main__pagination
{
    position: absolute;
    display: flex;
    justify-content: center;
}

@media (max-width:1200px)
{
    .swiper-main__prev
    {
        left: 0;
    }
    .swiper-main__next
    {
        right: 0;
    }
    .slider__main
    {
        height: 400px;
    }
}

@media (min-width:992px)
{
    .swiper-main__pagination
    {
        
        width: max-content;
        bottom: 50px;
        right: 110px;
        left: unset;
        padding: 10px 20px;
        font-weight: 500;
        font-size: 18px;
        line-height: 133%;
        text-align: center;
        letter-spacing: -0.5px;
        color: #FFFFFF;
        background: #345DAB;
        border-radius: 100px;
    }
}
@media (min-width:1400px)
{
    .swiper-main__pagination
    {
        right: 123px;
    }
}
@media (min-width:1600px)
{
    .swiper-main__pagination
    {
        right: 136px;
    }
    .slider__quote
    {
        font-size: 30px;
    }
    .slider__author
    {
        font-size: 18px;
    }
}
@media (max-width:992px)
{
    .swiper-main__pagination-container
    {
        right: 0;
        left: 0;
        
    }
    .swiper-main__pagination
    {
        bottom: 33px !important;
    }
}
@media (max-width:768px)
{
    .main-slide__label
    {
        font-weight: 600;
        font-size: 34px;
        line-height: 41px;
    }
    .swiper-main__pagination
    {
        bottom: 50px !important;
    }
    .swiper-main__prev,
    .swiper-main__next
    {
        font-size: 36px;
    }
    .slider__main
    {
        height: 325px;
    }
    .slider__quote
    {
        font-size: 20px;
    }
    .slider__author
    {
        font-size: 14px;
    }
}
@media (max-width:576px)
{
    .main-slide__label
    {
        font-size: 28px;
        line-height: 36px;
        text-align: center;
    }
    .slider__btn
    {
        width: 100%;
    }
    .swiper-main__pagination
    {
        bottom: 50px !important;
    }
}

@media (max-width:1600px)
{
    .main-slide__cities-list li
    {
        font-size: 1.5rem;
    }
}
@media (max-width:1400px)
{
    .main-slide__cities-list li
    {
        font-size: 1.25rem;
    }
}
/* @media (max-width:1200px)
{
    #main-slider
    {
        background: #B2BDE8;
    }
} */

/* Смпо */
#about
{
    padding: 94px 0 125px 0;
}
.about__image
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top; 
}
.about__pres
{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.about__pres-pos
{
    display: flex;
    margin: 0;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.25px;
    background: var(--main-blue);
    color: #FFFFFF;
    width: fit-content;
}
.about__list
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 51px 75px;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    row-gap: 20px;
}
.about__list-item
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    text-decoration: none;
    color: var(--main-black);
}
.about__list-item:hover
{
    color: var(--main-blue);
}
.about__text
{
    margin: 42px 0 50px 0;
}
@media (max-width:1400px)
{
    .about__list
    {
        padding: 60px;
    }
}
@media (max-width:768px)
{
    #about
    {
        padding: 100px 0 50px 0;
    }
    .about__image
    {
        object-fit: cover;
        max-height: 274px;
    }
    .about__pres
    {
        row-gap: 20px;
    }
    .about__pres-pos
    {
        padding: 0;
        background: transparent;
        color: var(--main-black);
    }
    .about__list
    {
        padding: 46.5px 0;
    }
    .about__text
    {
        margin: 15px 0 50px 0;
    }
    .about__text-wrap
    {
        padding: 0;
    }
}
@media (max-width:576px)
{
    #about
    {
        padding: 70px 0 50px 0;
    }
    .about__pres
    {
        margin-top: 30px;
    }
    .about__image
    {
        max-height: unset;
    }
    .about__list
    {
        padding: 38px 25px;
        margin: 30px 0;
        grid-template-columns: 1fr 1fr;
    }
    .about__list-item
    {
        justify-content: flex-start;
    }
    .about__list-item
    {
        font-size: 11px;
        line-height: 133%;
        letter-spacing: -0.15px;
    }
    .about__text
    {
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    .about__text-wrap
    {
        padding: 0;
    }
}   

/* Новости */
#news
{
    background: #F5F7FA;
}
.news-btn
{
    margin-top: 50px;
}
.swiper-gallery .swiper-slide
{
    height: auto;
}
/* .swiper-events__pagination,
.swiper-gallery__pagination,
.swiper-congrats__pagination
{
    display: flex;
    justify-content: center;
} */
#gallery
{
    padding-bottom: 100px;
}
@media (max-width: 576px) {
    #gallery
{
    padding-bottom:50px;
}
}
.swiper-members__pagination-wrap
{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.swiper-members__pagination
{
    position: absolute;
}
.swiper-pagination-bullet
{
    height: 13px;
    width: 13px;
    border: 2px solid var(--main-blue);
    background: transparent;
    opacity: 1;
}
.swiper-pagination-bullet-active
{
    background: var(--main-blue);
}
@media (max-width:991px)
{
    .news-btn
    {
        margin-top: 0;
    }
    .swiper-news__pagination,
    .swiper-events__pagination,
    .swiper-documents__pagination,
    .swiper-gallery__pagination,
    .swiper-congrats__pagination,
    .swiper-members__pagination-wrap
    {
        margin-top: 30px;
    }
    .swiper-news__pagination,
    .swiper-events__pagination,
    .swiper-gallery__pagination,
    .swiper-congrats__pagination,
    .swiper-members__pagination-wrap
    {
        margin-bottom: 20px;
        
    }
    
    
}  
/* Документы */
#documents
{
    padding: 100px 0 0 0;
}
.documents-card
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.documents-card_col
{
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}
.documents-card_col div:not([class])
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.documents-card__label
{
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #828282;
}

.documents-card__item
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.documents-card__item-content
{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.documents-card__item-link
{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    font-size: 60px;
}
.documents-card__item-link a
{
    border-radius: 50%;
}
.swiper-documents__pagination
{
    margin-top: 50px;
    margin-bottom: 30px;
}
.swiper-documents .swiper-slide
{
    height: auto;
    align-self: stretch;
}
@media (max-width: 576px)
{
    .documents-card__label
    {
        font-size: 22px;
        line-height: 127%;
        letter-spacing: -0.5px;
    }
    .documents-card__item-label
    {
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
    .documents-card__item-text
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .documents-card__item-date
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .documents-card__item-content
    {
        flex-direction: unset;
        row-gap: 18px;
    }
    .documents-card__item-link
    {
        font-size:42px;
    }
}
/* Мероприятия */
#events
{
    background: #F5F7FA;
}
.swiper-events__pagination
{
    margin-bottom: 50px;
}
.events-btn
{
    margin-top: 50px;
}
@media (max-width: 576px)
{
    .events-btn
    {
        margin-top: 30px;
    }
}

/* Галлерея */
#gallery
{
    background-color: #FFFFFF;
}
.main-gallery__video,
.main-gallery__video-btn,
.main-gallery__photo,
.main-gallery__photo-btn
{
    display: none;
    opacity: 0;
}
.main-gallery__video.open,
.main-gallery__video-btn.open,
.main-gallery__photo.open,
.main-gallery__photo-btn.open
{
    display: block;
    opacity: 1;
    transition: all 0.2s;
}
/* Участники ассоциации */
#members
{
    position: relative;
    background-color: #FFFFFF;
}
.members__label
{
    margin-bottom: 50px;
}
.members__underlabel
{
    margin-bottom: 50px;
}
.swiper-members__wrap
{
    position: relative;
    width: 100%;
}
.swiper-members__card
{
    /* max-width: 229px; */
}
.swiper-members__card-img
{
    margin-bottom: 10px;
}
.swiper-members__card-img img
{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.swiper-members__prev,
.swiper-members__next
{
    top: 40%;
    z-index: 200;
}
.swiper-members__prev
{
    left: 0;
}
.swiper-members__next
{
    right: 0;
}
.swiper-members .swiper-members__scroll
{
    height: 2px;
    bottom: 5px;
}
.swiper-members .swiper-members__scroll .swiper-scrollbar-drag
{
    background: rgba(52, 93, 171,1);
    top: -3px;
    height: 8px;
}
@media (max-width:567px)
{
    .swiper-members__card-text
    {
        font-size: 14px;
        line-height:114%;
        letter-spacing: -0.25px;
    }
}

/* Партнеры */
#partners
{
    background: #FFFFFF;
}
.partners__img img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* футер */
footer
{
    background: var(--main-blue);
    padding-top: 84px;
    padding-bottom: 15px;
}
.footer__row
{
    margin-bottom: 30px;    
    display: grid;
    column-gap: 46px;
    grid-template-columns: repeat(9, 1fr);
}

.footer__item-list
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
}
.footer__item-label
{
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFFFFF;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer__item-list
{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}
@media (max-width: 1800px)
{
    .footer__item-label
    {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 10px;
    }
}
@media (max-width: 1400px)
{
    .footer__row
    {
        row-gap: 40px;
        column-gap: 23px;
    }
}
@media (max-width: 1200px)
{
    footer
    {
        padding-top: 50px;
    }
    .footer__row
    {
        grid-template-columns: repeat(5, 1fr);
        row-gap: 40px;
        column-gap: 23px;
    }
    .footer__item-list
    {
        font-size: 0.875rem;
        font-weight: 400;
    }
    
}
@media (max-width: 768px)
{
    .footer__row
    {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px;
    }
}
@media (max-width: 576px)
{
    footer
    {
        padding-top: 41px;
    }
    .footer__row
    {
        row-gap: 30px;
        column-gap: 11px;
    }
    .footer__item-label
    {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .footer__item-list
    {
        row-gap: 7px;
    }
    .footer__item-list
    {
        font-size: 0.75rem;
    }
}

/* Подфуторник */

#underFooter
{
    height: 40px;
    background: var(--main-red);
    display: flex;
    align-items: center;
}
.under-footer
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
}
#underFooter .small-text
{
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    letter-spacing: -0.25px;
}
#aboutPage
{
    padding-bottom: 250px;
}
.breadcrumps__inner
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-top: 20px;
}
.breadcrumps__inner-text
{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.breadcrumps__inner-text-active
{
    font-weight: 700;
    color: var(--main-blue);
}
.aboutpage__bottomtext
{
    margin-bottom: 50px;
}
@media (max-width:576px)
{
    .breadcrumps__inner
    {
        column-gap: 12px;
    }
    .breadcrumps__inner-text
    {
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
    }
    .breadcrumps__inner-text-active
    {
        font-weight: 700;
        color: var(--main-blue);
    }
}

/* Левая часть Aboutpage */

.aboutpage__list
{
    display: grid;
    padding: 63px 41.5px;
    margin-bottom: 50px;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    background: #FFFFFF;
    border-radius: 15px;
    row-gap: 20px;
}
.aboutpage__list-item
{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}
.aboutpage__list-item__text
{
    color: var(--main-black);
    text-decoration: none;
    max-width: 156px;
}
.aboutpage__list-item__text:hover
{
    color: var(--main-blue);
}
.aboutpage__pres
{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.aboutpage__image
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; 
}
.aboutpage__pres-text
{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
@media (max-width: 768px)
{
    .aboutpage__list
    {
        padding: 46.5px 2px;
        grid-template-columns: repeat(3, 1fr);
    }
    .aboutpage__pres
    {
        flex-direction: row;
        margin-bottom: 54px;
    }
    .aboutpage__pres-text
    {
        row-gap: 20px;
    }
    .aboutpage__image
    {
        object-fit: cover;
        max-height: 274px; 
    }
    
}
@media (max-width: 576px)
{
    .aboutpage__list
    {
        padding: 41px 25px;
        grid-template-columns: repeat(2, 1fr);
    }
    .aboutpage__image
    {
        object-fit: cover;
        max-height: 228px; 
    }
    .aboutpage__pres
    {
        margin-bottom: 20px;
    }
    .aboutpage__list-item__text
    {
        font-size: 11px;
        line-height: 133%;
        letter-spacing: -0.15px;
    }
    .aboutpage__pres-text .h4
    {
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
    
}
/* правая часть Aboutpage */
.aboutpage__label
{
    margin-bottom: 22px;
}
/* Руководство - главная */

.leadership__main
{
    display: flex;
    justify-content: center;
    padding: 75px 0;
    margin-bottom: 200px;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    background: #FFFFFF;
    border-radius: 15px;
}
.leadership__main img
{
    width: 100%;
    height: 100%;
}

/* Руководство - карточки */
#leadershipBody
{
    padding: 0 0 160px 0;
}
.leadership__body-row
{
    row-gap: 79px;
}
.leadership__card-img
{
    width: 100%;
    position: relative;
}
.leadership__card-img::before {
    display: block;
    padding-top: 125%;
    content: "";
}
.leadership__card-img img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.leadership__card-name
{
    margin-bottom: 10px;
    margin-top: 27px;
}
.leadership__card-desc
{
    margin-top: 26px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 20px;
}   
.leadership__card-desc div
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@media (max-width:768px) {
    .about__pres .h4
    {
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
}

@media (max-width:576px) {
    .leadership__main
    {
        margin-bottom: 40px;
    }
}
/* Задачи */

.tasks__wrap
{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.tasks__item
{
    padding: 30px 40px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
}
@media(max-width:576px)
{
    .tasks__item
    {
        font-size: 14px;
        line-height: 16px;
    }
}


/* Членство */
#membership
{
    padding: 0 0 200px 0;
}
.membership__label
{
    margin-bottom: 50px;
}
.membership__item
{
    padding: 70px 130px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 15px;
    margin-bottom: 50px;
}
.membership__item-label
{
    margin-bottom: 37px;
}
.membership__item-text
{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: -0.5px;
    color: #5F5F5F;
}
@media (max-width:768px)
{
    .membership__item
    {
        padding: 50px;
    }
}
@media (max-width:576px)
{
    .membership__label
    {
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
    .membership__item-label
    {
        font-size: 18px;
        line-height: 150%;
    }
    .membership__item-text
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .membership__item
    {
        padding: 20px;
    }
}

/* Устав */
.rules__card
{
    height: 100%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 15px;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.rules__text
{
    margin: 100px 0;
}
.rules__text-label
{
    margin-bottom: 40px;
}
#rulesText
{
    margin-bottom: 70px;
}

@media(max-width:992px)
{
    .rules__card
    {
        padding: 60px 50px;
        margin-bottom: 30px;
    }
}
@media(max-width:992px) and (max-width:768px)
{
    .rules__card .h5
    {
        font-size: 22px;
        line-height: 127%;
        letter-spacing: -0.5px;
    }
}
@media(max-width:576px)
{   
    .rules__card
    {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}
/* Отчеты */
#report
{
    margin-top: 100px;
    margin-bottom: 200px;
}
.report-uptext
{
    margin: 50px 0;
}
.report__card-label
{
    text-align: center;
}
.report-radio
{
    margin: 0;
}
.report__btn
{
    margin-bottom: 100px;
}
.report__card
{
    padding-top: 100px;
    padding-bottom: 85px;
    position: relative;
    background: #FFFFFF;
    border-radius: 15px;
}
.report__card::after
{
    content: '';
    position: absolute;
    bottom: 85px;
    left: 0;
    height: 395px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
@media (max-width:768px) 
{
    #report
    {
        margin-top: 30px;
        margin-bottom: 0px;
    }
    .report__card
    {
        padding-bottom: 0;
    }
    .report__card::after
    {
        bottom: 0;
    }
    .report__card-label
    {
        text-align: left;
    }
}
@media (max-width:576px) 
{
    #report
    {
        margin-top: 50px;
    }
    .report__card
    {
        padding-top: 50px;
    }
    .report-uptext
    {
        margin: 30px 0;
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .report__btn
    {
        margin-bottom: 70px;
    }
    .report__card-label
    {
        margin-bottom: 30px;
    }
}

/* Ассоциации */

#associations
{
    margin-bottom: 180px;
}

.associations__wrap
{
    row-gap: 20px;
}
.associations__regions
{
    row-gap: 40px;
}
.associations__regions-label
{
    margin-top: 100px;
    margin-bottom: 50px;
}
.associations__card
{
    text-decoration: none;
    color: inherit;
}
.associations__card:hover
{
    color: var(--main-dark-blue);
}
@media (max-width:768px) {
    .associations__regions
    {
        row-gap: 30px;
    }
    .associations__regions-card .medium-text
    {
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
}
@media (max-width:576px) {
    .associations__regions
    {
        row-gap: 20px;
    }
    .associations__regions-label
    {
        margin-top: 70px;
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 127%;
        letter-spacing: -0.5px;
    }
    .associations__regions-card .medium-text
    {
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
}

/* Детальная участника */
#detailMember
{
    padding-bottom: 200px;
}
.detail-member__main
{
    margin-top: 50px;
    margin-bottom: 150px;
}
.detail-member__text
{
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    margin-bottom: 100px;
}
.detail-member__text .medium-text
{
    margin-bottom: 100px;
}
.detail-member__card-wrap
{
    display: flex;
    row-gap: 50px;
}
.detail-member__caption img
{
    padding:20px;
}

@media (max-width:768px) {
    .detail-member__text
    {
        margin-bottom: 50px;
    }
    .detail-member__text .large-text,
    .detail-member__text .medium-text
    {
        font-weight: 500;
        font-size: 26px;
        line-height: 131%;
        letter-spacing: -0.5px;
        color: var(--main-black);
    }
    .detail-member__card-wrap
    {
        display: flex;
        row-gap: 20px;
    }
    .detail-member__caption .medium-text
    {
        margin-bottom: 20px;
    }
    .detail-member__caption .medium-text:last-child
    {
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    
    
    
}
@media (max-width:576px) {
    .detail-member__img
    {
        margin-bottom: 30px;
    }
    .detail-member__caption .medium-text
    {
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    .detail-member__caption .medium-text:last-child
    {
        
        font-size: 14px;
        line-height: 114%;
    }
    .detail-member__caption img
    {
        padding: 0;
        width: 100% !important;
        margin-bottom: 20px;
    }
}

/* Последние новости */

/*  */

/* Заявление */
#applicationPage
{
    padding-bottom: 200px;
}
.application__btn
{
    margin-bottom: 50px;
}
.application__card
{
    background: #FFFFFF;
    border-radius: 15px;
    padding-top: 100px;
    padding-bottom: 150px;
}
.application__label
{
    margin-top: 18px;
}
.application__blank-text
{
    margin: 0 129px 50px 0;
}
.application__uptext
{
    margin-right: 129px;
}
.application__bottomlabel
{
    margin: 50px 0;
}
.application__paragraph
{
    padding: 40px 0 40px 50px;
    background: var(--gray-light);
    margin-bottom: 50px;
}
.application__items
{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin-bottom: 42px;
}
.application__item
{
    display: grid;
    grid-template-columns: 3fr 7fr;
}
.document__line  
{
    border-bottom: 1px solid #000000;
}
.application__bottom
{
    display: grid;
    grid-template-columns: 3fr 3fr 4fr;
    column-gap: 30px;
    margin: 160px 0 100px 0;
}
.application__bottom-item p
{
    margin-top: 23px;
}
.application__warning
{
    margin-top: 45px;
    margin-bottom: 30px;
}
@media(min-width:1600px)
{
    .application__blank-text
    {
        margin: 0 138px 50px 0;
    }
    .application__uptext
    {
        margin-right: 138px;
    }
}
@media( max-width:768px)
{
    #applicationPage
    {
        padding-bottom: 100px;
    }
    .application__card
    {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .application__btn
    {
        
        margin-bottom: 100px;
        font-weight: 400;
        font-size: 18px;
        line-height: 133%;
        text-align: center;
        letter-spacing: -0.5px;
        border-radius: 10px;
    }
    .application__item
    {
        grid-template-columns: 4fr 2fr;
    }
    .application__label
    {
        margin: 70px 0 30px 0
    }
    .application__bottomlabel
    {
        margin: 50px 0 45px;
    }
    .application__paragraph
    {
        padding: 40px 20px 40px;
    }
    .document__line-single
    {
        grid-template-columns: 2fr 2fr;
    }
    .application__bottom
    {
        column-gap: 12px;
        margin: 100px 0 68px 0;
    }
}
@media( max-width:576px)
{
    #applicationPage
    {
        padding-bottom: 70px;
    }
    .application__btn
    {
        margin-bottom: 70px;
        font-size: 12px;
        line-height: 200%;
    }
    .application__label
    {
        font-weight: 900;
        font-size: 26px;
        line-height: 108%;
        text-align: center;
        letter-spacing: -0.5px;
    }
    .application__label
    {
        margin: 50px 0 30px 0
    }
    .application__bottomlabel
    {
        margin: 50px 0 30px;
    }
    .application__caption,
    .application__blank-text
    {
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        letter-spacing: -0.25px;
    }
    .application__blank-text
    {
        margin-bottom: 38px;
    }
    .application__uptext
    {
        font-weight: 400;
        font-size: 16px;
        line-height: 145%;
        text-align: center;
        letter-spacing: -0.25px;
    }
    .application__paragraph
    {
        padding: 30px 20px 30px;
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        letter-spacing: -0.25px;
        
    }
    .application__item p
    {
        font-weight: 700;
        font-size: 14px;
        line-height: 171%;
        letter-spacing: -0.25px;
    }
    .application__bottom
    {
        column-gap: 7px;
        margin: 50px 0 30px 0;
    }
    .application__bottom-text
    {
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        letter-spacing: -0.25px;
    }
    .application__warning
    {
        font-weight: 700;
        font-size: 22px;
        line-height: 127%;
        letter-spacing: -0.5px;
    }
    .application__warning-text
    {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
    }
}

/* Договор */
.contract__card
{
    background: #FFFFFF;
    border-radius: 15px;
    position: relative;
    padding-top: 100px;
}
.contract__card::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: 100px;
    height: 655px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.contract__number
{
    margin-bottom: 56px;
}
.contract__label
{
    margin-bottom: 36px;
}
.contract__paragraph
{
    margin-bottom: 50px;
}
.contract__paragraph-text
{
    margin-bottom: 100px;
}
.contract__caption
{
    margin: 100px 0;
}
.contract__city,
.contract__data
{
    margin-top: 30px;
}
.contract__btn
{
    margin-bottom: 100px;
}
@media( max-width:768px)
{
    .contract__label,
    .contract__number
    {
        margin-bottom: 50px;
    }
    .contract__city,
    .contract__data {
        margin-top: 70px;
    }
    .contract__btn
    {
        border-radius: 10px;
    }
}
@media( max-width:576px)
{
    .contract__card
    {
        padding-top: 50px;
    }
    .contract__city,
    .contract__data
    {
        margin-top: 50px;
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        letter-spacing: -0.25px;
    }
    .contract__data
    {
        padding: 0;
    }
    .contract__label
    {
        margin-bottom: 30px;
        font-size: 26px;
        line-height: 108%;
        letter-spacing: -0.5px;
    }
    .contract__number
    {
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        letter-spacing: -0.25px
    }
    .contract__bottomtext
    {
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        letter-spacing: -0.25px;
    }
    .contract__caption
    {
        margin-top: 30px;
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    .contract__paragraph
    {
        font-weight: 700;
        font-size: 16px;
        line-height: 112%;
        text-align: center;
        letter-spacing: -0.25px;
    }
    .contract__paragraph-text
    {
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    .contract__btn
    {
        margin-bottom: 70px;
    }
}
/* Планы */
.plans__card
{
    margin: 100px 0;
}
.plans__img
{
    position: relative;
}
@media(min-width: 992px)
{
    
    .plans__img::after
    {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        height: 617px;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    }
}

.plans-radio
{
    margin-bottom: 50px;
}
.plans__img img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
    
}

@media( max-width:576px)
{
    .plans-radio
    {
        margin-bottom: 30px;
    }
    .plans__card
    {
        margin: 50px 0 70px;
    }
    .plans__img
    {
        overflow-x: scroll;
    }
    .plans__img img
    {
        width: 150%;
        height: 100%;
        object-fit: contain;
        object-position: left;
    }
    
}


/* Презентации */
.presentation__row
{
    margin-top: 50px;
    display: flex;
    row-gap: 30px;
}
.presentation__img
{
    position: relative;
    width: 100%;
}
.presentation__img::before
{
    content: "";
    display: block;
    padding-top: 80%;
}
.presentation__img img
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
@media( max-width:768px)
{
    .presentation__row
    {
        margin-top: 0;
    }
}

/* профессиональные стандарты */
.prof-standart__row
{
    padding-bottom: 200px;
}
.prof-standart__card-wrap
{
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    row-gap: 20px;
    
}
.prof-standart__card
{
    margin-top: 50px;
    padding: 47px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--main-blue);
    background: #FFFFFF;
    border-radius: 15px;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -0.5px;
    
}
.prof-standart__card:hover
{
    
    color: var(--main-blue);
}
.prof-standart__label,
.prof-standart__warning
{
    margin-bottom: 50px;
}
.prof-standart__content
{
    margin-bottom: 72px;
}
@media(max-width:768px)
{
    .prof-standart__row
    {
        padding-bottom: 100px;
    }
    .prof-standart__card-wrap
    {
        column-gap: 20px;
    }
    .prof-standart__card
    {
        padding: 45px 0;
        font-weight: 700;
        font-size: 26px;
        line-height: 32px;
        letter-spacing: -0.5px;
    }
    .prof-standart__label,
    .prof-standart__warning
    {
        margin-bottom: 30px;
    }
    .prof-standart__content
    {
        margin-bottom: 64px;
    }
}
@media(max-width:576px)
{
    .prof-standart__card-wrap
    {
        margin-bottom: 0;
        margin-bottom: 50px;
        grid-template-columns: repeat(1, 1fr);
    }
    .prof-standart__row
    {
        padding-bottom: 70px;
    }
    .prof-standart__card
    {
        margin-bottom: 0;
        margin-top: 0;
    }
    .prof-standart__label
    {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 133%;
        letter-spacing: -0.25px;
    }
    .prof-standart__content
    {
        margin-bottom: 30px;
    }
    .prof-standart__content,
    .prof-standart__warning-content
    {
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        letter-spacing: -0.25px;
    }
    .prof-standart__warning
    {
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 22px;
        line-height: 127%;
        letter-spacing: -0.5px
    }
    
    
}

/* Приказы */

.orders-page__wrap
{
    padding: 120px 130px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 15px;
}
.orders-page__card
{
    display: grid;
    grid-template-columns: 9fr 1fr;
    padding: 21px 0;
    border-bottom: 1px solid #B9B9B9;
}
.orders-page__card-content
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
}
.orders-page__download
{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 60px;
}
@media (max-width:1200px) 
{
    .orders-page__wrap
    {
        padding: 80px 70px;
        background: #FFFFFF;
        box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
        border-radius: 15px;
    }
}
@media (max-width:768px) 
{
    .orders-page__card
    {
        grid-template-columns: 10fr 1fr;
    }
    .orders-page__wrap
    {
        padding: 49px 32px 20px 32px;
    }
}
@media (max-width:576px)
{
    
    .orders-page__card
    {
        grid-template-columns: 10fr 1fr;
        padding: 12px 0;
        border-bottom: 0;
    }
    .orders-page__card-content
    {
        row-gap: 18px;
    }
    .orders-page__download
    {
        font-size: 42px;
    }
    .orders-page__wrap
    {
        padding: 30px 20px 20px 20px;
    }
    .orders-page__card-content .h4
    {
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.25px;
    }
    .orders-page__card-content .medium-text
    {
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.25px;
    }
}




/* Проекты */

.projects__card
{
    
    padding: 126px 0;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px #E3EBFC, 0px 24px 48px rgba(230, 235, 245, 0.4);
    border-radius: 15px;
    margin-bottom: 50px;
}
.projects__card-row
{
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
.row .projects__card:last-child
{
    margin-bottom: 100px;
}
.projects__card-label
{
    font-weight: 900;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 133%;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.projects__card-item
{
    display: grid;
    grid-template-columns: 9fr 1fr;
}
.projects__card-item__text
{
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 127%;
    letter-spacing: -0.5px;
}
@media (max-width: 1200px)
{
    .projects__card
    {
        padding: 50px 20px;
    }
}
@media (max-width: 768px)
{
    
    .projects__card
    {
        margin-bottom: 0;
    }
    
    .projects__card-item
    {
        grid-template-columns: 1fr 1fr;
        column-gap: 23px;
    }
    .row .projects__card:first-child
    {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .row .projects__card:last-child
    {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    
}

@media (max-width: 576px)
{
    .projects__card
    {
        padding: 57px 20px;
    }
    .projects__card-item
    {
        row-gap: 26px;
        grid-template-columns: 1fr;
    }
    .projects__card-label
    {
        margin-bottom: 25px;
        font-weight: 700;
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -0.5px;
        text-transform: uppercase;
    }
    .projects__card-item__text
    {
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.25px;
    }
}
/* Нормативные документы */
.norm-docs__item
{
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
}
@media (max-width: 768px)
{
    .norm-docs__item
    {
        font-size: 16px;
        line-height: 19px;
    }
}
@media (max-width: 576px)
{
    .norm-docs__item
    {
        font-size: 14px;
        line-height: 17px;
    }
}

/* Утвержденные стандарты */
.utv-standart__item-wrap
{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
}
.utv-standart__item
{
    padding: 21px 0;
    border-bottom: 1px solid #B9B9B9;
}
.utv-standart__item-date
{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #A7A7A7;
}
@media (max-width: 768px)
{
    .utv-standart__item
    {
        padding: 25px 0;
        border-bottom: 0;
    }
    .utv-standart__item-date
    {
        display: none;
    }
}
@media (max-width: 576px)
{
    .utv-standart__item
    {
        row-gap: 50px;
    }
}

/* Мероприятия */

.events__filter-wrap
{
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
@media (max-width: 768px)
{
    .events__filter-wrap
    {
        row-gap: 30px;
    }
}
@media (max-width: 576px)
{
    .utv-standart__item
    {
        row-gap: 20px;
    }
}

/* Важное */

.important__card
{
    width: 100%;
    height: 100%;
}
.important__card-img img
{
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width:992px) 
{
    #importantPage
    {
        padding-bottom: 180px;
    }
    .important__card-img img
    {
        height: 450px;
        object-fit: cover;
    }
}
@media (max-width:768px) 
{
    .important__card-img:first-child 
    {
        margin-bottom: 20px;
    }
}
@media (max-width:576px)
{
    #importantPage
    {
        padding-bottom: 80px;
    }
    .important__card-img img
    {
        height: 100%;
        object-fit: contain;
    }
    
}
/* FormsPage */
#formsPage
{
    padding-bottom: 336px;
}

.forms-btn
{
    margin-top: 118px;
}
@media (max-width: 992px)
{
    .forms__label
    {
        font-size: 30px;
    }
    .forms-btn
    {
        padding: 14px 40px;
    }
    .forms__button-wrap
    {
        margin-top: 0px;
    }
    #formsPage
    {
        padding-bottom: 100px;
    }
}
@media (max-width: 768px)
{
    .forms__label
    {
        font-size: 25px;
    }
    .forms-btn
    {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        letter-spacing: -0.5px;
        padding: 14px 24px;
    }
    .forms__label
    {
        font-size: 25px;
    }
}

@media (max-width: 576px){
    
    .forms-btn
    {
        font-size: 12px;
        padding: 14px 10px;
    }
    .forms__label
    {
        font-size: 24px;
    }
    
}

/* Важное - Детальная */
.detail_important__head
{
    margin-bottom: 100px;
}

.detail_important__main-img img
{
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail_important__body
{
    margin-bottom: 100px;
}
.detail_important__wrap
{
    background-color: #FFFFFF;
    padding: 70px 114px 0px 64px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 1px 4px #E3EBFC) drop-shadow(0px 24px 48px rgba(230, 235, 245, 0.4));
}
.swiper-important__wrap
{
    position: relative;
    margin-bottom: 100px;
}
.detail__important-text-black
{
    margin-bottom: 30px;
}

.detail__important-text-blue
{
    margin-bottom: 30px;
}

.detail__important-text
{
    margin-bottom: 10px;
}

.detail-important__label 
{
    margin-bottom: 50px;
}

.swiper-important__card
{
    background-color: #FFFFFF;
    height: 100%;
    width: 100%;
    border-radius: 15px;
}
.swiper-important__image
{
    position: relative;
    width: 100%;
}
.swiper-important__image::before
{
    display: block;
    content: '';
    padding-top: 60%;
    
}
.swiper-important__image img
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
    
}

.swiper-important__card-text
{
    padding: 20px;
    
}
.swiper-important__span
{
    display: flex;
    justify-content: space-between;
}
.swiper-important__prev,
.swiper-important__next
{
    top: 40%;
}
.swiper-important__prev
{
    left: 0;
}
.swiper-important__next
{
    right: 0;
}
.swiper-important .swiper-important__scroll
{
    height: 2px;
    bottom: 5px;
}
.swiper-important .swiper-important__scroll .swiper-scrollbar-drag
{
    background: rgba(52, 93, 171,1);
    top: -3px;
    height: 8px;
}

@media (max-width:1200px) 
{
    .detail_important__body
    {
        margin-top: 0px;
    }
    .detail_important__main-img
    {
        margin-bottom: 30px;
    }
}
@media (max-width:768px) {
    .detail_important__wrap
    {
        padding: 58px 52px 58px 52px; 
    }
}
@media (max-width:567px) 
{
    .detail__important-text,
    .detail__important-text-black,
    .detail__important-text-blue
    {
        font-weight: 500;
    }
    .detail-important__label{
        font-size: 24px;
    }
    
}
@media (max-width: 320px)
{
    .detail_important__wrap 
    {
        padding: 9px 41px 0px 41px;
    }
    .detail__important-text-blue,.detail__important-text{
        font-size: 14px;
    }
}

/* Фотогалерея - детальная */
.photo-detail__top
{
    display: grid;
    grid-template-columns: 7fr 3fr;
    margin-bottom: 50px;
}
.photo-detail__btn
{
    width: fit-content;
    height: fit-content;
    padding: 18px 60px;
    margin-left: auto;
}
.photo-detail__img
{
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.photo-detail__img::before
{
    display: block;
    content: '';
    padding-top: 60%;
}
.photo-detail__img img
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.photo-detail__video
{
    width: 100%;
    position: relative;
    height: 500px;
}
.photo-detail__video::before
{
    display: block;
    content: '';
    padding-top: 80%;
}
.photo-detail__video iframe
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.photo-detail__date
{
    margin-top: 25px;
    margin-bottom: 100px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.5px;
    text-align: left;
}


@media (max-width: 992px)
{
    .photo-detail__top
    {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 44px;
        margin-bottom: 100px;
    }
    .photo-detail__img
    {
        margin-bottom: 30px;
    }
    .photo-detail__date
    {
        margin-bottom: 50px;
    }
    .photo-detail__btn
    {
        padding: 14px 67.5px;
    }
    
}
@media (max-width: 576px)
{
    
    .photo-detail__top
    {
        row-gap: 20px;
        margin-bottom: 50px
    }
    .photo-detail__top-text
    {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.25px;
    }
    .photo-detail__img
    {
        margin-bottom: 20px;
    }
    .photo-detail__date
    {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.2px;
        margin-bottom: 20px;
    }
    .photo-detail__text
    {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.25px;
    }
    .photo-detail__btn
    {
        padding: 14px 55.5px;
    }
}

/* Контакты */
.contacts__uptext
{
    margin-bottom: 50px !important;
}
.contacts__cards
{
    margin-top: 50px;
    margin-bottom: 80px;
}
.contacts-card
{
    padding: 48px 120px 43px 129px;
    display: flex;
    flex-direction: column;
    row-gap: 21px;
    background: #FFFFFF;
    border-radius: 15px;
}
.contacts-card__label
{
    margin-bottom: 9px;
}
.contacts-card__text
{
    display: flex;
    column-gap: 12px;
}
.contacts-card__text img
{
    flex-shrink: 0;
}
.contacts__mail
{
    display: flex;
    column-gap: 26px;
    flex-wrap: wrap;
}
.contacts__mail-item
{
    display: flex;
    column-gap: 6px;
}
.contacts__map
{
    margin-top: 30px;
    height: 674px;
}
.contacts__map iframe
{
    height: 100%;
    width: 100%;
}
@media (max-width: 992px)
{
    .contacts__cards
    {
        margin-top: 50px;
        margin-bottom: 100px;
    }
    .contacts-card
    {
        padding: 48px 41px;
        display: flex;
        flex-direction: column;
        row-gap: 21px;
        background: #FFFFFF;
        border-radius: 15px;
    }
    .contacts-card__label
    {
        font-weight: 500;
        font-size: 22px;
        line-height: 27px;
    }
    .contacts-card__text
    {
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
    }
    .contacts__mail-item
    {
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .contacts__map
    {
        margin-top: -15px;
        height: 700px;
    }
}
.contacts-cards__label,
.contacts__mail-label
{
    margin-bottom: 0;
}
@media (max-width: 576px)
{
    .contacts__cards
    {
        margin-top: 35px;
        margin-bottom: 50px;
    }
    .contacts__uptext
    {
        margin-bottom: 30px !important;
    }
    .contacts-cards__label,
    .contacts__mail-label
    {
        font-weight: 900;
        font-size: 26px;
        line-height: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 15px;
    }
    .contacts-card
    {
        padding: 23px 46.5px;
        display: flex;
        flex-direction: column;
        row-gap: 21px;
        background: #FFFFFF;
        border-radius: 15px;
    }
    .contacts-card__label
    {
        font-size: 18px;
        line-height: 150%;
    }
    .contacts-card__text
    {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.25px;
    }
    .contacts__mail
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .contacts__mail-item
    {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.25px;
        word-break: break-word;
    }
    .contacts__map
    {
        margin-top: -35px;
        height: 562px;
    }
}

/* Альюом события */
.album__image
{
    position: relative;
    width: 100%;
}
.album__image::before
{
    display: block;
    content: '';
    padding-top: 80%;
}
.album__image a img
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Модальное окно видео */
#video__modal
{
    height: 80vh;
    width: 80vw;
    display: none;
}
.video__modal-content
{
    height: 100%;
    width: 100%;
}
.video__modal-content iframe
{
    height: 100% !important;
    width: 100% !important;
}

/* Детальная новостей */
.news-detail__text
{
    font-size: 24px;
    margin-bottom: 30px;
}
.news-detail__img
{
    position: relative;
	/*height: 100%;*/
}
.news-detail__img::before {
    display: block;
    padding-top: 50%; /* 70% */
    content: "";
}
.news-detail__img img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
    padding-right: 20px;
    padding-bottom: 20px;
}
.news-detail__btn
{
    margin-top: 50px;
}
.news-detail__date
{
    margin-bottom: 20px;
}
@media (max-width:576px)
{
    .news-detail__date
    {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.25px;
    }
    .new-detail__text
    {
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -0.25px;
    }
    
}
/* Календарь */
.fc-toolbar-title
{
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
    color: #345DAB;
}
.fc th 
{
    text-align: left;
}
.fc .fc-col-header-cell-cushion 
{
    padding: 12px;
}
.fc-col-header-cell-cushion 
{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--main-black);
}
.fc-col-header-cell-cushion:hover
{
    color: var(--main-black);
}
.fc .fc-col-header-cell-cushion 
{
    text-decoration: none;
}
.fc-col-header-cell.fc-day.fc-day-sat,
.fc-col-header-cell.fc-day.fc-day-sun
{
    background: var(--main-red);
    border: 1px solid var(--main-red);
}
.fc .fc-daygrid-day-top 
{
    flex-direction: row;
}
.fc-daygrid-day-number
{
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-decoration: none;
    color: var(--main-gray);
}
@media (max-width: 768px) {
    .fc-daygrid-day-number
    {
        font-size: 14px;
    }
    .fc .fc-toolbar.fc-header-toolbar
    {
        display: grid;
    }
    .tooltipevent
    {
        
        width: 20ch !important;
    }
}
.fc-daygrid-day-number:hover
{
    color: var(--main-gray);
}
.fc .fc-daygrid-day-number
{
    padding: 12px;
    z-index: 1;
}
.fc-daygrid-day.fc-day.fc-day-sat > .fc-scrollgrid-sync-inner > .fc-daygrid-day-top > .fc-daygrid-day-number,
.fc-daygrid-day.fc-day.fc-day-sun > .fc-scrollgrid-sync-inner > .fc-daygrid-day-top > .fc-daygrid-day-number
{
    color: var(--main-red);
}
.fc-col-header-cell.fc-day-sat > .fc-scrollgrid-sync-inner > .fc-col-header-cell-cushion,
.fc-col-header-cell.fc-day-sun > .fc-scrollgrid-sync-inner > .fc-col-header-cell-cushion
{
    color: #FFFFFF;
}
.line-divider
{
    display: flex;
    align-items: flex-end;
    margin-left: 20px;
}
.line-divider span
{
    display: block;
    height: 4px;
    background-color: var(--main-blue);
    width: 100%;
}
.main-label
{
    display: flex;
    align-items: flex-end;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}
.head-label__row
{
    margin-bottom: 50px;
}
@media (max-width: 1200px)
{
    .main-label
    {
        font-size: 32px;
    }
}
@media (max-width: 768px)
{
    .head-label__row
    {
        margin-bottom: 30px;
    }
    .main-label
    {
        font-size: 24px;
    }
    .documents-card_col
    {
        margin-bottom: 50px;
    }
}
@media (max-width: 576px)
{
    .head-label__row
    {
        margin-bottom: 30px;
    }
    .main-label
    {
        font-size: 20px;
    }
}
.tooltipevent
{
    background-color: #FFFFFF;
    filter: drop-shadow(0px 1px 4px #E3EBFC) drop-shadow(0px 24px 48px rgba(230, 235, 245, 0.4));
    border-radius: 15px;
    padding: 20px;
    overflow-wrap: break-word;
}
.tooltipevent__date{
    font-size: 1.4rem;
}
.tooltipevent__title
{
    font-size: 1.4rem;
    color: #990000;
}
.carousel__button.is-close
{
    cursor: pointer;
}

.link
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fc .fc-daygrid-day-bg .fc-bg-event
{
    cursor: pointer;
}
.fc .fc-bg-event
{
    opacity: 1;
}
.fc .fc-bg-event .fc-event-title
{
    font-size: 0;
}
.fc .fc-bg-event
{
    background: -moz-linear-gradient(top, #A2C9EF 0%, #398FE5 50%, #267ED6 51%, #4399EF 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#A2C9EF), color-stop(50%,#398FE5), color-stop(51%,#267ED6), color-stop(100%,#4399EF));
    background: -webkit-linear-gradient(top, #A2C9EF 0%, #398FE5 50%, #267ED6 51%, #4399EF 100%);
    background: -o-linear-gradient(top, #A2C9EF 0%, #398FE5 50%, #267ED6 51%, #4399EF 100%);
    background: -ms-linear-gradient(top, #A2C9EF 0%, #398FE5 50%, #267ED6 51%, #4399EF 100%);
    background: linear-gradient(top, #A2C9EF 0%, #398FE5 50%, #267ED6 51%, #4399EF 100%);
}

.video-overlay::after {
    content: "";
    background-image: url(/img/play-btn.svg);
    background-size: cover;
    position: absolute;
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    display: block;
    pointer-events: none;
    z-index: 3;
}
.main-card__image.album__image a img
{
    border-radius: 0;
}
.main-card__image.album__image a img
{
    object-fit: cover;
    object-position: top;
    border: solid 1px #CCC;
    padding: 4px
}
/* .main-card__image.album__image::after
{
    content: '';
    width: 100%;
    height: 95px;
    display: block;
    position: absolute;
    top:0;
    left: 0;
    opacity: 0.9;
    background: url('/img/glossy-gradient.png') no-repeat;
    transition: .2s;
    z-index: 2;
} */

.fc-daygrid-day-bg:has(.fc-daygrid-bg-harness) + .fc-daygrid-day-top > .fc-daygrid-day-number
{
    z-index: 3;
}
.fc-scroller.fc-scroller-liquid-absolute
{
    overflow: visible !important;
}
.fc-scroller-harness.fc-scroller-harness-liquid
{
    overflow: visible !important;
}

.fancybox-slide.fancybox-slide--current.fancybox-slide--image {
    opacity: 0 ;
    -moz-transition: all 1.15s ease;
    -o-transition: all 1.15s ease;
    -webkit-transition: all 1.15s ease;
    transition: all 1.15s ease;
    background-color: rgba(256, 256, 256, 0.9) !important;
}
    
.fancybox-slide.fancybox-slide--current.fancybox-slide--image.fancybox-slide--complete {
    opacity: 1 !important;
    -moz-transition: all 1.15s ease;
    -o-transition: all 1.15s ease;
    -webkit-transition: all 1.15s ease;
    transition: all 1.15s ease;
    background-color: rgba(256, 256, 256, 0.9) !important;
}
.fancybox-bg
{
    background-color: rgba(256, 256, 256, 1) !important;
}
/* .fancybox-slide.fancybox-slide--current.fancybox-slide--image.fancybox-slide--complete .fancybox-content
{
    max-height : calc( 100% - 100px );
    margin: 50px 0;
    overflow: visible;
} */


/* .buttons-group
{
    position: absolute;
    bottom: -64px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.button-previous,
.button-next {
  position: static;
  width: 44px;
  height: 44px;
  background: #294B8C;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
} */

.fancybox-navigation .fancybox-button--arrow_left,
.fancybox-navigation .fancybox-button--arrow_right
{
    padding: 0;
}
.news-detail__img.congrats img
{
    object-fit: contain;
}
.header-search
{
    position: absolute;
    right: 0;
    top: calc(50% - 20px);
    height: 1.8rem;
    width: 150px;
}
.header-search button
{
    content: url('/img/search.svg');
    width: 1rem;
    height: 1rem;
    position: absolute;
    display: block;
    top: calc(50% - 0.5rem + 4px);
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    outline: none;
    border: 0;
    padding: 0;
    margin: 0;
}
.header-search button img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.container.content
{
    position: relative;
}
@media (min-width: 1600px) {
    .header-search.desktop
    {
        width: 200px;
    }
}
@media (max-width: 1200px) {
    .header-search.desktop
    {
        display: none;
    }
    .header-search.mobile
    {
        display: block;
        position: relative;
        margin-top: 20px;
        margin-left: auto;
        width: 50%;
    }
}
div.search-page input.search-query
{
    font-size: 1.5em;
}
div.search-item, table.search-filter td
{
    border-color: rgba(41, 75, 140, 0.5);
    border-width: 2px;
}
.news-detail__img.float-start
{
    cursor: pointer;
}
.swiper-news,
#news,
.swiper-gallery,
#gallery
{
    padding-bottom: 50px;
}
@media (max-width:576px) {
    .swiper-news,
    #news,
    .swiper-gallery,
    #gallery
{
    padding-bottom: 25px;
}
}
.swiper-autoheight, .swiper-autoheight .swiper-slide
{
    align-self: stretch;
}