@import url(https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Commissioner:wght@400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap);
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: 0;
  font-family: Rubik, sans-serif !important;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.commissioner {
  font-family: Commissioner, sans-serif !important;
}
.exo2 {
  font-family: "Exo 2", sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
ul {
  margin: 0;
  padding: 0;
}
.card {
  border: none;
}
a,
button,
input {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a,
a:hover {
  color: #03a9f4;
}
a:hover,
button:hover,
input:hover {
  outline: 0;
  text-decoration: none;
}
button,
input[type="submit"] {
  border: none;
  cursor: pointer;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input.error {
  border: 1px solid #f62c44 !important;
}
button.disabled {
  position: relative;
  background: #03a9f4 !important;
  border: 2px solid #03a9f4 !important ;
  color: transparent !important;
}
button.disabled:before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 40px);
  width: 80px;
  height: 50px;
  background: url(../image/loading.svg@3) no-repeat;
  background-position: center;
  background-position-x: 26px;
}
.mw {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.fancybox-slide:before {
  margin: 0;
}
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #03a9f4;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
  z-index: 98;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
.scrollup img {
  width: 20px;
}
.scrollup:hover {
  opacity: 0.9;
}
.scrollup .fas_icon {
  font-size: 20px;
  color: #fff;
}
.scrollup.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.modal {
  display: none;
  position: fixed;
  z-index: 99999999;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  max-width: 400px;
  padding: 0 !important;
}
.modal::-webkit-scrollbar {
  width: 0;
}
.modal .m-content {
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  position: relative;
}
.modal .m-content .c {
  background-color: #fff;
  width: 100%;
  padding: 40px;
}
.modal .m-content .c h3 {
  text-align: center;
  padding-bottom: 30px;
  font-size: 22px;
  color: #222;
}
.modal .m-content .c .success_h3 {
  font-size: 30px;
  color: #18ba60;
}
.modal .m-content .c h6 {
  padding: 20px 10px;
  text-align: center;
  font-size: 24px;
  color: #2a2a2a;
  font-weight: 400;
}
.modal .m-content .c form {
  width: 100%;
  max-width: 500px;
}
.modal .m-content .c form label {
  color: #03a9f4;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.modal .m-content .c form input,
.modal .m-content .c form select,
.modal .m-content .c form textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 15px;
  color: #222;
  font-size: 14px;
}
.modal .m-content .c form textarea {
  min-height: 100px;
  resize: none;
}
.modal .m-content .c form .inp_line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal .m-content .c form .inp_line .inp_address {
  width: 50%;
}
.modal .m-content .c form .inp_line .inp_home,
.modal .m-content .c form .inp_line .inp_home_num {
  width: 20%;
}
.modal .m-content .c form .policy {
  color: #222;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  display: block;
}
.modal .m-content .c form .policy a {
  color: #03a9f4;
}
.modal .m-content .c form .policy a:hover {
  color: #fff;
}
.modal .m-content .c form .policy input {
  margin-right: 10px;
}
.modal .m-content .c small {
  color: #676767;
  font-size: 10px;
  font-weight: 300;
}
.modal .m-content .c small a {
  color: #676767;
  text-decoration: underline;
}
.modal .m-content .c small a:hover {
  color: #18ba60;
}
@media (max-width: 575px) {
  .scrollup {
    right: 10px;
    bottom: 50px;
  }
  .modal .m-content .c h3 {
    padding: 30px 0;
    padding-top: 50px;
    font-size: 22px;
  }
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: none;
}
.btn_c .btn_m {
  background: #03a9f4;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 2px solid #03a9f4;
  height: 70px;
  width: 230px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  font-family: Rubik, sans-serif !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.btn_c .btn_m:hover {
  color: #000;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main .btn_c .btn_m:hover {
  color: #fff;
}
.btn_c .btn_arrow:after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../image/icon/main-right.svg) no-repeat center center/cover;
  position: relative;
  margin-left: 2px;
  min-width: 22px;
}
.page {
  background: #fafdff;
  background-position: bootom left;
  background-size: cover;
}
.page .header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw {
  padding: 38px 20px 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page .header .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw .cont .left_side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw .cont .left_side .o_xs_menu {
  display: none;
  cursor: pointer;
  width: 24px;
  background: url(https://amarapay.pro/template/image/menu.svg) no-repeat center center/cover;
  height: 24px;
}
.page .header .mw .cont .left_side .o_xs_menu.close {
  background: url(https://amarapay.pro/template/image/close.svg) no-repeat center center/cover;
}
.page .header .mw .cont .left_side .o_xs_menu img {
  width: 100%;
}
.page .header .mw .cont .left_side .logo {
  width: 175px;
}
.page .header .mw .cont .left_side .logo a {
  display: block;
  width: 40px;
  height: 45px;
  background: url(../image/white-logo.png) no-repeat;
  background-size: 100%;
}
.page2 .header .mw .cont .left_side .logo a {
  background: url(../image/blue-logo.png@1) no-repeat;
  background-size: 100%;
}
.page .header .mw .cont .left_side .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw .cont .left_side .nav ul li {
  margin-right: 60px;
  position: relative;
  padding: 10px 0;
}
.page .header .mw .cont .left_side .nav ul li:active .sub-menu,
.page .header .mw .cont .left_side .nav ul li:focus .sub-menu,
.page .header .mw .cont .left_side .nav ul li:hover .sub-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  z-index: 2;
}
.page .header .mw .cont .left_side .nav ul li:active a,
.page .header .mw .cont .left_side .nav ul li:focus a,
.page .header .mw .cont .left_side .nav ul li:hover a {
  color: #fff;
}
.page2 .header .mw .cont .left_side .nav ul li:active a,
.page2 .header .mw .cont .left_side .nav ul li:focus a,
.page2 .header .mw .cont .left_side .nav ul li:hover a {
  color: #03a9f4;
}
.page .header .mw .cont .left_side .nav ul li:active a:after,
.page .header .mw .cont .left_side .nav ul li:focus a:after,
.page .header .mw .cont .left_side .nav ul li:hover a:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.page .header .mw .cont .left_side .nav ul li:hover p:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
.page .header .mw .cont .left_side .nav ul li:active .sub-menu li a,
.page .header .mw .cont .left_side .nav ul li:focus .sub-menu li a,
.page .header .mw .cont .left_side .nav ul li:hover .sub-menu li a {
  color: #141416;
}
.page .header .mw .cont .left_side .nav ul li:active .sub-menu li a:hover,
.page .header .mw .cont .left_side .nav ul li:focus .sub-menu li a:hover,
.page .header .mw .cont .left_side .nav ul li:hover .sub-menu li a:hover {
  color: #03a9f4;
}
.page .header .mw .cont .left_side .nav ul li.menu-item-has-children a:after {
  display: block;
}
.page .header .mw .cont .left_side .nav ul li.menu-item-has-children p:after {
    display: block;
  }
.page .header .mw .cont .left_side .nav ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF8A;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Commissioner, sans-serif !important;
}
.page2 .header .mw .cont .left_side .nav ul li a {
  color: #141414;
}
.page .header .mw .cont .left_side .nav ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF8A;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner, sans-serif !important;
  }
.page2 .header .mw .cont .left_side .nav ul li p {
  color: #141414;
}
.page .header .mw .cont .left_side .nav ul li a:hover {
  color: #fff;
}
.page2 .header .mw .cont .left_side .nav ul li a:hover {
  color: #03a9f4;
}
.page .header .mw .cont .left_side .nav ul li p:hover {
    color: #fff;
  }
.page2 .header .mw .cont .left_side .nav ul li p:hover {
    color: #03a9f4;
  }  
.page .header .mw .cont .left_side .nav ul li .sub-menu {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  top: 40px;
  width: 200px;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  visibility: hidden;
  z-index: -1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  padding: 15px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
}
.page .header .mw .cont .left_side .nav ul li .sub-menu li {
  margin-bottom: 15px;
  padding: 0;
}
.page .header .mw .cont .left_side .nav ul li .sub-menu li:last-child {
  margin-bottom: 0;
}
.page .header .mw .cont .left_side .nav ul li .sub-menu li a:after {
  display: none;
}
.page .header .mw .cont .right_side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw .cont .right_side .btn_login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  font-family: Rubik, sans-serif !important;
  width: 100px;
  height: 44px;
  margin-right: 18px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.page2 .header .mw .cont .right_side .btn_login {
  color: #141414;
}
.page .header .mw .cont .right_side .btn_login:hover {
  color: #03a9f4;
}
.page .header .mw .cont .right_side .btn_c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .header .mw .cont .right_side .btn_c .btn_reg.btn_m {
  width: 140px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  font-family: Rubik, sans-serif !important;
  background: transparent;
}
.page2 .header .mw .cont .right_side .btn_c .btn_reg.btn_m {
  color: #141414;
}
.page .header .mw .cont .right_side .btn_c .btn_reg.btn_m:hover {
  background: #03a9f4; 
}
.page2 .header .mw .cont .right_side .btn_c .btn_reg.btn_m:hover {
  color: #fff; 
}
.page .sticky {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  height: 90px;
}
.page .sticky .mw {
  padding: 15px 20px;
}
.page .sticky .mw .cont .left_side .logo a {
  font-size: 28px;
  line-height: 34px;
}
.page .sticky .mw .cont .left_side .nav ul li a {
  font-size: 18px;
  line-height: 22px;
}

.page .sticky .mw .cont .left_side .nav ul li p {
    font-size: 18px;
    line-height: 22px;
}
.page .header_offset {
  padding-top: 90px;
}
.page .main {
  position: relative;
  background: radial-gradient(circle farthest-side at 50% 150%,#001532 7%,#006dff 17%,#001532 79%);
}
.page2 .main {
  background: #fff;
}
.page .main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../image/main/bg.png) no-repeat;
  background-size: cover;
}
.page2 .main:before {
  display: none;
}

