* {
    font-family: 'Akrobat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

:root {
    --size: 0.3;
    --size2: 0.5;
    --size3: 0.7;
}

@media (min-width: 576px) {
    :root {
        --size: 0.4;
        --size2: 0.6;
        --size3: 0.8;
    }
}

@media (min-width: 768px) {
    :root {
        --size: 0.5;
        --size2: 0.7;
        --size3: 0.8;
    }
}

@media (min-width: 992px) {
    :root {
        --size: 0.7;
        --size2: 0.8;
        --size3: 0.9;
    }
}

@media (min-width: 1400px) {
    :root {
        --size: 0.9;
        --size2: 0.9;
        --size3: 1;
    }
}

@media (min-width: 1920px) {
    :root {
        --size: 1;
        --size2: 1;
        --size3: 1;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
        padding: 0;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1400px !important;
        padding: 0;
    }
}

.header {
    z-index: 10;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #EBEBEB;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.header__links {
    width: 100%;
    gap: calc(40px * var(--size));
    display: none;
}

@media (min-width: 1400px) {
    .header__links {
        display: flex;
    }
}

.header__content {
    gap: 20px;
    padding-top: calc(23px * var(--size));
    padding-bottom: calc(27px * var(--size));
    justify-content: space-between;
}

.header__content .pushed {
    color: #09A8FA;
}

.header__content .pushed__2 {
    display: flex;
    font-size: calc(27px * var(--size3)) !important;
    line-height: calc(32px * var(--size3)) !important;
}

@media (min-width: 1400px) {
    .header__content .pushed__2 {
        display: none;
    }
}

.header__content .pushed:after, .header__content .pushed:before {
    width: 100%;
}

.header__content a {
    color: #000000;
    font-size: calc(27px * var(--size2));
    font-weight: 800;
    line-height: calc(32px * var(--size2));
    text-transform: uppercase;
    white-space: nowrap;
    transition: all .2s ease;
    text-decoration: none;
    position: relative;
}

.header__content a:hover {
    color: #09A8FA;
}

.header__content a:hover:after, .header__content a:hover:before {
    width: 100%;
}

.header__content a:after, .header__content a:before {
    position: absolute;
    content: "";
    background-color: #09A8FA;
    z-index: -1;
    width: 0;
    transition: width .2s ease;
}

.header__content a:after {
    bottom: -4px;
    left: 0;
    height: 4px;
}

.header__content a:before {
    top: -2px;
    left: unset;
    right: 0;
    height: 3px;
}

.credit {
    background: #484848;
    padding-bottom: calc(62px * var(--size2));
}

.credit p {
    font-size: 26px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: calc(10px * var(--size2));
    width: 100%;
    color: #fff;
    text-align: center;
    margin: 0;
}

.new-bg {
    width: 100%;
    height: auto;
}

.meet {
    background: url("./assets/media/h_bg.jpg");
    background-position: 70% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.meet__grad {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d9d9d9 0%, #d9d9d9 25%, rgba(217, 217, 217, 0) 40%, rgba(217, 217, 217, 0) 75%, #d9d9d9 90%, #d9d9d9 100%);
    z-index: 1;
}

.meet__shad {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(73, 64, 64, 0.5);
    z-index: 2;
}

.meet__text {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    display: flex;
    text-decoration: none !important;
}

.meet__text p:not(.meet__sm) {
    text-transform: uppercase;
    margin: 0;
}

.meet__text p:not(.meet__xl) {
    color: #fff;
}

.meet__sm {
    font-size: calc(29px * var(--size2));
    font-weight: 600;
    line-height: calc(34px * var(--size2));
    margin-bottom: calc(10px * var(--size2));
}

.meet__md {
    font-size: calc(44px * var(--size2));
    font-weight: 800;
    line-height: calc(69px * var(--size2));
}

.meet__lg {
    font-size: calc(62px * var(--size2));
    font-weight: 800;
    line-height: calc(69px * var(--size2));
}

.meet__xl {
    color: #FFD56F;
    font-size: calc(80px * var(--size));
    font-weight: 800;
    line-height: calc(100px * var(--size));
}

.meet__mid {
    position: relative;
    z-index: 4;
    background: linear-gradient(0deg, #484848 37.36%, rgba(72, 72, 72, 0) 59.15%);
    padding-bottom: 166px;
}

.meet__mid p {
    margin: 0;
    font-size: calc(47px * var(--size));
    font-weight: 700;
    line-height: calc(47px * var(--size));
    color: #fff;
    text-align: end;
}

.meet__mid span {
    margin: 0;
    font-size: calc(32px * var(--size));
    font-weight: 700;
    line-height: calc(39px * var(--size));
    color: #fff;
}

.meet__clock {
    margin-top: 80px;
    gap: calc(24px * var(--size));
}

.meet__clock p {
    text-align: start;
}

.meet__clock img {
    width: calc(81px * var(--size));
}

@media (min-width: 1200px) {
    .meet__clock {
        margin-top: 100px;
    }
}

@media (min-width: 2000px) {
    .meet__clock {
        margin-top: 250px;
    }
}

.meet__5 {
    margin-top: 5px;
    gap: calc(20px * var(--size));
    position: relative;
}

.meet__5 .num {
    display: flex;
    justify-content: center;
}

.meet__5 .num span {
    position: absolute;
    font-size: calc(82px * var(--size));
    color: #FFD56F;
    margin: 0;
    font-weight: 800;
}

.meet__5 img {
    width: calc(118px * var(--size));
    margin-top: calc(8px * var(--size));
}

.hello {
    background: #F0F0F0;
    padding-top: calc(100px * var(--size2));
    padding-bottom: calc(125px * var(--size2));
}

.hello h2 {
    font-size: calc(86px * var(--size));
    font-weight: 900;
    line-height: calc(103px * var(--size));
    color: #494040;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    margin-bottom: calc(70px * var(--size2));
}

.hello__photo {
    position: relative;
    min-width: calc(435px * var(--size));
    margin-bottom: 2vw;
}

.hello__photo img {
    width: 100%;
    max-width: 400px;
}

.hello__profile h3 {
    color: #000;
    font-size: calc(30px * var(--size2));
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 calc(30px * var(--size)) 0 0;
}

.hello__profile p {
    color: #000;
    font-size: calc(24px * var(--size2));
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 calc(30px * var(--size)) 0 0;
}

.hello__text {
    gap: 10px;
}

.hello__text h3 {
    color: #0087CC;
    font-size: calc(36px * var(--size2));
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.hello__text p {
    color: #000;
    font-size: calc(30px * var(--size2));
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.hello__text h3, .hello__text p {
    margin: 0;
}

.hello__bottom {
    gap: 24px;
}

.hello__line {
    background: #fff;
    height: 14px;
    width: 100%;
    margin-bottom: 8px;
}

.hello__btn {
    width: calc(165px * var(--size2));
    height: calc(122px * var(--size2));
    position: relative;
    cursor: pointer;
    transition: all .2s ease;
}

.hello__btn span {
    position: absolute;
    left: calc(26px * var(--size2));
    bottom: calc(18px * var(--size2));
    color: #fff;
    font-size: calc(36px * var(--size2));
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.hello__btn img {
    width: 100%;
    height: 100%;
}

.hello__btn:hover {
    transform: translate(30px);
}

.hello__btn:hover span {
    font-weight: 800;
}

.programm__head {
    background: #515151;
    padding-top: calc(53px * var(--size2));
    padding-bottom: calc(62px * var(--size2));
}

.programm__head h2 {
    font-size: calc(86px * var(--size));
    font-weight: 900;
    line-height: calc(103px * var(--size));
    color: #FFD56F;
    text-transform: uppercase;
    text-align: center;
}

.programm__content {
    background: #484848;
    padding-top: 20px;
    padding-bottom: 100px;
}

.programm__list {
    gap: 40px;
}

.programm .card {
    border: 2px solid #5BA4D0;
    background: #484848;
    padding: calc(30px * var(--size)) calc(50px * var(--size)) calc(50px * var(--size));
    gap: 15px;
    flex-direction: column;
    text-decoration: none !important;
    transition: all .1s ease;
}

.programm .card:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .programm .card__time p {
        min-width: 215px;
    }
}

@media (min-width: 992px) {
    .programm .card {
        flex-direction: row;
    }

    .programm .card__time {
        flex-direction: column-reverse;
    }
}

@media (min-width: 1400px) {
    .programm .card__time {
        justify-content: space-between;
        flex-direction: row;
    }
}

.programm .card__text {
    width: 100%;
}

.programm .card__time {
    min-width: calc(510px * var(--size));
    gap: calc(60px * var(--size));
}

.programm .card__time p {
    color: #FFF;
    text-align: center;
    font-size: calc(54px * var(--size2));
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    white-space: nowrap;
}

.programm .card__photo {
    position: relative;
}

.programm .card__photo img {
    width: 100%;
    max-width: 190px;
}

.programm .card__name {
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 4px dotted #fff;
    margin-bottom: 7px;
}

.programm .card__name h3 {
    color: #FFD56F;
    font-size: calc(40px * var(--size3));
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
}

.programm .card__name ul {
    margin: 0;
    padding-left: calc(40px * var(--size2));
}

.programm .card__name p, .programm .card__name li {
    color: #FFD56F;
    font-size: calc(30px * var(--size3));
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

/*.programm .card__name--alt li {*/
/*  color: #09A8FA !important; }*/
.programm .card__desc {
    color: #FFF;
    font-size: calc(26px * var(--size3));
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.programm .card__desc span {
    font-weight: 800;
}

.partners__head {
    background: #09A8FA;
    padding-top: calc(53px * var(--size2));
    padding-bottom: calc(62px * var(--size2));
}

.partners__head h2 {
    font-size: calc(86px * var(--size));
    font-weight: 900;
    line-height: calc(103px * var(--size));
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.partners__contacts {
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.partners__contacts span, .partners__contacts a {
    color: #000;
    font-size: calc(29px * var(--size3));
    font-style: normal;
    font-weight: 600;
    line-height: calc(43px * var(--size3));
}

.partners__contacts img {
    max-width: 340px;
}

@media (min-width: 992px) {
    .partners__contacts {
        flex-direction: row;
        align-items: unset;
    }
}

.partners__content {
    background: #F0F0F0;
    padding-top: calc(118px * var(--size2));
    padding-bottom: calc(109px * var(--size2));
}

.partners table {
    width: 100%;
    border-collapse: collapse;
}

.partners table tbody {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
}

.partners table tr {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
}

.partners table tr:first-of-type {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
}

.partners table th:not(th:last-of-type) {
    border-right: 0.5px solid rgba(0, 0, 0, 0.3);
}

.partners table th {
    padding: 20px 20px;
}

.partners table th img {
    width: 100%;
    max-width: 370px;
    max-height: 115px;
}

.nmo__head {
    background: #515151;
    padding-top: calc(53px * var(--size2));
    padding-bottom: calc(62px * var(--size2));
}

.nmo__head h2 {
    font-size: calc(86px * var(--size));
    font-weight: 900;
    line-height: calc(103px * var(--size));
    color: #FFD56F;
    text-transform: uppercase;
    text-align: center;
}

.nmo__content {
    background: #484848;
    padding-top: 55px;
    padding-bottom: 188px;
}

.nmo__content h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: #A36BEA;
    margin-bottom: 20px;
}

.nmo__content p {
    font-size: 26px;
    font-weight: 400;
    line-height: 31.5px;
    color: #fff;
    margin-bottom: 80px;
}

.nmo__content a {
    padding: 6px 18px;
    border: 4px solid #FFD56F;
    text-decoration: none;
    font-size: 41px;
    font-weight: 800;
    line-height: 49px;
    color: #5C4E4E;
    background: #FFD56F;
    cursor: pointer;
    transition: all .2s ease;
}

.nmo__content a:hover {
    color: #FFD56F !important;
    background: transparent;
}

.overlay0 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    overflow: hidden;
}

.modal {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal__block {
    position: relative;
    padding: calc(75px * var(--size)) calc(65px * var(--size));
    width: fit-content;
    /*width: 100%;*/
    display: flex;
    border-radius: 20px;
    background: #EEE;
    max-height: calc(100vh - 80px);
}

.modal__content {
    overflow-y: auto;
}

.modal__text {
    height: calc(100vh - 300px);
    overflow: auto;
}

.modal__close {
    position: absolute;
    top: calc(35px * var(--size));
    right: calc(35px * var(--size));
    width: calc(70px * var(--size2));
    height: calc(70px * var(--size2));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #09A8FA;
    border-radius: 50%;
    border: 4px solid #09A8FA;
    transition: all .2s ease;
}

.modal__close:hover {
    background: transparent;
}

.modal__close:hover::after, .modal__close:hover::before {
    background-color: #09A8FA;
}

.modal__close::after, .modal__close::before {
    content: "";
    height: 4px;
    width: 15px;
    background-color: #fff;
    position: absolute;
}

.modal__close::before {
    transform: rotate(45deg);
}

.modal__close::after {
    transform: rotate(-45deg);
}

.modal__content h3 {
    color: #0087CC;
    font-size: calc(36px * var(--size3));
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding-bottom: calc(36px * var(--size3));
}

.modal__content p {
    color: #000;
    font-size: calc(26px * var(--size3));
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.modal__content p, .modal__content h3 {
    margin: 0;
}

.side-trigger {
    padding: 8px 16px;
    border: 4px solid #000;
    background: #000;
    transition: all .2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.side-trigger div {
    height: 25px;
    width: 30px;
    position: relative;
}

.side-trigger div span {
    position: absolute;
    height: 3px;
    background: #EBEBEB;
    width: 100%;
    left: 0;
}

.side-trigger div span:nth-child(1) {
    top: 0;
}

.side-trigger div span:nth-child(2) {
    top: 11px;
}

.side-trigger div span:nth-child(3) {
    bottom: 0;
}

.side-trigger:hover {
    background: #EBEBEB;
}

.side-trigger:hover p {
    color: #000;
}

.side-trigger:hover span {
    background: #000;
}

.side-trigger p {
    font-weight: 800;
    font-size: calc(27px * var(--size3));
    line-height: calc(32px * var(--size3));
    color: #EBEBEB;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

@media (min-width: 1400px) {
    .side-trigger {
        display: none;
    }
}

.sidenav {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    right: -100%;
    z-index: 900;
    opacity: 0;
    transition: opacity .3s ease, right 0s ease .3s;
}

.sidenav.active {
    opacity: 1;
    right: 0;
    transition: opacity .3s ease;
}

.sidenav.active .sidenav-block {
    right: 0;
}

.sidenav.active .sidenav-click {
    left: 0;
}

.sidenav-block {
    transition: all .3s ease;
    background: #EBEBEB;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    row-gap: 35px;
    padding-left: 40px;
}

.sidenav-block-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidenav-block-desc a {
    color: #000000;
    font-size: calc(27px * var(--size2));
    font-weight: 800;
    line-height: calc(32px * var(--size2));
    text-transform: uppercase;
    white-space: nowrap;
    transition: all .2s ease;
    text-decoration: none;
    position: relative;
}

.sidenav-block-desc a:hover {
    color: #09A8FA;
}

.sidenav-block-desc a:hover:after, .sidenav-block-desc a:hover:before {
    width: 100%;
}

.sidenav-block-desc a:after, .sidenav-block-desc a:before {
    position: absolute;
    content: "";
    background-color: #09A8FA;
    z-index: -1;
    width: 0;
    transition: width .2s ease;
}

.sidenav-block-desc a:after {
    bottom: -4px;
    left: 0;
    height: 4px;
}

.sidenav-block-desc a:before {
    top: -2px;
    left: unset;
    right: 0;
    height: 3px;
}

.sidenav-block-close {
    position: absolute;
    top: calc(40px * var(--size));
    right: calc(40px * var(--size));
    width: calc(70px * var(--size2));
    height: calc(70px * var(--size2));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #09A8FA;
    border-radius: 50%;
    border: 4px solid #09A8FA;
    transition: all .2s ease;
}

.sidenav-block-close:hover {
    background: transparent;
}

.sidenav-block-close:hover::after, .sidenav-block-close:hover::before {
    background-color: #09A8FA;
}

.sidenav-block-close::after, .sidenav-block-close::before {
    content: "";
    height: 4px;
    width: 15px;
    background-color: #fff;
    position: absolute;
}

.sidenav-block-close::before {
    transform: rotate(45deg);
}

.sidenav-block-close::after {
    transform: rotate(-45deg);
}

.overlay3 .modal__block3 {
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    width: fit-content;
    overflow: hidden;
}

.overlay3 .modal__block3--d {
    display: none;
}

.overlay3 .modal__block3--m {
    display: block;
}

@media (min-width: 768px) {
    .overlay3 .modal__block3 .modal__block3--d {
        display: block;
    }

    .overlay3 .modal__block3 .modal__block3--m {
        display: none;
    }
}

.overlay3 .modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay3 .modal__close3 {
    z-index: 5;
}

.overlay3 .modal__close3:hover {
    background: #EEEEEE;
}

.overlay3 h3 {
    text-align: center;
    padding-bottom: 30px !important;
}

.overlay3 img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.conference {
    padding: 6px 18px;
    border: 4px solid #FFD56F;
    text-decoration: none;
    font-size: 41px;
    font-weight: 800;
    line-height: 49px;
    color: #000;
    background: #FFD56F;
    cursor: pointer;
    transition: all .2s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.conference:hover {
    text-decoration: none;
    color: #FFD56F !important;
    background: transparent;
}

.video__pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    overflow: hidden;
}

.video__pop-up-content {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 320px) {
    .video__pop-up-content {
        padding-top: 50%;
    }
}

@media (min-width: 768px) {
    .video__pop-up-content {
        /*padding-top: 10%;*/
        padding-top: 5%;
    }
}

@media (min-width: 2560px) {
    .video__pop-up-content {
        padding-top: 5%;
    }
}

@media (min-width: 320px) {
    .video__pop-up-video {
        width: 100%;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .video__pop-up-video {
        width: 600px;
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .video__pop-up-video {
        width: 800px;
        height: 600px;
    }
}

@media (min-width: 1400px) {
    .video__pop-up-video {
        width: 1000px;
        height: 600px;
    }
}

@media (min-width: 1660px) {
    .video__pop-up-video {
        width: 1200px;
        height: 700px;
    }
}

@media (min-width: 2560px) {
    .video__pop-up-video {
        width: 2000px;
        height: 1200px;
    }
}

.close-video {
    right: calc(50px * var(--size));
    top: calc(480px * var(--size));
    z-index: 120;
}

@media (min-width: 768px) {
    .close-video {
        right: calc(140px * var(--size));
        top: calc(90px * var(--size));
    }
}

@media (min-width: 1200px) {
    .close-video {
        right: calc(240px * var(--size));
        top: calc(20px * var(--size));
    }
}

@media (min-width: 2560px) {
    .close-video {
        right: calc(200px * var(--size));
        top: calc(60px * var(--size));
    }
}

.hidden {
    display: none;
}

.videoBlock {
    cursor: pointer;
}

.points-img {
    width: 70% !important;
}

@media (min-width: 1200px) {
    .points-img {
        width: 100% !important;
    }
}

@media (min-width: 1200px) {
    .time p {
        width: 150%;
    }
}

.time-container {
    justify-content: space-between;
}

.golden {
    color: #FFD56F;
}

.btn-online {
    margin-top: 3rem;
}

.btn-online button {
    padding: 6px 18px;
    border: 4px solid #FFD56F;
    text-decoration: none;
    font-size: 41px;
    font-weight: 800;
    line-height: 49px;
    color: #5C4E4E;
    background: #FFD56F;
    cursor: pointer;
    transition: all .2s ease;
}

.btn-online button:hover {
    color: #FFD56F !important;
    background: transparent;
}

/*.points-img{*/
/*  width: 70% !important;*/
/*  margin-left: calc(220px * var(--size));*/
/*}*/

/*@media (min-width: 1200px) {*/
/*  .points-img{*/
/*    width: 60% !important;*/
/*    margin-left: calc(400px * var(--size));*/
/*  }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*  .time{*/
/*    margin-right: calc(50px * var(--size));*/
/*  }*/
/*}*/
.how-it-was {
    padding-bottom: calc(70px * var(--size2));
    background: #484848;
}

/*.how-it-was h2{*/
/*  font-size: calc(100px * var(--size2));*/
/*  font-weight: 900;*/
/*  line-height: 120%;*/
/*  margin-bottom: calc(70px * var(--size2));*/
/*  color: #FFD56F;*/
/*  text-transform: uppercase;*/
/*  text-align: center;*/
/*}*/
.how-it-was__stat {
    border: 2px solid #5BA4D0;
    margin-top: calc(70px * var(--size2));
    padding: calc(40px * var(--size)) calc(70px * var(--size));
}

.how-it-was__stat p {
    font-size: calc(100px * var(--size));
    font-weight: 900;
    line-height: 120%;
    text-align: center;
    margin: 0;
    color: #FFD56E;
}

.how-it-was__stat span {
    font-size: calc(36px * var(--size));
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: #fff;
}

.how-it-was img {
    width: 100%;
}

.how-it-was__pics {
    gap: calc(20px * var(--size));
    margin-top: calc(70px * var(--size));
    display: flex;
    flex-direction: column;
    /*display: grid;*/
    /*grid-template-columns: 40% 20% 40%;*/
    /*grid-template-rows: 1fr 1fr;*/
}

.how-it-was__row div {
    background-position: center;
    background-size: cover;
    height: calc(325px * var(--size));
}

.how-it-was__row:first-of-type {
    display: grid;
    grid-template-columns: 40% 18% auto;
    gap: calc(20px * var(--size));
}

.how-it-was__row:last-of-type {
    display: grid;
    grid-template-columns: 40% 18% 21% auto;
    gap: calc(20px * var(--size));
}

.sector {
    border: 2px solid #5BA4D0;
    transition: all .1s ease;
}

.sector:hover {
    transform: scale(1.02);
}

.new-reg {
    background-color: #515151;
    padding: 40px;
}

.new-reg a {
    padding: 6px 18px;
    border: 4px solid #FFD56F;
    text-decoration: none;
    font-size: 41px;
    font-weight: 800;
    line-height: 49px;
    color: #5C4E4E;
    background: #FFD56F;
    cursor: pointer;
    transition: all .2s ease;
}

.new-reg a:hover {
    color: #FFD56F !important;
    background: transparent;
}


.btn-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.new-btn {
    padding: 5px 10px;
    border: 4px solid #FFD56F;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    line-height: 26px;
    color: #5C4E4E;
    background: #FFD56F;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
}

.new-btn a:hover {
    color: #FFD56F !important;
    background: transparent;
}



.digest-btn {
    cursor: pointer;

}

.digest-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.digest-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digest-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 60%;
    max-height: 90dvh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    margin: 5vh auto;
}

.digest-close-modal {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 60px;
    cursor: pointer;
    color: #09A8FA;
}

.digest-text {
    text-align: left;
    color: black;
    font-size: 18px;
    line-height: 1.5;
}

.digest-text img {
    width: 70%;
    height: 100%;
    margin: 10px 0;
}

body.digest-modal-open {
    overflow: hidden;
}

.digest-modal-content::-webkit-scrollbar {
    width: 8px;
}

.digest-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.digest-modal-content::-webkit-scrollbar-thumb {
    background: #09A8FA;
    border-radius: 4px;
}

.digest-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


.img-modalDigest-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 992px) {
    .btn-container {
        justify-content: center;
    }

    .digest-modal-content {
        max-width: 90%;

    }
}

@media (max-width: 600px) {
    .btn-container {
        flex-direction: column;
    }
}