@font-face {
    font-family: 'Roboto Medium';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Regular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Bold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Alternates Bold';
    src: url('../fonts/MontserratAlternates-Bold.eot?') format('eot'),
    url('../fonts/MontserratAlternates-Bold.woff') format('woff'),
    url('../fonts/MontserratAlternates-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat Alternates SemiBold';
    src: url('../fonts/MontserratAlternates-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    font-family: Roboto Regular;
    -webkit-font-smoothing: antialiased;
}

.strong {
    color: #313131;
}

.center-box {
    max-width: 80%;
    margin: auto;
}

@media (min-width: 1200px)  {
    .center-box {
        max-width: 1100px;
    }
}

.header {
    position: relative;
    height: 600px;
    margin-bottom: 26px;
}

@media (max-width: 759px)  {
    .header {
        height: 750px;
    }
}

.header__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 600px;
    z-index: 40;
    overflow: hidden;
}

@media (max-width: 759px)  {
    .header__bg {
        height: 750px;
    }
}

.header__blue-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 520px;
    background: #0d4b8a linear-gradient(to bottom, #0a4784, #1358a0 38%, #09427c);
    z-index: 1;
}

@media (max-width: 759px)  {
    .header__blue-box {
        height: 670px;
    }
}

.header__bg-image {
    position: absolute;
    left: 60%;
    bottom: 80px;
    margin-left: -505px;
    z-index: 1;
}

@media (max-width: 759px)  {
    .header__bg-image {
        left: 50%;
        margin-left: -660px;
    }
}

.header__card-image {
    position: absolute;
    left: 60%;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 759px)  {
    .header__card-image {
        left: 50%;
        margin-left: -130px;
    }
}

.header__wrapper {
    position: relative;
    top: 200px;
    z-index: 50;
}

@media (max-width: 1199px)  {
    .header__wrapper {
        top: 70px;
    }
}

.header__title {
    color: #fff;
    font-family: Montserrat Alternates Bold;
    font-size: 56px;
    line-height: 44px;
    margin: 0;
}

@media (max-width: 759px)  {
    .header__title {
        font-size: 36px;
    }
}

.header__descr {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    line-height: 40px;
}

@media (max-width: 759px)  {
    .header__descr {
        font-size: 16px;
        line-height: 20px;
    }
}

.merchants {
    padding: 26px 0 30px;
}

@media (min-width: 760px) and (max-width: 1199px)  {
    .merchants {
        padding: 45px 0 54px;
    }
}

@media (min-width: 1200px)  {
    .merchants {
        padding: 90px 0 108px;
    }
}

.merchants__title {
    font-family: Montserrat Alternates SemiBold;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding-bottom: 24px;
}

@media (min-width: 1200px)  {
    .merchants__title {
        font-size: 34px;
        line-height: 52px;
        max-width: 580px;
        padding-bottom: 78px;
    }
}

.merchants__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 759px) {
    .merchants__content {
        flex-direction: column;
        align-items: start;
    }
}

.merchants__image-block {
    text-align: center;
    align-self: center;
}

@media (max-width: 759px) {
    .merchants__image-block {
        margin-bottom: 26px;
    }
}

@media (min-width: 760px) and (max-width: 1199px)  {
    .merchants__image-block {
        width: 100%;
        margin-bottom: 26px;
    }
}

@media (min-width: 1200px)  {
    .merchants__image-block {
        flex: 1;
        margin-right: 90px;
    }
}

.merchants__image {
    width: 100%;
    max-width: 392px;
}

.merchants__list {
    flex: 1;
}

.merchants__list-item {
    font-family: Roboto Regular;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
    color: rgba(0, 0, 0, 0.87);
}

@media (min-width: 1200px)  {
    .merchants__list-item {
        font-size: 20px;
        line-height: 28px;
        padding: 18px 0;
    }
}

.merchants__list-item-num {
    display: inline;
    text-align: right;
    font-family: Roboto Bold;
    color: #134986;
}

@media (min-width: 1200px)  {
    .merchants__list-item-num {
        display: inline-block;
        width: 36px;
    }
}

.abilities {
    position: relative;
    overflow: hidden;
    background: #f8fafc linear-gradient(#fff, #f7f9fb);
    padding: 26px 0 30px;
}

