@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Raleway;
  font-display: swap;
  src: url("../fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

:root {
  --dark-blue: #242e49;
  --secondary-blue: #0c52cb;
  --main-blue: #0f67fe;
  --light-blue: #edf5ff;
  --black: #1b1b1b;
  --dark-grey: #666;
  --grey: #c9c9c9;
  --light-grey: #f1f1f1;
  --white: #fff;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Inter";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Inter";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #000;
  font-size: 14px;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1441px;
}

@media (max-width: 767.98px) {
  .container {
    max-width: none;
  }
}

.container-small {
  margin: 0 auto;
  width: 100%;
  max-width: 1152px;
}

@media (max-width: 1439.98px) {
  .container-small {
    max-width: 1160px;
  }
}

@media (max-width: 1232px) {
  .container-small {
    max-width: none;
    padding: 0 40px;
  }
}

@media (max-width: 1023.98px) {
  .container-small {
    padding: 0 16px;
  }
}

h2 {
  font-family: Raleway;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}

h3 {
  font-family: Raleway;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}

@media (max-width: 480.98px) {
  h3 {
    font-size: 30px;
  }
}

.text {
  font-size: 16px;
  line-height: 150%;
}

.text p:not(:last-child) {
  margin: 0 0 34px 0;
}

.text-r {
  font-weight: 400;
}

.text-m {
  font-weight: 500;
}

.logo svg {
  width: 224px;
  height: 32px;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ibg img {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 10000;
  background-color: var(--white);
}

.header.active {
  box-shadow: none;
}

.header__menu {
  flex: 1 1 100%;
  display: flex;
  justify-content: flex-end;
}

.header__burger {
  display: none;
}

@media (max-width: 1023.98px) {
  .header__burger {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
  }

  .header__burger span {
    width: 20px;
    height: 2.4px;
    background-color: var(--black);
    border-radius: 8px;
    margin: 4px 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger span:first-child, .header__burger span:last-child {
    margin: 0;
  }

  .header__burger.active {
    background-color: var(--light-grey);
  }

  .header__burger.active span {
    position: absolute;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  .header__burger.active span:first-child {
    transform: rotate(-45deg);
  }

  .header__burger.active span:last-child {
    transform: rotate(45deg);
  }
}

.header__language {
  margin: 0 0 0 24px;
}

@media (max-width: 1023.98px) {
  .header__language {
    margin: 0;
  }
}

@media (max-width: 1439.98px) {
  .main-header__container {
    max-width: none;
    padding: 0 40px;
  }
}

@media (max-width: 1023.98px) {
  .main-header__container {
    padding: 0 16px;
  }
}

.main-header__row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header__logo svg {
  fill: var(--main-blue);
}

.menu-header__list {
  display: flex;
}

@media (max-width: 1023.98px) {
  .menu-header__list {
    width: 100%;
    flex-direction: column;
  }
}

.menu-header__item {
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.menu-header__item:last-child {
  margin-right: 0;
}

@media (max-width: 1023.98px) {
  .menu-header__item {
    padding: 12px 13px;
    height: auto;
    margin: 0;
  }

  .menu-header__item:not(:last-child) {
    border-bottom: 1px solid var(--light-grey);
  }

  .menu-header__item:nth-last-child(2) {
    border-bottom: 0;
  }

  .menu-header__item:last-child {
    padding: 24px 0;
  }

  .menu-header__item:last-child .menu-header__link_contact {
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    background-color: var(--main-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--white);
  }
}

.menu-header__link {
  font-size: 14px;
  line-height: 128.5714285714%;
  color: #1C4183;
  padding: 0 4px;
  position: relative;
}

@media (min-width: 1023.98px) {
  .menu-header__link:hover::before {
    left: 0;
  }
}

@media (max-width: 1023.98px) {
  .menu-header__link {
    color: #1B1B1B;
  }
}

/*.menu-header__link::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  left: -120%;*/
/*  bottom: -3px;*/
/*  width: 100%;*/
/*  height: 2px;*/
/*  background-color: var(--main-blue);*/
/*  -webkit-transition: all 0.3s ease 0s;*/
/*  -moz-transition: all 0.3s ease 0s;*/
/*  -ms-transition: all 0.3s ease 0s;*/
/*  -o-transition: all 0.3s ease 0s;*/
/*  transition: all 0.3s ease 0s;*/
/*}*/

.mobile-header {
  display: none;
  position: absolute;
  left: -120%;
  top: 80px;
  width: 100%;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1019607843);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: var(--white);
}

@media (max-width: 1023.98px) {
  .mobile-header {
    display: block;
  }

  .mobile-header.active {
    left: 0;
  }
}

.mobile-header__body {
  padding: 24px 0 24px 0;
}

.language__dropdown.dropdown {
  background-color: var(--light-grey);
  border-radius: 6px;
}

.language__dropdown.dropdown.active {
  border-radius: 6px;
}

.language__dropdown.dropdown.active .dropdown__button {
  border-radius: 6px 6px 0 0;
  border: 0;
  background-color: var(--light-grey);
}

.language__dropdown .dropdown__button {
  width: 61px;
  height: 34px;
  padding: 8px 30px 8px 12px;
  border-radius: 6px;
  border: 0;
  font-weight: 400;
  background-color: transparent;
}

.language__dropdown .dropdown__button::after {
  width: 0;
  height: 0;
  flex: 0;
  background: transparent;
  border-top: 5px solid var(--main-blue);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  right: 12px;
}

.language__dropdown .dropdown__button:hover {
  border: 0;
}

.language__dropdown .dropdown__button.select {
  background-color: transparent;
  border: 0;
  color: #1C4183;
}

@media (max-width: 1023.98px) {
  .language__dropdown .dropdown__button {
    display: none;
  }
}

.language__dropdown .dropdown__list {
  border-radius: 0 0 6px 6px;
  transform: translate(0, 0);
  background-color: var(--light-grey);
  box-shadow: none;
  padding: 0;
}

@media (max-width: 1023.98px) {
  .language__dropdown .dropdown__list {
    position: relative;
    display: block;
    display: flex;
    width: 100%;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #EDF5FF;
  }
}

.language__dropdown .dropdown__list-item {
  padding: 0;
  text-align: center;
  color: var(--dark-grey);
  opacity: 0.4;
  margin: 0 0 8px 0;
}

.language__dropdown .dropdown__list-item.selected {
  opacity: 1;
  color: #0F67FE;
}

@media (max-width: 1023.98px) {
  .language__dropdown .dropdown__list-item {
    margin: 0 14px;
  }
}

.footer {
  padding: 40px 0;
  background-color: var(--dark-blue);
}

@media (max-width: 1439.98px) {
  .footer__container {
    max-width: none;
    padding: 0 40px;
  }
}

@media (max-width: 1023.98px) {
  .footer__container {
    padding: 0 16px;
  }
}

.footer__row {
  display: flex;
  margin: 0 -12px;
  align-items: flex-end;
}

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

.footer__column {
  flex: 0 1 50%;
  padding: 0 12px;
}

@media (max-width: 1439.98px) {
  .footer__column {
    width: 100%;
  }
}

.footer__logo {
  display: inline-flex;
}

.footer__logo:not(:last-child) {
  margin: 0 0 16px 0;
}

.footer__logo svg {
  fill: var(--white);
}

.footer__copyright {
  cursor: default;
  display: inline-flex;
  position: relative;
  margin: 16px 0 0 0;
}

@media (max-width: 767.98px) {
  .footer__copyright {
    text-align: center;
    margin: 24px 0 0 0;
  }
}

.footer__copyright:hover .footer__copyright-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.footer__copyright-popup {
  border-radius: 4px;
  position: absolute;
  transform: translate(0, calc(-100% - 12px));
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 16px;
  background-color: #fff;
  box-shadow: 0px 6px 80px 0px rgba(0, 0, 0, 0.1490196078);
  color: #202020;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer__copyright-popup::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 8px;
  left: 16px;
  bottom: -7px;
  background: url("../img/icons/arrow-popup.svg") center no-repeat;
}

@media (max-width: 767.98px) {
  .footer__copyright-popup::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.container-small {
  font-size: 12px;
  line-height: 18px;
  color: var(--white);
}

.content-footer {
  display: flex;
}

@media (max-width: 767.98px) {
  .content-footer {
    flex-direction: column;
  }
}

.content-footer__column {
  font-size: 12px;
  line-height: 18px;
  color: var(--white);
}

@media (max-width: 767.98px) {
  .content-footer__column:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.content-footer__label {
  font-weight: 700;
}

.content-footer__link {
  display: flex;
  color: var(--white);
}

.content-footer__link_email {
  cursor: default;
}

.menu-footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  transform: translate(0, 24px);
  margin: 0 -12px;
}

@media (max-width: 1439.98px) {
  .menu-footer__list {
    justify-content: flex-start;
  }
}

.menu-footer__item {
  flex: 0 1 50%;
  margin: 0 0 24px 0;
  max-width: 244px;
  display: flex;
  height: 26px;
  padding: 0 12px;
}

.menu-footer__item:nth-child(n-1) .menu-footer__link::before {
  height: 2.5px;
}

@media (max-width: 480.98px) {
  .menu-footer__item {
    flex: 1 1 100%;
  }
}

.menu-footer__item-link {
  display: inline-flex;
  overflow: hidden;
}

.menu-footer__link {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--white);
  padding: 0 4px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 1023.98px) {
  .menu-footer__link:hover::before {
    left: 0;
  }
}

.menu-footer__link::before {
  position: absolute;
  content: "";
  left: -120%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-blue);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main {
  height: 100dvh;
  padding: 80px 0 0 0;
  display: flex;
  flex-direction: column;
}

.main__inner {
  flex: 1 1 100%;
  position: relative;
}

.main__container {
  height: 100%;
  position: relative;
  z-index: 1;
}

.main__row {
  height: 100%;
}

@media (max-width: 767.98px) {
  .main__row {
    display: flex;
    flex-direction: column;
  }
}

.main__image-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .main__image {
    display: none;
  }
}

.main__image_mob {
  display: none;
}

@media (max-width: 767.98px) {
  .main__image_mob {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.body-main {
  height: 100%;
}

@media (max-width: 767.98px) {
  .body-main {
    order: 1;
  }
}

.body-main__container {
  height: 100%;
}

@media (max-width: 1439.98px) {
  .body-main__container {
    max-width: none;
    padding: 0 40px;
  }
}

@media (max-width: 1023.98px) {
  .body-main__container {
    padding: 0 16px;
  }
}

.body-main__row {
  height: 100%;
}

.body-main__content {
  height: 100%;
  padding: 0 24px 0 0;
  width: 51.04166666%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1439.98px) {
  .body-main__content {
    width: 51.272%;
  }
}

@media (max-width: 767.98px) {
  .body-main__content {
    width: 100%;
    padding: 60px 0;
    justify-content: flex-start;
  }
}

.body-main__title {
  color: var(--white);
}

.body-main__title span {
  color: var(--main-blue);
}

.body-main__title:not(:last-child) {
  margin: 0 0 40px 0;
}

.body-main__btn {
  padding: 5px 36px;
  height: 52px;
  border-radius: 8px;
  background-color: var(--main-blue);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1023.98px) {
  .body-main__btn:hover {
    background-color: var(--secondary-blue);
  }
}

.about {
  padding: 80px 0;
  background-color: var(--dark-blue);
}

.about__title {
  color: var(--white);
}

.about__title:not(:last-child) {
  margin: 0 0 34px 0;
}

.about__text {
  color: var(--white);
}

.solutions {
  background: linear-gradient(280.64deg, #D0E6FF 0%, #EDF5FF 100%);
  padding: 80px 0 56px 0;
}

@media (max-width: 767.98px) {
  .solutions {
    padding: 80px 0 65px 0;
  }
}

.solutions__top:not(:last-child) {
  margin: 0 0 60px 0;
}

.solutions__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

@media (max-width: 767.98px) {
  .solutions__row {
    margin: 0 -7.5px;
  }
}

.solutions__column {
  flex: 0 1 25%;
  padding: 0 12px;
  margin: 0 0 24px 0;
}

.solutions__column:nth-child(5) br, .solutions__column:nth-child(8) br {
  display: none;
}

@media (max-width: 430px) {
  .solutions__column:nth-child(5) br, .solutions__column:nth-child(8) br {
    display: block;
  }
}

@media (max-width: 320px) {
  .solutions__column:nth-child(5) br, .solutions__column:nth-child(8) br {
    display: none;
  }
}

@media (max-width: 1200px) {
  .solutions__column {
    flex: 0 1 33.333%;
  }
}

@media (max-width: 1023.98px) {
  .solutions__column {
    flex: 0 1 50%;
  }
}

@media (max-width: 767.98px) {
  .solutions__column {
    padding: 0 7.5px;
    margin: 0 0 15px 0;
  }
}

@media (max-width: 320px) {
  .solutions__column {
    flex: 1 1 100%;
  }

  .solutions__column br {
    display: none;
  }
}

.top-solutions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .top-solutions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.top-solutions__title {
  color: var(--black);
  margin: 0 20px 0 0;
  line-height: 117.40625%;
}

@media (max-width: 767.98px) {
  .top-solutions__title {
    margin: 0 0 16px 0;
  }
}

.top-solutions__text {
  max-width: 448px;
  text-align: right;
  font-size: 14px;
  line-height: 171.4285714286%;
  color: var(--black);
}

@media (max-width: 767.98px) {
  .top-solutions__text {
    text-align: left;
    max-width: none;
  }
}

.item-solutions {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--white);
  padding: 24px;
  height: 100%;
  min-height: 168px;
}

@media (max-width: 430px) {
  .item-solutions {
    min-height: 188px;
  }
}

@media (max-width: 320px) {
  .item-solutions {
    min-height: 160px;
  }
}

.item-solutions__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--light-blue);
}

.item-solutions__icon:not(:last-child) {
  margin: 0 0 24px 0;
}

.item-solutions__icon svg {
  width: 25px;
  height: 24px;
}

.item-solutions__title {
  font-weight: 600;
  line-height: 142.8571428571%;
  color: var(--dark-blue);
  text-transform: uppercase;
}

.benefits {
  background-color: var(--dark-blue);
  padding: 80px 0 56px 0;
}

@media (max-width: 480.98px) {
  .benefits {
    text-align: center;
  }
}

.benefits__title {
  color: var(--white);
  line-height: 117.40625%;
}

.benefits__title:not(:last-child) {
  margin: 0 0 60px 0;
}

.benefits__row {
  display: flex;
  margin: 0 -12px;
}

@media (max-width: 767.98px) {
  .benefits__row {
    flex-wrap: wrap;
  }
}

.benefits__column {
  padding: 0 12px;
  margin: 0 0 24px 0;
  flex: 0 1 25%;
}

@media (max-width: 767.98px) {
  .benefits__column {
    flex: 0 0 50%;
  }
}

@media (max-width: 480.98px) {
  .benefits__column {
    flex: 1 1 100%;
  }
}

@media (max-width: 480.98px) {
  .item-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.item-benefits__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.item-benefits__icon:not(:last-child) {
  margin: 0 0 16px 0;
}

.item-benefits__icon svg {
  width: 100%;
  height: 100%;
}

.item-benefits__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  color: var(--white);
  text-transform: uppercase;
}

.resellers {
  background-color: var(--white);
}

.resellers__row {
  position: relative;
  min-height: 520px;
}

@media (max-width: 900px) {
  .resellers__row {
    display: flex;
    flex-direction: column;
    min-height: none;
  }
}

.resellers__image-block {
  position: absolute;
  height: 100%;
  width: 44.028%;
  top: 0;
}

@media (max-width: 900px) {
  .resellers__image-block {
    position: relative;
    width: 100%;
    height: 440px;
    flex: 0 0 440px;
  }
}

.resellers__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.body-resellers__row {
  display: flex;
  justify-content: flex-end;
}

.body-resellers__content {
  width: 53.125%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 24px;
}

@media (max-width: 900px) {
  .body-resellers__content {
    width: 100%;
    padding: 80px 0;
  }
}

.body-resellers__title {
  line-height: 117.40625%;
  color: var(--dark-blue);
}

.body-resellers__title:not(:last-child) {
  margin: 0 0 10px 0;
}


.body-resellers__text {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 171.4285714286%;
}

.body-resellers__text:not(:last-child) {
  margin: 0 0 30px 0;
}

.body-resellers__text-blue, .body-resellers__text-blue a {
  color: #0F67FE;
  font-weight: 600;
}

.body-resellers__text-blue:not(:last-child) {
  margin: 0 0 30px 0;
}

.body-resellers__list {
  width: 100%;
}

.body-resellers__item:not(:last-child) {
  margin: 0 0 16px 0;
}

.body-resellers__adress:not(:last-child) {
  margin: 0 0 5px 0;
}

.item-body-resellers {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

.item-body-resellers__content {
  display: block;
}

.item-body-resellers__content p {
  margin: 4px 0;
}


.nobreak {
  display: inline;
  white-space: nowrap;
}

.item-body-resellers__icon {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 16px 0 0;
}

.item-body-resellers__icon svg {
  width: 100%;
  height: 100%;
  fill: #0F67FE;
}

.reseller {
  background-color: var(--secondary-blue);
  padding: 60px 0;
}

.reseller__container {
  max-width: 1152px;
}

@media (max-width: 1232px) {
  .reseller__container {
    max-width: none;
  }
}

.reseller__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.reseller__content {
  max-width: 711px;
  margin: 0 20px 0 0;
}

@media (max-width: 992.98px) {
  .reseller__content {
    max-width: none;
    margin: 0 0 40px 0;
  }
}

@media (max-width: 480.98px) {
  .reseller__content {
    text-align: center;
  }
}

.reseller__title {
  color: var(--white);
  line-height: 117.40625%;
}

.reseller__title:not(:last-child) {
  margin: 0 0 18px 0;
}

@media (max-width: 992.98px) {
  .reseller__title:not(:last-child) {
    margin: 0 0 24px 0;
  }
}

.reseller__text {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.reseller__text_bold {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.reseller__text_bold:not(:last-child) {
  margin: 0 0 12px 0;
}

.reseller__btn {
  flex: 0 0 270px;
  width: 270px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 18px;
  font-weight: 600;
  line-height: 155.5555555556%;
  text-transform: uppercase;
  color: var(--main-blue);
  margin: 0 0 0 24px;
  padding: 5px 10px;
}

@media (max-width: 992.98px) {
  .reseller__btn {
    flex: auto;
    margin: 0;
  }
}

@media (max-width: 480.98px) {
  .reseller__btn {
    width: 100%;
  }
}

@media (min-width: 1023.98px) {
  .reseller__btn:hover {
    background-color: #DFECFC;
  }
}

.vendors {
  background-color: var(--dark-blue);
}

.vendors__row {
  position: relative;
  min-height: 508px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vendors__image-block {
  position: absolute;
  height: 100%;
  width: 44.028%;
  top: 0;
  right: 0;
}

.vendors__image-block-2 {
  position: absolute;
  height: 100%;
  width: 50.028%;
  top: 0%;
  right: 0;
}

@media (max-width: 900px) {
  .vendors__image-block {
    position: relative;
    width: 100%;
    order: 2;
    height: 508px;
    flex: 0 0 508px;
  }

  .vendors__image-block-2 {
    position: relative;
    width: 100%;
    order: 2;
    height: 670px;
    flex: 0 0 670px;
  }

  .item-body-vendors-2 {
    padding-left: 17px;
  }
}

.vendors__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vendors__body {
  height: 100%;
}

.body-vendors {
  height: 100%;
  padding: 80px 0;
}

.body-vendors-2 {
  height: 100%;
  padding: 80px 0;
}

@media (max-width: 900px) {
  .body-vendors {
    order: 1;
  }

  .body-vendors-2 {
    order: 1;
    padding-top: 80px;
    padding-bottom: 0px;
  }
}

.body-vendors__container {
  height: 100%;
}

.body-vendors__row {
  height: 100%;
}

.body-vendors__content {
  height: 100%;
  padding: 0 24px 0 0;
  width: 53.125%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .body-vendors__content {
    width: 100%;
    padding: 0;
  }
}

.body-vendors__title {
  color: var(--white);
  line-height: 117.40625%;
}

.body-vendors__title:not(:last-child) {
  margin: 0 0 10px 0;
}

.body-vendors-partners__title {
  color: var(--white);
  line-height: 117.40625%;
}

.body-vendors-partners__title:not(:last-child) {
  margin: 0 0 20px 0;
}

.body-vendors__text {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.body-vendors__text:not(:last-child) {
  margin: 0 0 30px 0;
}

.body-vendors__text_bold {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.body-vendors__text_bold:not(:last-child) {
  margin: 0 0 30px 0;
}

.body-vendors__list {
  width: 100%;
}

.body-vendors__item:not(:last-child) {
  margin: 0 0 16px 0;
}

.body-vendors__adress:not(:last-child) {
  margin: 0 0 5px 0;
}

.item-body-vendors {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 128.5714285714%;
  color: var(--white);
}

.item-body-vendors {
  display: flex;
  align-items: flex-start;
}

.item-body-vendors__content {
  display: block;
}

.item-body-vendors__content p {
  margin: 4px 0;
}

.item-body-vendors-2 {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 128.5714285714%;
  color: var(--white);
}

.item-body-vendors-2 {
  display: flex;
  align-items: flex-start;
}

.item-body-vendors__content {
  display: block;
}

.item-body-vendors__content p {
  margin: 4px 0;
}

.item-body-vendors__icon {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 16px 0 0;
}

.item-body-vendors__icon svg {
  width: 100%;
  height: 100%;
  fill: #0F67FE;
}

.trust {
  padding: 24px 0;
  background-color: var(--white);
}

.trust__image-block {
  position: relative;
  height: 120px;
}

.trust__image-block-2 {
  position: relative;
  height: 20px;
}

.trust__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
}

@media (max-width: 1232px) {
  .trust__image {
    width: 110%;
    left: -5%;
  }
}

@media (max-width: 1023.98px) {
  .trust__image {
    width: 115%;
    left: -7.5%;
  }
}

.contact {
  padding: 40px 0 80px 0;
  background: linear-gradient(360deg, #D0E6FF 0%, #F5F9FF 81.92%, #FFFFFF 94.29%);
}

.form-page-contact {
  background: transparent;
}

.contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  text-align: center;
  color: var(--black);
  line-height: 117.40625%;
}

.contact__title:not(:last-child) {
  margin: 0 0 20px 0;
}

@media (max-width: 480.98px) {
  .contact__title {
    line-height: 48px;
  }

  .contact__title:not(:last-child) {
    margin: 0 0 16px 0;
  }
}

.contact__subtitle {
  text-align: center;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.contact__subtitle:not(:last-child) {
  margin: 0 0 60px 0;
}

@media (max-width: 480.98px) {
  .contact__subtitle:not(:last-child) {
    margin: 0 0 26px 0;
  }
}

.form-contact {
  width: 100%;
  max-width: 490px;
  border-radius: 16px;
  background-color: var(--white);
  padding: 32px 23px;
}

@media (max-width: 1023.98px) {
  .form-contact {
    max-width: none;
  }
}

.form-contact__body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9px;
}

.form-contact__item {
  padding: 0 9px;
  margin: 0 0 18px 0;
  flex: 1 1 100%;
  position: relative;
}

.form-contact__item_dropdown.error .form-contact__error {
  transform: translate(0, 17px);
}

.form-contact__item_dropdown.error .dropdown__button {
  border: 1px solid #FE0F0F;
}

.form-contact__item.error .form-contact__input {
  border: 1px solid #FE0F0F;
}

.form-contact__item.error .form-contact__error {
  display: block;
}

.form-contact__item_small {
  flex: 0 1 50%;
}

.form-contact__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--black);
}

.form-contact__label:not(:last-child) {
  margin: 0 0 8px 0;
}

.form-contact__input {
  height: 44px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--white);
  overflow: hidden;
  background-color: var(--light-grey);
  padding: 13px 12px;
  font-size: 14px;
  line-height: 18px;
  resize: none;
  color: var(--black);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form-contact__input::placeholder {
  color: var(--grey);
}

.form-contact__input:focus {
  background-color: var(--white);
  border: 1px solid var(--main-blue);
}

.form-contact__input.active {
  background-color: var(--white);
  border: 1px solid var(--grey);
  color: var(--black);
}

@media (min-width: 1023.98px) {
  .form-contact__input:hover {
    border: 1px solid var(--main-blue);
  }
}

.form-contact__btn {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--main-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1023.98px) {
  .form-contact__btn:hover {
    background-color: var(--secondary-blue);
  }
}

.form-contact__error {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  line-height: 18px;
  color: #FE0F0F;
  transform: translate(10px, 17px);
}

.dropdown {
  position: relative;
}

.dropdown.active .dropdown__button {
  background-color: var(--white);
  border: 1px solid var(--main-blue);
}

.dropdown.active .dropdown__button::after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown.active .dropdown__list {
  display: block;
}

.dropdown__button {
  height: 44px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--white);
  overflow: hidden;
  background-color: var(--light-grey);
  padding: 13px 44px 13px 12px;
  font-size: 14px;
  line-height: 18px;
  resize: none;
  text-align: left;
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.dropdown__button.select {
  background-color: var(--white);
  border: 1px solid var(--grey);
  color: var(--black);
}

.dropdown__button::after {
  position: absolute;
  content: "";
  background: url("../img/icons/arrow.svg") center no-repeat;
  background-size: contain;
  width: 14px;
  flex: 0 0 14px;
  height: 8px;
  right: 18px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1023.98px) {
  .dropdown__button:hover {
    border: 1px solid var(--main-blue);
  }
}

.dropdown__list {
  display: none;
  position: absolute;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  transform: translate(0, 4px);
  background-color: var(--white);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 1;
  padding: 8px;
}

.dropdown__list-item {
  padding: 13px 12px;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.dropdown__list-item:not(:last-child) {
  border-bottom: 1px solid var(--light-grey);
}

@media (min-width: 1023.98px) {
  .dropdown__list-item:hover {
    background-color: var(--light-grey);
  }
}

.dropdown__input-hidden {
  display: none;
}

.popup {
  background: rgba(36, 46, 73, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow-y: auto;
}

.popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  width: 100%;
  max-width: 328px;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
}

@media (max-width: 400px) {
  .popup__body {
    max-width: none;
  }
}

.popup__content {
  text-align: center;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup__close {
  top: 15px;
  right: 15px;
  position: absolute;
}

@media (min-width: 1023.98px) {
  .popup__close:hover svg {
    fill: #1b1b1b;
  }
}

.popup__close svg {
  width: 14px;
  height: 14px;
  fill: #D9D9D9;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #EDF5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.popup__icon:not(:last-child) {
  margin: 0 0 24px 0;
}

.popup__icon img {
  max-width: 100%;
}

.popup__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #0F67FE;
  text-transform: uppercase;
}

.popup__title:not(:last-child) {
  margin: 0 0 24px 0;
}

.popup__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #242E49;
  max-width: 202px;
}

.vendors-page {
  padding: 80px 0 0 0;
}

.vendors-page__hero {
  position: relative;
}

.vendors-page__hero-bg {
  height: 280px;
}

.vendors-page__hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vendors-page__hero-inner h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.vendors-page__about {
  background: linear-gradient(315deg, #d0e6ff 0%, #edf5ff 100%);
  padding: 80px 0;
}

.vendor-page__about {
  background: #242e49;
}

.vendors-page__about .container-small {
  color: #1B1B1B;
}

.vendor-page__about .container-small {
  color: #fff;
}

.vendors-page__about h3 {
  margin-bottom: 34px;
}

.vendors-page__list {
  padding-top: 80px;
  padding-bottom: 80px;
}

.vendors-page__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.vendors-card {
  background: #edf5ff;
  border-radius: 12px;
  padding: 24px;
  width: calc(100% / 3 - 16px);
  color: #1B1B1B;
}

.vendors-card__logo {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vendors-card__logo img {
  max-width: 200px;
  max-height: 74px;
}

.vendors-card__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: #242e49;
}

.vendors-card__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
}

.vendors-card__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: #0f67fe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.vendors-page__bottom {
  background: #0c52cb;
  padding: 60px 0;
}

.vendors-page__bottom-title {
  margin-bottom: 18px;
}

.vendors-page__bottom-text p {
  font-size: 14px;
  line-height: 143%;
}

.vendors-page__bottom-text p:not(:last-child) {
  margin-bottom: 12px;
}

.vendor-page__sections .container-small {
  color: #1b1b1b;
}

.vendor-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 140px;
}

.vendor-section:last-child {
  margin-bottom: 0;
}

.vendor-section--image-right {
  flex-direction: row-reverse;
}

.vendor-section__image {
  flex: 0 0 calc(50% - 75px);
}

.vendor-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.vendor-section__content {
  flex: 0 0 calc(50% - 75px);
}

.vendor-section__title {
  margin-bottom: 16px;
}

.vendor-section__intro {
  margin-bottom: 16px;
}

.vendor-section__subtitle {
  margin-bottom: 20px;
  font-weight: 600;
}

.vendor-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vendor-section__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.vendor-section__bullet-icon {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.vendor-section__bullet-text {
  font-size: 14px;
  line-height: 150%;
}

.vendor-page__form {
  padding: 80px 0;
  background: linear-gradient(360deg, #d0e6ff 0%, #f5f9ff 81.92%, #fff 94.29%);
}

.vendor-page__form .container-small {
  color: #1b1b1b;
}

.vendor-page__form-title {
  text-align: center;
  margin-bottom: 20px;
}

.vendor-page__form-subtitle {
  text-align: center;
  margin-bottom: 60px;
}

.vendor-page__form-wrapper {
  max-width: 490px;
  margin: 0 auto;
}

.vendor-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px 36px;
  box-shadow: 0 16px 40px rgba(10, 39, 92, 0.15);
}

.vendor-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.vendor-form__row_two .vendor-form__field {
  flex: 0 0 calc(50% - 8px);
}

.vendor-form__field {
  width: 100%;
}

.vendor-form__label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #7a8195;
}

.vendor-form__input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #dde5f7;
  background: #f6f8ff;
  font-size: 14px;
}

.vendor-form__input::placeholder {
  color: #aeb7cf;
}

.vendor-form__button {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: #0f67fe;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}

.vendor-form__button:hover {
  background: #0c52cb;
}

.vendor-page__bottom {
  background: #0c52cb;
  padding: 60px 0;
  color: #ffffff;
}

.vendor-page__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.vendor-page__bottom-texts {
  max-width: 710px;
}

.vendor-page__bottom-title {
  margin-bottom: 12px;
}

.vendor-page__bottom-text p {
  font-size: 14px;
  line-height: 150%;
}

.vendor-page__bottom-text p:not(:last-child) {
  margin-bottom: 8px;
}

.vendor-page__bottom-button-wrap {
  flex-shrink: 0;
}

.vendor-page__bottom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  background: #ffffff;
  color: #0f67fe;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 24px;
  width: 270px;
  height: 52px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .vendors-card {
    width: 100%;
  }
}


.resellers-page {
  padding: 80px 0 0 0;
}

.resellers-page__hero {
  position: relative;
}

.resellers-page__hero-bg {
  height: 280px;
}

.resellers-page__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resellers-page__hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-single-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}

.resellers-page__hero-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.resellers-page__top {
  background: linear-gradient(315deg, #d0e6ff 0%, #edf5ff 100%);
  padding: 40px 0;
}

.resellers-page__top-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #1b1b1b;
  margin: 0 auto 32px;
}

.resellers-page__top-text.mb-0 {
  margin-bottom: 0;
}

.resellers-filter {
  border-radius: 16px;
  padding: 32px 23px;
  margin: 0 auto;
  background: #fff;
}

.resellers-filter__inner {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.resellers-filter__dropdown {
  flex: 1 1 0;
  position: relative;
}

.resellers-filter .dropdown__button {
  background: #f9f9f9;
  /*width: 100%;*/
  /*height: 58px;*/
  /*padding: 0 18px;*/
  /*border: none;*/
  /*background: transparent;*/
  /*text-align: left;*/
  /*font-size: 14px;*/
  /*color: #1b1b1b;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*cursor: pointer;*/
}

.resellers-filter .dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 39, 92, 0.16);
  margin-top: 8px;
  z-index: 5;
}

.resellers-filter .dropdown__list-item {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.resellers-filter .dropdown__list-item:hover {
  background: #f2f7ff;
}

.dropdown-country__flag img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.dropdown-country__label {
  white-space: nowrap;
}

.dropdown-vendor__logo {
  height: 26px;
  display: flex;
  align-items: center;
}

.dropdown-vendor__logo img {
  max-height: 26px;
  max-width: 120px;
  display: block;
}

.dropdown-vendor__label {
  white-space: nowrap;
}

.resellers-filter__button {
  flex: 0 0 216px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 20px;
  background: #0f67fe;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 767px) {
  .resellers-filter__inner {
    flex-direction: column;
  }

  .resellers-filter__button {
    width: 100%;
    height: 52px;
    flex: none;
  }
}

.resellers-page__list {
  padding: 80px 0 0;
}

.resellers-page__section-title {
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #1b1b1b;
}

.resellers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px 40px;
}

.reseller-card {
  font-size: 14px;
  line-height: 150%;
  color: #1b1b1b;
}

.reseller-card__company {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.reseller-card__line {
  font-weight: 400;
}

.resellers-page__bottom {
  background: #0c52cb;
  padding: 60px 0;
  color: #ffffff;
  margin-top: 80px;
}

.resellers-page__bottom-content {
  text-align: center;
}

.resellers-page__bottom-title {
  margin-bottom: 18px;
}

.resellers-page__bottom-text p {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
}

@media (max-width: 1200px) {
  .resellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .resellers-page__hero-bg {
    height: 220px;
  }

  .resellers-page__hero-title {
    font-size: 24px;
  }

  .resellers-filter__inner {
    flex-direction: column;
  }

  .resellers-filter__select-wrap {
    border-right: none;
    border-bottom: 1px solid #e2e8f7;
  }

  .resellers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 480px) {
  .resellers-grid {
    grid-template-columns: 1fr;
  }
}

.careers-page__list {
  padding: 80px 0;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.career-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fafafa;
  border-radius: 12px;
  padding: 24px;
  color: #1b1b1b;
}

.career-card__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: #242e49;
  margin-bottom: 12px;
}

.career-card__text {
  font-size: 14px;
  line-height: 171%;
}

.career-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: #0f67fe;
}