.page .main .main_cont .mw {
  padding: 130px 20px 200px;
}
.page .main .main_cont .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page .main .main_cont .mw .cont .left_side {
  width: 50%;
}
.page .main .main_cont .mw .cont .left_side .h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 56px;
  line-height: 68px;
  color: #fff;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 30px;
}
.page .main .main_cont .mw .cont .left_side .h1 b {
  font-weight: 600;
  font-family: Commissioner, sans-serif !important;
}
.page .main .main_cont .mw .cont .left_side p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  font-family: Rubik, sans-serif !important;
  color: #9599bb;
  max-width: 545px;
  margin-bottom: 32px;
}
.page .main .main_cont .mw .cont .left_side .line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .main .main_cont .mw .cont .left_side .line .btn_c {
  margin-right: 40px;
}
.page .main .main_cont .mw .cont .left_side .line .we_work_with_individuals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page
  .main
  .main_cont
  .mw
  .cont
  .left_side
  .line
  .we_work_with_individuals
  .icon {
  width: 18px;
  min-width: 18px;
  margin-right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page
  .main
  .main_cont
  .mw
  .cont
  .left_side
  .line
  .we_work_with_individuals
  .icon
  img {
  width: 100%;
}
.page
  .main
  .main_cont
  .mw
  .cont
  .left_side
  .line
  .we_work_with_individuals
  span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF8A;
}
.page .main .main_cont .mw .cont .right_side {
  width: 50%;
}
.page .main .main_cont .mw .cont .right_side .main_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: -90px;
}
.page .main .main_cont .mw .cont .right_side .main_img img {
  width: 110%;
}
.page .connection_request {
  margin-top: -130px;
  margin-bottom: 100px;
}
.page .connection_request .mw {
  padding: 0 20px;
}
.page .connection_request .mw .cont {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#f7f9fc),
    color-stop(50%, #fff),
    to(#f7f9fc)
  );
  background: -o-linear-gradient(right, #f7f9fc 0, #fff 50%, #f7f9fc 100%);
  background: linear-gradient(270deg, #f7f9fc 0, #fff 50%, #f7f9fc 100%);
  -webkit-box-shadow: 0 478px 498px rgba(0, 0, 0, 0.08),
    0 59.853px 62.3573px rgba(0, 0, 0, 0.04);
  box-shadow: 0 478px 498px rgba(0, 0, 0, 0.08),
    0 59.853px 62.3573px rgba(0, 0, 0, 0.04);
  height: 240px;
  padding: 48px;
}
.page .connection_request .mw .cont .h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 48px;
}
.page .connection_request .mw .cont form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .connection_request .mw .cont form .inp {
  margin: 0 16px;
  width: 100%;
  max-width: 330px;
}
.page .connection_request .mw .cont form .inp input {
  width: 100%;
  height: 65px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #141416;
}
.page .connection_request .mw .cont form .btn_c {
  margin: 0 16px;
}
.page .connection_request .mw .cont form .btn_c .btn_m {
  height: 65px;
}
.page .xs_menu {
  display: none;
  position: fixed;
  width: 100%;
  top: 60px;
  z-index: 998;
  height: -webkit-calc(100vh - 60px);
  height: calc(100vh - 60px);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  top: -100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
.page .xs_menu .overlay {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  background: rgba(11, 11, 30, 0.7);
}
.page .xs_menu .xs_menu_cont {
  background: #fefefe;
  padding: 24px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.page .xs_menu .xs_menu_cont .nav ul li {
  position: relative;
  padding-bottom: 24px;
}
.page .xs_menu .xs_menu_cont .nav ul li:hover .sub-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  z-index: 2;
}
.page .xs_menu .xs_menu_cont .nav ul li:hover a {
  color: #03a9f4;
}
.page .xs_menu .xs_menu_cont .nav ul li:hover a:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.page .xs_menu .xs_menu_cont .nav ul li:hover .sub-menu li a {
  color: #141416;
}
.page .xs_menu .xs_menu_cont .nav ul li:hover .sub-menu li a:hover {
  color: #03a9f4;
}
.page .xs_menu .xs_menu_cont .nav ul li.menu-item-has-children a:after {
  display: block;
}
.page .xs_menu .xs_menu_cont .nav ul li.menu-item-has-children p:after {
    display: block;
  }
.page .xs_menu .xs_menu_cont .nav ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #141416;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Commissioner, sans-serif !important;
}

.page .xs_menu .xs_menu_cont .nav ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #141416;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Commissioner, sans-serif !important;
  }
.page .xs_menu .xs_menu_cont .nav ul li a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(https://amarapay.pro/template/image/chevron_down.svg) no-repeat center center/cover;
  position: relative;
  min-width: 16px;
  margin-left: 1px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: none;
}

.page .xs_menu .xs_menu_cont .nav ul li p:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(https://amarapay.pro/template/image/chevron_down.svg) no-repeat center center/cover;
    position: relative;
    min-width: 16px;
    margin-left: 1px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: none;
  }
.page .xs_menu .xs_menu_cont .nav ul li a:hover {
  color: #03a9f4;
}

.page .xs_menu .xs_menu_cont .nav ul li p:hover {
    color: #03a9f4;
  }
.page .xs_menu .xs_menu_cont .nav ul li .sub-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin-top: 10px;
  padding-left: 15px;
  display: none;
}
.page .xs_menu .xs_menu_cont .nav ul li .sub-menu li {
  margin-bottom: 5px;
  padding: 0;
}
.page .xs_menu .xs_menu_cont .nav ul li .sub-menu li:last-child {
  margin-bottom: 0;
}
.page .xs_menu .xs_menu_cont .nav ul li .sub-menu li a:after {
  display: none;
}
.page .xs_menu .xs_menu_cont .btn_c {
  width: 100%;
  max-width: 330px;
}
.page .xs_menu .xs_menu_cont .btn_c .btn_m {
  max-width: 100%;
  width: 100%;
}
.page .xs_menu.active {
  top: 60px;
  opacity: 1;
}
.page .benefits .mw {
  padding: 100px 20px;
}
.page .benefits .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page .benefits .mw .cont .benefit_card {
  width: 31%;
  max-width: 370px;
  background: #fff;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  overflow: hidden;
  padding: 32px;
  position: relative;
  height: 560px;
  margin-bottom: 35px;
}
.page .benefits .mw .cont .benefit_card.benefit_card1:after {
  background: rgba(255, 184, 0, 0.12);
}
.page .benefits .mw .cont .benefit_card.benefit_card1 .img {
  width: 90%;
  margin: 0 auto;
  right: 15px;
}
.page .benefits .mw .cont .benefit_card.benefit_card2:after {
  background: rgba(0, 255, 102, 0.12);
}
.page .benefits .mw .cont .benefit_card.benefit_card2 .img {
  bottom: -35px;
}
.page .benefits .mw .cont .benefit_card.benefit_card2 .img img {
  width: 110%;
}
.page .benefits .mw .cont .benefit_card.benefit_card3:after {
  background: rgba(0, 194, 255, 0.12);
}
.page .benefits .mw .cont .benefit_card.benefit_card3 .img {
  bottom: -35px;
}
.page .benefits .mw .cont .benefit_card.benefit_card3 .img img {
  width: 110%;
}
.page .benefits .mw .cont .benefit_card.benefit_card4:after {
  background: rgba(255, 0, 0, 0.06);
  bottom: -170px;
  left: -10px;
}
.page .benefits .mw .cont .benefit_card.benefit_card4 .img {
  max-width: 410px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.page .benefits .mw .cont .benefit_card.benefit_card5:after {
  background: rgba(0, 194, 255, 0.12);
  bottom: -234px;
  left: -50px;
}
.page .benefits .mw .cont .benefit_card.benefit_card5:before {
  content: "";
  width: 504px;
  height: 504px;
  position: absolute;
  -webkit-filter: blur(128px);
  filter: blur(128px);
  background: rgba(112, 0, 254, 0.15);
  right: -66px;
  bottom: -124px;
}
.page .benefits .mw .cont .benefit_card.benefit_card5 .img {
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.page .benefits .mw .cont .benefit_card:after {
  content: "";
  width: 504px;
  height: 504px;
  position: absolute;
  bottom: -287px;
  left: -128px;
  -webkit-filter: blur(128px);
  filter: blur(128px);
}
.page .benefits .mw .cont .benefit_card .top_label {
  background: #fff;
  -webkit-box-shadow: inset 8px 0 24px rgba(108, 145, 200, 0.25);
  box-shadow: inset 8px 0 24px rgba(108, 145, 200, 0.25);
  -webkit-border-radius: 48px;
  border-radius: 48px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #000;
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.page .benefits .mw .cont .benefit_card .benefit_title {
  font-style: normal;
  font-weight: 800;
  font-size: 38px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 18px;
}
.page .benefits .mw .cont .benefit_card p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
}
.page .benefits .mw .cont .benefit_card .img {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
.page .benefits .mw .cont .benefit_card .img img {
  width: 100%;
}
.page .benefits .mw .cont .benefit_card4,
.page .benefits .mw .cont .benefit_card5 {
  width: 49%;
  max-width: 576px;
  height: 700px;
  padding-right: 50px;
  margin-bottom: 0;
}
.page .m_title {
  margin-bottom: 64px;
}
.page .m_title .h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 46px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
}
.page .m_title .h2 b {
  color: #03a9f4;
  font-family: Commissioner, sans-serif !important;
  font-weight: 800;
}
.page .integration .mw {
  padding: 0 20px;
}
.page .integration .mw .cont ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page .integration .mw .cont ul li {
  background: #fff;
  width: 24%;
  max-width: 280px;
  padding: 32px;
  position: relative;
}
.page .integration .mw .cont ul li .icon {
  width: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px;
  margin-bottom: 12px;
}
.page .integration .mw .cont ul li .icon img {
  width: 100%;
}
.page .integration .mw .cont ul li .num {
  position: absolute;
  right: 28px;
  top: 18px;
}
.page .integration .mw .cont ul li .num span {
  font-weight: 700;
  font-size: 56px;
  line-height: 68px;
  text-align: right;
  display: block;
  font-family: Commissioner, sans-serif !important;
  letter-spacing: 5px;
  background: -o-linear-gradient(
    256.4deg,
    rgba(20, 20, 22, 0.2) -44.73%,
    rgba(20, 20, 22, 0) 101.56%
  );
  background: linear-gradient(
    193.6deg,
    rgba(20, 20, 22, 0.2) -44.73%,
    rgba(20, 20, 22, 0) 101.56%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page .integration .mw .cont ul li .h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 12px;
}
.page .integration .mw .cont ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: rgba(20, 20, 22, 0.8);
}
.page .favorable_rates .mw {
  padding: 130px 20px 200px;
}
.page .favorable_rates .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page .favorable_rates .mw .cont .rate_card {
  width: 32%;
  max-width: 370px;
  background: #fff;
  padding: 32px; 
}
.page .favorable_rates .mw .cont .rate_card .img {
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}
.page .favorable_rates .mw .cont .rate_card .img img {
  height: 100%;
}
.page .favorable_rates .mw .cont .rate_card .h5 {
  font-weight: 500;
  font-size: 38px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  font-style: normal;
  margin-bottom: 30px;
}
.page .favorable_rates .mw .cont .rate_card .percent {
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: -0.02em;
  color: #141416;
  margin-bottom: 18px;
}
.page .favorable_rates .mw .cont .rate_card .percent b {
  color: #03a9f4;
  font-weight: 500;
}
.page .favorable_rates .mw .cont .rate_card p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
  margin-bottom: 18px;
  min-height: 175px;
}
.page .favorable_rates .mw .cont .rate_card ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page .favorable_rates .mw .cont .rate_card ul li {
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 15px;
}
.page .favorable_rates .mw .cont .rate_card ul li:nth-child(4n) {
  margin-right: 0;
}
.page .favorable_rates .mw .cont .rate_card ul li:last-child {
  margin-bottom: 0;
}
.page .favorable_rates .mw .cont .rate_card ul li img {
  width: 100%;
}
.page .connect_today {
  position: relative;
  background: #f6f9fc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .connect_today .mw {
  padding: 92px 20px;
  z-index: 2;
}
.page .connect_today .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .connect_today .mw .cont .m_title {
  margin-bottom: 32px;
}
.page .connect_today .mw .cont .btn_c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page .connect_today .mw .cont .btn_c .btn_m {
  height: 65px;
  max-width: 220px;
}
.page .footer {
  position: relative;
  background: #fff;
}
.page .footer .mw {
  z-index: 2;
  padding: 48px 20px;
}
.page .footer .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page .footer .mw .cont .left_side .logo {
  display: block;
  width: 173px;
  height: 54px;
  background: url(../image/footer-logo.png@2) no-repeat;
  background-size: 100%;
}
.page .footer .mw .cont .left_side .copyright {
  margin-top: 20px;
  font-weight: 400;
  font-size: 13px;
  color: #9599bb;
}
.page .footer .mw .cont .left_side p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #434345;
  margin-bottom: 44px;
}
.page .footer .mw .cont .left_side p a {
  color: #434345;
}
.page .footer .mw .cont .left_side .btn_c .btn_m {
  height: 40px;
  max-width: 165px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}
