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

body {
    background: #0A0E1C;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

.container {
    max-width: 1432px;
    position: relative;
}

.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
  	display: flex;
    align-items: center;
  	background: #050803;
}

.loader video {
    width: 100%;
    object-fit: contain;
}


.btn_bd_white {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    box-shadow: 0px 0px 0px 2px #ffffff;
    border-radius: 48px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: none;
    transition: .3s;
}

.btn_bd_white:hover {
    background-size: 300% 300%;
    background-image: linear-gradient(61.69deg, #047536 21.7%, #F9D604 84.86%);
    background-repeat: no-repeat;
    animation: gradient 5s ease infinite;
    box-shadow: none;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn_bd_white img {
    margin-left: 8px;
}

.main_menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 14, 28, 0.3);
    backdrop-filter: blur(20px);
  	-webkit-backdrop-filter: blur(20px);
    width: 100vw;
    height: 100vh;
    padding-top: 60px;
    display: flex;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.show_menu .main_menu {
    pointer-events: all;
    z-index: 99;
    opacity: 1;
}

.main_menu .btn_close {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 188px;
}

.main_menu .btn_close img {
    width: 32px;
    margin-right: 16px;
}

.main_menu .btn_close span {
    transform: translateX(-50px);
    opacity: 0;
    transition: .5s ease-in;
}

.main_menu .btn_close:hover span {
    opacity: 1;
    transform: translateX(0px);
}

.main_menu .menu_content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 46px;
    border-bottom: 1px solid #8E94AB;
    margin-bottom: 88px;
}

.main_menu .menu_content .menu_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main_menu .menu_content .menu_list a {
    font-family: 'Visby CF Demi';
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.04em;
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    transition-delay: 0;
}

.show_menu .main_menu .menu_content .menu_list a {
    opacity: 1;
    transform: translateY(0px);
    transition: .3s ease-in;
}

.main_menu .menu_content .menu_list a:nth-child(1) {
    transition-delay: 0;
}

.main_menu .menu_content .menu_list a:nth-child(2) {
    transition-delay: .5s;
}

.main_menu .menu_content .menu_list a:nth-child(3) {
    transition-delay: 1s;
}

.main_menu .menu_content .menu_list a:nth-child(4) {
    transition-delay: 1.5s;
}

.main_menu .menu_content .menu_list a:nth-child(5) {
    transition-delay: 2s;
}

.main_menu .menu_content .right {
    text-align: right;
}

.main_menu .menu_content .right .lang {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-bottom: 130px;
}

.main_menu .menu_content .right .lang a {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #8E94AB;
}

.main_menu .menu_content .right .lang a.active {
    color: #fff;
}

.main_menu .menu_content .right>a {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: right;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 24px;
}

.main_menu .menu_content .right address {
    max-width: 358px;
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.04em;
}

.main_menu .menu_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_menu .menu_footer .social_list {
    gap: 54px;
    display: flex;
}

.main_menu .menu_footer .social_list a {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.main_menu .menu_footer p {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    text-align: right;
    letter-spacing: 0.04em;
}

.main_nav {
    padding: 43px 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 28, 0.2);
    backdrop-filter: blur(20px);
    z-index: 90;
}

.main_nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn_menu {
    display: flex;
    align-items: center;
}

.btn_menu img {
    margin-right: 15px;
}

.btn_menu span {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Visby CF Demi';
    transform: translateX(-60px);
    opacity: 0;
    transition: .5s ease-in;
}

.btn_menu:hover span {
    transform: translateX(0px);
    opacity: 1;
}