@media (max-width: 991px) {
  .career-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .career-card {
    flex: 0 0 100%;
  }
}

.career-page__content {
  padding: 60px 0 0;
}

.career-page__vacancy-header {
  margin-bottom: 24px;
}

.career-page__vacancy-title {
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #1b1b1b;
}

.career-page__vacancy-country {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.career-page__country-flag img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  display: block;
}

.career-page__country-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: #0f67fe;
}

.career-page__intro {
  margin-bottom: 32px;
  color: #1b1b1b;
}

.career-page__intro h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #0f67fe;
  margin-bottom: 24px;
}

.career-page__intro h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 218%;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.career-page__button-wrap {
  margin-top: 24px;
  text-align: center;
}

.career-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 48px;
  height: 48px;
  background: #0f67fe;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  color: #fff;
}

.resellers-page__back-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
}

.news-card {
  padding: 0;
  background: #f8fbff;
  border-radius: 12px;
  overflow: hidden;
}

.news-card__image {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .career-card__title,
.news-card .career-card__text,
.news-card .career-card__link {
  padding: 0 24px;
}

.news-card .career-card__title {
  padding-top: 18px;
}

.news-card .career-card__link {
  padding-bottom: 18px;
}

.news-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.news-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
}

.news-pagination__item .page-numbers.current {
  background: #0f67fe;
  color: #ffffff;
}

