html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
    text-decoration: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



@font-face {
    font-family: 'GolosRegular';
    src: url('../fonts/golos-regular.eot');
    src: url('../fonts/golos-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/golos-regular.woff2') format('woff2'),
         url('../fonts/golos-regular.woff') format('woff'),
         url('../fonts/golos-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GolosMedium';
    src: url('../fonts/golos-medium.eot');
    src: url('../fonts/golos-medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/golos-medium.woff2') format('woff2'),
         url('../fonts/golos-medium.woff') format('woff'),
         url('../fonts/golos-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GolosBold';
    src: url('../fonts/golos-bold.eot');
    src: url('../fonts/golos-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/golos-bold.woff2') format('woff2'),
         url('../fonts/golos-bold.woff') format('woff'),
         url('../fonts/golos-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GolosDemiBold';
    src: url('../fonts/golos-demibold.eot');
    src: url('../fonts/golos-demibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/golos-demibold.woff2') format('woff2'),
         url('../fonts/golos-demibold.woff') format('woff'),
         url('../fonts/golos-demibold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: GolosRegular, sans-serif;
    color: #fff;
    background: #181926;
}
.overflow-hidden {
    overflow: hidden;
    margin-right: 17px;
}

h2, h3, h4 {
    color: #fff;
    font: normal 24px/1.21 GolosDemiBold, sans-serif;
    text-align: center;
}
h3 {
    font-size: 24px;
    line-height: 29px;
}
h4 {
    font-size: 22px;
    line-height: 27px;
}

.fixed-btn {
    position: fixed;
    top: 50%;
    right: 0;
    width: 60px;
    height: 169px;
    margin-top: -85px;
    background: url('../img/fixed-btn.png') no-repeat 0 0;
    z-index: 10;
    cursor: pointer;
}

.wrapper {
    padding-bottom: 60px;
    background: url(../img/connection-bg.png) no-repeat -70px 50px;
}

.wrapper-width {
    padding-left: 15px;
    padding-right: 15px;
}

.primary-btn {
    display: block;
    box-sizing: border-box;
    height: 45px;
    border: 0;
    background: rgb(0, 115, 255);
    background: linear-gradient(35deg, rgb(0,115,255) 0%, rgb(0,222,255) 100%);
    border-radius: 10px;
    line-height: 45px;
    padding: 0 7px 1px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.primary-btn:disabled{
    background: #636e72;
}

.input-text, .textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #4B4B59;
    box-sizing: border-box;
    font: 14px GolosRegular, sans-serif;
    background: #1e1f2e;
    color: #fff;
    outline: none;
}

.input-text {
    height: 45px;
    padding: 1px 10px 0;
}
.input-text:focus, .textarea:focus {
    border-color: #0073FF;
}
input::placeholder {
    color: #A8AAC3;
    opacity: 1;
}

.textarea {
    height: 88px;
    resize: vertical;
    line-height: 18px;
    padding: 11px 8px;
}


.custom-select select,  .select-hide {
    display: none;
}
.custom-select {
    position: relative;
    height: auto;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
}
.connect-form__panel .custom-select {
    margin-bottom: 24px;
}
.select-selected {
    position: relative;
    cursor: default;
    box-sizing: border-box;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 10px;
    border: 1px solid #4B4B59;
    background: #1E1F2E;
    font-size: 14px;
    line-height: 18px;
    color: #A8AAC3;
    padding: 13px 10px 12px;
  }
  .select-selected.select-arrow-active {
    border-color: #0073FF;
  }

  .error .select-selected, .error .input-text, .error .textarea {
    border-color: #FF706F;
  }

  .select-selected::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 9px;
    top: 50%;
    margin-top: -4px;
    right: 11px;
    background: url(../img/dropdown-arrow.svg) no-repeat 0 0;
  }

  .select-items {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100%;
    z-index: 9;
    margin-top: 10px;
    max-height: 250px;
    padding: 14px 20px 13px;
    overflow-y: auto;
    background: #141521;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    cursor: default;
  }

  .select-items div {
    padding: 7px 0 6px;
  }

  .select-items div:hover,  .same-as-selected {
    color: #0073FF;
  }

  .error p.error {
    margin: 3px 0 -19px;
    font-size: 12px;
    line-height: 16px;
    color: #FF706F;
  }




/* Header */



.header {
    padding: 20px 0 81px;
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.header .logo img {
    width: 128px;
    height: 53px;
}
.main-menu, .header .phone, .header .search{
    display: none;
}


.merchant-btn {
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    line-height: 50px;
    padding: 1px 10px 0;
}

.langs {
    text-transform: uppercase;
    margin: 24px 0 0;
}
.langs li {
    display: inline-block;
    padding: 0 2px 0 3px;
}
.langs a {
    color: #fff;
    font-size: 16px;
}
.langs a:hover, .langs .selected a, .langs .selected span {
    color: #0073FF;
}


.search {
    display: none;
    position: relative;
    width: 58px;
    height: 58px;
    margin: 3px 0 0;
}
.search input {
    position: absolute;
    height: 56px;
    width: 0;
    top: 0;
    right: 0;
    padding: 0 26px;
    box-sizing: border-box;
    background: none;
    border: 0;
    font-size: 12px;
    color: #A8AAC3;
    background: none;
    border: 0;
    border-radius: 30px;
    outline: none;
    z-index: 2;
    cursor: pointer;
    transition: .4s cubic-bezier(0, 0.8, 0, 1);
}
.search input:focus {
    width: 322px;
    padding: 0 70px 0 19px;
    background: #1e1f2c;
    border: 1px solid #4b4b59;
    z-index: 1;
    cursor: text;
}
.search button {
    position: absolute;
    width: 52px;
    height: 52px;
    top: 2px;
    right: 2px;
    background: #242531;
    border-radius: 100%;
    border: 0;
    cursor: pointer;
    z-index: 1;
}
.search button::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 19px;
    background: url('../img/search.svg') no-repeat 0 0;
    top: 16px;
    left: 17px;
}
.search input:focus + button {
    z-index: 3;
}
.search input:focus + button::before {
    width: 17px;
    height: 18px;
    background: url('../img/close.svg') no-repeat 0 0;
}


.burger-menu__btn {
    position: relative;
    width: 30px;
    height: 17px;
    cursor: pointer;
    margin: 19px 0 0;

}
.burger-menu__btn::before, .burger-menu__btn::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    left: 0;
    top: 0;
    background: #fff;
    transition: transform 0.25s;
}
.burger-menu__btn::after {
    top: 14px;
}
.burger-menu__btn.active::before {
    transform: rotate(45deg);
    top: 7px;
}
.burger-menu__btn.active::after {
    transform: rotate(-45deg);
    top: 7px;
}
.burger-menu__wrapper {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 92px;
    right: 0;
    background: rgba(30,31,46,.97);
    border-radius: 10px;
    padding: 15px 20px 19px;
    opacity: 0;
    visibility: hidden;
    z-index: -10;
    box-shadow: 0 6px 15px 0 rgba(0,0,0,.25);
    transition: opacity, visibility;
    transition-duration: .3s, 0s;
    transition-delay: 0s, .3s;
}
.burger-menu__btn.active + .burger-menu__wrapper {
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transition-delay: 0s, 0s;

}
.burger-menu__wrapper .search {
    display: block;
    width: 100%;
}

.burger-menu__wrapper .search input {
    left: 0;
}
.burger-menu__wrapper .search button {
    left: 2px;
}
.burger-menu__wrapper .search input:focus + button {
    left: auto;
    right: 2px;
    transition: .4s cubic-bezier(0, 0.8, 0, 1);
}
.burger-menu__wrapper .search input:focus {
    width: 100%;
}
.header .burger-menu__wrapper .phone {
    display: block;
    text-align: left;
    padding-top: 28px;
}
.burger-menu {
    margin-top: 14px;
}
.burger-menu__list li {
    padding: 12px 0;
}
.burger-menu__list, .burger-menu__list li a {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}
.burger-menu__list span, .burger-menu__list li a {
    display: block;
    cursor: pointer;
}
.burger-menu__list li:hover, .burger-menu__list li.active, .burger-menu__list li.active a {
    color: #0073FF;
}
.burger-menu__list li.active {
    border-bottom: 1px solid #0073FF;
    padding-bottom: 11px;
}

.burger-submenu {
    padding-top: 9px;
    display: none;
}
.burger-submenu.active {
    display: block;
}
.burger-submenu__list li {
    margin-top: 19px;
}
.burger-submenu__list a {
    font: normal 16px/1.25 GolosDemiBold, sans-serif;
    color: #fff;
}
.burger-submenu__list a:hover, .burger-submenu__list a.active {
    color: #0073FF;
}

.header .phone {
    width: 100%;
    margin: 9px 0 0;
    text-align: right;
}
.header .phone span {
    display: block;
    font-size: 14px;
    color: #b9babd;
    margin: 0 0 9px;
}

.header .phone a {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}


/* Make your business more comfortable */

.make-comfortable {
    margin-top: 34px;
    border-radius: 20px;
    padding: 11px 10px 0;
    background: #1e1f2e url(../img/comfortable-icon.png) no-repeat center bottom;
}
.click-together {
    background: #181926;
    border-radius: 10px;
    margin-top: 19px;
    padding: 10px 10px 17px;
    text-align: center;
}
.click-together h4 {
    color: #0073FF;
}
.click-together ul {
    font-size: 16px;
    line-height: 1.2;
    color: #A8AAC3;
}
.click-together ul li {
    margin-top: 17px;
    position: relative;
}
.click-together ul li + li {
    margin-top: 26px;
}
.click-together ul li::before {
    display: inline-block;
    content: '';
    margin: 5px 13px 0 3px;
    background: url(../img/check.svg) no-repeat 0 0;
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    flex-grow: 0;
}
.click-together strong {
    font: normal 20px/1.2 GolosDemiBold, sans-serif;
    color: #fff;
    display: inline-block;
    margin-bottom: 8px;
}
.click-together span  {
    display: block;
}

.subscribe {
    padding: 23px 0;
    text-align: center;
    font-size: 16px;
}
.subscribe li {
    position: relative;
    font-size: 14px;
    margin-top: 19px;
}
.subscribe a {
    color: #fff;
    display: inline-block;
}
.subscribe li.telegram a::after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: url(../img/telegram.svg) no-repeat 0 0;
    margin: -3px 0 0 10px;
}

.connect-form__wrapper {
    margin-top: 40px;
    position: relative;
    align-self: flex-start;
}
.connect-form__tabs {
    display: flex;
}
.connect-form__tab {
    border-radius: 10px 0 0 10px;
    width: 50%;
    height: 45px;
    box-sizing: border-box;
    background: #1E1F2E;
    box-sizing: border-box;
    padding: 3px 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.connect-form__tab + li {
    border-radius: 0 10px 10px 0;
}
.connect-form__tab.active {
    background: #0073FF;
    cursor: default;
}


.connect-form__panel {
    display: none;
    box-sizing: border-box;
    border-radius: 20px;
    background: #1E1F2E;
    padding: 20px;
    margin-top: 20px;
}
.connect-form__panel.active {
    display: block;
}

.connect-form__panel .input-line, .become-partner .input-line, .back-call .input-line {
    margin-bottom: 24px;
}

.call-request .input-line {
    flex: 1
}

.connect-form__panel .primary-btn {
    width: 100%;
}




/* Business Growth */
.business-growth {
    margin-top: 59px;
}
.business-growth ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 37px 0 0;
}
.business-growth ul li {
    width: 100%;
    box-sizing: border-box;
    background: #1e1f2e;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #A8AAC3;
    padding: 28px 15px 24px;
}
.business-growth ul li strong {
    font: normal 28px GolosDemiBold, sans-serif;
    display: block;
    color: #fff;
    margin: 0 0 9px;
}

/* Convenient payment methods */

.payment-methods {
    margin-top: 60px;
}
.payment-methods h2 br {
    display: none;
}
.payment-methods ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 28px 0 0;
    font-size: 18px;
    line-height: 1.22;
    color: #A8AAC3;
}
.payment-methods li {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    background: #1E1F2E;
    border-radius: 10px;
    padding: 20px 20px 22px;
    font-size: 18px;
    line-height: 22px;
}
.payment-methods li::before {
    display: block;
    content: '';
}
.payment-site::before {
    width: 40px;
    height: 57px;
    background: url(../img/payment-site.svg) no-repeat 0 0;
    background-size: contain;
    margin: 6px 0 28px 15px;
}
.payment-online::before {
    width: 70px;
    height: 70px;
    background: url(../img/payment-online.svg) no-repeat 0 0;
    background-size: contain;
    margin-bottom: 22px;
}
.payment-methods ul strong {
    display: block;
    color: #fff;
    margin: 0 0 8px;
    font: normal 20px/1.2 GolosDemiBold, sans-serif;
}


