@font-face {
    font-family: 'tui';
    src: url(../fonts/TUITypeLt_LATN_W_Bd.woff2) format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'tui';
    src: url(../fonts/TUITypeLt_LATN_W_Rg.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ambit';
    src: url('../fonts/Ambit-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ambit';
    src: url('../fonts/Ambit-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ambit';
    src: url('../fonts/Ambit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body, html {
    font-size: 16px;
    line-height: 1.75;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-second);
    color: var(--txt-color);
    font-weight: 400;
    padding-top: 150px;
    --txt-color: #000;
    --color-main: #1b115c;
    --color-lightblue: #006695;
    --color-link: #466d8b;
    --color-second: #c6eafb;
    --color-third: #d40e14;
    --font-main: 'tui',  sans-serif;
    --font-second: 'ambit',sans-serif;
    --radius: 24px;
}
body:before {
    content: '';
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    opacity: 0;
    transition: .3s;
}
body.menuopened::before,
body:has(.header__menu li:hover)::before {
    z-index: 9;
    opacity: .5;
}
input, textarea, button, label {
    font-family: var(--font-second);
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-second);
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tophero__items p {
    margin: 2px 0;
    font-size: .85rem;
    line-height: 120%;
    color: var(--color-main);
}

.read-more {
    color: var(--color-link);
}
.read-more:hover {
    color: var(--color-main);
}

.play-cbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    z-index: 9;
    width: 100px;
    height: 100px;
    padding: 0;
    box-shadow: 0px 3px 10px -6px rgba(66, 68, 90, 1);
    transition: .3s;
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    background-color: rgba(143, 176, 176, .6);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
}
.play-cbtn:hover span {
    background-color: #363636;
}
.play-cbtn svg {
    width: 55%;
    height: auto;
}
.play-btn:not(.paused) {
    opacity: 0;
}
.play-btn.paused {
    opacity: 1;
}

.video-embed video {
    padding: 60px;
    max-height: 100%;
    max-width: 90%;
}
.video-embed {
    z-index: 99999;
    background-color:rgba(143, 176, 176, .53);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-spinner,
.video-spinner:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.video-spinner {
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(59, 49, 39, 0.5);
  border-right: 1.1em solid rgba(59, 49, 39, 0.5);
  border-bottom: 1.1em solid rgba(59, 49, 39, 0.5);
  border-left: 1.1em solid rgba(37, 30, 24, .5);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.video-embed.open {
    display: flex;
}
.video-embed__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.video-embed iframe {
    max-width: 100%;
    width: 1100px;
    height: 500px;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--color-main);
    cursor: pointer;
}

.color-white {
    color: #fff !important;
}

.posrel {
    position: relative;
    z-index: 4;
}
.section-heading {
    display: block;
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 30px;
}
.section-mid {
    display: block;
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 20px;
}
.section-small {
    display: block;
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
    font-weight: 600;
    color: var(--color-main);
    font-family: var(--font-second);
    margin-bottom: 20px;
}
.section-reg {
    font-weight: 500 !important;
}
.page-heading {
    font-size: 42px;
    line-height: 140%;
    font-weight: 500;
    color: var(--txt-color);
    margin-bottom: 30px;
}

.clist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.clist ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2px 0;
}
.clist ul li:before {
    content: '';
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url(../assets/check-v2.svg);
    margin-right: 5px;
}

.text-center {
    text-align: center;
}

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cbtn {
    display: inline-block;
    padding: 11px 45px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-second);
    line-height: 120%;
}
.cbtn--second {
    color: var(--color-main);
    background-color: var(--color-second);
}
.cbtn:hover {
    /* color: #fff;
    border-color: var(--color-second);
    background-color: var(--color-lightblue); */
    opacity: .8;
}

/* @ @ POSTSTOP START @ @ */
.postswrapper {
    max-width: 100%;
    display: grid;
    grid-template-columns: 65% 1fr;
    grid-auto-rows: 1fr;
    gap: 16px;                         
}
.postsbox__item {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
}
.poststop__item--0 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;  
    min-height: 100%; 
    max-width: 100%;
}
.poststop__item--1,
.poststop__item--2 {
    grid-column: 2 / 3;
}
.postsitem-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: .3s;
}
.postsitem-wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: var(--radius);
    display: inline-block;
    z-index: 2;
    background-image: linear-gradient(to bottom, rgba(30, 30, 45, 0) 0%, #0d0d14);
    transition: .3s;
}
/* .postsitem-wrapper:hover:before {
    opacity: .3;
    background-color: var(--color-lightblue);
    height: 100%;
} */
.postscats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    margin-bottom: 10px;
    position: relative;
    z-index: 4;
}
.postscats-item {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 114%;
    padding: 6px 12px;
    border-radius: 25px;
    color: var(--color-main);
}
.postscats-item:hover {
    background-color: #fff !important;
    color: var(--color-main) !important;;
}
.postsbox__item-wrapper {
    padding-top: 25px !important;
}
.postsbox__item-wrapper.postsitem-wrapper:before {
    height: 80%;
}
.poststop__content {
    position: relative;
    z-index: 4;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
}
.postsboxes__items {
    gap: 16px;
}
.postsbox__content {
    position: relative;
    z-index: 4;
    aspect-ratio: 16/3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
}
.postsbox__title  {
    margin-bottom: 5px !important;
}
.poststitle {
    color: #fff;
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 7px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: .3s;
    position: relative;
    z-index: 2;
}
.poststlist__title,
.poststop__title {
    font-size: 21px;
    line-height: 120%;
}
.postsbottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.postsauthor,
.postsdate {
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    font-weight: 500;
    letter-spacing: .5px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}
