* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    overflow-y: auto;
}

body, input, button {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 21px;
}

ul {
    list-style: none;
}


.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}


.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 30px 0;
    border-bottom: 1px solid #A7B2C7;
    margin-bottom: 20px;
}

.header__logos {
    flex: none;
    width: 30%;
    min-width: 300px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header__logos_link {
    display: block;
}

.header__logos_link img {
    width: 100%;
}

.header__header-site {
    flex: none;
    width: 65%;

    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;

    text-align: center;
    color: #010C28;
}

.header__mid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.header__search {
    margin-right: auto;
    position: relative;
    flex: none;
    width: 30%;
}

.header__search input {
    width: 100%;
    border: 1px solid #A7B2C7;
    padding: 10px 15px;
}

.header__search input::placeholder {
    color: #A7B2C7;
}

.header__search button {
    position: absolute;

    width: 40px;
    height: 40px;

    border: 0;

    background-color: transparent;
    background-image: url("../images/ico_search.svg");
    background-repeat: no-repeat;
    background-position: center;

    right: 0;
    cursor: pointer;
} 

.header__vimp {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.header__vimp svg {
    width: 100%;
    height: 100%;
}

.header__vimp svg path {
    fill: #465779;
}

.header__vimp:hover svg path {
    fill: #A7B2C7;
}

.header__translate,
.header__translate .gtranslate_wrapper {
    display: flex;
    gap: 10px;
}

.header__translate a {
    color: #A7B2C7;
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 10px;
}

.header__translate a:not(:last-of-type):after,
.header__translate .gtranslate_wrapper a:not(:last-of-type):after {
    content: '';
    flex: none;
    display: block;
    width: 1px;
    height: 15px;
    background-color: #A7B2C7;
}

.header__translate a:hover {
    color: #465779;
}


.nav {
    background-color: #465779;
}

.nav:not(.active) {
    margin-bottom: 40px;
}

.nav__list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav__link_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__link_arrow {
    background-image: url("../images/ico_arr_down.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}


.nav.active .nav__link_arrow {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.nav__item-has-children > .nav__link {
    width: 80%;
}

.nav:not(.active) .nav__item-has-children:hover .nav__link_arrow,
.nav.active .show-children .nav__link_arrow {
    transform: rotate(180deg);
}

.nav__list li {
    position: relative;
}

.nav__list li ul {
    display: none;
    position: absolute;
    background-color: #465779;
    top: 100%;
    left: 0;
    min-width: 250px;
    padding: 0 15px;
    z-index: 100;
    box-shadow: 0 4px 5px rgba(1, 12, 40, 0.5);
}

.nav:not(.active) .nav__list li:hover > ul,
.nav.active .nav__list li.show-children > ul {
    display: block;
}

.nav.active .nav__list li > ul {
    box-shadow: none;
}

.nav__list ul ul {
    top: 0;
    left: 100%;
    min-width: 200px;
    padding-left: 20px;
}

.nav__link {
    display: block;
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
}

.nav__link:hover {
    color: #7994FF;
}

.nav__toggle,
.nav__close {
    display: none;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.nav__close {
    margin-left: auto;
}

.nav__toggle svg,
.nav__close svg {
    width: 100%;
    height: 100%;
}

.nav__toggle svg path {
    stroke: #465779;
}

.nav__close svg path {
    stroke: #A7B2C7;
}

.nav__toggle:hover svg path {
    stroke: #A7B2C7;
}

.nav__close:hover svg path {
    stroke: #010C28;
}

.nav.active .nav__close {
    display: block;
}

.nav.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
    width: 80%;
    height: 100%;
    min-width: 250px;
    max-width: 400px;
    box-shadow: 0 0 30px #010C28;
}

.nav.active .nav__list {
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.nav.active .nav__list li ul {
    position: static;
}

.main {
    padding-bottom: 40px;
}

.home .main {
    margin-top: -40px;
    padding-bottom: 0;
}

.promo {
    margin-bottom: 40px;
}

.promo .container {
    width: 100%;
    max-width: 100%;
}

.swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-main {
    height: 500px;
}

.swiper-logos {
    height: 150px;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: transform;
}

.swiper .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.swiper .slide-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-main .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-logos .slide-image img {
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.swiper .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(1, 12, 40, 0.8);
    color: #F3F7FF;
    padding: 15px;
    z-index: 2;
    width: 100%;
}

.swiper .slide-content .slide-title,
.swiper .slide-content .slide-description {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.swiper .slide-title {
    margin-bottom: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    line-height: 45px;
    text-align: center;
    text-decoration: none;

    border: 1px solid #A7B2C7;
    background-color: rgba(255, 255, 255, 0.5);
    color: #465779 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #F3F7FF;
    color: #010C28 !important;
}

.swiper-button-next {
    transform: rotate(180deg);
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-navigation-icon {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.logos {
    background-color: #D3D7E7;
    padding: 40px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs,
.breadcrumbs a {
    font-size: 14px;
    line-height: 18px;
    color: #A7B2C7;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: #465779;
}

.main {
    overflow: hidden;
}

.page__container h1:not(.page__title),
.page__container h2, .page__container h3, .page__container h4, .page__container h5, .page__container h6,
.page__container p,
.page__container ul {
    margin-bottom: 20px;
}

.page__container h1:not(.page__container__title) {
    font-size: 24px;
    line-height: 28px;
}

.page__container h2 {
    font-size: 21px;
    line-height: 26px;
}

.page__container h3 {
    font-size: 18px;
    line-height: 24px;
}

.page__container h4, .page__container h5, .page__container h6 {
    font-size: 16px;
    line-height: 24px;
}

.page__container table,
.page__container table th,
.page__container table td {
    border: 1px solid #A7B2C7;
}

.page__container table {
    border-collapse: collapse;
    margin-bottom: 40px;
}

.page__container table th,
.page__container table td {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 18px;
}

.page__container img {
    margin: 20px;
}

.page__container p > img {
    margin-bottom: 0;
}

.page__container ul,
.page__container ol {
    list-style: disc;
    padding-left: 20px;
}

.page__container label {
    font-size: 14px;
    line-height: 18px;
    color: #465779;
}

.page__container input,
.page__container textarea,
.page__container select,
.page__container button {
    border: 0;
    border-radius: 5px;
    padding: 10px;
    background-color: #EFF2F9;
    margin-bottom: 20px;
}

.page__container input,
.page__container textarea,
.page__container select {
    color: #010C28;
}

.page__container input,
.page__container button {
    font-size: 14px;
    line-height: 18px;
}

.page__container input::placeholder {
    color: #465779;
}

.page__container button {
    background-color: #010C28;
    color: #EFF2F9;
    cursor: pointer;
    opacity: 0.8;
}

.page__container button:hover {
    opacity: 1;
}

.page__container iframe[src*="youtube"],
.page__container iframe[src*="youtu.be"],
.page__container iframe[src*="vimeo"],
.page__container iframe[src*="rutube"] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.page__container .wp-block-video video {
    width: 100%;
    height: auto;
}

.news__title,
.logos__title,
.page__title {
    font-size: 28px;
    line-height: 38px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #010C28;
}

.logos__title {
    margin-bottom: 20px;
}

.page__content {
    line-height: 24px;
    color: #010C28;
	overflow: hidden;
}

.page__content p:last-child {
    margin: 0;
}

.page__content a {
    color: #576cc1;
}

.page__content a:hover {
    color: #010C28
}

.page__content .table__wrapper {
    display: inline-block;
    max-width: 100%;
    overflow: auto;
    margin: 0 0 1em;
    max-height: 80vh;
}

.page__content img {
	max-width: 100%;
}

.columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.columns__item {
    flex: 1 1;
    min-width: 300px;

    display: flex;
    overflow: hidden;
}

.columns__item_img {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

.columns__item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 !important;
}

.columns__item_text {
    padding: 20px;
}

.columns.columns-2 .columns__item {
    flex: none;
    width: calc(50% - 2px - 10px);
}

.columns.columns-border .columns__item {
    border: 1px solid #A7B2C7;
}

.archive__filter {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.archive__filter_item {
    flex: none;
}

.archive__filter_title {
    font-weight: normal;
    color: #A7B2C7;
    margin-bottom: 5px;
}

.archive__filter_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.archive__filter_list_item {
    border: 1px solid #A7B2C7;
}

.archive__filter_link {
    display: block;
    color: #010C28;
    text-decoration: none;
    padding: 10px 15px;
    color: #010C28;
    background-color: #F3F7FF;
}

.archive__filter_link:hover,
.archive__filter_list_item.active .archive__filter_link {
    background-color: #465779;
    color: #fff;
}

.posts__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.posts__item {
    border: 1px solid #A7B2C7;
    display: flex;
}

.posts__item_thumb img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
}

.posts__item_thumb_link {
    display: block;
    width: 300px;
    height: 200px;
}

.posts__item_text {
    padding: 20px;
}

.posts__item_date,
.post__item_category,
.news__item_date {
    font-size: 14px;
    color: #A7B2C7;
    margin-bottom: 5px;
}

.post__item_category,
.news__item_category {
    border: 1px solid #A7B2C7;
    border-radius: 3px;
    padding: 0 5px;
}

.posts__item_title,
.news__item_title {
    font-weight: bold;
    margin-bottom: 10px;
}

.posts__item_excerpt,
.news__item_excerpt {
    margin-bottom: 10px;
}

.posts__item_link {
    color: #576cc1;
}

.posts__item_link:hover {
    color: #010C28
}

.posts__pagination .nav-links {
    display: flex;
    justify-content: center;
}

.posts__pagination .nav-links > .page-numbers {
    flex: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    text-decoration: none;
    display: block;
}

.posts__pagination .nav-links > .page-numbers:not(.prev):not(.next) {
    border: 1px solid #A7B2C7;
    background-color: #F3F7FF;
    color: #010C28;
}

.posts__pagination .nav-links > .page-numbers:not(.prev):not(.next):hover,
.posts__pagination .nav-links > .page-numbers.current:not(.prev):not(.next) {
    background-color: #465779;
    color: #fff;
}

.posts__pagination .nav-links > .page-numbers.prev,
.posts__pagination .nav-links > .page-numbers.next {
    color: #A7B2C7;
}

.posts__pagination .nav-links > .page-numbers.prev:hover,
.posts__pagination .nav-links > .page-numbers.next:hover {
    color: #010C28;
}

.posts__pagination .screen-reader-text {
    display: none;
    opacity: 0;
    visibility: hidden;
}


.search__form {
    margin-right: auto;
    position: relative;
    flex: none;
    width: 50%;
    margin-bottom: 40px;
}

.search__form input {
    width: 100%;
    border: 1px solid #A7B2C7;
    padding: 10px 15px;
    border-radius: 0 !important;
    background-color: #fff !important;
    margin-bottom: 5px;
}

.search__form input::placeholder {
    color: #A7B2C7;
}

.search__form button {
    position: absolute;

    width: 40px;
    height: 40px;

    border: 0;

    background-color: transparent;
    background-image: url("../images/ico_search.svg");
    background-repeat: no-repeat;
    background-position: center;

    right: 0;
    cursor: pointer;
}

.search__counter {
    font-size: 14px;
    color: #A7B2C7;
}

.news {
    margin-bottom: 60px;
}

.news__wrapper {
    display: flex;
    gap: 10px;
}

.news__left {
    width: 100%;
}

.news__right {
    width: 350px;
}

.news__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 10px;
}

.news__list > .news__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.news__item {
    padding: 20px;
    display: flex;
    align-items: end;
    min-height: 250px;
    background-color: #A7B2C7;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.news__item_description,
.news__item_link {
    color: #F3F7FF;
}

.news__item_date,
.news__item_category,
.news__item_title,
.news__item_excerpt,
.news__item_link {
    font-size: 14px;
    line-height: 18px;
}

.news__item_category {
    margin-left: 10px;
}

.news__item_title {
    margin-top: 5px;
}

.news__item_link {
    opacity: 0.8;
}

.news__item_link:hover {
    opacity: 1;
}

.news__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 12, 40, 0.6);
    z-index: 1;
}

.news__item > * {
    position: relative;
    z-index: 2; 
}

.news__more {
    margin-top: 20px;
}

.news__link {
    color: #010C28;
}

.news__link:hover {
    color: #576cc1;
}

.other {
    display: flex;
    flex-wrap: wrap;
}

.other__item {
    flex: 1 1;
    min-width: 200px;
    max-width: 300px;
}

.other__link {
    height: 100%;
    display: block;
    padding: 30px;
    background-color: #d5dceb;
    border: 1px solid #A7B2C7;
    color: #010C28;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.other__link:hover {
    background-color: #A7B2C7;
    text-decoration: underline;
}


.footer {
    background-color: #465779;
    padding: 60px 0;
}

.footer .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer,
.footer a {
    color: #F3F7FF;
} 

.footer__logo {
    min-width: 100px;
}

.footer__logo img {
    width: 120px;
}

.footer__widgets {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.footer__columns .footer__column:last-child {
    margin-left: auto;
    width: 45%;
    min-width: 400px;
} 

.footer__columns .footer__column iframe {
    width: 100%;
    min-height: 250px;
    border: 0;
}

.footer__contacts h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer__contacts p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}

.footer__contacts p span {
    font-size: 12px;
    line-height: 16px;
    color: #A7B2C7;
}

.footer__contacts p span.ico_inst {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("../images/ico_inst.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: -10px;
    margin-right: 10px;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
}

.gallery-item {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}

.gallery-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.gallery-item a:hover {
    opacity: 0.9;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item a:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery.gallery-columns-1 {
    display: block;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
    margin-bottom: 15px;
}

.gallery.gallery-columns-2 .gallery-item {
    width: calc(50% - 7.5px);
}

.gallery.gallery-columns-3 .gallery-item {
    width: calc(33.333% - 10px);
}

.gallery.gallery-columns-4 .gallery-item {
    width: calc(25% - 11.25px);
}

.gallery.gallery-columns-5 .gallery-item {
    width: calc(20% - 12px);
}

.gallery.gallery-columns-6 .gallery-item {
    width: calc(16.666% - 12.5px);
}

.gallery.gallery-columns-7 .gallery-item {
    width: calc(14.285% - 12.85px);
}

.gallery.gallery-columns-8 .gallery-item {
    width: calc(12.5% - 13.125px);
}

.gallery.gallery-columns-9 .gallery-item {
    width: calc(11.111% - 13.33px);
}


.gallery.gallery-with-border .gallery-item img {
    border: 2px solid #e0e0e0;
    padding: 3px;
    background: white;
}


.gallery.gallery-rounded .gallery-item img {
    border-radius: 8px;
}

.gallery.gallery-rounded .gallery-caption {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


.gallery.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 10px;
    grid-auto-flow: dense;
}

.gallery.gallery-masonry .gallery-item {
    width: 100%;
    height: 100%;
}

.gallery.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gallery.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 10px 0;
}

.gallery.gallery-slider .gallery-item {
    flex: 0 0 auto;
    width: 80%;
    scroll-snap-align: start;
    margin-right: 15px;
}


.gallery-item a[data-lightbox] {
    cursor: zoom-in;
}


.gallery.alignleft {
    float: left;
    margin-right: 20px;
    margin-left: 0;
}

.gallery.alignright {
    float: right;
    margin-left: 20px;
    margin-right: 0;
}

.gallery.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: table;
}


.gallery .attachment-thumbnail {
    max-width: 150px;
}


.gallery .attachment-medium {
    max-width: 300px;
}


.gallery .attachment-large {
    max-width: 1024px;
}


.gallery .attachment-full {
    max-width: 100%;
}


.gallery:empty {
    display: none;
}

.gallery-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    border: 2px dashed #ddd;
    border-radius: 8px;
}


.tiled-gallery {
    margin: 30px 0;
}


.envira-gallery-wrap {
    margin: 20px 0;
}


.ngg-galleryoverview {
    margin: 25px 0;
}


.gallery.gallery-darken .gallery-item a:hover img {
    filter: brightness(0.8);
}


.gallery.gallery-zoom .gallery-item {
    overflow: hidden;
}

.gallery.gallery-zoom .gallery-item img {
    transition: transform 0.5s ease;
}

.gallery.gallery-zoom .gallery-item:hover img {
    transform: scale(1.1);
}


.gallery.gallery-bw .gallery-item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.gallery.gallery-bw .gallery-item:hover img {
    filter: grayscale(0%);
}



.aligncenter {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.aligncenter img,
.aligncenter iframe,
.aligncenter video,
.aligncenter object,
.aligncenter embed {
    margin: 0 auto !important;
    display: block !important;
}


.alignleft {
    float: left !important;
    margin: 5px 20px 10px 0 !important;
    text-align: left !important;
    display: inline !important;
}

.alignleft img,
.alignleft iframe,
.alignleft video {
    float: left !important;
    margin-right: 15px !important;
}


.alignright {
    float: right !important;
    margin: 5px 0 10px 20px !important;
    text-align: right !important;
    display: inline !important;
}

.alignright img,
.alignright iframe,
.alignright video {
    float: right !important;
    margin-left: 15px !important;
}


.wp-block,
.aligncenter .wp-block,
.alignleft .wp-block,
.alignright .wp-block {
    max-width: 100% !important;
}


.wp-block.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table !important;
}


.wp-block.alignleft {
    float: left !important;
    margin-right: 2em !important;
}

.wp-block.alignright {
    float: right !important;
    margin-left: 2em !important;
}


.gallery.aligncenter {
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


.gallery.alignleft {
    float: left !important;
    margin: 10px 20px 10px 0 !important;
    max-width: 50% !important;
}


.gallery.alignright {
    float: right !important;
    margin: 10px 0 10px 20px !important;
    max-width: 50% !important;
}



table.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table !important;
}

table.alignleft {
    float: left !important;
    margin: 10px 20px 10px 0 !important;
}

table.alignright {
    float: right !important;
    margin: 10px 0 10px 20px !important;
}


iframe.aligncenter,
video.aligncenter,
.wp-video.aligncenter {
    display: block !important;
    margin: 20px auto !important;
}

iframe.alignleft,
video.alignleft,
.wp-video.alignleft {
    float: left !important;
    margin: 10px 20px 10px 0 !important;
}

iframe.alignright,
video.alignright,
.wp-video.alignright {
    float: right !important;
    margin: 10px 0 10px 20px !important;
}


blockquote.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    max-width: 80% !important;
}

blockquote.alignleft {
    float: left !important;
    margin: 10px 20px 10px 0 !important;
    max-width: 50% !important;
}

blockquote.alignright {
    float: right !important;
    margin: 10px 0 10px 20px !important;
    max-width: 50% !important;
}


.wp-block-button.aligncenter {
    text-align: center !important;
    display: block !important;
}

.wp-block-button.alignleft {
    text-align: left !important;
    float: left !important;
}

.wp-block-button.alignright {
    text-align: right !important;
    float: right !important;
}

form.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table !important;
}

form.alignleft {
    float: left !important;
    margin-right: 20px !important;
}

form.alignright {
    float: right !important;
    margin-left: 20px !important;
}


.clearfix::after,
.entry-content::after,
.post-content::after,
.wp-block::after {
    content: "";
    display: table;
    clear: both;
}

.alignleft + *,
.alignright + * {
    clear: none;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    overflow: hidden;
}


.mce-content-body .aligncenter {
    display: block;
    margin: 0 auto;
}

.mce-content-body .alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.mce-content-body .alignright {
    float: right;
    margin: 0 0 1em 1em;
}


.block-editor-block-list__block.aligncenter {
    margin-left: auto;
    margin-right: auto;
}


.alignnone {
    margin: 10px 0 !important;
    float: none !important;
    display: block !important;
}


.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}


.alignwide {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


.wp-caption.aligncenter {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wp-caption.alignleft {
    float: left !important;
    margin: 10px 20px 10px 0 !important;
    text-align: left !important;
}

.wp-caption.alignright {
    float: right !important;
    margin: 10px 0 10px 20px !important;
    text-align: right !important;
}

.wp-caption-text {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    text-align: center;
}


.wp-audio-shortcode.aligncenter {
    display: block;
    margin: 20px auto;
}


.twitter-tweet.aligncenter {
    margin: 20px auto !important;
}


.instagram-media.aligncenter {
    margin: 20px auto !important;
}


.wp-block-pullquote.aligncenter {
    text-align: center;
    border-left: none;
    padding: 0;
}

.wp-block-pullquote.alignleft {
    float: left;
    margin-right: 2em;
    max-width: 50%;
}

.wp-block-pullquote.alignright {
    float: right;
    margin-left: 2em;
    max-width: 50%;
}


.wp-block-media-text.aligncenter {
    display: flex;
    align-items: center;
}

.wp-block-media-text.alignleft {
    float: left;
    margin-right: 2em;
}

.wp-block-media-text.alignright {
    float: right;
    margin-left: 2em;
}


.alignleft,
.alignright {
    max-width: 50%;
}


.wp-caption.alignleft,
.wp-caption.alignright {
    max-width: 50%;
}


.gallery.alignleft,
.gallery.alignright {
    max-width: 60%;
}


img.alignleft {
    margin: 0.5em 1.5em 0.5em 0;
}

img.alignright {
    margin: 0.5em 0 0.5em 1.5em;
}

img.aligncenter {
    margin: 1.5em auto;
}


.entry-content .alignleft {
    margin: 0.5em 1.5em 0.5em 0;
}

.entry-content .alignright {
    margin: 0.5em 0 0.5em 1.5em;
}

.entry-content .aligncenter {
    margin: 1.5em auto;
}


.b-page_newyear .b-head-decor {
    z-index: 800 !important;
}