.news-single__back {
  background: #0c52cb;
  padding: 16px 0;
  color: #ffffff;
}

.news-single__back-inner {
  display: flex;
  align-items: center;
}

.news-single__content {
  background: #ffffff;
  color: #1b1b1b;
  padding: 60px 0 30px;
}

.news-single__body {
  color: #1b1b1b;
}

.news-single__body img {
  width: 100%;
  height: auto;
  margin: 24px 0;
}

.news-single__body a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #0f67fe;
}

.news-single__body p:not(:last-child) {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1b1b1b;
}

.news-single__other {
  padding: 80px 0;
  background: linear-gradient(360deg, #d0e6ff 0%, #f5f9ff 81.92%, #fff 94.29%);
}

.news-single__other + .resellers-page__bottom {
  margin-top: 0;
}

.news-single__other .container-small {
  color: #1b1b1b;
}

.news-single__back-button {
  margin-top: 24px;
  text-align: right;
}

.news-single__back-button .career-page__button {
  display: inline-flex;
}

.other-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.form-page__content {
  padding: 80px 0 40px;
}

.form-page__content-inner {
  color: #1b1b1b;
  text-align: center;
}

.form-page__content-inner h3 {
  margin-bottom: 24px;
}

.form-page-contact .form-contact {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  color: #1b1b1b;
}

@media (max-width: 991px) {
  .other-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .form-contact__item_small {
    flex: 0 1 100%;
  }

  .news-single__other {
    padding: 40px 0;
  }

  .vendor-section {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .vendor-section__image {
    flex: 0 0 100%;
  }

  .vendor-page__bottom-content {
    flex-direction: column;
  }
}

.success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.success-modal--active {
  display: flex;
}

.success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 46, 73, 0.4);
}