.page .footer .mw .cont .left_side .btn_c .btn_m:after {
  width: 14px;
  height: 14px;
  min-width: 14px;
}
.page .footer .mw .cont .quick_links .quick_links_title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #141416;
  margin-bottom: 32px;
}
.page .footer .mw .cont .quick_links ul li {
  margin-bottom: 16px;
}
.page .footer .mw .cont .quick_links ul li:last-child {
  margin-bottom: 0;
}
.page .footer .mw .cont .quick_links ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #141416;
}
.page .footer .mw .cont .quick_links ul li a:hover {
  color: #03a9f4;
}
.page2 .header {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  height: 90px;
}
.page2 .header .mw {
  padding: 15px 20px;
}
.page2 .header .mw .cont .left_side .logo a {
  font-size: 28px;
  line-height: 34px;
}
.page2 .header .mw .cont .left_side .nav ul li a {
  font-size: 18px;
  line-height: 22px;
}

.page2 .header .mw .cont .left_side .nav ul li p {
    font-size: 18px;
    line-height: 22px;
  }
.page2 .tariffs_for_accepting_payments .mw,
.page2 .what_can_affect_your_tariff .mw {
  padding: 100px 20px;
}
.page2 .what_can_affect_your_tariff .mw .m_title .h2 {
  text-align: left;
}
.page2 .what_can_affect_your_tariff .mw .cont {
  max-width: 994px;
}
.page2 .what_can_affect_your_tariff .mw .cont ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.page2 .what_can_affect_your_tariff .mw .cont ul li {
  background: #fff;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  padding: 24px 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32%;
  max-width: 280px;
}
.page2 .what_can_affect_your_tariff .mw .cont ul li .icon {
  width: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
}
.page2 .what_can_affect_your_tariff .mw .cont ul li .icon img {
  width: 100%;
}
.page2 .what_can_affect_your_tariff .mw .cont ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .withdrawal_rates .mw {
  padding: 0 20px;
}
.page2 .tariffs_for_accepting_payments .mw .m_title,
.page2 .withdrawal_rates .mw .m_title {
  margin-bottom: 48px;
}
.page2 .tariffs_for_accepting_payments .mw .m_title .h2,
.page2 .withdrawal_rates .mw .m_title .h2 {
  text-align: left;
}
.page2 .tariffs_for_accepting_payments .mw .cont,
.page2 .withdrawal_rates .mw .cont {
  background: #fff;
  max-width: 994px;
  padding: 44px 48px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line,
.page2 .withdrawal_rates .mw .cont .line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line:last-child,
.page2 .withdrawal_rates .mw .cont .line:last-child {
  margin-bottom: 0;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .logos,
.page2 .withdrawal_rates .mw .cont .line .logos {
  min-width: 300px;
  margin-right: 30px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul,
.page2 .withdrawal_rates .mw .cont .line .logos ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li,
.page2 .withdrawal_rates .mw .cont .line .logos ul li {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  min-width: 48px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li img,
.page2 .withdrawal_rates .mw .cont .line .logos ul li img {
  width: 100%;
  height: auto;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .desc,
.page2 .withdrawal_rates .mw .cont .line .desc {
  margin-right: 90px;
  min-width: 330px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .desc .h5,
.page2 .withdrawal_rates .mw .cont .line .desc .h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
  font-family: Commissioner, sans-serif !important;
  color: #141416;
  margin-bottom: 10px;
  font-style: normal;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .desc p,
.page2 .withdrawal_rates .mw .cont .line .desc p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .percent,
.page2 .withdrawal_rates .mw .cont .line .percent {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 8px 0 24px rgba(108, 145, 200, 0.25);
  box-shadow: inset 8px 0 24px rgba(108, 145, 200, 0.25);
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 102px;
  height: 78px;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .percent small,
.page2 .withdrawal_rates .mw .cont .line .percent small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(20, 20, 22, 0.8);
  display: block;
}
.page2 .tariffs_for_accepting_payments .mw .cont .line .percent span,
.page2 .withdrawal_rates .mw .cont .line .percent span {
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: -0.02em;
  font-family: Commissioner, sans-serif !important;
  color: #141416;
  margin-top: -3px;
  display: block;
}
.page2 .withdrawal_rates .mw {
  padding: 100px 20px 194px;
}
.page2 .withdrawal_rates .mw .m_title {
  margin-bottom: 24px;
}
.page2 .withdrawal_rates .mw .top_desc {
  max-width: 686px;
  margin-bottom: 48px;
}
.page2 .withdrawal_rates .mw .top_desc .h5,
.page2 .withdrawal_rates .mw .top_desc h5,
.page2 .withdrawal_rates .mw .top_desc p,
.page2 .withdrawal_rates .mw .top_desc ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .withdrawal_rates .mw .top_desc p {
  padding-bottom: 24px;
}
.page2 .withdrawal_rates .mw .top_desc .minimum {
  margin-top: 24px;
  background: #fff;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  width: 100%;
  max-width: 375px;
  border-left: 3px solid #03a9f4;
  padding: 8px 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .about {
  background: url(https://amarapay.pro/template/image/about_bg.png) no-repeat center center/100% 100%;
}
.page2 .about .mw {
  padding: 100px 20px 150px;
}
.page2 .about .mw .m_title {
  margin-bottom: 32px;
}
.page2 .about .mw .m_title .h2 {
  font-size: 38px;
  line-height: 46px;
}
.page2 .about .mw p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #434345;
  max-width: 700px;
  margin: 0 auto;
}
.page2 .about_benefits {
  margin-top: -55px;
}
.page2 .about_benefits .mw {
  padding: 0 20px;
}
.page2 .about_benefits .mw .cont {
  background: #fff;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  padding: 0 48px;
}
.page2 .about_benefits .mw .cont ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.page2 .about_benefits .mw .cont ul li {
  padding: 30px 0;
  width: 30%;
  border-left: 2px solid #f8f8f8;
  padding-left: 32px;
}
.page2 .about_benefits .mw .cont ul li:first-child {
  border-left: 0;
  padding-left: 0;
}
.page2 .about_benefits .mw .cont ul li .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page2 .about_benefits .mw .cont ul li .icon img {
  width: 100%;
}
.page2 .about_benefits .mw .cont ul li p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .contacts_info .mw {
  padding: 100px 20px 130px;
}
.page2 .contacts_info .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.page2 .contacts_info .mw .cont .left_side {
  width: 55%;
  padding: 48px;
}
.page2 .contacts_info .mw .cont .left_side .row {
  margin-bottom: 64px;
}
.page2 .contacts_info .mw .cont .left_side .row:last-child {
  margin-bottom: 0;
}
.page2 .contacts_info .mw .cont .left_side .row .h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 18px;
}
.page2 .contacts_info .mw .cont .left_side .row ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .contacts_info .mw .cont .left_side .row p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
}
.page2 .contacts_info .mw .cont .right_side {
  width: 40%;
}
.page2 .contacts_info .mw .cont .right_side .map {
  width: 100%;
  height: 100%;
  position: relative;
}
.page2 .contacts .mw {
  padding: 100px 20px 260px;
}
.page2 .contacts .mw .cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page2 .contacts .mw .cont .left_side {
  width: 55%;
}
.page2 .contacts .mw .cont .left_side .m_title {
  margin-bottom: 24px;
}
.page2 .contacts .mw .cont .left_side .m_title .h2 {
  text-align: left;
}
.page2 .contacts .mw .cont .left_side .desc {
  max-width: 584px;
}
.page2 .contacts .mw .cont .left_side .desc p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(20, 20, 22, 0.8);
  margin-bottom: 32px;
}
.page2 .contacts .mw .cont .left_side .desc p:last-child {
  margin-bottom: 0;
}
.page2 .contacts .mw .cont .left_side .btn_c {
  margin-top: 48px;
}
.page2 .contacts .mw .cont .left_side .btn_c .btn_m {
  height: 65px;
  max-width: 275px;
}
.page2 .contacts .mw .cont .right_side {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.page2 .contacts .mw .cont .right_side .card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  padding: 24px 18px;
}
.page2 .contacts .mw .cont .right_side .card .row {
  margin-bottom: 32px;
}
.page2 .contacts .mw .cont .right_side .card .row:last-child {
  margin-bottom: 0;
}
.page2 .contacts .mw .cont .right_side .card .row .h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #141416;
  font-family: Commissioner, sans-serif !important;
  margin-bottom: 10px;
}
.page2 .contacts .mw .cont .right_side .card .row .line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}
.page2 .contacts .mw .cont .right_side .card .row .line .icon {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 6px;
  min-width: 18px;
}
.page2 .contacts .mw .cont .right_side .card .row .line .icon img {
  width: 100%;
}
.page2 .contacts .mw .cont .right_side .card .row .line a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.02em;
  color: #141416;
}
.page2 .contacts .mw .cont .right_side .card .row .line a:hover {
  color: #03a9f4;
}
.page2 .contacts .mw .cont .right_side .card .row p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: #999fb0;
}
.page2 .faq .mw {
  padding: 100px 20px 390px;
}
.page2 .faq .mw .m_title {
  margin-bottom: 52px;
}
.page2 .faq .mw .m_title .h2 {
  text-align: left;
}
.page2 .faq .mw .cont {
  width: 100%;
}
.page2 .faq .mw .cont ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page2 .faq .mw .cont ul li {
  width: 24%;
  max-width: 280px;
}
.page2 .faq .mw .cont ul li a {
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#fff)
  );
  background: -o-linear-gradient(top, #fff 0, #fff 100%);
  background: linear-gradient(180deg, #fff 0, #fff 100%);
  padding: 20px;
  display: block;
}
.page2 .faq .mw .cont ul li a:hover {
  -webkit-box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
  box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.page2 .faq .mw .cont ul li a:hover .icon {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page2 .faq .mw .cont ul li a:hover .icon.icon1 {
  background: url(../image/help-integration-hover.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a:hover .icon.icon2 {
  background: url(../image/help-payout-hover.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a:hover .icon.icon3 {
  background: url(../image/help-payeer-hover.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a:hover .icon.icon4 {
  background: url(../image/help-doc-hover.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page2 .faq .mw .cont ul li a .icon.icon1 {
  background: url(../image/help-integration.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a .icon.icon2 {
  background: url(../image/help-payout.svg@1) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a .icon.icon3 {
  background: url(../image/help-payeer.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a .icon.icon4 {
  background: url(../image/help-doc.svg) no-repeat center center/cover;
}
.page2 .faq .mw .cont ul li a span {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #17181b;
  font-family: Commissioner, sans-serif !important;
}
.page2 .how_connect .mw {
  padding: 100px 20px 190px;
}
.page2 .how_connect .mw .top_line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}
.page2 .how_connect .mw .top_line .back {
  background: #f8f8f8;
  border: 1.5px solid rgba(153, 159, 176, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  min-width: 48px;
  margin-right: 18px;
}
.page2 .how_connect .mw .top_line .back:hover {
  border-color: #7f7f7f;
}
.page2 .how_connect .mw .top_line .back img {
  width: 36px;
  height: 36px;
}
.page2 .how_connect .mw .top_line .m_title {
  margin-bottom: 0;
}
.page2 .how_connect .mw .top_line .m_title .h2 {
  text-align: left;
}
.page2 .how_connect .mw .accordion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page2 .how_connect .mw .accordion .accordion-item {
  width: 48%;
  margin-bottom: 24px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  -webkit-border-radius: 18px;
  border-radius: 18px;
}
.page2 .how_connect .mw .accordion .accordion-item.active {
  -webkit-box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
  box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
  -webkit-border-radius: 24px;
  border-radius: 24px;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item.active
  .accordion-item-title {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: #ebedf2;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item.active
  .accordion-item-title:after {
  background: url(https://amarapay.pro/template/image/plus.svg) no-repeat center center/cover;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item.active
  .accordion-item-title:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.page2 .how_connect .mw .accordion .accordion-item .accordion-item-title {
  -webkit-border-radius: 18px;
  border-radius: 18px;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #17181b;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
  font-family: Commissioner, sans-serif !important;
  font-weight: 600;
  padding-right: 60px;
}
.page2 .how_connect .mw .accordion .accordion-item .accordion-item-title:hover {
  -webkit-box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
  box-shadow: 0 12.5216px 19.0328px rgba(0, 0, 0, 0.035);
}
.page2 .how_connect .mw .accordion .accordion-item .accordion-item-title:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(https://amarapay.pro/template/image/minus.svg) no-repeat center center/cover;
  position: absolute;
  right: 24px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.page2 .how_connect .mw .accordion .accordion-item .accordion-item-content {
  display: none;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item
  .accordion-item-content
  .accordion-item-content_cont {
  padding: 18px 28px;
  min-height: 160px;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item
  .accordion-item-content
  .accordion-item-content_cont
  p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #17181b;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item
  .accordion-item-content
  .accordion-item-content_cont
  p
  a {
  color: #03a9f4;
}
.page2
  .how_connect
  .mw
  .accordion
  .accordion-item
  .accordion-item-content
  .accordion-item-content_cont
  p
  a:hover {
  color: #141416;
}

.error-404 {
  margin-top: 20%;
  text-align: center;
  color: #03a9f4;
  font-size: 80px;
}

.error-404 span {
  display: block;
  color: #141414;
  font-size: 21px;
}

.auth {
  background: #f6f9fc;
}

.auth .logo {
  display: block;
  margin-top: 150px;
  margin-bottom: 50px;
  margin-left: calc(50% - 87px);
  width: 174px;
  height: 54px;
  background: url(../image/footer-logo.png@2) no-repeat;
  background-size: 100%;
}

.auth .form {
  margin: 0 auto;
  max-width: 450px;
  background: #fff;
  padding: 50px;
}

.auth .form .info .error {
  margin-bottom: 20px;
  background: #fcefef;
  padding: 20px;
}

.auth .form .info .success {
  margin-bottom: 20px;
  background: #f0fcf1;
  padding: 20px;
}

.auth .form .inp {
  margin-top: 20px;
}
.auth .form .inp:nth-child(1) {
  margin-top: 0px;
}
.auth .form .inp input {
  width: 100%;
  height: 65px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #141416;
}

.auth .form .btn_m {
  margin-top: 30px;
  width: 100%;
}

.auth .form .link {
  margin-top: 20px;
  color: #9599bb;
}

@media (max-width: 575px) {
  .page .header {
    height: 60px;
  }
  .page .header .mw {
    padding: 30px 20px 0;
  }
  .page .header .mw .cont .left_side .o_xs_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 24px;
    margin-right: 12px;
  }
  .page .header .mw .cont .left_side .logo {
    width: auto;
  }
  .page .header .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page .header .mw .cont .left_side .nav {
    display: none;
  }
  .page .header .mw .cont .right_side .btn_login {
    width: auto;
    height: auto;
    margin-right: 0;
  }
  .page .header .mw .cont .right_side .btn_c {
    display: none;
  }
  .page .sticky {
    height: 60px;
  }
  .page .sticky .mw {
    padding: 15px 20px;
  }
  .page .sticky .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page .header_offset {
    padding-top: 60px;
  }
  .page .main .main_cont .mw {
    padding: 32px 20px 0;
  }
  .page .main .main_cont .mw .cont .left_side {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .h1 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 18px;
    max-width: 400px;
  }
  .page .main .main_cont .mw .cont .left_side p {
    max-width: 327px;
  }
  .page .main .main_cont .mw .cont .left_side .line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 330px;
  }
  .page .main .main_cont .mw .cont .left_side .line .btn_c {
    margin-right: 0;
    width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .line .btn_c .btn_m {
    width: 100%;
    max-width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .line .we_work_with_individuals {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 32px;
  }
  .page .main .main_cont .mw .cont .right_side {
    width: 100%;
    margin-top: 32px;
  }
  .page .main .main_cont .mw .cont .right_side .main_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
  }
  .page .main .main_cont .mw .cont .right_side .main_img img {
    width: 100%;
    max-width: 100%;
    margin-right: -10%;
  }
  .page .connection_request {
    margin-top: -50px;
  }
  .page .connection_request .mw {
    padding: 0 20px;
  }
  .page .connection_request .mw .cont {
    height: auto;
    padding: 32px 18px 48px;
  }
  .page .connection_request .mw .cont .h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  .page .connection_request .mw .cont form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page .connection_request .mw .cont form .inp {
    margin: 0 auto 18px;
  }
  .page .connection_request .mw .cont form .btn_c {
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page .connection_request .mw .cont form .btn_c .btn_m {
    max-width: 330px;
    width: 100%;
  }
  .page .xs_menu {
    display: block;
  }
  .page .benefits .mw {
    padding: 64px 0;
  }
  .page .benefits .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .benefits .mw .cont .benefit_card {
    width: 100%;
    max-width: 100%;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 32px 24px;
    height: auto;
    margin-bottom: 35px;
    padding-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card .top_label {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card p {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card .img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    position: relative;
  }
  .page .benefits .mw .cont .benefit_card4,
  .page .benefits .mw .cont .benefit_card5 {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-right: 24px;
    margin-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card4 {
    margin-bottom: 32px;
  }
  .page .m_title {
    margin-bottom: 32px;
  }
  .page .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page .integration .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .integration .mw .cont ul li {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
  }
  .page .integration .mw .cont ul li:last-child {
    margin-bottom: 0;
  }
  .page .favorable_rates .mw {
    padding: 48px 20px 64px;
  }
  .page .favorable_rates .mw .m_title {
    margin-bottom: 48px;
  }
  .page .favorable_rates .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .favorable_rates .mw .cont .rate_card {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 24px;
    padding: 24px 18px;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child {
    margin-bottom: 0;
  }
  .page .favorable_rates .mw .cont .rate_card .h5 {
    margin-bottom: 24px;
  }
  .page .favorable_rates .mw .cont .rate_card p {
    min-height: auto;
  }
  .page .connect_today:after {
    background: url(https://amarapay.pro/template/image/connect_today_logos_mob.png) no-repeat center
      center/cover;
    width: 640px;
    height: 206px;
  }
  .page .connect_today .mw {
    padding: 48px 20px;
  }
  .page .connect_today .mw .cont .m_title {
    margin-bottom: 24px;
    max-width: 260px;
  }
  .page .footer:after {
    background: url(https://amarapay.pro/template/image/footer_blur_mob.png) no-repeat center center/cover;
  }
  .page .footer .mw {
    padding: 44px 20px;
  }
  .page .footer .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page .footer .mw .cont .left_side {
    width: 100%;
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .left_side .logo {
    margin-bottom: 14px;
  }
  .page .footer .mw .cont .left_side p {
    margin-bottom: 14px;
  }
  .page .footer .mw .cont .quick_links {
    margin-right: 20px;
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .quick_links .quick_links_title {
    margin-bottom: 32px;
  }
  .page2 .header .mw {
    padding: 15px 20px;
  }
  .page2 .header .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page2 .tariffs_for_accepting_payments .mw,
  .page2 .what_can_affect_your_tariff .mw {
    padding: 32px 20px 64px;
  }
  .page2 .what_can_affect_your_tariff .mw .m_title .h2 {
    text-align: center;
  }
  .page2 .what_can_affect_your_tariff .mw .cont {
    max-width: 994px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li {
    padding: 24px 30px 28px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 10px 24px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li:last-child {
    margin-bottom: 0;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon {
    width: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon img {
    width: 100%;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgba(20, 20, 22, 0.8);
  }
  .page2 .tariffs_for_accepting_payments .mw .m_title,
  .page2 .withdrawal_rates .mw .m_title {
    margin-bottom: 32px;
  }
  .page2 .tariffs_for_accepting_payments .mw .m_title .h2,
  .page2 .withdrawal_rates .mw .m_title .h2 {
    text-align: center;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont,
  .page2 .withdrawal_rates .mw .cont {
    padding: 24px 14px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line,
  .page2 .withdrawal_rates .mw .cont .line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos,
  .page2 .withdrawal_rates .mw .cont .line .logos {
    width: 100%;
    min-width: 300px;
    margin-right: 0;
    margin-bottom: 24px;
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
    -ms-flex-order: -2;
    order: -2;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul,
  .page2 .withdrawal_rates .mw .cont .line .logos ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    min-width: 48px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li img,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li img {
    width: 100%;
    height: auto;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc,
  .page2 .withdrawal_rates .mw .cont .line .desc {
    margin-right: 0;
    min-width: auto;
    width: 60%;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc .h5,
  .page2 .withdrawal_rates .mw .cont .line .desc .h5 {
    font-size: 16px;
    line-height: 20px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc p,
  .page2 .withdrawal_rates .mw .cont .line .desc p {
    font-size: 14px;
    line-height: 21px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .percent,
  .page2 .withdrawal_rates .mw .cont .line .percent {
    min-width: 102px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    width: 30%;
    margin-right: 20px;
  }
  .page2 .withdrawal_rates .mw {
    padding: 64px 20px 80px;
  }
  .page2 .withdrawal_rates .mw .top_desc {
    margin-bottom: 44px;
  }
  .page2 .withdrawal_rates .mw .top_desc .minimum {
    font-size: 13px;
    line-height: 25px;
  }
  .page2 .about {
    background: url(https://amarapay.pro/template/image/about_bg_mob.png) no-repeat center center/cover;
  }
  .page2 .about .mw {
    padding: 32px 20px 60px;
  }
  .page2 .about .mw .m_title {
    margin-bottom: 18px;
  }
  .page2 .about .mw .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .about .mw p {
    font-size: 15px;
    line-height: 25px;
  }
  .page2 .about_benefits {
    margin-top: -40px;
  }
  .page2 .about_benefits .mw .cont {
    padding: 0;
  }
  .page2 .about_benefits .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .about_benefits .mw .cont ul li {
    height: auto;
    padding: 24px 16px;
    width: 100%;
    border-left: none;
    border-bottom: 2px solid #f8f8f8;
  }
  .page2 .about_benefits .mw .cont ul li:first-child {
    border-left: 0;
    padding: 24px 16px;
  }
  .page2 .about_benefits .mw .cont ul li .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  .page2 .about_benefits .mw .cont ul li p {
    font-size: 14px;
    line-height: 21px;
  }
  .page2 .contacts_info .mw {
    padding: 48px 20px 100px;
  }
  .page2 .contacts_info .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .contacts_info .mw .cont .left_side {
    width: 100%;
    padding: 24px 18px;
    padding-bottom: 0;
  }
  .page2 .contacts_info .mw .cont .left_side .row {
    margin-bottom: 32px;
  }
  .page2 .contacts_info .mw .cont .left_side .row:last-child {
    margin-bottom: 32px;
  }
  .page2 .contacts_info .mw .cont .left_side .row .h5 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 12px;
  }
  .page2 .contacts_info .mw .cont .left_side .row ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts_info .mw .cont .left_side .row p {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts_info .mw .cont .right_side {
    width: 100%;
  }
  .page2 .contacts_info .mw .cont .right_side .map {
    height: 230px;
  }
  .page2 .contacts .mw {
    padding: 32px 20px 100px;
  }
  .page2 .contacts .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page2 .contacts .mw .cont .left_side {
    width: 100%;
  }
  .page2 .contacts .mw .cont .left_side .m_title {
    margin-bottom: 18px;
  }
  .page2 .contacts .mw .cont .left_side .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .contacts .mw .cont .left_side .desc p {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts .mw .cont .left_side .btn_c {
    margin-top: 32px;
  }
  .page2 .contacts .mw .cont .right_side {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 64px;
  }
  .page2 .contacts .mw .cont .right_side .card {
    margin: 0 auto;
    padding: 24px 20px;
    max-width: 100%;
  }
  .page2 .contacts .mw .cont .right_side .card .row {
    margin-bottom: 18px;
  }
  .page2 .contacts .mw .cont .right_side .card .row:last-child {
    margin-bottom: 0;
  }
  .page2 .faq .mw {
    padding: 32px 20px 100px;
  }
  .page2 .faq .mw .m_title {
    margin-bottom: 32px;
  }
  .page2 .faq .mw .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .faq .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page2 .faq .mw .cont ul li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .page2 .faq .mw .cont ul li:last-child {
    margin-bottom: 0;
  }
  .page2 .faq .mw .cont ul li a {
    padding: 24px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page2 .faq .mw .cont ul li a:hover {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .page2 .faq .mw .cont ul li a .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    min-width: 36px;
    margin-right: 12px;
  }
  .page2 .how_connect .mw {
    padding: 32px 20px 100px;
  }
  .page2 .how_connect .mw .top_line {
    margin-bottom: 32px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .how_connect .mw .top_line .back {
    margin-bottom: 12px;
  }
  .page2 .how_connect .mw .top_line .m_title {
    margin-bottom: 0;
    width: 100%;
  }
  .page2 .how_connect .mw .top_line .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .how_connect .mw .accordion {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page2 .how_connect .mw .accordion .accordion-item {
    width: 100%;
    margin-bottom: 18px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-title {
    font-size: 15px;
    line-height: 23px;
    padding: 24px 18px;
    padding-right: 60px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-content {
    display: none;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont {
    padding: 24px 18px 18px;
    min-height: auto;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont
    p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .page .header {
    height: 60px;
  }
  .page .header .mw {
    padding: 30px 20px 0;
  }
  .page .header .mw .cont .left_side .o_xs_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 24px;
    margin-right: 12px;
  }
  .page .header .mw .cont .left_side .logo {
    width: auto;
  }
  .page .header .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page .header .mw .cont .left_side .nav {
    display: none;
  }
  .page .header .mw .cont .right_side .btn_login {
    width: auto;
    height: auto;
    margin-right: 0;
  }
  .page .header .mw .cont .right_side .btn_c {
    display: none;
  }
  .page .sticky {
    height: 60px;
  }
  .page .sticky .mw {
    padding: 15px 20px;
  }
  .page .sticky .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page .header_offset {
    padding-top: 60px;
  }
  .page .main .main_cont .mw {
    padding: 48px 20px 0;
  }
  .page .main .main_cont .mw .cont .left_side {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .h1 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 24px;
    max-width: 550px;
  }
  .page .main .main_cont .mw .cont .left_side p {
    max-width: 400px;
  }
  .page .main .main_cont .mw .cont .left_side .line {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .line .btn_c {
    margin-right: 20px;
    width: 100%;
    max-width: 260px;
  }
  .page .main .main_cont .mw .cont .left_side .line .btn_c .btn_m {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .right_side {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .right_side .main_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
  }
  .page .main .main_cont .mw .cont .right_side .main_img img {
    width: 120%;
    max-width: 560px;
    margin-right: -10%;
  }
  .page .connection_request {
    margin-top: -70px;
  }
  .page .connection_request .mw {
    padding: 0 20px;
  }
  .page .connection_request .mw .cont {
    height: auto;
    padding: 32px 18px 48px;
  }
  .page .connection_request .mw .cont .h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  .page .connection_request .mw .cont form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page .connection_request .mw .cont form .inp {
    margin: 0 10px 18px;
  }
  .page .connection_request .mw .cont form .btn_c {
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page .connection_request .mw .cont form .btn_c .btn_m {
    max-width: 330px;
    width: 100%;
  }
  .page .xs_menu {
    display: block;
  }
  .page .benefits .mw {
    padding: 64px 0;
  }
  .page .benefits .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .benefits .mw .cont .benefit_card {
    width: 100%;
    max-width: 100%;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 32px;
    height: auto;
    margin-bottom: 35px;
    padding-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card .top_label {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card p {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card .img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    position: relative;
  }
  .page .benefits .mw .cont .benefit_card4,
  .page .benefits .mw .cont .benefit_card5 {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-right: 24px;
    margin-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card4 {
    margin-bottom: 32px;
  }
  .page .m_title {
    margin-bottom: 32px;
  }
  .page .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page .integration .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page .integration .mw .cont ul li {
    width: 100%;
    max-width: 330px;
    margin: 0 10px 24px;
  }
  .page .integration .mw .cont ul li:last-child {
    margin-bottom: 0;
  }
  .page .favorable_rates .mw {
    padding: 48px 20px 64px;
  }
  .page .favorable_rates .mw .m_title {
    margin-bottom: 48px;
  }
  .page .favorable_rates .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .favorable_rates .mw .cont .rate_card {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 24px;
    padding: 24px 18px;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child {
    margin-bottom: 0;
  }
  .page .favorable_rates .mw .cont .rate_card .h5 {
    margin-bottom: 24px;
  }
  .page .favorable_rates .mw .cont .rate_card p {
    min-height: auto;
  }
  .page .connect_today:after {
    background: url(https://amarapay.pro/template/image/connect_today_logos_mob.png) no-repeat center
      center/cover;
    width: 640px;
    height: 206px;
  }
  .page .connect_today .mw {
    padding: 48px 20px;
  }
  .page .connect_today .mw .cont .m_title {
    margin-bottom: 24px;
    max-width: 260px;
  }
  .page .footer:after {
    background: url(https://amarapay.pro/template/image/footer_blur_mob.png) no-repeat center center/cover;
  }
  .page .footer .mw {
    padding: 44px 20px;
  }
  .page .footer .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page .footer .mw .cont .left_side {
    width: 100%;
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .left_side .logo {
    margin-bottom: 14px;
  }
  .page .footer .mw .cont .left_side p {
    margin-bottom: 14px;
  }
  .page .footer .mw .cont .quick_links {
    margin-right: 20px;
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .quick_links .quick_links_title {
    margin-bottom: 32px;
  }
  .page2 .header .mw {
    padding: 15px 20px;
  }
  .page2 .header .mw .cont .left_side .logo a {
    font-size: 24px;
    line-height: 29px;
  }
  .page2 .tariffs_for_accepting_payments .mw,
  .page2 .what_can_affect_your_tariff .mw {
    padding: 40px 20px 64px;
  }
  .page2 .what_can_affect_your_tariff .mw .m_title .h2 {
    text-align: center;
  }
  .page2 .what_can_affect_your_tariff .mw .cont {
    max-width: 994px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li {
    padding: 24px 30px 28px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 330px;
    margin: 0 10px 24px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li:last-child {
    margin-bottom: 0;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon {
    width: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon img {
    width: 100%;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgba(20, 20, 22, 0.8);
  }
  .page2 .tariffs_for_accepting_payments .mw .m_title,
  .page2 .withdrawal_rates .mw .m_title {
    margin-bottom: 32px;
  }
  .page2 .tariffs_for_accepting_payments .mw .m_title .h2,
  .page2 .withdrawal_rates .mw .m_title .h2 {
    text-align: center;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont,
  .page2 .withdrawal_rates .mw .cont {
    padding: 24px 14px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line,
  .page2 .withdrawal_rates .mw .cont .line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos,
  .page2 .withdrawal_rates .mw .cont .line .logos {
    width: 100%;
    min-width: 300px;
    margin-right: 0;
    margin-bottom: 24px;
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
    -ms-flex-order: -2;
    order: -2;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul,
  .page2 .withdrawal_rates .mw .cont .line .logos ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    min-width: 48px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li img,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li img {
    width: 100%;
    height: auto;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc,
  .page2 .withdrawal_rates .mw .cont .line .desc {
    margin-right: 0;
    min-width: auto;
    width: 60%;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc .h5,
  .page2 .withdrawal_rates .mw .cont .line .desc .h5 {
    font-size: 16px;
    line-height: 20px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc p,
  .page2 .withdrawal_rates .mw .cont .line .desc p {
    font-size: 14px;
    line-height: 21px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .percent,
  .page2 .withdrawal_rates .mw .cont .line .percent {
    min-width: 102px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    width: 30%;
    margin-right: 20px;
    max-width: 102px;
  }
  .page2 .withdrawal_rates .mw {
    padding: 64px 20px 80px;
  }
  .page2 .withdrawal_rates .mw .top_desc {
    margin-bottom: 44px;
  }
  .page2 .withdrawal_rates .mw .top_desc .minimum {
    font-size: 13px;
    line-height: 25px;
  }
  .page2 .about {
    background: url(https://amarapay.pro/template/image/about_bg_mob.png) no-repeat center center/cover;
  }
  .page2 .about .mw {
    padding: 44px 20px 70px;
  }
  .page2 .about .mw .m_title {
    margin-bottom: 24px;
  }
  .page2 .about .mw .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .about .mw p {
    font-size: 15px;
    line-height: 25px;
  }
  .page2 .about_benefits {
    margin-top: -40px;
  }
  .page2 .about_benefits .mw .cont {
    padding: 0;
  }
  .page2 .about_benefits .mw .cont ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .about_benefits .mw .cont ul li {
    height: auto;
    padding: 24px 30px;
    width: 100%;
    border-left: none;
    border-bottom: 2px solid #f8f8f8;
  }
  .page2 .about_benefits .mw .cont ul li:first-child {
    border-left: 0;
    padding: 24px 30px;
  }
  .page2 .about_benefits .mw .cont ul li .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  .page2 .about_benefits .mw .cont ul li p {
    font-size: 14px;
    line-height: 21px;
  }
  .page2 .contacts_info .mw {
    padding: 64px 20px 100px;
  }
  .page2 .contacts_info .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .contacts_info .mw .cont .left_side {
    width: 100%;
    padding: 30px 24px;
    padding-bottom: 0;
  }
  .page2 .contacts_info .mw .cont .left_side .row {
    margin-bottom: 32px;
  }
  .page2 .contacts_info .mw .cont .left_side .row:last-child {
    margin-bottom: 32px;
  }
  .page2 .contacts_info .mw .cont .left_side .row .h5 {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 12px;
  }
  .page2 .contacts_info .mw .cont .left_side .row ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts_info .mw .cont .left_side .row p {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts_info .mw .cont .right_side {
    width: 100%;
  }
  .page2 .contacts_info .mw .cont .right_side .map {
    height: 300px;
  }
  .page2 .contacts .mw {
    padding: 50px 20px 100px;
  }
  .page2 .contacts .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page2 .contacts .mw .cont .left_side {
    width: 100%;
  }
  .page2 .contacts .mw .cont .left_side .m_title {
    margin-bottom: 18px;
  }
  .page2 .contacts .mw .cont .left_side .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .contacts .mw .cont .left_side .desc p {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts .mw .cont .left_side .btn_c {
    margin-top: 32px;
  }
  .page2 .contacts .mw .cont .right_side {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 64px;
  }
  .page2 .contacts .mw .cont .right_side .card {
    margin: 0 auto;
    padding: 24px 20px;
    max-width: 100%;
  }
  .page2 .contacts .mw .cont .right_side .card .row {
    margin-bottom: 18px;
  }
  .page2 .contacts .mw .cont .right_side .card .row:last-child {
    margin-bottom: 0;
  }
  .page2 .faq .mw {
    padding: 50px 20px 100px;
  }
  .page2 .faq .mw .m_title {
    margin-bottom: 32px;
  }
  .page2 .faq .mw .cont ul li {
    width: 48%;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .page2 .faq .mw .cont ul li a {
    padding: 24px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page2 .faq .mw .cont ul li a:hover {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .page2 .faq .mw .cont ul li a .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    min-width: 36px;
    margin-right: 12px;
  }
  .page2 .faq .mw .cont ul li a span {
    font-size: 16px;
    line-height: 20px;
  }
  .page2 .how_connect .mw {
    padding: 44px 20px 120px;
  }
  .page2 .how_connect .mw .top_line {
    margin-bottom: 32px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .how_connect .mw .top_line .back {
    margin-bottom: 12px;
  }
  .page2 .how_connect .mw .top_line .m_title {
    margin-bottom: 0;
    width: 100%;
  }
  .page2 .how_connect .mw .top_line .m_title .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .page2 .how_connect .mw .accordion {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page2 .how_connect .mw .accordion .accordion-item {
    width: 100%;
    margin-bottom: 18px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-title {
    font-size: 15px;
    line-height: 23px;
    padding: 24px 18px;
    padding-right: 60px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-content {
    display: none;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont {
    padding: 24px 18px 18px;
    min-height: auto;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont
    p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page .header {
    height: 70px;
  }
  .page .header .mw {
    padding: 30px 20px 0;
  }
  .page .header .mw .cont .left_side .logo {
    width: auto;
    margin-right: 42px;
  }
  .page .header .mw .cont .left_side .logo a {
    font-size: 18px;
    line-height: 22px;
  }
  .page .header .mw .cont .left_side .nav ul li {
    margin-right: 48px;
  }
  .page .header .mw .cont .left_side .nav ul li a {
    font-size: 14px;
    line-height: 17px;
  }
  .page .header .mw .cont .left_side .nav ul li p {
    font-size: 14px;
    line-height: 17px;
  }
  .page .header .mw .cont .right_side .btn_login {
    width: auto;
    height: auto;
    margin-right: 0;
  }
  .page .header .mw .cont .right_side .btn_c {
    display: none;
  }
  .page .sticky {
    height: 70px;
  }
  .page .sticky .mw {
    padding: 15px 20px;
  }
  .page .sticky .mw .cont .left_side .logo {
    width: auto;
    margin-right: 42px;
  }
  .page .sticky .mw .cont .left_side .logo a {
    font-size: 18px;
    line-height: 22px;
  }
  .page .sticky .mw .cont .left_side .nav ul li {
    margin-right: 48px;
  }
  .page .sticky .mw .cont .left_side .nav ul li a {
    font-size: 14px;
    line-height: 17px;
  }
  .page .sticky .mw .cont .left_side .nav ul li p {
    font-size: 14px;
    line-height: 17px;
  }
  .page .header_offset {
    padding-top: 70px;
  }
  .page .main .main_cont .mw {
    padding: 48px 20px 0;
  }
  .page .main .main_cont .mw .cont .left_side {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .left_side .h1 {
    font-size: 56px;
    line-height: 68px;
    margin-bottom: 30px;
    max-width: 550px;
  }
  .page .main .main_cont .mw .cont .left_side p {
    max-width: 545px;
  }
  .page .main .main_cont .mw .cont .right_side {
    width: 100%;
  }
  .page .main .main_cont .mw .cont .right_side .main_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page .main .main_cont .mw .cont .right_side .main_img img {
    width: 100%;
    max-width: 600px;
    margin-top: 10px;
  }
  .page .connection_request {
    margin-top: -110px;
  }
  .page .connection_request .mw {
    padding: 0 20px;
  }
  .page .connection_request .mw .cont {
    height: auto;
    padding: 48px 60px 48px;
  }
  .page .connection_request .mw .cont .h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 48px;
  }
  .page .connection_request .mw .cont form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .page .connection_request .mw .cont form .inp {
    margin: 0 0 15px;
    width: 48%;
    max-width: 100%;
  }
  .page .connection_request .mw .cont form .btn_c {
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page .connection_request .mw .cont form .btn_c .btn_m {
    max-width: 100%;
    width: 100%;
  }
  .page .benefits .mw {
    padding: 100px 20px;
  }
  .page .benefits .mw .cont .benefit_card {
    width: 48%;
    padding: 32px;
    max-width: 100%;
    height: auto;
    margin-bottom: 35px;
    padding-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card.benefit_card3 {
    display: none;
  }
  .page .benefits .mw .cont .benefit_card .top_label {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card p {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card .img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    position: relative;
  }
  .page .benefits .mw .cont .benefit_card4,
  .page .benefits .mw .cont .benefit_card5 {
    width: 48%;
    max-width: 100%;
    height: auto;
    padding-right: 24px;
    margin-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card4 .img {
    position: absolute;
    bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card5 .img {
    width: 460px;
    max-width: 100%;
  }
  .page .m_title {
    margin-bottom: 64px;
  }
  .page .m_title .h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .page .integration .mw .cont ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page .integration .mw .cont ul li {
    width: 100%;
    max-width: 330px;
    margin: 0 17px 24px;
  }
  .page .favorable_rates .mw {
    padding: 76px 20px 64px;
  }
  .page .favorable_rates .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page .favorable_rates .mw .cont .rate_card {
    width: 48%;
    margin: 0 auto 32px;
    padding: 32px;
    max-width: 100%;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child {
    margin-bottom: 0;
  }
  .page .favorable_rates .mw .cont .rate_card .h5 {
    margin-bottom: 30px;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child .top_line {
    margin-right: 72px;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child .bottom_line {
    width: 100%;
  }
  .page .favorable_rates .mw .cont .rate_card:last-child .bottom_line p {
    min-height: auto;
    margin-bottom: 32px;
    max-width: 360px;
  }
  .page .connect_today:after {
    width: 100%;
    height: 206px;
  }
  .page .connect_today .mw {
    padding: 78px 20px 105px;
  }
  .page .connect_today .mw .cont .m_title {
    margin-bottom: 32px;
  }
  .page .footer:after {
    background: url(https://amarapay.pro/template/image/footer_blur_mob.png) no-repeat center center/cover;
  }
  .page .footer .mw {
    padding: 44px 20px;
  }
  .page .footer .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page .footer .mw .cont .left_side {
    width: 224px;
  }
  .page .footer .mw .cont .left_side .logo {
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .left_side p {
    margin-bottom: 44px;
  }
  .page .footer .mw .cont .quick_links {
    margin-right: 30px;
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .quick_links:last-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
  }
  .page .footer .mw .cont .quick_links:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .page .footer .mw .cont .quick_links:nth-child(3) {
    margin-left: 224px;
  }
  .page .footer .mw .cont .quick_links .quick_links_title {
    margin-bottom: 32px;
  }
  .page2 .header .mw {
    padding: 15px 20px;
  }
  .page2 .header .mw .cont .left_side .logo {
    width: auto;
    margin-right: 42px;
  }
  .page2 .header .mw .cont .left_side .logo a {
    font-size: 18px;
    line-height: 22px;
  }
  .page2 .header .mw .cont .left_side .nav ul li {
    margin-right: 48px;
  }
  .page2 .header .mw .cont .left_side .nav ul li a {
    font-size: 14px;
    line-height: 17px;
  }
  .page2 .header .mw .cont .left_side .nav ul li p {
    font-size: 14px;
    line-height: 17px;
  }
  .page2 .tariffs_for_accepting_payments .mw,
  .page2 .what_can_affect_your_tariff .mw {
    padding: 64px 20px 64px;
  }
  .page2 .what_can_affect_your_tariff .mw .m_title {
    margin-bottom: 48px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li {
    padding: 24px 30px 28px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon {
    width: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li .icon img {
    width: 100%;
  }
  .page2 .what_can_affect_your_tariff .mw .cont ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: rgba(20, 20, 22, 0.8);
  }
  .page2 .tariffs_for_accepting_payments .mw .m_title,
  .page2 .withdrawal_rates .mw .m_title {
    margin-bottom: 48px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont,
  .page2 .withdrawal_rates .mw .cont {
    padding: 24px 32px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line,
  .page2 .withdrawal_rates .mw .cont .line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos,
  .page2 .withdrawal_rates .mw .cont .line .logos {
    min-width: 220px;
    margin-right: 0;
    width: 220px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul,
  .page2 .withdrawal_rates .mw .cont .line .logos ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    min-width: 48px;
    margin-bottom: 12px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .logos ul li img,
  .page2 .withdrawal_rates .mw .cont .line .logos ul li img {
    width: 100%;
    height: auto;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc,
  .page2 .withdrawal_rates .mw .cont .line .desc {
    margin-right: 0;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc .h5,
  .page2 .withdrawal_rates .mw .cont .line .desc .h5 {
    font-size: 18px;
    line-height: 22px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .desc p,
  .page2 .withdrawal_rates .mw .cont .line .desc p {
    font-size: 14px;
    line-height: 19px;
    max-width: 220px;
  }
  .page2 .tariffs_for_accepting_payments .mw .cont .line .percent,
  .page2 .withdrawal_rates .mw .cont .line .percent {
    min-width: 102px;
    max-width: 102px;
  }
  .page2 .withdrawal_rates .mw {
    padding: 48px 20px 100px;
  }
  .page2 .withdrawal_rates .mw .top_desc {
    margin-bottom: 48px;
  }
  .page2 .about {
    background-size: cover;
  }
  .page2 .about .mw {
    padding: 64px 20px 184px;
  }
  .page2 .about .mw .m_title {
    margin-bottom: 18px;
  }
  .page2 .about .mw .m_title .h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .page2 .about .mw p {
    font-size: 14px;
    line-height: 24px;
    max-width: 520px;
    margin: 0 auto;
  }
  .page2 .about_benefits {
    margin-top: -100px;
  }
  .page2 .about_benefits .mw .cont {
    padding: 0 24px;
  }
  .page2 .about_benefits .mw .cont ul li {
    height: auto;
    padding: 24px 0;
    width: 100%;
    padding-left: 15px;
  }
  .page2 .about_benefits .mw .cont ul li .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  .page2 .about_benefits .mw .cont ul li p {
    font-size: 14px;
    line-height: 21px;
  }
  .page2 .contacts_info .mw {
    padding: 32px 20px 140px;
  }
  .page2 .contacts_info .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page2 .contacts_info .mw .cont .left_side {
    width: 100%;
    padding: 48px;
    padding-bottom: 0;
  }
  .page2 .contacts_info .mw .cont .left_side .row {
    margin-bottom: 48px;
    max-width: 420px;
  }
  .page2 .contacts_info .mw .cont .left_side .row:last-child {
    margin-bottom: 48px;
  }
  .page2 .contacts_info .mw .cont .left_side .row .h5 {
    font-size: 24px;
    line-height: 29px;
  }
  .page2 .contacts_info .mw .cont .left_side .row ul li {
    font-size: 15px;
    line-height: 25px;
  }
  .page2 .contacts_info .mw .cont .left_side .row p {
    font-size: 15px;
    line-height: 25px;
  }
  .page2 .contacts_info .mw .cont .right_side {
    width: 100%;
  }
  .page2 .contacts_info .mw .cont .right_side .map {
    height: 330px;
  }
  .page2 .contacts .mw {
    padding: 64px 20px 200px;
  }
  .page2 .contacts .mw .cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .page2 .contacts .mw .cont .left_side {
    width: 50%;
  }
  .page2 .contacts .mw .cont .left_side .m_title {
    margin-bottom: 20px;
  }
  .page2 .contacts .mw .cont .left_side .m_title .h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .page2 .contacts .mw .cont .left_side .desc p {
    font-size: 14px;
    line-height: 24px;
  }
  .page2 .contacts .mw .cont .left_side .btn_c {
    margin-top: 42px;
  }
  .page2 .contacts .mw .cont .right_side {
    width: 50%;
    padding-left: 30px;
    height: 350px;
  }
  .page2 .contacts .mw .cont .right_side .card {
    padding: 24px 20px;
    max-width: 100%;
  }
  .page2 .contacts .mw .cont .right_side .card .row {
    margin-bottom: 20px;
  }
  .page2 .contacts .mw .cont .right_side .card .row:last-child {
    margin-bottom: 0;
  }
  .page2 .faq .mw {
    padding: 64px 20px 200px;
  }
  .page2 .faq .mw .m_title {
    margin-bottom: 50px;
  }
  .page2 .faq .mw .cont ul li {
    width: 48%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .page2 .faq .mw .cont ul li a {
    padding: 24px;
  }
  .page2 .faq .mw .cont ul li a .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .page2 .how_connect .mw {
    padding: 64px 20px 110px;
  }
  .page2 .how_connect .mw .top_line {
    margin-bottom: 30px;
  }
  .page2 .how_connect .mw .accordion .accordion-item {
    margin-bottom: 24px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-title {
    font-size: 15px;
    line-height: 23px;
    padding: 24px 18px;
    padding-right: 60px;
  }
  .page2 .how_connect .mw .accordion .accordion-item .accordion-item-content {
    display: none;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont {
    padding: 24px 18px 18px;
    min-height: auto;
  }
  .page2
    .how_connect
    .mw
    .accordion
    .accordion-item
    .accordion-item-content
    .accordion-item-content_cont
    p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page .header {
    height: 80px;
  }
  .page .header .mw {
    padding: 30px 20px 0;
  }
  .page .header .mw .cont .left_side .logo {
    width: auto;
    margin-right: 50px;
  }
  .page .header .mw .cont .left_side .logo a {
    font-size: 20px;
    line-height: 24px;
  }
  .page .header .mw .cont .left_side .nav ul li {
    margin-right: 58px;
  }
  .page .header .mw .cont .left_side .nav ul li a {
    font-size: 15px;
    line-height: 18px;
  }
  .page .header .mw .cont .left_side .nav ul li p {
    font-size: 15px;
    line-height: 18px;
  }
  .page .header .mw .cont .right_side .btn_login {
    margin-right: 18px;
  }
  .page .sticky {
    height: 80px;
  }
  .page .sticky .mw {
    padding: 15px 20px;
  }
  .page .sticky .mw .cont .left_side .logo {
    width: auto;
    margin-right: 50px;
  }
  .page .sticky .mw .cont .left_side .logo a {
    font-size: 20px;
    line-height: 24px;
  }
  .page .sticky .mw .cont .left_side .nav ul li {
    margin-right: 58px;
  }
  .page .sticky .mw .cont .left_side .nav ul li a {
    font-size: 15px;
    line-height: 18px;
  }
  .page .sticky .mw .cont .left_side .nav ul li p {
    font-size: 15px;
    line-height: 18px;
  }
  .page .header_offset {
    padding-top: 80px;
  }
  .page .main .main_cont .mw {
    padding: 100px 20px 200px;
  }
  .page .main .main_cont .mw .cont .left_side .h1 {
    font-size: 50px;
    line-height: 68px;
    margin-bottom: 30px;
    max-width: 550px;
  }
  .page .main .main_cont .mw .cont .left_side p {
    max-width: 545px;
  }
  .page .main .main_cont .mw .cont .right_side .main_img img {
    margin-top: 20px;
  }
  .page .connection_request {
    margin-top: -110px;
  }
  .page .connection_request .mw {
    padding: 0 20px;
  }
  .page .connection_request .mw .cont {
    height: auto;
    padding: 48px 60px 48px;
  }
  .page .connection_request .mw .cont .h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 48px;
  }
  .page .benefits .mw {
    padding: 100px 20px;
  }
  .page .benefits .mw .cont .benefit_card {
    height: auto;
    margin-bottom: 35px;
    width: 32%;
    padding: 32px 16px 0;
  }
  .page .benefits .mw .cont .benefit_card .top_label {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card p {
    margin-bottom: 18px;
  }
  .page .benefits .mw .cont .benefit_card .img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    position: relative;
  }
  .page .benefits .mw .cont .benefit_card4,
  .page .benefits .mw .cont .benefit_card5 {
    width: 48%;
    max-width: 100%;
    height: auto;
    padding-right: 24px;
    margin-bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card4 .img {
    position: absolute;
    bottom: 0;
  }
  .page .benefits .mw .cont .benefit_card5 .img {
    width: 460px;
    max-width: 100%;
  }
  .page .m_title {
    margin-bottom: 64px;
  }
  .page .m_title .h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .page .integration .mw .cont ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page .integration .mw .cont ul li {
    width: 100%;
    max-width: 330px;
    margin: 0 17px 24px;
  }
  .page .favorable_rates .mw {
    padding: 76px 20px 100px;
  }
  .page .favorable_rates .mw .cont .rate_card p {
    min-height: 250px;
  }
  .page .connect_today:after {
    width: 100%;
    height: 206px;
  }
  .page .connect_today .mw {
    padding: 78px 20px 105px;
  }
  .page .connect_today .mw .cont .m_title {
    margin-bottom: 32px;
  }
  .page .footer:after {
    background: url(https://amarapay.pro/template/image/footer_blur_mob.png) no-repeat center center/cover;
  }
  .page .footer .mw {
    padding: 44px 20px;
  }
  .page .footer .mw .cont .left_side {
    width: 224px;
  }
  .page .footer .mw .cont .left_side .logo {
    margin-bottom: 32px;
  }
  .page .footer .mw .cont .left_side p {
    margin-bottom: 44px;
  }
  .page .footer .mw .cont .quick_links {
    margin-right: 30px;
  }
  .page .footer .mw .cont .quick_links:last-child {
    margin-right: 0;
  }
  .page2 .header .mw {
    padding: 15px 20px;
  }
  .page2 .header .mw .cont .left_side .logo {
    width: auto;
    margin-right: 50px;
  }
  .page2 .header .mw .cont .left_side .logo a {
    font-size: 20px;
    line-height: 24px;
  }
  .page2 .header .mw .cont .left_side .nav ul li {
    margin-right: 45px;
  }
  .page2 .header .mw .cont .left_side .nav ul li a {
    font-size: 15px;
    line-height: 18px;
  }
  .page2 .header .mw .cont .left_side .nav ul li p {
    font-size: 15px;
    line-height: 18px;
  }
  .page2 .faq .mw {
    padding: 64px 20px 200px;
  }
  .page2 .faq .mw .m_title {
    margin-bottom: 50px;
  }
  .page2 .faq .mw .cont ul li {
    width: 48%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .page2 .faq .mw .cont ul li a {
    padding: 24px;
  }
  .page2 .faq .mw .cont ul li a .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

.questions-block {
  width: 100%;
    background: -webkit-gradient( linear, left top, left bottom, from(#fff), to(#fff) );
    background: -o-linear-gradient(top, #fff 0, #fff 100%);
    background: linear-gradient(
180deg
, #fff 0, #fff 100%);
    padding: 30px;
    display: block;
    margin-top: 40px;
}

.questions-block p {
  margin-top: 15px;
}