.main_banner {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url(../images/banner1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.main_banner:after {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../effect/main.png);
    z-index: 9;
    animation-name: sprite;
    animation-duration: 10s;
    animation-timing-function: steps(13);
    animation-iteration-count: infinite;
    background-position: 0 0; */
}



.main_banner .left {
    max-width: 740px;
    position: relative;
    z-index: 2;
}

.main_banner .left h1 {
    font-family: 'Visby CF Extra';
    font-size: 64px;
    line-height: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main_banner .left p {
    font-family: 'Visby CF Demi';
    font-size: 28px;
    line-height: 52px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.main_banner .liner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* background-image: url(../effect/main.png);
    z-index: 1;
    animation-name: sprite;
    animation-duration: 2.2s;
    animation-timing-function: steps(19);
    animation-iteration-count: infinite;
    background-position: 0 0; */
    /* background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.8) 8.1%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.8) 16.1%, rgba(0, 0, 0, 0.2) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.2) 32%, rgba(0, 0, 0, 0.8) 32.1%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 40.1%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.8) 48.1%, rgb(0, 0, 0) 75%);
    background-size: 400% 400%;
    animation: gradient-pulse 5s ease infinite; */
    
    background-size: 120% 120%;
    animation: gradientAnimation 4s ease-in-out infinite;
}

@media (max-width: 1930px){
    .main_banner .liner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background-image: url(../effect/main.png);
        z-index: 1;
        animation: none;
        animation-name: sprite;
        animation-duration: 2.2s;
        animation-timing-function: steps(19);
        animation-iteration-count: infinite;
        background-position: 0 0;
        background-size: unset;
        /* background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.8) 8.1%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.8) 16.1%, rgba(0, 0, 0, 0.2) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.2) 32%, rgba(0, 0, 0, 0.8) 32.1%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 40.1%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.8) 48.1%, rgb(0, 0, 0) 75%);
        background-size: 400% 400%;
        animation: gradient-pulse 5s ease infinite; */
        
        /* background-size: 120% 120%;
        animation: gradientAnimation 4s ease-in-out infinite; */
    }
}
@media (max-width: 1900px){
    .main_banner .liner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        /* background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.8) 8.1%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.8) 16.1%, rgba(0, 0, 0, 0.2) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.2) 32%, rgba(0, 0, 0, 0.8) 32.1%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 40.1%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.8) 48.1%, rgb(0, 0, 0) 75%);
        background-size: 400% 400%;
        animation: gradient-pulse 5s ease infinite; */
        
        background-size: 120% 120%;
        animation: gradientAnimation 4s ease-in-out infinite;
    }
}
@keyframes sprite {
    to {
        background-position: -36480px 0;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
        background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 4%, rgba(0, 0, 0, 0.8) 4.1%, rgba(0, 0, 0, 0.1) 8%, rgba(0, 0, 0, 0.8) 8.1%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.8) 12.1%, rgba(0, 0, 0, 0.1) 16%, rgba(0, 0, 0, 0.8) 16.1%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.8) 20.1%, rgba(0, 0, 0, 0.1) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.8) 28.1%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0.8) 32.1%,  rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.8) 36.1%, rgb(0, 0, 0) 80%);
    }

    50% {
        background-position: 100% 50%;
        background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 0.1%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.8) 20.1%, rgba(0, 0, 0, 0.1) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.8) 28.1%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0.8) 32.1%,  rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.8) 36.1%, rgb(0, 0, 0) 80%);
    }

    100% {
        background-position: 0% 50%;
        background-image: linear-gradient(225deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 4%, rgba(0, 0, 0, 0.8) 4.1%, rgba(0, 0, 0, 0.1) 8%, rgba(0, 0, 0, 0.8) 8.1%, rgba(0, 0, 0, 0.1) 12%, rgba(0, 0, 0, 0.8) 12.1%, rgba(0, 0, 0, 0.1) 16%, rgba(0, 0, 0, 0.8) 16.1%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.8) 20.1%, rgba(0, 0, 0, 0.1) 24%, rgba(0, 0, 0, 0.8) 24.1%, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.8) 28.1%, rgba(0, 0, 0, 0.1) 32%, rgba(0, 0, 0, 0.8) 32.1%,  rgba(0, 0, 0, 0.1) 36%, rgba(0, 0, 0, 0.8) 36.1%, rgb(0, 0, 0) 80%);
    }
}




@keyframes gradient-pulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



section {
    width: 100%;
    min-height: 100vh;
}