/* CLICK For You Business */

.click-business {
    margin: 61px 0 0;
}
.click-business ul {
    counter-reset: click-counter;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 39px 0 0;
}
.click-business li {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    font-size: 16px;
    line-height: 19px;
}
.click-business li::before {
    display: block;
    counter-increment: click-counter;
    content: counter(click-counter);
    width: 63px;
    height: 63px;
    margin: 0 0 13px;
    background: #1E1F2E;
    border-radius: 10px;
    font: normal 42px/64px GolosBold, sans-serif;
    color: #0073FF;
    text-align: center;
}
.click-business__bg {
    display: none;
}


/* Ask a Question */

.ask-question {
    position: relative;
    margin-top: 60px;
    background: #1e1f2e;
    border-radius: 10px;
    padding: 24px 10px 20px;
}
.ask-question__text {
    text-align: center;
}
.ask-question__text::before, .back-call::before {
    display: block;
    content: '';
    width: 42px;
    height: 42px;
    background: url(../img/earphones.svg) no-repeat 0 0;
    background-size: contain;
    margin: 0 auto;
}
.ask-question__text h2 {
    margin: 15px 0 10px;
}
.ask-question__text span, .back-call span {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    color: #0073FF;
}
.ask-question__form {
    margin-top: 19px;
    background: #181926;
    border-radius: 10px;
    padding: 12px;
}
.ask-question__form button {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 10px;
    font: 16px GolosRegular, sans-serif;
    padding: 0 7px;
}
.ask-question__form button {
    margin: 16px 0 0;
    border: none;
    background: -webkit-linear-gradient(45deg, rgb(0, 115, 255), rgb(0, 222, 255));
    background: -moz-linear-gradient(45deg, rgb(0, 115, 255), rgb(0, 222, 255));
    background: linear-gradient(45deg, rgb(0, 115, 255), rgb(0, 222, 255));
    color: #fff;
    cursor: pointer;
}

