@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic');

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

a {
    color: inherit;
}

:root {
    --main-color: #303030;
    --color-link: #FFF;
    --background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);
    --font-size: 16px;
    --font-size-main: 24px;
    --line-height: 130%;
    --title-size: 40px;
    --container-width: 1230px;
}

html,
body {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    font-size: var(--font-size);
    line-height: var(--line-height);
    font-weight: 400;
    color: var(--main-color);
}

.wrapper {
    font-size: var(--font-size-main);
    min-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;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0px 15px;
}

/* header */


.wrapper {
    position: relative;
}

.header__top {
    position: sticky;
    top: -1px;
    z-index: 10;
    width: 100%;
    background: var(--background);
    padding: 20px 15px;
    box-shadow: 0px 4px 7.8px 0px rgba(0, 0, 0, 0.16);
}

.header__support {
    max-width: 230px;
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.header__top-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
}

.header {
    background: url('../images/header-bg.jpg') center center/cover no-repeat;
    min-height: calc(100dvh);
    /* overflow-x: hidden; */
}

.header__bottom {
    min-height: calc(100dvh - 120px);

    position: relative;
    padding: 200px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;

}

.header__bottom-images img {
    display: block;
    width: 100%;
}

.header__bottom .container {
    width: 100%;
}

.header__bottom-title {
    color: #FFF;
    text-shadow: 0px 4.357px 0px rgba(0, 0, 0, 0.85);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 130%;
}

.header__bottom-text {
    color: #FFF;
    text-shadow: 0px 4.357px 0px rgba(0, 0, 0, 0.85);
    font-size: 28px;
    line-height: 130%;
    font-style: normal;
    font-weight: 500;
}

.header__bottom-content {
    max-width: 770px;
    position: relative;
    z-index: 2;
    margin-right: 423px;
}

.header__bottom-images {
    position: absolute;
    bottom: -2px;
    right: -60px;
    max-width: 600px;
    z-index: 1;
}

.map__svg svg {
    display: block;
    width: 100%;
}

/*  modal*/
body {
    overflow: hidden;
}

body.show {
    overflow: auto;
}

.active {
    animation: scal 2s ease forwards;
}

@keyframes scal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal-form__images img {
    display: block;
    width: 100%;
}

.modal-form__images {
    flex: 1 1 45%;
    max-width: 380px;
}

.modal-form__content {
    flex: 1 1 55%;
    width: 100%;
    max-width: 500px;
}

.modal-form__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: start;
}

.modal-form__text span {
    font-weight: 700;
}

.modal-form__text {
    color: #000;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    /* 150% */
    margin-bottom: 30px;
}

.modal-form__inner {
    padding: 40px;
    background: #FFF;
    box-shadow: 0px 4px 9.4px 0px rgba(0, 0, 0, 0.25);
}

.modal-form__logo img {
    display: block;
    width: 100%;
}

.modal-form__logo {
    max-width: 70px;
}

.modal-form__top p {
    color: #111;
    font-size: 19.464px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.modal-form__top {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 80px;
}

.modal-countries__error {
    opacity: 0;
    transition: all .3s ease;
}

.modal-countries__error.show {
    opacity: 1;
    color: red;
    text-align: center;
}

.modal-form {
    transition: all .3s ease;
    position: fixed;
    inset: 0;
    background: #0000007d;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: grid;
    align-items: center;
    /* justify-content: center; */
    padding: 20px;

    background: rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(11.449999809265137px);

    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-form.show {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    pointer-events: all;
}

.modal-countries.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 10;
}

.modal-countries {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
    position: fixed;
    inset: 0;
    background: #0000007d;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow-y: auto;
    display: grid;
    align-items: center;
    /* justify-content: center; */
    padding: 20px;

    background: rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(11.449999809265137px);
}

.modal-countries__inner {
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

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

.modal-countries h2 {
    color: #00009E;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 43.2px */
    margin-bottom: 24px;
}

.modal-countries__btn:hover {
    transform: scale(0.98)
}

.modal-countries__btns {
    width: 100%;
}

.modal-countries__btn.show {
    background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);
}

.modal-countries__btn {
    border-radius: 12px;
    transition: all .3s ease;
    background: #9B9B9B;
    padding: 17px;


    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 24px */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
}

.modal-countries ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 40px;
    padding: 0;
    list-style: none;
}

.modal-countries li {
    display: flex;
    align-items: center;
    gap: 10px;

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

.modal-countries input[type="radio"] {
    transform: scale(1.2);
}


.modal-country.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 10;
}

.modal-country {
    transition: all .3s ease;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    inset: 0;
    background: #0000007d;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow-y: auto;
    display: grid;
    align-items: center;
    /* justify-content: center; */
    padding: 20px;

    background: rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(11px);
}

