@import url("../../../css2");
@import url("../../../css2-1");
:root {
  --primary-color: #185ABD;
  --blue-500: #0D69F0;
  --blue-100: rgba(239, 251, 255, 0.85);
  --main-text-color-1: rgba(57, 94, 129, 0.9);
  --bubble-color: #0B67F0D8;
  --bubble-shadow: rgba(11, 103, 240, 0.6);
  --main-text-color-2: #0E496A;
  --links-color-main: #0BB9F0;
  --links-color-active: #2C9AFF;
  --links-color-visited: #89B4DC;
  --link-in-text-hover: #096FCD;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-green-100: #C5FF00;
  --color-green-500: #8BEB3F;
  --main-button-hover: #D7F5FF;
  --disabled-background: #C2CFD6;
  --disabled-content-color: #A4B3C1;
  --color-blue-first-rgba: rgba(0, 191, 255, 0.2);
  --color-blue-second-rgba: rgba(0, 224, 255, 0);
  --color-blue-third-rgba: rgba(125, 224, 255, 0.1);
  --container-width: 1440px;
  --container-width-lg: 1076px;
  --container-width-md: 842px;
  --container-width-md-1: 588px;
}

html {
  font-size: 12px;
  line-height: 1.5;
  background-color: var(--color-white);
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  min-height: 100vh;
  transition: 0.3s ease-out;
  max-width: 100%;
  width: 100%;
  overscroll-behavior: none;
  overflow-y: scroll;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
}