.postsauthor {
    padding-left: 7px;
    border-left: 1px solid #fff;
}
.postslink {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}
/* @ @ POSTSTOP END @ @ */
/* @ @ POSTSLIST START @ @ */
.postslist__items {
    gap: 16px;
    align-items: stretch;
}
.postslist__item {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    display: flex;
    flex-direction: column;
}
.postslist__item .postslist__item-wrapper {
    padding-top: 0;
    display: block;
    height: auto;
}
.postslist__item--txt .postslist__item-wrapper {
    padding-top: 20px;
    align-items: flex-end;
}
.postslist__item .postscontent {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.postslist__item--txt {
    max-width: calc(25% - 12px);
    flex: 0 0 calc(25% - 12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.postslist__item--txt.postslist__item--half {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
}
.postslist__item--txt .postsitem-wrapper:before,
.postslist__item--txt .postsitem-wrapper,
.postslist__item--txt {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.postslist__item--txt .postscontent {
    height: auto;
    aspect-ratio: 5/6;
}
.postslist__item--txt.postslist__item--half .postscontent {
    aspect-ratio: 16/9;
}
.postslist__item--txt .poststitle {
    margin-bottom: 0;
}
.poststlist__bottom {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border: 1px solid #e5e5ec;
    border-top: none;
    padding: 16px 10px 16px 16px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.poststlist__bottom a {
    font-weight: 600;
    color: var(--color-link);
    text-decoration: underline;
    display: inline-block;
}
.poststlist__bottom>span {
    display: inline-block;
    margin-bottom: 10px;
}
.postslist__date {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}
.poststlist__bottom .postslist__date {
    margin-top: auto;
}

.postslist__bottom-btn {
    max-width: 100%;
    width: 460px;
}

.postslist__pag {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px 10px;
}
.postslist__pag a {
    text-decoration: underline;
    color: var(--color-lightblue);
    font-weight: 600;
}
.postslist__pag .prev a {
    font-weight: 500;
    color: #007ab380;
    opacity: .8;
}
.postslist__pag a:hover {
    color: var(--color-main);
}

.postslist__pag .line {
    display: inline-block;
    color: var(--color-link);
    margin: 0 10px;
}
/* @ @ POSTSLIST END @ @ */
/* @ @ SINGLE POST START @ @ */
.thepost__content h2,
.thepost__content h3,
.thepost__content h4,
.thepost__content h5,
.thepost__content h6 {
    margin-top: 10px;
    color: var(--color-main);
    font-weight: 700;
}
.thepost__content img {
    border-radius: var(--radius);
}
.thepost__content a:not(.wp-block-button__link) {
    color: var(--color-lightblue);
    text-decoration: underline;
}
.thepost__content a:not(.wp-block-button__link):hover {
    color: var(--color-main);
}

.thepost__img--tablet {
    display: none;
    padding-left: 0;
}

.toc {
    margin: 30px 0;
    border-radius: var(--radius);
    border: 1px solid #dcdcdc;
    padding-left: 15px;
    padding-right: 15px;
}
.toc-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-content: space-between;
    gap: 0 30px;
    text-align: left;
    padding: 15px 0px;
    font-size: 1.25rem;
    line-height: 110%;
    font-weight: 700;
    color: var(--color-main);
    font-family: var(--font-second);
    cursor: pointer;
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #dcdcdc;
}
.toc-btn svg {
    width: 19px;
    height: auto;
    transform: rotate(90deg);
    transition: .3s;
}
.toc-btn.active svg {
    transform: rotate(-90deg);
}
.toc-list {
    padding: 0 0 15px 0;
    margin: 0;
    font-family: var(--font-second);
    list-style: none;
}
.toc-list>li {
    position: relative;
    padding-top: 8px;
}
.toc-list>li:last-child {
    border: none;
    padding-bottom: 0;
}
.toc-list li::marker {
    color: var(--color-main);
    font-weight: 600;
}
.toc-list a {
    display: inline-block;
    text-align: left;
    font-size: 1.1rem;
    font-family: var(--font-second);
    line-height: 120%;
    font-weight: 600;
    color: var(--color-main);
}
.toc-list a:hover {
    color: var(--color-lightblue);
}
.toc-list ul {
    padding-top: 8px;
}
.toc-submenu {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}
.toc-submenu>li {
    padding-left: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dcdcdc;
}
.toc-submenu>li:first-child {
    border-top: 1px solid #dcdcdc;
}

.thepost__heading h1 {
    margin-bottom: 20px;
    margin-top: 20px;
}
.thepost__author {
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}
.thepost__author-img {
    margin-right: 20px;
}
.thepost__author-img img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    width: 100px;
    min-width: 100px;
}
.thepost__author-name {
    font-weight: 600;
    display: block;
    font-size: 1rem;
    line-height: 120%;
    margin: 0;
}
.thepost__author-bio {
    display: block;
    margin: 0;
}
/* @ @ SINGLE POST END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */


/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    main {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1440px) {
    
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
}
@media(min-width: 768px) and (max-width: 992px) {
    .thepost__img--mobile {
        display: none;
    }
    .thepost__img--tablet {
        display: block;
    }
    .thepost__img.thepost__img--tablet img {
        width: 100%;
    }
}
@media(max-width: 992px) {
    body {
        padding-top: 85px;
    }

    .video-embed iframe {
        height: 400px;
    }

    /*  */
    .postslist__item .postscontent {
        aspect-ratio: 16/11;
    }
    .postslist__item--txt {
        max-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
    }
    .postslist__item--txt .postscontent {
        aspect-ratio: 1/1;
    }
    .postsbox__item {
        max-width: 100%;
        flex: 0 0 100%;
    }
    /*  */
    .toc-list ul {
        padding-left: 15px;
    }


}
@media(max-width: 767px) {
    body {
        padding-top: 75px;
    }
    
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }

    .video-close {
        right: 0;
    }
    .video-embed__item {
        padding: 20px 40px;
    }
    .video-embed iframe {
        height: 300px;
    }

    /*  */
    .postswrapper {
        display: flex;
        flex-wrap: wrap;
    }
    .poststop__item {
        max-width: 100%;
        width: auto;
        flex: 0 0 100%;
    }
    .poststop__item--1 .poststop__content,
    .poststop__item--2 .poststop__content {
        aspect-ratio: 16/7;
    }
    /*  */
    .postslist__item {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .postslist__item .postscontent {
        aspect-ratio: 16/7;
    }
    .postslist__item--txt.postslist__item--half {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .thepost__img img {
        width: 100%;
    }
    .thepost__author-img {
        margin-right: 10px;
    }
    .thepost__author-img img {
        width: 50px;
        min-width: 50px;
    }
    
}
/* @ @ MEDIA END @ @  */