@charset "UTF-8";
.button--primary {
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  background-color: #5c40e6;
  border-color: #5c40e6;
}
.button--primary:hover {
  color: #5c40e6;
}
.button--icon--none::after {
  content: "";
  display: none;
}

.styled-input {
  min-width: 0;
  height: 48px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 0.88;
  color: #71737b;
  border: solid 1px #aeb0b9;
}

.custom-select {
  position: relative;
  height: 48px;
  font-size: 16px;
  line-height: 0.88;
  color: #71737b;
  border: solid 1px #aeb0b9;
  user-select: none;
  transition: all.2s ease;
}
.custom-select__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  cursor: pointer;
}
.custom-select__box::after {
  content: "";
  width: 14px;
  height: 8px;
  background-image: url("../images/ic-down-arrow.svg");
}
.custom-select__items {
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  display: none;
  width: 100%;
  padding: 10px 0;
  box-sizing: content-box;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #d6d7d8;
  background-color: #ffffff;
}
.custom-select__option {
  width: 100%;
  height: 36px;
  padding: 0 15px;
  box-sizing: border-box;
  line-height: 2;
  color: #555864;
  cursor: pointer;
  transition: all.2s ease;
}
.custom-select__option:hover {
  background-color: #f7f7f7;
  color: #5c40e6;
}
/* CHANGE */
.custom-select--open {
  border-color: #5c40e6;
  z-index: 100;
}
/* END CHANGE */
.custom-select--open .custom-select__items {
  display: block;
}
.custom-select--open .custom-select__box::after {
  background-image: url("../images/ic-up-arrow-blue.svg");
}

