@font-face {font-display: swap; font-family: 'Manrope'; font-style: normal; font-weight: 400; src: url('./fonts/manrope400/manrope400.eot'); src: url('./fonts/manrope400/manrope400.eot?#iefix') format('embedded-opentype'), url('./fonts/manrope400/manrope400.woff2') format('woff2'), url('./fonts/manrope400/manrope400.woff') format('woff'), url('./fonts/manrope400/manrope400.ttf') format('truetype'), url('./fonts/manrope400/manrope400.svg#Manrope') format('svg'); }
@font-face {font-display: swap; font-family: 'Manrope'; font-style: normal; font-weight: 500; src: url('./fonts/manrope500/manrope500.eot'); src: url('./fonts/manrope500/manrope500.eot?#iefix') format('embedded-opentype'), url('./fonts/manrope500/manrope500.woff2') format('woff2'), url('./fonts/manrope500/manrope500.woff') format('woff'), url('./fonts/manrope500/manrope500.ttf') format('truetype'), url('./fonts/manrope500/manrope500.svg#Manrope') format('svg'); }
@font-face {font-display: swap; font-family: 'Montserrat'; font-style: normal; font-weight: 700; src: url('./fonts/montserrat700/montserrat700.eot'); src: url('./fonts/montserrat700/montserrat700.eot?#iefix') format('embedded-opentype'), url('./fonts/montserrat700/montserrat700.woff2') format('woff2'), url('./fonts/montserrat700/montserrat700.woff') format('woff'), url('./fonts/montserrat700/montserrat700.ttf') format('truetype') url('./fonts/montserrat700/montserrat700.svg#Montserrat') format('svg');}
*,::after,::before {box-sizing: border-box}
html, body {padding: 0; margin: 0; font-family: 'Manrope', sans-serif; -webkit-tap-highlight-color: transparent; background: #F6F6F6; color: white; font-size: 16px}
html {overflow-y: scroll;}
h1, h2, h3, h4, h5, h6 {margin-top: 0; margin-bottom: .5rem;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {margin-bottom: .5rem; font-family: 'Montserrat'; font-weight: 700; line-height: 1.2; color: inherit;}
.h2{font-size: 56px;}
p {margin-top: 0; margin-bottom: 1rem;}
a {text-decoration: none; outline: none; color: var(--wcms-color-links);}
a:hover {text-decoration: none; color: var(--wcms-color-links-hover);}
button, input, optgroup, select, textarea {margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; outline: none;}
.container-fluid {max-width: 1790px; margin: 0 auto; padding-right: 16px; padding-left: 16px;}
.container-fluid.not-padded {padding-left: 0; padding-right: 0;}
.w100 {width: 100% !important;}
ul{margin: 0;padding-left: 21px;}
.inl {display: inline-block;}
.mt32 {margin-top: 32px !important;}
svg {flex-shrink: 0;}

:root{
    --transition: all .3s;
}

/* LAYOUT */
body{
    /*background: url("img/body_bg.svg") center;*/
    /*background-size: 3191px 2962px;*/
    /*background-position-y: bottom;*/
    /*background-repeat: repeat-y;*/
}
.btn{
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    padding: 21px 40px;
    background: #09b1c7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Manrope';
    width: fit-content;
    color: white;
    transition: 0.3s ease all;
}

.btn:hover {
    background-color: #28C4D9;
    color: white;
}

.btn:active {
    background-color: #09B1C7;
    color: white;
}

.btn.btn__white{
    color: #008a8c;
    border: 2px solid white;
    background: white;
    border-radius: 16px;
}
.btn.btn_c-b{
    color: #343434;
}
.btn.btn_c-b:hover{
    color: #343434;
}
.montserrat {
    font-family: 'Montserrat';
    font-weight: 700;
}
.swiper-button-lock {
    display: none!important;
}
.swiper-button-prev svg, .swiper-button-next svg {
    color: white;
}    
.main-content {margin-top: 88px; margin-bottom: 160px; color: var(--wcms-color-primary);}
.main-h1 {padding: 30px 32px; border: 1px solid var(--wcms-color-ultralight); background: url(./img/h1-background.svg), linear-gradient(136deg, var(--wcms-background-ultralight) 0%, var(--wcms-background-primary) 100%); background-size: contain; background-repeat: no-repeat; background-position: right center; border-radius: 16px;}
.main-h1 h1, .main-h1-blue h1 {font-size: 40px; margin-bottom: 0; color: var(--wcms-color-primary);}
.main-h1-blue {padding: 30px 32px; border: 1px solid var(--wcms-color-ultralight); background: url(./img/h1-background-blue.svg), linear-gradient(136deg, var(--wcms-background-ultralight) 0%, var(--wcms-background-primary) 100%); background-size: contain; background-repeat: no-repeat; background-position: right center; border-radius: 16px;}

@media (max-width: 1590px) {
	.main-h1 {background-size: cover; background-position: center center;}
}
@media (max-width: 1290px) {
	.main-h1 {background-position: center center;}
}
@media (max-width: 992px) {
	.main-h1 h1 {font-size: 24px;}
}
@media (max-width: 768px) {
	.main-content {margin-top: 58px;}
}


/* HEADER */
.h{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(25px);
    background: rgba(9, 177, 199, 0.9);
    transition: all var(--transition);
}
.h__row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 16px;
    position: relative;
    height: 88px;
}
.logo__wrap {
    display: flex;
    align-items: center;
}
.logo__wrap a {
    white-space: nowrap;
}
.logo, .f__img {padding: 6px 17px; max-height: 52px;}
.logo:first-child, .f__img:first-child {padding: 0;}
.logo:last-child, .f__img:last-child {border-left: 1px solid #d9d9d9;}
.h__menu{
    flex: 1;
    height: 100%;
    margin-left: 40px;
}
.h__menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    height: 100%;
}
.h__menu li{
    height: 100%;
}
.h__menu ul a{
    font-size: 20px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 700;
    padding: 0 24px;
    display: flex;
    height: 100%;
    align-items: center;
    transition: 0.4s ease all;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.h__menu ul a:hover{
    border-bottom: 2px solid white;
    text-decoration: none;
    background: #FFFFFF14;
}

@media (max-width: 1650px) {
    .h__menu {
        margin-left: 0;
    }
    .h__menu ul a{
        padding: 0 12px;
    }
    .h__menu ul {
        justify-content: space-between;
    }
}

@media (max-width: 1470px) {
    .h__menu ul a{
        font-size: 18px;
        padding: 0 8px;
    }
}

.h__btn{
    margin-left: auto;
}
.h__btn svg path, .h__btn svg circle, .h__btn svg rect{
    stroke: #fff;
}
.h.scrolled:not(.active) .h__btn svg path, .h.scrolled:not(.active) .h__btn svg circle, .h.scrolled:not(.active) .h__btn svg rect{
    stroke: #343434;
}
.h__search-icon{
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.h__burger{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    display: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.h__burger:hover{
    background-color: rgba(255, 255, 255, 0.3);;
}
.h__burger:active{
    background-color: rgba(255, 255, 255, 0.25);;
}
.h.active .h__burger {background-color: #e8eaeb;}
.h.active .h__burger:hover {background-color: #eff2f2;}
.h.active .h__burger:active {background-color: #e0e2e3;}

.h.scrolled:not(.active){
    background: white;
    backdrop-filter: blur(50px);
}
.h.scrolled:not(.active) svg path{
    stroke: #343434;
}
.h.scrolled:not(.active) .h__menu ul a{
    font-size: 20px;
    color: #343434;
}
.h.scrolled:not(.active) .h__row img{
    filter: invert(100%)
}
.h__bottom{
    display: none;
}
.h.active {
    backdrop-filter: blur(100px);
    background: rgb(0 0 0 / 76%);
    border-radius: 0 0 56px 56px;
    padding-bottom: 100px;
}
.h.active .h__bottom{
    display: block;
}


/* Mob Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 300px;
    height: 100vh;
    background: #eff2f2;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 0 0 0 32px;
    width: 348px;
}

.mobile-menu__header {
    padding-right: 32px;
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu__close {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #eff2f2;
}

.mobile-menu__list {
    padding-left: 0;
}

.mobile-menu__list li {
    list-style: none;
    border-bottom: 1px solid rgba(54, 60, 61, 0.1);
    position: relative;
    transition: 0.3s ease all;
}

.mobile-menu__list a {
    font-family: "Montserrat";
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #363c3d;
    text-align: right;
    display: block;
    width: 100%;
    padding: 48px 32px 12px 0;
    position: relative;
    z-index: 1;
    transition: 0.3s ease all;
}

.mobile-menu__list .menu-arrow {
    position: absolute;
    bottom: 15px;
    right: 24px;
    opacity: 0;
    transition: 0.3s ease opacity;
}

.mobile-menu__list li:hover {
    background: #e8eaeb;
}

.mobile-menu__list li:hover .menu-arrow {
    opacity: 1;
}

.mobile-menu__list li:active {
    background: #e0e2e3;
}

.mobile-menu__list a:hover {
    transform: translateX(-15px);
}






@media (max-width: 1350px) {
    .h__menu {
        display: none;
    }
    .h__dop-menu {
        display: none;
    }
    .h__burger {
        display: flex;
    }
}




.h__dop-menu{
    border-top: 1px solid #fff;
    margin-top: 24px;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 345px 345px;
    justify-content: center;
}
.h__dop-t{
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
}
.h__dop-t_o{
    display: none;
}
.h__title{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 8px;
}
.h__u{
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.h__u:hover {
    color: white;
    text-decoration: underline;
}

.h__menu ul a:active{
    text-decoration: inherit;
    color: rgba(255, 255, 255, 0.7);
}
.h-mid-search-form{
    display: none;
    position: absolute;
    width: calc(100% - 71px);
    right: 0;
    top: 4px;
    grid-gap: 16px;
    z-index: 1;
    align-items: center;
}
.h-mid-search-form input{
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0px 16px;
    height: 52px;
    background: #fff;
    flex: 1;
}
.h-mid-search-form button{
    border-radius: 16px;
    padding: 16px 40px;
    min-width: 232px;
    height: 52px;
    background: #009ea1;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    border: none;
    cursor: pointer;
}
.h-mid-search-form.active{
    display: flex;
}
.h-mid-search-close{
    min-width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: white;
    cursor: pointer;
}
.h:has(.container-fluid .h__row > .h__search .h-mid-search-form.active) .container-fluid .h__row > .h__menu{
    display: none;
}

.header {
    padding: 30px 32px;
    width: 100%;
    background: 
        linear-gradient(136deg, #e8e8e8 0%, #fff 100%) left/contain no-repeat;
    border-radius: 32px;
    border: 1px solid #dedede;
    display: flex;
    align-items: flex-end;
    margin-top: 24px;
    position: relative;
}
.header__h{
    font-size: 2.5rem;
    line-height: 120%;
    color: #343434;
    margin-bottom: 0;
}
.header__text{
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 32px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(161, 161, 161, 0.1);
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #f0f6f6;
}


@media (max-width: 1350px) {
    .h__menu{
        display: none;
    }
    .h__burger {display: flex;}
    .h__dop-menu .h__dop-t_o{
        display: flex;
    }
}
@media (max-width: 992px) {
    
    .h__row > img{
        height: 36px;
    }
    .h__search-icon{
        width: 36px;
        height: 36px;
    }
    .h__search-icon svg{
        width: 20px;
    }
    .h__burger{
        width: 36px;
        height: 36px;
        grid-gap: 5px;
    }
    .h__burger > div{
        width: 20px;
    }
    .h.active{
        height: 100dvh;
        border-radius: 0;
    }
    .h__dop-menu{
        margin-top: 13px;
        grid-template-columns: minmax(0, 1fr) !important;
        height: calc(100dvh - 60px);
        overflow-y: auto;
        padding-bottom: 40px;
    }
    .h__dop-menu .h__dop-t_o{
        grid-gap: 20px;
    }
    .h__title{
        font-size: 20px;
        margin-bottom: 0;
    }
    .h__u{
        font-size: 18px;
    }
    .h__dop-t + .h__dop-t{
        margin-top: 36px;
    }
    .h-mid-search-form{
        top: 13px;
    }
    .h-mid-search-form input{
        height: 36px;
        width: inherit;
    }
    .h-mid-search-form button {
        padding: 0;
        min-width: 166px;
        height: 36px;
        font-size: 16px;
    }
    .h-mid-search-close{
        min-width: 35px;
        height: 35px;
    }
    .h-mid-search-close svg{
        width: 19px;
    }
    .header{
        /*min-height: 669px;*/
        min-height: 369px;
        padding-top: 100px;
        padding-bottom: 16px;
        border-radius: 0 0 36px 36px;
    }
    .header .container-fluid{
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 16px;
    }
    .header__h{
        font-weight: 700;
        font-size: 32px;
        color: #fff;
        margin: 0;
    }
    .header__text{
        padding: 24px;
        font-weight: 400;
        font-size: 16px;
        line-height: 145%;
    }
}
@media (max-width: 600px){
    .h-mid-search-form{
        left: 0;
        grid-gap: 4px;
        width: 100%;
        top: 12px;
    }
    .h-mid-search-form button{
        min-width: 84px;
    }

    .h:has(.container-fluid .h__row > .h__search .h-mid-search-form.active) .container-fluid .h__row > .h__menu, .h:has(.container-fluid .h__row > .h__search .h-mid-search-form.active) .container-fluid .h__row > a{
        display: none;
    }
    .h-mid-search-form{
        top: 0;
    }
}

@media (max-width: 768px){
    .h__row{
        height: 58px;
    }
    .h{
        padding: 0;
    }
}

@media (max-width: 576px){
    .h{
        z-index: 100;
        backdrop-filter: blur(25px);
        background: rgba(9, 177, 199, 0.9);
        transition: all var(--transition);
    }
    .logo, .f__img {padding: 6px 17px; max-height: 42px;}
    .logo, .f__img:last-child {padding-right: 0;}
    .logo:first-child, .f__img:first-child {padding: 0;}
    .logo:first-child, .f__img:first-child {padding: 0;}
    .logo:last-child, .f__img:last-child {border-left: 1px solid #d9d9d9;}
    .logo:nth-child(2) {display: none;}
    .logo:first-child {padding-right: 17px;}
    .h__row {
        grid-gap: 0;
    }
    .mobile-menu {
        height: 95vh;
    }
}

/* BLOCKS */
.title{
    display: flex;
    justify-content: inherit;
    align-items: center;
    grid-gap: 32px;
}

.title__h{
    font-family: 'Montserrat';
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 110%;
    color: white;
    margin-bottom: 32px;
}
.title__h.black{
    color: #363C3D;
}
.title__desc{
    max-width: 710px;
    font-size: 1.25rem;
    line-height: 145%;
    color: #343434;
}
.albums__top .title__desc{
    margin-top: 28px;
    max-width: 100%;
}
.title__btns{
    display: flex;
    grid-gap: 12px;
}
.title__btn{
    background: white;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.title__btn:hover{
    background: rgba(255, 255, 255, 0.7);
}
.title__btn:active{
    background: white;
}
.title__btn svg{
    height: 17px;
    transition: var(--transition);
}
.title__a{
    background: white;
    margin-left: auto;
    border-radius: 16px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 232px;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #44132b;
    transition: var(--transition);
}
.title__a:hover{
    color: #44132b;
    background: rgba(255, 255, 255, 0.8);
}
.title__a:active{
    background: white;
}
.bottom__a{
    display: none;
}
.fade-in-block {
    transition: transform 0.8s ease, opacity 1.5s ease-out;
}
.fade-in-block-top.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.wcms-fade{
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpText 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
}
@keyframes fadeInUpText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .title{
        flex-direction: column;
        gap: 26px;
        align-items: flex-start;
    }
    .title__h{
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -.84px;
    }
    .title__desc{
        font-size: 14px;
        line-height: 20px;
    }
    .title__a{
        display: none;
    }
    .title__btn{
        min-width: 40px;
        height: 40px;
    }
    .bottom__a{
        background: white;
        margin-left: auto;
        border-radius: 16px;
        padding: 16px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-weight: 700;
        line-height: 110%;
        text-align: center;
        color: #44132b;
        margin-top: 24px;
        font-size: 16px;
    }
    .bottom__a:hover{
        color: #44132b;
    }
}

/* FOOTER */
.f{
    padding: 55px 0 35px 0;
    background: #3b3e43;
    border-top-left-radius: 72px;
    border-top-right-radius: 72px;
}
.f__logos {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: center;
}
.f__cnt{
    display: flex;
    justify-content: space-between;
}
.f__img-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #fff;
}
.f__c{
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
}
.f__nets{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.f__title, .f__title a {
    font-family: 'Montserrat';
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.f__title:hover {
    border-bottom-color: white;
}

.f__a, .f__a a{
    font-size: 20px;
    color: #fff;
}
.f__title a:hover, .f__a a:hover{
    color: #fff;
}
.f__a a:hover{
    text-decoration: underline;
}
.f__img{
    width: fit-content;
}
.f__btm{
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 16px;
}
.f__btm-a{
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 16px;
    color: #fff;
}
.f__btm-a:hover{
    color: #fff;
}
.f-roc{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    margin-top: 40px;
    font-size: 12px;
    color: white;
}
.f-roc img {
    width: 115px;
    margin-top: -1px;
}

@media (max-width: 992px) {
    .f__btm{
        flex-direction: column;
    }
    .f{
        padding: 32px 0;
    }
    .f__cnt{
        flex-direction: column;
        align-items: center;
    }
    .f__c{
        grid-gap: 20px;
    }
    .f__img{
        height: 60px;
    }
    .f__img-title{
        font-size: 19px;
    }
    .f__title{
        font-size: 20px;
    }
    .f__a, .f__a a{
        font-size: 18px;
    }
    .f__title, .f__title a{
        margin-bottom: 0;
    }
    .f__c + .f__c{
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    
    .f {
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
    }
}


/* SLIDERS */
.tp .swiper {
    width: 100%;
    height: 100%;
}
.tp .gallery{
    margin-top: 0;
}
.tp .swiper-slide {
}

.tp .swiper-slide img {
    border-radius: 48px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 780px;
    aspect-ratio: 1440 / 780;
}

.tp .swiper {
    width: 100%;
    height: 692px;
    margin-left: auto;
    margin-right: auto;
}

.tp .swiper-slide {
    background-size: cover;
    background-position: center;
}

.tp .mySwiper2 {
    height: 80%;
    width: 100%;
}

.tp .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 24px 0 0;
}
.tp .mySwiper .swiper-slide img{
    border-radius: 20px;
}
.tp .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    /*opacity: 0.4;*/
    border-radius: 24px;
    border: 2px solid #008a8c00;
}
.tp .mySwiper .swiper-slide-thumb-active{
    border: 4px solid rgba(9, 177, 199, 0.9);
}
.tp .mySwiper .swiper-slide-thumb-active img{
    opacity: 0.5;
}
.tp .swiper-button-next, .swiper-button-prev{
    background: rgba(9, 177, 199, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    width: 52px;
    height: 52px;
    z-index: 1;
    transition: 0.3s ease background;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background: rgba(40, 196, 217, 1);
}
.swiper-button-next:active, .swiper-button-prev:active{
    background: rgba(9, 177, 199, 1);
}
.tp .swiper-button-next svg, .tp .swiper-button-prev svg{
    color: white;
}
.tp .swiper-button-next svg{margin-left: 2px;}
.tp .swiper-button-next{
    position: absolute;
    right: 24px;
    bottom: 45%;
}
.tp .swiper-button-prev{
    position: absolute;
    left: 24px;
    bottom: 45%;
}
.mySwiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.tp .mySwiper .swiper-slide {
    height: 99px;
    width: 154px !important;
}
@media (max-width: 992px) {
    .tp .swiper-slide img{
        border-radius: 24px;
    }
    .tp .mySwiper .swiper-slide{
        border-radius: 11px;
    }
    .tp .mySwiper{
        padding: 16px 0 0;
    }
    .tp .mySwiper .swiper-slide img {
        border-radius: 11px;
    }
}

/* tportal */
.tp .title__h{
    margin-top: 32px;
}
.tp__add{
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 20px;
    font-size: 17px;
    line-height: 145%;
    color: #979a9a;
}
.tp__rt{
    display: flex;
    grid-gap: 8px;
}
.tp__stars{
    display: flex;
    align-items: center;
    grid-gap: 2px;
}
.tp__visited{
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.tp__visited.visited{
    color: #009ea1;
}
.tp__visited svg{
    opacity: 30%;
    filter: grayscale(1);
}
.tp__visited.visited svg{
    opacity: 100%;
    filter: grayscale(0);
}
.tp__main{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tp__cnt{
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
}
.tp__section{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    background: white;
    border: 1px solid #ddebeb;
    border-radius: 48px;
    padding: 48px 52px;
}
.tp_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.condition-item {
    display: flex;
    gap: 16px;
    font-size: 1.125rem;
}
.condition-item svg {
    flex-shrink: 0;
}
.condition-li {
    width: 19px;
    height: 3px;
    background: #008ea1;
    position: relative;
    top: 10px;
    flex-shrink: 0;
}
.route-wrap .wcms-block-videos-tube iframe{
    width: 100%;
    border-radius: 24px;
}

.tp__h, .tp__h-brd{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 120%;
    color: #343434;
    margin-bottom: 20px;
}
.tp__h-brd {
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #d9d9d9;
}
.tp__feature span {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.tp__feature span svg {
    margin-bottom: 4px;
}
.tp__text{
    font-size: 1.125rem;
    line-height: 158%;
    color: #343434;
}
.tp__feature{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 158%;
    color: #343434;
    grid-gap: 8px;
}

.tp_item.description {
    font-size: 1.125rem;
}
.tp_item.description h3 {
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #008ea1;
    margin-bottom: 0;
    margin-top: 8px;
}

.tp_item.description ul {
    padding-left: 0;
    margin-bottom: 8px;
}

.tp_item.description p {
    margin-bottom: 0;
}

.tp_item.description ul li {
    list-style: none;
    padding-left: 0;
    padding-left: 36px;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 24px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.tp_item.description ul li:last-child {
    margin-bottom: 0;
}

.tp_item.description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.243 16.3141L6 12.0701L7.414 10.6561L10.243 13.4841L15.899 7.82715L17.314 9.24215L10.243 16.3141Z" fill="%23008EA1"/><path fill-rule="evenodd" clip-rule="evenodd" d="M1 12C1 5.925 5.925 1 12 1C18.075 1 23 5.925 23 12C23 18.075 18.075 23 12 23C5.925 23 1 18.075 1 12ZM12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 10.8181 3.23279 9.64778 3.68508 8.55585C4.13738 7.46392 4.80031 6.47177 5.63604 5.63604C6.47177 4.80031 7.46392 4.13738 8.55585 3.68508C9.64778 3.23279 10.8181 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12C21 14.3869 20.0518 16.6761 18.364 18.364C16.6761 20.0518 14.3869 21 12 21Z" fill="%23008EA1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.tp_item.description ol {
    padding-left: 0;
    margin-bottom: 8px;
    margin-top: 0;
}

.tp_item.description ol li {
    list-style: none;
    padding-left: 0;
    padding-left: 36px;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 24px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.tp_item.description ol li:last-child {
    margin-bottom: 0;
}

.tp_item.description ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="12" y="8.4502" width="5.84628" height="5.84628" transform="rotate(45 12 8.4502)" fill="%23008EA1"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.tp__map-url {
    padding: 16px 40px;
    width: 100%;
    text-align: center;
    border: 1px solid #089bae;
    color: #089bae;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease all;
    margin-top: 20px;
}
.tp__map-url:hover {
    color: white;
    background: #089bae;
}
.tp__map-url svg {
    position: relative;
    bottom: 1px;
}



.tp__card{
    border: 1px solid #ddebeb;
    border-radius: 32px;
    background: #fff;
    overflow: hidden;
}
.tp__str{
    display: flex;
    grid-gap: 16px;
    font-size: 17px;
    line-height: 145%;
    color: #343434;
}
.tp__str a{
    color: #009ea1;
}
.tp__str a:hover{
    color: #009ea1;
}
.tp__data{
    padding: 32px;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.tp__side{
    display: flex;
    flex-direction: column;
}
.tp__ban{
    position: relative;
    width: 100%;
    border-radius: 32px;
    padding: 12px;
    background-size: contain!important;
    background-repeat: no-repeat!important;
    overflow: hidden;
}
.tp__ban-cnt{
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.tp__ban-h{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #fff;
}
.tp__ban-silver .tp__ban-h{
    font-size: 28px;
    line-height: 110%;
    color: #343434;
}
.tp__ban-desc{
    margin-top: 8px;
    font-size: 20px;
    line-height: 135%;
    color: #fee8bb;
}
.tp__ban-silver .tp__ban-desc{
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
    color: #343434;
}
.tp__ban-desc.tp__ban-desc_green{
    color: #017b7d;
}
.tp__ban-text{
    margin-top: 24px;
    font-size: 20px;
    line-height: 135%;
    color: #fff;
}
.tp__ban-silver .tp__ban-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 135%;
    color: #343434;
}
.tp__ban-text span{
    font-size: 17px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.85);
}
.tp__ban .btn{
    margin-top: 24px;
}
.tp__i{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    z-index: 0;
}
.tp__objcts{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.tp__obj{
    border: 1px solid #ddebeb;
    border-radius: 24px;
    min-height: 132px;
    background: white;
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.tp__obj:hover{
    background: #ebfafa;
}
.tp__obj > img{
    object-fit: cover;
    border-radius: 24px;
    min-width: 220px;
    width: 220px;
}
.tp__obj-name{
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 145%;
    color: #343434;
}
.tp__obj-str{
    font-size: 1rem;
    display: flex;
    grid-gap: 8px;
    color: #343434;
}
.tp__obj-str svg{
    height: 21px;
    min-height: 21px;
    min-width: 18px;
}
.tp__obj-cnt{
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 12px 16px;
    grid-gap: 8px;
}
.tp__obj-visited{
    margin-top: auto;
}
@media (max-width: 1430px) {
    .tp .mySwiper .swiper-slide {
        width: 130px !important;
    }
}
@media (max-width: 1250px) {
    .route-wrap {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    .route-left, .route-right {
        max-width: 100% !important;
        width: 100%;
    }
}
@media (max-width: 660px) {
    .route-wrap .mySwiper {
        display: none;
    }
    
    .tp .swiper-button-next, .tp .swiper-button-prev{
        display: none;
    }
}
@media (max-width: 768px) {
    .btn {
        font-size: 0.875rem;
        padding: 6px 20px;
    }
    .tp__objcts{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .tp__obj {
        flex-direction: column;
    }
    .tp__obj > img {
        object-fit: cover;
        border-radius: 24px;
        width: 100%;
        aspect-ratio: 16 / 9;
        height: 100%;
    }
}

.history__pp{
    border-radius: 16px;
    padding: 16px 40px;
    background: #009ea1;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    margin: 24px 0 48px;
    width: fit-content;
    cursor: pointer;
}
.hp{
    max-width: 672px;
    width: 100%;
    background: #fff;
    border-radius: 32px;
    position: relative;
}
.hp img{
    display: block;
    width: 100%;
}
.hp__h{
    padding: 32px 40px;
    border-radius: 32px 32px 88px 88px;
    background: #fdb939;
}
.hp__t{
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #fff;
}
.hp__cnt{
    padding: 32px 48px;
    display: flex;
    flex-flow: column;
    grid-gap: 16px;
}
.hp__t2{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
}
.hp__text{
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: #343434;
    display: flex;
    grid-gap: 3px;
}
.hp__form-text{
    display: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: #009ea1;
}
.hp input[type="email"]{
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0 16px;
    width: 100%;
    height: 52px;
    font-size: 20px;
}
.hp input[type="email"]::placeholder{
    color: #979a9a;
}
.hp__close{
    position: absolute;
    right: 24px;
    top: 24px;
    border-radius: 50%;
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hp__pp{
    overflow-y: auto;
    max-height: 100dvh;
}

.hp .input-file {
    position: relative;
    display: flex;
    grid-gap: 8px;
    margin-top: 16px;
}
.hp .input-file-text {
    line-height: 40px;
    text-align: left;
    float: left;
    box-sizing: border-box;
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    padding: 0 16px;
    height: 52px;
    min-width: 280px;
    flex: 1;
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #999
}
.hp .input-file-btn {
    height: 52px;
    min-width: 198px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    vertical-align: middle;
    box-sizing: border-box;
    margin: 0;
    transition: background-color 0.2s;
    border: 2px solid #009ea1;
    border-radius: 16px;
    padding: 9px;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
}
.hp .input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}
.hp button[type="submit"]{
    background: #009ea1;
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    outline: none;
    border: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    margin-top: 32px;
    cursor: pointer;
}

@media (max-width: 700px){
    .hp__pp{
        width: 100%;
    }
}
@media (max-width: 992px){
    .hp__t{
        font-size: 24px;
        line-height: 120%;
    }
    .hp .input-file{
        flex-wrap: wrap;
    }
    .hp .input-file-text{
        min-width: 100%;
    }
    .hp button[type="submit"]{
        font-size: 18px;
    }
    .hp__cnt{
        padding: 32px 24px;
    }
    .tp__main{
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 32px;
    }
    .tp__h{
        font-weight: 700;
        font-size: 22px;
        line-height: 120%;
    }
    .tp__feature, .tp__text{
        font-size: 17px;
        line-height: 145%;
        color: #343434;
    }
    .tp__cnt{
        grid-gap: 12px;
    }
    .tp__section{
        grid-gap: 16px;
    }
    .tp__ban{
        padding: 6px;
    }
    .tp__ban-cnt{
        padding: 18px;
    }
    .tp__ban-h{
        font-weight: 700;
        font-size: 24px;
        line-height: 110%;
    }
    .tp__ban-desc{
        font-size: 17px;
        line-height: 135%;
    }
    .tp__ban-text{
        font-size: 17px;
        line-height: 135%;
    }
    .tp__ban .btn{
        margin-top: 24px;
    }
    .tp__data{
        padding: 32px 24px;
    }
}

/* MAP */
.map-container {
    width: 100%;
    height: 370px;
}
.map-container {
    width: 100%;
    height: 370px;
    border-radius: 32px;
    overflow: hidden;
}
.ctg__map .map-container{
    position: sticky;
    top: 100px;
    max-height: 784px;
    height: calc(100vh - 150px);
}


/* CATALOG */
.ctg{
    margin-top: 32px;
    display: grid;
    grid-template-columns: 425px 425px 6fr;
    grid-gap: 20px;
}
.ctg__cnt{
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
}
/*.sb__block{*/
/*    position: sticky;*/
/*    top: 100px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    grid-gap: 12px;*/
/*    border: 1px solid #ddebeb;*/
/*    border-radius: 32px;*/
/*    padding: 32px;*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    max-height: calc(100vh - 130px);*/
/*    height: min-content;*/
/*    overflow-y: auto;*/
/*}*/
.sb__block{
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    padding: 0 32px;
    width: 100%;
    height: min-content;
    overflow-y: auto;
    height: -webkit-fill-available;
    max-height: calc(100vh - 196px);
}
.sb__block::-webkit-scrollbar{width:4px}
.sb__block::-webkit-scrollbar-track{background:#f1f1f1}
.sb__block::-webkit-scrollbar-thumb{background:var(--wcms-color-links);width:2px;border-radius:4px}
.sb__block::-webkit-scrollbar-thumb:hover{background:var(--wcms-color-links-hover);width:2px}
.sb__h{
    font-weight: 700;
    font-size: 1.375rem;
    font-family: 'Montserrat';
    line-height: 120%;
    color: #343434;
    margin-bottom: 16px;
}
.sb__i{
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
    transition: var(--transition);
    grid-gap: 16px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.sb__block ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
}
.sb__block .sidebar-filter-field:has(+ .sidebar-filter-field){
    padding-bottom: 16px;
    border-bottom: 1px solid #ddebeb;
}
.sb__block .sidebar-filter-field + .sidebar-filter-field{
    margin-top: 16px;
}
.sb__block .sidebar-filter-hidden-checkbox{
    display: none;
}
.sb__block .sidebar-filter-hidden-checkbox + span svg{
    display: none;
}
.sb__block .sidebar-filter-hidden-checkbox + span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 8px;
    background: rgba(0, 36, 37, 0.1);
    transition: var(--transition);
}
.sb__block .sidebar-filter-hidden-checkbox:checked + span{
    background: #009ea1;
}
.sb__block .sidebar-filter-hidden-checkbox:checked + span svg{
    display: block;
}
.sb__i:has(.sidebar-filter-hidden-checkbox:checked){
    color: #009ea1;
}
.sb__block button[type="submit"]{
    border: 2px solid #009ea1;
    border-radius: 16px;
    padding: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
    background: white;
    margin-top: 24px;
    transition: var(--transition);
}
.sb__block button[type="submit"]:active{
    background: #009ea1;
    color: #fff;
}
.sb__close{
    display: none;
    width: 32px;
    height: 32px;
}
.sb__menu{
    display: none;
}
.sb{
    padding: 32px 0;
    border: 1px solid #ddebeb;
    border-radius: 32px;
    background: white;
    max-height: calc(100vh - 130px);
    position: sticky;
    top: 100px;
    height: fit-content;
}


.route-wrap {
    display: flex;
    gap: 22px;
}
.route-left, .route-right {
    max-width: calc(50% - 12px);
}
.route-left .gallery-thumbs {
    position: sticky;
    top: 120px;
}
.title__route {
    font-family: 'Montserrat';
    font-size: 2.5rem;
    line-height: 120%;
    padding-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
}
.slide-expand {
    border-radius: 100px;
    width: 52px;
    height: 52px;
    background: #ececec;
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1350px) {
    .ctg{
        grid-template-columns: 345px minmax(0, 1fr);
    }
    .ctg__map{
        display: none;
    }
}
@media (max-width: 992px){
    .sb{
        display: none;
    }
    .ctg{
        grid-template-columns: minmax(0, 1fr);
    }
    .sb.active{
        display: block;
        position: fixed;
        top: 85px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        border-radius: 0;
        border: none;
        max-height: inherit;
        padding: 0;
        height: auto;
        padding-bottom: 50px;
    }
    .sb__block{
        height: 100%;
        max-height: none;
        border: none;
        border-radius: 0;
        padding: 23px;
    }
    .sb__close{
        display: flex;
        align-items: center;
        /*justify-content: center;*/
        /*position: absolute;*/
        right: 16px;
        top: 16px;

        background: white;
        width: 100%;
        justify-content: flex-end;
        padding: 23px;
    }
    .sb__menu{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sb__menu-a{
        display: flex;
        align-items: center;
        grid-gap: 8px;
        font-weight: 400;
        font-size: 17px;
        color: #009ea1;
        cursor: pointer;
    }
}
@media (max-width: 576px) {
    .title__route {font-size: 2rem;}
    .slide-expand {width: 36px; height: 36px;}
    .tp__section {padding: 24px 26px; border-radius: 32px;}
}

/* CARD */
.card{
    width: 100%;
    overflow: hidden;
    border: 1px solid #ddebeb;
    border-radius: 24px;
    background: #fff;
    transition: var(--transition);
}
.card:hover, .card.highlighted{
    background: #f7ffff;
}
.card__cnt{
    display: flex;
    flex-direction: column;
    padding: 24px 32px 8px;
}
.img_wrapper {
    overflow: hidden;
    border-radius: 24px;
    height: 271px;
}
.card__img{
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.3s ease transform;
    height: 100%;
}
.card:hover .card__img {
    transform: scale(1.1);
}
.card__h{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    box-orient: vertical;
}
.card__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
    margin-top: 10px;
}
.card__stars{
    display: flex;
    align-items: center;
    grid-gap: 2px;
}
.card__visited{
    display: flex;
    align-items: center;
    grid-gap: 7px;
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
    opacity: 30%;
    filter: grayscale(1);
}
.card__visited.visited{
    opacity: 100%;
    filter: grayscale(0);
}
.card__desc{
    font-size: 17px;
    line-height: 130%;
    color: #343434;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    box-orient: vertical;
}
.card__del{
    margin-top: 8px;
    margin-bottom: 16px;
    width: 100%;
    height: 1px;
    background: #DDEBEB;
}
.card__str,.card__str-route{
    display: flex;
    grid-gap: 12px;
    margin-top: 8px;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.card__str span {
    font-weight: 700;
}
.card__str-text {
    font-weight: 700;
    margin-bottom: 12px;
}
.card__short-desc {
	font-size: 15px;
	color: gray;
}
.card__str-route {
    margin-top: 0;
    font-weight: 700;
    font-size: 1.125rem;
}
.card__str-route a {
    color: #008ea1;
}
.card__str a{
    color: #343434;
}
.card__a {
    display: flex;
    align-items: center;
    height: 48px;
    margin-top: 12px;
}
.card .card__a a{

    display: block;
    opacity: 1;
    /*display: none;*/
    /*opacity: 0;*/
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    color: #009ea1;
    transition: var(--transition);
}
.card:hover .card__a a{
    display: block;
    opacity: 1;
}

.thumb{
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}
.thumb__img{
    position: relative;
    height: 248px;
    display: flex;
    align-items: flex-end;
    padding: 17px 17px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover!important;
}
.thumb__img-w{
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.09%, rgba(0, 0, 0, 0.3) 100%);

}
.thumb__card:hover .thumb__img-w{
    transform: scale(1.1);
}
.thumb__cnt{
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 8px;
    min-height: 157px;
    flex: 1;
}
.thumb__cnt.height-auto {min-height: initial;}
.thumb__name{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
}
.thumb__desc{
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__a{
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
    display: block;
    transition: var(--transition);
    opacity: 0;
}
.thumb:hover .thumb__a{
    opacity: 1;
    /*display: block;*/
}
.thumb__tags{
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    grid-gap: 8px;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.thumb__tag{
    width: fit-content;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__dt{
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.thumb__i{
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.thumb__i svg{
    min-width: 24px;
}


@media (max-width: 992px) {
    .thumb__cnt{
        min-height: 240px;
    }
    .thumb__name{
        font-size: 16px;
    }
    .thumb__desc{
        font-size: 14px;
    }
    .thumb__a{
        font-size: 14px;
    }
}

/* BLOG */

.blog {
    margin-top: 144px;
}

.thumb__img-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.3s ease all;
}

.thumb:hover .thumb__img-img{
    transform: scale(1.1);
}

.blog-posts{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 32px 20px;
}
.post{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 467px;
    grid-gap: 80px 141px;
}
.post__sb{
    padding-top: 143px;
}
.news{
    margin-top: 135px;
    /*display: grid;*/
    /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
    /*grid-gap: 20px;*/
}
.tp .news .title__h{
    margin-top: 0;
}
.tp .news .title{
    margin-bottom: 48px;
}
.tp .news .swiper{
    height: auto;
}
.news .title__btn{
    position: relative;
    background: none;
    border: 2px solid #009ea1;
    left: inherit;
    right: inherit;
    top: inherit;
    bottom: inherit;
}
.news .title__btn path{
    stroke: #009ea1;
}
.news__card{
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}
.news__img{
    position: relative;
    height: 248px;
    display: flex;
    align-items: flex-end;
    padding: 17px 8px;
    border-radius: 32px;
    overflow: hidden;
}
.news__img-w{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover!important;
    transition: var(--transition);
}
.news__card:hover .news__img-w{
    transform: scale(1.1);
}
.news__cnt{
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 16px;
    min-height: 263px;
}
.news__name{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
}
.news__desc{
    font-weight: 400;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.news__a{
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #009ea1;
    display: none;
    transition: var(--transition);
}
.news__card:hover .news__a{
    display: block;
}
.news__tags{
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    grid-gap: 8px;
}
.news__tag{
    width: fit-content;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.news.title__a{
    border: 2px solid #009ea1;
    border-radius: 16px;
    background: initial;
    transition: var(--transition);
    color: #009ea1;
}
.news .title__a:hover{
    background: #009ea1;
    color: white;
}
.news__h2{
    margin-top: 54px;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #343434;
}
.news__sb{
    margin-top: 32px;
    display: flex;
    flex-flow: column;
    grid-gap: 20px;
}
.news-sb__dt{
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.news-sb__dt{
    font-weight: 400;
    font-size: 17px;
    line-height: 145%;
    color: rgba(52, 52, 52, 0.7);
}
.news-sb__text{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #343434;
    margin-top: 8px;
}
.news-sb__a{
    padding-bottom: 17px;
    border-bottom: 1px solid #b3d7d7;
}
.news-sb__a:hover .news-sb__dt, .news-sb__a:hover .news-sb__text{
    color: #009ea1;
    transition: var(--transition);
}
.event{

}

@media (max-width: 992px) {
    .news__cnt{
        min-height: 240px;
    }
    .news__name{
        font-size: 16px;
    }
    .news__desc{
        font-size: 14px;
    }
    .news__a{
        font-size: 14px;
    }
    .news{
        margin-top: 24px;
    }
}

@media (max-width: 992px){
    .sb{
        display: none;
    }
    .ctg{
        grid-template-columns: minmax(0, 1fr);
    }
    .card__cnt{
        padding: 24px 24px 8px;
    }
    .card .card__a a{
        display: flex!important;
        opacity: 1;
        height: 48px;
        margin-top: 0;
        align-items: center;
    }
    .blog-posts{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .post {
        grid-template-columns: minmax(0, 1fr);
    }

}
@media (max-width: 576px){
    .blog-posts{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* ALBUMS */
.albums{
    margin: 32px 0 128px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
}
.albums__a{
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background-position: center!important;
    background-size: cover!important;
    min-height: 516px;
}
.albums__wrap{
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    padding: 32px;
    display: flex;
    flex-flow: column;
}
.albums__name{
    margin-top: auto;
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    color: #fff;
}
.albums__count{
    margin-top: 12px;
    display: flex;
    grid-gap: 8px;
    font-size: 17px;
    line-height: 130%;
    color: #fff;
}
.tags-filter{
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    font-size: 17px;
    line-height: 130%;
    color: #343434;
}
.tags-filter .tag{
    border: 1px solid #ddebeb;
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    background: white;
}
.tags-filter .tag:hover{
    color: #009ea1;
}
.tags-filter .tag input{
    display: none;
}
.tags-filter .tag:has(> label input[type="checkbox"]:checked){
    background: #009ea1;
    color: white;
}
.tags-filter .tag:has(> label input[type="checkbox"]:checked):hover{
    color: white;
}
.album-images{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
    margin: 48px 0 128px;
}
.album__a{
    border-radius: 24px;
    min-height: 299px;
    background-position: center!important;
    background-size: cover!important;
}
@media (max-width: 1200px) {
    .albums{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .album-images{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .albums{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .album-images{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* ACHIEVE */
.ach{
    display: none;
    margin-top: 56px;
    flex-flow: column;
    grid-gap: 24px;
    margin-bottom: 128px;
}
.ach__btns{
    margin-top: 64px;
    display: flex;
    grid-gap: 32px;
    font-weight: 700;
    font-size: 20px;
    line-height: 118%;
    color: #343434;
    border-bottom: 2px solid rgba(52, 52, 52, 0.3);
    padding-bottom: 9px;
    width: fit-content;
}
.ach__btn{
    padding-bottom: 9px;
    margin-bottom: -11px;
    cursor: pointer;
}
.ach__btn.active{
    color: #009ea1;
    border-bottom: 2px solid #009ea1;
}
.ach.active{
    display: flex;
}
.ach__i{
    border: 1px solid rgba(52, 52, 52, 0.3);
    border-bottom: none;
    border-radius: 32px;
    position: relative;
    background: white;
}
.ach__top{
    padding: 32px;
    min-height: 133px;
    border: 1px solid rgba(52, 52, 52, 0.3);
    border-radius: 32px;
    position: relative;
    left: -1px;
    top: -1px;
    right: -1px;
    width: calc(100% + 2px);
}
.ach__title{
    font-weight: 700;
    font-size: 26px;
    line-height: 128%;
    color: #343434;
    display: flex;
    align-items: center;
    grid-gap: 8px;
}
.ach__title-active{
    display: flex;
    color: #007577;
    grid-gap: 8px;
}
.ach__cnt{
    padding: 32px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.3);
    border-radius: 32px;
}
.ach__cnt:empty{
    display: none;
}
.ach__a-btn{
    display: flex;
    grid-column-start: 1;
    background: #009ea1;
    border-radius: 16px;
    padding: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    transition: var(--transition);
}
.ach__a-btn:hover{
    color: white;
    background: rgba(0, 158, 161, 0.8);
}
.ach__text{
    margin-top: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 158%;
    color: #343434;
    display: flex;
    grid-gap: 8px;
}
.ach__text span{
    display: flex;
    align-items: center;
    grid-gap: 4px;
    color: #009ea1;
}
.ach__title:not(.ach__title-active) + .ach__text{
    padding-left: 40px;
}
.ach__text span svg{
    margin-top: -3px;
    min-width: 32px;
}
.ach__cnt.active{
    display: grid;
}
.ach__a{
    position: absolute;
    right: 32px;
    top: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 52, 52, 0.4);
    border-radius: 100px;
}
.ach__cnt.active + .ach__a svg{
    transform: rotate(180deg);
}
@media (max-width: 1250px) {
    .ach__cnt{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .ach__cnt{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        padding: 8px;
    }
    .ach__top{
        padding: 16px;
    }
    .ach__title{
        font-size: 18px;
        padding-right: 60px;
    }
    .ach__text{
        font-size: 14px;
    }
    .ach__a{
        right: 16px;
        top: 16px;
    }
}

/* BB */
.bb{
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    background-size: cover!important;
    min-height: 248px;
    border-radius: 64px;
    padding: 0 56px;
    overflow: hidden;
}
.bb__l{
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 38px;
    padding: 72px 0;
}
.bb__title{
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #fff;
}
.bb__a{
    border-radius: 16px;
    padding: 16px 40px;
    max-width: 232px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    background: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #732051;
    transition: var(--transition);
}
.bb__a.disabled{
    background: rgba(255, 255, 255, 0.7);
    cursor: inherit;
}
.bb__a:hover{
    /*background: rgba(255, 255, 255, 0.7);*/
    color: #732051;
}
.bb__a:active{
    background: #fff;
}
@media (max-width: 992px) {
    .bb__title{
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -.84px;
    }
    #wcms_block_ .tihvinBanner{
        padding: 0;
    }
    .bb{
        border-radius: 0;
        grid-template-columns: 1fr;
        padding: 0;
        position: relative;
        min-height: 278px;
    }
    .bb__l{
        padding: 36px 15px;
    }
    .bb__r{
        display: none;
    }
    .bb__r img{
        width: 100%;
    }
    .bb__a{
        font-size: 16px;
    }
    .post__sb{
        padding-top: 0;
    }
    .post{
        margin-bottom: 90px;
    }
}

/* FORM */
.sys-popup.pp{
    background: white;
    border: 1px solid #ddebeb;
    border-radius: 32px;
    overflow: hidden;
}
.pp-cpt{
    border-radius: 32px 32px 88px 88px;
    background: #ddebeb;
    padding: 32px 40px;
    position: relative;
}
.pp-close.b-close{
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 24px;
}
.pp-cpt h2{
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #343434;
}
.pp-cnt{
    padding: 48px 32px;
}
.pp-cnt .wa-name{
    display: none;
}
.pp-cnt .wa-value input, textarea{
    border: 1px solid rgba(52, 52, 52, 0.5);
    border-radius: 16px;
    width: 100%;
    padding: 14px 16px;
}
.pp-cnt .wcms-from{
    display: flex;
    flex-flow: column;
    grid-gap: 20px;
}
.pp-cnt button{
    border: 1px solid #993668;
    width: 100%;
    background: #993668;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    padding: 16px;
    border-radius: 16px;
    transition: var(--transition);
}
.pp-cnt button:hover{
    background: rgba(153, 54, 104, 0.8);
}
.s-form{
    margin-top: 56px;
    position: relative;
}
.s-form input[type="text"]:focus {
    border: 1px solid rgb(0 0 0);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.s-form input[type="text"] {
    border: 1px solid rgb(0 0 0 / 50%);
    border-radius: 16px;
    padding: 0 16px;
    width: 100%;
    height: 49px;
    font-size: 20px;
    color: #000000;
    background: none;
    transition: var(--transition);
}
.s-form button{
    position: absolute;
    right: 0;
    height: 100%;
    border-radius: 16px;
    border: none;
    background: no-repeat;
    width: 49px;
}
.s-form + .s-types .tags-filter{
    list-style: none;
    padding: 0;
}
.s-form + .s-types .tag{
    color: #343434;
}
.s-form + .s-types .tag.active{
    background: #009ea1;
    color: white;
}
.s-res {margin-top: 32px;padding: 15px; border-radius: 7px; overflow: hidden; margin-bottom: 15px; background: var(--wcms-background-primary);}
.s-res:last-child {margin-bottom: 0;}
.s-res-cpt {font-weight: bold; font-size: 1.1em; margin-bottom: 15px;}
.s-res-cpt a {color: var(--wcms-color-primary);}
.s-res-dt {margin-top: 15px; font-size: 0.9em;}
.s-res-more {margin-top: 15px; font-weight: bold;}
.s-res-pg-wrap {margin-top: 20px;}
.sys-message {
    width: 440px;
    margin-bottom: 60px;
    padding-top: 60px;
    text-align: left;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(221, 235, 235, 0.2);
    z-index: 12;
    display: flex;
    gap: 18px;
}

.sys-message svg {
    min-width: 36px;
}
.wcms-form-success {
    position: fixed;
}
.wcms-form-success-close {
    position: absolute;
    top: 14px;
    right: 8px;
    padding: 0 !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease all;
}
.wcms-form-success-close:hover svg path {
    fill-opacity: 1;
}
.sys-message-text {
    margin-top: 0 !important;
}
.sys-message-text.wcms-form-success-text {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 110%;
    color: #363c3d;
    margin-bottom: 12px;
}
.wcms-form-success-close svg {
    min-width: 24px;
    flex-shrink: 0;
}



/* FORMS */
.wa-form input[type="text"], .wa-form input[type="numeric"], .wa-form textarea, .wa-form select {padding: 19px 24px; font-size: 16px; width: 100%; border: 1px solid; border-radius: 16px; border-color: var(--wcms-color-light); min-height: 60px; background-color: var(--wcms-background-primary);}
.wa-form textarea {min-height: 100px;}
.wa-form .checkbox-icon-wrap, .wa-form .radio-icon-wrap {border: 1px solid; border-color: var(--wcms-color-ultralight);}
.wa-form .wa-field {margin-bottom: 10px; transition: 0.3s ease all;} 
.wa-field {position: relative;}
.wa-field input[type="text"],.wa-field textarea, .wa-field select {transition: 0.3s ease all; position: relative;} 

.wa-form .wa-field .wa-name {font-size: 0.9em; padding: 4px 0;}
.wa-form .wa-field .wa-value .hint {font-size: 0.9em; background-color: var(--wcms-color-warning); color: white;}
.wa-form .wa-field .wa-value .hint:empty {display: none}
.wa-form .wa-field-checkbox .wa-name {padding-bottom: 10px;}
.wa-form .wa-field .wa-value .checkbox-label {font-size: 16px; margin-bottom: 10px;}
.wa-form .wa-field .wa-value .checkbox-label:last-child {margin-bottom: 0;}
.wa-form .wa-field:has(label.checkbox-label) input[type="checkbox"] {width: 0; height: 0; opacity: 0;}
.wa-form .wa-field:has(label.checkbox-label) label {display: flex; align-items: center;}
.wa-form .wa-field:has(label.checkbox-label) .checkbox-icon {width: 16px; height: 16px; margin-top: 3px; margin-left: 3px; display: none; color: var(--wcms-color-links);}
.wa-form .wa-field:has(label.checkbox-label) input + span.checkbox-icon-wrap {position: relative; overflow: hidden; display: inline-block; vertical-align: top; min-width: 24px; height: 24px; border-radius: 4px; cursor: pointer; box-sizing: border-box; margin-right: 12px; background: var(--wcms-color-ultralight);}
.wa-form .wa-field:has(label.checkbox-label) input:checked + span.checkbox-icon-wrap .checkbox-icon {display: block;}
.wa-form .wa-field-radio .wa-name {padding-bottom: 10px;}
.wa-form .wa-field .wa-value .radio-label {font-size: 0.9em; margin-bottom: 10px;}
.wa-form .wa-field .wa-value .radio-label:last-child {margin-bottom: 0;}
.wa-form .wa-field:has(label.radio-label) input[type="radio"] {width: 0; height: 0; opacity: 0;}
.wa-form .wa-field:has(label.radio-label) label {display: flex; align-items: center;}
.wa-form .wa-field:has(label.radio-label) .radio-icon {width: 14px; height: 14px; margin-top: 3px; margin-left: 3px; display: none; color: var(--wcms-color-links);}
.wa-form .wa-field:has(label.radio-label) input + span.radio-icon-wrap {position: relative; overflow: hidden; display: inline-block; vertical-align: top; min-width: 22px; height: 22px; border-radius: 11px; cursor: pointer; box-sizing: border-box; margin-right: 12px; background: var(--wcms-color-ultralight);}
.wa-form .wa-field:has(label.radio-label) input:checked + span.radio-icon-wrap .radio-icon {display: block;}
.wa-form .wcms-field-error input[type="text"], .wa-form .wcms-field-error textarea, .wa-form .wcms-field-error select, .wa-form .wcms-field-error .checkbox-icon-wrap, .wa-form .wcms-field-error .radio-icon-wrap {border-color: var(--wcms-color-warning);}
.wa-form .wcms-field-error .hint {color: var(--wcms-color-warning);}
.wa-form .form-message {padding: 10px; border-radius: 5px; background: var(--wcms-background-ultralight); margin-bottom: 10px;}
.wa-form button {border-radius: 16px; color: var(--wcms-color-secondary); background: var(--wcms-color-links); outline: none; border: none; width: 100%; padding: 19px 0; cursor: pointer; text-transform: uppercase; font-weight: bold; letter-spacing: 0.1em; transition: 0.3s ease all;}
.wa-form button:hover {background: var(--wcms-color-links-hover);}
.wa-form button:active {background: var(--wcms-color-links-hover);}
.wa-form .wa-field .wa-value .checkbox-label input[type="checkbox"] + span svg {display: none;}
.wa-form .wa-field .wa-value .checkbox-label input[type="checkbox"]:checked + span svg {display: block; color: white;}
.wa-form .wa-field .wa-value .checkbox-label input[type="checkbox"]:checked + span {background: var(--wcms-color-links);}

.wa-field select {
    padding: 12px 40px 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.wa-field .hint {
    position: absolute;
    top: -24px;
    left: 0;
    border-radius: 8px;
    padding: 2px 8px;
    color: white;
    font-size: 0.75rem;
}

/* PAGINATION */
.pagination {margin: 0; padding: 0; margin-top: 30px; list-style: none;}
.pagination li {display: inline-block;}
.pagination li a {display: inline-block; line-height: 30px; margin-right: 10px; width: 30px; background: var(--wcms-background-ultralight); text-align: center; border-radius: 15px; transition: 0.2s all;}
.pagination li:last-child {margin-right: 0px;}
.pagination li.selected a, .pagination li a:hover {background: var(--wcms-color-links); color: var(--wcms-background-primary);}

/* 404 */
.er-grid {display: grid; grid-template-columns: 1fr 1fr minmax(0, 1fr);}
.er-info {max-width: 573px;}
.er-info h1 {font-size: 40px; line-height: 130%; margin-bottom: 32px;}
.er-info p {font-size: 24px; line-height: 130%; margin-bottom: 45px;}
.er-info img {max-width: 100%;}
.er-links {border-radius: 32px; padding: 16px 40px; background: var(--wcms-background-primary); border: 1px solid var(--wcms-color-ultralight);}
.er-links-list {list-style: none; margin: 0; padding: 0;}
.er-links-list li {padding: 15px 32px; padding-top: 48px; border-bottom: 1px solid var(--wcms-color-ultralight); border-radius: 16px;}
.er-links-list li:last-child {border-bottom: none;}
.er-links-list li a {font-size: 20px; font-weight: bold; text-transform: uppercase; color: var(--wcms-color-primary);}
.er-links-list li a .a-link {display: inline-block; margin-left: 10px;}
@media (max-width: 1440px) {
	.er-grid {grid-template-columns: 1fr 0 minmax(0, 1fr); gap: 40px;}
}
@media (max-width: 992px) {
	.er-grid {grid-template-columns: 1fr; gap: 40px;}
}
@media (max-width: 768px) {
	.er-links {padding: 15px;}
	.er-links-list li {padding: 15px;}
}

/* POST */
.post-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}
.post-content {
    max-width: 50%;
    width: 100%;
}
.post-links {
    width: 25%;
    border: 1px solid #ddebeb;
    border-radius: 32px;
    padding: 40px;
    background: white;
    height: fit-content;
}
.post-links ul {padding-left: 0;}
.post-link {
    list-style: none;
    padding-bottom: 16px;
    border-bottom: 1px solid #B3D7D7;
    margin-bottom: 20px;
}
.post-link:last-child {
    border-bottom: none;
}
.post-links-caption {
    font-size: 1.75rem;
    line-height: 120%;
    margin-bottom: 32px;
}
.post-links-date {
    font-size: 17px;
    line-height: 145%;
    color: rgba(54, 60, 61, 0.7);
    margin-bottom: 8px;
}
.post-links-name {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 120%;
    color: #363c3d;
}

@media (max-width: 1150px) {
	.post-content {
        max-width: 65%;
    }
}
@media (max-width: 992px) {
	.post-content {max-width: 100%;}
    .post-links {
        max-width: 100%; 
        width: 100%;
        border-radius: 48px;
        margin-top: 20px;
    }
    .post-flex {flex-direction: column;}
}