.success-modal__inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  max-width: 328px;
  width: 100%;
  text-align: center;
}

.success-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  margin: 0 auto 24px;
  background: #edf5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 111%;
  text-transform: uppercase;
  text-align: center;
  color: #0f67fe;
  margin-bottom: 24px;
}

.success-modal__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: #242e49;
}

.success-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .success-modal__inner {
    margin: 0 16px;
    padding: 28px 24px 30px;
  }
}

.menu-header__item_has-sub{
  position: relative;
}

.menu-header__toggle{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.3;
  color: #1C4183;
  position: relative;
  cursor: pointer;
}

.menu-header__arrow{
  width: 7px;
  height: 7px;
  border-left: 1.5px solid #1C4183;
  border-bottom: 1.5px solid #1C4183;
  transform: rotate(-45deg);
  margin-top: 2px;
}

.menu-header__dropdown{
  position: absolute;
  top: 100%;
  left: -20px;
  width: 100%;
  min-width: 340px;
  max-width: 1120px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  transform-origin: top center;
  z-index: 100;
  border-radius: 0 0 8px 8px;
}
.menu-header__dropdown.menu-dropdown--resellers{
  min-width: 680px;
  left: -200px;
}
.menu-header__dropdown.menu-dropdown--careers{
  min-width: 680px;
  left: -350px;
}
.menu-header__dropdown.menu-dropdown--solutions{
  min-width: 680px;
  left: -200px;
}
.menu-header__dropdown.menu-dropdown--careers .menu-dropdown__inner_two-cols{
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
}