.about_scection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about_scection .section_link {
    border-top: 1px solid rgba(58, 62, 79, 1);
    width: 100%;
    padding: 25px 0px;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 62px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

.about_scection .section_link .hover_link {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: .5s;
    overflow: hidden;
    opacity: 0;
}

.hover_link_block {
    width: fit-content;
    display: flex;
    height: 100%;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation: marquee 8s linear infinite forwards;
    white-space: nowrap;
    gap: 60px;
    animation-play-state: running;
    opacity: 1;
    transition-duration: 0.4s;
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    99.99% {
        transform: translate3d(-20%, 0, 0);
    }

    100% {
        transform: translate3d(0%, 0, 0);
    }
}

.about_scection .section_link:hover .container {
    opacity: 0;
}

.about_scection .section_link:hover .hover_link {
    bottom: 21px;
    opacity: 1;
}

.hover_img {
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    width: 20vw;
    height: 64px;
}

.about_scection .section_link .hover_link .hover_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_scection .section_link .hover_link .hover_text {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 62px;
    display: flex;
    align-items: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(19.96deg, #047536 20.42%, #F9D604 86.28%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    white-space: nowrap;
}

.about_scection .section_link .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_scection .section_link:last-child {
    border-bottom: 1px solid rgba(58, 62, 79, 1);
}

.about_scection .section_link span {
    font-family: 'Visby CF Extra';
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about_scection .section_link img {
    width: 48px;
    height: 48px;
}

.about_block {
    position: relative;
}

.about_block .swiper {
    width: 100%;
    height: 100vh;
}

.about_block h2 {
    position: absolute;
    top: 148px;
    font-family: 'Visby CF Extra';
    font-size: 48px;
    line-height: 75px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    z-index: 9;
}

.about_block .swiper .swiper-slide p {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.04em;
    max-width: 768px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    transition: .5s ease-in;
}

.about_block .swiper .swiper-slide.swiper-slide-active p {
    opacity: 1;
    transform: translateY(0px);
}

.about_block .swiper .swiper-slide:after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    left: -2px;
    bottom: -2px;
    background-image: url(../img/sliderbg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.about_block .swiper .swiper-slide p span {
    color: #3ADA57;
}

.about_block .swiper .swiper-slide {
    background-image: url(../images/slider1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 200px;
}

.about_block .swiper .swiper-slide .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.about_block .swiper .swiper-slide:nth-child(even) .container {
    align-items: flex-end;
}



.slider_btns {
    position: absolute;
    right: 0;
    bottom: 100px;
    display: flex;
    justify-content: flex-end;
}

.slider_btns .swiper-button-prev,
.slider_btns .swiper-button-next {
    position: relative;
    right: unset;
    left: unset;
    top: unset;
    margin: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3A3E4F;
    border-radius: 50%;
    transition: .5s;
}

.slider_btns .swiper-button-prev {
    margin-right: 32px;
}

.slider_btns .swiper-button-prev:after,
.slider_btns .swiper-button-next:after {
    display: none;
}

.slider_btns .swiper-button-prev:hover,
.slider_btns .swiper-button-next:hover {
    scale: 1.2;
}

.slider_btns .swiper-button-prev img,
.slider_btns .swiper-button-next img {
    width: 32px;
}

.international {
    padding-top: 148px;
    position: relative;
    background-image: url(../images/inter.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}

.international h2 {
    font-family: 'Visby CF Extra';
    font-weight: 800;
    font-size: 48px;
    line-height: 75px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.international:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/intereffect.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.international .left {
    max-width: 715px;
    position: relative;
    z-index: 1;
}

.international .left p {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.main_footer {
    padding: 148px 0px;
    background: #0A0E1C;
}

.main_footer h2 {
    font-family: 'Visby CF Extra';
    font-size: 48px;
    line-height: 75px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 340px;
}

.main_footer .left {
    max-width: 604px;
}

.main_footer .left>a {
    margin-bottom: 32px;
    display: block;
}

.main_footer .left address {
    margin-bottom: 88px;
}

.main_footer .left a,
.main_footer .left address {
    font-family: 'Visby CF Demi';
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.04em;
}

.main_footer .left .social_list {
    gap: 54px;
    display: flex;
}

.main_footer .left .social_list a {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.contact_info {
    display: flex;
    justify-content: space-between;
}

.main_footer .right {
    text-align: right;
}

.main_footer .right .menu {
    display: flex;
    flex-direction: column;
    margin-bottom: 91px;
    margin-top: 45px;
    gap: 16px;
}

.main_footer .right .menu a {
    font-family: 'Visby CF Demi';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.04em;
}

.main_footer .right p {
    font-family: 'Visby CF';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}
.modal-content{
    background-color: #212529;
    background-clip: padding-box;
    border: 1px solid transparent;
}
.modal-header{
    border-bottom: 1px solid #495057;
}
.modal-footer{
    border-top: 1px solid #495057;
}
.modal-header .btn-close{
    filter: invert(1) grayscale(100%) brightness(200%);
}
@media (max-width: 1500px) {
    .international h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .international .left p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 1400px) {
    .main_nav {
        padding: 25px 0px;
    }

    .about_block h2 {
        top: 100px;
        font-size: 40px;
        line-height: 60px;
    }

    .btn_bd_white {
        padding: 10px 28px;
    }

    .slider_btns {
        right: 15px;
    }

    .about_scection .section_link {
        font-size: 34px;
        line-height: 45px;
        padding: 20px 0px;
    }

    .about_scection .section_link:hover .hover_link {
        bottom: 12px;
    }

    .hover_link_block {
        align-items: center;
    }

    .hover_img {
        height: 50px;
    }
}

@media (max-width: 800px) {
    .about_scection .section_link .hover_link .hover_text {
        font-size: 20px;
        line-height: 28px;
    }

    .about_scection .section_link {
        font-size: 20px;
        line-height: 28px;
        padding: 15px 0px;
    }

    .hover_img {
        height: 40px;
    }

}

@media (max-width: 600px) {
    .main_nav .btn_bd_white {
        display: none;
    }

    .contact_info {
        flex-direction: column;
    }

    .main_footer .left .social_list {
        flex-wrap: wrap;
    }

    .main_nav .logo {
        width: 50px;
    }

    .main_nav .logo img {
        width: 100%;
    }

    .main_nav {
        padding: 15px 0px;
    }

    .main_banner .left h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .main_banner .left p {
        font-size: 22px;
        line-height: 2;
    }

    .about_scection .section_link span {
        font-size: 12px;
    }

    .about_scection .section_link img {
        width: 32px;
        height: 32px;
    }

    .about_scection .section_link {
        font-size: 14px;
        line-height: 20px;
    }

    .about_block .swiper .swiper-slide p {
        font-size: 22px;
        line-height: 38px;
    }

    .international {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .main_footer h2 {
        font-size: 34px;
        line-height: 30px;
        margin-bottom: 100px;
    }

    .main_footer .left a,
    .main_footer .left address {
        font-size: 30px;
        line-height: 45px;
    }

    .main_footer {
        padding: 60px 0px;
    }

    .main_menu .menu_content .menu_list a {
        font-size: 20px;
        line-height: 30px;
    }

    .main_menu .btn_close {
        margin-bottom: 0;
    }

    .main_menu {
        padding-top: 30px;
    }

    .main_menu .menu_content {
        flex-direction: column;
    }

    .main_menu .menu_content .right .lang,
    .main_menu .menu_content .menu_list {
        margin-bottom: 30px;
    }

    .main_menu .btn_close img {
        margin-right: 0;
    }

    .main_menu .btn_close {
        width: 100%;
        flex-direction: row-reverse;
    }

    .main_menu .menu_content {
        margin-bottom: 10px;
    }

    .main_menu .menu_footer .social_list {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-height: 800px){
    .main_menu{
        padding-top: 30px;
    }
    .main_menu .btn_close{
        margin-bottom: 100px;
    }
    .slider_btns{
        bottom: 50px;
    }
    .about_block .swiper .swiper-slide{
        padding-bottom: 150px;
    }
    .main_nav {
        padding: 20px 0px;
    }
    .slider_btns .swiper-button-prev{
        margin-right: 15px;
    }
}
@media (max-height: 700px){
    .main_menu .btn_close{
        margin-bottom: 50px;
    }
    .main_menu .menu_content{
        margin-bottom: 30px;
    }
    .about_block .swiper .swiper-slide{
        padding-bottom: 50px;
    }
}
@media (max-height: 650px){
    .main_menu .btn_close{
        margin-bottom: 50px;
    }
    .main_menu .menu_content{
        margin-bottom: 30px;
    }
    .main_menu .btn_close {
        margin-bottom: 50px;
    }
}