@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --font-family: "Open Sans", sans-serif;
    --title-family: "Noto Sans", sans-serif;
    --post-family: "Noto Sans", sans-serif;
    --content-width: 1280px;
    --container-offset: 15px;
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --light-color: #fff;
    --text-color: #151515;
    --primary-color: #0E4A8B;
    --card-border: 10px;
    --btn-border: 4px;
    --bg-opacity-05: rgba(0, 0, 0, 0.05)
}

.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: red solid 2px;
    outline-offset: 2px
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: .4;
    pointer-events: none
}

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

.page {
    height: 100%;
    font-family: var(--font-family, sans-serif), serif;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

.page__body {
    margin: 0;
    min-width: 360px;
    min-height: 100%;
    font-size: 16px
}

body {
    display: flex;
    flex-direction: column;
}

img {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

a {
    text-decoration: none;
    color: var(--text-color)
}

h1, h2, h3, h4, h5, h6 {
    margin: 0
}

.site-container {
    overflow: hidden
}

.is-hidden {
    display: none !important
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0
}

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff
}

.input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-decoration, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
    display: none
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0)
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: var(--container-width)
}

.centered {
    text-align: center
}

.dis-scroll {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.page--ios .dis-scroll {
    position: relative
}

.section__title {
    margin: 0;
    font-weight: 500;
    font-size: 32px
}

.section__desc {
    display: block;
    margin-top: 12px;
    opacity: .6
}

.section__head {
    padding-bottom: 32px
}

.title {
    font-family: var(--title-family);
}

.title-h2 {
    font-weight: 700;
    font-size: 32px
}

.title-h3 {
    font-weight: 600;
    font-size: 28px
}

.title-h3-small {
    font-weight: 600;
    font-size: 24px
}

.title-h4 {
    font-weight: 600;
    font-size: 16px
}

.clamped {
    display: -webkit-box;
    overflow: hidden;
    max-height: 3.9em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

.hr {
    width: 1px;
    height: 20px;
    background-color: #f2f2f3
}

.btn-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, .05)
}

.btn-slider--light {
    color: var(--light-color);
    background-color: rgba(255, 255, 255, .1);
    opacity: .7
}

.count-slider--light {
    font-weight: 500;
    color: var(--light-color);
    opacity: .7
}

.grid {
    display: -ms-grid;
    display: grid
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(92, 89, 89, .04);
        border-bottom: 1px solid #f2f2f3;
}

.header-first {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    /* border-bottom: 1px solid #f2f2f3; */
    padding: 16px 0;
}

.header-first__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 32px
}

.header-first__left a {
    border-bottom: 1px solid transparent;
    font-family: var(--title-family), serif;
    font-weight: 500;
    line-height: 24px
}

.header-first__left a.active {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.header-first__center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header-first__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 24px
}

.header-second {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: 1fr auto;
    grid-template-columns:1fr auto
}

.header-second__container {
    padding: 0 0 16px 0;
}

.header-second__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem
}

.header-second__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px
}

.lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    padding: 8px 12px 8px 14px;
    font-family: var(--title-family), serif;
    font-weight: 600;
    font-size: .875rem;
    background-color: var(--bg-opacity-05);
    gap: 8px
}

.lang__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding-left: 0;
    gap: 12px;
}

.social__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 18px;
    height: 18px
}

.social__item:first-child .social__link:hover svg path {
    fill: #54a8d8;
}

.social__item:last-child .social__link:hover svg path {
    fill: #f200d0;
}

.search__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--card-border);
    padding: 8px;
    background-color: var(--bg-opacity-05);
    transition: all .2s ease-out;
}

.search__link:hover {
    opacity: .7;
}

.subscr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--card-border);
    padding: 11px 20px;
    font-family: var(--title-family), serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: var(--text-color);
    background-color: var(--bg-opacity-05);
    cursor: pointer;
    transition: .2 all easy;
}

.subscr:hover {
    opacity: .7;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--title-family), serif;
    font-weight: 500;
    gap: 32px;
    margin: 0;
}