.partners-slider__wrapper {
    margin-top: 80px;
}
.partners-slider {
    margin-top: 38px;
}

.swiper {
    padding-bottom: 49px;
}

.swiper-button-prev {
    left: calc(50% - 1.5rem - 0.75rem);
    top: auto;
    bottom: 0;
}

.swiper-button-next {
    right: calc(50% - 1.5rem - 0.75rem);
    top: auto;
    bottom: 0;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    color: #646778;
    opacity: 1;
}
.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 183px;
    height: 100px;
    margin-right: 20px;
    border-radius: 10px;
    background: #1E1F2E;
}
.swiper-slide:last-child {
    margin-right: 0;
}

:root {
    --swiper-navigation-size: 1.5rem;
}

.info-form {
    margin-top: 97px;
}
.ready-connect h3 {
    margin-top: 38px;
}

.info-form {
    margin-top: 97px;
}
.ready-connect h3 {
    margin-top: 38px;
}

.devs-info {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    margin: 19px 0 0;
    padding: 17px 20px 14px 32px;
    background: #1E1F2E;
    border-radius: 10px;
    color: #fff;
    font: normal 16px/1.2 GolosDemiBold, sans-serif;
}
.devs-info::before {
    display: block;
    flex: none;
    content: '';
    width: 50px;
    height: 50px;
    margin: -3px 21px 0 0;
    background: url(../img/info-icon.svg) no-repeat 0 0;
    background-size: contain;
}
.become-partner {
    margin-top: 61px;
    position: relative;
}
.become-partner::before, .connect-form__wrapper::before {
    position: absolute;
    content: '';
    height: 796px;
    left: -15px;
    right: -15px;
    background: url(../img/connection-form-bg.png) no-repeat center;
    top: 50%;
    margin-top: -398px;
    z-index: -2;
}
.become-partner .connect-form__tabs {
    margin-top: 39px;
}


 /* Back Call Popup */

 .popup__bg {
    visibility: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(24, 25, 38, 0.9);
    z-index: -10;
    opacity: 0;
    transition-property: opacity, visibility;
    transition-duration: .3s, 0s;
    transition-delay: 0s, .3s;
 }
 .popup__bg.active {
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transition-delay: 0s, 0s;
 }
 .popup__wrapper {
    position: absolute;
    margin-top: 0;
    left: 15px;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
 }
 .popup__close {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../img/close-popup.svg) no-repeat 0 0;
    right: 18px;
    top: 18px;
    cursor: pointer;
    z-index: 11;
 }