.wrapper::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .wrapper {
    overflow: hidden;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 550px) {
  .mobile {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .desktop {
    display: none;
  }
}

.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

.underlined {
  text-decoration: underline;
}
.underlined.link {
  color: var(--color-white);
}
.underlined.link:visited {
  color: var(--color-white);
}
.underlined.link:active, .underlined.link:hover {
  color: var(--color-secondary);
}

.custom-radio-button {
  display: flex;
  flex-direction: column;
}
.custom-radio-button input[type=radio] {
  position: absolute;
  opacity: 0;
}
.custom-radio-button input[type=radio] + .custom-radio-button__label:before {
  margin-top: 0.5rem;
  content: "";
  background: var(--color-white);
  border-radius: 100%;
  border: 2px solid var(--main-text-color-2);
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  top: 3px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.custom-radio-button input[type=radio]:checked + .custom-radio-button__label:before {
  background-color: var(--color-green-100);
  box-shadow: inset 0 0 0 3px var(--color-white);
}
.custom-radio-button input[type=radio]:focus + .custom-radio-button__label:before {
  outline: none;
  border-color: var(--main-text-color-2);
}
.custom-radio-button input[type=radio]:disabled + .custom-radio-button__label:before {
  box-shadow: inset 0 0 0 4px var(--color-white);
  border-color: var(--main-text-color-2);
  background: var(--color-white);
}
.custom-radio-button input[type=radio] + .custom-radio-button__label:empty:before {
  margin-right: 0;
}
.custom-radio-button__label {
  display: flex;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-size: 23px;
  line-height: 31px;
  letter-spacing: 0.05em;
  color: var(--main-text-color-2);
}
.custom-radio-button__label-signature {
  margin-left: 2.25rem;
  display: flex;
  flex-direction: column;
}
.custom-radio-button__signature-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.75rem;
  letter-spacing: 0;
}
.custom-radio-button__signature-description {
  font-size: 1.5rem;
  line-height: 2.0625rem;
  letter-spacing: 0.03em;
}
@media (max-width: 1440px) {
  .custom-radio-button:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 1024px) {
  .custom-radio-button input[type=radio] + .custom-radio-button__label:before {
    top: -2px;
    width: 1.375rem;
    height: 1.375rem;
  }
  .custom-radio-button__label:before {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
  }
  .custom-radio-button__label-signature {
    margin-left: 1.375rem;
  }
  .custom-radio-button__signature-title {
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
  .custom-radio-button__signature-description {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .custom-radio-button__link {
    margin-top: 0.5rem;
    margin-left: 2.75rem;
  }
  .custom-radio-button__link.main-link {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (max-width: 550px) {
  .custom-radio-button:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .custom-radio-button input[type=radio] + .custom-radio-button__label:before {
    width: 1rem;
    height: 1rem;
  }
  .custom-radio-button__label-signature {
    margin-left: 0.75rem;
  }
  .custom-radio-button__signature-title {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .custom-radio-button__signature-description {
    font-size: 0.625rem;
    line-height: 0.875rem;
  }
}

.global-custom-checkbox {
  display: block;
  margin-right: 0.75rem;
}
.global-custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.global-custom-checkbox__label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.global-custom-checkbox__label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--main-text-color-2);
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 2px;
}
.global-custom-checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 6px;
  height: 14px;
  border: solid var(--main-text-color-2);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .global-custom-checkbox {
    margin-right: 0.45rem;
  }
  .global-custom-checkbox__label:before {
    top: -3px;
    padding: 7px;
  }
  .global-custom-checkbox input:checked + label:after {
    top: 0;
    left: 5px;
    width: 6px;
    height: 10px;
    border-width: 0 1px 1px 0;
  }
}
@media (max-width: 768px) {
  .global-custom-checkbox {
    margin-right: 0.5rem;
  }
}
@media (max-width: 550px) {
  .global-custom-checkbox {
    margin-right: 0.5rem;
  }
  .global-custom-checkbox__label {
    height: 0.75rem;
  }
  .global-custom-checkbox__label:before {
    top: -5px;
    left: 0;
    padding: 6px;
  }
  .global-custom-checkbox input:checked + label:after {
    top: 0px;
    width: 4px;
    height: 8px;
  }
}

::-webkit-scrollbar {
  -webkit-overflow-scrolling: touch;
  -webkit-appearance: none;
  border-radius: 2px;
  width: 4px;
}

::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #D3E2EF;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  width: 12px;
  background-color: #89B4DC;
}

.main-title {
  position: relative;
  width: 67.5rem;
}
.main-title__home-icon-wrapper {
  position: absolute;
  top: 0;
  left: 93%;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  box-shadow: 0 0 0.625rem rgba(11, 103, 240, 0.4);
  border: 0.125rem solid var(--primary-color);
  border-radius: 50%;
}
.main-title__home-icon-wrapper > svg {
  width: 1rem;
  height: 1rem;
}
.main-title__home-icon-wrapper > svg path {
  fill: var(--color-white);
}
.main-title__home-icon-wrapper:hover {
  background-color: var(--color-white);
}
.main-title__home-icon-wrapper:hover > svg path {
  fill: var(--primary-color);
}
@media (max-width: 1440px) {
  .main-title {
    width: 59rem;
  }
  .main-title__home-icon-wrapper {
    left: 90%;
  }
}
@media (max-width: 1024px) {
  .main-title {
    width: 39rem;
  }
  .main-title__home-icon-wrapper {
    left: 98%;
  }
}
@media (max-width: 768px) {
  .main-title {
    width: 33rem;
  }
  .main-title__home-icon-wrapper {
    left: 88%;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media (max-width: 550px) {
  .main-title {
    max-width: 15rem;
    width: 100%;
  }
  .main-title__home-icon-wrapper {
    left: 93%;
    width: 1.5rem;
    height: 1.5rem;
  }
  .main-title__home-icon-wrapper > svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.site-header {
  margin: 0 auto;
  padding-top: 2.5rem;
  max-height: calc(50px + 2.5rem);
  max-width: var(--container-width);
  width: 100%;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1640px) {
  .site-header {
    max-width: none;
    width: auto;
    margin: 0 120px;
  }
}
@media (max-width: 1024px) {
  .site-header {
    margin: 0;
    max-width: 1024px;
    padding-left: 80px;
    padding-right: 80px;
  }
  .site-header__header {
    padding: 0 6.375rem;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding-top: 1.5rem;
    max-height: calc(50px + 1.5rem);
  }
  .site-header__header {
    padding: 0 2.5rem;
  }
}
@media (max-width: 550px) {
  .site-header {
    padding: 20px 36px 0;
    max-width: 932px;
    max-height: calc(50px + 1.25rem);
  }
}
@media (max-width: 375px) {
  .site-header {
    padding: 20px 24px 0;
    max-width: 908px;
  }
}
.site-header__logo {
  display: flex;
}
.site-header__logo > img {
  transition: all 0.5s ease;
}
.site-header__logo > img:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 1024px) {
  .site-header__logo > img:hover {
    transform: scale(1);
  }
}
@media screen and (max-width: 1024px) {
  .site-header__logo {
    max-width: 3rem;
    max-height: 3rem;
  }
}
@media screen and (max-width: 550px) {
  .site-header__logo {
    max-width: 1.5625rem;
    max-height: 1.5625rem;
  }
}
.site-header__menu {
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .site-header__menu {
    display: none;
  }
}

.nav-menu__item {
  display: inline;
  position: relative;
  color: #90A1B4;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
}
.nav-menu__item:not(:first-child) {
  margin-left: 0.75rem;
}
.nav-menu__item a {
  display: inline;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1440px) {
  .nav-menu__item {
    font-size: 1.1rem;
  }
  .nav-menu__item a {
    font-size: 1.1rem;
  }
}
@media (max-width: 550px) {
  .nav-menu__item__close-btn {
    top: 1rem;
    right: 1rem;
  }
}
.nav-menu__close-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.nav-menu__close-btn img {
  width: 14px;
  height: 14px;
}
.nav-menu__close-btn.visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .nav-menu {
    margin-right: -0.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
}

.nav-menu_mobile-version {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 75%;
  width: 30%;
  min-height: 188px;
  padding: 2rem 0 2rem 2rem;
  border-width: 0.25rem 0 0.25rem 0.25rem;
  border-style: solid;
  border-color: var(--primary-color);
}
.nav-menu_mobile-version .item111 .drop-menu {
  max-width: none;
  max-height: 40vh;
  -webkit-appearance: none;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: #D3E2EF #89B4DC;
}
.nav-menu_mobile-version > * {
  color: var(--primary-color);
}
@media (max-width: 1024px) {
  .nav-menu_mobile-version {
    padding: 2rem 0 2rem;
    border-width: 0.25rem;
    right: 0;
    left: auto;
  }
}
@media (max-width: 768px) {
  .nav-menu_mobile-version {
    width: 40%;
  }
}
@media (max-width: 550px) {
  .nav-menu_mobile-version {
    max-width: 18rem;
    padding: 2rem 0;
    width: 100%;
  }
}

.nav-item {
  padding: 0.5rem 1rem;
}
.nav-item.visible {
  display: inline;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 0.75rem 0.75rem;
  border-width: 4px 0.25rem 0;
  border-style: solid;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  z-index: 1;
}
.nav-item.visible > a {
  color: var(--color-white);
}
.nav-item.visible.big-drop-menu {
  position: static;
  background-color: var(--primary-color);
}
.nav-item.visible.big-drop-menu a {
  color: var(--color-white);
}
.nav-item .control {
  display: none;
}
.nav-item.parent .control {
  position: absolute;
  display: inline-block;
  transition: 0.15s linear;
}
@media (max-width: 1440px) {
  .nav-item + .nav-item {
    margin-left: 1rem;
  }
}
@media (max-width: 1024px) {
  .nav-item {
    padding: 0;
  }
  .nav-item > * {
    padding-left: 2rem;
  }
  .nav-item:not(:first-child) {
    margin-top: 24px;
  }
  .nav-item + .nav-item {
    margin-left: 0;
  }
  .nav-item .l1 {
    padding-left: 2rem;
    color: var(--primary-color);
    font-size: 18px;
    position: relative;
  }
  .nav-item .l2 {
    font-size: 14px;
  }
  .nav-item.expand .control {
    transform: rotate(-180deg);
  }
  .nav-item .control {
    width: 15px;
    height: 15px;
    right: -30px;
    top: 7px;
  }
  .nav-item .control:before {
    content: "";
    width: 9px;
    height: 2px;
    position: absolute;
    top: 6px;
    left: 5px;
    transform: rotate(-45deg);
    background-color: var(--primary-color);
  }
  .nav-item .control:after {
    content: "";
    width: 9px;
    height: 2px;
    position: absolute;
    top: 6px;
    transform: rotate(45deg);
    background-color: var(--primary-color);
  }
}

.drop-menu {
  display: none;
  flex-direction: column;
  padding: 0.875rem 0.625rem 0.875rem 1.5rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  border-width: 4px;
  border-style: solid;
  border-color: var(--primary-color);
  min-width: 11rem;
  z-index: -1;
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translate(-50%, 0);
}
.visible .drop-menu {
  display: flex;
}
.drop-menu > div:not(:first-child) > a {
  margin-top: 0.75rem;
}
.drop-menu a {
  display: block;
  color: var(--primary-color);
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4;
}
.drop-menu a:hover {
  color: var(--links-color-main);
}
@media (max-width: 1024px) {
  .drop-menu {
    width: 90%;
    top: 10px;
    z-index: 0;
    border-width: 0;
  }
  .drop-menu a {
    display: block;
    font-size: 14px;
    line-height: 19px;
  }
}
@media (max-width: 1440px) {
  .drop-menu {
    min-width: 10rem;
  }
  .drop-menu a {
    font-size: 0.8rem;
    display: flex;
  }
}

.expand > .drop-menu {
  display: block !important;
  position: relative !important;
}

.nav-menu:not(.nav-menu_mobile-version) .item111.visible .drop-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem;
  z-index: 1;
}

.item111 .drop-menu,
.corporate-products-drop-menu {
  display: none;
  width: 1209px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--color-white);
  border: 0.25rem solid var(--primary-color);
  border-radius: 0.5rem;
  padding: 1.25rem 1.75rem;
}
.item111 .drop-menu .menu-item a,
.item111 .drop-menu .product-item,
.corporate-products-drop-menu .menu-item a,
.corporate-products-drop-menu .product-item {
  max-content: 100%;
  padding: 1rem;
  display: flex;
  width: auto;
  border: 1px solid #fff;
}
.item111 .drop-menu .menu-item a:hover,
.item111 .drop-menu .product-item:hover,
.corporate-products-drop-menu .menu-item a:hover,
.corporate-products-drop-menu .product-item:hover {
  border: 1px solid rgba(24, 90, 189, 0.6);
}
.item111 .drop-menu .menu-item a__image-wrapper,
.item111 .drop-menu .product-item__image-wrapper,
.corporate-products-drop-menu .menu-item a__image-wrapper,
.corporate-products-drop-menu .product-item__image-wrapper {
  padding-top: 3px;
  width: 1.5rem;
  flex-shrink: 0;
}
.item111 .drop-menu .menu-item a__content-box,
.item111 .drop-menu .product-item__content-box,
.corporate-products-drop-menu .menu-item a__content-box,
.corporate-products-drop-menu .product-item__content-box {
  padding-left: 1rem;
}
.item111 .drop-menu .menu-item a__item-title,
.item111 .drop-menu .product-item__item-title,
.corporate-products-drop-menu .menu-item a__item-title,
.corporate-products-drop-menu .product-item__item-title {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #234974;
  display: block;
}
.item111 .drop-menu .menu-item a__item-description,
.item111 .drop-menu .product-item__item-description,
.corporate-products-drop-menu .menu-item a__item-description,
.corporate-products-drop-menu .product-item__item-description {
  margin: 0.375rem 0 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #395E81;
}
@media (max-width: 1024px) {
  .item111 .drop-menu .menu-item a,
.item111 .drop-menu .product-item,
.corporate-products-drop-menu .menu-item a,
.corporate-products-drop-menu .product-item {
    padding: 0.75rem 0.5rem;
  }
}
.item111 .drop-menu__title,
.corporate-products-drop-menu__title {
  margin: 0 0 0.875rem;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: block;
  color: #90A1B4;
}
.item111 .drop-menu > div:not(:first-child),
.corporate-products-drop-menu > div:not(:first-child) {
  margin-top: 0;
}
.item111 .drop-menu__items-list > a,
.corporate-products-drop-menu__items-list > a {
  width: auto;
}
@media (max-width: 1440px) {
  .item111 .drop-menu,
.corporate-products-drop-menu {
    max-width: 1209px;
    width: auto;
  }
  .item111 .drop-menu .product-item, .item111 .drop-menu .menu-item,
.corporate-products-drop-menu .product-item,
.corporate-products-drop-menu .menu-item {
    min-width: 14rem;
  }
}
@media (max-width: 1024px) {
  .item111 .drop-menu,
.corporate-products-drop-menu {
    max-height: 30vh;
    overflow: scroll;
    position: relative;
    transform: translate(0, 0);
    top: 0;
    left: 0;
    right: 0;
    border: 0px;
  }
  .item111 .drop-menu__title,
.corporate-products-drop-menu__title {
    color: #90A1B4;
    text-align: left;
  }
  .item111 .drop-menu__col:first-child,
.corporate-products-drop-menu__col:first-child {
    padding-top: 0.5rem;
  }
  .item111 .drop-menu__col:not(:first-child),
.corporate-products-drop-menu__col:not(:first-child) {
    padding-top: 1rem;
  }
  .item111 .drop-menu .product-item,
.corporate-products-drop-menu .product-item {
    padding: 0.75rem 0.5rem;
    max-width: 14rem;
    min-width: auto;
    border: 1px solid var(--color-white);
  }
  .item111 .drop-menu .product-item__image-wrapper,
.corporate-products-drop-menu .product-item__image-wrapper {
    width: 1rem;
  }
  .item111 .drop-menu .product-item:hover,
.corporate-products-drop-menu .product-item:hover {
    padding: 0.75rem 0.5rem;
    border-color: rgba(24, 90, 189, 0.6);
  }
}
@media (max-width: 550px) {
  .item111 .drop-menu .product-item,
.corporate-products-drop-menu .product-item {
    max-width: 13rem;
  }
  .item111 .drop-menu .product-item:not(:first-child),
.corporate-products-drop-menu .product-item:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.divider {
  display: none;
  height: 1px;
  width: 100%;
  background-color: #88B4DC;
}
.divider_visible {
  display: block;
}

.section-hero {
  margin: 0 auto;
  padding: 3rem 0 1rem;
  max-width: var(--container-width);
  text-align: center;
}
.section-hero__title {
  color: var(--primary-color);
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 3.75rem;
  letter-spacing: 0;
  line-height: 100%;
  margin: 0 0 0.75rem 0;
}
.section-hero__subtitle {
  color: var(--main-text-color-1);
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 1440px) {
  .section-hero {
    padding: 3.5rem 0;
    max-width: var(--container-width-lg);
  }
  .section-hero__title {
    font-size: 3rem;
  }
  .section-hero__subtitle {
    margin: auto;
    width: 100%;
    font-size: 1.75rem;
    letter-spacing: -0.125rem;
  }
}
@media (max-width: 1024px) {
  .section-hero {
    padding: 1.5rem 0;
    max-width: var(--container-width-md);
  }
  .section-hero__title {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 100%;
  }
  .section-hero__subtitle {
    font-size: 1.5rem;
    line-height: 114%;
    width: 40%;
  }
}
@media (max-width: 768px) {
  .section-hero {
    max-width: var(--container-width-md-1);
  }
  .section-hero__title {
    margin-top: 0.5em;
    font-size: 2rem;
  }
  .section-hero__subtitle {
    width: 63%;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    letter-spacing: 0;
  }
}
@media (max-width: 550px) {
  .section-hero__title {
    margin: 0;
    font-weight: 400;
    font-size: 1.625rem;
    line-height: 120%;
  }
  .section-hero__subtitle {
    font-size: 1rem;
    line-height: 100%;
    width: 16rem;
  }
}
@media (max-width: 375px) {
  .section-hero__subtitle {
    width: 75%;
  }
}

.img-pop-up {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left top;
  border-radius: 100%;
  background-color: var(--bubble-color);
  box-shadow: 0 4px 120px -15px var(--bubble-shadow);
  width: 13.3rem;
  height: 13.3rem;
  display: flex;
  transition: 1s all;
}
.img-pop-up__text {
  margin: auto;
  color: var(--color-white);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 26.6px;
  text-align: center;
}
@media (max-width: 1440px) {
  .img-pop-up {
    width: 13.25rem;
    height: 13.25rem;
    top: 56%;
  }
}
@media (max-width: 1224px) {
  .img-pop-up {
    width: 8.5rem;
    height: 8.5rem;
  }
  .img-pop-up__text {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 768px) {
  .img-pop-up {
    width: 5.58rem;
    height: 5.58rem;
  }
  .img-pop-up__text {
    font-size: 0.5rem;
    line-height: 0.625rem;
  }
}
@media (max-width: 550px) {
  .img-pop-up {
    width: 4.2rem;
    height: 4.2rem;
    top: 47%;
  }
}

.screenshots-popup {
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 11, 11, 0.8);
  overflow-y: auto;
  position: fixed;
  display: flex;
  top: 0;
  z-index: 101;
  padding: 2rem 0.375rem;
}
.screenshots-popup__content {
  margin: auto;
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: transparent;
}
.screenshots-popup__close-btn {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: flex-end;
}
.screenshots-popup__close-btn img {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 1024px) {
  .screenshots-popup__close-btn img {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (max-width: 768px) {
  .screenshots-popup__close-btn img {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.changing-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.changing-image img {
  height: 48rem;
}
.changing-image__description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 1.125rem;
}
.changing-image__description p {
  margin: 0;
}
@media (max-width: 1024px) {
  .changing-image img {
    max-height: 70vh;
    height: auto;
    object-fit: contain;
  }
  .changing-image__description {
    font-size: 0.75rem;
  }
}

.area {
  position: absolute;
  height: 96%;
  width: 50%;
  z-index: 1;
  bottom: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 10rem;
}
.arrow-left {
  left: 0;
}
.arrow-right {
  right: 0;
  transform: translate(0, -50%) rotate(180deg);
}
.arrow-right-area {
  right: 0;
}
.arrow img {
  width: 3.75rem;
  height: 3.75rem;
}
@media (max-width: 1440px) {
  .arrow img {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  .arrow img {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (max-width: 550px) {
  .arrow img {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 320px) {
  .arrow img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.section-files {
  padding-top: 23rem;
}
@media (max-width: 1440px) {
  .section-files {
    padding-top: 21rem;
  }
}
@media (max-width: 1024px) {
  .section-files {
    padding-top: 14.5rem;
  }
}
@media (max-width: 768px) {
  .section-files {
    padding-top: 14.5rem;
  }
}
@media (max-width: 550px) {
  .section-files {
    padding-top: 10.5rem;
  }
}
@media (max-width: 320px) {
  .section-files {
    padding-top: 6rem;
  }
}

.main-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main-img__container {
  position: relative;
  margin: -23rem auto auto;
}
.main-img__container.mobile-display .img-pop-up {
  transform: scale(1.5, 1.5) translate(-50%, -50%);
  opacity: 1;
}
.main-img__container:hover .img-pop-up {
  transform: scale(1.5, 1.5) translate(-50%, -50%);
  opacity: 1;
}
.main-img__img {
  max-width: 86rem;
}
@media (max-width: 1440px) {
  .main-img__container {
    margin-top: -21rem;
  }
  .main-img__img {
    max-width: 76rem;
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .main-img__container {
    margin-top: -14.5rem;
  }
  .main-img__img {
    max-width: 54rem;
  }
}
@media (max-width: 768px) {
  .main-img__container {
    margin-top: -14.5rem;
  }
}
@media (max-width: 550px) {
  .main-img__container {
    margin-top: -10.5rem;
  }
  .main-img__img {
    margin-right: 0;
    max-width: 38rem;
  }
}
@media (max-width: 320px) {
  .main-img__container {
    margin-top: -6.5rem;
  }
  .main-img__img {
    max-width: 100%;
  }
}

.files-content {
  padding-bottom: 2.5rem;
  justify-content: center;
  background-color: var(--primary-color);
}
.files-content__wrapper {
  margin: 0rem auto 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 90rem;
}
.files-content__section.btns {
  flex-grow: 1;
}
.files-content__version-info {
  margin-bottom: 0;
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.125rem;
}
.files-content__version-info > .files-content__version-info-image {
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  background: url(../img/gears.png) no-repeat center;
  background-size: 100%;
}
.files-content__version-info > a {
  text-decoration: underline;
  color: inherit;
}
.files-content__version-info > a:visited {
  color: var(--color-white);
}
.files-content__version-info > a:hover, .files-content__version-info > a:active {
  color: var(--color-secondary);
}
@media (max-width: 1440px) {
  .files-content__version-info {
    font-size: 1.4rem;
    margin-top: 3.5rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 1024px) {
  .files-content__version-info {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
  .files-content__version-info > .files-content__version-info-image {
    margin-bottom: 7px;
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .files-content__version-info {
    margin-top: 1.25rem;
  }
}
@media (max-width: 550px) {
  .files-content__version-info {
    margin-top: 1.75rem;
  }
}
@media (max-width: 1440px) {
  .files-content__wrapper {
    width: 80rem;
  }
}
@media (max-width: 1024px) {
  .files-content__wrapper {
    margin: 0rem auto auto;
    padding-left: 0;
    width: 60rem;
  }
}
@media (max-width: 768px) {
  .files-content__wrapper {
    width: 40rem;
  }
}
@media (max-width: 550px) {
  .files-content {
    display: flex;
    flex-direction: column;
  }
  .files-content__wrapper {
    flex-direction: column;
    padding-left: 0;
    width: 17.1875rem;
    align-items: center;
  }
}
@media (max-width: 425px) {
  .files-content__img-wrapper {
    max-width: 100%;
  }
}

.files-description {
  color: var(--color-white);
  width: 52%;
}
.files-description__title {
  font-family: "Titillium Web", sans-serif;
  margin: 0 0 35px 0;
  font-weight: normal;
  font-size: 3rem;
  line-height: 120%;
}
.files-description__subtitle {
  margin: 0;
  font-weight: 300;
  font-size: 32px;
  line-height: 50px;
  width: 85%;
}
@media (max-width: 1440px) {
  .files-description {
    margin-top: 1rem;
    width: 60%;
  }
  .files-description__title {
    line-height: 110%;
    margin-bottom: 1rem;
  }
  .files-description__subtitle {
    font-size: 24px;
    line-height: 35px;
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .files-description {
    width: 50%;
    margin: 0 auto 0 0;
  }
  .files-description__title {
    font-size: 2rem;
  }
  .files-description__subtitle {
    font-size: 16px;
    line-height: 1.25rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .files-description {
    width: 60%;
  }
  .files-description__title {
    margin-bottom: 0.75rem;
  }
  .files-description__subtitle {
    width: 70%;
  }
}
@media (max-width: 550px) {
  .files-description {
    margin: 0;
    padding: 0;
    max-width: 17rem;
    width: 100%;
  }
  .files-description__title {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
    line-height: 120%;
  }
  .files-description__subtitle {
    line-height: 120%;
    width: 100%;
  }
}

.btns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 20.25rem;
}
.btns > :not(:last-child) {
  margin-bottom: 1.25rem;
}
.btns__item {
  width: 100%;
}
.btns__item:active {
  color: var(--color-secondary);
}
.btns__item:visited {
  color: var(--color-secondary);
}
@media (max-width: 1440px) {
  .btns {
    max-width: 14rem;
  }
}
@media (max-width: 1024px) {
  .btns {
    max-width: 12rem;
  }
  .btns > :not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .btns {
    max-width: 8.438rem;
  }
  .btns:not(:last-child) {
    margin-bottom: 1.125rem;
  }
  .btns__item {
    height: 2.5rem;
    border-radius: 0.5rem;
  }
  .btns__item > button {
    height: 100%;
    border-radius: inherit;
  }
}
@media (max-width: 550px) {
  .btns {
    min-width: 17.25rem;
  }
  .btns > :not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .btns__item {
    height: 3.125rem;
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
}
@media (max-width: 375px) {
  .btns {
    max-width: 100%;
    min-width: 100%;
  }
}

.annotation {
  color: var(--color-white);
  display: flex;
}
.annotation__text {
  position: relative;
  margin: 0;
  padding-left: 1rem;
  font-weight: 300;
  line-height: 1.4;
  font-size: 1.2rem;
  width: 100%;
}
.annotation__text::before {
  content: "*";
  position: absolute;
  left: 0;
}
@media (max-width: 550px) {
  .annotation__text::before {
    left: -5px;
  }
}
@media (max-width: 1440px) {
  .annotation__text {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .annotation__text {
    min-width: 9.375rem;
  }
}
@media (max-width: 768px) {
  .annotation__text {
    max-width: 8.438rem;
  }
}
@media (max-width: 550px) {
  .annotation__text {
    padding: 0;
    width: 14.0625rem;
    max-width: 16rem;
  }
}
@media (max-width: 550px) {
  .annotation {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
}

.btn-green {
  display: inline-block;
  color: var(--main-text-color-2);
  padding: 10px 0;
  font-weight: 600;
  font-size: 1.5rem;
  margin: auto;
  width: 100%;
  line-height: 24px;
  letter-spacing: 0.03em;
  background-color: var(--color-green-100);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3ms all;
}
.btn-green:hover {
  background-color: var(--color-green-500);
}
@media (max-width: 1440px) {
  .btn-green {
    font-size: 1.25rem;
    line-height: 2rem;
    padding: 0.55rem 0;
  }
}
@media (max-width: 1024px) {
  .btn-green {
    padding: 0.6rem 0;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 768px) {
  .btn-green {
    line-height: 1rem;
    padding: 0.4rem 0;
  }
}
@media (max-width: 550px) {
  .btn-green {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding: 0.8rem 0;
    border-radius: 10px;
  }
}
.solutions {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solutions__item {
  width: 90rem;
  display: flex;
  justify-content: space-between;
}
.solutions__item:not(:last-child) {
  margin-bottom: 10rem;
}
.solutions__content-wrapper {
  width: 55%;
}
.solutions__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
}
@media (max-width: 1440px) {
  .solutions__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .solutions__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .solutions__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.solutions__description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
}
.solutions__description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .solutions__description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .solutions__description {
    font-size: 1rem;
    line-height: 125%;
  }
  .solutions__description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .solutions__description {
    font-size: 16px;
    line-height: 140%;
  }
}
.solutions__image-wrapper {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.solutions__image-wrapper > img {
  object-fit: contain;
}
@media (max-width: 1440px) {
  .solutions {
    padding-top: 7.5rem;
  }
  .solutions__item {
    width: 80rem;
  }
  .solutions__item:not(:last-child) {
    margin-bottom: 7.5rem;
  }
}
@media (max-width: 1024px) {
  .solutions {
    padding-top: 5rem;
  }
  .solutions__item {
    width: 60rem;
  }
  .solutions__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }
  .solutions__image-wrapper {
    max-height: 15.5rem;
  }
}
@media (max-width: 768px) {
  .solutions__item {
    width: 40rem;
  }
  .solutions__item:not(:last-child) {
    margin-bottom: 3.85rem;
  }
}
@media (max-width: 550px) {
  .solutions {
    padding-top: 3.75rem;
  }
  .solutions__item {
    flex-direction: column;
    width: 17.1875rem;
  }
  .solutions__item > * {
    width: 100%;
  }
  .solutions__item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .solutions__content-wrapper {
    margin-top: 1rem;
    order: 1;
  }
  .solutions__title {
    margin-bottom: 0.75rem;
  }
  .solutions__image-wrapper {
    width: 15rem;
    max-height: 15rem;
    align-self: center;
  }
  .solutions__image-wrapper > img {
    max-height: inherit;
    width: 100%;
  }
}

.option-cards {
  margin: 0 auto 7rem;
  padding-top: 5rem;
  width: 90rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.option-cards__image-wrapper {
  width: 30rem;
  height: 18.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-image: url("../img/optionCardsBackground.jpg");
}
.option-cards__image-wrapper > img {
  margin-bottom: 2rem;
  max-width: 40%;
}
.option-cards__cards-field {
  display: flex;
  position: relative;
  top: -5.5rem;
  z-index: 2;
}
.option-cards__card-wrapper {
  position: relative;
  padding: 0.06rem;
  width: 34rem;
  background: linear-gradient(30deg, rgba(10, 94, 220, 0.1254901961), rgba(0, 191, 255, 0.1450980392));
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.option-cards__card-wrapper:not(:last-child) {
  margin-right: 4rem;
}
.option-cards__card-wrapper:nth-child(2) {
  top: 2rem;
}
.option-cards__card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 3.5rem 3rem 3.4rem;
  box-shadow: 10px 5px 35px rgba(11, 103, 240, 0.08);
  border-radius: 15px;
  background-color: var(--color-white);
}
.option-cards__card-title {
  position: relative;
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.5rem;
  line-height: 100%;
  text-align: center;
  color: var(--primary-color);
}
.option-cards__card-description {
  position: relative;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
  font-size: 1.5rem;
  margin: 2rem 0 0;
  color: var(--main-text-color-1);
}
.option-cards__card-description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .option-cards__card-description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .option-cards__card-description {
    font-size: 1rem;
    line-height: 125%;
  }
  .option-cards__card-description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .option-cards__card-description {
    font-size: 16px;
    line-height: 140%;
  }
}
.option-cards__card-description > a {
  color: var(--main-text-color-1);
  text-decoration: underline;
}
.option-cards__card-description > a:hover {
  color: var(--link-in-text-hover);
}
@media (max-width: 1440px) {
  .option-cards {
    margin-bottom: 2rem;
    padding-top: 5rem;
    width: 80rem;
  }
  .option-cards__image-wrapper {
    width: 25rem;
  }
  .option-cards__image-wrapper > img {
    margin-bottom: 5.25rem;
    width: 11.8125rem;
  }
  .option-cards__cards-field {
    top: -7.25rem;
  }
  .option-cards__card-wrapper {
    width: 30rem;
  }
  .option-cards__card-wrapper:not(:last-child) {
    margin-right: 2rem;
  }
  .option-cards__card-wrapper:nth-child(2) {
    top: 1.5rem;
  }
  .option-cards__card-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 1280px) {
  .option-cards__card-wrapper {
    width: 26rem;
  }
}
@media (max-width: 1024px) {
  .option-cards {
    margin-bottom: -5.5rem;
    padding-top: 2.25rem;
    width: 60rem;
  }
  .option-cards__image-wrapper {
    width: 19rem;
  }
  .option-cards__image-wrapper > img {
    margin-bottom: 10.25rem;
    width: 7.25rem;
  }
  .option-cards__cards-field {
    top: -12.75rem;
  }
  .option-cards__card-wrapper {
    width: 20rem;
  }
  .option-cards__card-wrapper:not(:last-child) {
    margin-right: 1rem;
  }
  .option-cards__card-wrapper:nth-child(2) {
    top: 2.25rem;
  }
  .option-cards__card {
    padding: 2.25rem 1.5rem 2.25rem 2.25rem;
  }
  .option-cards__card-title {
    font-size: 1.25rem;
  }
  .option-cards__card-description {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .option-cards {
    width: 40rem;
  }
  .option-cards__cards-field {
    top: -10.75rem;
    width: 100%;
  }
  .option-cards__card-wrapper:not(:last-child) {
    margin-right: 1.25rem;
  }
  .option-cards__card-wrapper:nth-child(2) {
    top: 0;
  }
  .option-cards__card {
    padding: 1.625rem 1.25rem 1.625rem 1.5rem;
  }
  .option-cards__card-title {
    text-align: center;
    font-size: 1.125rem;
  }
  .option-cards__card-description {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    line-height: 140%;
  }
}
@media (max-width: 550px) {
  .option-cards {
    margin-bottom: -6.5rem;
    padding-top: 3.75rem;
    width: 17.1875rem;
  }
  .option-cards__image-wrapper {
    background-repeat: no-repeat;
    width: 100%;
  }
  .option-cards__image-wrapper > img {
    margin-bottom: 13.25rem;
    width: 6.25rem;
  }
  .option-cards__cards-field {
    top: -10.5rem;
    flex-direction: column;
    width: 100%;
  }
  .option-cards__card-wrapper {
    width: 100%;
    height: 17.1875rem;
  }
  .option-cards__card-wrapper:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .option-cards__card-wrapper:nth-child(2) {
    top: 0;
  }
  .option-cards__card {
    padding: 2.25rem 3.125rem 2.25rem;
  }
  .option-cards__card-title {
    font-size: 1.25rem;
    text-align: left;
  }
  .option-cards__card-description {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.section-devices {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-devices__image-wrapper {
  width: 80rem;
  margin-bottom: 4.5rem;
}
.section-devices__content-box {
  display: flex;
  justify-content: space-between;
  width: 90rem;
}
.section-devices__content {
  width: 55%;
}
.section-devices__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
}
@media (max-width: 1440px) {
  .section-devices__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .section-devices__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .section-devices__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.section-devices__description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
}
.section-devices__description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .section-devices__description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .section-devices__description {
    font-size: 1rem;
    line-height: 125%;
  }
  .section-devices__description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .section-devices__description {
    font-size: 16px;
    line-height: 140%;
  }
}
.section-devices__links-field {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 25rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 150%;
  color: var(--main-text-color-1);
}
.section-devices__mobile-devices {
  display: flex;
}
.section-devices__mobile-device-link {
  display: inline-block;
  width: 10.125rem;
  height: 3.125rem;
}
.section-devices__mobile-device-link:first-child {
  margin-right: 3.375rem;
}
.section-devices__links-description {
  margin: 2rem 0 0.75rem;
  display: flex;
}
.section-devices__link {
  display: flex;
  color: var(--links-color-main);
  text-decoration: underline;
  font-size: 1.25rem;
  line-height: 2.375rem;
}
.section-devices__link:visited {
  color: var(--links-color-visited);
}
.section-devices__link:hover {
  color: var(--links-color-hover);
}
@media (max-width: 1440px) {
  .section-devices__image-wrapper {
    margin-right: 1rem;
    margin-bottom: 4rem;
    width: 64rem;
  }
  .section-devices__content-box {
    width: 80rem;
  }
  .section-devices__links-field {
    padding-left: 1.25rem;
  }
  .section-devices__links-description {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 150%;
  }
  .section-devices__link {
    font-size: 1.125rem;
    line-height: 167%;
  }
}
@media (max-width: 1024px) {
  .section-devices__image-wrapper {
    margin-bottom: 3.25rem;
    max-width: 50rem;
    width: auto;
  }
  .section-devices__content-box {
    width: 60rem;
  }
  .section-devices__links-field {
    padding-left: 1rem;
    width: 18.25rem;
  }
  .section-devices__mobile-device-link:first-child {
    margin-right: 1.375rem;
  }
  .section-devices__links-description {
    margin: 0.5rem 0 0.75rem;
    font-size: 0.875rem;
  }
  .section-devices__link {
    font-size: 0.875rem;
    line-height: 150%;
  }
}
@media (max-width: 768px) {
  .section-devices__image-wrapper {
    margin-bottom: 2.5rem;
    width: 35rem;
  }
  .section-devices__content-box {
    margin-left: 0;
    width: 40rem;
  }
  .section-devices__links-field {
    padding-left: 0;
    width: 13.4375rem;
  }
  .section-devices__mobile-devices {
    flex-direction: column;
  }
  .section-devices__mobile-device-link {
    height: 2.375rem;
    width: max-content;
  }
  .section-devices__mobile-device-link:first-child {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }
  .section-devices__links-description {
    margin-top: 1.1875rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 550px) {
  .section-devices {
    margin: 0 auto;
  }
  .section-devices__image-wrapper {
    margin-right: 0;
    margin-bottom: 0.125rem;
    width: inherit;
  }
  .section-devices__content-box {
    margin: 0 auto;
    width: 17.1875rem;
    flex-direction: column;
  }
  .section-devices__content {
    margin-bottom: 1.875rem;
    width: inherit;
  }
  .section-devices__title {
    margin-bottom: 0.75rem;
  }
  .section-devices__links-field {
    width: 17.1875rem;
  }
  .section-devices__mobile-devices {
    flex-direction: row;
  }
  .section-devices__mobile-device-link:first-child {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .section-devices__links-description {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.capabilities {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.capabilities > * {
  margin: 10rem 0 0;
}
.capabilities__item {
  width: 90rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
.capabilities__content-wrapper {
  width: 55%;
}
.capabilities__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
}
@media (max-width: 1440px) {
  .capabilities__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .capabilities__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .capabilities__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.capabilities__description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
}
.capabilities__description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .capabilities__description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .capabilities__description {
    font-size: 1rem;
    line-height: 125%;
  }
  .capabilities__description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .capabilities__description {
    font-size: 16px;
    line-height: 140%;
  }
}
.capabilities__description > a {
  color: var(--main-text-color-1);
  text-decoration: underline;
}
.capabilities__description > a:hover {
  color: var(--link-in-text-hover);
}
.capabilities__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.75rem;
  max-height: 417px;
}
.capabilities__image-wrapper > img {
  align-self: flex-start;
  object-fit: contain;
}
.capabilities__devices-cards-wrapper {
  display: flex;
}
.capabilities__card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  border-radius: 1rem;
  background: linear-gradient(30deg, rgba(10, 94, 220, 0.1254901961), rgba(0, 191, 255, 0.1450980392));
}
.capabilities__card-wrapper:not(:last-child) {
  margin-right: 5.125rem;
}
.capabilities__card-wrapper_large {
  width: 32rem;
}
.capabilities__device-card {
  padding: 2.5rem 2rem 2rem;
  height: calc(100% - 0.15rem);
  width: calc(100% - 0.15rem);
  background: var(--color-white);
  box-shadow: 0.625rem 0.375rem 2.25rem rgba(11, 103, 240, 0.08);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.capabilities__device-card-title {
  margin: 0 0 1.5rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.5rem;
  line-height: 100%;
  text-align: center;
  color: var(--primary-color);
}
.capabilities__device-card-description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
  margin: 0 0 2em;
  min-height: 6.25rem;
  text-align: center;
  color: var(--main-text-color-1);
}
.capabilities__device-card-description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .capabilities__device-card-description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .capabilities__device-card-description {
    font-size: 1rem;
    line-height: 125%;
  }
  .capabilities__device-card-description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .capabilities__device-card-description {
    font-size: 16px;
    line-height: 140%;
  }
}
.capabilities__device-card-image-wrapper {
  margin-bottom: auto;
}
.capabilities__device-card-buttons-field {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.capabilities__device-card-buttons-field > a + a {
  margin-left: 2rem;
}
.capabilities__device-card-desktop-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17.3125rem;
  height: 3.125rem;
  background-color: var(--color-black);
  color: var(--color-white);
  border: 5px solid var(--color-black);
  border-radius: 0.5rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.capabilities__device-card-desktop-app > img {
  margin-right: 1rem;
}
.capabilities__device-card-mobile-app {
  display: inline-block;
  width: 10.125rem;
  height: 3.125rem;
}
@media (max-width: 1440px) {
  .capabilities > * {
    margin-top: 7.5rem;
  }
  .capabilities__item {
    width: 80rem;
  }
  .capabilities__image-wrapper {
    width: 20rem;
    max-height: 361px;
  }
  .capabilities__card-wrapper {
    width: 28rem;
  }
  .capabilities__card-wrapper_large {
    width: 30rem;
  }
  .capabilities__card-wrapper:not(:last-child) {
    margin-right: 2.625rem;
  }
  .capabilities__device-card-buttons-field {
    width: 100%;
  }
  .capabilities__device-card-desktop-app {
    max-width: 17.3125rem;
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .capabilities__card-wrapper {
    width: 26rem;
  }
  .capabilities__card-wrapper_large {
    width: 28rem;
  }
  .capabilities__device-card-title {
    width: 70%;
  }
  .capabilities__device-card-description {
    margin: 0 0.25rem 1.75rem;
  }
}
@media (max-width: 1024px) {
  .capabilities > * {
    margin-top: 3.75rem;
  }
  .capabilities__item {
    width: 60rem;
  }
  .capabilities__title {
    width: 21.25rem;
  }
  .capabilities__image-wrapper {
    width: 15rem;
    max-height: 361px;
  }
  .capabilities__devices-cards-wrapper {
    margin-top: 5rem;
    margin-bottom: 1.25rem;
  }
  .capabilities__card-wrapper {
    width: 19em;
  }
  .capabilities__card-wrapper_large {
    width: 22rem;
  }
  .capabilities__device-card_large > h3 {
    width: auto;
  }
  .capabilities__device-card_large > .capabilities__device-card-image-wrapper {
    margin-left: 3.625rem;
    margin-right: 3.625rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-description {
    margin-bottom: 1.75rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field {
    height: 2rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a {
    height: 100%;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a > img {
    width: 100%;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a + a {
    margin-left: 0.5625rem;
  }
  .capabilities__device-card-title {
    margin: 0 1.125rem 0.875rem;
    font-size: 1.5rem;
    line-height: 120%;
  }
  .capabilities__device-card-description {
    margin: 0 0.835rem 3rem;
    font-size: 0.875rem;
    line-height: 120%;
    min-height: 3.1875rem;
  }
  .capabilities__device-card-image-wrapper {
    margin: 0 3rem;
  }
  .capabilities__device-card-buttons-field {
    margin-top: auto;
    height: 2.25rem;
  }
  .capabilities__device-card-buttons-field > .main-button {
    margin: 0 0.25rem;
    height: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .capabilities__device-card-desktop-app {
    margin: 0 0.25rem;
    height: 100%;
    font-size: 11px;
    line-height: 15px;
  }
  .capabilities__device-card-desktop-app > img {
    margin-right: 1.125rem;
    width: 1rem;
  }
}
@media (max-width: 768px) {
  .capabilities__item {
    width: 40rem;
  }
  .capabilities__item:first-child .capabilities__image-wrapper {
    width: 13.4375rem;
    height: 13.75rem;
  }
  .capabilities__card-wrapper {
    width: 14rem;
    height: 18.5rem;
  }
  .capabilities__card-wrapper_large {
    width: 15rem;
    height: 23.5rem;
  }
  .capabilities__card-wrapper:not(:last-child) {
    margin-right: 1rem;
  }
  .capabilities__device-card {
    padding: 1.5rem 0.75rem 1rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-image-wrapper {
    margin: 0 2.75rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-description {
    margin-bottom: 0.75rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field {
    flex-direction: column;
    height: 4.875rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a {
    width: 7.5rem;
    height: 2.125rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a + a {
    margin-top: 0.5rem;
    margin-left: 0;
  }
  .capabilities__device-card-title {
    margin: 0 1.75rem 0.75rem;
    font-size: 1.25rem;
    line-height: 120%;
  }
  .capabilities__device-card-description {
    margin: 0 0 0.75rem;
    min-height: 2.625rem;
    font-size: 0.75rem;
    line-height: 120%;
  }
  .capabilities__device-card-image-wrapper {
    margin: 0 2.375rem;
  }
  .capabilities__device-card-desktop-app {
    width: 100%;
    font-size: 0.625rem;
    line-height: 0.875rem;
  }
  .capabilities__device-card-desktop-app > img {
    margin-right: 0.5rem;
    width: 0.8125rem;
  }
}
@media (max-width: 550px) {
  .capabilities__item {
    flex-direction: column;
    width: 17.1875rem;
  }
  .capabilities__item:first-child .capabilities__image-wrapper {
    width: 15rem;
  }
  .capabilities__content-wrapper {
    order: 1;
    width: inherit;
  }
  .capabilities__image-wrapper {
    margin-bottom: 1rem;
    width: 15rem;
    justify-content: center;
    align-self: center;
  }
  .capabilities__title {
    margin-bottom: 0.75rem;
  }
  .capabilities__title, .capabilities__description {
    width: inherit;
  }
  .capabilities__devices-cards-wrapper {
    margin-top: 3.75em;
    flex-direction: column;
    width: 17.1875rem;
  }
  .capabilities__card-wrapper {
    max-width: none;
    width: inherit;
    height: 30rem;
  }
  .capabilities__card-wrapper:not(:last-child) {
    margin-right: 0;
  }
  .capabilities__card-wrapper:nth-child(1) {
    margin-bottom: 2.5rem;
  }
  .capabilities__card-wrapper:nth-child(2) {
    margin-bottom: 0;
  }
  .capabilities__card-wrapper:nth-child(3) {
    margin-bottom: 2.5rem;
    order: -1;
  }
  .capabilities__device-card {
    padding: 2rem 1.875rem 1.5rem;
    max-width: none;
  }
  .capabilities__device-card_large > h3 {
    width: 10.5rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-description {
    margin-bottom: 2rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field {
    flex-direction: row;
    height: 1.875rem;
  }
  .capabilities__device-card_large > .capabilities__device-card-buttons-field > a + a {
    margin-top: 0;
    margin-left: 1.5rem;
  }
  .capabilities__device-card-title {
    width: 10.5rem;
    font-size: 1.625rem;
    line-height: 120%;
  }
  .capabilities__device-card-description {
    margin-bottom: 2rem;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
  }
  .capabilities__device-card-buttons-field {
    height: 2.5rem;
  }
  .capabilities__device-card-buttons-field > .main-button {
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }
  .capabilities__device-card-desktop-app {
    margin: 0;
    height: 2.5rem;
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .capabilities__device-card-desktop-app > img {
    margin-right: 0.875rem;
    width: 1.5625rem;
  }
}

.features {
  margin: 10rem auto 0;
  width: 90rem;
}
.features__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
  margin: 0 auto 5.3125rem;
}
@media (max-width: 1440px) {
  .features__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .features__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .features__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.features__grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 3rem;
  column-gap: 6rem;
  justify-content: center;
}
.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 7.5rem;
}
.features__image-container {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/feature_box.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
.features__description {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 120%;
  color: #395E81;
  margin: 1rem 0 0;
}
@media (max-width: 1440px) {
  .features {
    margin-top: 5.5rem;
    width: 80rem;
  }
  .features__title {
    margin-bottom: 5rem;
  }
  .features__grid-container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3rem;
    column-gap: 6rem;
  }
  .features__item {
    min-height: 6.9375rem;
  }
  .features__description {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .features {
    margin-top: 3.75rem;
    width: 60rem;
  }
  .features__title {
    margin-bottom: 3.5rem;
  }
  .features__grid-container {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
    row-gap: 1rem;
  }
  .features__description {
    font-size: 1rem;
    line-height: 120%;
  }
}
@media (max-width: 768px) {
  .features {
    margin-top: 3.75rem;
    width: 40rem;
  }
  .features__title {
    margin-bottom: 2.25rem;
  }
  .features__grid-container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
  }
  .features__item {
    min-height: 5.125rem;
  }
  .features__image-container {
    width: 2rem;
    height: 2rem;
  }
  .features__description {
    margin-top: 0.25rem;
  }
}
@media (max-width: 550px) {
  .features {
    width: 17.1875rem;
  }
  .features__grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__description {
    font-size: 0.75rem;
  }
  .features__image-container {
    width: 2rem;
  }
}

.other-pages {
  margin-top: 8rem;
  position: relative;
  border-style: solid;
  border-width: 3px 0;
  border-color: #CDE7FF;
}
.other-pages__container {
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding-top: 5.938rem;
  padding-bottom: 5.938rem;
  display: flex;
  justify-content: space-between;
  width: 100rem;
}
.other-pages__col {
  display: flex;
  flex-direction: column;
}
.other-pages__col:not(:last-child) {
  margin-right: 8rem;
}
.other-pages__link + .other-pages__link {
  margin-top: 4.75rem;
}
@media (max-width: 1440px) {
  .other-pages {
    margin-top: 7rem;
  }
  .other-pages__container {
    padding-top: 3.75rem;
    padding-bottom: 4.25rem;
    width: 90rem;
  }
  .other-pages__link {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  .other-pages__link + .other-pages__link {
    margin-top: 3.75rem;
  }
}
@media (max-width: 1280px) {
  .other-pages__container {
    max-width: 80rem;
    width: 100%;
  }
  .other-pages__col:not(:last-child) {
    margin-right: 4rem;
  }
}
@media (max-width: 1024px) {
  .other-pages {
    margin-top: 5rem;
  }
  .other-pages__container {
    padding-top: 2rem;
    padding-bottom: 2.125rem;
    width: 60rem;
  }
  .other-pages__col:not(:last-child) {
    margin-right: 3.125rem;
  }
  .other-pages__link {
    width: auto;
  }
  .other-pages__link + .other-pages__link {
    margin-top: 2.25rem;
  }
}
@media (max-width: 768px) {
  .other-pages {
    margin-top: 6.125rem;
  }
  .other-pages__container {
    padding-top: 2rem;
    padding-bottom: 2.125rem;
    max-width: 40rem;
    width: 100%;
  }
  .other-pages__col:not(:last-child) {
    margin-right: 2.375rem;
  }
  .other-pages__link {
    width: auto;
  }
  .other-pages__link + .other-pages__link {
    margin-top: 1.75rem;
  }
}
@media (max-width: 650px) {
  .other-pages__col:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 550px) {
  .other-pages {
    margin-top: 1.25rem;
    background-image: url("../img/otherLinksBackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .other-pages__container {
    padding: 2rem 0;
    flex-direction: column;
    width: 17.1875rem;
  }
  .other-pages__col:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .other-pages__link + .other-pages__link {
    margin-top: 2rem;
  }
}

.faq {
  background-image: url("../img/faqBg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}
.faq__container {
  padding-top: 10rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 1440px) {
  .faq__container {
    padding-top: 4.75rem;
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 1024px) {
  .faq {
    background-size: 125%;
  }
  .faq__container {
    padding-top: 5rem;
  }
}
@media (max-width: 768px) {
  .faq {
    background-size: 135%;
    background-position-x: 51%;
  }
  .faq__container {
    padding-top: 5rem;
  }
}
@media (max-width: 550px) {
  .faq {
    background-image: none;
  }
  .faq__container {
    margin: 0 auto;
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
    background-image: none;
    width: 17.1875rem;
  }
}

.faq-item {
  margin: 0 auto;
  width: 90rem;
}
.faq-item + .faq-item {
  margin-top: 6.25rem;
}
.faq-item__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
}
@media (max-width: 1440px) {
  .faq-item__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .faq-item__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .faq-item__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.faq-item__description {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 142%;
  letter-spacing: 0.02em;
  color: var(--main-text-color-1);
  opacity: 0.95;
  margin: 0 0 2rem;
  width: 54rem;
}
.faq-item__description:nth-child(n+3) {
  margin-top: 1.25rem;
}
@media (max-width: 1440px) {
  .faq-item__description {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .faq-item__description {
    font-size: 1rem;
    line-height: 125%;
  }
  .faq-item__description:nth-child(n+3) {
    margin-top: 0.5rem;
  }
}
@media (max-width: 550px) {
  .faq-item__description {
    font-size: 16px;
    line-height: 140%;
  }
}
.faq-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20.3125rem;
  height: 3.75rem;
  background-color: var(--color-white);
  border: 0.125rem solid var(--primary-color);
  border-radius: 0.625rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.faq-item__link:hover {
  background-color: var(--main-button-hover);
}
.faq-item__link:hover {
  background-color: var(--main-button-hover);
}
@media (max-width: 1440px) {
  .faq-item {
    width: 80rem;
  }
  .faq-item + .faq-item {
    margin-top: 3.25rem;
  }
  .faq-item__title {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 4rem;
    width: 90%;
  }
  .faq-item__description {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0;
    width: 45.3125rem;
  }
  .faq-item__link {
    margin-top: 2rem;
    width: 16.25rem;
  }
}
@media (max-width: 1024px) {
  .faq-item {
    width: 60rem;
  }
  .faq-item + .faq-item {
    margin-top: 3.75rem;
  }
  .faq-item__title {
    font-size: 2rem;
    line-height: 2rem;
  }
  .faq-item__description {
    margin: 0.75rem 0 0;
    width: 30rem;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .faq-item__link {
    margin-top: 1.5rem;
    height: 3rem;
    width: 11.875rem;
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .faq-item {
    width: 40rem;
  }
  .faq-item__title {
    width: 100%;
  }
  .faq-item__description {
    margin-top: 0.75rem;
    width: 30rem;
  }
}
@media (max-width: 550px) {
  .faq-item {
    width: 100%;
  }
  .faq-item + .faq-item {
    margin-top: 2.5rem;
  }
  .faq-item__title {
    font-size: 1.5rem;
    width: 100%;
    line-height: 2rem;
  }
  .faq-item__description {
    font-size: 1rem;
    margin: 0.625rem 0 0;
    width: 100%;
  }
  .faq-item__link {
    margin-top: 0.875rem;
    width: 100%;
  }
}

.our-clients {
  margin: 0 auto;
  max-width: 90rem;
}
.our-clients__title {
  margin: 0 0 2rem;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.25rem;
  line-height: 100%;
  color: var(--primary-color);
  margin: 7.5rem 0 0;
}
@media (max-width: 1440px) {
  .our-clients__title {
    margin-bottom: 1.5rem;
    font-size: 3rem;
  }
}
@media (max-width: 1024px) {
  .our-clients__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .our-clients__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
}
.our-clients__row {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 6rem;
  row-gap: 5rem;
  margin-top: 5rem;
}
@media (max-width: 1440px) {
  .our-clients {
    max-width: 80rem;
  }
  .our-clients__title {
    margin-bottom: 4rem;
  }
  .our-clients__row {
    margin-top: 2.8rem;
  }
}
@media (max-width: 1024px) {
  .our-clients {
    margin-top: 5rem;
    max-width: 60rem;
  }
  .our-clients__title {
    margin-top: 0;
  }
  .our-clients__row {
    column-gap: 4rem;
    row-gap: 3rem;
  }
}
@media (max-width: 768px) {
  .our-clients {
    max-width: 40rem;
  }
  .our-clients__title {
    margin-bottom: 2rem;
  }
  .our-clients__row {
    margin-top: 1.5rem;
    column-gap: 3rem;
    row-gap: 2rem;
  }
}
@media (max-width: 550px) {
  .our-clients {
    margin-top: 3.75rem;
    padding-bottom: 3rem;
  }
  .our-clients__title {
    font-size: 1.625rem;
    line-height: 120%;
  }
  .our-clients__row {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 3rem;
  }
}

.client-logo {
  display: flex;
}
.client-logo img {
  margin: auto;
  max-width: 100%;
}

.footer-nav {
  text-align: center;
  margin: 0 0 4.625rem;
}
.footer-nav__item + .footer-nav__item {
  margin-left: 8.75rem;
}
.footer-nav__item:hover {
  color: var(--color-secondary-100);
}
.footer-nav__item:active {
  color: var(--color-secondary);
}
@media (max-width: 1440px) {
  .footer-nav {
    margin-top: 0.75rem;
    margin-bottom: 2.75rem;
  }
  .footer-nav__item + .footer-nav__item {
    margin-left: 3rem;
  }
}
@media (max-width: 1024px) {
  .footer-nav {
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
  }
  .footer-nav__item + .footer-nav__item {
    margin-left: 2rem;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    margin-top: 0.25rem;
  }
}
@media (max-width: 550px) {
  .footer-nav {
    margin: 1.25rem auto 0;
    max-width: 11rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-nav__item.main-link {
    margin: 0;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.1875rem;
    letter-spacing: 0.02em;
  }
}

.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17.3125rem;
  height: 3.125rem;
  background-color: var(--color-white);
  border: 0.125rem solid var(--primary-color);
  border-radius: 0.625rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}
.main-button:hover {
  background-color: var(--main-button-hover);
}
.main-button:hover {
  background-color: var(--main-button-hover);
}
@media (max-width: 1440px) {
  .main-button {
    max-width: 17.3125rem;
    width: 100%;
  }
}

.main-link {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 137.5%;
  text-decoration-line: underline;
  color: var(--links-color-main);
}
.main-link:visited {
  color: var(--links-color-visited);
}
.main-link:hover {
  color: var(--links-color-active);
}
@media (max-width: 1440px) {
  .main-link {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}
@media (max-width: 1024px) {
  .main-link {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@media (max-width: 1024px) {
  .main-link {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (max-width: 550px) {
  .main-link {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
}

.download-section {
  margin: 3.75rem 0 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-section > * {
  width: 67.5rem;
}
.download-section__title {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4.6875rem;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--main-text-color-2);
  margin-bottom: 2.5rem;
}
@media (max-width: 1440px) {
  .download-section__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 1024px) {
  .download-section__title {
    font-size: 3rem;
  }
}
@media (max-width: 550px) {
  .download-section__title {
    font-size: 1.625rem;
    letter-spacing: 0;
  }
}
.download-section__initial-page-link {
  margin-top: 1rem;
  cursor: pointer;
  color: var(--links-color-main);
  text-decoration-line: underline;
  width: auto;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  letter-spacing: 0.03em;
}
.download-section__initial-page-link:visited {
  color: var(--links-color-visited);
}
.download-section__initial-page-link:hover {
  color: var(--links-color-active);
}
@media (max-width: 1440px) {
  .download-section {
    margin-bottom: 5rem;
  }
  .download-section > * {
    width: 59rem;
  }
  .download-section__initial-page-link {
    margin-top: 1rem;
    width: auto;
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@media (max-width: 1024px) {
  .download-section {
    margin: 1.375rem 0 3.75rem;
  }
  .download-section > * {
    width: 39rem;
  }
  .download-section__initial-page-link {
    width: auto;
  }
}
@media (max-width: 768px) {
  .download-section > * {
    width: 33rem;
  }
  .download-section__initial-page-link {
    width: auto;
  }
}
@media (max-width: 550px) {
  .download-section {
    margin: 1rem 0 0;
  }
  .download-section > * {
    max-width: 20.4375rem;
    width: 100%;
  }
  .download-section__title {
    margin-bottom: 1rem;
  }
  .download-section__initial-page-link {
    width: auto;
  }
}

.content-box__radio-wrapper {
  margin: 1.25rem 0 4.75rem;
}
.content-box__radio-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content-box__link {
  margin-top: 0.25rem;
  margin-left: 3.75rem;
  width: max-content;
}
.content-box__link.main-link {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  letter-spacing: 0.03em;
}
.content-box__radio-button:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 1440px) {
  .content-box__radio-wrapper {
    margin: 1.375rem 0 3.75rem;
  }
  .content-box__radio-button:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .content-box__radio-button input[type=radio] + .content-box__label:before {
    top: -2px;
  }
  .content-box__signature-title {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
  .content-box__signature-description {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .content-box__link {
    margin-top: 0.75rem;
  }
  .content-box__link.main-link {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .content-box div.content-box__radio-button:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .content-box__radio-wrapper {
    margin-bottom: 2.5rem;
  }
  .content-box div.content-box__radio-button:not(:last-child) {
    margin-bottom: 2rem;
  }
  .content-box__link {
    margin-left: 2.75rem;
  }
}
@media (max-width: 768px) {
  .content-box__radio-wrapper {
    margin-bottom: 3.875rem;
  }
}
@media (max-width: 550px) {
  .content-box__radio-wrapper {
    margin: 0.75rem auto 2.5rem;
    width: 17.25rem;
  }
  .content-box div.content-box__radio-button:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .content-box__label-signature {
    margin-left: 0.75rem;
  }
  .content-box__signature-title {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .content-box__signature-description {
    font-size: 0.625rem;
    line-height: 0.875rem;
  }
  .content-box__link {
    margin-left: 1.75rem;
  }
  .content-box__link.main-link {
    font-size: 0.625rem;
    line-height: 0.875rem;
  }
}

.download-container {
  padding: 4.0625rem 4.6875rem 2.9375rem 4rem;
  align-self: center;
  width: 67.5rem;
  border-radius: 1.25rem;
  border: 2px solid var(--main-text-color-1);
  background: linear-gradient(to top, var(--color-blue-first-rgba) 0.87%, var(--color-blue-second-rgba) 123.05%), var(--color-blue-third-rgba);
  display: flex;
  flex-direction: column;
}
.download-container__title {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  line-height: 3.375rem;
  color: var(--main-text-color-1);
  align-self: flex-start;
}
.download-container__form {
  display: flex;
  flex-direction: column;
}
.download-container__email-input {
  margin-top: 1.25rem;
  padding: 0.625rem;
  width: 58.125rem;
  height: 4.5625rem;
  border: 1px solid var(--main-text-color-1);
  border-radius: 5px;
  color: var(--main-text-color-1);
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.375rem;
  line-height: 100%;
}
.download-container__checkbox-container {
  display: flex;
  margin-top: 1.25rem;
}
.download-container__checkbox-signature {
  text-align: left;
  width: 45rem;
  color: var(--main-text-color-1);
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.5625rem;
}
.download-container__submit-button {
  margin-top: 2.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19.6875rem;
  height: 3.75rem;
  background-color: var(--color-green-100);
  border: 0.125rem solid var(--main-text-color-1);
  border-radius: 0.625rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--main-text-color-1);
  border-radius: 0.625rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.download-container__submit-button:hover {
  background-color: var(--main-button-hover);
}
.download-container__submit-button:hover {
  background: var(--color-green-500);
}
@media (max-width: 1440px) {
  .download-container {
    padding: 3.375rem 5.25rem 2.25rem 4rem;
    width: 59rem;
  }
  .download-container__title {
    width: 100%;
    font-size: 2rem;
    line-height: 3.125rem;
  }
  .download-container__email-input {
    margin-top: 0.75rem;
    width: 100%;
    height: 3.375rem;
    font-size: 2rem;
  }
  .download-container__checkbox-container {
    margin-top: 0.5rem;
  }
  .download-container__submit-button {
    margin-top: 1.25rem;
    width: 14.5rem;
    height: 3.1875rem;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 1024px) {
  .download-container {
    padding: 3rem 2.25rem 2rem;
    width: 39rem;
    border-radius: 1rem;
  }
  .download-container__title {
    font-size: 1.75rem;
    line-height: 2.375rem;
    text-align: center;
  }
  .download-container__email-input {
    height: 3rem;
    font-size: 1.5rem;
  }
  .download-container__checkbox-container {
    margin-top: 0.75rem;
  }
  .download-container__checkbox-signature {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .download-container__submit-button {
    margin-top: 1.5rem;
    height: 1.875rem;
    width: 10.3125rem;
    font-size: 0.75rem;
    line-height: 1rem;
    border-radius: 0.375rem;
    border-width: 0.125rem;
  }
}
@media (max-width: 768px) {
  .download-container {
    width: 33rem;
  }
  .download-container__title {
    text-align: left;
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
  .download-container__checkbox-signature {
    font-size: 0.6875rem;
    line-height: 0.9375rem;
  }
  .download-container__submit-button {
    margin-top: 1rem;
    width: 8.75rem;
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 550px) {
  .download-container {
    padding: 1.5rem 0.875rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
  }
  .download-container__title {
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: -0.01rem;
  }
  .download-container__email-input {
    padding: 3px 5px;
    height: 1.5625rem;
    font-size: 0.9375rem;
  }
  .download-container__checkbox-container {
    margin-top: 0.5rem;
  }
  .download-container__checkbox-signature {
    font-weight: 300;
    font-size: 0.625rem;
    line-height: 120%;
    letter-spacing: 0.01em;
  }
  .download-container__submit-button {
    margin-top: 1.5rem;
    height: 2.1875rem;
    width: 100%;
    border-width: 1px;
  }
}

.success-download__title {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4.6875rem;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--main-text-color-2);
  margin: 7.5rem auto 3.75rem;
  width: 67.5rem;
}
@media (max-width: 1440px) {
  .success-download__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 1024px) {
  .success-download__title {
    font-size: 3rem;
  }
}
@media (max-width: 550px) {
  .success-download__title {
    font-size: 1.625rem;
    letter-spacing: 0;
  }
}
.success-download__main-text {
  margin: 0 auto;
  width: 67.5rem;
  font-weight: 300;
  font-size: 35px;
  line-height: 3rem;
  text-align: center;
  color: var(--main-text-color-2);
}
.success-download__trial-key-wrapper {
  margin: 3.75rem auto 2.5rem;
  padding: 1.5rem;
  width: 67.5rem;
  border: 0.25rem solid var(--primary-color);
  border-radius: 1rem;
}
.success-download__trial-key {
  margin: 0;
  word-break: break-all;
  font-size: 1rem;
  line-height: 1.25rem;
  color: var(--main-text-color-2);
}
.success-download__subtitle {
  margin: 0 auto;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.125rem;
  line-height: 4.75rem;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--main-text-color-2);
  width: max-content;
}
.success-download__bottom-panel {
  background-image: url("../images/successDownloadBackground.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.success-download__instruction-box {
  margin: 3.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-download__instruction-box > a {
  margin: 1rem 0;
  font-weight: 300;
  font-size: 35px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  color: var(--links-color-main);
  text-decoration-line: underline;
}
.success-download__instruction-box > a:visited {
  color: var(--links-color-visited);
}
.success-download__instruction-box > a:hover {
  color: var(--links-color-active);
}
.success-download__instruction-box > p {
  width: 67.5rem;
}
.success-download__instruction-box > p > a {
  cursor: pointer;
  color: var(--links-color-main);
  text-decoration-line: underline;
}
.success-download__instruction-box > p > a:visited {
  color: var(--links-color-visited);
}
.success-download__instruction-box > p > a:hover {
  color: var(--links-color-active);
}
.success-download__obtain-support-box {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-download__obtain-support-box > p:nth-of-type(1) {
  margin: 1rem 0 1.5rem;
  width: 67.5rem;
  text-align: center;
}
.success-download__obtain-support-box > p:nth-of-type(2) {
  width: 45.875rem;
}
.success-download__obtain-support-box > p:nth-of-type(2) > b {
  font-weight: 700;
}
.success-download__obtain-support-box > a {
  font-weight: 300;
  font-size: 35px;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  color: var(--links-color-main);
  text-decoration-line: underline;
}
.success-download__obtain-support-box > a:visited {
  color: var(--links-color-visited);
}
.success-download__obtain-support-box > a:hover {
  color: var(--links-color-active);
}
.success-download__obtain-support-box a + a {
  margin: 1.5rem 0 1rem;
}
.success-download__learn-more {
  padding-bottom: 10rem;
}
.success-download__learn-more > h1.success-download__title {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.success-download__learn-more > p {
  width: 45.875rem;
}
.success-download__learn-more > p > a {
  cursor: pointer;
  color: var(--links-color-main);
  text-decoration-line: underline;
}
.success-download__learn-more > p > a:visited {
  color: var(--links-color-visited);
}
.success-download__learn-more > p > a:hover {
  color: var(--links-color-active);
}
@media (max-width: 1440px) {
  .success-download__title {
    margin-top: 4.375rem;
    width: 42.75rem;
  }
  .success-download__main-text {
    width: 59rem;
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
  .success-download__trial-key-wrapper {
    margin: 3.75rem auto;
    width: 59rem;
  }
  .success-download__instruction-box {
    margin-top: 3.75rem;
  }
  .success-download__instruction-box > a {
    font-size: 1.5rem;
  }
  .success-download__instruction-box > p {
    width: 59rem;
  }
  .success-download__obtain-support-box {
    margin-bottom: 80px;
  }
  .success-download__obtain-support-box > p:nth-of-type(1) {
    width: 59rem;
  }
  .success-download__obtain-support-box > p:nth-of-type(2) {
    width: 30rem;
  }
  .success-download__obtain-support-box > a {
    font-size: 1.5rem;
  }
  .success-download__learn-more {
    padding-bottom: 7.5rem;
  }
  .success-download__learn-more > h1.success-download__title {
    width: 59rem;
  }
  .success-download__learn-more > p {
    width: 30.3125rem;
  }
}
@media (max-width: 1024px) {
  .success-download__title {
    margin-top: 3.75rem;
    width: 39rem;
  }
  .success-download__main-text {
    width: 39rem;
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
  .success-download__trial-key-wrapper {
    margin-bottom: 2.5rem;
    padding: 1.5rem 1rem;
    width: 39rem;
  }
  .success-download__instruction-box {
    margin: 3.75rem 0;
  }
  .success-download__instruction-box > a {
    font-size: 1.5rem;
  }
  .success-download__instruction-box > p {
    width: 38.8125rem;
  }
  .success-download__obtain-support-box {
    margin-bottom: 60px;
  }
  .success-download__obtain-support-box > p:nth-of-type(1) {
    margin-bottom: 40px;
    width: 624px;
  }
  .success-download__learn-more {
    padding-bottom: 80px;
  }
  .success-download__learn-more > h1.success-download__title {
    width: 624px;
  }
}
@media (max-width: 768px) {
  .success-download__title {
    margin-left: 5rem;
    margin-right: 5rem;
    max-width: 38rem;
    width: auto;
  }
  .success-download__main-text {
    margin-left: 5rem;
    margin-right: 5rem;
    max-width: 33.375rem;
    width: auto;
  }
  .success-download__trial-key-wrapper, .success-download__trial-key-wrapper + p {
    margin-left: 5rem;
    margin-right: 5rem;
    max-width: 38rem;
    width: auto;
  }
  .success-download__instruction-box > p {
    max-width: 33rem;
    width: auto;
  }
  .success-download__obtain-support-box {
    margin: 0 5rem 2.5rem;
  }
  .success-download__obtain-support-box > .success-download__subtitle {
    width: auto;
  }
  .success-download__obtain-support-box > p:nth-of-type(1) {
    margin-bottom: 2.5rem;
    max-width: 33rem;
    width: auto;
  }
  .success-download__obtain-support-box > p:nth-of-type(2) {
    margin: 0;
    max-width: 30rem;
    width: auto;
  }
  .success-download__learn-more {
    padding-bottom: 5rem;
  }
  .success-download__learn-more > h1.success-download__title, .success-download__learn-more > p {
    max-width: none;
    width: auto;
  }
}
@media (max-width: 550px) {
  .success-download__title {
    margin: 2rem 3.125rem;
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__main-text {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
    max-width: 28.125rem;
    width: auto;
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .success-download__trial-key-wrapper {
    margin: 2rem 3.125rem;
  }
  .success-download__trial-key-wrapper, .success-download__trial-key-wrapper + p {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__trial-key {
    font-size: 0.625rem;
    line-height: 1.25rem;
  }
  .success-download__subtitle {
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0;
  }
  .success-download__instruction-box {
    margin: 2.5rem 3.125rem;
  }
  .success-download__instruction-box > a {
    margin-bottom: 24px;
  }
  .success-download__instruction-box > p {
    margin: 0;
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__obtain-support-box {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
    margin-bottom: 2.5rem;
  }
  .success-download__obtain-support-box > p:nth-of-type(1) {
    margin-bottom: 1.5rem;
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__obtain-support-box > p:nth-of-type(2) {
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__obtain-support-box > a {
    font-size: 20px;
  }
  .success-download__learn-more {
    margin-left: 3.125rem;
    margin-right: 3.125rem;
  }
  .success-download__learn-more > h1.success-download__title {
    margin: 0 0 1.5rem;
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__learn-more > p {
    max-width: 28.125rem;
    width: auto;
  }
  .success-download__learn-more > .success-download__main-text {
    margin: 0;
  }
}

.purchase-section {
  padding: 3.75rem 0 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.purchase-section__title {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4.6875rem;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--main-text-color-2);
  margin-bottom: 2.5rem;
}
@media (max-width: 1440px) {
  .purchase-section__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 1024px) {
  .purchase-section__title {
    font-size: 3rem;
  }
}
@media (max-width: 550px) {
  .purchase-section__title {
    font-size: 1.625rem;
    letter-spacing: 0;
  }
}
@media (max-width: 1440px) {
  .purchase-section {
    padding-bottom: 1.375rem;
  }
  .purchase-section__table {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .purchase-section {
    padding-top: 4rem;
  }
}
@media (max-width: 768px) {
  .purchase-section {
    padding-top: 1rem;
    padding-bottom: 0;
  }
  .purchase-section__title {
    margin-bottom: 1.5rem;
    width: 33rem;
  }
}
@media (max-width: 550px) {
  .purchase-section {
    padding-top: 2rem;
  }
  .purchase-section__title {
    max-width: 20.4375rem;
    width: 100%;
  }
}

.purchase-container {
  width: 70.5rem;
}
.purchase-container__subtitle, .purchase-container__description {
  margin: 0 auto;
  width: 67.5rem;
  color: var(--main-text-color-2);
}
.purchase-container__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.75rem;
}
.purchase-container__description {
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.03em;
}
.purchase-container__purchase-radio-menu {
  margin: 0 auto 2.5rem;
  width: 68.5rem;
}
.purchase-container__purchase-radio-menu .custom-radio-button {
  padding-left: 0.5rem;
  height: 2.625rem;
  justify-content: center;
  background: var(--color-white);
  transition: all 0.3s;
}
.purchase-container__purchase-radio-menu .custom-radio-button:hover {
  cursor: pointer;
}
.purchase-container__purchase-radio-menu .custom-radio-button:not(:last-child) {
  margin-bottom: 1rem;
}
.purchase-container__purchase-radio-menu .custom-radio-button input[type=radio] + .custom-radio-button__label:before {
  top: 0;
  margin: 0;
}
.purchase-container__purchase-radio-menu .custom-radio-button__label-signature {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.purchase-container__purchase-radio-menu .custom-radio-button__signature-title {
  margin-right: 0.5rem;
  order: 1;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.03em;
}
.purchase-container__purchase-radio-menu .custom-radio-button__signature-description {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.03em;
}
.purchase-container__purchase-radio-menu .custom-radio-button.purchase-container__purchase-radio-menu-item_active {
  box-shadow: 0 5px 10px rgba(24, 120, 189, 0.15);
  border-radius: 1.875rem;
}
.purchase-container__purchase-radio-menu .custom-radio-button.purchase-container__purchase-radio-menu-item_xs-margin {
  margin-bottom: 1.5rem;
}
.purchase-container__manage-panel {
  margin: 3.75rem auto;
  width: 67.5rem;
}
.purchase-container__price-field {
  margin: 0;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.5rem;
  color: var(--main-text-color-2);
}
.purchase-container__price-field > span {
  font-size: 3rem;
  line-height: 2.5rem;
}
.purchase-container__panel-wrapper {
  margin-top: 1.5rem;
  display: flex;
  position: relative;
}
.purchase-container__panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19.6875rem;
  height: 3.75rem;
  background-color: var(--color-white);
  border: 2px solid var(--primary-color);
  border-radius: 0.625rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  position: relative;
  padding: 0;
  font-size: 1.5625rem;
  line-height: 2.125rem;
}
.purchase-container__panel-link:hover {
  background-color: var(--main-button-hover);
}
.purchase-container__panel-link > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.purchase-container__panel-link:first-child {
  margin-right: 3rem;
  background-color: var(--color-green-100);
  border-color: var(--main-text-color-2);
}
.purchase-container__panel-link:first-child > a {
  color: var(--main-text-color-2);
}
.purchase-container__panel-link:first-child:hover {
  background-color: var(--color-green-500);
}
.purchase-container__panel-link_disabled {
  border-width: 0;
  background-color: var(--disabled-background);
}
.purchase-container__panel-link_disabled, .purchase-container__panel-link_disabled > a {
  color: var(--disabled-content-color);
  pointer-events: none;
}
.purchase-container__message-link {
  position: absolute;
  text-decoration: underline;
  top: 4rem;
  left: 29rem;
  font-size: 1.0625rem;
  line-height: 1.4375rem;
  color: var(--links-color-main);
}
.purchase-container__message {
  position: absolute;
  top: -6.15rem;
  left: 22.75rem;
  padding: 1rem 0.5rem 1rem 1.5rem;
  width: 19.6875rem;
  height: 5.3rem;
  display: flex;
  justify-content: space-between;
  background: url(../img/messageBackground.png) no-repeat;
  background-size: 100%;
}
.purchase-container__message-text {
  margin: 0;
  width: 15rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: var(--main-text-color-2);
}
.purchase-container__message-button {
  padding: 0;
  width: 0.75rem;
  height: 16px;
  width: 16px;
  display: flex;
  border: none;
  background: url(../img/cross.svg) no-repeat center;
  cursor: pointer;
}
.purchase-container__panel-image-wrapper {
  margin-left: 4.125rem;
  background: url(../img/e-walletLogos.jpg) no-repeat center;
  background-size: 100%;
  min-height: 32px;
}
@media (max-width: 1440px) {
  .purchase-container {
    width: 62.125rem;
  }
  .purchase-container__subtitle {
    width: 59rem;
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
  .purchase-container__description {
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    width: 59rem;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  .purchase-container__purchase-radio-menu {
    margin-bottom: 0.5rem;
    width: 60rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button {
    height: 2.5rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__signature-description {
    font-size: 1.375rem;
    line-height: 1.375rem;
  }
  .purchase-container__manage-panel {
    width: 59rem;
  }
  .purchase-container__panel-wrapper {
    margin-top: 1.75rem;
  }
  .purchase-container__panel-link {
    width: 17.8125rem;
  }
  .purchase-container__panel-link:first-child {
    margin-right: 2rem;
  }
  .purchase-container__message-link {
    left: 25rem;
  }
  .purchase-container__message {
    left: 20rem;
    width: 17.5625rem;
  }
  .purchase-container__panel-image-wrapper {
    margin-left: 2.5rem;
    width: 18.875rem;
  }
}
@media (max-width: 1024px) {
  .purchase-container {
    width: 43rem;
  }
  .purchase-container__subtitle {
    width: 40rem;
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
  .purchase-container__description {
    margin-top: 1.125rem;
    margin-bottom: 0.875rem;
    width: 40rem;
    font-size: 1rem;
    line-height: 1.4375rem;
  }
  .purchase-container__purchase-radio-menu {
    margin-bottom: 1.5rem;
    width: 41.125rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button {
    height: 2.25rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__label:before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__label-signature {
    margin-left: 0.875rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__signature-title {
    font-size: 1.375rem;
    line-height: 1.375rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__signature-description {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
  .purchase-container__manage-panel {
    margin-top: 2.75rem;
    width: 40rem;
  }
  .purchase-container__price-field {
    font-size: 1.5rem;
  }
  .purchase-container__price-field > span {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .purchase-container__panel-wrapper {
    margin-top: 1.5rem;
  }
  .purchase-container__panel-link {
    height: 3.125rem;
    width: 12.1875rem;
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .purchase-container__message-link {
    top: 3.25rem;
    left: 16.25rem;
  }
  .purchase-container__message {
    top: -4.25rem;
    left: 14.375rem;
    width: 11.875rem;
    height: 3.4375rem;
    padding-top: 0.5rem;
    padding-left: 1rem;
  }
  .purchase-container__message > img {
    height: 100%;
    object-fit: fill;
  }
  .purchase-container__message-text {
    font-size: 0.625rem;
    line-height: 0.875rem;
    width: 8rem;
  }
  .purchase-container__panel-image-wrapper {
    margin-left: 1.5rem;
    width: 12.1875rem;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .purchase-container {
    max-width: 35rem;
    width: 100%;
  }
  .purchase-container__subtitle {
    width: 33rem;
  }
  .purchase-container__description {
    margin-bottom: 1.375rem;
    width: 33rem;
  }
  .purchase-container__purchase-radio-menu {
    margin-bottom: 1rem;
    width: 34rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__signature-description {
    font-size: 1rem;
  }
  .purchase-container__manage-panel {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    width: 32.625rem;
  }
  .purchase-container__panel-link {
    height: 2.5rem;
    width: 10.375rem;
    flex-shrink: 0;
  }
  .purchase-container__panel-link:first-child {
    margin-right: 1rem;
  }
  .purchase-container__message-link {
    top: 3.125rem;
    left: 13.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: 0.03em;
  }
  .purchase-container__message {
    top: -3.75rem;
    left: 11.375rem;
    padding-left: 0.75rem;
    width: 10.3125rem;
  }
  .purchase-container__panel-image-wrapper {
    width: 10rem;
  }
}
@media (max-width: 550px) {
  .purchase-container {
    max-width: 20.4375rem;
  }
  .purchase-container__subtitle {
    width: 17.1875rem;
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
  .purchase-container__description {
    margin-top: 1rem;
    width: 17.1875rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    letter-spacing: 0.03em;
  }
  .purchase-container__purchase-radio-menu {
    margin-bottom: 1.125rem;
    width: 18.1875rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button {
    padding-left: 0.5rem;
    height: 2.25rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button:not(:last-child) {
    margin-bottom: 1rem;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__label {
    align-items: center;
  }
  .purchase-container__purchase-radio-menu .custom-radio-button__signature-description {
    font-size: 1.125rem;
  }
  .purchase-container__manage-panel {
    margin-top: 1rem;
    margin-bottom: 0;
    width: 17.1875rem;
  }
  .purchase-container__price-field {
    font-size: 1.25rem;
    color: var(--main-text-color-2);
  }
  .purchase-container__price-field > span {
    font-size: 2rem;
  }
  .purchase-container__panel-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .purchase-container__panel-link {
    margin-left: 0;
    width: 100%;
    height: 3.125rem;
  }
  .purchase-container__panel-link:first-child {
    margin-bottom: 1.5rem;
  }
  .purchase-container__panel-link > a {
    font-size: 1.25rem;
    line-height: 1.6875rem;
    letter-spacing: 0.05em;
  }
  .purchase-container__message-link {
    margin-top: 0.5em;
    position: static;
    width: max-content;
    align-self: center;
  }
  .purchase-container__message {
    top: -0.75rem;
    left: 0;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    height: 4.875rem;
  }
  .purchase-container__message-text {
    width: 12rem;
  }
  .purchase-container__panel-image-wrapper {
    margin: 1rem auto 0;
    width: 12.1875rem;
  }
}

.maintenance-box {
  padding: 1.5rem;
  background: var(--blue-100);
  box-shadow: 0 14px 15px -6px rgba(24, 120, 189, 0.17);
  border-radius: 8px;
  cursor: pointer;
}
.maintenance-box .global-custom-checkbox {
  float: left;
}
.maintenance-box .global-custom-checkbox > label:before {
  background-color: var(--color-white);
}
.maintenance-box__title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--main-text-color-2);
  margin: 0px;
  padding-left: 3.75rem;
}
.maintenance-box__description {
  margin: 0.25rem 0 0;
  padding-left: 3.75rem;
  color: var(--main-text-color-2);
  font-size: 1.0625rem;
  line-height: 1.4375rem;
  letter-spacing: 0.03em;
}
.maintenance-box a, .maintenance-box__link {
  text-decoration: underline;
  color: var(--links-color-main);
}
.maintenance-box a:visited, .maintenance-box__link:visited {
  color: var(--links-color-visited);
}
.maintenance-box a:hover, .maintenance-box__link:hover {
  color: var(--links-color-active);
}
.maintenance-box_active {
  background-color: var(--blue-500);
}
.maintenance-box_active .global-custom-checkbox label,
.maintenance-box_active .maintenance-box__title,
.maintenance-box_active .maintenance-box__description,
.maintenance-box_active .maintenance-box__description > a {
  color: var(--color-white);
}
@media (max-width: 1440px) {
  .maintenance-box__title {
    padding-left: 3rem;
    font-size: 1.375rem;
  }
  .maintenance-box__description {
    padding-left: 3rem;
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@media (max-width: 1024px) {
  .maintenance-box__title {
    padding-left: 2.25rem;
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
  .maintenance-box__description {
    padding-left: 2.25rem;
    font-size: 0.875rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 768px) {
  .maintenance-box {
    padding: 1rem 0 1.1875rem 1rem;
  }
  .maintenance-box__title {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
  .maintenance-box__description {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (max-width: 550px) {
  .maintenance-box {
    padding: 1rem 0 1.1875rem 1rem;
  }
  .maintenance-box__title {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .maintenance-box__description {
    margin-top: 0.625rem;
    padding-left: 2.5rem;
  }
}

.footer {
  margin: 0 auto;
  padding: 1.25rem 0;
  width: 100%;
  max-width: 90rem;
}
@media (max-width: 1440px) {
  .footer {
    max-width: 80rem;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding-bottom: 1rem;
    max-width: 60rem;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 1.25rem;
    max-width: 40rem;
  }
}
@media (max-width: 550px) {
  .footer {
    padding: 6.75rem 0 0.625rem;
    width: 100%;
    margin: 0 auto;
    max-width: 18.75rem;
  }
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-info__copy {
  opacity: 0.65;
  color: var(--main-text-color-2);
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-align: center;
  font-feature-settings: "case" on;
}
.footer-info__links {
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .footer-info__copy {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
@media (max-width: 1024px) {
  .footer-info {
    max-height: 1.0625rem;
  }
  .footer-info__copy {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}
@media (max-width: 768px) {
  .footer-info__copy {
    line-height: 150%;
  }
}
@media (max-width: 550px) {
  .footer-info {
    flex-direction: column-reverse;
  }
  .footer-info__copy {
    margin: 1.25rem 0 0;
    font-size: 0.5625rem;
    line-height: 0.75em;
  }
  .footer-info__links {
    flex-direction: column;
  }
}

.other-links__item {
  display: flex;
}
.other-links__item + .other-links__item {
  margin-left: 1rem;
}
@media (max-width: 1440px) {
  .other-links__item {
    width: 1.5625rem;
  }
  .other-links__item img {
    max-width: 100%;
    margin: auto;
  }
}
@media (max-width: 1024px) {
  .other-links__item {
    width: 1rem;
  }
  .other-links__item + .other-links__item {
    margin-left: 1.125rem;
  }
}
@media (max-width: 550px) {
  .other-links__item {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.other-links__policies {
  margin-left: 3.75rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .other-links__policies {
    margin-left: 2rem;
  }
}
@media (max-width: 550px) {
  .other-links__policies {
    margin-left: 0;
  }
}
.other-links__policies a {
  color: var(--main-text-color-2);
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: underline;
  z-index: 12345;
}
.other-links__policies a + a {
  margin-left: 2.5rem;
}
@media (max-width: 1440px) {
  .other-links__policies a {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
  .other-links__policies a + a {
    margin-left: 2rem;
  }
}
@media (max-width: 1024px) {
  .other-links__policies a {
    font-size: 12px;
    line-height: 1.125rem;
  }
  .other-links__policies a + a {
    margin-left: 1rem;
  }
}
@media (max-width: 550px) {
  .other-links__policies a {
    line-height: 1rem;
  }
  .other-links__policies a + a {
    margin-left: 1.5rem;
  }
}

.networks {
  display: flex;
  align-items: center;
}
@media (max-width: 550px) {
  .networks {
    margin-bottom: 1.25rem;
  }
}