.home-news {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 300px 1fr;
    gap: 32px
}

.news-slider-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 24px;
}

.slider-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-border)
}

.slider-item__slider {
    display: block;
    height: calc(100vh - 270px)!important;
    border-radius: var(--card-border);
    overflow: hidden;
    cursor: pointer;
}

.slider-item__img {
    height: 100%;
}

.slider-item__slider:hover img {
    -webkit-transition: .4s;
    transition: .4s;
    transform: scale(1.05);
}

.slider-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
}

.slider-item__tags {
    width: 100%;
    margin-bottom: 8px;
    opacity: .8;
}

.slider-item__tags a {
    padding: 0;
    color: var(--light-color);
    background-color: transparent;
    opacity: .9
}

.slider-item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px;
    padding-bottom: 48px;
    width: 100%;
    color: var(--light-color)
}

.slider-item__title {
    display: block;
    margin-bottom: 16px;
    width: 90%;
    font-family: var(--title-family), serif;
    font-weight: 600;
    font-size: 42px;
    text-align: left;
    line-height: 1.2 !important;
    color: var(--light-color)
}

.slider-item__date {
    font-family: var(--title-family), serif;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    color: var(--light-color);
    opacity: .9
}

.slider-item__date a {
    color: currentColor;
}

.slider-item__actions {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(62%, rgba(14, 74, 139, 0)), color-stop(63.94%, rgba(14, 74, 139, .104)), color-stop(65.89%, rgba(14, 74, 139, .116)), color-stop(67.83%, rgba(14, 74, 139, .13)), color-stop(69.78%, rgba(14, 74, 139, .16)), color-stop(71.72%, rgba(14, 74, 139, .194)), color-stop(73.67%, rgba(14, 74, 139, .233)), color-stop(75.61%, rgba(14, 74, 139, .276)), color-stop(77.56%, rgba(14, 74, 139, .324)), color-stop(79.5%, rgba(14, 74, 139, .367)), color-stop(81.44%, rgba(14, 74, 139, .406)), color-stop(83.39%, rgba(14, 74, 139, .44)), color-stop(85.33%, rgba(14, 74, 139, .47)), color-stop(87.28%, rgba(14, 74, 139, .484)), color-stop(89.22%, rgba(14, 74, 139, .496)), color-stop(91.17%, rgba(14, 74, 139, .6)));*/
    /*background: linear-gradient(rgba(14, 74, 139, 0) 62%, rgba(14, 74, 139, .104) 63.94%, rgba(14, 74, 139, .116) 65.89%, rgba(14, 74, 139, .13) 67.83%, rgba(14, 74, 139, .16) 69.78%, rgba(14, 74, 139, .194) 71.72%, rgba(14, 74, 139, .233) 73.67%, rgba(14, 74, 139, .276) 75.61%, rgba(14, 74, 139, .324) 77.56%, rgba(14, 74, 139, .367) 79.5%, rgba(14, 74, 139, .406) 81.44%, rgba(14, 74, 139, .44) 83.39%, rgba(14, 74, 139, .47) 85.33%, rgba(14, 74, 139, .484) 87.28%, rgba(14, 74, 139, .496) 89.22%, rgba(14, 74, 139, .6) 91.17%)*/
}

.blogs {
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px
}

.blogs__container {
    padding: 60px 0;
    background-color: #fafafa;
}

.blog-item__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px
}

.blog-item__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--card-border);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.blog-item__img img {
    width: 100%;
    height: 100%;
}

.blog-item__link {
    font-size: 18px;
    line-height: 1.3
}

.blog-item__content {
    margin-top: 12px
}

.news-aside {
    position: relative;
    width: 100%;
    background-color: var(--bg-opacity-05);
    border-radius: 10px;
    overflow: hidden;
}

.news-aside__wrap {
    position: relative;
    overflow-y: auto;
    border-radius: var(--card-border);
    width: 100%;
    height: 100%;
    max-width: 300px
}

.news-aside-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.news-aside-block:last-child {
    margin-bottom: 32px;
    border-bottom: none; 
}