@media (min-width: 760px) and (max-width: 1199px)  {
    .abilities {
        padding: 45px 0 54px;
    }
}

@media (min-width: 1200px)  {
    .abilities {
        padding: 90px 0 108px;
    }
}

.abilities__title {
    font-family: Montserrat Alternates SemiBold;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding-bottom: 28px;
}

@media (min-width: 1200px)  {
    .abilities__title {
        font-size: 34px;
        line-height: 52px;
        max-width: 780px;
        padding-bottom: 112px;
    }
}

.abilities__image-block {
    overflow: hidden;
    text-align: center;
}

@media (max-width: 759px)  {
    .abilities__image-block {
        position: relative;
        left: -2%;
        width: 104%;
    }
}

@media (min-width: 1200px)  {
    .abilities__image-block {
        position: absolute;
        top: 260px;
        left: 50%;
    }
}

@media (max-width: 759px)  {
    .abilities__image {
        width: 100%;
    }
}

.ability {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

@media (min-width: 1200px)  {
    .ability {
        flex-direction: row;
        margin-bottom: 54px;
    }
}

.ability__num {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    font-family: Roboto Bold;
    font-size: 20px;
    line-height: 40px;
    background-color: #155ea8;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 17px;
}

@media (min-width: 1200px)  {
    .ability__num {
        margin-top: 6px;
        margin-right: 36px;
    }
}

.ability__title {
    font-family: Roboto Medium;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 8px 0;
}

@media (min-width: 1200px)  {
    .ability__title {
        font-size: 20px;
        line-height: 28px;
        max-width: 300px;
        margin: 0 0 10px 0;
    }
}

.ability__descr {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.56);
    margin: 0;
}

@media (min-width: 1200px)  {
    .ability__descr {
        font-size: 14px;
        line-height: 20px;
        max-width: 300px;
    }
}

.instruction {
    padding: 26px 0 30px;
}

@media (min-width: 760px) and (max-width: 1199px)  {
    .instruction {
        padding: 45px 0 50px;
    }
}

@media (min-width: 1200px)  {
    .instruction {
        padding: 90px 0 102px;
    }
}

.instruction__title {
    font-family: Montserrat Alternates SemiBold;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin: 0;
    padding: 26px 0 38px 0;
}

@media (min-width: 1200px)  {
    .instruction__title {
        font-size: 34px;
        line-height: 52px;
        padding-bottom: 85px;
    }
}

.instruction__list {
    display: flex;
    flex-direction: column;
}

@media (min-width: 760px)  {
    .instruction__list {
        flex-direction: row;
    }
}

.instruction-item {
    flex: 1;
}

.instruction-arrow {
    align-self: center;
}

@media (max-width: 759px) {
    .instruction-arrow {
        transform: rotate(90deg);
        margin: 48px 0;
    }
}

@media (min-width: 1200px)  {
    .instruction-arrow {
        align-self: start;
        padding-top: 52px;
    }
}

.instruction-item__image-block {
    text-align: center;
    margin-bottom: 18px;
}

.instruction-item__title {
    font-family: Roboto Medium;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 0 8px 0;

}

@media (min-width: 1200px)  {
    .instruction-item__title {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 18px 0;
    }
}

.instruction-item__descr {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.56);
    text-align: center;
}

@media (min-width: 1200px)  {
    .instruction-item__descr {
        font-size: 16px;
        line-height: 24px;
    }
}

.footer {
    background-color: #134986;
    font-size: 14px;
    color: #fff;
    padding: 25px 0 28px 0;
}

@media (min-width: 1200px)  {
    .footer {
        padding: 34px 0;
    }
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 760px)  {
    .footer__wrapper {
        flex-direction: row;
    }
}

.footer__link-box {
    width: 240px;
}

@media (max-width: 759px)  {
    .footer__link-box {
        margin-bottom: 25px;
    }
}

.footer__info-box {
    flex: 1;
}

@media (min-width: 760px)  {
    .footer__info-box {
        text-align: right;
    }
}

.footer__link {
    text-decoration: none;
    color: #fff;
}

.footer-company {
    margin: 0 0 13px 0;
}

.footer-email {
    margin: 0 0 11px 0;
}

.footer-inum {
    margin: 0;
}