.modal-country p {
    color: #1C2B33;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
}

.modal-country__btns {
    display: flex;
    align-items: stretch;
    gap: 40px;
    width: 100%;
}

.modal-country__y {
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);
}

.modal-country__n {
    color: #2D2D2D;
    background: #fff;
    border: 1px solid #006FC2;
}

.modal-country button:hover {
    transform: scale(0.98)
}

.modal-country button {
    display: flex;
    transition: all .3s ease;
    border-radius: 12px;
    flex: 1 1 50%;
    width: 100%;
    align-items: center;
    padding: 12px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 20px */
    font-variant: all-small-caps;
    justify-content: center;
}

.modal-country h2 {
    color: #2662DB;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 43.2px */
    margin-bottom: 24px;
}

.modal-country__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 70px 60px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.modal-st {
    transition: all .3s ease;
    position: fixed;
    inset: 0;
    background: #0000007d;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    display: grid;
    align-items: center;
    /* justify-content: center; */
    padding: 20px;

    background: rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(11px);
}

.modal-st.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-st__inner {
    background: #FFF;
    box-shadow: 0px 4px 9.4px 0px rgba(0, 0, 0, 0.25);
    max-width: 990px;
    margin: 0 auto;
    animation: opac 1s ease forwards;
    padding: 45px 55px;
}

.modal-st__text {
    margin-bottom: 100px;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    /* 150% */
}

.modal-st__top p {
    color: #111;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.modal-st input::placeholder {
    color: #A9A9A9;
    font-weight: 400;
}

.modal-st button:hover {
    transform: scale(.98)
}

.modal-st button {
    display: flex;
    transition: all .3s ease;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);

    color: #FFF;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 20px */
    font-variant: all-small-caps;
}

.modal-st input {
    padding: 14px 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    border: 1px solid #B4B4B4;
    background: #F7F7F7;
    display: flex;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal-st__top {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 100px;
}

@keyframes opac {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* mission */

.mission {
    padding: 80px 0px;
    background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);
}

.mission .container {
    position: relative;
}

.active {
    fill: url(style.css#gradientFill);
}

.mission__svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mission h2 {
    margin-bottom: 16px;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 125%;
    /* 125% */
}


.mission p:last-child {
    margin-bottom: 0px;
}

.mission p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 130%;
}

/* review */

.review__box-inner {
    padding: 12px 12px 30px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    box-shadow: 0px 4px 7.8px 0px rgba(105, 105, 105, 0.25);
    max-width: 390px;
    height: 100%;
}

.swiper-slide {
    height: auto !important;
    min-height: 100%;
}

/* .review__box-inner{
    height: 100%;
} */
/* 
.review__box{
    height: 100% !important;
} */

.review__arrows {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-left: auto;
    max-width: max-content;
    margin-top: 40px;
}

#mySwiper {
    padding: 50px 0px;
}

.review__text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.review__top {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 16px;
}

.review__top-title {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 177.778% */
}

.review {
    padding: 80px 0px;
}

.review h2 {
    color: #353535;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
    /* 125% */
    margin-bottom: 16px;
}

/* partners */

.partners {
    padding: 80px 0px 220px;
    background: linear-gradient(90deg, #006FC2 0%, #00239E 100%);
}

.partners .container {
    position: relative;
}

.partners__icon img {
    display: block;
    width: 100%;
}

.partners__icon {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 220px;
    top: 50%;
    transform: translateY(-50%);
}

.partners__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.partners__content h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 125%;
    margin-bottom: 16px;
}

.partners__inner p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 133.333% */
}

.partners__content {
    max-width: 500px;
}

.partners__images {
    max-width: 600px;
}

.partners__images img {
    display: block;
    width: 100%;
}

/* icons */

.icons {
    margin-top: -160px;
    padding: 20px 0px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
}

.icons__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.modal-country__images {
    box-shadow: 1px 1px 10px 1px #00000036;
    max-width: 172px;
    margin: 0 auto;
    border-radius: 4px;
}

.modal-country__images img {
    display: block;
    width: 100%;
}

/* map */

.map {
    padding: 60px 0px 80px;
}

.map h2 {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    /* 125% */
    margin-bottom: 60px;
}

/* media */
@media(max-width:1400px) {
    .header__bottom-images {
        position: absolute;
        bottom: -2px;
        right: 0px;
        max-width: 600px;
        z-index: 1;
    }
}

@media(max-width:1200px) {
    .header__bottom-images img {
        display: block;
        width: 100%;
    }

    .header__bottom-content {
        margin-right: 400px;
    }

    .header__bottom-images {
        max-width: 500px;
        right: 0;
    }
}

