﻿.scale-in {
    animation: scale-in 2s ease-in;
}

@keyframes scale-in {
    0% {
        display: block;
        transform: scale(0);
    }

    100% {
        transform: scale(1);

    }

}

.scale-rotate {
    animation: scale-rotate 3s ease-in-out;
    display: block;
}

@keyframes scale-rotate {
    0% {
        transform: scale(0) rotate(0deg);
    }

    40% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

.scale-out {
    animation: scale-out 1s ease-in forwards;
}

@keyframes scale-out {
    0% {
        transform: scale(1);
    }

    99% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
        display: none;
    }
}

.modal__countr {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: scroll;
    background: #fafafa4e;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.modal__countr-wrapper {
    max-width: 864px;
    width: 100%;
    padding: 72px 60px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modal__countr-fl {
    max-width: 118px;
    width: 100%;
    height: 80px;
    height: 100%;
    margin: 0 auto 29px;
}

.modal__countr-f span {
    display: block;
    width: 100%;
    height: 100%;
}

.modal__countr-fl img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 1px 1px 12px #000;


}

.modal__countr-title {
    color: #4e81ee;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
}

.modal__text {
    color: #1C2B33;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    margin-bottom: 41px;
}

.modal__countr-button {
    max-width: 744px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.modal__countr-button button {
    padding: 12px 6px;
    max-width: 351px;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(180deg, #4e81ee -0.39%, #1e3c7d 99.61%);

    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    font-variant: all-small-caps;
}

.modal__countr-selection {
   
    max-width: 864px;
    width: 100%;
    padding: 72px 60px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
}

.countr-selection__title {
    color: #103928;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
}

.countr-selection__text {
    max-width: 504px;
    width: 100%;
    color: #1C2B33;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0 auto 56px;
}

.countr-selection__wrapper {
    height: 352px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin-bottom: 56px;


}

.countr-selection__wrapper label {
    color: #1C2B33;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
}

.country-likvid,
.country-nolik {
    width: 15px;
    height: 15px;
    margin-right: 4px;
}

.submit-button {
    display: block;
    max-width: 490px;
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    background: linear-gradient(180deg, #4e81ee -0.39%, #1e3c7d 99.61%);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin: 0 auto;
    animation: puls 1s infinite;
}

@keyframes puls {
    0% {
        transform: scale(.96);
    }

    50% {
        transform: scale(1);
        box-shadow: 1px 1px 5px 1px #4e81ee;
    }

    100% {
        transform: scale(.96);
    }
}

.fade-in {
    animation: fade-in 1s ease-in forwards;
}

.fade-out {
    animation: fade-out 1s ease-in forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* last modal company block */

.modal-company {
    display: none;
    align-items: center;
    /* justify-content: center; */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow-y: scroll;
    background: #fafafa4e;
    backdrop-filter: blur(4px);
    z-index: 2;
    opacity: 0;

}

.modal-company__wrapper {
    max-width: 865px;
    width: 100%;
    padding: 52px 30px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.modal-company-fl-to {
    max-width: 108px;
    width: 100%;
    height: 50px;
    margin: 0 auto 19px;
}

.modal-company-fl-to span {
    display: block;
    width: 100%;
    height: 100%;

}

.modal-company-fl-to img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 1px 1px 12px #000;
}

.modal-company__title {
    color: #103928;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
}

.modal-company__subtitle {
    max-width: 504px;
    width: 100%;
    color: #1C2B33;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0 auto 41px;
}

.modal-company__item {
    max-width: 100%;
}

.swiper {
    width: 100% !important;
}

.swiper-wrapper {
    max-width: 732px;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;

}

.swiper-slide {
    width: 100%;


}

.company-block {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    min-height: 630px;
    height: 100%;
    padding: 20px 16px;
    border-radius: 12px;
    border: 1.5px solid #4e81ee;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    gap: 10px;
    margin: 0 auto;
}

.modal-company__images {
    /* max-width: 120px; */
    width: 120px;
    /* max-height: 120px; */
    height: 120px;
    margin: 0 auto 28px;

}

.modal-company__images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-company__text {
    max-width: 321px;
    width: 100%;
    color: #969CA0;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    padding-left: 12px;
    border-left: 4px solid #4e81ee;
    margin-bottom: 20px;

}

.modal-company__subtext {
    color: #1C2B33;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    font-variant: all-small-caps;
    margin-bottom: 8px;
    margin-top: auto;
}

.modal-company__sum {
    max-width: 321px;
    width: 100%;
    padding: 16px 4px;
    border-radius: 12px;
    border: 1px solid #FEE45B;
    background: #FFF5DC;
    margin-bottom: 26px;
    color: #1C2B33;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.sum {
    font-size: 28px;
}

.modal-company__btn {
    max-width: 321px;
    width: 100%;
    padding: 12px 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, #4e81ee -0.39%, #1e3c7d 99.61%);

    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 18px */
    font-variant: all-small-caps;
}

.modal__forms {
    display: none;
    max-width: 907px;
    width: 100%;
    padding: 72px 60px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.forms__title {
    max-width: 504px;
    width: 100%;
    color: #1C2B33;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    margin: 0 auto 41px;
}

html {
    scrollbar-width: none;
    /* Для Firefox */
}

.body-scroll::-webkit-scrollbar {
    display: none;
}

@media(max-width: 820px) {
    .modal-company__wrapper {
        max-width: 800px;
        padding: 48px 12px 0px;
    }

    .company-block {
        max-width: 320px;
    }
}

@media(max-width: 768px) {
    .modal__countr-wrapper {
        padding: 48px 12px;
    }

    .modal__countr-title {
        font-size: 28px;
    }

    .modal__text {
        font-size: 18px;
    }

    .modal__countr-button {
        flex-direction: column;
        gap: 16px;
        font-size: 18px;
    }

    #map-earth {
        max-width: 250px;
        width: 100%;
    }

    .modal__countr-selection {
        padding: 48px 12px;
        border-radius: 0px;

    }

    .countr-selection__wrapper {
        flex-wrap: nowrap;
        padding: 0px 34px;
        height: 100%;
    }

    .countr-selection__title {
        font-size: 28px;
    }

    .countr-selection__text {
        font-size: 18px;
    }

    .swiper-wrapper {
        max-width: 310px;
        padding-bottom: 48px;
    }

    .modal-company__title {
        font-size: 28px;
    }

    .modal-company__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .company-block {
        min-height: 400px;
    }

    .modal-company__sum {
        margin-bottom: 14px;
    }

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        content: "";
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
        content: '';
    }

    .swiper-button-next {
        width: 64px;
        top: 95% !important;
        right: 20%;

    }

    .swiper-button-prev {
        width: 64px;
        top: 95% !important;
        left: 20%;
    }

    .modal__forms {
        padding: 48px 12px;
    }

    .forms__title {
        font-size: 18px;
        margin-bottom: 30px;
    }
}
.logo {
    font-size: 2rem;
    color: #0845BE;
    font-weight: 800;
}