
@font-face {
    font-family: 'Montserrat';
    src: url('/_/font/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/_/font/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/_/font/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/_/font/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --blue: #05c0cc;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --header: transparent;
    --burger-btn: white;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: 'Montserrat', sans-serif;
    --font-family-monospace: 'Montserrat', sans-serif;
}

[lang^="en"] .logo{
    background-image: url("/_/i/logo-text-en.svg?1");
}
.logo{
    width: 200px;
    height: 134px;
    font-size: 0;
    background-image: url("/_/i/logo-text.svg");
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    position: relative;
    background-size: contain;
}
.logo:before,
.logo:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    background-size: contain;
    background-repeat: no-repeat;
}
.logo:before{
    background-image: url("/_/i/logo-circle1.svg");
    -webkit-animation: fadeInScale 1s ease-out 2s forwards;
    animation: fadeInScale 1s ease-out 2s forwards;
}
.logo:after{
    background-image: url("/_/i/logo-circle2.svg");
    -webkit-animation: fadeInScale 1s ease-out 1s forwards;
    animation: fadeInScale 1s ease-out 1s forwards;
}


@-webkit-keyframes fadeInScale {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes fadeInScale {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
ul,
body{
    padding:0;
    margin: 0;
    font-weight: 400;
}
html,
body{
    overflow-x: hidden;
}
body{
    /*background-image: url(/_/images/bg.webp);*/
    background-color: #0f0e49;
    background-size: cover;
    background-position: left top;
    color: white;
    /*width: 100vw;*/
    /*position: relative;*/
}
.crumbs {
    margin: 0;
    padding: 0;
    padding-top: 30px;
}
.crumbs li a{
    text-decoration: none;
}
.crumbs li{
    list-style: none;
    display: inline-block;
    font-size: 14px;
}
.crumbs li a:after{
    content: "";
    position: absolute;
    background-image: url("/_/i/sprite.png");
    width: 8px;
    height: 9px;
    margin: 5px 13px;
}
.custom-container{
    width: 100%;
    max-width: 1403px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
img{
    max-width: 100%;
}
header ul{
    list-style: none;
}
header{
    padding: 28px 0;
}
body:not(.home-page):before{
    content: "";
    width: 100%;
    height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(#2F5EA9, #00000000);
}
body:not(.home-page){
    background-image:url(/_/i/footer-bg.webp), url(/_/i/internal-bg.webp);
    background-size: contain, 100%;
    background-position: center bottom 120px, top right;
    background-repeat: no-repeat, repeat;
}
textarea:focus,
input[type="text"]:focus{
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -o-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
}
textarea{
    font-family:inherit;
}
.safari input {
    -webkit-appearance: none;
}
header.home-header{
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
}
header{
    background-color: var(--header);
    width: 100%;
    z-index: 2;
}

.main-menu ul li a{
    font-size: 16px;
    text-decoration: none;
    color: white;
}
.main-menu ul li{
    position: relative;
}
.main-menu ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 0px;
    -webkit-column-gap: 17px;
    -moz-column-gap: 17px;
    column-gap: 17px;
    background-color: var(--header);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.main-menu ul ul ul{
    right: 100%;
    top: 0;
}
footer .custom-container,
header .custom-container{
    max-width: 1700px;
}
.bottom-header{
    -ms-grid-columns: 200px 24px auto 24px 490px 24px 48px;
    grid-template-columns: 200px auto 490px 48px;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    display: grid;
}
.header-logo-list >span:last-child,
.header-logo-list >a:last-child{
    position: relative;
    top: -14px;
}
.header-logo-list a{
    display: block;
}
.header-logo-list{
    display: flex;
    width: initial;
    max-width: 100%;
    border-left: 1px solid white;
    border-right: 1px solid white;
    padding-top: 13px;
    padding-left: 28px;
    padding-right: 28px;
    gap: 30px;
    align-items: center;
}
.main-menu .submenu-toggle{
    display: none;
}
.main-menu-container{
    .open-menu{
        display: none;
    }
}
.main-menu-container .open-menu{
    display: none;
    background-repeat: no-repeat;
    cursor: pointer;
    height: 22px;
    top: 15px;
    right: 15px;
    position: absolute;
}
.open-menu{
    background-color: #003DFF;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    padding: 15px 14px;
    box-shadow: inset 0px 0px 0px 4px transparent;
}
.body-open-menu .open-menu{
    padding: 11px 13px;
    box-shadow: inset 0px 0px 0px 4px #05c0cc;
}
.open-menu span {
    width: 22px;
    display: block;
    height: 3px;
    background-color: var(--burger-btn);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    position: relative;
}
.open-menu span:before {
    content: "";
    width: 100%;
    height: inherit;
    border-radius: inherit;
    display: block;
    background: inherit;
    margin: 7px 0 0 0;
    position: absolute;
    opacity: 1;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
.open-menu span:after {
    content: "";
    width: 100%;
    height: inherit;
    border-radius: inherit;
    display: block;
    background: inherit;
    margin: 14px 0 0 0;
    position: absolute;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.body-open-menu .open-menu span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 12px;
}
.body-open-menu .open-menu span:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin: 0px 0px 0px 0px;
}
.body-open-menu .open-menu span:before {
    opacity: 0;
}
.burger-menu{
    display: none;
    position: absolute;
    background-color: #11124f;
    width: 300px;
    margin-right: 20px;
    margin-top: 20px;
    z-index: 2;
}

.burger-menu a{
    color: white;
    padding: 3px 15px;
    display: inline-block;
    font-size: 16px;
}

/*.body-open-menu .burger-menu:before{*/
/*    content: "";*/
/*    width: 66px;*/
/*    height: 8px;*/
/*    background-color: #05c0cc;*/
/*    left: 50%;*/
/*    position: absolute;*/
/*    margin-left: -33px;*/
/*    margin-top: -19px;*/
/*}*/
.body-open-menu .burger-menu{
    display: block;
    padding: 10px;
    box-shadow: 0px 0px 25px -4px #0202022b;
}
.burger-menu ul ul{
    display: none;
}
.breadcrumb {
    background-color: transparent;
}
.media{
    gap: 15px;
}
.media img{
    gap: 15px;
    max-width: 200px;
}

.form-check label:before{
    position: absolute;
    content: "";
    display: block;
    border: 1px solid var(--gray-dark);
    width: 17px;
    height: 17px;
    border-radius: 3px;
    margin-top: 2px;
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -30px;
}
.form-check input:checked + label:before{
    background-image: url("/_/i/check.svg");
    background-color: var(--blue);
    border-color: var(--blue);
}
.form-check {
    padding-left: 30px;
}
.form-check .form-check-input{
    display: none;
    /*opacity: .2;*/
}
.burger-menu-container{
}
.btn-small{
    font-size: 13px;
    line-height: 21.75px;
    border-radius: 6px;
    gap: 4px;
}

.btn-transparent img{
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}
.btn:not(.btn-small){
    font-weight: 500;
    font-size: 21px;
    line-height: 120%;
    text-transform: uppercase;
    gap: 21px;
    height: 50px;
    padding-left: 18px;
    padding-right: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    padding-top: 12px;
    padding-bottom: 10px;
}
.content-nav{
    margin-bottom: 35px;
}
.section-location-tutorial__item-tags,
.content-nav ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.content-nav a{
    text-decoration: none;
}
.section-location-tutorial__item-tag,
.content-nav a,
.btn-transparent{
    border: 1px solid #FFFFFF;
    font-weight: 400;
    background-color: transparent;
    color: #FFFFFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 17px 4px;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}
.section-location-tutorial__item-tag,
.content-nav a{
    font-size: 20px;
}
.btn-primary:hover{
    background-color: #04919a;
    border-color: #04919a;
}
.btn{
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-transparent:hover img{
    /*filter: brightness(0%);*/
}
.content-nav a.active,
.content-nav a:hover,
.btn-transparent.active,
.btn-transparent:hover{
    -webkit-transition: .3s !important;
    -o-transition: .3s !important;
    transition: .3s !important;
    background-color: var(--blue);
    border-color: var(--blue);
    color: white;
}
.langs-container >.lang{
    z-index: 3;
    position: relative;
}
.langs-container >.lang:before{
    content: "";
    width: 0;
    position: absolute;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #ffffff;
    right: 13px;
}
.langs-list .lang{
    padding-left: 19px;
    padding-right: 19px;

}
.langs-container > .lang{
    padding-left: 12px;
    padding-right: 25px;
}
.top-header .btn:not(.lang){
    margin-left: 10px;
}
.top-header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 15px;
}
.btn-transparent:active{
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
    -webkit-transition: .0s;
    -o-transition: .0s;
    transition: .0s;
}
.header-slider-container:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
            linear-gradient(180deg, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0.3) 103.72%),
            linear-gradient(360deg, rgba(0, 0, 0, 0) 68.45%,
            rgba(0, 0, 0, 0.3) 92.01%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            linear-gradient(360deg, rgba(0, 0, 0, 0) 68.45%, rgba(0, 0, 0, 0.3) 92.01%);
}
.header-slider-container{
    position: relative;
    z-index: 1;
}
.header-slider {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin: 0 auto;
    width: 1700px;
    max-width: calc(100% - 30px);
}

.header-slider .swiper-slide{
    /*position: static;*/
    /*transform: none !important;*/
    /*padding-top: 400px;*/
    /*padding-bottom: 135px;*/
    min-height: 100vh;
    align-items: center;
    display: flex;
    padding-top: 200px;
}
.header-slider .swiper-wrapper{
    margin: 0 auto;
    width: 1700px;
    /*position: static;*/
    /*transform: initial;*/
}
.header-slider-container .swiper-next,
.header-slider-container .swiper-prev{
    margin-top: 53px;
}
.header-slider .custom-container{

}
.bg-slider{
    width: 100%;
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1 !important;
}
.header-slider.swiper-initialized .swiper-slide{
    opacity: 0 !important;
    -webkit-transition-duration: 0ms !important;
    -o-transition-duration: 0ms !important;
    transition-duration: 0ms !important;
}
.header-slider .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}
.swiper-next{
    right: 0;
}
.speakers-slider .swiper-slide img{
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.swiper-prev,
.swiper-next{
    width: 58px;
    min-width: 58px;
    height: 58px;
    border: 1px solid #FFFFFF33;
    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: 100%;
    background: #FFFFFF21;
    z-index: 3;
    position: absolute;
    cursor: pointer;
}
.speakers-section .swiper-next,
.speakers-section .swiper-prev{
    top: 130px;
}
.swiper-prev img{
    rotate: 180deg;
}

.swiper-prev:hover,
.swiper-next:hover{
    border: 1px solid #ffffff52;
    background: #ffffff3d;
}
.swiper-prev img,
.swiper-next img{
    opacity: .8;
}
.swiper-prev:hover img,
.swiper-next:hover img{
    opacity: 1;
}
.swiper-prev:active,
.swiper-next:active{
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97);
}
.swiper-slide-image{
    z-index: -1;
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    left: 0;
    transition: scale 15s ease-out;
    scale: 1;
}
.bg-slider.swiper-initialized .swiper-slide-image{
    scale: 2.2;
}
.big-slide-container .swiper-slide{

}
.big-slide-container{

}
.slide-container{
    align-items: flex-start;
    position: relative;
    width: 1370px;
    max-width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.slide-container .bottom-col{
    width: 100%;
    margin-top: 50px;
    gap: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slide-container .right-col  svg{
    opacity: 0;
    display: none;
}
.slide-container .right-col .text{
    color: white;
    position: relative;
    height: 100%;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*padding-right: 52px;*/
    width: 100%;
}
.slide-container .right-col .text p{
    font-size: 24px;
    line-height: 167%;
}
.slide-container .right-col .text h2{
    font-weight: 800;
    font-size: 42px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.slide-container .right-col{
    position: relative;
    text-align: right;
    max-width: 510px;
    /*margin-top: -50px;*/
}
.slide-container .left-col p a:hover{
    text-decoration: none;
}
.slide-container .left-col p a{
    color: inherit;
    text-decoration: underline;
}
.slide-container .left-col p{
    font-size: 24px;
    line-height: 167%;
}
/*.slide-container .left-col h1 span{*/
/*    font-size: 81px;*/
/*}*/
.slide-container .title{
    font-weight: 800;
    font-size: 54.28px;
    line-height: 125%;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.slide-container .left-col{
    color: white;
    width: 630px;
}
.content .h1,
.h1,
h1{
    font-weight: 600;
    font-size: 50px;
    line-height: 129%;
}
.content .h2,
.h2,
h2{
    font-weight: 600;
    font-size: 42px;
    line-height: 129%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.content .h3,
.h3,
h3{
    font-weight: 600;
    font-size: 36px;
    line-height: 129%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.content .h4,
.h4,
h4{
    font-weight: 600;
    font-size: 30px;
    line-height: 129%;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.quote-container .right-block{
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.quote-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 480px 38px 1fr;
    grid-template-columns: 480px 1fr;
    grid-gap: 38px;
}
.content .h1,
.home-section .h1{
    margin-bottom: 65px;
    text-transform: uppercase;
}

.content .h1 {
    margin-bottom: 15px;
}
/*.quote-slider .swiper-slide .right-block{*/
/*    transform: translate(-40%, 0);*/
/*    opacity: 0;*/
/*    transition: 1s;*/
/*}*/
/*.quote-slider .swiper-slide .left-block{*/
/*    transform: translate(-80%, 0);*/
/*    opacity: 0;*/
/*    transition: 1s;*/
/*}*/
/*.quote-slider .swiper-slide.swiper-slide-active .right-block{*/
/*    transform: translate(0, 0);*/
/*    opacity: 1;*/
/*}*/
/*.quote-slider .swiper-slide.swiper-slide-active .left-block{*/
/*    transform: translate(0, 0);*/
/*    opacity: 1;*/
/*}*/




.quote-slider .swiper-slide,
.quote-slider-thumbs .swiper-slide {
    opacity: 0 !important;
}
.quote-slider .swiper-slide-active,
.quote-slider-thumbs .swiper-slide-thumb-active {
    opacity: 1 !important;
}

/*.quote-slider-thumbs .swiper-slide{*/
/*    width: initial !important;*/
/*}*/

.home-section{
    margin-top: 124px;
    margin-bottom: 124px;
}
.quote-container .quote-name{
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 10px;
}
.quote-container .quote{
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    margin-bottom: 40px;
}
.quote-container .left-block img{
    aspect-ratio: 659 / 462;
    -o-object-fit: cover;
    object-fit: cover;
}
.quote-container .quote-source{
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 0;
}
.about-congress:after,
.about-congress:before{
    width: 212px;
    content: "";
    height: 2px;
    position: absolute;
    background: -o-linear-gradient(85.81deg, #2C90F7 -17.59%, #05C0CC 115.3%);
    background: linear-gradient(4.19deg, #2C90F7 -17.59%, #05C0CC 115.3%);
}
.about-congress:before {
    top: 0;
}
.about-congress:after{
    bottom: 0;
}
.about-congress .col-md{
    padding-left: 0;
}
.about-congress{
    margin: 40px 0;
    padding: 22px 0 10px 0;
    position: relative;
    gap: 25px;
}
ul,
p{
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
}
.card{
    background-color: transparent;
}
.counter-container span{
    font-size: 22px;
    line-height: 140%;
}
.counter-container .counter-row strong{
    font-weight: 500;
}
.counter-container .counter-row{
    font-weight: 500;
    font-size: 107px;
    line-height: 140%;
}
.counter-container{
    text-align: center;
}
.btns-container a:not(.btn):hover{
    text-decoration: none;
}
.btns-container a:not(.btn){
    font-weight: 500;
    font-size: 20px;
    line-height: 167%;
    color: white;
    text-decoration: underline;
}
.btns-container{
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 31px;
}
.home-section.speakers-section + .earth-animation + .home-section  {
    margin-top: 30px;
}
.home-section.speakers-section {
    margin-bottom: 30px;
}
.home-section.bg-section .h1{
    margin-bottom: 30px;
}
.partners-section,
.speakers-section{
    width: 1548px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.swiper-container-multiple{
    overflow: hidden;
    max-width: 1360px;
    margin: 0 auto;
}
.swiper-wrapper-multiple{
    position: relative;
}
.button-prev,
.button-next{
    position: absolute;
}
.speakers-slider .title{
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    margin-bottom: 30px;
}

a.swiper-slide{
    color: inherit;
    text-decoration: none;
}
.swiper-container-multiple:not(.swiper-initialized) .swiper-slide{
    width: calc(25% - 17px);
}
.swiper-container-multiple:not(.swiper-initialized) .swiper-wrapper{
    gap: 22px;
}

.bg-section{
    background: #001351B8;
    border: 2px solid #73FFF2;
    padding: 62px 40px;
    width: 1440px;
    max-width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    grid-gap: 136px;
    -ms-grid-columns: 1fr 136px 444px;
    grid-template-columns: 1fr 444px;
    display: -ms-grid;
    display: grid;
    margin-bottom: 137px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.bg-section:hover{
    background: rgba(0, 19, 81, 0.90);
}
.bg-section .contact:hover{
    text-decoration: underline;
}
.bg-section .contact{
    font-weight: 500;
    font-size: 26px;
    line-height: 160%;
    color: white;
    text-decoration: none;
}
.bg-section .right-block{
    display: -ms-grid;
    display: grid;
    grid-gap: 18px;
}
.bg-section .right-block .btn{
    width: 100%;
    text-align: left;
}
.title-container .all-news:hover{
    text-decoration: none;
}
.title-container .all-news{
    color: white;
    text-decoration: underline;
    font-weight: 500;
    font-size: 20px;
    line-height: 167%;
}
.title-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}



.big-news:hover {
    color: white;
    text-decoration: none;
}
.list-news .big-news{
    margin-bottom: 0;
    grid-column: 1 / 4;
}
.list-news .card:before,
.big-news:before {
    content: "";
    left: -15px;
    top: -15px;
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: #FFFFFF1C;
    -webkit-box-shadow: 0px 1px 2px 0px #EFE8E899 inset;
    box-shadow: 0px 1px 2px 0px #EFE8E899 inset;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}
.list-news .card img{
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 439 / 293;
}
.list-news .card{
    position: relative;
}
.list-news .card:hover:before,
.big-news:hover:before{
    opacity: 1;
}
.big-news img{
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 906 / 582;
}

.big-news{
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    display: -ms-grid;
    display: grid !important;
    grid-gap: 28px;
    color: white;
    text-decoration: none;
    margin-bottom: 28px;
    position: relative;
}
/*.big-news .text .title{*/
/*    font-weight: 500;*/
/*    font-size: 26px;*/
/*    line-height: 150%;*/
/*    margin-bottom: 46px;*/
/*}*/
/*.big-news .text .date{*/
/*    font-weight: 300;*/
/*    font-size: 16px;*/
/*    margin-bottom: 31px;*/
/*    line-height: 130%;*/
/*}*/
.big-news img{
    margin: 0;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
}
.big-news .text p{
    font-size: 22px;
}
.card:hover{
    color: white;
}
.card{
    color: white;
    border: 0;
}
.card .card-img-top{
    border-radius: 0;
}
.card .card-body .card-title{
    font-weight: 500;
    font-size: 26px;
    line-height: 150%;
    margin-top: 29px;
}
.card:hover{
    text-decoration: none;
}
.card .card-body .card-date{
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
}
.card .card-body{
    margin-top: 45px;
    padding: 0;
}
.big-news .card-body{
    margin-top: 0;
}
.list-news{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 28px;
    margin-bottom: 115px;
}
.card-img-top img{
    width: 100%;
}

.page-item .page-link:hover svg path{
    stroke: black;
}
.page-item .page-link:hover,
.page-item.active .page-link{
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    outline: none;
}
.page-item.disabled .page-link {
    color: white;
    pointer-events: none;
    cursor: auto;
    background-color: transparent;
    border-color: transparent;
    opacity: .4;
    pointer-events: none;
}
.page-item.prev-next .page-link{
    border: 0;
    width: initial;
}
.page-item .page-link{
    background-color: transparent;
    padding: 0;
    width: 36px;
    height: 36px;
    color: white;
    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;
    font-weight: 500;
    font-size: 16px;
}
.pagination{
    gap: 11px;
}
.photo-bank a:hover{
    text-decoration: none;
}
.photo-bank img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.photo-bank{
    padding: 78px 51px;
    width: 1471px;
    max-width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    display: -ms-grid;
    display: grid;
    margin-bottom: 137px;
    position: relative;
    height: 384px;
}












.accordion-item:not(:last-of-type),
.accordion-item{
    border-bottom: 1.49px solid #FFFFFF33;
    border-radius: 0;
    padding-top: 11px;
    padding-bottom: 17px;
}
.accordion-container .collapse{
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    max-height: 0;
    display: block;
}
.accordion-container .collapse.show {
    max-height: 100px;
}
.accordion-container .collapse:not(.show) {
    display: block;
}
.accordion-container p{
    margin-bottom: 0;
}
.accordion-container p:last-child{
    margin-bottom: 0;
}
.accordion-container  p{
    line-height: 150%;
}
.accordion-item{
    position: relative;
}
.accordion-item .accordion-header:before {
    content: "+";
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: 1px solid white;
    right: 0;
    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;
    font-size: 22px;
    cursor: pointer;
    padding-top: 2px;
    top: 32px;
}
.accordion-item .accordion-header.active:before {
    content: "-";
    padding-bottom: 3px;
}
.accordion-header {
    padding: 0 35px 0 0;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    cursor: pointer;
}
.accordion-header .title{
    font-weight: 500;
    font-size: 26px;
    line-height: 160%;
}
.accordion-body {
    display: none;
}

.accordion-body.active {
    display: block;
}
.accordion-content{
    margin-top: 25px;
    margin-left: 25px;
}

.partners-slider .text p{
    font-size: 16px;
    line-height: 130%;
}
.partners-slider .text .title{
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 19px;
}
.partners-slider .text{
    text-align: center;
}
.partners-slider figure{
    width: 100%;
    height: 200px;
    border: 4px solid #FFFFFF33;
    background: #001351;
    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: 16px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.partners-slider .swiper-slide img{
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.partners-slider .swiper-slide:hover img{
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
}
.partners-slider .swiper-slide:hover figure{
    background: #73FFF2;
    border-color: #73FFF2
}
.partners-section .button-next,
.partners-section .button-prev{
    top: 80px;
}
.partners-slider{
    margin-bottom: 70px;
}
.map-section .map{
    width: 100%;
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
}
.map-section{
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
    margin-top: 200px;
}
.map-description strong{

}
.map-description{
    width: 582px;
    padding: 35px 40px;
    z-index: 1;
    position: relative;
    background-color: #001351B8;
    border: 2px solid #73FFF2;
}
.map-description p{
    line-height: 140%;
    margin-bottom: 20px;
}
.map-description .title{
    font-weight: 700;
    font-size: 46px;
    line-height: 140%;
    margin-bottom: 21px;
}
footer .left-block span{
    font-size: 10px;
    display: block;
}
footer .left-block p{
    margin-bottom: 35px;
    font-size: 12px;
    line-height: 118%;
}
footer .left-block{
    max-width: 300px;
}
footer .left-block img{
    margin-bottom: 45px;
}
footer .custom-container .center-block{
    max-width: 615px;
}
footer .custom-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer{
    background: #06052A;
    padding: 35px 0;
}
footer .center-block ul a{
    color: white;
    font-size: 13px;
}
footer .center-block ul{
    list-style: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 0;
}
footer .center-block nav{
    margin-bottom: 66px;
}
footer .social-network{
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 17px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
footer .right-block{
    text-align: right;
}
footer .right-block >a{
    color: white;
    text-decoration: underline;
    font-size: 12px;
}
.quote-slider-nav{
    width: 180px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}
.quote-slider-nav-container{
    width: 480px;
}
footer .center-block p{
    color: #FFFFFF57;
    font-size: 10px;
    line-height: 124%;
}
.earth-animation img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right;
    object-position: right;
}
#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
}
.earth-animation{
    position: absolute;
    left: -597px;
    width: 1093px;
    height: 1093px;
    z-index: -1;
    overflow: hidden;
    border-radius: 100%;
    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;
}
.footer-round img{
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.footer-round:before{
    width: 945px;
    height: 962px;
    content: "";
    border-radius: 231px;
    background: #3664C6;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.footer-round{
    position: absolute;
    width: 1230px;
    height: 1230px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    bottom: 50px;
    z-index: -1;
}
.footer-round-wrapper{
    position: relative;
}
.line1{
    position: absolute;
    z-index: -1;
    -webkit-transition: -webkit-transform 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: transform 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transform: translate(-70%, -20%) rotate(30deg);
    -ms-transform: translate(-70%, -20%) rotate(30deg);
    transform: translate(-70%, -20%) rotate(30deg);
    opacity: 0.1;
    left: 50%;
}
.line1.active{
    -webkit-transform:translate(-23%, -15%) rotate(0);
    -ms-transform:translate(-23%, -15%) rotate(0);
    transform:translate(-23%, -15%) rotate(0);
    opacity: 1;
}

.line2{
    position: absolute;
    z-index: -1;
    -webkit-transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transform: translate(-75%, -35%);
    -ms-transform: translate(-75%, -35%);
    transform: translate(-75%, -35%);
    opacity: 1;
    /*max-width: initial;*/
    left: 50%;
    width: 1500px;
}
.line2.active{
    -webkit-transform: translate(-25%, -35%);
    -ms-transform: translate(-25%, -35%);
    transform: translate(-25%, -35%);
    opacity: 1;
}

.hexagon5{
    position: absolute;
    z-index: -1;
    -webkit-transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: 3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transform: translate(-75%, -25%);
    -ms-transform: translate(-75%, -25%);
    transform: translate(-75%, -25%);
    max-width: 500px;
    left: 50%;
    opacity: 0;
}
.hexagon5.active{
    -webkit-transform:translate(100%, -35%);
    -ms-transform:translate(100%, -35%);
    transform:translate(100%, -35%);
    opacity: 1;
}

.blur-ellipse{
    position: absolute;
    top: 0;
    left: 50%;
    /*width: 1028px;*/
    /*height: 1046px;*/
    /*background-color: #3664C6;*/
    /*border-radius: 50%;*/
    /*filter: blur(400px);*/
}
.glare{
    width: 1437px;
    height: 962px;
    background-color: #3664C6;
    border-radius: 50%;
    -webkit-filter: blur(400px);
    filter: blur(400px);
    /*z-index: 99;*/
    z-index: -1;
    -webkit-transform: translate(-67%, -100%);
    -ms-transform: translate(-67%, -100%);
    transform: translate(-67%, -100%);
    /*transition: 0.3s;*/
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    opacity: .8;
    will-change: transform;
}
.firefox .footer-round:before,
.firefox .glare {
    opacity: .4;
}
.glare.time1{
    -webkit-transition: 1s !important;
    -o-transition: 1s !important;
    transition: 1s !important;
}
.glare.time2{
    -webkit-transition: 2s !important;
    -o-transition: 2s !important;
    transition: 2s !important;
}
.trigger {
    width: 100%;
    height: 1px;
    background: rgba(255, 0, 0, 1);
    text-align: center;
    position: absolute;
    left: 0;
    opacity: 0;
}

.hexagon1{
    position: absolute;
    z-index: -1;
    -webkit-transition: -webkit-transform 5s;
    transition: -webkit-transform 5s;
    -o-transition: transform 5s;
    transition: transform 5s;
    transition: transform 5s, -webkit-transform 5s;
    -webkit-transform: translate(-61%, -63%) rotate(60deg) scale(.4);
    -ms-transform: translate(-61%, -63%) rotate(60deg) scale(.4);
    transform: translate(-61%, -63%) rotate(60deg) scale(.4);
}
.hexagon1.active{
    -webkit-transform: translate(-61%, -63%) rotate(0) scale(1);
    -ms-transform: translate(-61%, -63%) rotate(0) scale(1);
    transform: translate(-61%, -63%) rotate(0) scale(1);
}


.hexagon2{
    position: absolute;
    z-index: -1;
    right: 0;
    -webkit-transition: 5s;
    -o-transition: 5s;
    transition: 5s;
    /*opacity: 0.1;*/
    -webkit-transform: translate(48%, -65%)  scale(1) rotate(0);
    -ms-transform: translate(48%, -65%)  scale(1) rotate(0);
    transform: translate(48%, -65%)  scale(1) rotate(0);

}
.hexagon2.active{
    /*opacity: 1;*/
    -webkit-transform: translate(-15%, -20%) scale(2) rotate(45deg);
    -ms-transform: translate(-15%, -20%) scale(2) rotate(45deg);
    transform: translate(-15%, -20%) scale(2) rotate(45deg);

}

.hexagon3{
    position: absolute;
    z-index: -1;
    -webkit-transform: translate(-41%, 0%)  scale(1) rotate(0);
    -ms-transform: translate(-41%, 0%)  scale(1) rotate(0);
    transform: translate(-41%, 0%)  scale(1) rotate(0);
    left: 0;
}
.hexagon4{
    position: absolute;
    z-index: -1;
    -webkit-transform: translate(-35%, 0%)  scale(1) rotate(0);
    -ms-transform: translate(-35%, 0%)  scale(1) rotate(0);
    transform: translate(-35%, 0%)  scale(1) rotate(0);
    left: 0;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;

    /*transform: translate(-65%, 190%)  scale(1) rotate(0);*/

}
#trigger1 {
    margin-top: -100px;
}
#trigger2{
    margin-top: 350px;
}
#trigger3{
    margin-top: -300px;
}
#trigger4{
    margin-top: -150px;
}
#trigger9{
    margin-top: 150px;
}
#trigger10{
    bottom: 0;
}
#trigger14{
    top: 51%;
}
#partners-section1{
    position: relative;
}
.btn-list-animation .btn{
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.photo-bank{
    z-index: 1;
}
/*.btn-list-animation .btn{*/
/*    -webkit-transform: translate(0, 70px);*/
/*    -ms-transform: translate(0, 70px);*/
/*    transform: translate(0, 70px);*/
/*    opacity: 0;*/
/*}*/
/*.btn-list-animation .btn.show{*/
/*    -webkit-transform: translate(0, 0);*/
/*    -ms-transform: translate(0, 0);*/
/*    transform: translate(0, 0);*/
/*    opacity: 1;*/
/*}*/
.accordion-item.list-item-animation{
    /*opacity: 0;*/
    /*-webkit-transform: translate(0px, -40px);*/
    /*-ms-transform: translate(0px, -40px);*/
    /*transform: translate(0px, -40px);*/
    /*-webkit-transition: 1s;*/
    /*-o-transition: 1s;*/
    /*transition: 1s;*/
}
.accordion-item.list-item-animation.show {
    /*opacity: 1;*/
    /*-webkit-transform: translate(0px, 0px);*/
    /*-ms-transform: translate(0px, 0px);*/
    /*transform: translate(0px, 0px);*/
}
.animation-not-loaded .line1{
    transform: translate(0, -20%) rotate(0deg) !important;
    opacity: 1 !important;
    left: 0 !important;
}
.animation-not-loaded .glare{
    display: none;
}
.animation-not-loaded #particles-js {
    display: none;
}
.animation-not-loaded .hexagon2{
    transform: translate(0, -65%) scale(1) rotate(0) !important;
}
.animation-not-loaded .earth-animation {
    /*left: 0 !important;*/
    /*width: 100% !important;*/
}
.animation-not-loaded .list-animation .list-item-animation{
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}
.animation-not-loaded  .line2 {
    -webkit-transform: translate(0%, -35%) !important;
    -ms-transform: translate(0%, -35%) !important;
    transform: translate(0%, -35%) !important;
    opacity: 1;
    left: 0;
    width: 100%;
}

.img-content{
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

.header-all {
    position: static;
}

.breadcrumb {
    padding-left: 0;
    padding-right: 0;
    text-transform: uppercase;
}

.breadcrumb .breadcrumb-item{
    display: inline;
}
.breadcrumb {
    display: block;
}
.breadcrumb a {
    color: #FFF;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    width: 13px;
    height: 12px;
    background-image: url(/_/i/ico-mini-arrow.svg);
    float: none;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 7px;
}

.header {
    background: linear-gradient(180deg, #121154 30%, #2F5EA9 100%);
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.news-page{
    margin-top: 15px;
}

.news-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3%;
}

.news-content{
    width: 67%;
    max-width: 910px;
}

.news-feed-aside{
    width: 28%;
}

.news-content time{
    margin-top: 30px;
    margin-bottom: 25px;
    display: block;
    font-weight: 300;

}

.news-content > img + p{
    margin-top: 50px;
}

.content .news-content-title{
    font-size: 50px;
    font-weight: 700;
    line-height: 129%;
    margin-bottom: 45px;
}

.subscription-line {
    background-color: #00165B;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.subscription-line-item {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.subscription-line-item span{
    display: inline-block;
    margin-right: 10px;
}

.subscription-line-item:first-child img{
    transform: scale(1.2);
    margin-left: 5px;
}

.subscription-line-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    line-height: 0;
    gap: 3px;
}

.subscription-line-list a:hover{
    opacity: 0.8;
}

.news-feed-aside{
    background-color: rgba(0, 19, 81, 0.720);
    padding: 30px 25px;
}

.news-feed-aside h2{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 55px;
}

.news-feed .card {
    margin-bottom: 70px;
}

.news-feed .card:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(4.19deg, #2C90F7 -17.59%, #05C0CC 115.3%);
    border-radius: 20px;
    position: absolute;
    bottom: -35px;
}

.news-feed .card:last-child::after {
    display: none;
}

.news-feed .card .card-body {
    margin-top: 15px;
    padding: 0;
}

.news-feed .card .card-body .card-time{
    font-weight: 100;
    font-size: 16px;
    line-height: 130%;
}

.news-feed .card .card-body .card-title {
    font-weight: 100;
    font-size: 20px;
    line-height: 160%;
    margin: 15px 0 0 0;
    text-transform: none;
}

.news-feed-aside .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.news-feed-aside .card:before{
    content: "";
    left: -15px;
    top: -15px;
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: #FFFFFF1C;
    box-shadow: 0px 1px 2px 0px #EFE8E899 inset;
    backdrop-filter: blur(40px);
    z-index: -1;
    transition: .3s;
    opacity: 0;
}

.news-feed-aside .card:hover:before {
    opacity: 1;
}

.news-listing-page {
    margin-top: 65px;
}

.news-listing-page .h1{
    margin-bottom: 90px;
    text-transform: uppercase;
}

.news-listing-page .list-news {
    grid-gap: 100px 28px;
}
.internal-footer-round-wrapper{

}
.static-bottom-round{

}
.about-section .about-congress:after{
    display: none;
}
.about-section .h1{
    margin-bottom: 50px;
}

.about-section .quote-slider-thumbs{
    width: 100%;
    overflow: initial;
}
.about-section .quote-slider-nav {
    width: 100%;
}
.about-section .quote-slider-thumbs .swiper-wrapper{
    width: calc(100% - 29px);
    gap: 40px;
    transform: none !important;
}
.about-section .quote-slider-thumbs .swiper-slide.swiper-slide-thumb-active,
.about-section .quote-slider-thumbs .swiper-slide:hover{
    background: #0493FA;
    border-color: #0493FA;
}
.about-section .quote-slider-thumbs .swiper-slide{
    opacity: 1 !important;
    flex: 1;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    justify-content: center;
    pointer-events: initial;
    cursor: pointer;
}
.about-section{
    background: #FFFFFF14;
    box-shadow: 0 1px 2px 0 #EFE8E899 inset;
    backdrop-filter: blur(30px);
    padding: 70px 30px;
    border-radius: 6px;
    margin-left: -30px;
    margin-right: -30px;
}
.h1 span{
    font-size: 12px;
    margin-right: 0;
    float: right;
    font-weight: 500;
}
.about-section .counter-container .counter-row,
.about-section .counter-container strong{
    font-size: 50px;
    font-weight: 600;
}
.about-section .counter-container img{
    margin-bottom: 28px;
}
.about-section .counter-container span{
    font-size: 20px;
}
.about-section .counter-list{
    margin: 0 0 70px 0;
    gap: 23px;
    flex-wrap: nowrap;
}
.about-section .counter-container{
    background: #FFFFFF;
    color: black;
    padding: 53px 0;
    flex: 1;
    border-radius: 6px;
}
.hand-bg{
    position: absolute;
    right: 0;
    transform: translate(0, -50%);
    z-index: -1;
}
.hand-margin{
}
.hand-wrapper{
    padding: 550px 0;
}
.news-swiper-pagination{
    display: inline-flex;
    gap: 5px;
    width: initial !important;
}
.news-slider-next,
.news-slider-prev{

}

.news-swiper-pagination .swiper-pagination-bullet{
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    width: 36px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    justify-content: center;
    pointer-events: initial;
    cursor: pointer;
    opacity: 1;
    background-color: transparent;
}
.news-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: white;
    border-color: white;
    color: black;
}
.news-nav-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}
.news-slider-last,
.news-slider-first{
    cursor: pointer;
}
.news-slider .news-next:active,
.news-slider .news-prev:active{
    transform: scale(.96);
}
.news-slider .news-next,
.news-slider .news-prev{
    position: absolute;
    z-index: 2;
    top: 120px;
    cursor: pointer;
}
.news-slider .news-prev{
    left: 0px;
}
.news-slider .news-next{
    right: 0px;
}
.news-slider{
    padding-left: 20px !important;
    margin-left: -20px !important;

    padding-right: 20px !important;
    margin-right: -20px !important;
}
.content-nav{

}
.list-news{

}
.home-list-news .card:not(.big-news) p{
    display: none;
}

.bx-pagination .bx-pagination-container ul li:not(.bx-pag-prev, .bx-pag-next) span{
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    transition: .3s;
    font-weight: 500;
    font-size: 16px;
}
/*.bx-pagination .bx-pagination-container ul li a:hover,*/
.bx-pagination .bx-pagination-container ul li.bx-active span{
    background-color: white;
    color: black;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
    border-radius: 0;
    background-color: transparent;
    font-weight: 500;
    color: white;
    font-size: 16px;
    border: 0;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span {
    padding: 0 !important;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
    background: transparent;
    border-color: transparent;
    color: black !important;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
    font-size: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span:before,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span:before{
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border: 1px solid white;
    border-left: 0;
    border-bottom: 0;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-next span:before{
    transform: rotate(45deg);
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span:before{
    transform: rotate(-135deg);
}
.bx-pagination .bx-pagination-container ul li a:hover span {
    background: #ffffff;
    color: black;
}
.section-location-tutorial__item:not(:last-child) {
    margin-bottom: 38px;
}
.section-location-tutorial__item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}
.section-location-tutorial__item-body {
    display: flex;
    align-items: center;
    gap: 24px;
}
.title-lg {
    font-size: 28px;
    line-height: 120%;
    font-weight: 500;
}


.section-location-tutorial__item-from,
.section-location-tutorial__item-to {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
}
.section-location-tutorial__item-separator {
    width: 56px;
    height: 11px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='14' fill='none'%3E%3Cpath d='M0 7h55M50 1.5L55.5 7 50 12.5' stroke='%23003DFF' stroke-width='2'/%3E%3C/svg%3E");
    background-position: 50%;
    background-size: contain;
    filter: brightness(0) invert(1);
    background-repeat: no-repeat;
}
.quote-container.quote-row{
    -ms-grid-columns: 1fr 38px 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}
.year-photo img{

}
.year-photo{
    position: relative;
    display: block;
}
.year-photo span{
    position: absolute;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0;
    text-align: right;
    vertical-align: middle;
    right: 0;
    bottom: 0;
    color: #000000;
    background: #ffffff;
    padding: 5px 20px;
    backdrop-filter: blur(3px);
}
.langs-list{
    display: grid;
    position: absolute;
    z-index: 2;
    padding: 45px 13px 12px 13px;
    box-shadow: 0px 0px 25px -4px transparent;
    grid-gap: 1px;
    top: -9px;
    left: -12px;
    border-radius: 5px;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}
.langs-container .lang.active{
    z-index: 3;
    position: relative;
}
.langs-container{
    position: relative;
}
.langs-list .lang{
    margin-top: -31px;
}
.langs-container:hover .langs-list{
    background-color: #11124f;
    box-shadow: 0px 0px 25px -4px #000000;
    grid-gap: 10px;
    padding-top: 50px;
    opacity: 1;
    pointer-events: initial;
}
.langs-container:hover .langs-list .lang{
    margin-top: 0;
}
.fancybox__iframe{
    max-width: 945px;
    aspect-ratio: 940 / 529;
    height: initial !important;
}
.has-iframe .fancybox__content{
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 70px;
    gap: 50px;
}
.step:before{
    content: attr(data-order);
    position: absolute;
    font-weight: 600;
    font-size: 90px;
    line-height: 100%;
    color: #73BCFF;
    opacity: .2;
    bottom: 7px;
    right: 15px;
}

.step .title{
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}
.step p{
    font-size: 18px;
    margin-bottom: 10px;
    /*line-height: 115%;*/
}
.step .btn{
    font-size: 18px;
    margin-top: 10px;
    padding-top: 12px;
}

.step:after{
    background-image: url("data:image/svg+xml,%0A%3Csvg width='18' height='52' viewBox='0 0 18 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 26L0.75 51.1147L0.750002 0.885263L18 26Z' fill='%2373FFF2'/%3E%3C/svg%3E%0A");
    content: "";
    right: -39px;
    top: calc(50% - 29px);
    width: 22px;
    height: 58px;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}
.step:last-child:after {
    display: none;
}
/*.step:nth-child(4){*/
/*    grid-column: 1 / 3;*/
/*}*/
/*.step:nth-child(5):after,*/
/*.step:nth-child(3):after{*/
/*    display: none;*/
/*}*/
.step{
    border: 2px solid #73FFF2;
    background: #001351B8;
    min-height: 258px;
    position: relative;
    padding: 30px 30px 90px;
    text-align: center;
}
.steps.info-block .step{
    padding-bottom: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.steps.info-block .step:after{
    display: none;
}
.steps.info-block{
    margin-bottom: 120px;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1360px) {
    .header-logo-list{
        margin-top: 30px;
    }
    .hand-wrapper{
        padding: 385px 0;
    }
    .about-section .quote-slider-thumbs .swiper-wrapper{
        gap: 20px;
    }
    .about-section{
        padding: 50px 21px;
        margin-left: -21px;
        margin-right: -21px;
    }
    .content .news-content-title{
        font-size: 35px;
    }
    ul, p {
        font-size: 16px;
    }
    .footer-round{
        width: 861px;
        height: 861px;
    }
    .header-slider .swiper-slide {
        /*padding-top: 280px;*/
        /*padding-bottom: 105px;*/
    }

    .main-menu ul li a{
        font-size: 14px;
    }
    .main-menu ul{
        row-gap: 7px;
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }
    .slide-container .bottom-col {
        margin-top: 35px;
        gap: 26px;
    }
    .slide-container .left-col {
        width: 440px;
    }
    .quote-container .quote-name{
        font-size: 16px;
    }
    .quote-container .quote{
        font-size: 20px;
        margin-bottom: 39px;
    }
    .quote-container{
        grid-gap: 27px;
    }
    .quote-container .quote-source{
        font-size: 16px;
    }

    .btns-container{
        gap: 20px;
    }
    .btns-container a:not(.btn){
        font-size: 16px;
    }
    .map-section {
        padding-top: 112px;
        padding-bottom: 112px;
        margin-top: 105px;
    }
    .photo-bank{
        height: 269px;
        padding: 35px;
    }
    .accordion-header .title {
        font-size: 20px;
    }
    .partners-slider{
        margin-bottom: 50px;
    }
    .map-description .title{
        font-size: 32px;
    }
    .map-description{
        max-width: 407px;
        padding: 25px 30px;
    }
    .list-news{
        margin-bottom: 80px;
    }
    .big-news .text .title {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .big-news .text p{
        font-size: 16px;
    }
    .card .card-body .card-title {
        font-size: 18px;
        margin-top: 20px;
    }
    .card .card-body {
        margin-top: 31px;
    }
    .home-section {
        margin-top: 86px;
        margin-bottom: 86px;
    }
    .bg-section .right-block{
        grid-gap: 13px;
    }
    .speakers-slider .title{
        font-size: 20px;
    }
    .bg-section{
        grid-gap: 95px;
        -ms-grid-columns: 1fr 95px 310px;
        grid-template-columns: 1fr 310px;
        padding: 35px;
        margin-bottom: 96px;
    }
    .content .h1,
    .h1,
    h1 {
        font-size: 35px;
    }
    .content .h2,
    .h2,
    h2 {
        font-size: 30px;
    }
    .content .h3,
    .h3,
    h3 {
        font-size: 27px;
    }
    .content .h4,
    .h4,
    h4 {
        font-size: 24px;
    }
    .speakers-section{
        padding-top: 87px;
        padding-bottom: 87px;
    }

    .home-section .h1 {
        margin-bottom: 45px;
    }
    .content .h1 {
        margin-bottom: 15px!important;
    }
    .counter-container .counter-row{
        font-size: 75px;
    }
    .counter-container span{
        font-size: 17px;
    }
    .title-container .all-news,
    p{
        font-size: 16px;
    }
    .slide-container .right-col svg{
        width: 291px;
        height: 205px;
    }
    .slide-container .title {
        font-size: 37.8px;
        margin-bottom: 17px;
    }
    .slide-container .right-col .text p,
    .slide-container .left-col p {
        font-size: 17px;
    }
    .slide-container .right-col .text h2{
        font-size: 29.4px;
    }
    .slide-container .right-col .text{
        padding-right: 36.4px;
    }
    .btn:not(.btn-small){
        padding-left: 14px;
        padding-right: 14px;
        gap: 15px;
        font-size: 17px;
        padding-top: 10px;
        padding-bottom: 8px;
    }
}
@media screen and (min-width: 992px) {
    .main-menu-container{
        margin-top: 15px;
    }
    .header-logo-list{

    }
    .burger-menu-container{
        margin-top: 27px;
    }
    .bottom-header{
        align-items: flex-start;
        margin-top: 10px;
    }
    .logo{
        margin-top: -22px;
    }
    .main-menu .has-submenu{
        padding-right: 20px;
    }
    .main-menu .has-submenu >a:after{
        transform: translate(14px, 2px);
    }
    .has-submenu >a:after{
        content: "";
        width: 8px;
        height: 8px;
        position: absolute;
        border: 1px solid white;
        border-left: 0;
        border-top: 1px;
        rotate: 45deg;
        transform: translate(13px, -1px);
    }


    .news-listing-page {
        margin-top: 35px;
    }

    .news-listing-page .h1{
        margin-bottom: 50px;
        text-transform: uppercase;
    }

    .burger-menu li:not(.has-submenu) a{
        display: block;
    }
    .burger-menu li .submenu-toggle:hover,
    .burger-menu li >a:hover{
        background-color: var(--blue);
        text-decoration: none;
    }
    .burger-menu{
        top: 100%;
        right: -20px;
    }
    .burger-menu-container{
        position: relative;
    }
    .burger-menu .submenu-toggle{
        cursor: pointer;
    }
    .burger-menu .submenu-toggle:after{
        display: none;
    }
    .burger-menu .submenu-toggle.active:before{
        rotate: -45deg;
    }
    .burger-menu .submenu-toggle:before{
        content: "";
        width: 8px;
        height: 8px;
        position: absolute;
        border: 1px solid white;
        border-left: 0;
        border-top: 1px;
        rotate: 45deg;
        margin-top: -3px;
        transition: .3s;
    }
    .burger-menu .has-submenu >a:after{
        display: none;
    }
    .burger-menu .submenu-toggle{
        /*display: none;*/
        font-size: 0;
        width: 38px;
        height: 38px;
        display: inline-flex;
        vertical-align: top;
        align-items: center;
        justify-content: center;
    }
    /*.burger-menu ul li:hover >ul{*/
    /*    display: block;*/
    /*}*/
    .burger-menu .has-submenu{
        position: relative;
    }
    .burger-menu ul ul{
        background-color: #11124f;
        width: 100%;
        top: 0;
        padding-left: 15px;
    }

    .main-menu ul ul li a{
        color: white;
        padding: 7px 15px;
        display: block;
        font-size: 16px;
    }
    .main-menu ul ul li a:hover{
        background-color: var(--blue);
        text-decoration: none;
    }
    .main-menu ul ul li{
        /*padding: 4px 0px;*/
    }
    .main-menu >ul >li:before{
        display: none;
        width: 66px;
        height: 8px;
        content: "";
        background-color: var(--blue);
        position: absolute;
        bottom: 0px;
        margin-left: -33px;
        left: 50%;
    }
    .main-menu ul ul{
        display: none;
        position: absolute;
        width: 300px;
        margin-left: -15px;
        right: 0;
        line-height: 120%;
        background: #11124f;
        z-index: 1;
        padding: 10px;
        box-shadow: 0px 0px 25px -4px #0202022b;
        left: 50%;
        transform: translate(-50%, 0);
        margin-top: 0;
    }
    .main-menu ul ul ul{
        margin-right: 15px;
        margin-top: -15px;
    }
    .main-menu ul li:hover:before,
    .main-menu ul li:hover >ul{
        display: block !important;
    }
}
@media screen and (max-width: 1200px) {
    .step{
        padding: 15px 15px 90px;
    }
    .hand-wrapper{
        padding: 250px 0;
    }
    .logo{
        width: 160px;
        height: 107px;
    }
    .bg-section{
        grid-gap: 75px;
        -ms-grid-columns: 1fr 75px 290px;
        grid-template-columns: 1fr 290px;
        margin-bottom: 75px;
    }
    .main-menu-container{
        display: none;
    }
    .bottom-header {
        -ms-grid-columns: 200px auto 48px;
        grid-template-columns: 200px auto 48px;
    }
}
@media screen and (max-width: 991px) {
    .step p {
        font-size: 16px;
    }
    .step:after {
        right: calc(50% - 11px);
        bottom: -57px;
        transform: rotate(90deg);
        top: initial;
    }
    .steps {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 90px;
    }
    .has-submenu{
        position: relative;
    }
    .news-row{
        flex-wrap: wrap;
    }

    .news-content{
        width: 100%;
        max-width: 100%;
    }

    .news-feed-aside{
        width: 100%;
    }
    .news-feed{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 28px;
    }
    .news-feed .card:after {
        display: none;
    }
    .news-feed-aside .btn {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .header-slider-container .swiper-next,
    .header-slider-container .swiper-prev{
        display: none;
    }
    .header-slider .swiper-slide {
        padding-top: 230px;
        padding-bottom: 60px;
    }

    .slide-container {
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
    .slide-container .right-col {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .slide-container .bottom-col {
        justify-content: center;
    }
    .slide-container .left-col {
        width: 100%;
        text-align: center;

    }
    .content .h1,
    .h1, h1 {
        font-size: 30px;
    }
    .content .h2,
    .h2, h2 {
        font-size: 26px;
    }
    .content .h3,
    .h3, h3 {
        font-size: 24px;
    }
    .content .h4,
    .h4, h4 {
        font-size: 22px;
    }
    footer .custom-container .center-block {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 40px;
    }
    footer .custom-container{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    footer .center-block nav {
        margin-bottom: 34px;
    }
    .big-news img {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
    }
    .big-news {
        -ms-grid-columns: 1fr 28px 1fr;
        grid-template-columns: 1fr 1fr;
    }
    .media img{
        gap: 15px;
        max-width: 100px;
    }
    /*.burger-menu-container{*/
    /*    */
    /*}*/
    .burger-menu{

    }



    .burger-menu .submenu-toggle,
    .main-menu .submenu-toggle{
        display: block;
    }
    .burger-menu .submenu-toggle,
    .main-menu .submenu-toggle{
        position: absolute;
        right: 0;
        width: 31px;
        height: 31px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 1px solid #ffffff;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        color: white;
        margin-top: 0;
        top: 0;
        font-size: 27px;
    }
    .burger-menu ul,
    .main-menu ul{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
    .burger-menu ul ul,
    .main-menu ul ul{
        padding-left: 15px;
        display: none;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .burger-menu,
    .main-menu{
        display: block;
        position: fixed;
        left: -400px;
        top: 0;
        height: 100%;
        overflow: auto;
        padding: 20px;
        width: 320px;
        max-width: 100%;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        margin: 0;
        z-index: 4;
    }
    .body-open-menu .burger-menu,
    .body-open-menu .main-menu-container .main-menu{
        left: 0;
    }

}
@media screen and (max-width: 768px) {
    .steps.info-block {
        margin-bottom: 120px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-round:before{
        width: 100%;
        filter: blur(200px);
        height: 100%;
    }
    .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content{
        padding: 0 !important;
    }
    .line2{
        display: none;
    }
    .hexagon2{
        transform: translate(0, -65%) scale(1) rotate(0) !important;
    }
    .quote-container + .h3{
        font-size: 1.2rem;
    }
    .earth-animation img,
    .earth-animation{
        max-width: 100%;
        left: 0;
        object-position: left;
    }
    .slide-container .right-col .text{
        text-align: center;
        padding-right: 0;
    }
    .home-list-news .card:not(.big-news) p{
        display: block;
    }
    .big-news{
        display: block !important;
    }
    .list-news .big-news {
        margin-bottom: 0;
        grid-column: 1;
        grid-gap: 0;
    }
    .news-slider .news-next,
    .news-slider .news-prev{
        display: none !important;
    }
    .news-slider{
        margin-left: -15px;
        margin-right: -15px;
    }
    .news-slider-prev,
    .news-slider-next,
    .news-slider-last,
    .news-slider-first{
        display: none;
    }
    .about-section .counter-list{
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0;
    }
    .about-section .quote-slider-thumbs .swiper-wrapper{
        gap: 10px;
        width: 100%;
    }
    .news-feed{
        display: block;
    }
    .news-feed .card:after {
        display: block;
    }
    .accordion-header .title {
        font-size: 18px;
    }
    .content .h1,
    .home-section .h1 {
        margin-bottom: 30px;
    }
    .partners-section{
        padding-left: 0;
        padding-right: 0;
    }
    .quote-container .quote {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .photo-bank {
        height: 170px;
        padding: 20px;
    }
    .bg-section .contact {
        font-size: 18px;
    }
    .about-congress {

        gap: 15px;
    }
    .speakers-section{
        padding: 60px 0;
    }
    .home-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .counter-container .counter-row {
        font-size: 55px;
    }
    .counter-container {
        margin-bottom: 30px;
    }
    .bottom-header {
        -ms-grid-columns: 160px auto 48px;
        grid-template-columns: 160px auto;
        padding-top: 15px;
    }
    .header-slider .swiper-slide {
        padding-top: 200px;
    }
    header {
        padding: 15px 0;
    }
    .header-logo-list{
        display: none;
    }
    .footer-round {
        height: 600px;
        width: 100%;
    }
    .button-prev,
    .button-next{
        display: none;
    }
    .slide-container .bottom-col .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .slide-container .bottom-col {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .quote-slider-nav-container {
        width: 100%;
    }
    .quote-container {
        grid-gap: 27px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quote-container {
        grid-gap: 27px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .map-description {
        padding: 25px 30px;
        max-width: 100%;
    }
    .map-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .content .h1,
    .h1, h1 {
        font-size: 23px;
    }
    .h2, h2 {
        font-size: 22px;
    }
    .h3, h3{
        font-size: 20px;
    }
    .h4, h4 {
        font-size: 18px;
    }
    footer .left-block {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    footer .center-block ul {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }
    footer .left-block p {
        margin-bottom: 10px;
    }
    footer .social-network {
        gap: 10px;
        margin-bottom: 10px;
    }
    footer .right-block {
        width: 100%;
        text-align: center;
    }
    .big-news figure {
        -ms-grid-column: 1;
        grid-column: 1;
    }
    .big-news .text .date {
        margin-bottom: 10px;
    }
    .card .card-body {
        margin-top: 28px;
    }
    .card .card-body .card-title {
        margin-top: 10px;
    }
    .big-news .text .title {
        margin-bottom: 10px;
    }
    .list-news {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .big-news {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .bg-section{
        grid-gap: 45px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 25px;
    }
}
@media screen and (max-width: 480px) {
    .content .h1, .h1, h1 {
        font-size: 21px;
    }
    .content .h2, .h2, h2{
        font-size: 20px;
    }
    .content .h3, .h3, h3{
        font-size: 19px;
    }
    .content .h4, .h4, h4 {
        font-size: 18px;
    }
    .button-prev,
    .button-next{
        display: none;
    }
    .home-section.bg-section .h1 {
        margin-bottom: 20px;
    }
    .bg-section{
        padding: 20px;
        grid-gap: 15px;
    }
    .bg-section .contact {
        font-size: 15px;
    }
    .bg-section .btn{
        height: 40px;
        font-size: 12px;
    }
    .bg-section p{
        font-size: 14px;
    }
}

.search-suggest {
    width: calc( 100% - 100px );
}

.search-page a.search_title {
    font-size: 1.25em;
    display: block;
}

.searh_result{
    margin-bottom: 40px;
}