@font-face {
    font-family: 'UbuntuRegular';
    src: url('../fonts/Ubuntu-Regular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blue-text {
    color: #3c9fdd;
}

.mt-20 {
    margin-top: 20px;
}

.h2-title {
    font-weight: 700;
    font-size: 22.5px;
    display: block;
}

.d-none {
    display: none;
}

@media (min-width: 990px) {
    .d-sm-block {
        display: block;
    }
}

.underline {
    text-decoration: underline;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    background-repeat: no-repeat;
    font-family: UbuntuRegular, sans-serif;
}

body.overflow {
    overflow: hidden;
}

body .layout-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

body .container {
    max-width: 1170px;
    width: 100%;
    margin: 0;
    padding: 0 10px;
}

@media (min-width: 990px) {
    body .container {
        margin: 0 auto;
    }
}

body .row {
    display: flex;
}

body .row.column {
    flex-direction: column;
}

body .fa {
    font-weight: 900;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.button {
    color: #fff;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 12px;
    border-radius: 2px;
    padding: 12px;
    font-family: UbuntuRegular, sans-serif;
    cursor: pointer;
}

.button__blue {
    background-color: #3c9fdd;
    height: 28px;
    padding: 7px 6px 7px 6px;
    font-weight: bold;
}

@media (min-width: 990px) {
    .button__blue {
        height: 38px;
        border-radius: 2px 2px 2px 2px;
        box-shadow: #111 2px 4px 7px 2px;
    }
}

.button__blue:hover {
    background-color: #45b8ff;
}

.button__transparent {
    background-color: transparent;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
}

@media (min-width: 990px) {
    .button__transparent {
        margin-left: 10px;
        font-size: 13px;
    }

    .button__transparent i {
        margin-right: 5px;
    }
}

.button__transparent:hover {
    color: #3c9fdd;
}

.button__dashed {
    border-bottom: 2px dashed;
}

.button__alert {
    background-color: #f00;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    padding: 4px 8px;
    font-weight: 700;
    border: 2px outset #767676;
}

.button__menu {
    padding: 0;
    background-color: #273a4c;
    height: 24px;
    width: 17.5px;
}

.button__menu .fa {
    font-size: 20px;
    color: #fff;
}

.button__menu .fa-times {
    display: none;
}

.button__menu.active .fa-bars {
    display: none;
}

.button__menu.active .fa-times {
    display: block;
}

@media (min-width: 990px) {
    .button__menu {
        display: none;
    }
}

.topbar {
    display: none;
    background-color: #232f3c;
    color: #fff;
}

@media (min-width: 990px) {
    .topbar {
        display: block;
    }
}

.topbar .container {
    display: flex;
    height: 40px;
    justify-content: space-between;
    align-items: center;
}

.topbar .container .topbar__menu a {
    color: #fff;
    text-decoration: none;
    text-shadow: 0px 2px 5px #000;
    font-size: 13px;
    border-right: 1px solid #fff;
    padding: 0 15px;
}

.topbar .container .topbar__menu a:hover {
    color: #3c9fdd;
}

.topbar .container .topbar__menu .fa {
    font-weight: 400;
}

.topbar .container .topbar__lang {
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    position: relative;
}

.topbar .container .topbar__lang img {
    margin-right: 5px;
}

.topbar .container .topbar__lang-block {
    top: -200px;
    position: absolute;
    background-color: #232f3c;
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.topbar .container .topbar__lang-block div {
    width: 50%;
    border-right: 1px solid #273a4c;
    border-bottom: 1px solid #273a4c;
    padding: 10px;
}

.topbar .container .topbar__lang-block.active {
    top: 30px;
}

.topbar .container .topbar__lang.active .topbar__lang-switcher i {
    transform: rotate(-180deg);
}

.topbar .container .topbar__lang i {
    transition: .5s;
}

.header {
    background-color: #273a4c;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header .row {
    justify-content: space-between;
}

@media (min-width: 990px) {
    .header .row {
        justify-content: flex-start;
    }
}

.header .header__logo img {
    width: 80px;
    height: 30px;
    margin-bottom: -9px;
}

@media (min-width: 990px) {
    .header .header__logo img {
        height: 48px;
        width: 132px;
    }
}

.header__mobile__menu {
    height: 100%;
    width: 70%;
    position: fixed;
    z-index: 1;
    top: 42px;
    right: -71%;
    background-color: #232f3c;
    overflow-x: hidden;
    transition: 0.2s;
}

.header__mobile__menu.active {
    right: 0;
}

.header__mobile__menu li {
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #273a4c;
}

.header__mobile__menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-shadow: 0 2px 5px #000;
}

.header__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 58%;
}

@media (min-width: 990px) {
    .header__buttons {
        justify-content: flex-end;
        min-width: unset;
        margin-left: auto;
    }
}

@media (min-width: 990px) {
    .header {
        height: 70px;
    }
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav .desktop-menu {
    display: none;
}

@media (min-width: 990px) {
    .header__nav .desktop-menu {
        display: flex;
    }

    .header__nav .desktop-menu li a {
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        padding-left: 14px;
        font-weight: 700;
        text-shadow: 0 2px 5px #000;
        font-size: 14px;
    }

    .header__nav .desktop-menu li.current-menu-item a {
        color: #3c9fdd;
    }
}

.banner-bg {
    background: url('img/background-header.jpg') top center no-repeat;
    background-size: cover;
    min-height: 420px;
    padding: 20px 0;
}

.banner-bg .banner__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: #eee 0 0 2px 1px;
    border-radius: 5px;
    height: 362px;
    margin: auto;
    padding: 30px 0;
}

.banner-bg .banner__item-title {
    height: 80px;
    display: flex;
    align-items: end;
    color: #232f3c;
    font-size: 30px;
    font-weight: 700;
    border-left: 4px solid #3c9fdd;
    padding-left: 25px;
}

.banner-bg .banner__item-title h5 {
    font-size: 30px;
}

.banner-bg .banner__item-title img {
    margin-left: 15px;
}

.banner-bg .banner__item-desktop-string {
    font-size: 12px;
    text-shadow: 0 2px 0 #eee;
    margin-left: 20px;
    margin-top: -32px;
}

.banner-bg .banner__item-list {
    padding: 0 10px;
}

.banner-bg .banner__item-list ul li {
    color: #232f3c;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 1px #ccc;
    margin-bottom: 10px;
}

.banner-bg .banner__item-list ul li .fa {
    color: #3c9fdd;
}

.banner-bg .banner__item-buttons {
    padding: 0 10px;
}

.banner-bg .banner__item-buttons button {
    margin-top: 10px;
    width: 100%;
    background-color: #232f3c;
    color: #fff;
    box-shadow: #111 0px 0px 4px 2px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    font-family: UbuntuBold, sans-serif;
}

.banner-bg .banner__item-buttons button i {
    margin-right: 5px;
    color: #3c9fdd;
}

@media (min-width: 990px) {
    .banner-bg .banner__item-buttons {
        display: flex;
        justify-content: center;
    }

    .banner-bg .banner__item-buttons button {
        width: 187px;
        margin-left: 25px;
    }
}

.banner-bg .banner__item-promo {
    margin-top: 10px;
    text-align: center;
    padding: 0 10px;
    color: #3c9fdd;
    font-size: 12px;
    text-shadow: 1px 2px 0 #eee;
}

@media (min-width: 990px) {
    .banner-bg .banner__item-promo {
        display: none;
    }
}

@media (min-width: 990px) {
    .banner-bg .banner__item {
        margin: 60px 0;
        width: 482px;
        height: 290px;
    }
}

@media (min-width: 990px) {
    .banner-bg {
        height: 650px;
    }
}

.benefits {
    display: flex;
    flex-direction: column;
}

.benefits__block {
    display: flex;
    flex-direction: column;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.1), inset 0 4px 0 #3c9fdd;
    border-radius: 5px 5px 3px 3px;
    margin: 5px;
    height: 235px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.benefits__block-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefits__block-title {
    font-weight: bold;
    font-size: 16px;
    height: 40px;
}

.benefits__block-text {
    color: #232f3c;
}

@media (min-width: 990px) {
    .benefits__block {
        flex: 1;
    }
}

@media (min-width: 990px) {
    .benefits {
        flex-direction: row;
        margin-top: -100px;
    }
}

.counters {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.counters__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.counters__block-number {
    font-weight: bold;
    font-size: 30px;
    color: #3c9fdd;
}

.counters__block-text {
    color: #232f3c;
    font-size: 14px;
}

@media (min-width: 990px) {
    .counters {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .counters__block {
        position: relative;
    }

    .counters__block:not(:last-child):after {
        position: absolute;
        display: block;
        top: -10px;
        content: '';
        transform: skew(-20deg);
        width: 1.5px;
        height: 4.5625em;
        background: #9fa8bc;
        right: -40px;
    }
}

.map {
    margin-top: 50px;
}

.map__heading {
    text-align: center;
}

.map__heading p {
    margin-top: 20px;
    margin-bottom: 10px;
}

.map__heading-button {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.map__heading-button button {
    height: 38px;
    box-shadow: #333 2px 4px 2px 2px;
}

.map__heading-button .line-left {
    width: 10%;
    background-image: url('img/left.png');
    background-repeat: no-repeat;
    background-size: 415px 54px;
    background-position: right;
}

@media (min-width: 990px) {
    .map__heading-button .line-left {
        width: 30%;
    }
}

.map__heading-button .line-right {
    width: 10%;
    background-image: url('img/right.png');
    background-repeat: no-repeat;
    background-size: 415px 54px;
    background-position: left;
}

@media (min-width: 990px) {
    .map__heading-button .line-right {
        width: 30%;
    }
}

.map__heading-img {
    margin-top: 30px;
}

.map__heading-img img {
    max-width: 100%;
}

.map__heading-text p {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #232f3c;
    font-size: 14px;
}

.map__heading-text button {
    margin: 10px 0;
}

.map__heading-flags p {
    font-size: 14px;
}

.map__heading-flags button {
    font-weight: 400;
    margin-top: 10px;
    background: #273a4c;
    padding: 12px 32px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    border: none;
    font-size: 18px;
}

.map__heading-flags button i {
    font-weight: 400;
}

.map__heading-content {
    margin-top: 30px;
}

.map__heading-content img {
    max-width: 100%;
}

@media (min-width: 990px) {
    .map__heading-content img {
        margin-top: 20px;
        width: 70%;
        height: auto;
    }
}

.map__heading select {
    background-color: #fff;
    margin-top: 30px;
    font-size: 14px;
    border: 1px solid #eee;
    color: #273a4c;
    border-radius: 4px;
    box-shadow: #eee 0 0 12px 5px;
    padding: 3px 5px;
}

footer {
    box-shadow: #111 0px 0px 18px 4px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    background-color: #232f3c;
    margin-top: 30px;
}

footer nav ul li {
    display: inline;
}

footer nav ul li a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 0px 2px 5px #111;
}

.size-full {
    width: 100%;
}

.faq p, .faq li {
    line-height: 21px;
}
.contents p {
    line-height: 26px;
    font-size: 18px;
    margin: 10px 0;
}
.contents ul, ol {
    margin: 20px 0;
}
.contents ol {
    list-style-position: inside;
}
.contents ul {
    list-style: disc;
    list-style-position: inside;
}
.contents li {
    line-height: 26px;
    font-size: 18px;
}
img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.menu-item a {
    transition: .2s linear;
}
.menu-item a:hover {
    color: #3c9fdd;
}

.blockquote-1 {
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
    margin: 16px 16px 30px 16px;
    padding: 16px 24px;
    position: relative;
    font-size: 16px;
    background: #d6efff;
    color: #000;
    font-style: italic;
}
.blockquote-1::before {
    border: 14px solid transparent;
    border-top: 14px solid #d6efff;
    border-bottom: 0;
    height: 0;
    width: 0;
    border-top-width: 25px;
    content: '';
    display: block;
    position: absolute;
    left: 40px;
    bottom: -25px;
    transform-origin: center;
    transform: rotate(90deg) skew(-25deg) translateY(17px);
}
.blockquote-1 cite {
    position: absolute;
    bottom: -24px;
    left: 62px;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    color: #000;
}