.menu-header__item_has-sub:hover .menu-header__dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-header__item_has-sub .menu-header__link{
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
}
.menu-header__item_has-sub:hover .menu-header__link{
  color: #0f67fe;
  border-bottom: 2px solid #0f67fe;
}

.menu-dropdown__inner{
  padding: 8px;
}

.menu-dropdown__list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-dropdown__item + .menu-dropdown__item{
  border-top: 1px solid #edf1fb;
}
.menu-dropdown__link{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #1b1b1b;

}
.menu-dropdown__icon{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-dropdown__inner_two-cols{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
}
.menu-dropdown__inner_two-cols .menu-dropdown__col_left{
  padding: 8px;
}
.menu-dropdown__inner_two-cols .menu-dropdown__col_right{
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  background: #f5f9ff;
}

.menu-dropdown__vendors{
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-dropdown__vendor{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  height: 80px;
  border-bottom: 1px solid #fff;
}
.menu-dropdown__vendor img{
  max-height: 36px;
  max-width: 160px;
}
.menu-dropdown__item:hover{
  background: #edf5ff;
  border-radius: 8px;
}
.menu-dropdown__vendor:hover ~ .menu-dropdown__vendor{
  filter: grayscale(1);
}
.menu-dropdown__countries{
  padding: 8px;
}
.menu-dropdown__countries .menu-dropdown__country-link{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #1b1b1b;
  padding: 12px;
}
.careers-grid_menu{
  gap: 12px;
  padding: 8px;
}
.careers-grid_menu .career-card{
  width: calc(50% - 6px);
  flex: none;
  background: #fff;
}
.careers-menu__all-btn{
  width: calc(100% - 16px);
  margin: 8px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 20px;
  background: #0f67fe;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

@media (max-width: 1023.98px){
  .menu-header__item_has-sub .menu-header__dropdown{
    left: 0;
  }
  .menu-dropdown__inner{
    padding: 8px 0 0;
  }
  .menu-dropdown__inner_two-cols{
    flex-direction: column;
    display: flex;
  }
  .menu-header__dropdown{
    min-width: unset !important;
  }
  .careers-grid_menu .career-card{
    width: 100%;
  }
}