.site-header .navbar-menu-option {
  position: relative;
}
.site-header .navbar-menu-option__arrow {
  display: none;
}
.site-header .navbar-menu-option__dropdown-container {
  opacity: 0;
  visibility: hidden;
}
.site-header .navbar-menu-option__dropdown {
  display: inline-block;
  margin: 0;
  padding: 16px 22px 0;
  background: #313139;
  overflow: hidden;
}
.site-header .navbar-menu-option__dropdown a {
  display: block;
  margin-right: 0;
  margin-bottom: 16px;
  cursor: pointer;
}
/* CHANGE */
.site-header .navbar-menu-option__dropdown a:hover {
  color: #109aed;
}
@media screen and (min-width: 992px) {
  .site-header .navbar-menu-option__dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: 0.3s;
  }
  .site-header .navbar-menu-option:hover .navbar-menu-option__dropdown-container {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: opacity 0.3s ease 0s, -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
    transition: transform 0.5s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.5s ease 0s;
    opacity: 1;
    visibility: visible;
    transition: visibility 0;
  }
}
@media screen and (max-width: 991.98px) {
  .site-header .navbar-menu-option__title-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
  }
  .site-header .navbar-menu-option__arrow {
    position: absolute;
    top: 50%;
    left: calc(100%);
    transform: translateY(-50%) rotate(0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .site-header .navbar-menu-option__arrow svg path {
    fill: white;
  }
  .site-header .navbar-menu-option__dropdown-container {
    max-height: 0;
    transition: max-height 0.3s 0.3s;
  }
  .site-header .navbar-menu-option__dropdown {
    text-align: center;
    background: transparent;
  }
  .site-header .navbar-menu-option__dropdown a {
    font-weight: unset;
  }
  .site-header .navbar-menu-option--opened .navbar-menu-option__arrow {
    transform: translateY(-50%) rotate(180deg);
  }
  .site-header .navbar-menu-option--opened .navbar-menu-option__dropdown-container {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }
}

.contact-us .first-banner {
  position: relative;
  padding-top: 125px;
  background-color: #ffffff;
  color: #fff;
  overflow: hidden;
}
.contact-us .first-banner .button {
  width: 220px;
  color: #8a67e6;
  background-color: #ffffff;
  border-color: #ffffff;
}
.contact-us .first-banner .button:after {
  background-image: url("../images/arrow-right-icon-purple.png");
  right: 55px;
}
.contact-us .first-banner .button:hover {
  color: #ffffff;
  background-color: #8a67e6;
  border-color: #8a67e6;
}
.contact-us .first-banner .button:hover:after {
  background-image: url("../images/arrow-right-icon.png");
}
.contact-us .first-banner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.contact-us .first-banner__content {
  position: relative;
  padding: 115px 150px 135px;
}
.contact-us .first-banner__title {
  font-size: 68px;
  font-weight: 900;
  margin-bottom: 35px;
  line-height: 1.15;
}
.contact-us .first-banner__subtitle {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.5;
}
.contact-us .first-banner__subtitle--highlight {
  font-weight: bold;
  color: #34057c;
}
@media screen and (min-width: 1920px) {
  .contact-us .first-banner .button:after {
    right: 2.86vw;
  }
  .contact-us .first-banner__title {
    font-size: 3.54vw;
    margin-bottom: 1.82vw;
  }

  .contact-us .first-banner__subtitle {
    margin-bottom: 1.666vw;
    font-size: 1.25vw;
  }

  .contact-us .first-banner .button {
    min-width: 11.45vw;
  }
  .contact-us .first-banner {
    padding-top: 6.5vw;
  }
  .contact-us .first-banner__content {
    padding: 5.98vw 7.81vw 7.03vw;
  }
}
@media screen and (max-width: 1599px) {
  .contact-us .first-banner__content {
    padding: 85px 135px 135px;
  }
}
@media screen and (max-width: 1439px) {
  .contact-us .first-banner__content {
    padding: 70px 60px 135px;
  }
}
@media screen and (max-width: 1199px) {
  .contact-us .first-banner {
    padding-top: 115px;
  }
}
@media screen and (max-width: 991px) {
  .contact-us .first-banner {
    padding-top: 90px;
  }
  .contact-us .first-banner__content {
    padding: 70px 25px 135px;
  }

  .contact-us .first-banner__subtitle,
  .contact-us .first-banner__title {
    margin-bottom: 20px;
  }
}

/* CHANGE */
.contact-us .contact-section {
  position: relative;
  margin-top: -80px;
  padding: 85px 150px 185px;
  border-radius: 80px 80px 0 0;
  background-color: #ffffff;
}
.contact-us .contact-section__title {
  position: relative;
  width: max-content;
  margin-bottom: 75px;
  font-size: 136px;
  font-weight: 900;
  line-height: 0.97;
  text-decoration: underline;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(81deg, #8066e2 -10%, #7533cc 46%, #4e1380 101%);
}
.contact-us .contact-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 5px;
  background-image: inherit;
}
.contact-us .contact-section__subtitle {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: normal;
  color: #555864;
}
.contact-us .contact-section .contact-form {
  max-width: 1400px;
  margin-bottom: 75px;
}
.contact-us .contact-section .wpcf7-form-control-wrap {
  min-width: 0;
  min-height: 48px;
  font-size: 16px;
  line-height: 0.88;
  color: #71737b;
}
/* END CHANGE */
.contact-us .contact-section .wpcf7-form-control-wrap  .styled-input {
  width: 100%;
}

.contact-us .contact-section .wpcf7-form-control-wrap,
.contact-us .contact-section .contact-form .styled-input {
  margin-right: 16px;
}
.contact-us .contact-section .contact-form .styled-input {
  transition: all.2s ease
}
.contact-us .contact-section .contact-form .styled-input:focus::placeholder,
.contact-us .contact-section .contact-form .styled-input:hover::placeholder,
.contact-us .contact-section .contact-form .styled-input:focus,
.contact-us .contact-section .contact-form .styled-input:hover {
  border-color: #5c40e6;
  color: #5c40e6;
}
/*.contact-us .contact-section .contact-form .styled-input,*/
/*.contact-us .contact-section .contact-form .styled-select,*/
.contact-us .contact-section .wpcf7-form-control-wrap,
.contact-us .contact-section .contact-form .button {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
}
/* CHANGE */
.contact-us .contact-section .contact-form__row-1, .contact-us .contact-section .contact-form__row-2 {
  display: flex;
  align-items: flex-start;
}
/* END CHANGE */
.contact-us .contact-section .contact-form__row-1 {
  margin-bottom: 16px;
}
/*.contact-us .contact-section .contact-form__name,*/
.contact-us .contact-section .wpcf7-form-control-wrap.your-name {
  flex-basis: 273px;
}
/*.contact-us .contact-section .contact-form__phone,*/
.contact-us .contact-section .wpcf7-form-control-wrap.your-phone {
  flex-basis: 170px;
}
/*.contact-us .contact-section .contact-form__email,*/
.contact-us .contact-section .wpcf7-form-control-wrap.your-email {
  flex-basis: 248px;
}
/*.contact-us .contact-section .contact-form__purpose,*/
.contact-us .contact-section .custom-select {
  flex-basis: 200px;
}
/*.contact-us .contact-section .contact-form__message,*/
.contact-us .contact-section .wpcf7-form-control-wrap.message {
  flex-basis: 708px;
}
form .contact-form .wpcf7-not-valid-tip {
  bottom: -15px !important;
}
.contact-us .contact-section .contact-form .button {
  height: 48px;
  flex-basis: 200px;
  font-size: 16px;
  padding: 11px 15px 12px 15px;
}
.contact-us .contact-section__contacts {
  font-size: 33px;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
}
.contact-us .contact-section__contacts--highlight {
  color: #5c40e6;
}
.contact-us .contact-section__contacts .separator {
  white-space: pre;
}
@media screen and (min-width: 1920px) {
  .contact-us .contact-section {
    margin-top: -4.166vw;
    padding: 4.42vw 7.81vw 9.63vw;
    border-radius: 4.166vw 4.166vw 0 0;
  }

  .contact-us .contact-section__title {
    font-size: 7.083vw;
    margin-bottom: 3.9vw;
  }

  .contact-us .contact-section__subtitle {
    font-size: 1.25vw;
    margin-bottom: 2.08vw;
  }

  .styled-input {
    font-size: 0.833vw;
    height: 2.5vw;
    padding: 0.025vw 0.025vw 0.025vw 0.833vw;
  }

  .custom-select {
    height: 2.5vw;
    font-size: 0.833vw;
  }

  .custom-select__box {
    padding: 0.025vw 0.833vw;
  }

  .custom-select__items {
    padding: 0.52vw 0;
  }

  .contact-us .contact-section .contact-form .button {
    height: 2.5vw;
    font-size: 0.833vw;
    padding: 0.572vw 0.78vw 0.625vw 0.78vw;
  }

  .contact-us .contact-section .wpcf7-form-control-wrap, .contact-us .contact-section .contact-form .styled-input {
    margin-right: 0.833vw;
  }

  .contact-us .contact-section .contact-form {
    max-width: 72.92vw;
    margin-bottom: 3.9vw;
  }

  .contact-us .contact-section__contacts {
    font-size: 1.72vw;
  }

  .contact-us .contact-section .custom-select {
    flex-basis: 10.4vw;
  }

  .contact-us .contact-section .contact-form__row-1 {
    margin-bottom: 0.833vw;
  }
}
@media screen and (max-width: 1200px) {

  /* CHANGE */
  .contact-us .contact-section {
    padding: 64px 10% 100px;
    border-radius: 60px;
  }
  /* END CHANGE */
  .contact-us .contact-section__title {
    font-size: 12vw;
  }
}
@media screen and (max-width: 992px) {
  .contact-us .contact-section .contact-form {
    margin-bottom: 45px;
  }
  .contact-us .contact-section .contact-form__row-1, .contact-us .contact-section .contact-form__row-2 {
    flex-direction: column;
    margin-bottom: 0;
  }

  /* CHANGE */
  .contact-us .contact-section .wpcf7-form-control-wrap.your-name,
  .contact-us .contact-section .wpcf7-form-control-wrap.your-phone,
  .contact-us .contact-section .wpcf7-form-control-wrap.your-email,
  .contact-us .contact-section .wpcf7-form-control-wrap.message,
  .contact-us .contact-section .contact-form__row-1 .styled-input,
  .contact-us .contact-section .contact-form__row-1 .custom-select,
  .contact-us .contact-section .contact-form__row-1 .button,
  .contact-us .contact-section .contact-form__row-2 .styled-input,
  .contact-us .contact-section .contact-form__row-2 .custom-select,
  .contact-us .contact-section .contact-form__row-2 .button {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .contact-us .contact-section .contact-form__row-1 .custom-select {
    margin-bottom: 32px;
  }
  /* END CHANGE */
}
@media screen and (max-width: 768px) {
  .contact-us .contact-section__title {
    font-size: 50px;
    margin-bottom: 60px;
  }
  /* CHANGE */
  .contact-us .contact-section {
    padding: 64px 10% 60px;
    border-radius: 30px;
  }
  /* END CHANGE */
  .contact-us .first-banner__content {
    padding: 32px 25px 125px;
  }
  .contact-us .first-banner__title {
    font-size: 36px;
  }
  .contact-us .first-banner__subtitle {
    font-size: 18px;
  }
  .contact-us .contact-section__subtitle, .contact-us .contact-section__contacts {
    font-size: 18px;
  }
}



.our-clients {
  background: #ffffff;
}
.our-clients .first-banner {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.our-clients .first-banner__bg {
  width: 100%;
  min-height: 375px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.our-clients .first-banner__content {
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 45px;
  width: 100%;
  padding: 56px 136px 0;
}
.our-clients .first-banner__rating-icon {
  max-width: 15%;
  margin-bottom: 20px;
}
.our-clients .first-banner__title {
  font-size: 56px;
  font-weight: 900;
}
.our-clients .first-banner__subtitle {
  width: 40%;
  font-size: 16px;
  line-height: 1.5;
}
.our-clients .clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  column-gap: 60px;
  row-gap: 60px;
  padding: 150px 9.375vw;
}
/* CHANGE */
.our-clients .clients-grid .client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0 40px;
  background-color: #ffffff;
  border-radius: 15px 15px 100px 15px;
  transition: all.3s ease !important;
  cursor: pointer;
}
/* END CHANGE */
.our-clients .clients-grid .client-card:hover {
  box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.3);
}
.our-clients .clients-grid .client-card__logo {
  margin: auto 0;
  padding: 30px 15px 15px;
}
/* CHANGE */
.our-clients .clients-grid .client-card__learn-more-container .learn-more {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 25px 40px;
  color: #ffffff;
  background-color: #5c40e6c2;
  background-image: none;
  border-radius: 15px 15px 100px 15px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.our-clients .clients-grid .client-card__learn-more-container .learn-more__info {
  font-size: 16px;
  line-height: 1.5;
}
.our-clients .clients-grid .client-card:hover .learn-more {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s;
}
.our-clients .clients-grid .client-card__button {
  font-size: 29px;
  line-height: 1;
  text-transform: capitalize;
  color: #5c40e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.our-clients .clients-grid .client-card__button:after {
  content: "";
  width: 24px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url('../images/ourClients/arrow-right@2x.png');
  display: inline-block;
  margin-left: 13px;
  margin-top: 5px;
}
.our-clients .clients-grid .client-card__button--dark:after {
  background-image: url('../images/ourClients/arrow-right-white@2x.png');
}
.our-clients .clients-grid .client-card__button--dark {
  color: #ffffff;
}
.our-clients .contact-banner {
  position: relative;
  overflow: hidden;
  padding: 135px 0 160px;
}
.our-clients .contact-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.our-clients .contact-banner__content {
  display: flex;
  max-width: 1460px;
  margin: 0 auto;
  align-items: center;
  padding: 65px 90px;
  color: #ffffff;
  border-radius: 50px;
  position: relative;
  background-color: #6f52e8c2;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.our-clients .contact-banner__content .button {
  padding-left: 47px;
  padding-right: 80px;
}
.our-clients .contact-banner__content .button:after {
  right: 31px;
}
.our-clients .contact-banner__chat-icon {
  margin-right: 48px;
}
.our-clients .contact-banner__text-container {
  width: calc(100% - 265px);
  padding-right: 160px;
}
.our-clients .contact-banner__title {
  margin-bottom: 7px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.05;
}
.our-clients .contact-banner__description {
  font-size: 22px;
  line-height: 1.25;
}
/* CHANGE */
.become-partner .contact-banner__button,
.our-clients .contact-banner__button {
  transition: all.3s ease !important;
}
.our-clients .contact-banner__button {
  margin-left: auto;
  padding: 16px 25px;
  font-size: 16px;
  line-height: 0.88;
  font-weight: 900;
  border-width: 2px;
  white-space: nowrap;
}
/* END CHANGE */
@media screen and (max-width: 1400px) {
  .our-clients .first-banner__content {
    padding: 28px 10% 0;
  }
}
@media screen and (max-width: 1200px) {
  .our-clients .first-banner__rating-icon {
    margin-bottom: 5px;
  }
  .our-clients .first-banner__title {
    margin-bottom: 15px;
  }
  .our-clients .first-banner__subtitle {
    width: unset;
  }
}
@media screen and (max-width: 992px) {
  .our-clients .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 8% 70px;
  }
  .our-clients .contact-banner__content {
    padding: 30px;
  }
  .our-clients .contact-banner__chat-icon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .our-clients .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .our-clients .first-banner__title {
    font-size: 7vw;
  }
  .our-clients .first-banner__subtitle {
    font-size: 14px;
  }
  .our-clients .contact-banner__content {
    flex-direction: column;
  }
  .our-clients .contact-banner__text-container {
    width: unset;
  }
  .our-clients .contact-banner__description {
    font-size: 14px;
    line-height: 1;
  }
  .our-clients .contact-banner__button {
    margin-top: 16px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .our-clients .clients-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.become-partner .first-banner {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.become-partner .first-banner .element {
  position: absolute;
  z-index: 1;
}
.become-partner .first-banner .element-1 {
  left: 28.5%;
  top: 27%;
  animation: scaleFadeRotateMove 85s linear 0.5s infinite reverse;
}
.become-partner .first-banner .element-2 {
  bottom: 10%;
  left: 15%;
  animation: scaleFadeMove 30s linear 0s infinite reverse;
}
.become-partner .first-banner .element-3 {
  top: 23%;
  left: 0%;
  animation: scaleFadeMove 30s linear 0.3s infinite;
}
.become-partner .first-banner .element-4 {
  top: 5%;
  left: 44%;
  animation: scaleFadeMove 30s linear 1s infinite;
}
.become-partner .first-banner .element-5 {
  top: 10%;
  left: 38%;
  animation: scaleFadeRotateMove 85s linear 0.5s infinite reverse;
}
.become-partner .first-banner .element-6 {
  left: 45%;
  bottom: 10%;
  animation: scaleFadeMove 30s linear 0s infinite reverse;
}
.become-partner .first-banner .element-7 {
  right: 20%;
  top: 0%;
  animation: move2 30s linear 0.2s infinite reverse;
}
.become-partner .first-banner .element-8 {
  right: 14%;
  bottom: 3%;
  width: 160px;
  animation: rotateMove 85s linear 0.5s infinite reverse;
}
.become-partner .first-banner .element-9 {
  right: -10%;
  bottom: 30%;
  animation: move2 40s linear 0.3s infinite reverse;
}
.become-partner .first-banner__bg {
  width: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.become-partner .first-banner__content {
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 45px;
  width: 100%;
  padding: 36px 136px 0;
}
.become-partner .first-banner__partner-icon {
  max-width: 15%;
  margin-bottom: 20px;
}
.become-partner .first-banner__title {
  width: 50%;
  font-size: 72px;
  font-weight: 900;
}
.become-partner .referrals__title {
  font-size: 56px;
  font-weight: 900;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(81deg, #392588 -10%, #1d4194 46%, #0079c1 101%);
}
.become-partner .referrals__description {
  width: 50%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #555864;
}
.become-partner .referrals__features {
  display: flex;
  justify-content: center;
  padding: 56px 80px;
}
.become-partner .referrals__features .feature {
  width: 50%;
  max-width: 460px;
  color: #ffffff;
  background-color: #1a203c;
  border-radius: 16px;
  padding: 34px 40px 54px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
}
.become-partner .referrals__features .feature:not(:last-child) {
  margin-right: 24px;
}
.become-partner .referrals__features .feature__icon {
  margin-bottom: 16px;
}
.become-partner .referrals__features .feature__title {
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 900;
}
.become-partner .referrals__features .feature__description {
  font-size: 14px;
  line-height: 1.43;
}
.become-partner .referrals__features .feature__description--wide {
  line-height: 1.71;
}
.become-partner .payment-consultant {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: linear-gradient(71deg, rgba(57, 37, 136, 0.6) -3%, rgba(29, 65, 148, 0.7) 50%, rgba(0, 121, 193, 0.9) 102%);
}
.become-partner .payment-consultant__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.become-partner .payment-consultant__bg-letter {
  position: absolute;
}
.become-partner .payment-consultant__bg-letter-1 {
  top: 14%;
  left: 8%;
}
.become-partner .payment-consultant__bg-letter-2 {
  top: 22%;
  left: 40%;
}
.become-partner .payment-consultant__bg-letter-3 {
  top: 57%;
  left: 25%;
}
.become-partner .payment-consultant__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 8%;
  color: #ffffff;
}
.become-partner .payment-consultant__text-container {
  width: 40%;
  margin-right: 85px;
}
.become-partner .payment-consultant__cash-icon {
  margin-bottom: 24px;
}
.become-partner .payment-consultant__title {
  margin-bottom: 16px;
  font-size: 56px;
  font-weight: 900;
  white-space: nowrap;
}
.become-partner .payment-consultant__description {
  font-size: 16px;
  line-height: 1.5;
}
.become-partner .payment-consultant__macbook-coach-icon {
  max-width: 33%;
}
.become-partner .partners {
  display: flex;
  padding: 95px 20px;
  background-color: #f2f5f7;
}
.become-partner .partners__content {
  margin: 0 auto;
}
.become-partner .partners__title {
  margin-bottom: 44px;
  font-size: 56px;
  font-weight: 900;
  color: #1a203c;
}
.become-partner .partners__logos {
  padding: 0 40px;
}
.become-partner .contact-banner {
  position: relative;
  background-image: linear-gradient(64deg, #392588 -4%, #1d4194 45%, #0079c1 93%);
  overflow: hidden;
}
.become-partner .contact-banner__bg {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.become-partner .contact-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 65%;
  max-width: 1000px;
  align-items: center;
  padding: 40px 56px;
  color: #ffffff;
  border-radius: 16px;
  transform: translate(-50%, -50%);
}
.become-partner .contact-banner__content .backdrop-blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
}
.become-partner .contact-banner__chat-icon {
  margin-right: 48px;
}
.become-partner .contact-banner__text-container {
  width: 55%;
}
.become-partner .contact-banner__title {
  margin-bottom: 7px;
}
.become-partner .contact-banner__description {
  font-size: 16px;
  line-height: 1.25;
}
.become-partner .contact-banner__button {
  margin-left: auto;
  padding: 16px 25px;
  font-size: 16px;
  line-height: 0.88;
  font-weight: 900;
  border-width: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .become-partner .first-banner__content {
    padding: 24px 10% 0;
  }
  .become-partner .first-banner__title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1200px) {
  .become-partner .contact-banner__content {
    width: 85%;
  }
  .become-partner .payment-consultant__content {
    margin-left: 0;
  }
  .become-partner .payment-consultant__text-container {
    width: 50%;
  }
  .become-partner .payment-consultant__cash-icon {
    max-width: 15%;
  }
}
@media screen and (max-width: 992px) {
  .become-partner .first-banner__title {
    font-size: 7vw;
    width: 75%;
  }
  .become-partner .referrals__description {
    width: 75%;
  }
  .become-partner .payment-consultant__content {
    padding: 50px;
  }
  .become-partner .payment-consultant__text-container {
    width: 100%;
    margin: 0;
  }
  .become-partner .payment-consultant__title, .become-partner .payment-consultant__description {
    text-align: center;
    white-space: normal;
  }
  .become-partner .payment-consultant__cash-icon {
    margin: 0 auto 40px;
  }
  .become-partner .payment-consultant__bg-letter-2 {
    left: 70%;
  }
  .become-partner .payment-consultant__bg-letter-3 {
    left: 33%;
  }
  .become-partner .payment-consultant__macbook-coach-icon {
    display: none;
  }
  .become-partner .contact-banner__content {
    padding: 30px;
  }
  .become-partner .contact-banner__chat-icon {
    display: none;
  }
  .become-partner .referrals__features {
    flex-direction: column;
    align-items: center;
    padding: 42px 20px;
  }

  .become-partner .referrals__features .feature {
    max-width: 100%;
    width: 100%;
  }
  .become-partner .referrals__features .feature:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .become-partner .referrals__features {
    padding: 42px 0;
  }
  .become-partner .first-banner .element-7, .become-partner .first-banner .element-8, .become-partner .first-banner .element-9 {
    display: none;
  }
  .become-partner .referrals {
    padding: 0 20px;
  }
  .become-partner .referrals__title {
    font-size: 42px;
  }
  .become-partner .referrals__description {
    line-height: 1.2;
  }
  .become-partner .referrals__features .feature {
    padding: 30px 25px 40px;
  }
  .become-partner .referrals__features .feature:not(:last-child) {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .become-partner .partners {
    padding: 50px 20px;
  }
  .become-partner .partners__title {
    font-size: 42px;
    text-align: center;
  }
  .become-partner .partners__logos {
    margin: 0;
  }
  .become-partner .contact-banner__content {
    flex-direction: column;
  }
  .become-partner .contact-banner__text-container {
    width: unset;
  }
  .become-partner .contact-banner__description {
    font-size: 14px;
    line-height: 1;
  }
  .become-partner .contact-banner__button {
    margin-top: 16px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .become-partner .first-banner__title {
    font-size: 10vw;
    width: 100%;
  }
  .become-partner .referrals__description {
    width: 100%;
  }
  .become-partner .referrals__features .feature__title {
    font-size: 32px;
  }
  .become-partner .payment-consultant__title {
    font-size: 42px;
  }
  .become-partner .payment-consultant__cash-icon {
    display: none;
  }
}

.about {
  background: #ffffff;
  overflow: hidden;
}
.about .first-banner {
  position: relative;
  color: #ffffff;
}
.about .first-banner__bg {
  width: 100%;
  min-height: 630px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about .first-banner .element {
  position: absolute;
}
.about .first-banner .element-1 {
  top: -70px;
  right: 500px;
  transform: scale(0.7);
  animation: move2 30s linear 0.2s infinite reverse;
}
.about .first-banner .element-2 {
  top: 210px;
  right: 195px;
  animation: rotateMove 85s linear 0.5s infinite reverse;
}
.about .first-banner .element-3 {
  top: 100px;
  right: -100px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  background-image: radial-gradient(circle at 64% 41%, #b6a6ef, #7966c1 36%, #395091 66%, #20356f 82%, #b2c6fd 110%);
  animation: rotateMove 85s linear 0.5s infinite reverse;
}
.about .first-banner__content {
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 48px 136px 0;
}
.about .first-banner__cards-icon {
  max-width: 15%;
  margin-bottom: 24px;
}
.about .first-banner__title {
  width: 50%;
  font-size: 56px;
  font-weight: 900;
}
.about .first-banner__description {
  width: 54%;
  font-size: 16px;
  line-height: 1.5;
}
.about .first-banner__ipad-photo {
  position: absolute;
  bottom: -70px;
  right: 0;
}
.about .differences {
  padding: 120px 0 50px;
}
.about .differences__title {
  margin-bottom: 0;
  text-align: center;
}
.about .differences__swiper {
  position: relative;
  padding: 100px 0;
  box-sizing: content-box;
}
.about .differences__swiper .side-gradient {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 70px;
  height: 100%;
  opacity: 0.4;
}
.about .differences__swiper .side-gradient--left {
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 20%, #ffffff 112%);
}
.about .differences__swiper .side-gradient--right {
  right: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 20%, #ffffff 112%);
}
.about .differences__swiper .swiper-slide {
  width: 33%;
  max-width: 500px;
  height: 100%;
}
.about .differences__swiper .swiper-slide:first-child.swiper-slide-active {
  margin-left: 7.8vw;
}
.about .differences__swiper .swiper-slide-prev {
  margin-left: 9vw;
}
.about .differences__swiper .swiper-slide__content {
  width: 100%;
  height: 100%;
  padding: 50px;
  box-sizing: border-box;
  color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(45deg, #8b92a0 43%, #aeb8cc 119%);
  position: relative;
  transition: all 0.3s ease;
}

.about .differences__swiper .swiper-slide__content:before {
  content: '';
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-image: linear-gradient(35deg, #8065e2 -32%, #692b80 65%);
}

.about .differences__swiper .swiper-slide__description,
.about .differences__swiper .swiper-slide__title {
  position: relative;
  z-index: 1;
}

.about .differences__swiper .swiper-slide__content:hover:before {
  opacity: 1;
}

.about .differences__swiper .swiper-slide__content:hover {
  transform: translateY(-16px);
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.5), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
}

.about .differences__swiper .swiper-slide__title {
  font-size: 43px;
  font-weight: 900;
  line-height: 1.2;
}
.about .differences__swiper .swiper-slide__description {
  font-size: 22px;
  line-height: 1.28;
}
/* CHANGE */
.about .differences__swiper .swiper-button-prev,
.about .differences__swiper .swiper-button-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.25);
  border: none;
  background-size: 22px 22px;
  transition: all.3s ease;
  visibility: visible;
  opacity: 1;
}
.about .differences__swiper .swiper-button-prev.swiper-button-disabled,
.about .differences__swiper .swiper-button-next.swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}
/* END CHANGE */
.about .advantages--proofs {
  padding-bottom: 0;
}
.about .differences__swiper .swiper-button-prev {
  background-image: url(../images/about/arrow_back_ios_black_24dp.svg);
}
.about .differences__swiper .swiper-button-next {
  background-image: url(../images/about/arrow_forward_ios_black_24dp.svg);
}
/* CHANGE */
.about .differences__swiper .swiper-button-prev:hover,
.about .differences__swiper .swiper-button-next:hover {
  opacity: .7;
}
/* END CHANGE */
.about .leaders {
  background-color: #ffffff;
  padding: 130px 0;
  overflow: hidden;
}
.about .leaders__bg {
  filter: brightness(96%);
}
.about .leaders .container {
  margin: 0 13.54%;
  width: auto;
  max-width: 100%;
}
.about .leaders .bio-leaders-wrap {
  align-items: center;
}
.about .leaders .bio-leaders-wrap .bio-leaders-left {
  margin-right: 110px;
}

.about .payment-network-banner {
  position: relative;
  padding: 150px 0 190px;
  color: #ffffff;
  background-image: linear-gradient(68deg, #5422a6 -12%, #103ca5 51%, #0195cd 107%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.about .payment-network-banner__card-1 {
  position: absolute;
  bottom: -100px;
  left: 9vw;
  transition: all.3s ease-out;
  z-index: 1;
}
.about .payment-network-banner__card-2 {
  position: absolute;
  top: 30px;
  left: 90px;
  transition: all.3s ease-out;
  z-index: 1;
}
.about .payment-network-banner__content {
  width: 59%;
  padding-left: 0;
  margin: 0 150px 0 auto;
  box-sizing: content-box;
}
.about .payment-network-banner__shop-icon {
  margin-bottom: 24px;
}
.about .payment-network-banner__title {
  margin-bottom: 20px;
}
.about .payment-network-banner__description {
  font-size: 30px;
  line-height: 1.35;
}
@media screen and (min-width:  1920px) {
  .about .payment-network-banner__title {
    margin-bottom: 1vw;
  }
  .about .payment-network-banner {
    padding: 7.81vw 0 9.89vw;
  }
  .about .payment-network-banner__card-1 {
    bottom: -5.2vw;
    left: 8.85vw;
    min-width: 7.81vw;
    height: auto;
  }
  .about .payment-network-banner__description {
    font-size: 1.56vw;
  }
  .about .payment-network-banner__content {
    margin: 0 7.81vw 0 auto;
  }
}

.about .our-values {
  position: relative;
  padding: 180px 0 150px;
  background-color: #ffffff;
}
.about .our-values__photo {
  position: absolute;
  box-shadow: 2px 5px 28px 0 rgba(7, 19, 46, 0.45), 2px 2px 8px 0 rgba(7, 19, 46, 0.3);
  z-index: 2;
}
.about .our-values__photo--3,
.about .our-values__photo--2,
.about .our-values__photo--1 {
  transition: all.3s ease-out;
}
.about .our-values__photo--1 {
  top: -50px;
  right: 0;
  border-radius: 80px 0 0 15px;
}
.about .our-values__photo--2 {
  top: 20px;
  right: 0;
  border-radius: 15px 0px 0 60px;
}
.about .our-values__photo--3 {
  top: 188px;
  right: 5%;
  border-radius: 10px 10px 10px 35px;
}
.about .our-values__content {
  width: 57.50%;
  padding: 0 0 0 220px;
  box-sizing: content-box;
}
.about .our-values__title {
  font-weight: 900;
  margin-bottom: 25px;
}
.about .our-values__description {
  font-size: 30px;
  line-height: 1.28;
  color: #333333;
}
.about .our-values__description--bold {
  font-weight: 900;
}
.about .our-values__swiper {
  position: relative;
  min-height: 400px;
}
.about .our-values__swiper .side-gradient {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 10vw;
  max-width: 100px;
  height: 100%;
}
.about .our-values__swiper .side-gradient--left {
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 20%, #f2f5f7 112%);
}
.about .our-values__swiper .side-gradient--right {
  right: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 20%, #f2f5f7 112%);
}
.about .our-values__swiper .swiper-slide {
  /*flex-basis: 400px;*/
}
/* CHANGE */
.about .our-values__swiper .swiper-slide__content {
  width: 100%;
  height: 100%;
  padding: 64px 50px 20px;
  box-sizing: border-box;
}
/* END CHANGE */
.about .our-values__swiper .swiper-slide__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  background-color: #555864;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: auto;
  -webkit-mask-size: auto;
  transition: transform 0.3s;
}
.about .our-values__swiper .swiper-slide__icon--team {
  mask-image: url(../images/about/values-icons/ic-team.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-team.svg);
}
.about .our-values__swiper .swiper-slide__icon--trust {
  mask-image: url(../images/about/values-icons/ic-check.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-check.svg);
}
.about .our-values__swiper .swiper-slide__icon--check {
  mask-image: url(../images/about/values-icons/ic-check.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-check.svg);
}
.about .our-values__swiper .swiper-slide__icon--heart {
  mask-image: url(../images/about/values-icons/ic-cc-heart.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-cc-heart.svg);
}
.about .our-values__swiper .swiper-slide__icon--ideas {
  mask-image: url(../images/about/values-icons/ic-ideas.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-ideas.svg);
}
.about .our-values__swiper .swiper-slide__icon--high-five {
  mask-image: url(../images/about/values-icons/ic-high-five.svg);
  -webkit-mask-image: url(../images/about/values-icons/ic-high-five.svg);
}
.about .our-values__swiper .swiper-slide__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a203c;
  transition: all 0.3s;
}
.about .our-values__swiper .swiper-slide__subtitle {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333333;
  transition: all 0.3s;
}
.about .our-values__swiper .swiper-slide__description {
  font-size: 24px;
  line-height: 1.35;
  color: #343434;
}
/* CHANGE */
.about .our-values__swiper .swiper-slide-active {
  min-width: 400px;
}
/* END CHANGE */
.about .our-values__swiper .swiper-slide-active .swiper-slide__icon {
  background-color: transparent;
  background-image: linear-gradient(80deg, #8065e2 -14%, #7232bd 22%, #4d1280 58%);
  transform: translate(50%, -50%) scale(2);
}
.about .our-values__swiper .swiper-slide-active .swiper-slide__title {
  background-image: linear-gradient(80deg, #8065e2 -14%, #7232bd 22%, #4d1280 58%);
  font-size: 43px;
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .our-values__swiper .swiper-button-prev,
.about .our-values__swiper .swiper-button-next {
  margin-top: 0;
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.25);
  background-size: 22px 22px;
}
.about .our-values__swiper .swiper-button-prev {
  background-image: url(../images/about/arrow_back_ios_black_24dp.svg);
}
.about .our-values__swiper .swiper-button-next {
  background-image: url(../images/about/arrow_forward_ios_black_24dp.svg);
}
.about .nonprofit-support-banner {
  margin: 0;
  padding: 124px 0;
}
.about .nonprofit-support-banner .left-section__support-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 70%;
  border-radius: 20px 65px 20px 20px;
  box-shadow: -19px 11px 32px 0 rgba(7, 19, 46, 0.25);
  transform: translate(-50%, -50%);
}
.about .nonprofit-support-banner .left-section__letter {
  position: absolute;
  width: 10vw;
  min-width: 80px;
}
.about .nonprofit-support-banner .left-section__letter--3,
.about .nonprofit-support-banner .left-section__letter--2,
.about .nonprofit-support-banner .left-section__letter--1 {
  transition: all.3s ease-out;
}
.about .nonprofit-support-banner .left-section__letter--1 {
  top: 150px;
  left: 20px;
  z-index: 3;
  max-width: 144px;
}
.about .nonprofit-support-banner .left-section__letter--2 {
  bottom: 25px;
  right: 0;
  z-index: 1;
  max-width: 144px;
}
.about .nonprofit-support-banner .left-section__letter--3 {
  top: -10px;
  left: 40%;
  z-index: 3;
  max-width: 125px;
}
.about .nonprofit-support-banner .right-section {
  padding-left: 40px;
  padding-right: 100px;
}
.about .nonprofit-support-banner .right-section__title {
  margin-bottom: 16px;
  font-size: 56px;
  font-weight: 900;
  color: #1a203c;
}
.about .nonprofit-support-banner .right-section__description {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #555864;
}
.about .nonprofit-support-banner .right-section__description--bold {
  font-weight: 900;
}
.about .contact-banner {
  position: relative;
  background-image: linear-gradient(64deg, #392588 -4%, #1d4194 45%, #0079c1 93%);
  overflow: hidden;
}
.about .contact-banner__bg {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}
.about .contact-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 65%;
  max-width: 1000px;
  align-items: center;
  padding: 40px 56px;
  color: #ffffff;
  border-radius: 16px;
  transform: translate(-50%, -50%);
}
.about .contact-banner__content .backdrop-blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15), 0 15px 34px 2px rgba(0, 0, 0, 0.25);
}
.about .contact-banner__chat-icon {
  margin-right: 48px;
}
.about .contact-banner__text-container {
  width: 55%;
}
.about .contact-banner__title {
  margin-bottom: 7px;
}
.about .contact-banner__description {
  font-size: 16px;
  line-height: 1.25;
}
.about .contact-banner__button {
  margin-left: auto;
  padding: 16px 25px;
  font-size: 16px;
  line-height: 0.88;
  font-weight: 900;
  transition: all.3s ease !important;
  border-width: 2px;
  white-space: nowrap;
}

@media screen and (min-width: 1439px) {
  .about .our-values__photo--1 {
    right: 0;
  }
}







.blog {
  background: #ffffff;
}
.blog .hero-banner .title {
  margin-bottom: 115px;
}
.blog-hero-form {
  width: 100%;
}
.blog-hero-form-title {
  font-size: 48px;
  margin-bottom: 10px;
}
.blog-hero-form-subtitle {
  font-size: 28px;
  margin-bottom: 30px;
}
.blog-hero-form form,
.blog-hero-form form p {
  display: flex;
  align-items: center;
}
.blog-hero-form form span,
.blog-hero-form form label {
  display: block;
  width: 100%;
  margin-right: 20px;
  max-width: 625px;
}
.blog-hero-form form .button,
.blog-hero-form form input {
  height: 75px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  border-radius: 50px;
  font-size: 28px;
  text-transform: none;
}
.blog-hero-form form input {
  width: 100%;
  color: #ffffff;
  padding-left: 50px;
  background: transparent;
  border: 2px solid #ffffff;
}
.blog-hero-form form input::-webkit-placeholder,
.blog-hero-form form input::placeholder {
  color: #ffffff;
}
.blog-hero-form form .button {
  color: #936adf;
  padding: 0 48px;
  font-weight: 500;
  background: #ffffff;
  border-color: #ffffff;
}
.blog-hero-form form .button:hover {
  color: #ffffff;
  background: #936adf;
  border-color: #936adf;
}
.blog-hero-form form .button:after {
  content: unset;
}
.blog-list {
  padding: 135px 0 125px;
}
.blog-list .inner {
  padding: 0 180px;
}
.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.pagination li {
  margin-right: 10px;
}
.pagination li .page-numbers.current,
.pagination li a {
  color: #936adf;
  width: 40px;
  height: 30px;
  border: 2px solid #936adf;
  display: flex;
  border-radius: 22px;
  align-items: center;
  justify-content: center;
}
.pagination li .page-numbers.current,
.pagination li a:hover {
  color: #fff;
  background: #936adf;
}
.pagination li a.prev:before {
  content: '';
  position: relative;
  left: -1px;
  width: 6.72px;
  height: 11.648px;
  background-image: url('../images/arrow-right-icon-purple.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: unset;
  filter: invert(0);
  transition: all.3s ease;
  transform: rotateZ(180deg);
}
.pagination li a.next:before {
  content: '';
  position: relative;
  left: 1px;
  width: 6.72px;
  height: 11.648px;
  background-image: url('../images/arrow-right-icon-purple.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: unset;
  filter: invert(0);
  transition: all.3s ease;
}
.pagination li a.prev:hover:before,
.pagination li a.next:hover:before {
  filter: brightness(3.5) grayscale(1);
}
.blog-item {
  display: flex;
  margin-right: 115px;
  margin-bottom: 85px;
  flex-direction: column;
  box-shadow: 4px 4px 12px 1px rgba(0,0,0,.3);
  width: calc((100% / 3) - (115px - (115px / 3)));
}
.blog-item:nth-child(3n) {
  margin-right: 0;
}
.blog-item-image {
  height: 23vw;
}
.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-item-caption {
  flex-grow: 1;
  display: flex;
  background: #f4f4f4;
  flex-direction: column;
  padding: 35px 32px 45px;
}
.blog-item-category {
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.blog-item-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}
.blog-item-text {
  font-weight: 400;
  line-height: 1.3;
  font-size: 19.8px;
  margin-bottom: 50px;
}
.blog-item-buttons {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
}
.blog-item-buttons .button {
  font-size: 19px;
  font-weight: 500;
  border-radius: 40px;
  background-color: #936adf;
  text-transform: capitalize;
  padding: 12px 50px 12px 20px;
}
.blog-item-buttons .button:hover {
  color: #ffffff;
  background-color: #7655b4;
}
.blog-item-buttons .button:after {
  width: 25px;
  right: 15px;
  height: 17px;
  background-image: url('../images/blog/blog-arrow.png');
}
.blog-item-data {
  font-weight: 900;
}








.blog-single {
  background: #ffffff;
}

.blog-single-content {
  margin-top: -280px;
  padding-bottom: 165px;
  background: transparent;
  font-size: 20px;
}

.blog-single-content .inner {
  padding: 0;
  margin: 0 auto;
  max-width: 1040px;
}

.blog-single-content .inner:after {
  content: '';
  left: -70px;
  height: 1px;
  position: relative;
  background: #6f6f6f;
  width: calc(100% + 140px);
  min-width: calc(100% + 140px);
}

.blog-single-heading {
  position: relative;
  width: 100%;
}

.blog-single-heading > * {
  position: relative;
  z-index: 2;
}

.blog-single-heading:before {
  content: '';
  z-index: 0;
  position: absolute;
  width: calc(100% + 390px);
  height: 703px;
  top: -115px;
  left: -195px;
  background-color: #ffffff;
  box-shadow: 0 0 50px 1px rgba(0,0,0,.15);
}

.blog-single-heading:after {
  content: '';
  z-index: 1;
  position: absolute;
  width: calc(100% + 510px);
  height: 400px;
  bottom: -530px;
  left: -255px;
  background: linear-gradient(to top, #fff 40%, rgba(255,255,255,0));
}

.blog-single-date {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 300;
}

.blog-single-title {
  margin-bottom: 55px;
  font-size: 48px;
}

.blog-single-image {
  margin-bottom: 60px;
}

.blog-single-author {
  margin-bottom: 30px;
}

.blog-single-author a {
  color: #5c40e6;
  text-decoration: underline;
}

.blog-single-author a:hover {
  color: #2c266f;
  text-decoration: none;
}

.blog-single-text {
  line-height: 1.6;
  margin-bottom: 115px;
  z-index: 1;
  position: relative;
}

.blog-single-text ul,
.blog-single-text ol,
.blog-single-text p {
  margin-bottom: 30px;
}

.blog-single-text ul:last-child,
.blog-single-text ol:last-child,
.blog-single-text p:last-child {
  margin-bottom: 0;
}

.blog-single-sharer {
  position: absolute;
  top: 0;
  left: -130px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e7e9;
}

.blog-single-sharer .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  transition: all .3s ease;
  border-bottom: 1px solid #e7e7e9;
  font-size: 24px;
  padding: 0;
  color: #aaaab0;
}

.blog-single-sharer .button i {
  display: block;
  margin: 0 auto;
}

.blog-single-sharer .button:after {
  content: unset;
}

.blog-single-sharer .button:hover {
  background: #000;
  color: #ffffff;
  border-color: #000;
}

.blog-single-recommended {
  margin-bottom: 130px;
  font-weight: 500;
  width: 100%;
}

.blog-single-recommended-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.blog-single-recommended-list {
  padding-left: 20px;
}

.blog-single-recommended-list li {
  margin-bottom: 15px;
  color: #000;
  list-style: disc;
}

.blog-single-recommended-list a:hover {
  color: #2c266f;
  text-decoration: underline;
}










@media screen and (min-width: 1920px) {

  .pagination {
    margin-top: 3.125vw;
  }
  .pagination li {
    margin-right: 0.52vw;
  }
  .pagination li a {
    width: 2.08vw;
    height: 1.56vw;
    border: 0.106vw solid #936adf;
    border-radius: 1.14vw;
  }




  .blog-single-content .inner {
      max-width: 54.16vw;
  }

  .blog-single-heading:before {
    width: calc(100% + 20.31vw);
    height: 36.61vw;
    top: -5.98vw;
    left: -10.15vw;
    box-shadow: 0 0 2.6vw 0.052vw rgba(0, 0, 0, 0.15);
  }

  .blog-single-date {
    margin-bottom: 1.04vw;
    font-size: 1.25vw;
  }

  .blog-single-title {
    margin-bottom: 2.86vw;
    font-size: 2.5vw;
  }

  .blog-single-sharer {
    left: -6.77vw;
    border: 0.052vw solid #e7e7e9;
  }

  .blog-single-sharer .button {
    width: 3.9vw;
    height: 3.9vw;
    font-size: 1.25vw;
  }

  .blog-single-heading:after {
    width: calc(100% + 26.56vw);
    height: 20.83vw;
    bottom: -32.81vw;
    left: -13.28vw;
  }

  .blog-single-image {
    margin-bottom: 3.12vw;
  }

  .blog-single-image img {
    width: 100%;
  }

  .blog-single-text {
    margin-bottom: 5.98vw;
    font-size: 1.04vw;
  }

  .blog-single-author {
    margin-bottom: 1.56vw;
  }

  .blog-single-recommended {
    margin-bottom: 6.77vw;
  }

  .blog-single-recommended-title {
    font-size: 1.25vw;
    margin-bottom: 1.56vw;
  }

  .blog-single-recommended-list li {
    margin-bottom: 0.78vw;
  }

  .blog-single-recommended-list {
    padding-left: 1.04vw;
    font-size: 1.04vw;
  }

  .blog-single-content .inner:after {
    left: -3.64vw;
    height: 0.052vw;
    width: calc(100% + 7.29vw);
    min-width: calc(100% + 7.29vw);
  }

  .blog-single-content {
    margin-top: -14.58vw;
    padding-bottom: 8.59vw;
    font-size: 1.04vw;
  }









  body {
    font-size: 0.83vw;
  }

  .blog-list .inner {
    padding: 0 9.37vw;
  }

  .blog-list {
    padding: 7.03vw 0 6.51vw;
  }

  .blog-item {
    box-shadow: 0.208vw 0.208vw 0.624vw 0.052vw rgba(0, 0, 0, .3);
    width: calc((100% / 3) - (5.98vw - (5.98vw / 3)));
    margin-right: 5.98vw;
    margin-bottom: 4.42vw;
  }

  .blog-item-category {
    margin-bottom: 1.04vw;
  }

  .blog-item-title {
    font-size: 1.45vw;
    margin-bottom: 1.3vw;
  }

  .blog-item-caption {
    padding: 1.82vw 1.66vw 2.34vw;
  }

  .blog-item-text {
    font-size: 1.03vw;
    margin-bottom: 2.6vw;
  }

  .blog-item-buttons .button {
    font-size: 0.98vw;
    padding: 0.624vw 2.6vw 0.624vw 1.03vw;
    border-radius: 2.6vw;
  }

  .blog-item-buttons .button:after {
    right: 0.78vw;
    width: 1.3vw;
    height: 0.88vw;
  }

  .blog-hero-form-title {
    font-size: 2.5vw;
    margin-bottom: 0.52vw;
  }

  .blog-hero-form-subtitle {
    font-size: 1.45vw;
    margin-bottom: 1.56vw;
  }

  .blog .hero-banner .title {
    margin-bottom: 5.98vw;
  }

  .blog-hero-form form label {
    max-width: 32.55vw;
    margin-right: 1.03vw;
  }

  .blog-hero-form form input {
    padding-left: 2.6vw;
    border: 0.104vw solid #ffffff;
  }

  .blog-hero-form form .button {
    padding: 0 2.5vw;
  }

  .blog-hero-form form .button,
  .blog-hero-form form input {
    height: 3.9vw;
    border-radius: 2.6vw;
    font-size: 1.458vw;
  }







  .about .our-values__swiper .swiper-button-prev, .about .our-values__swiper .swiper-button-next,
  .about .differences__swiper .swiper-button-prev, .about .differences__swiper .swiper-button-next {
    width: 2.81vw;
    height: 2.81vw;
    background-size: 1.145vw 1.145vw;
  }



  .our-clients .contact-banner__text-container {
    width: calc(100% - 13.802vw);
    padding-right: 8.33vw;
  }
  .our-clients .contact-banner__content {
    max-width: 100%;
    margin: 0 11.5vw;
    box-shadow: 0 0.208vw 0.624vw 0 rgba(0, 0, 0, .15), 0 0.78vw 1.77vw 0.104vw rgba(0, 0, 0, .25);
    padding: 3.385vw 4.68vw;
    border-radius: 2.6vw;
  }
  .our-clients .contact-banner__title {
    font-size: 2.395vw;
    margin-bottom: 0.364vw;
  }
  .our-clients .contact-banner__description {
    font-size: 1.145vw;
  }
  .our-clients .contact-banner {
    padding: 7.03vw 0 8.33vw;
  }
  .our-clients .contact-banner__content .button {
    padding-left: 2.47vw;
    padding-right: 4.166vw;
  }
  .our-clients .contact-banner__content .button:after {
    right: 1.614vw;
  }




  .our-clients .clients-grid .client-card {
    padding: 1.3vw 0 2.08vw;
    border-radius: 0.78vw 0.78vw 5.2vw 0.78vw;
  }
  .our-clients .clients-grid .client-card__learn-more-container .learn-more {
    border-radius: 0.78vw 0.78vw 5.2vw 0.78vw;
    padding: 2.08vw 1.25vw 2.08vw;
  }
  .our-clients .clients-grid .client-card__logo {
    padding: 1.56vw 0.78vw 0.78vw;
    min-width: 9.375vw;
    height: auto;
  }
  .our-clients .clients-grid .client-card__button {
    font-size: 1.56vw;
  }
  .our-clients .clients-grid .client-card__button:after {
    margin-left: 0.625vw;
    margin-top: 0.26vw;
    width: 1.25vw;
    height: 0.572vw;
  }
  .our-clients .clients-grid {
    column-gap: 3.12vw;
    row-gap: 3.12vw;
    padding: 7.8vw 9.375vw;
  }

  .about .our-values {
    padding: 9.375vw 0 7.81vw;
  }

  .about .our-values__content {
    padding: 0 0 0 11.45vw;
  }

  .about .payment-network-banner__shop-icon {
    min-width: 5vw;
    height: auto;
    margin-bottom: 1.25vw;
  }

  .about .our-values__swiper .swiper-slide__content {
    padding: 3.333vw 2.6vw 1vw;
  }

  .about .our-values__swiper .swiper-slide__title {
    margin-bottom: 1.56vw;
    font-size: 1.666vw;
  }

  .about .our-values__swiper .swiper-slide__subtitle {
    margin-bottom: 1.25vw;
  }

  .about .our-values__swiper .swiper-slide__description {
    font-size: 1.25vw;
  }

  .about .our-values__swiper .swiper-slide-active .swiper-slide__title {
    font-size: 2.24vw;
  }

  .about .our-values__photo--1 {
    top: -2.6vw;
    min-width: 26.302vw;
    border-radius: 4.166vw 0 0 0.78vw;
    height: auto;
  }

  .about .our-values__photo--2 {
    top: 1vw;
    min-width: 14.58vw;
    border-radius: 0.78vw 0 0 3.125vw;
    height: auto;
  }

  .about .our-values__title {
    margin-bottom: 1.3vw;
  }

  .about .our-values__description {
    font-size: 1.56vw;
  }


  .about .leaders {
    padding: 6.77vw 0;
  }
  .about .differences {
    padding: 6.28vw 0 2.6vw;
  }
  .about .differences__swiper {
    padding: 5.2vw 0;
  }
  .about .differences__swiper .swiper-slide {
    max-width: 26vw;
  }
  .about .differences__swiper .swiper-slide__content {
    padding: 2.6vw;
  }
  .about .differences__swiper .swiper-slide__title {
    margin-bottom: 1.56vw;
    font-size: 2.23vw;
  }
  .about .differences__swiper .swiper-slide__description {
    font-size: 1.145vw;
  }
  .about .differences__swiper .swiper-slide__content:hover {
    transform: translateY(-0.83vw);
    box-shadow: 0 0.208vw 0.52vw 0.052vw rgba(0,0,0, .5), 0 0.781vw 1.77vw 0.104vw rgba(0,0,0, .25);
  }
}

@media screen and (max-width: 1799px) {
  .blog-item {
    margin-right: 75px;
    margin-bottom: 65px;
    width: calc((100% / 3) - (75px - (75px / 3)));
  }

  .blog-item-text {
    font-size: 16px;
  }

  .blog-item-image {
    height: 20vw;
  }





  .our-clients .clients-grid .client-card,
  .our-clients .clients-grid .client-card__learn-more-container .learn-more {
    border-radius: 15px 15px 70px 15px;
  }


  .about .our-values__swiper .swiper-slide__content {
    padding: 65px 40px 15px;
  }

  .about .our-values__swiper .swiper-slide__title {
    margin-bottom: 25px;
    font-size: 28px;
  }

  .about .our-values__swiper .swiper-slide__subtitle {
    margin-bottom: 22px;
  }

  .about .our-values__swiper .swiper-slide__description {
    font-size: 22px;
  }

  .about .our-values__swiper .swiper-slide-active .swiper-slide__title {
    font-size: 38px;
  }

  .about .our-values__description {
    font-size: 24px;
  }
}

@media screen and (max-width: 1599px) {
  .blog-single-content {
    overflow: hidden;
    padding-top: 130px;
    margin-top: -400px;
    padding-bottom: 115px;
  }

  .blog-item {
    margin-right: 50px;
    margin-bottom: 50px;
    width: calc((100% / 3) - (50px - (50px / 3)));
  }

  .blog-item-text {
    margin-bottom: 40px;
  }

  .blog-item-image {
    height: 250px;
  }

  .blog-item-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .blog-item-caption {
    padding: 35px 25px 45px;
  }

  .blog-item-category,
  .blog-item-date {
    font-size: 14px;
  }

  .blog-item-buttons .button {
    font-size: 16px;
  }

  .blog-list .inner {
    padding: 0 135px;
  }




  .our-clients .contact-banner__content {
    max-width: 1180px;
  }
  .our-clients .contact-banner__text-container {
    padding-right: 100px;
  }


  .our-clients .clients-grid .client-card__logo {
    padding: 15px;
  }

  .our-clients .clients-grid {
    column-gap: 40px;
    row-gap: 40px;
    padding: 120px 135px;
  }

  .our-clients .clients-grid .client-card__button {
    font-size: 24px;
  }



  .about .our-values__swiper .swiper-slide__description {
    font-size: 20px;
  }

  .about .our-values__content {
    width: 50%;
    padding: 0 0 0 135px;
  }

  .about .our-values__description {
    font-size: 22px;
  }


  .about .differences__swiper .swiper-slide {
    max-width: 420px;
  }
  .about .differences__swiper .swiper-slide__content {
    padding: 40px;
  }
  .about .differences__swiper .swiper-slide__title {
    font-size: 36px;
  }
  .about .differences__swiper .swiper-slide__description {
    font-size: 20px;
  }
  .about .differences__swiper {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .about .leaders .container {
    margin: 0;
    padding: 0 135px;
    width: 100%;
    max-width: 100%;
  }
  .bio-leaders__leaders-item .individual-leader__item {
    min-width: 335px;
    max-width: 335px;
  }

  .individual-leader__item-name {
    font-size: 32px;
  }

  .individual-leader__item-position {
    font-size: 24px;
  }

  .individual-leader__item {
    border-radius: 25px 25px 80px 25px;
  }

  .individual-leader__item-caption {
    border-radius: 0 0 80px 25px;
  }

  .our-clients .contact-banner__title {
    font-size: 40px;
  }
  .our-clients .contact-banner__description {
    font-size: 20px;
  }
}

@media screen and (max-width: 1439px) {
  .blog-single-heading:before {
    width: calc(100% + 200px);
    height: 600px;
    top: -80px;
    left: -100px;
  }

  .blog-single-sharer .button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .blog-single-content {
    padding-top: 80px;
    margin-top: -380px;
  }

  .blog-single-sharer {
    left: -75px;
  }

  .blog-single-date {
    font-size: 20px;
  }

  .blog-single-heading:after {
    width: calc(100% + 300px);
    height: 300px;
    left: -150px;
  }

  .blog-single-content .inner {
    max-width: 820px;
  }

  .blog-single-recommended {
    margin-bottom: 100px;
  }

  .blog-single-text {
    margin-bottom: 100px;
  }











  .blog-hero-form-title {
    font-size: 36px;
  }

  .blog-hero-form-subtitle {
    font-size: 20px;
  }

  .blog-hero-form form .button, .blog-hero-form form input {
    height: 60px;
    font-size: 22px;
  }

  .blog-hero-form form .button {
    padding: 0 38px;
  }

  .blog-hero-form form input {
    padding-left: 35px;
  }

  .blog .hero-banner .title {
    margin-bottom: 65px;
  }

  .blog-item-caption {
    padding: 35px 22px 45px;
  }

  .blog-list .inner {
    padding: 0 60px;
  }

  .blog-item {
    margin-right: 30px;
    margin-bottom: 30px;
    width: calc((100% / 3) - (30px - (30px / 3)));
  }

  .blog-item-buttons .button:after {
    width: 22px;
    right: 12px;
    height: 14px;
  }

  .blog-item-buttons .button {
    padding-right: 45px;
  }



  .our-clients .contact-banner__content {
    max-width: 920px;
    padding: 55px 60px;
  }
  .our-clients .contact-banner__description {
    font-size: 18px;
  }
  .our-clients .contact-banner__content .button {
    padding: 19px 70px 18px 30px;
  }
  .our-clients .contact-banner__content .button:after {
    right: 27px;
  }
  .our-clients .contact-banner__text-container {
    padding-right: 60px;
  }

  .our-clients .contact-banner__title {
    font-size: 36px;
  }


  .our-clients .clients-grid .client-card, .our-clients .clients-grid .client-card__learn-more-container .learn-more {
    border-radius: 15px 15px 40px 15px;
    padding-bottom: 30px;
  }
  .our-clients .clients-grid {
    column-gap: 20px;
    row-gap: 20px;
    padding: 100px 60px;
  }
  .our-clients .clients-grid .client-card__button {
    font-size: 21px;
  }



  .about .our-values__photo--1 {
    max-width: 38%;
    border-radius: 60px 0 0 15px;
  }

  .about .our-values__photo--2 {
    max-width: 19%;
    border-radius: 15px 0px 0 50px;
  }

  .about .our-values {
    padding: 130px 0 80px;
  }

  .about .our-values__content {
    padding-left: 60px;
  }

  .about .our-values__description {
    font-size: 20px;
  }

  .about .our-values__swiper .swiper-slide__content {
    padding: 65px 30px 15px;
  }

  .about .payment-network-banner__shop-icon {
    margin-bottom: 24px;
    max-width: 75px;
  }

  .about .our-values__swiper .swiper-slide__title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .about .our-values__swiper .swiper-slide__subtitle {
    font-size: 18px;
  }


  .about .our-values__swiper .swiper-slide-active .swiper-slide__title {
    font-size: 34px;
  }

  .about .our-values__swiper .swiper-slide__description {
    font-size: 18px;
  }




  .individual-leader__item {
    border-radius: 25px 25px 60px 25px;
  }

  .individual-leader__item-caption {
    border-radius: 0 0 60px 25px;
  }
  .bio-leaders__leaders-item.hover {
    bottom: 20px;
  }

  .about .leaders .container {
    padding: 0 60px;
  }
  .bio-leaders__leaders {
    max-width: 45%;
    justify-content: flex-end;
  }
  .about .leaders .bio-leaders-wrap .bio-leaders-left {
    margin-right: 60px;
  }
  .bio-leaders__leaders-item .individual-leader__item-caption {
    padding: 20px;
  }
  .individual-leader__item-name {
    font-size: 28px;
  }
  .individual-leader__item-position {
    font-size: 21px;
  }
  .bio-leaders__leaders-item .individual-leader__item {
    min-width: 280px;
    max-width: 280px;
  }
  .bio-leaders-text {
    font-size: 22px;
  }
  .bio-leaders-title {
    margin-bottom: 20px;
  }



  .about .differences__swiper .swiper-slide {
    max-width: 360px;
  }
  .about .payment-network-banner {
    padding: 120px 0 150px;
  }
  .about .payment-network-banner__content {
    margin-right: 60px;
  }
  .about .payment-network-banner__description {
    font-size: 24px;
  }
  .about .first-banner__content {
    padding: 36px 10% 0;
  }
  .about .first-banner__title {
    width: 75%;
  }
  .about .first-banner__description {
    width: 65%;
  }
  .about .first-banner__ipad-photo {
    right: unset;
    left: 1400px;
    transform: translateX(-100%);
  }

  .about .differences__swiper .swiper-slide__content {
    padding: 35px;
  }
  .about .differences__swiper .swiper-slide__title {
    margin-bottom: 15px;
    font-size: 30px;
  }
  .about .differences__swiper .swiper-slide__description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) {
  .blog-single-content .inner {
    max-width: 780px;
  }





  .blog-item {
    width: calc(100% / 2 - 15px);
  }

  .blog-item:nth-child(3n) {
    margin-right: 30px;
  }

  .blog-item:nth-child(2n) {
    margin-right: 0;
  }





  .our-clients .clients-grid {
    padding: 60px 60px;
  }
  .our-clients .clients-grid .client-card__logo {
    padding: 0px 15px 5px;
  }
  .our-clients .clients-grid .client-card {
    padding-top: 15px;
  }
  .our-clients .clients-grid .client-card__button {
    font-size: 19px;
  }
  .our-clients .clients-grid .client-card__button:after {
    width: 18px;
    height: 7px;
  }



  .about .our-values__description {
    font-size: 18px;
  }

  .about .our-values__photo--1 {
    border-radius: 50px 0 0 15px;
  }

  .about .our-values__photo--2 {
    border-radius: 15px 0px 0 40px;
  }



  .bio-leaders__leaders-item .individual-leader__item-caption {
    padding: 16px;
  }
  .individual-leader__item-name {
    font-size: 24px;
    margin-bottom: 7px;
  }
  .individual-leader__item-position {
    font-size: 18px;
  }

  .bio-leaders-text {
    font-size: 18px;
  }
  .bio-leaders__leaders-item .individual-leader__item {
    min-width: 230px;
    max-width: 230px;
  }


  .about .first-banner__ipad-photo {
    display: none;
  }
  .about .differences__swiper .swiper-slide {
    width: 40%;
  }
  .about .differences__swiper .swiper-slide__title {
    font-size: 32px;
  }
  .about .payment-network-banner__card-2 {
    left: 60px;
  }
  .about .nonprofit-support-banner .left-section__support-photo {
    width: 90%;
  }
  .about .nonprofit-support-banner .right-section__title {
    font-size: 42px;
  }
  .about .contact-banner__content {
    width: 85%;
  }
  .about .differences__swiper .swiper-slide__content {
    padding: 30px;
  }
  .about .differences__swiper .swiper-slide__title {
    font-size: 28px;
  }
  .about .differences__swiper .swiper-slide__description {
    font-size: 16px;
  }
  .about .differences__swiper {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .about .differences {
    padding: 90px 0 70px;
  }
}

@media screen and (max-width: 991px) {
  .blog-single-content {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 85px;
  }

  .blog-single-heading:before,
  .blog-single-heading:after {
    content: unset;
  }

  .blog-single-content .inner {
    max-width: 80%;
  }

  .blog-single-title {
    margin-bottom: 25px;
    font-size: 42px;
  }

  .blog-single-image {
    margin-bottom: 40px;
  }

  .blog-single-sharer {
    left: 0;
    position: relative;
    flex-direction: row;
    display: inline-flex;
    margin: 0 0 25px;
  }

  .blog-single-sharer .button {
    border-right: 1px solid #e7e7e9;
    border-bottom: none;
  }

  .blog-single-sharer .button:last-child {
    border-right: none;
  }

  .blog-single-text {
    font-size: 18px;
    margin-bottom: 70px;
  }

  .blog-single-text ul, .blog-single-text ol, .blog-single-text p {
    margin-bottom: 25px;
  }

  .blog-single-recommended-list {
    font-size: 18px;
  }

  .blog-single-recommended {
    margin-bottom: 70px;
  }







  .blog-list .inner {
    padding: 0 25px;
  }




  .our-clients .contact-banner {
    padding: 100px 0 100px;
  }
  .our-clients .contact-banner__content {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 60px;
  }
  .our-clients .contact-banner__text-container {
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .our-clients .contact-banner__description {
    line-height: 1.3;
  }
  .our-clients .contact-banner__title {
    margin-bottom: 12px;
    font-size: 32px;
  }


  .our-clients .clients-grid {
    padding: 60px 45px;
  }


  .about .leaders .container {
    padding: 0 25px;
  }

  .bio-leaders__leaders {
    max-width: 100%;
  }
  .bio-leaders__leaders-item.hover {
    bottom: 0px;
  }
  .about .leaders {
    padding: 100px 0;
  }
  .bio-leaders__leaders-item .individual-leader__item {
    min-width: 100%;
    max-width: 100%;
  }
  .individual-leader__item-name {
    font-size: 18px;
  }
  .individual-leader__item-position {
    font-size: 16px;
  }


  .about .first-banner__title {
    width: 100%;
  }
  .about .first-banner__description {
    width: 100%;
  }
  .about .differences__swiper .swiper-slide {
    width: 60%;
  }
  .about .differences__swiper .swiper-slide-active .swiper-slide__content {
    box-shadow: 0 4px 10px 1px rgba(0,0,0,.5), 0 15px 34px 2px rgba(0,0,0,.25);
  }
  .about .differences__swiper .swiper-slide-active .swiper-slide__content:before {
    opacity: 1;
  }
  .about .payment-network-banner__card-1, .about .payment-network-banner__card-2 {
    display: none;
  }
  .about .payment-network-banner {
    padding: 90px 0;
  }
  .about .payment-network-banner__content {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
  }

  .about .nonprofit-support-banner {
    padding: 70px 0;
  }
  .about .nonprofit-support-banner .left-section {
    height: 60vw;
  }
  .about .nonprofit-support-banner .left-section__support-photo {
    width: 70%;
  }
  .about .nonprofit-support-banner .left-section__letter--1 {
    left: 8%;
  }
  .about .nonprofit-support-banner .left-section__letter--2 {
    right: 8%;
  }
  .about .nonprofit-support-banner .right-section {
    padding: 0 40px;
  }
  .about .nonprofit-support-banner .right-section__title {
    font-size: 56px;
  }
  .about .contact-banner__content {
    padding: 30px;
  }
  .about .contact-banner__chat-icon {
    display: none;
  }

  /* CHANGE */
  .about .our-values {
    padding-top: 350px;
  }
  .about .our-values__photo--1 {
    right: 48%;
    max-width: 45%;
    border-radius: 10px 10px 10px 35px;
  }
  .about .our-values__photo--2 {
    right: unset;
    max-width: 25%;
    left: 50%;
    border-radius: 10px;
  }
  .about .our-values__content {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }

  .about .our-values__swiper .swiper-button-prev, .about .our-values__swiper .swiper-button-next {
    display: none;
  }
  .about .our-values__swiper .swiper-slide__content {
    padding: 65px 20px 15px;
    text-align: center;
  }
  .about .our-values__swiper .payment-network-banner__shop-icon {
    margin: 0 auto 15px;
  }
  .about .our-values__swiper .swiper-slide-active {
    min-width: unset;
  }
  .about .our-values__swiper .swiper-slide__subtitle {
    margin-bottom: 15px;
  }
  .about .our-values__swiper .swiper-slide__title {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .about .our-values__swiper .swiper-slide-active .swiper-slide__title {
    font-size: 30px;
  }
  /* CHANGE */

  .about .payment-network-banner__description {
    font-size: 20px;
  }

}

@media screen and (max-width: 767px) {
  .blog-single-content .inner {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .blog-single .hero-banner--solutions {
    min-height: 375px;
  }

  .blog-single-content .inner:after {
    left: 0;
    width: 100%;
    min-width: 100%;
  }

  .blog-single-title {
    font-size: 38px;
  }

  .blog-single-recommended {
    margin-bottom: 60px;
  }




  .blog-hero-form-title {
    font-size: 28px;
  }

  .blog-hero-form form .button, .blog-hero-form form input {
    font-size: 20px;
  }

  .blog-hero-form form .button {
    padding: 0 30px;
  }

  .blog-hero-form form input {
    padding-left: 25px;
  }

  .blog .hero-banner .title {
    margin-bottom: 45px;
  }

  .blog-item {
    margin-right: 0;
    width: 100%;
  }

  .blog-item-title {
    font-size: 24px;
  }

  .blog-item-text {
    text-align: justify;
  }

  .blog-item-buttons {
    flex-direction: column;
  }

  .blog-item-date {
    margin-bottom: 15px;
  }

  .blog-item-caption {
    padding: 35px 20px 35px;
    text-align: center;
  }

  .blog-item:nth-child(3n) {
    margin-right: 0;
  }





  .our-clients .contact-banner {
    padding: 75px 0;
  }
  .our-clients .contact-banner__content {
    margin: 0 25px;
    padding: 45px 35px;
  }


  .about .leaders {
    padding: 75px 0;
  }

  .about .first-banner__title {
    font-size: 36px;
  }
  .about .first-banner__description {
    line-height: 1.25;
  }
  .about .differences__swiper {
    height: 412px;
  }
  .about .differences__swiper .swiper-slide {
    width: 80vw;
  }
  .about .payment-network-banner__description {
    line-height: 1.25;
  }



  .about .our-values__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .about .our-values__swiper .swiper-slide__content {
    padding: 65px 10px 15px;
  }
  .about .our-values__swiper .swiper-slide__description {
    font-size: 17px;
  }
  .about .our-values__swiper .swiper-slide__title {
    margin-bottom: 10px;
  }
  .about .our-values__swiper .swiper-slide-active .swiper-slide__icon {
    transform: translate(25%, -25%) scale(1.5);
  }
  .about .our-values__photo--1 {
    right: 35%;
    max-width: 55%;
  }
  .about .our-values__photo--2 {
    max-width: 35%;
  }




  .about .nonprofit-support-banner .right-section__title {
    font-size: 42px;
  }
  .about .contact-banner__content {
    flex-direction: column;
  }
  .about .contact-banner__text-container {
    width: unset;
  }

  .about .contact-banner__description {
    font-size: 14px;
    line-height: 1;
  }
  .about .contact-banner__button {
    margin-top: 16px;
    margin-left: 0;
  }

  .about .differences__swiper .swiper-slide__content {
    padding: 24px;
  }
  .about .differences__swiper .swiper-slide__title {
    font-size: 26px;
  }
  .about .differences {
    padding: 70px 0 40px;
  }

}

@media screen and (max-width: 576px) {

  .pagination {
    margin-top: 40px;
  }
  .pagination li {
    margin-right: 5px;
  }

  .blog-hero-form-title {
    font-size: 26px;
  }

  .blog-hero-form-subtitle {
    font-size: 18px;
  }

  .blog-hero-form form .button, .blog-hero-form form input {
    font-size: 20px;
  }

  .blog-hero-form form label {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .blog .hero-banner .title {
    margin-bottom: 35px;
  }

  .blog-hero-form form {
    flex-direction: column;
  }

  .blog-hero-form form .button {
    width: 100%;
    text-align: center;
  }




  .our-clients .contact-banner__title {
    font-size: 28px;
  }




  .about .differences__swiper .swiper-slide__content {
    padding: 25px 20px;
  }
  .about .differences__swiper .swiper-slide__title {
    font-size: 24px;
  }

  .about .our-values__title {
    font-size: 38px;
  }
  .about .our-values__swiper {
    min-height: 350px;
  }
  .about .our-values {
    padding-top: 60vw;
    padding-bottom: 50px;
  }
  .about .our-values__swiper .swiper-slide__content {
    padding: 64px 15px 15px;
  }
  .about .our-values__swiper .swiper-slide__description {
    font-size: 16px;
  }
  .about .our-values__swiper .swiper-slide__subtitle {
    font-size: 16px;
  }


  .about .first-banner__description {
    font-size: 14px;
  }
  .about .payment-network-banner {
    padding: 75px 20px;
  }
  .about .payment-network-banner__content {
    width: 100%;
  }
  .about .our-values__swiper .swiper-slide-active .swiper-slide__title {
    font-size: 24px;
  }
  .about .nonprofit-support-banner {
    padding: 30px 0;
  }
  .about .nonprofit-support-banner .left-section {
    height: 80vw;
  }
  .about .nonprofit-support-banner .left-section__support-photo {
    width: 90%;
  }
  .about .nonprofit-support-banner .left-section__letter {
    display: none;
  }
  .about .nonprofit-support-banner .right-section__title {
    font-size: 32px;
  }

  .about .advantages--proofs {
    padding-top: 50px;
  }
}

/*# sourceMappingURL=styles.css.map */


@media screen and (max-width: 374px) {
  .pagination li a {
    width: 35px;
  }

  .our-clients .clients-grid {
    padding: 60px 25px;
  }

  .our-clients .contact-banner__content {
    padding: 45px 25px;
  }
  .our-clients .contact-banner__description {
    font-size: 16px;
  }
  .our-clients .contact-banner__title {
    margin-bottom: 12px;
    font-size: 24px;
  }
}


@media screen and (min-width: 1920px) {
  .site-header .navbar-menu-option__dropdown {
    padding: 0.8vw 1.1vw 0;
  }

  .site-header .navbar-menu-option__dropdown a {
    margin-bottom: 0.8vw;
  }

  .site-header .navbar-menu-option__dropdown-container {
    padding-top: .55vw;
  }
}