.news-aside-block__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--card-border);
    width: 100px;
    height: 90px
}

.news-aside-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-aside-block__content {
    width: 100%
}

.news-aside-block__title {
    display: block;
    margin-top: 8px;
    font-family: var(--title-family);
    font-weight: 500;
    line-height: 1.5;
    transition: color .2s ease;
}

.news-aside-block__title:hover {
    color: var(--primary-color);
}

.news-aside-block__date {
    font-size: 14px;
    opacity: .45
}

.news-aside__title {
    padding: 24px 16px 16px 16px;
    width: 100%;
    font-family: var(--title-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.286;
    text-transform: uppercase;
}

.news-aside__list {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 0 16px 24px 16px;
}

.news-aside__more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    background: #f2f2f2;
}

.news-aside__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    width: 100%;
    font-family: var(--title-family), serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
    background: #fafafa;
    border-radius: var(--btn-border);
    padding: 8px 12px;
    gap: 8px;
    margin: 20px 0;
}

.news-item__img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--card-border);
    padding-top: 56.25%;
    width: 100%
}

.news-item__img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-item__tags {
    margin-top: 16px;
    margin-bottom: 6px;
}

.news-item__title {
    display: block;
    margin-bottom: 12px;
    font-family: var(--title-family), serif;
    font-weight: 500;
    font-size: 28px
}

.news-item__date {
    font-size: 14px;
    opacity: .7
}

.news-slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.news-slider__actions {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.news-slider__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, .05)
}

.tag {
    font-size: 14px;
    opacity: .7
}

.section__container {
    padding: 100px 0
}

.section-two {
    display: -ms-grid;
    display: grid;
    grid-gap: 48px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
}

.section-slider {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns:1fr;
    padding-bottom: 40px;
    position: relative;
}

.section-slider__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 32px;
    font-size: 28px
}

.section-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.blog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 130px 1fr;
    grid-template-columns: 130px 1fr;
    gap: 20px
}

.blog-reverse {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 130px 1ак;
    grid-template-columns: 130px 1fr;
    gap: 20px
}

.blog-tags {
    margin-bottom: 8px;
    font-size: 14px;
}

.blog-tags a {
    border-radius: var(--btn-border);
    font-size: 13px;
    font-weight: 500;
    padding: 3px 6px;
    text-transform: lowercase;
    color: rgba(21, 21, 21, .8);
    background-color: #f2f2f2;
}

.blog-tags a:hover {
    color: var(--primary-color); 
    opacity: 1;
}

.blog__title {
    display: block;
    margin-bottom: 8px;
    font-family: var(--title-family), sans-serif;
    font-weight: 500
}

.blog__title:hover {
    color: var(--primary-color); 
}

.blog__publ {
    font-size: 13px;
    opacity: .5
}

.blog-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    height: 100px;
    border-radius: 10px
}

.blog-img img {
    width: 100%;
    height: 100%
}

.blog-link {
    position: relative
}

.blog-link__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.blog-link__img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 39, 39, .5)
}

.blog-link__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.blog-link__text {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    color: #fff;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%)
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    gap: 1rem
}

.pagination-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem
}

.pagination-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.guide-preview {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 300px;
    grid-template-columns:1fr 300px;
    gap: 32px
}

.guide-preview--1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3
}

.guide-preview--2 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2
}

.guide-preview--3 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3
}

.card-link {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-border);
    padding: 24px
}

.card-link__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.card-link__img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 39, 39, .5)
}