.back-call {
    position: relative;
    text-align: center;
    background: #1e1f2e;
    border-radius: 10px;
    padding: 29px 20px 20px;
 }
 .back-call h3 {
    margin: 20px 0 10px;
 }
.back-call .input-line {
    margin-top: 19px;
}

.back-call .input-line {
    text-align: left;
}

.back-call .primary-btn {
    width: 100%;
    margin-top: 20px;
}




@media (min-width: 480px) {
    h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    h3 {
        font-size: 28px;
        line-height: 34px;
    }
    h4 {
        font-size: 22px;
        line-height: 27px;
    }

    .wrapper-width {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header {
        padding-bottom: 62px;
    }

    .header .logo img {
        width: 162px;
        height: 66px;
    }
    .langs {
        text-transform: uppercase;
        margin: 26px 0 0;
    }
    .langs li {
        padding: 0 4px;
    }
    .burger-menu__btn {
        margin-top: 24px;
    }
    .burger-menu__wrapper {
        top: 101px;
        padding: 27px 30px 29px;
    }
    .burger-menu {
        margin-top: 16px;
    }

    .make-comfortable {
        margin-top: 41px;
        padding: 20px 20px 0;
        background-size: cover;
    }
    .click-together {
        text-align: left;
        padding: 19px 20px 18px;
    }
    .click-together h4 {
        text-align: left;
        font-size: 26px;
        line-height: 32px;
    }
    .click-together ul li, .click-together ul li + li {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    .click-together ul li::before {
        margin-top: -3px;
    }
    .click-together strong {
        white-space: nowrap;
        margin: 0 11px 2px 0;
        font-size: 18px;
        line-height: 22px;
    }

    .connect-form__tab {
        font-size: 14px;
        line-height: 20px;
    }

    .connect-form__panel {
        padding: 40px;
    }

    .business-growth {
        margin-top: 72px;
    }
    .business-growth ul li {
        padding: 26px 15px 20px;
    }
    .business-growth ul li strong {
        font-size: 40px;
        margin: 0 0 13px;
    }

    .click-business {
        margin: 62px 0 0;
    }
    .click-business ul {
        margin: 42px 0 0;
    }
    .click-business li {
        padding: 0 0 0 90px;
        min-height: 63px;
    }
    .click-business li::before {
        position: absolute;
        left: 0;
        top: -3px;
        margin: 0;
    }

    .payment-methods h2 br {
        display: block;
    }
    .payment-methods ul {
        margin: 39px 0 0;
    }

    .ask-question__text::before {
        width: 67px;
        height: 67px;
    }
    .ask-question {
        padding: 20px;
    }
    .ask-question__form {
        padding: 30px;
    }
    .ask-question__form button {
        margin: 20px 0 0;
    }

    .partners-slider__wrapper {
        margin-top: 60px;
    }

    .info-form {
        margin-top: 58px;
    }
    .ready-connect h3 {
        margin-top: 52px;
    }

    .devs-info {
        font-size: 20px;
    }
    .devs-info::before {
        width: 65px;
        height: 65px;
    }

    .connect-form__tabs, .connect-form__panel.active, .devs-info {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .become-partner::before, .connect-form__wrapper::before {
        left: -20px;
        right: -20px;
    }

    .popup__wrapper {
        left: 20px;
        right: 20px;
        box-sizing: border-box;
    }
     .back-call {
        padding: 50px 40px 40px;
    }
     .back-call::before {
        width: 59px;
        height: 59px;
    }
     .back-call h3 {
        font-size: 32px;
        line-height: 39px;
    }
     .back-call .input-line {
        margin-top: 39px;
    }

     .swiper-slide {
        width: 210px;
    }
}

@media (min-width: 768px) {
    h2 {
        font-size: 40px;
        line-height: 1.25;
    }

    .wrapper {
        background: url(../img/connection-bg.png) no-repeat -70px 7px;
    }

    .header {
        padding: 20px 0;
    }
    .merchant-btn {
        position: static;
        width: auto;
        height: 50px;
        padding: 1px 22px 0;
        margin-top: 15px;
    }

    .burger-menu__wrapper {
        width: 680px;
    }
    .burger-menu__wrapper .search {
        margin-top: 1px;
    }

    .burger-menu__cols {
        display: flex;
        gap: 36px;
    }
    .burger-menu {
        margin-top: 26px;
        width: calc(50% - 18px);
        padding-bottom: 63px;
    }
    .burger-submenu {
        padding-top: 8px;
        width: calc(50% - 18px);
    }
    .burger-menu__list li {
        padding: 11px 20px 11px 0;
    }
    .burger-menu__list li.active {
        border-bottom: 0;
        padding: 11px 20px 11px 0;
        border-right: 1px solid #0073FF;
    }

    .header .burger-menu__wrapper .phone {
        padding-top: 0;
        margin-top: -55px;
        padding-bottom: 8px;
    }

    .make-comfortable {
        margin-top: 28px;
    }
    .make-comfortable h2 {
        line-height: 1.35;
    }
    .click-together h4 {
        font-size: 32px;
        line-height: 39px;
    }
    .click-together ul li::before {
        margin-top: 0;
    }
    .click-together strong, .click-together span {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .business-growth {
        margin-top: 61px;
    }
    .business-growth ul {
        margin-top: 38px;
    }
    .business-growth ul li {
        padding: 22px 15px 20px;
        width: calc(50% - 10px);
        font-size: 14px;
    }
    .business-growth ul li strong {
        margin: 0 0 9px;
    }

    .click-business {
        margin: 60px 0 0;
    }
    .click-business ul {
        gap: 54px 30px;
    }
    .click-business li {
        width: calc(50% - 15px);
    }

    .payment-methods {
        margin-top: 71px;
    }
    .payment-methods li {
        width: calc(50% - 10px);
        padding-bottom: 19px;
    }
    .payment-site::before {
        width: 60px;
        height: 86px;
        background-size: auto;
        margin: 7px 0 28px 20px;
    }
    .payment-online::before {
        width: 90px;
        height: 90px;
        background-size: auto;
        margin: 4px 0 27px 6px;
    }
    .ask-question {
        padding-top: 24px;
    }
    .ask-question__text {
        min-height: 80px;
        padding: 0 0 35px 213px;
        text-align: left;
    }
    .ask-question__text::before {
        position: absolute;
        width: 100px;
        height: 100px;
        margin: 0;
        top: 40px;
        left: 93px;
    }
    .ask-question__text h2 {
        text-align: left;
        margin: 16px 0 8px;
    }
    .ask-question__form {
        width: 520px;
        margin: 0 auto;
    }
    .ask-question__form form {
        display: flex;
        gap: 20px;
    }
    .ask-question__form button {
        width: 120px;
        flex: none;
        margin: 0;
    }

    .partners-slider {
        margin-top: 39px;
    }

    .info-form {
        margin-top: 63px;
    }
    .ready-connect h3 {
        margin-top: 40px;
    }
    .become-partner {
        margin-top: 61px;
    }
    .become-partner .connect-form__tabs {
        margin-top: 30px;
    }

    .popup__wrapper {
        left: 50%;
        right: auto;
        margin-left: -250px;
        box-sizing: border-box;
        width: 500px;
    }

    .swiper-slide {
        width: 240px;
    }
}

@media (min-width: 1024px) {
    h2, h3 {
        text-align: left;
    }
    .wrapper {
        position: relative;
        padding-bottom: 100px;
        overflow-x: hidden;
        background: none;
    }

    .header .phone, .header .search {
        display: block;
    }
    .header .burger-menu__wrapper .phone, .burger-menu__wrapper .search {
        display: none;
    }
    .header {
        flex-wrap: wrap;
    }
    .merchant-btn {
        margin-top: 8px;
    }

    .burger-menu__wrapper {
        width: 805px;
        padding-bottom: 72px;
    }
    .burger-menu {
        margin-top: 18px;
        padding-bottom: 0;
    }
    .burger-submenu {
        padding-top: 0;
    }

    .business-form {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        margin: 79px 0 0;
    }
    .make-comfortable {
        margin-top: 0;
        width: 769px;
        box-sizing: border-box;
        background-size: auto;
    }
    .connect-form__wrapper, .become-partner {
        display: flex;
        flex-wrap: wrap;
        width: 480px;
        flex: none;
        margin-top: 0;
    }
    .connect-form__tabs, .connect-form__panel {
        width: 100%;
    }

    .click-together ul li, .click-together ul li + li {
        align-items: flex-start;
        margin-top: 9px;
        min-height: 38px;
    }
    .click-together ul li::before {
        margin-top: 3px;
    }
    .click-together strong {
        white-space: nowrap;
        margin: 0 11px 2px 0;
        font-size: 18px;
        line-height: 22px;
    }
    .click-together span {
        font-size: 16px;
        line-height: 1.2;
    }
    .subscribe {
        text-align: left;
        padding: 34px 0 38px;
    }

    .business-growth {
        margin-top: 101px;
    }
    .business-growth ul {
        margin: 59px 0 0;
    }
    .business-growth ul li {
        width: calc(25% - 15px);
    }

    .click-business {
        margin-top: 100px;
    }
    .click-business ul {
        gap: 80px 30px;
        width: 760px;
        margin-top: 72px;
    }
    .click-business__bg {
        display: block;
        position: absolute;
        width: 668px;
        height: 712px;
        background: url(../img/click-business-bg-2x.png) no-repeat 0 0;
        background-size: contain;
        margin-top: -252px;
        right: -328px;
        z-index: -1;
    }

    .payment-methods {
        margin-top: 188px;
    }
    .payment-methods ul {
        display: flex;
        gap: 20px;
        margin-top: 59px;
    }
    .payment-methods li {
        padding: 21px 30px 19px 140px;
        position: relative;
    }
    .payment-methods li::before {
        position: absolute;
        content: '';
    }
    .payment-site::before {
        width: 60px;
        height: 86px;
        background-size: auto;
        top: 27px;
        left: 40px;
        margin: 0;
    }
    .payment-online::before {
        width: 90px;
        height: 90px;
        background-size: auto;
        top: 23px;
        left: 26px;
        margin: 0;
    }

    .ask-question {
        margin-top: 100px;
        display: flex;
        gap: 30px;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 40px;
    }
    .ask-question__text {
        min-height: auto;
        padding: 0 0 0 140px;
    }
    .ask-question__text::before {
        left: 20px;
        top: 50%;
        margin-top: -50px;
    }
    .ask-question__form {
        width: 400px;
        flex: none;
        align-self: center;
        margin: 16px 0 0;
    }

    .partners-slider__wrapper {
        margin-top: 101px;
    }
    .partners-slider {
        margin-top: 59px;
    }
    .swiper {
        padding-bottom: 69px;
    }
    .swiper-slide {
        margin-right: 24px;
    }


    .info-form {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        margin-top: 104px;
    }
    .ready-connect {
        padding-top: 122px;
        max-width: 480px;
    }

    .become-partner::before, .connect-form__wrapper::before {
        width: 795px;
        right: auto;
        left: -200px;
    }
    .connect-form__wrapper::before {
        left: -100px;
    }
    .become-partner .connect-form__tabs {
        margin-top: 31px;
    }

}
@media (min-width: 1440px) {
    h2, .make-comfortable h2 {
        font-size: 60px;
        line-height: 70px;
    }
    .wrapper-width {
        padding-left: 40px;
        padding-right: 40px;
    }
    .wrapper {
        padding-bottom: 150px;
    }

    .main-menu {
        display: block;
        margin: 28px 0 0;
    }

    .main-menu__list > li {
        position: relative;
        z-index: 5;
        display: inline-block;
        padding: 0 14px;
        font-size: 18px;
        line-height: 22px;
        color: #A8AAC3;
    }
    .main-menu__list li a, .main-menu__list li span {
        color: #fff;
        display: block;
        cursor: pointer;
    }
    .main-menu__list li.submenu > a, .main-menu__list li.submenu > span {
        position: relative;
        padding: 0 20px 19px 0;
    }
    .main-menu__list > li > a:hover, .main-menu__list > li:hover > a, .main-menu__list > li.selected > a {
        color: #A8AAC3;
    }
    .main-menu__list li.submenu > a::after, .main-menu__list li.submenu > span::after {
        position: absolute;
        content: '';
        width: 13px;
        height: 7px;
        background: url(../img/main-menu-arrow.svg) no-repeat 0 0;
        right: 0;
        top: 8px;
    }
    .main-menu__list li a.active{
        color: #0073FF;
    }
    .main-submenu__list {
        position: absolute;
        left: -36px;
        background: #141521;
        top: 100%;
        border-radius: 10px;
        margin-top: -2px;
        padding: 21px 30px 34px;
        font-size: 16px;
        line-height: 1.25;
        opacity: 0;
        visibility: hidden;
        z-index: -10;
        transition-property: opacity, visibility;
        transition-duration: .3s, 0s;
        transition-delay: 0s, .3s;
    }
    .main-submenu__list li {
        margin: 9px 0 0;
        white-space: nowrap;
    }
    .main-submenu__list::before {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        left: 41px;
        top: -9px;
        border: 0 solid transparent;
        border-right-width: 13px;
        border-left-width: 13px;
        border-bottom: 9px solid #141521;
    }
    .main-submenu__list a {
        padding: 5px 10px;
        display: block;
        color: #fff;
    }
    .main-submenu__list a:hover, .main-submenu__list a.selected {
        color: #0073FF;
    }
    .main-menu__list li.submenu:hover .main-submenu__list {
        opacity: 1;
        visibility: visible;
        z-index: 1;
        transition-delay: 0s, 0s;
    }

    .make-comfortable {
        position: relative;
        padding: 41px 40px 0;

    }
    .make-comfortable::after {
        position: absolute;
        content: '';
        width: 616px;
        height: 572px;
        background: url('../img/diagram.png') no-repeat 0 0;
        right: -341px;
        top: 77px;
    }
    .click-together {
        margin-top: 31px;
        padding-bottom: 17px;
    }
    .click-together h4 {
        font-size: 40px;
        line-height: 1.2;
    }
    .click-together ul li, .click-together ul li + li {
        min-height: auto;
    }
    .click-together ul li + li {
        margin-top: 7px;
    }
    .click-together ul li::before {
        margin-top: 5px;
    }
    .click-together strong, .click-together span {
        font-size: 20px;
        line-height: 1.2;
    }

    .business-growth ul {
        margin-top: 57px;
    }
    .business-growth ul li {
        padding: 24px 15px 12px;
        font-size: 18px;
        line-height: 24px;
    }
    .business-growth ul li strong {
        font-size: 52px;
    }

    .click-business {
        margin-top: 81px;
    }
    .click-business ul {
        width: 815px;
    }
    .click-business__bg {
        margin-top: -282px;
        right: 0;
    }

    .payment-methods {
        margin-top: 181px;
    }

    .connect-form__wrapper, .become-partner {
        width: 507px;
    }

    .business-growth {
        margin-top: 192px;
    }
    .business-growth ul li {
        padding: 21px 25px 22px;
        font-size: 18px;
        line-height: 1.22;
    }
    .business-growth ul li strong {
        font-size: 52px;
    }

    .payment-methods ul {
        margin-top: 62px;
    }
    .payment-methods li {
        padding: 21px 30px 19px 160px;
    }
    .payment-site::before {
        left: 60px;
    }
    .payment-online::before {
        left: 46px;
    }

    .ask-question {
        padding-right: 40px;
    }
    .ask-question__text {
        padding: 0 0 0 160px;
    }
    .ask-question__text::before {
        left: 40px;
    }
    .ask-question__text span {
        font-size: 24px;
        line-height: 29px;
    }
    .ask-question__form {
        width: 490px;
    }

    .become-partner::after {
        position: absolute;
        content: '';
        width: 293px;
        height: 296px;
        background: url('../img/connection-icon.svg') no-repeat 0 0;
        left: -233px;
        top: 245px;
        z-index: -1;
    }

    .ready-connect {
        padding-top: 115px;
    }

}

@media (min-width: 1600px) {
    .wrapper-width {
        width: 1554px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .business-form::before {
        position: absolute;
        content: '';
        width: 100px;
        height: 231px;
        background: url('../img/coin1.png') no-repeat 0 0;
        left: 0;
        z-index: -1;
    }
    .business-form::after {
        position: absolute;
        content: '';
        width: 266px;
        height: 263px;
        background: url('../img/coin2.png') no-repeat 0 0;
        margin-top: 127px;
        right: 25px;
        z-index: -1;
    }

    .click-business ul {
        width: 855px;
    }
    .click-business__bg {
        right: 179px;
    }
}

@media (min-width: 2048px) {
    .business-form::before {
        display: none;
    }
    .business-form {
        position: relative;
    }
    .business-form::after {
        right: -150px;
    }
    .click-business {
        position: relative;
    }
    .click-business__bg {
        right: 0;
    }
}