@media(max-width:992px) {
    .review__box {
        display: flex;
        justify-content: center;
    }

    .modal-countries__inner {
        padding: 40px;
    }

    .icons__img img {
        width: 100%;
        display: block;
    }

    .review__arrows {
        margin: 40px auto 0px;
    }

    #mySwiper {
        padding: 50px 0px 0px;
    }
}

@media(max-width:768px) {
    .header__support {
        font-size: 18px;
        max-width: 130px;
    }

    .modal-countries ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners {
        padding: 114px 0px 40px;
        position: relative;
    }

    .partners__inner p {
        font-size: 16px;
        line-height: 24px;
    }

    .partners__content h2 {
        position: absolute;
        top: -77px;
        left: 15px;
    }

    .icons__inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .partners__content {
        max-width: 100%;
    }

    .partners__inner {
        flex-direction: column;
    }

    .icons {
        margin-top: 0px;
    }

    #mySwiper {
        padding: 0px 0px 0px;
    }

    .review h2 {
        font-size: 28px;
    }

    .review {
        padding: 40px 0px;
    }

    .mission__svg img {
        display: block;
        width: 100%;
    }

    .mission__svg {
        left: 50%;
        width: 100%;
        max-width: 300px;
        transform: translate(-50%, -50%);
    }

    .mission {
        padding: 48px 0px;
    }

    .mission h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .mission p {
        font-size: 16px;
    }

    .header__bottom-images {
        position: relative;
    }

    .header__bottom-inner {
        padding: 0px;
    }

    .header {
        min-height: 100%;
    }

    .header__bottom-title {
        color: #FFF;
        text-shadow: 0px 4px 1.3px rgba(0, 0, 0, 0.25);
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px;
        /* 128.571% */
    }

    .header__bottom-images {
        max-width: 390px;
        margin: 0 auto;
    }

    .header__bottom-text {
        color: #FFF;
        text-shadow: 0px 1px 2.2px rgba(0, 0, 0, 0.25);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 150% */
        margin-bottom: 24px;
    }

    .header__bottom {
        padding: 40px 0px 0px;
    }

    .header__bottom .container {
        padding: 0px 15px;
    }

    .header__bottom-content {
        margin-right: 0px;
    }

    .header__bottom {
        min-height: 100%;
    }

    .header__logo {
        max-width: 34px;
    }

    .header__logo img {
        display: block;
        width: 100%;
    }

    .modal-form__wrapper {
        flex-direction: column;
    }

    .modal-st__top p {
        font-size: 18px;
    }

    .modal-country h2 {
        font-size: 28px;
        line-height: 130%;
    }

    .modal-country p {
        font-size: 18px;
        line-height: 130%;
    }

    .map__svg svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .modal-countries p {
        font-size: 18px;
    }

    .modal-form__inner {
        padding: 38px 12px;
    }

    .modal-form__content {
        margin: 0 auto;
    }

    .modal-form {
        padding: 20px 0px;
    }

    .modal-countries h2 {
        color: #2662DB;
        text-align: center;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 33.6px */
    }

    .modal-countries__btn {
        font-size: 18px;
    }

    .modal-form__images {
        max-width: 320px;
        margin: 0 auto;
    }

    .modal-form__text {
        font-size: 16px;
        text-align: left;
        line-height: 130%;
    }

    .modal-form__top {
        margin-bottom: 20px;
    }

    .modal-countries__inner {
        padding: 48px 20px;
        gap: 30px;
        border-radius: 12px;
        background: #FFF;

        /* 1 */
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    }

    .modal-country__inner {
        padding: 45px 12px;
        gap: 30px;
    }

    .modal-country__btns {
        flex-direction: column;
        gap: 16px;
    }

    .modal-countries {
        padding: 20px 0px;
    }

    .modal-st__top img {
        width: 32px;
    }

    .header__bottom-images {
        bottom: 0px;
    }

    .map h2 {
        font-size: 28px;
        text-align: left;
        line-height: 130%;
    }

    .modal-st__inner {
        padding: 24px 11px;
    }

    .modal-st {
        padding: 20px 0px;
    }

    .map {
        padding: 40px 0px;
    }

    .modal-st__top {
        margin-bottom: 30px;
    }

    .modal-st__text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 40px;
    }

    .modal-st input {
        font-size: 16px;
    }

    :root {
        --font-size: 18px;
        --line-height: 140%;
        --title-size: 24px;
        --container-width: 1230px;
    }
}

@media(max-width:576px) {
    .modal-countries ul {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
}


.review-button-next,
.review-button-prev {
    cursor: pointer;
}

.modal-st__top img {
    width: 100px;
}

.header__logo {
    max-width: 100px;
}

.header__logo img {
    display: block;
    width: 100%;
}

.small-icon {
  transform: scale(0.5);
  transform-origin: top;
}

.small-icon-text {
  transform: scale(0.5);
    transform-origin: top; 
    margin-left: -200px;
}