.card-link__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.card-link__text {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    text-align: center;
    color: #fff;
    opacity: .9;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.card-link:hover .card-link__img {
    opacity: 1;
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

.card-link:hover .card-link__text {
    opacity: 1
}

.subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.subscribe__container {
    padding-bottom: 60px
}

.subscribe__logo {
    margin-right: 0
}

.subscribe__desc {
    margin-top: 32px;
    font-family: var(--title-family), serif;
    font-weight: 500;
    font-size: 18px
}

.subscribe__form {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr auto;
    grid-template-columns:1fr auto;
    width: 474px;
    gap: 8px
}

.subscribe__form input {
    outline: 0;
    border: none;
    border-radius: var(--btn-border);
    padding: 12px 20px;
    background-color: var(--bg-opacity-05)
}

.subscribe__form button {
    border: none;
    border-radius: var(--btn-border);
    padding: 12px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    color: var(--light-color);
    background-color: var(--primary-color);
    cursor: pointer
}

.post {
    display: -ms-grid;
    display: grid;
    grid-gap: 48px;
    -ms-grid-columns: 1fr 300px;
    grid-template-columns:1fr 300px
}

.post__container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.post-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px
}

.post__title {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 48px
}

.post__date {
    font-family: var(--title-family), serif;
    font-weight: 500;
    font-size: 14px;
    opacity: .5
}

.post-text {
    font-size: 16px;
    line-height: 1.7
}

.post-img-author {
    margin-top: 10px;
    font-size: 14px;
    opacity: .5
}

.post-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: var(--card-border);
    padding: 8px 16px 8px 10px;
    color: var(--primary-color);
    background-color: rgba(14, 74, 139, .1);
    gap: 4px;
    border: none;
    cursor: pointer;
    transition: opacity .2s ease;
}

.post-back:hover {
    opacity: .7;
}

.post-back svg {
    stroke: var(--primary-color)
}

.post__share {
    margin-top: 8px
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	flex-wrap: wrap;
    font-family: var(--title-family), serif;
    font-weight: 500;
    font-size: 14px;
    gap: 8px
}

.tags a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.tags__item {
    border-radius: var(--btn-border);
    padding: 8px 12px;
    background-color: var(--bg-opacity-05);
    opacity: .7;
    text-transform: lowercase;
}

.share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.share a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--btn-border);
    padding: 12px;
    background-color: var(--bg-opacity-05)
}

.share a svg {
    width: 24px;
    height: 24px
}

.catalog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns:1fr;
    gap: 64px
}

.catalog__container {
    padding: 60px 0;
    background-color: #fafafa
}

.catalog-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 12px
}

.catalog-preview {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--card-border);
    height: 582px
}

.catalog-preview__img {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.catalog-preview__img img {
    width: 100%;
    height: 100%
}

.catalog-preview__content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60%;
    color: var(--light-color);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.catalog-preview__title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center
}

.catalog-preview__desc {
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.catalog-preview__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    border-radius: 50px;
    padding: 12px 15px 12px 20px;
    width: 100%;
    font-family: var(--title-family), serif;
    font-weight: 600;
    background-color: var(--light-color);
    color: rgba(0, 0, 0, .5)
}

.catalog-preview__select-list {
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgba(0, 0, 0, .5);
    font-weight: 600;
}

.catalog-preview__overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 9, 41, .6)
}

.catalog-slider {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr);
    gap: 12px
}

.catalog-slider__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 186px
}

.country-page__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 500px;
    max-height: 500px
}

.country-page__preview > img {
    width: 100%;
    height: 100%
}

.country-page__overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 9, 41, .6)
}

.country-page__text {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    gap: 12px
}

.country-page__flag {
    width: 192px;
    height: 99px;
    -o-object-fit: contain;
    object-fit: contain
}

.country-page__title {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--light-color)
}

.country-page__content {
    padding: 60px 0
}

.info-country__title {
    font-weight: 500;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 32px
}

.info-country__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows:(auto) [ 6 ];
    grid-template-rows:repeat(6, auto);
    gap: 16px
}

.info-country__cat {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 300px; 
    gap: 32px;
    align-items: flex-start;
}

.info-country__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    margin-bottom: 32px;
    gap: 16px
}

.info-country__grid .info-country__item {
    border: none;
    border-radius: var(--card-border);
    padding: 16px;
    background-color: var(--bg-opacity-05)
}

.info-country__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns:1fr;
    gap: 12px
}

.info-country__item:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--bg-opacity-05);
}

.info-country__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: .7;
    gap: 8px
}

.info-country__label img {
    width: 24px;
    height: 24px
}

.info-country__label span {
    font-family: var(--title-family), serif
}

.info-country__text {
    font-family: var(--title-family), serif;
    font-weight: 600
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 60px 0
}

.footer__container {
    background-color: var(--bg-opacity-05)
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 32px;
    border-top: 1px solid var(--bg-opacity-05);
    padding-top: 32px;
    width: 100%;
    font-size: 14px;
    opacity: .7
}

.footer-part__title {
    margin-bottom: 24px
}

.footer-links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns:1fr;
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    gap: 16px
}

.footer-links__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--title-family), serif;
    opacity: .7;
    gap: 8px
}

.footer-links__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px
}

.page__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: var(--vh)
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5)
}

.modal-content {
    font-family: var(--title-family), serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    margin: auto;
    margin-top: 10%;
    padding: 32px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(92, 89, 89, 0.4);
}

.modal-content h2 {
    font-weight: 500;
    margin-bottom: 24px;
}

.modal-content .logo {
    width: 80%;
    margin-bottom: 32px;
}

.modal-content .logo img {
    width: 100%;
    height: 100%;
}

.modal-content__btn {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 12px;
}

.modal-content__btn button {
    font-weight: 600;
    padding: 14px 20px;
    color: var(--text-color);
    background-color: var(--bg-opacity-05);
    border-radius: var(--card-border);
    border: none;
    outline: non;
    cursor: pointer;
}

.modal-content__btn button:hover {
    opacity: .7;
}

.user-btn {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px
}

#touristBtn {
    background-color: #4caf50;
    color: #fff
}

#specialistBtn {
    background-color: #008cba;
    color: #fff
}

.hidden {
    display: none;
}

.guide__container {
    background-color: #fafafa;
}

.search-highlight {
    background-color: yellow; /* Желтая подсветка */
    font-weight: bold; /* Полужирный шрифт */
    color: black; /* Черный цвет текста */
}

/* .search:hover {
    opacity: .5;
} */

.main {
    margin-top: 123px;
}
.slider-home .swiper-button-prev {
  right: 64px!important;
  top: 46px!important;
  left: auto!important;
}

.slider-home .swiper-button-next {
  right: 20px !important;
  top: 46px!important;
}
.calendar__container {
	padding: 60px 0;
}

.gtranslate_wrapper {
  display: flex;
  gap: 4px;
}

.gtranslate_wrapper a img {
  margin-right: 0!important;
}

.gtranslate_wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  overflow: hidden;
  border-radius: 2px;
}

.gtranslate_wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maps-link__link span {
  width: min-content;
}

.skiptranslate {
  display: none!important;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.forum__container {
    background: #fff;
}

.forum__head {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 48px;
}

.forum__title {
    font-size: 48px;
    text-align: center;
}

.forum-forms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}

.forum-forms__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-weight: 600;
    color: #0082C7;
    background: #e9eefb;
    border-radius: 16px;
    letter-spacing: .05px;
    transition: all .2s ease;
}

.forum-forms__link:hover {
    opacity: .7;
}

.forum-forms__link svg {
    width: 24px;
    height: 24px;
}

.forum__prev-img {
    display: flex;
    align-items: center;
    justify-content: center;  
}

.forum__prev-img img {
    width: 84%
}

.forum-content__title {
    margin-bottom: 12px;
}

.forum__link {
    display: flex;
    flex-direction: column; 
    gap: 24px;
    margin-top: 48px;
}

.forum__link-desc {
    font-family: var(--title-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center; 
    width: 80%;
    margin: 0 auto;
}

.forum__link-desc p {
    margin: 0;
}

.forum__link-desc span {
    color: #ED2790;
}

.forum-content {
    font-family: var(--title-family);
    width: 80%;
    font-size: 18px;
    margin: 0 auto;
    margin-top: 100px;  
}

.forum-content__block {
    margin-bottom: 36px;
}

.forum-content__title {
    color: #0082C7;
}

.forum-content__list {
    display: flex;
    flex-direction: column; 
    gap: 12px;
}