@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: inherit;
}

*, *:focus, *:active {
  outline: none !important;
}

html {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html,
body {
  scroll-behavior: smooth;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 16px;
}
html.fixed {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  line-height: 1;
  font-weight: 400;
  background-color: #ffffff;
  overscroll-behavior: contain;
  -webkit-text-size-adjust: 100%;
  font-kerning: normal;
  font-variant-ligatures: contextual common-ligatures;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #3C6CF4;
  text-decoration: none;
}

a:hover {
  color: #3C6CF4;
  text-decoration: none;
}

textarea::-webkit-selection,
input::-webkit-selection {
  background-color: rgba(100, 100, 100, 0.4);
  color: rgba(0, 0, 0, 0.87);
}

textarea::-moz-selection,
input::-moz-selection {
  background-color: rgba(100, 100, 100, 0.4);
  color: rgba(0, 0, 0, 0.87);
}

textarea::selection,
input::selection {
  background-color: rgba(100, 100, 100, 0.4);
  color: rgba(0, 0, 0, 0.87);
}

/* Force Simple Scrollbars */
body ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
}

body ::-webkit-scrollbar-track {
  background: #e0e0e0;
}

body ::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #bfbfbf;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

body ::-webkit-scrollbar-thumb:window-inactive {
  background: #bfbfbf;
}

body ::-webkit-scrollbar-thumb:hover {
  background: #b2b2b2;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

select::-ms-expand {
  display: none;
}

.grid {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 641px), print {
  .grid {
    flex-direction: row;
  }
}
.grid > .item {
  width: 100%;
}

.grid_2column > .item:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (min-width: 641px), print {
  .grid_2column > .item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 641px), print {
  .grid_2column > .item {
    width: calc(50% - 0.625rem);
  }
}

.btn {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  height: 2.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.00125rem;
  border-radius: 0.5rem;
  display: inline-block;
  font-weight: 500;
  color: #ffffff;
  background-color: #3C6CF4;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background-position: center;
  transition: 0.145s all;
}
@media (min-width: 641px), print {
  .btn {
    padding: 0rem 1.25rem;
    font-size: 1rem;
  }
}
.btn span {
  display: block;
}
.btn:hover {
  color: #ffffff;
  background-color: #3C6CF4;
  opacity: 0.9;
}
.btn.disabled, .btn:disabled {
  background-color: #FAFAFD !important;
  pointer-events: none;
  color: #ccc;
}

.btn_sm {
  font-size: 1rem;
  padding: 12px 29px;
  height: 2.5rem;
  line-height: 1rem;
  letter-spacing: 0.0125rem;
}
@media (min-width: 641px), print {
  .btn_sm {
    font-size: 1rem;
    padding: 12px 29px;
  }
}

.btn_light {
  background-color: rgba(60, 108, 244, 0.1);
  color: #3C6CF4;
}
.btn_light:hover {
  background-color: rgba(60, 108, 244, 0.3);
}

.btn_feedback {
  position: absolute !important;
  right: 0;
  top: 14.1875rem;
  font-size: 0.875rem;
  text-transform: none;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: bottom right;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: none;
}
@media (min-width: 1025px), print {
  .btn_feedback {
    display: block;
  }
}

.toggleBox {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0.25rem;
}
.toggleBox .btn {
  font-weight: 400;
  text-transform: none;
  width: 6.875rem;
  font-size: 0.875rem;
  padding: 0rem 0.3125rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggleBox .btn:hover {
  background: #3C6CF4;
  color: #ffffff;
}
.toggleBox .btn:not(.active) {
  background: #ffffff;
  color: #3C6CF4;
}
.toggleBox .btn:not(.active):hover {
  background: rgba(60, 108, 244, 0.05);
  color: #3C6CF4;
}
.viewMode .toggleBox .btn {
  width: 2.5rem;
}
.viewMode .toggleBox .btn .icon {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.5;
}

.link {
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .link {
    font-size: 14px;
  }
}
.link .icon-arrow-long-right {
  margin-right: 6px;
  transition: margin-right 0.2s ease;
}
.link:hover .icon-arrow-long-right {
  margin-right: 7px;
}

.number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #7798F7;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.number__white {
  color: #ffffff;
}
.number__blue {
  color: #3C6CF4;
}
.number__bg_light {
  background-color: #FAFAFD;
}
.number__small {
  width: 32px;
  height: 32px;
  font-weight: 600;
  font-size: 14px;
}

input[type=text],
input[type=email],
input[type=search],
input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.checkbox, input[type=radio], input[type=checkbox] {
  display: none;
}
.checkbox + label, input[type=radio] + label, input[type=checkbox] + label {
  position: relative;
  padding-left: 1.625rem;
  min-height: 1rem;
  color: #4F4F4F;
  cursor: pointer;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox + label:before, input[type=radio] + label:before, input[type=checkbox] + label:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: #ffffff;
  border: solid 1px #e2e2e2;
  position: absolute;
  left: 0;
  top: -0.1875rem;
}
.checkbox + label:hover:before, input[type=radio] + label:hover:before, input[type=checkbox] + label:hover:before {
  will-change: box-shadow;
}
.checkbox + label .icon, input[type=radio] + label .icon, input[type=checkbox] + label .icon {
  font-size: 1.5rem;
  margin-left: 0.375rem;
  display: inline-block;
  vertical-align: middle;
  transition: 0.12s color ease;
  line-height: 0;
  margin-top: -0.75rem;
  margin-bottom: -0.625rem;
  color: rgba(0, 0, 0, 0.2);
}
.checkbox + label .icon:hover, input[type=radio] + label .icon:hover, input[type=checkbox] + label .icon:hover {
  color: #f5e086;
}
.checkbox:checked + label:before, input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:before {
  content: "✔";
  text-align: center;
  font-size: 0.75rem;
  color: #15a380;
  line-height: 1;
  animation: shadow 0.5s;
}

input[type=radio] + label {
  padding-left: 2rem;
  min-height: 1.25rem;
  padding-top: 0.1875rem;
}
input[type=radio] + label:before, input[type=radio] + label:after {
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
}
input[type=radio]:checked + label:before {
  background-color: #15a380;
}
input[type=radio]:checked + label:after {
  content: "";
  border: solid 1px #e2e2e2;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0rem 0rem 0rem 0.1875rem #ffffff inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:valid,
select:-webkit-autofill,
input:autofill {
  box-shadow: inset 0 0 0 50px #18171c !important;
  -webkit-text-fill-color: #999 !important;
  font-family: "Montserrat", sans-serif;
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  width: 100%;
  font-size: 0.875rem;
  height: 2.1875rem;
}

.input,
.input-text,
input[type=text],
input[type=search],
input[type=email],
input[type=number],
input[type=password],
textarea {
  box-shadow: inset 0 0 0 50px #18171c !important;
  -webkit-text-fill-color: #999 !important;
  font-family: "Montserrat", sans-serif;
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
  transition: 0.2s border-color ease-in;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  width: 100%;
  font-size: 0.875rem;
  height: 2.1875rem;
}
.input:focus,
.input-text:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  outline: none;
}
.input:focus::-webkit-input-placeholder,
.input-text:focus::-webkit-input-placeholder,
input[type=text]:focus::-webkit-input-placeholder,
input[type=search]:focus::-webkit-input-placeholder,
input[type=email]:focus::-webkit-input-placeholder,
input[type=number]:focus::-webkit-input-placeholder,
input[type=password]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}
.input:focus::-moz-placeholder,
.input-text:focus::-moz-placeholder,
input[type=text]:focus::-moz-placeholder,
input[type=search]:focus::-moz-placeholder,
input[type=email]:focus::-moz-placeholder,
input[type=number]:focus::-moz-placeholder,
input[type=password]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent !important;
}
.input:focus:-moz-placeholder,
.input-text:focus:-moz-placeholder,
input[type=text]:focus:-moz-placeholder,
input[type=search]:focus:-moz-placeholder,
input[type=email]:focus:-moz-placeholder,
input[type=number]:focus:-moz-placeholder,
input[type=password]:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent !important;
}
.input:focus:-ms-input-placeholder,
.input-text:focus:-ms-input-placeholder,
input[type=text]:focus:-ms-input-placeholder,
input[type=search]:focus:-ms-input-placeholder,
input[type=email]:focus:-ms-input-placeholder,
input[type=number]:focus:-ms-input-placeholder,
input[type=password]:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}
.input::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.4);
  transition: 0.12s color;
}
.input::-moz-placeholder,
.input-text::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(68, 68, 68, 0.4);
  transition: 0.12s color;
}
.input:-moz-placeholder,
.input-text:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
  color: rgba(68, 68, 68, 0.4);
  transition: 0.12s color;
}
.input:-ms-input-placeholder,
.input-text:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.4);
  transition: 0.12s color;
}
.input.mage-error, .field._error .input,
.input-text.mage-error,
.field._error .input-text,
input[type=text].mage-error,
.field._error input[type=text],
input[type=search].mage-error,
.field._error input[type=search],
input[type=email].mage-error,
.field._error input[type=email],
input[type=number].mage-error,
.field._error input[type=number],
input[type=password].mage-error,
.field._error input[type=password],
textarea.mage-error,
.field._error textarea {
  border-color: #a31515;
}
.input:invalid,
.input-text:invalid,
input[type=text]:invalid,
input[type=search]:invalid,
input[type=email]:invalid,
input[type=number]:invalid,
input[type=password]:invalid,
textarea:invalid {
  border-color: #666;
}
.input:invalid ~ .error-message,
.input-text:invalid ~ .error-message,
input[type=text]:invalid ~ .error-message,
input[type=search]:invalid ~ .error-message,
input[type=email]:invalid ~ .error-message,
input[type=number]:invalid ~ .error-message,
input[type=password]:invalid ~ .error-message,
textarea:invalid ~ .error-message {
  display: inline-block;
}
.input.valid,
.input-text.valid,
input[type=text].valid,
input[type=search].valid,
input[type=email].valid,
input[type=number].valid,
input[type=password].valid,
textarea.valid {
  border-color: #15a380;
  animation: 0.5s shadow;
}
.input.size_sm,
.input-text.size_sm,
input[type=text].size_sm,
input[type=search].size_sm,
input[type=email].size_sm,
input[type=number].size_sm,
input[type=password].size_sm,
textarea.size_sm {
  line-height: 1.33;
  font-size: 0.75rem;
  height: 2rem;
}

.select, select {
  font-family: "Montserrat", sans-serif;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 1.375rem;
  padding-left: 0.625rem;
  background-color: #ffffff;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAYAAADgKtSgAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAF6ADAAQAAAABAAAAFwAAAACFL/OTAAAA2UlEQVRIDe2S4RGCMAyFaSdgExlBN6AjOIKbOAIb1A10BNzEDfA97+pFactTf0rucg1p8j0SaJrV1g380QZijB28/WXkd4YnjEkcZ/q3AjmGM8n01iNEdiGEG07JSgw/TdMRhAQmrIPLE2TAibH1zrkeAldmjEkCBTAxe0x+coxQ1ELgAqENn42NiLMrWgAPZDzgDD4RUMAvcFVABc/ggsABNRFufwC2cccDA2vPtdhkZUW2LMVZMC+zcF6IAkVwFS4IVMGL8IrAIliCZwQkMPtk4zeA93IDCu9ukZVuk+YkwQAAAABJRU5ErkJggg==");
  background-position: right 0.625rem center;
  background-repeat: no-repeat;
  background-size: 0.70625rem;
  min-width: 3.875rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 400;
  border: 1px solid #e2e2e2;
  border-radius: 0.25rem;
  height: 2.5rem;
  cursor: pointer;
  display: block;
  width: 100%;
}
.select.size_sm, select.size_sm {
  line-height: 1.33;
  font-size: 0.75rem;
  height: 2rem;
}

input[type=date] {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAAAjHh4AAAAiHx8AAAAiGxsVFRUAAAAhHh4AAACrw8OOAAAACnRSTlMAZmZTTScMBkxM9bqeTgAAAHxJREFUOMtjGFaA1VAQDoQDEOLsIHGETAFcglkQBRjAJQJRJUThEoaCbQhzMwSF4WxBwQSEBJugIJIEshOJkkABVJSg0FVgykkTjDEllJRAmBQJJxUQxmk5zSSgfsCUgDqVBAmoHzAlClASA6Hkg5ngCCVRzESNMxsMJwAAYV8cb9lWSJIAAAAASUVORK5CYII=");
  background-position: right -0.4375rem top 0.125rem;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  width: 50%;
  height: 1.5rem;
  cursor: pointer;
  border: none;
}

textarea {
  min-height: 8.5rem !important;
  max-width: 100%;
  max-height: 80rem;
}

form, fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

input[type=file] {
  border: none;
}

.inputBox {
  text-align: left;
  position: relative;
  font-size: 0.875rem;
}
.inputBox:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.inputBox .label {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.018125rem;
  color: #444444;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.inputBox .label .note {
  display: block;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 641px), print {
  .inputBox .label .note {
    margin-left: 0.375rem;
    display: inline;
  }
}
.inputBox .label .private {
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  margin-left: 0.3125rem;
  margin-top: -0.5rem;
  margin-bottom: -0.3125rem;
  color: #15a380;
}
.inputBox .twoColumn, .inputBox .threeColumn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inputBox .twoColumn .input, .inputBox .twoColumn .select {
  width: calc(50% - 0.3125rem);
}
.inputBox .threeColumn .input, .inputBox .threeColumn .select {
  width: calc(33.333% - 0.3125rem);
}
.inputBox.required .label:after {
  content: "*";
  margin-left: 0.1875rem;
}

.actionsBar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.875rem;
  flex-direction: column;
}
@media (min-width: 641px), print {
  .actionsBar {
    flex-direction: row;
  }
}
.modalBody .actionsBar {
  margin-top: 2.5rem;
}
.actionsBar > a {
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 641px), print {
  .actionsBar > a {
    flex-grow: 0;
    width: auto;
  }
}
.actionsBar > a:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
@media (min-width: 641px), print {
  .actionsBar > a:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 0.625rem;
  }
  .modalBody .actionsBar > a:not(:last-of-type) {
    margin-right: 1.25rem;
  }
}

.icon-illustration {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .icon-illustration {
    width: 60px;
    height: 60px;
  }
}
.icon-illustration * {
  width: 100%;
  height: 100%;
}
.icon-globe {
  width: 32px;
  height: 32px;
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.icon-globe:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.49401 7.27273H4.37697C4.44548 5.47842 4.76563 3.84128 5.26722 2.5873C5.36024 2.35476 5.46103 2.13151 5.56976 1.92036C3.37296 2.7991 1.76359 4.83402 1.49401 7.27273ZM7.99951 0C3.58123 0 -0.000488281 3.58172 -0.000488281 8C-0.000488281 12.4183 3.58123 16 7.99951 16C12.4178 16 15.9995 12.4183 15.9995 8C15.9995 3.58172 12.4178 0 7.99951 0ZM7.99951 1.45455C7.86226 1.45455 7.65793 1.52109 7.39557 1.79851C7.13175 2.07747 6.86067 2.52016 6.61773 3.12751C6.19492 4.18453 5.90055 5.63163 5.83265 7.27273H10.1664C10.0985 5.63163 9.8041 4.18453 9.38129 3.12751C9.13836 2.52016 8.86727 2.07747 8.60346 1.79851C8.3411 1.52109 8.13676 1.45455 7.99951 1.45455ZM11.6221 7.27273C11.5535 5.47842 11.2334 3.84128 10.7318 2.5873C10.6388 2.35476 10.538 2.13151 10.4293 1.92036C12.6261 2.7991 14.2354 4.83402 14.505 7.27273H11.6221ZM10.1664 8.72727H5.83265C5.90055 10.3684 6.19492 11.8155 6.61773 12.8725C6.86067 13.4798 7.13175 13.9225 7.39557 14.2015C7.65793 14.4789 7.86226 14.5455 7.99951 14.5455C8.13676 14.5455 8.3411 14.4789 8.60346 14.2015C8.86727 13.9225 9.13836 13.4798 9.38129 12.8725C9.8041 11.8155 10.0985 10.3684 10.1664 8.72727ZM10.4293 14.0796C10.538 13.8685 10.6388 13.6452 10.7318 13.4127C11.2334 12.1587 11.5535 10.5216 11.6221 8.72727H14.505C14.2354 11.166 12.6261 13.2009 10.4293 14.0796ZM5.56976 14.0796C5.46103 13.8685 5.36024 13.6452 5.26722 13.4127C4.76563 12.1587 4.44548 10.5216 4.37697 8.72727H1.49401C1.76359 11.166 3.37296 13.2009 5.56976 14.0796Z' fill='%233C6CF4'/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-arrow-right {
  width: 10px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-arrow-right:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='24' viewBox='0 0 14 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L12 12L2 22' stroke='%23333333' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
  width: 10px;
  height: 20px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-arrow-right:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='24' viewBox='0 0 14 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L12 12L2 22' stroke='%233C6CF4' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}
.icon-arrow-left {
  width: 10px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-arrow-left:after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='24' viewBox='0 0 14 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 12L12 22' stroke='%23333333' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
  width: 10px;
  height: 20px;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-arrow-left:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='24' viewBox='0 0 14 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L2 12L12 22' stroke='%233C6CF4' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}
.icon-arrow-long-right {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-arrow-long-right:after {
  content: "";
  position: absolute;
  width: 23px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.7071 1.29289L17 0.585785L15.5858 2L16.2929 2.70711L19.5858 6H1H0V8H1H19.5858L16.2929 11.2929L15.5858 12L17 13.4142L17.7071 12.7071L22.7071 7.70711L23.4142 7L22.7071 6.29289L17.7071 1.29289Z' fill='%233C6CF4'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 23px;
  background-repeat: no-repeat;
  transition: margin-right 0.2s ease;
}
.icon-hamburger {
  width: 24px;
  height: 14px;
}
.icon-hamburger:after {
  width: 24px;
  height: 14px;
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='2' rx='1' fill='%234F4F4F'/%3E%3Crect y='6' width='24' height='2' rx='1' fill='%234F4F4F'/%3E%3Crect y='12' width='24' height='2' rx='1' fill='%234F4F4F'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  transition: margin-right 0.2s ease;
}
.icon-hamburger-close {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-hamburger-close:after {
  width: 17px;
  height: 17px;
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L17.2635 15.8492C17.654 16.2398 17.654 16.8729 17.2635 17.2635C16.8729 17.654 16.2398 17.654 15.8492 17.2635L0.292893 1.70711C-0.0976309 1.31658 -0.0976312 0.683417 0.292893 0.292893Z' fill='%234F4F4F'/%3E%3Cpath d='M0.293044 17.2636C-0.0974802 16.8731 -0.0974802 16.2399 0.293044 15.8494L15.8494 0.293034C16.2399 -0.0974901 16.8731 -0.0974904 17.2636 0.293034C17.6541 0.683558 17.6541 1.31672 17.2636 1.70725L1.70726 17.2636C1.31673 17.6541 0.683568 17.6541 0.293044 17.2636Z' fill='%234F4F4F'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 17px;
  background-repeat: no-repeat;
  transition: margin-right 0.2s ease;
}
.icon-check {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  background-color: #FAFAFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-check:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6715 0.374043L6.45291 8.93712L2.32871 5.10405C1.79719 4.61005 0.930147 4.61005 0.398635 5.10405C-0.132878 5.59804 -0.132878 6.40388 0.398635 6.89788L5.48798 11.628C5.75539 11.8765 6.10419 12 6.45299 12C6.8018 12 7.15059 11.878 7.41801 11.628L17.6014 2.16779C18.1329 1.6738 18.1329 0.867956 17.6014 0.373963C17.0649 -0.124654 16.2028 -0.124654 15.6713 0.373963L15.6715 0.374043Z' fill='%233C6CF4'/%3E%3C/svg%3E%0A");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-facebook {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-facebook:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.3759 0.000976562H3.62412C1.62257 0.000976562 0 1.62355 0 3.6251V20.3745C0 22.376 1.62257 23.9986 3.62412 23.9986H20.3759C22.3774 23.9986 24 22.376 24 20.3745V3.6251C24 1.62355 22.3774 0.000976562 20.3759 0.000976562ZM16.5 6.43104H14.1937C13.575 6.43104 13.125 6.96541 13.125 7.61229V8.65291H16.4438L15.9094 11.9998H13.125V20.9998H9.75V11.9998H7.5V8.65291H9.75V6.93729C9.80625 4.99666 10.4812 3.14041 13.7719 2.99979H16.5V6.43104Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-linkedin {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-linkedin:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.62412 0H20.3759C22.3774 0 24 1.62257 24 3.62412V20.3735C24 22.375 22.3774 23.9976 20.3759 23.9976H3.62412C1.62257 23.9976 0 22.375 0 20.3735V3.62412C0 1.62257 1.62257 0 3.62412 0ZM7.67903 20.1407V9.23457H4.05407V20.1407H7.67903ZM5.86703 7.74465C7.13111 7.74465 7.91795 6.90719 7.91795 5.86065C7.8944 4.79051 7.13116 3.97629 5.89103 3.97629C4.65107 3.97629 3.84023 4.79052 3.84023 5.86065C3.84023 6.90725 4.62687 7.74465 5.84339 7.74465H5.86695H5.86703ZM13.3104 20.1407H9.68543L9.68551 20.1405C9.68551 20.1405 9.73308 10.2578 9.68551 9.23439H13.3105V10.7786C13.7922 10.0354 14.6545 8.97855 16.5774 8.97855C18.9624 8.97855 20.7507 10.5372 20.7507 13.8872V20.1406H17.126V14.3061C17.126 12.8399 16.6013 11.8398 15.2895 11.8398C14.2882 11.8398 13.6917 12.5143 13.4297 13.1656C13.3339 13.3986 13.3104 13.7242 13.3104 14.0502V20.1407Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.icon-crunchbase {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-crunchbase:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.3759 0H3.62412C1.62257 0 0 1.62257 0 3.62412V20.3735C0 22.375 1.62257 23.9976 3.62412 23.9976H20.3759C22.3774 23.9976 24 22.375 24 20.3735V3.62412C24 1.62257 22.3774 0 20.3759 0ZM8.21224 16.1203C8.70482 15.881 9.10056 15.48 9.33351 14.9842H11.1935C10.9444 15.9709 10.3425 16.8321 9.50164 17.4049C8.66079 17.9777 7.63929 18.2225 6.63029 18.0928C5.62129 17.9632 4.69474 17.4683 4.02582 16.7015C3.35691 15.9348 2.99202 14.9494 3.00013 13.9318C3.00825 12.9141 3.38882 11.9347 4.06987 11.1788C4.75093 10.4228 5.68526 9.94268 6.6962 9.8292C7.70714 9.71571 8.72461 9.97672 9.55621 10.5629C10.3878 11.149 10.9759 12.0197 11.2093 13.0102H9.36275C9.14458 12.5078 8.7609 12.0952 8.27562 11.8414C7.79034 11.5876 7.23277 11.5077 6.6958 11.6152C6.15882 11.7227 5.67488 12.011 5.32459 12.4321C4.9743 12.8532 4.77881 13.3816 4.7707 13.9294C4.76258 14.4772 4.94233 15.0112 5.28 15.4425C5.61767 15.8737 6.09286 16.1763 6.62641 16.2996C7.15996 16.423 7.71965 16.3597 8.21224 16.1203ZM16.5374 9.81975C16.6386 9.81225 16.7406 9.80624 16.8433 9.80624L16.8418 9.8025C17.4924 9.80232 18.134 9.95493 18.7149 10.248C19.2959 10.5412 19.7999 10.9666 20.1865 11.4901C20.5731 12.0136 20.8315 12.6206 20.9409 13.2622C21.0502 13.9039 21.0075 14.5622 20.8162 15.1843C20.6248 15.8064 20.2902 16.3749 19.8392 16.844C19.3882 17.3132 18.8334 17.6698 18.2195 17.8854C17.6055 18.1009 16.9496 18.1693 16.3045 18.085C15.6593 18.0007 15.043 17.766 14.505 17.4V17.8402H12.7994V5.87325H14.4937V10.5412C15.0985 10.1227 15.8041 9.87364 16.5374 9.81975ZM19.2101 14.3356C19.2135 14.3188 19.2169 14.3019 19.2169 14.2852C19.233 14.18 19.242 14.0737 19.2438 13.9672C19.2438 13.3307 18.9911 12.7203 18.5412 12.2702C18.0913 11.8201 17.4811 11.5672 16.8448 11.5672C16.7621 11.5691 16.6795 11.5751 16.5974 11.5852C16.1873 11.6282 15.7951 11.7761 15.4588 12.0148C15.1225 12.2535 14.8534 12.5749 14.6774 12.948C14.5319 13.2557 14.454 13.5911 14.449 13.9314C14.4439 14.2718 14.5119 14.6093 14.6482 14.9212C14.6931 15.0231 14.745 15.1219 14.8033 15.2167L14.8131 15.2332C14.9306 15.4209 15.0734 15.5915 15.2374 15.7402L15.2562 15.7567C15.418 15.9007 15.5986 16.022 15.793 16.1175L15.8379 16.1392C16.0314 16.2286 16.2359 16.2919 16.446 16.3275L16.5209 16.3387C16.628 16.354 16.7359 16.362 16.844 16.3627C16.9305 16.3629 17.0168 16.3582 17.1027 16.3485C17.1139 16.344 17.1244 16.344 17.1349 16.344C17.2099 16.3342 17.2849 16.3222 17.3598 16.3057H17.3666C17.5295 16.2689 17.6881 16.2148 17.8397 16.1445C18.3491 15.9102 18.7609 15.5055 19.0039 15L19.0234 14.9625C19.0686 14.8651 19.1074 14.7649 19.1396 14.6625V14.6535C19.1674 14.5571 19.1895 14.4592 19.2056 14.3602C19.2068 14.3521 19.2085 14.3439 19.2101 14.3356Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}
.icon-twitter {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-twitter:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.3759 0.000976562H3.62412C1.62257 0.000976562 0 1.62355 0 3.6251V20.3745C0 22.376 1.62257 23.9986 3.62412 23.9986H20.3759C22.3774 23.9986 24 22.376 24 20.3745V3.6251C24 1.62355 22.3774 0.000976562 20.3759 0.000976562ZM18.9469 7.40459C19.7906 7.32671 20.6906 7.01517 21 6.8594C20.4656 7.66421 19.7344 8.28729 19.2281 8.59882V8.65075V8.70267V8.72863C19.4531 14.2584 14.8125 18.7498 8.82188 18.7498C6.7125 18.7498 4.71562 18.2046 3 17.244C5.53125 17.6075 7.55625 16.4392 8.14687 15.8161C6.4875 15.8161 4.94063 14.4921 4.82812 13.4796C5.16563 13.5315 5.925 13.5834 6.375 13.3757C4.09687 12.8046 3.47813 11.2209 3.50625 10.0267C3.87188 10.3642 4.6875 10.4421 5.10938 10.3902C3.84375 9.66325 2.85938 7.66421 3.98438 5.87286C5.8125 8.07959 9.075 9.35171 11.8594 9.42959C11.8031 9.19594 11.775 8.93633 11.775 8.67671C11.775 6.78152 13.4344 5.24979 15.4875 5.24979C16.5562 5.24979 17.4844 5.66517 18.1875 6.28825C18.7781 6.28825 19.9594 5.8469 20.4937 5.53536C20.2969 6.23632 19.4813 7.14498 18.9469 7.40459Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1025px), print {
  .hiddenLg {
    display: none;
  }
}

.visibleDesktop {
  display: flex;
}
@media (max-width: 640px) {
  .visibleDesktop {
    display: none;
  }
}

.visibleMobile {
  display: none;
}
@media (max-width: 640px) {
  .visibleMobile {
    display: flex;
  }
}

.visibleLg {
  display: none;
}
@media (min-width: 1025px), print {
  .visibleLg {
    display: block;
  }
}

.visibleLgInline {
  display: none;
}
@media (min-width: 1025px), print {
  .visibleLgInline {
    display: inline;
  }
}

.hiddenMd {
  display: none;
}
@media (min-width: 1025px), print {
  .hiddenMd {
    display: block;
  }
}

.visibleSm {
  display: block;
}
@media (min-width: 641px), print {
  .visibleSm {
    display: none;
  }
}

.visibleMd {
  display: block;
}
@media (min-width: 1025px), print {
  .visibleMd {
    display: none;
  }
}

@media (max-width: 640px) {
  .hiddenSm {
    display: none;
  }
}

.modalContainer {
  position: fixed;
  top: 10%;
  right: 10%;
  left: 10%;
  bottom: 10%;
  z-index: 1000;
  transition: 0.3s transform ease-in-out;
  pointer-events: none;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
}
@media (min-width: 641px), print {
  .modalContainer {
    align-items: center;
  }
}
.modalContainer.leftToRight {
  transform: translateX(-100%);
}
.modalContainer.rightToLeft {
  transform: translateX(100%);
}
.modalContainer.bottomToTop {
  transform: translateY(150%);
}
.modalContainer.topToBottom {
  transform: translateY(-100%);
}
.modalContainer.opened {
  transform: translate(0);
  transition-delay: 0.1s;
}
.modalContainer ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.125rem;
  height: 0.125rem;
}

.modalCloseBtn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.161133 13.1306L13.2917 3.92658e-05L13.8388 0.547147L0.70824 13.6777L0.161133 13.1306Z' fill='%23C4C4C4'/%3E%3Cpath d='M0.708252 0L13.8388 13.1306L13.2917 13.6777L0.161145 0.547107L0.708252 0Z' fill='%23000000'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  position: absolute;
  top: 0;
  right: -42px;
  z-index: 1;
  cursor: pointer;
  transition: 0.12s color ease;
  line-height: 0;
}
@media (max-width: 640px) {
  .modalCloseBtn {
    right: 0;
  }
}
.modalCloseBtn:hover {
  color: #000000;
}

.modalBody {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 18.75rem;
  background: #ffffff;
  width: 38.125rem;
  border-radius: 0;
  pointer-events: auto;
  padding: 50px 120px;
  color: #000000;
  background-size: cover;
  max-height: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .modalBody {
    padding: 50px;
    height: auto;
  }
}

.modalContent {
  flex-grow: 1;
}
.modalContent .img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}
.modalContent .title {
  margin-bottom: 1.875rem;
}
.modalContent .title sup {
  font-size: 0.875rem;
  font-weight: bold;
  color: #a31515;
  line-height: 1.21;
  letter-spacing: 0.02125rem;
  text-transform: uppercase;
  margin-left: 0.375rem;
}
.modalContent .title_centered {
  text-align: center;
}
.modalContent .text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
.modalContent .text_centered {
  text-align: center;
}
.modalContent .note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.43;
  padding-left: 1.8125rem;
  border-left: 1px solid #4F4F4F;
}
.modalContent .note .links {
  margin-top: 1.25rem;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 500;
  cursor: pointer;
}
.overlay.isOpen {
  display: block;
}
.overlay.isTop {
  z-index: 200;
}

.modalAddSuccessContent .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0rem 0rem 1.875rem;
}
.modalAddSuccessContent .actions .btn {
  width: calc(50% - 0.3125rem);
  padding: 0rem 0.3125rem;
}
.modalAddSuccessContent .subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 0.625rem;
  line-height: 1.1;
}
.modalAddSuccessContent .social {
  margin-bottom: 1.875rem;
}
.modalAddSuccessContent .email .subtitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modalAddSuccessContent .email .subtitle .shareLink {
  margin: -0.25rem 0rem;
}
.modalAddSuccessContent .email .subtitle .icon {
  font-size: 1.5rem;
  color: #15a380;
  line-height: 0;
}
.modalAddSuccessContent .email .subtitle .tooltip {
  margin-top: 1.25rem;
  margin-left: -1.5rem;
}
.modalAddSuccessContent .email .input {
  font-size: 0.75rem;
  padding-top: 0.625rem;
}
.modalAddSuccessContent .email .input::-webkit-input-placeholder {
  color: #444444;
}
.modalAddSuccessContent .email .input::-moz-placeholder {
  color: #444444;
}
.modalAddSuccessContent .email .input:-moz-placeholder {
  color: #444444;
}
.modalAddSuccessContent .email .input:-ms-input-placeholder {
  color: #444444;
}
.modalAddSuccessContent .control {
  display: flex;
  flex-direction: column;
  margin-top: 0.625rem;
}
.modalAddSuccessContent .control .row {
  width: 100%;
  display: flex;
  align-items: center;
  height: 2rem;
}
.modalAddSuccessContent .control .row:not(:last-child) {
  margin-bottom: 0.25rem;
}
.modalAddSuccessContent .control .row .who {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.modalAddSuccessContent .control .row .who .avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  position: relative;
  margin-right: 0.625rem;
  overflow: hidden;
  text-align: center;
}
.modalAddSuccessContent .control .row .who .avatar .icon {
  font-size: 0.75rem;
  color: #15a380;
  line-height: 1.25rem;
  display: block;
}
.modalAddSuccessContent .control .row .who .avatar .icon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
}
.modalAddSuccessContent .control .row .who .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modalAddSuccessContent .control .row .who .email {
  font-size: 0.75rem;
  color: #444444;
  max-width: 7.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 641px), print {
  .modalAddSuccessContent .control .row .who .email {
    max-width: 18.75rem;
  }
}
.modalAddSuccessContent .control .row .settings {
  width: 8.125rem;
  position: relative;
}
.modalAddSuccessContent .control .row .settings:before, .modalAddSuccessContent .control .row .settings:after {
  content: "";
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  width: 1px;
  background: #e2e2e2;
}
.modalAddSuccessContent .control .row .settings:after {
  left: auto;
  right: 0;
}
.modalAddSuccessContent .control .row .settings .select {
  border: none;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  height: 1.5rem;
}
.modalAddSuccessContent .control .row .remove {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.2);
  transition: 0.12s color ease;
  margin-left: 0.625rem;
  line-height: 0;
}
.modalAddSuccessContent .control .row .remove:hover {
  color: #000000;
}
.modalUpgradePlan .modalCloseBtn {
  color: rgba(255, 255, 255, 0.6);
}
.modalUpgradePlan .modalCloseBtn:hover {
  color: #ffffff;
}
.modalUpgradePlan .modalContent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalUpgradePlan .modalBody {
  width: 45rem;
  padding: 5rem;
}

.modalContent .modalUpgradePlanContent {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.375rem;
  box-shadow: 0rem 0.25rem 0.375rem 0rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  min-width: 85vw;
}
@media (min-width: 641px), print {
  .modalContent .modalUpgradePlanContent {
    padding: 2.5rem;
    min-width: 26.25rem;
  }
}
.modalContent .modalUpgradePlanContent .subtitle {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}
.modalContent .modalUpgradePlanContent .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.3125rem;
  line-height: 1.26;
  color: #ffffff;
}
.modalContent .modalUpgradePlanContent .text {
  font-size: 1.125rem;
  margin-bottom: 2.25rem;
  line-height: 1.33;
  max-width: 15rem;
}

.aCenter {
  text-align: center;
}

.aLeft {
  text-align: left;
}

.aRight {
  text-align: right;
}

.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.tooltip a, .inputBox a, .modalContent .note .links a {
  border-bottom: 1px solid;
  transition: 0.12s border-color ease;
}
.tooltip a:hover, .inputBox a:hover, .modalContent .note .links a:hover {
  border-color: transparent;
}

.inputBox a, .modalContent .note .links a {
  border-color: transparent;
}
.inputBox a:hover, .modalContent .note .links a:hover {
  border-color: #3C6CF4;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: "";
  opacity: 0;
  transform: scale(10);
  transition: all 0.8s;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: absolute;
  width: 6.25rem;
  height: 6.25rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.btn:hover:before {
  will-change: opacity, transform;
}
.btn:active:before {
  opacity: 0.3;
  transform: scale(0);
  transition: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 163, 128, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0.3125rem transparent;
  }
}
@keyframes shadow-error {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 21, 21, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0.5rem transparent;
  }
}
@keyframes loadingAnimation {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
/**
 * Swiper 4.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 1, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.sliderPrev {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  cursor: pointer;
}

.sliderNext {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 100;
  cursor: pointer;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container .bullet {
  width: 10px;
  height: 10px;
  border: 2px solid #D8DDE9;
  border-radius: 50%;
}
.pagination-container .bullet:not(:last-child) {
  margin-right: 24px;
}
.pagination-container .bullet-active {
  background-color: #3C6CF4;
  border: 2px solid #3C6CF4;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.layout {
  height: 100%;
}

.page-main {
  padding-top: 5rem;
}
@media (max-width: 640px) {
  .page-main {
    padding-top: 3.75rem;
  }
}

.page-container {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-wrapper {
  padding: 0rem 1.25rem;
}
@media (min-width: 1025px), print {
  .page-wrapper {
    margin: 0 auto;
    max-width: 90rem;
    padding: 0rem 8rem;
  }
}

.inner_row {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 640px) {
  .inner_row {
    flex-direction: column;
  }
}
.inner_row_align_right {
  justify-content: flex-end;
}
.inner_bordered {
  border-bottom: 1px solid #EAEAF3;
}
.inner_column {
  display: flex;
  flex-direction: column;
}
.inner__padding_normal {
  padding: 120px 0;
}
@media (max-width: 640px) {
  .inner__padding_normal {
    padding: 34px 0;
  }
}
.inner__padding_normal_investment {
  padding: 7.5rem 0rem 6.6875rem;
}
@media (max-width: 640px) {
  .inner__padding_normal_investment {
    padding: 3rem 0rem;
  }
}
.inner__padding_normal_diff {
  padding: 7.5rem 0rem 4rem;
}
@media (max-width: 640px) {
  .inner__padding_normal_diff {
    padding: 3.75rem 0rem 2.5rem;
  }
}
.inner__padding_normal_res {
  padding: 7.5rem 0rem 5rem;
}
@media (max-width: 640px) {
  .inner__padding_normal_res {
    padding: 3rem 0rem 1.5rem;
  }
}
.inner__padding_medium {
  padding: 160px 0;
}
@media (max-width: 640px) {
  .inner__padding_medium {
    padding: 48px 0;
  }
}
.inner__padding_medium_small {
  padding: 100px 0;
}
@media (max-width: 640px) {
  .inner__padding_medium_small {
    padding: 48px 0;
  }
}
.inner__padding_empty {
  padding: 0;
}
.inner .box__title_normal {
  width: 51.3%;
  padding-right: 10%;
}
@media (max-width: 640px) {
  .inner .box__title_normal {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.inner .box__title_medium {
  width: 40%;
  max-width: 26rem;
  margin-right: 144px;
}
@media (max-width: 640px) {
  .inner .box__title_medium {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.inner .box__title_small {
  width: 32%;
  max-width: 18.375rem;
  margin-right: 154px;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .inner .box__title_small {
    width: 32%;
  }
}
@media (max-width: 640px) {
  .inner .box__title_small {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
  }
}
.inner .box__title_extra_small {
  width: 25%;
  max-width: 19rem;
  margin-right: 2rem;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .inner .box__title_extra_small {
    width: 26%;
  }
}
@media (max-width: 640px) {
  .inner .box__title_extra_small {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.inner .box__title_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media (max-width: 640px) {
  .inner .box__title_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 24px;
  }
  .inner .box__title_link .link {
    white-space: nowrap;
  }
}
.inner .box__title_text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.inner .box__content_normal {
  width: 50%;
}
@media (max-width: 640px) {
  .inner .box__content_normal {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 16px;
  }
}
.inner .box__content_small {
  width: 48%;
}
@media (max-width: 640px) {
  .inner .box__content_small {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 62px;
  }
}
.inner .box__content_extra_small {
  width: 20%;
  max-width: 10.1875rem;
}
@media (max-width: 640px) {
  .inner .box__content_extra_small {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 62px;
  }
}
.inner .box__content_large {
  width: 77%;
}
@media (max-width: 640px) {
  .inner .box__content_large {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.inner .box__content_pt_normal {
  padding-top: 92px;
}
@media (max-width: 640px) {
  .inner .box__content_pt_normal {
    padding-top: 0;
  }
}
.inner .column__two {
  display: flex;
}
.inner .column__two .column {
  width: 50%;
}
.inner .column__three {
  display: flex;
}
@media (max-width: 640px) {
  .inner .column__three {
    justify-content: space-between;
  }
}
.inner .column__three .column:nth-child(1) {
  width: 37%;
}
@media (max-width: 640px) {
  .inner .column__three .column:nth-child(1) {
    width: auto;
  }
}
.inner .column__three .column:nth-child(2) {
  width: 35%;
}
@media (max-width: 640px) {
  .inner .column__three .column:nth-child(2) {
    width: auto;
  }
}
.inner .column__three .column:nth-child(3) {
  width: 30%;
}
@media (max-width: 640px) {
  .inner .column__three .column:nth-child(3) {
    width: auto;
  }
}
.inner .column__four {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 32px;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .inner .column__four {
    grid-template-columns: repeat(auto-fill, minmax(234px, 1fr));
  }
}
@media (max-width: 640px) {
  .inner .column__four {
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  }
}
.inner .column__four .column {
  width: 100%;
}
@media (max-width: 640px) {
  .inner .column__four .column {
    width: 100%;
  }
}
.inner .column__four .column__centered {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 500;
  height: 5rem;
  transition: all 0.7s ease;
}
@media (max-width: 640px) {
  .header {
    height: 60px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
  }
}
.header.hide {
  top: -100px;
}
.header .hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}
@media (min-width: 641px), print {
  .header .hamburger {
    display: none;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 3.75rem;
}
@media (min-width: 1025px), print {
  .header .inner {
    height: 5rem;
    justify-content: space-between;
  }
}
.header .logo {
  width: 4rem;
  height: 4rem;
  position: relative;
  font-size: 40px;
  line-height: 40px;
  color: #3C6CF4;
  font-weight: 700;
}
@media (min-width: 1025px), print {
  .header .logo {
    width: 5rem;
    height: 5rem;
  }
}
.header .logo a {
  display: block;
}
.header .wrapper {
  display: flex;
}
.header .wrapper .links {
  display: none;
  align-items: center;
  margin-right: 4.125rem;
}
@media (min-width: 641px), print {
  .header .wrapper .links {
    display: flex;
  }
}
.header .wrapper .links .item {
  position: relative;
}
.header .wrapper .links .item:not(:last-of-type) {
  margin-right: 2rem;
}
.header .wrapper .links .item > a {
  line-height: 1;
  letter-spacing: 0.02125rem;
  color: #4F4F4F;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: 0.12s color ease;
}
.header .wrapper .links .item > a:hover, .header .wrapper .links .item > a.active {
  color: #3C6CF4;
}
.header .wrapper .links .item > a:hover:after, .header .wrapper .links .item > a.active:after {
  background-color: #3C6CF4;
  left: 0;
  right: 0;
}
.header .wrapper .links .item > a.parent:hover ~ .submenu, .header .wrapper .links .item > a.parent.active ~ .submenu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .wrapper .links .item .submenu {
  margin-top: 1.8125rem;
}
.header .wrapper .apply {
  display: none;
  align-items: center;
}
@media (min-width: 641px), print {
  .header .wrapper .apply {
    display: flex;
  }
}
.header .wrapper .apply a:not(.btn) {
  line-height: 1.21;
  letter-spacing: 0.02125rem;
  color: #000000;
  font-size: 0.875rem;
  text-transform: uppercase;
  position: relative;
  transition: 0.12s color ease;
}
.header .wrapper .apply a:not(.btn):after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 45%;
  right: 45%;
  height: 1px;
  background: transparent;
  transition: 0.12s all ease;
  pointer-events: none;
}
.header .wrapper .apply a:not(.btn):hover {
  color: #3C6CF4;
}
.header .wrapper .apply a:not(.btn):hover:after {
  background-color: #3C6CF4;
  left: 0;
  right: 0;
}
.header .wrapper .apply a.btn {
  margin-left: 1.875rem;
}

.footer {
  border-top: 1px solid #333;
  color: #ffffff;
  background: linear-gradient(to right, #3C6CF4 0%, #3C6CF4 50%, #18171C 50%, #18171C 100%);
  margin-top: auto;
}
@media (max-width: 640px) {
  .footer {
    background: #18171C;
  }
}
.footer .inner {
  margin: 0rem -1rem;
}
@media (min-width: 641px), print {
  .footer .inner {
    margin: 0;
  }
}
.footer a:not(.btn) {
  color: #ffffff;
  transition: 0.12s color ease;
}
.footer a:not(.btn):hover {
  color: #3C6CF4;
}
.footer .footer-wrapper {
  padding: 0;
  display: flex;
}
@media (min-width: 1025px), print {
  .footer .footer-wrapper {
    margin: 0 auto;
    max-width: 90rem;
    padding: 0 64px;
  }
}
@media (max-width: 640px) {
  .footer .footer-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .footer .footer-wrapper .prefooter {
    padding: 27px 20px 0;
    display: flex;
  }
}
.footer .footer-wrapper .prefooter__col {
  width: 50%;
}
.footer .footer-wrapper .prefooter__col .illustration {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .prefooter__col .illustration {
    width: 60%;
    margin-left: -16px;
  }
}
.footer .footer-wrapper .prefooter__col .illustration .prefooter__illustration {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.footer .footer-wrapper .prefooter__col .menu {
  padding: 42px 0;
}
.footer .footer-wrapper .prefooter__col .menu .widget__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer .footer-wrapper .prefooter__col .menu .menu__items {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.footer .footer-wrapper .prefooter__col .menu .menu__items a {
  margin-bottom: 10px;
}
.footer .footer-wrapper .prefooter__col .totop {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  opacity: 0.5;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 48px;
}
.footer .footer-wrapper .prefooter__col .totop .icon__top {
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5.76667L4.73529 1.5M4.73529 1.5L9.5 5.76667M4.73529 1.5L4.73529 10.5' stroke='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  margin-left: 11px;
}
.footer .footer-wrapper .column__one {
  width: 23.3%;
  background-color: #3C6CF4;
  padding: 64px 16px 34px 0;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #333333;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__one {
    width: 100%;
    padding: 32px 20px;
    min-height: auto;
    z-index: 10;
    flex-direction: row;
  }
}
.footer .footer-wrapper .column__one .logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-wrapper .column__one .logo img {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__one .logo img {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
  }
}
.footer .footer-wrapper .column__one .contacts {
  width: 50%;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__one .contacts {
    flex-direction: column;
    white-space: nowrap;
  }
}
.footer .footer-wrapper .column__one .contacts .mailto {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.footer .footer-wrapper .column__one .contacts .mailto:hover {
  color: #ffffff;
}
.footer .footer-wrapper .column__one .contacts .socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.footer .footer-wrapper .column__one .contacts .socials a {
  width: 24px;
  height: 24px;
}
.footer .footer-wrapper .column__one .copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  opacity: 0.5;
}
.footer .footer-wrapper .column__two {
  width: 25.6%;
  background-color: #18171C;
  padding: 64px 16px 34px 32px;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #333333;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__two {
    display: none;
  }
}
.footer .footer-wrapper .column__two .widget__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 32px;
}
.footer .footer-wrapper .column__two .contact__details {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.footer .footer-wrapper .column__two .privacy {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  opacity: 0.5;
}
.footer .footer-wrapper .column__three {
  width: 25.6%;
  background-color: #18171C;
  padding: 64px 16px 34px 32px;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #333333;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__three {
    display: none;
  }
}
.footer .footer-wrapper .column__three .widget__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 32px;
}
.footer .footer-wrapper .column__three .menu__items {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.footer .footer-wrapper .column__three .menu__items a {
  margin-bottom: 10px;
}
.footer .footer-wrapper .column__three .terms {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  opacity: 0.5;
}
.footer .footer-wrapper .column__four {
  width: 25%;
  background-color: #18171C;
  padding: 64px 16px 34px 32px;
  min-height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .footer .footer-wrapper .column__four {
    display: none;
  }
}
.footer .footer-wrapper .column__four .widget__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 32px;
}
.footer .footer-wrapper .column__four .social__items {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.footer .footer-wrapper .column__four .social__items a {
  margin-bottom: 10px;
}
.footer .footer-wrapper .column__four .totop {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  opacity: 0.5;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.footer .footer-wrapper .column__four .totop .icon__top {
  width: 9px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5.76667L4.73529 1.5M4.73529 1.5L9.5 5.76667M4.73529 1.5L4.73529 10.5' stroke='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  margin-left: 11px;
}
.footer .footer-wrapper .postfooter {
  padding: 24px;
  background-color: #18171C;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
  opacity: 0.5;
  justify-content: center;
}

.pageTitle {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #222222;
}

.pageTitle_lg {
  font-size: 2.25rem;
  margin-bottom: 1.875rem;
}

.pageSubtitle, .subscription .inner .plans .item .title, .modalContent .title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
}

.title__large {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .title__large {
    font-size: 3.75rem;
  }
}
.title__large_font_weight_medium {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .title__large_font_weight_medium {
    font-size: 3.75rem;
  }
}
.title__highlight {
  color: #3C6CF4;
}
.title__main {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}
@media (max-width: 640px) {
  .title__main {
    font-size: 1.5rem;
    width: 100%;
  }
}
.title__main_small {
  font-size: 3.5rem;
  font-weight: 700;
  color: #3C6CF4;
  letter-spacing: -0.04em;
}
@media (max-width: 640px) {
  .title__main_small {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
}
.title__medium {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 640px) {
  .title__medium {
    font-size: 24px;
  }
}
.title__medium_small {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.title__medium_small .highlight {
  letter-spacing: -0.06em;
  color: #3C6CF4;
}
.title__small {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .title__small {
    font-size: 1.5rem;
  }
}
.title__extra_small {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .title__extra_small {
    font-size: 1.125rem;
  }
}
.title__extra_small_bold {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.title__darkest-gray {
  color: #222222;
}
.title__white {
  color: #ffffff;
}
.title__blue {
  color: #3C6CF4;
}
.title__mb_large {
  margin-bottom: 64px;
}
@media (max-width: 640px) {
  .title__mb_large {
    margin-bottom: 32px;
  }
}
.title__mb_medium {
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .title__mb_medium {
    margin-bottom: 28px;
  }
}
.title__mb_medium_mid {
  margin-bottom: 38px;
}
.title__mb_medium_larger {
  margin-bottom: 48px;
}
.title__mb_small {
  margin-bottom: 24px;
}
.title__mb_small_min {
  margin-bottom: 21px;
}
.title__mb_extra_small {
  margin-bottom: 16px;
}
.title__mb_extra_small_max {
  margin-bottom: 18px;
}
.title__mb_extra_small__quarter {
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .title__mb_extra_small__quarter {
    margin-bottom: 4px;
  }
}
.title__mb_extra_small__double {
  margin-bottom: 10px;
}
.title__mb_smallest {
  margin-bottom: 6px;
}
.title__center {
  text-align: center;
}

.text__sub {
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.5;
}
@media (max-width: 640px) {
  .text__sub {
    font-size: 0.75rem;
  }
}
.text__small {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.text__small_sub {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .text__small {
    font-size: 0.625rem;
    line-height: 1.3;
  }
}
.text__medium {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .text__medium {
    font-size: 1.125rem;
  }
}
.text__medium_semibold {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 640px) {
  .text__medium_semibold {
    font-size: 1.125rem;
  }
}
.text__medium_bold {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .text__medium_bold {
    font-size: 1.125rem;
  }
}
.text__medium_bold_l1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 640px) {
  .text__medium_bold_l1 {
    font-size: 1.125rem;
  }
}
.text__medium_bold .highlight {
  font-weight: 700;
  color: #3C6CF4;
}
.text__medium .highlight {
  font-weight: 700;
  color: #3C6CF4;
}
.text__mb_big {
  margin-bottom: 104px;
}
@media (max-width: 640px) {
  .text__mb_big {
    margin-bottom: 60px;
  }
}
.text__mb_big_small {
  margin-bottom: 87px;
}
@media (max-width: 640px) {
  .text__mb_big_small {
    margin-bottom: 60px;
  }
}
.text__mb_huge {
  margin-bottom: 71px;
}
.text__mb_huge__larger {
  margin-bottom: 82px;
}
.text__mb_medium {
  margin-bottom: 39px;
}
.text__mb_medium__larger {
  margin-bottom: 64px;
}
.text__mb_medium_small {
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .text__mb_medium_small {
    margin-bottom: 16px;
  }
}
.text__mb_small {
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .text__mb_small {
    margin-bottom: 8px;
  }
}
.text__gray {
  color: #4F4F4F;
}
.text__dark-gray {
  color: #333333;
}
.text__opacity {
  opacity: 0.5;
}
.text__darkest-gray {
  color: #222222;
}
.text__white {
  color: #ffffff;
}
.text__center {
  text-align: center;
}

.subscription .inner {
  padding: 3.75rem 0rem 2.5rem;
}
.subscription .inner .top .subtitle {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 0.6875rem;
}
.subscription .inner .top .subtitle strong {
  font-weight: 400;
}
.subscription .inner .plans {
  margin-top: 2.5rem;
}
.subscription .inner .plans .item {
  background: #ffffff;
  border-radius: 0.375rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subscription .inner .plans .item .title {
  margin-bottom: 0.625rem;
  line-height: 1.24;
}
.subscription .inner .plans .item .subtitle {
  font-size: 0.875rem;
  color: #444444;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
.subscription .inner .plans .item .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #15a380;
  margin-bottom: 1.875rem;
}
.subscription .inner .plans .item .list {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
  color: #000000;
  margin-bottom: auto;
}
.subscription .inner .plans .item .list li {
  position: relative;
  padding-left: 1.875rem;
}
.subscription .inner .plans .item .list li:not(:last-of-type) {
  margin-bottom: 0.875rem;
}
.subscription .inner .plans .item .list li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f5e086;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.subscription .inner .plans .item .btn {
  margin-top: 2.1875rem;
}

.subscription_page .inner {
  padding-top: 2.5rem;
}
.subscription_page .inner .top .title {
  margin-bottom: 1.25rem;
}
.subscription_page .inner .plans {
  margin-top: 1.875rem;
}

.submenu {
  position: absolute;
  background: #ffffff;
  top: 100%;
  margin-top: 0.625rem;
  transform: translateY(-1.875rem);
  left: 0;
  -webkit-backdrop-filter: blur(1.875rem);
  backdrop-filter: blur(1.875rem);
  box-shadow: 0rem 0.25rem 0.375rem 0rem rgba(0, 0, 0, 0.1);
  padding: 0.875rem 0rem;
  transition: 0.12s all ease;
  opacity: 0;
  visibility: hidden;
  min-width: 15rem;
}
.submenu.right {
  left: auto;
  right: 0;
}
.submenu.opened {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.submenu a {
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1.33;
  letter-spacing: 0.018125rem;
  color: #000000;
  background-color: #ffffff;
  display: block;
  padding: 0.53125rem 1.25rem;
  transition: 0.12s background-color ease;
}
.submenu a:hover {
  background-color: #f5e086;
}
.submenu ul a {
  padding-left: 2.5rem;
}
.submenu .icon {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1;
  vertical-align: middle;
  margin-top: -0.25rem;
  display: inline-block;
  margin-right: 1.5rem;
}
.submenu .divider {
  padding-left: 3.75rem;
  padding-right: 1.25rem;
}
.submenu .divider hr {
  border: none;
  height: 1px;
  background: #e2e2e2;
  margin: 1rem 0rem;
}

.socialSign, .socialShare {
  margin-bottom: 1.875rem;
}
.socialSign .links, .socialShare .links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 641px), print {
  .socialSign .links, .socialShare .links {
    flex-direction: row;
  }
}
.socialSign .links .link, .socialShare .links .link {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.875rem;
  text-align: center;
  color: #444444;
  background: #ffffff;
  height: 2.5rem;
  line-height: 2.5rem;
  display: block;
  transition: 0.12s background-color ease;
}
@media (min-width: 641px), print {
  .socialSign .links .link, .socialShare .links .link {
    width: 7.5rem;
  }
}
.socialSign .links .link:hover, .socialShare .links .link:hover {
  background-color: rgba(21, 163, 128, 0.1);
}
.socialSign .links .link:not(:last-of-type), .socialShare .links .link:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
@media (min-width: 641px), print {
  .socialSign .links .link:not(:last-of-type), .socialShare .links .link:not(:last-of-type) {
    margin-bottom: 0;
    margin-right: 0.625rem;
  }
}
.socialSign .links .link .img, .socialShare .links .link .img {
  width: 1.125rem;
  height: 1.125rem;
  left: 0.6875rem;
  top: 0;
  bottom: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -0.25rem;
  margin-left: -1.625rem;
}
@media (min-width: 641px), print {
  .socialSign .links .link .img, .socialShare .links .link .img {
    position: absolute;
    margin: auto;
  }
}

.socialShare .links {
  justify-content: flex-start;
}
.socialShare .links .link {
  background-color: #FAFAFD;
}

.tooltipTrigger {
  cursor: pointer;
}
.tooltipTrigger:hover:before {
  content: "";
  position: absolute;
  left: -0.3125rem;
  right: -1.25rem;
  top: -1.25rem;
  bottom: -1.25rem;
}
.tooltipTrigger:hover ~ .tooltip {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.tooltip {
  position: absolute;
  left: 100%;
  top: 100%;
  margin-top: -0.4375rem;
  margin-left: -0.9375rem;
  visibility: hidden;
  padding: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.17;
  font-weight: 400;
  text-transform: none;
  box-shadow: 0rem 0.125rem 0.375rem 0rem rgba(0, 0, 0, 0.1);
  border: solid 1px #e2e2e2;
  background: #ffffff;
  white-space: nowrap;
  z-index: 1;
  transform: translateY(-0.625rem);
  opacity: 0;
  transition: 0.06s opacity ease, 0.12s transform ease;
}
.tooltip:hover {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.pagination {
  margin: 1.25rem -0.3125rem 0rem;
  display: flex;
  align-items: center;
}
.pagination .page {
  display: block;
  height: 2rem;
  min-width: 2rem;
  padding: 0rem 0.75rem;
  line-height: 2rem;
  border-radius: 0.125rem;
  background: #FAFAFD;
  transition: 0.12s background-color ease;
  color: #15a380;
  font-size: 0.875rem;
  margin: 0rem 0.3125rem;
}
@media (min-width: 641px), print {
  .pagination .page {
    height: 2.5rem;
    min-width: 2.5rem;
    padding: 0rem 1rem;
    line-height: 2.5rem;
  }
}
.pagination .page:not(.current):hover {
  background-color: rgba(21, 163, 128, 0.2);
}
.pagination .page.current {
  background-color: #15a380;
  color: #ffffff;
}
.pagination .sep {
  color: #15a380;
  font-size: 0.875rem;
  width: 2.625rem;
  text-align: center;
  line-height: 1;
  display: block;
}

.artItem .imgBox {
  width: 9.6875rem;
  height: 9.6875rem;
  border: 1px solid #e2e2e2;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
  transition: 0.12s border-color ease;
}
.artItem .imgBox:hover {
  border-color: #f5e086;
}
.artItem .name {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.9375rem;
  transition: 0.12s color ease;
  display: inline-block;
}
.artItem .name:hover {
  color: #15a380;
}
.artItem .origin {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.14;
  transition: 0.12s color ease;
  padding-bottom: 0.125rem;
}
.artItem a.origin:hover {
  color: #15a380;
}

.artPoint {
  background: transparent url("../img/ico-click.svg") no-repeat;
  background-size: 100%;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
  cursor: pointer;
  transition: 0.12s opacity ease;
}
.artPoint:hover {
  opacity: 0.8;
}

.latestSlider {
  background: #ffffff;
}
.latestSlider .inner {
  padding: 2.5rem 5rem 3.75rem;
}
.latestSlider .inner .title {
  margin-bottom: 2.125rem;
}
.latestSlider .inner .slider {
  position: relative;
}
.latestSlider .inner .slider .sliderNext,
.latestSlider .inner .slider .sliderPrev {
  top: 3.5625rem;
  bottom: auto;
}
.latestSlider .inner .slider .sliderNext {
  margin-left: 1.25rem;
}
.latestSlider .inner .slider .sliderPrev {
  margin-right: 1.25rem;
}

.menuMobile {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 37.5rem;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 0rem 0.125rem 0.375rem 0rem rgba(0, 0, 0, 0.1);
  transition: 0.5s transform ease-in-out;
  transform: translateX(-100%);
  padding: 0;
}
.menuMobile__header {
  height: 60px;
  padding: 19px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menuMobile.opened {
  transform: translateX(0);
}
@media (min-width: 641px), print {
  .menuMobile {
    display: none;
  }
}
.menuMobile ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.125rem;
  height: 0.125rem;
}
.menuMobile .logo {
  display: flex;
  align-items: center;
  padding: 0;
}
.menuMobile .logo img {
  height: 1.375rem;
}
.menuMobile .menu {
  padding: 48px 20px;
  height: 100%;
}
.menuMobile .links {
  overflow: visible;
}
.menuMobile .links .item {
  width: 100%;
}
.menuMobile .links .item:not(:last-of-type) {
  margin-bottom: 32px;
}
.menuMobile .links .item > span, .menuMobile .links .item > a {
  padding: 0;
  display: flex;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.04em;
}
.menuMobile .links .item > span .arrow, .menuMobile .links .item > a .arrow {
  line-height: 1.4;
  color: #4F4F4F;
  display: block;
  font-size: 0.75rem;
  margin-left: auto;
}
.menuMobile .links .item > span.active, .menuMobile .links .item > a.active {
  color: #3C6CF4;
}
.menuMobile .links .item > span.active .arrow, .menuMobile .links .item > a.active .arrow {
  transform: rotate(180deg);
}
.menuMobile .links .item > span.active + .list, .menuMobile .links .item > a.active + .list {
  display: block;
}
.menuMobile .links .item .list {
  display: none;
}
.menuMobile .links .item .list a {
  display: block;
  color: #444444;
  border-top: 1px solid #e2e2e2;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.menuMobile .links .item .list a .icon {
  font-size: 1.125rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.4375rem;
  margin-right: 0.375rem;
  margin-bottom: -0.125rem;
}
.menuMobile .menu__bottom {
  position: absolute;
  bottom: 48px;
  left: 20px;
  right: 20px;
}
.menuMobile .menu__bottom .language-switcher {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menuMobile .menu__bottom .language-switcher a {
  width: 50%;
  padding: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #4F4F4F;
  text-align: center;
}
.menuMobile .menu__bottom .apply {
  height: 48px;
  padding: 4px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.menuMobile .menu__bottom .apply a.btn {
  margin-left: 0;
  width: 92%;
}
.menuMobile .menu__bottom .apply a.btn:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.intro {
  background-color: #FAFAFD;
}
.intro .inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: calc(100vh - 5rem);
}
@media (max-width: 1281px) and (min-width: 1024px) {
  .intro .inner {
    height: calc(96vh - 5rem);
  }
}
@media (min-width: 641px), print {
  .intro .inner {
    flex-direction: row;
    height: calc(96vh - 5rem);
  }
}
@media (max-width: 640px) {
  .intro .inner {
    flex-direction: column-reverse;
    padding: 2.5rem 0rem 1.5rem;
    height: auto;
    align-items: flex-start;
  }
}
.intro .inner .swiper-container {
  overflow: visible;
}
.intro .inner .slider__wrapper {
  padding: 5.625rem 0rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1281px) and (min-width: 1024px) {
  .intro .inner .slider__wrapper {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper {
    padding: 1.875rem 0rem 0rem;
    width: 100%;
    margin: 0;
  }
}
.intro .inner .slider__wrapper .pagination-container {
  position: absolute;
  bottom: 90px;
  right: 0;
  left: auto;
  width: 60%;
  margin-top: 0;
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper .pagination-container {
    width: 35%;
    float: right;
    bottom: 15px;
    z-index: 1000;
  }
}
.intro .inner .slider__wrapper .pagination-container .bullet {
  width: 8px;
  height: 8px;
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper .pagination-container .bullet:not(:last-child) {
    margin-right: 8px; 
  }
}
.intro .inner .slider__wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper .swiper-slide {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.intro .inner .slider__wrapper .swiper-slide img {
  height: 100%;
  max-width: none;
  width: 100%;
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper .swiper-slide img {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}
.intro .inner .slider__wrapper .buttons-container {
  position: absolute;
  top: 50%;
  right: 0;
  width: 60%;
}
@media (max-width: 640px) {
  .intro .inner .slider__wrapper .buttons-container .sliderNext, .intro .inner .slider__wrapper .buttons-container .sliderPrev {
    display: none;
  }
}
.intro .inner .slider__info {
  width: 40%;
  overflow: hidden;
}
@media (max-width: 1281px) and (min-width: 1024px) {
  .intro .inner .slider__info {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .intro .inner .slider__info {
    width: 60%;
    float: left;
    text-align: left;
    margin-top: 30px;
    z-index: 100;
  }
}
@media (max-width: 640px) {
  .intro .inner .slider__info .icon-illustration {
    display: none;
  }
}
.intro .inner .slider__info .title {
  color: #222222;
  line-height: 1;
  font-weight: 700;
  font-size: 4.5rem;
  text-align: left;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .intro .inner .slider__info .title {
    font-size: 3.75rem;
    display: none;
  }
}
.intro .inner .slider__info .subtitle {
  color: #222222;
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: left;
  letter-spacing: -0.02em;
  margin-bottom: 39px;
  width: 60%;
}
@media (max-width: 640px) {
  .intro .inner .slider__info .subtitle {
    width: 100%;
    display: none;
  }
}
@media (max-width: 640px) {
  .intro .inner .slider__info .link {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}
.intro .inner .slider__image {
  width: 60%;
  background-image: url(/assets/img/intro_slider_slide_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1440px) and (min-width: 1024px) {
  .intro .inner .slider__image {
    background-size: 80%;
  }
}
@media (max-width: 640px) {
  .intro .inner .slider__image {
    width: 100%;
  }
}

.who_we_are .page-wrapper {
  padding-bottom: 7.5rem;
}
@media (max-width: 640px) {
  .who_we_are .page-wrapper {
    padding-bottom: 3rem;
  }
}
@media (max-width: 640px) {
  .who_we_are .inner {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .who_we_are .inner .link {
    float: right;
  }
}
.who_we_are .counters {
  display: flex;
  width: 100%;
  padding: 2.75rem 0rem 3.875rem;
  border-bottom: 1px solid #EAEAF3;
}
.who_we_are .counters.justify-end {
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .who_we_are .counters.justify-end {
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .who_we_are .counters {
    flex-direction: row;
    padding: 1rem 0rem;
    justify-content: space-between;
  }
}
.who_we_are .counters .counter {
  width: 25%;
}
@media (max-width: 640px) {
  .who_we_are .counters .counter {
    width: 30%;
  }
}
.who_we_are .counters .counter-wrapper {
  max-width: 11.75rem;
}
@media (max-width: 640px) {
  .who_we_are .counters .counter-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

.investment {
  background-color: #3C6CF4;
}
.investment .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 640px) {
  .investment .inner {
    flex-direction: column;
  }
}
.investment .box__title_normal {
  width: 58%;
  margin-right: 160px;
  padding: 0;
}
@media (max-width: 640px) {
  .investment .box__title_normal {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .investment .box__content_normal {
    z-index: 10;
  }
}
.investment .illustration {
  position: absolute;
  bottom: -100px;
  left: 9rem;
  z-index: 5;
}
@media (max-width: 640px) {
  .investment .illustration {
    bottom: -20px;
    left: 50px;
    width: 70px;
    height: 70px;
    overflow: hidden;
  }
  .investment .illustration img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.focus {
  position: relative;
  overflow: hidden;
}
.focus .animate {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FAFAFD;
  transition: 1.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 640px) {
  .focus .animate {
    right: 0;
    left: auto;
  }
}
.focus .inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .focus .inner {
    flex-direction: column;
  }
}
.focus .box__title_extra_small {
  z-index: 10;
}
.focus .box__content_large {
  position: relative;
}
.focus .navigation {
  display: none;
}
@media (max-width: 640px) {
  .focus .navigation {
    position: absolute;
    top: -56px;
    right: 0;
    width: 96px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
  }
  .focus .navigation .focusSliderPrev,
.focus .navigation .focusSliderNext {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.focus__item_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus__content {
  margin-bottom: 71px;
}
@media (max-width: 640px) {
  .focus__content {
    margin-bottom: 34px;
  }
}
.focus__item {
  width: 31%;
  max-height: 291px;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .focus__item {
    width: 100%;
    max-height: 100%;
    flex-direction: column;
  }
}
@media (min-width: 1025px), print {
  .focus__item:not(:last-child) {
    margin-right: 34px;
  }
}
.focus__item_text {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .focus__item_text {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.invest .logo {
  background-color: #FAFAFD;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.invest .logo img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 1025px), print {
  .invest .logo img {
    filter: grayscale(1);
  }
}
.invest .logo:hover {
  box-shadow: 4px 4px 15px rgba(51, 51, 51, 0.1);
}
@media (min-width: 1025px), print {
  .invest .logo:hover img {
    filter: grayscale(0);
  }
}

.about {
  position: relative;
  overflow: hidden;
}
.about .animate {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #3C6CF4;
  transition: 1.5s ease-in-out;
  z-index: -1;
}
.about_content__wrapper {
  display: flex;
}
.about_content__wrapper_title {
  width: 53%;
}
@media (max-width: 640px) {
  .about_content__wrapper_title {
    width: 40%;
  }
}
.about_content__wrapper_text {
  width: 47%;
}
@media (max-width: 640px) {
  .about_content__wrapper_text {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .about_content__wrapper_text .text__medium {
    font-size: 14px;
  }
}
.about_member__wrapper {
  display: flex;
}
@media (max-width: 640px) {
  .about_member__wrapper {
    margin-top: -14px;
  }
}
.about_member__item_one {
  width: 53%;
  margin-top: -150px;
  padding-right: 9rem;
  position: relative;
}
@media (max-width: 640px) {
  .about_member__item_one {
    max-width: 100%;
    width: 65%;
    margin: 0;
    padding-right: 2rem;
    position: relative;
  }
}
.about_member__item_one .inner__wrapper {
  max-width: 23rem;
  margin: 108px 0 0 224px;
  position: relative;
}
@media (max-width: 640px) {
  .about_member__item_one .inner__wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 17px 0 0 16px;
    position: relative;
  }
}
@media (max-width: 640px) {
  .about_member__item_one .inner__wrapper .title__extra_small {
    font-size: 14px;
  }
}
.about_member__item_one img {
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}
.about_member__item_one .illustration {
  position: absolute;
  top: -33px;
  left: -36px;
  z-index: 0;
}
@media (max-width: 640px) {
  .about_member__item_one .illustration {
    width: 110px;
    top: 0;
    left: 0;
  }
}
.about_member__item_two {
  width: 22%;
}
@media (max-width: 640px) {
  .about_member__item_two {
    width: 49%;
    max-width: 100%;
    margin: 0;
    position: relative;
  }
}
.about_member__item_two .inner__wrapper {
  margin: 50px 0;
  position: relative;
}
@media (max-width: 640px) {
  .about_member__item_two .inner__wrapper {
    margin: 47px 0 0;
  }
}
@media (max-width: 640px) {
  .about_member__item_two .inner__wrapper .title__extra_small {
    font-size: 14px;
  }
}
.about_member__item_two img {
  margin-bottom: 16px;
  position: relative;
  z-index: 0;
}
.about_member__item_two .illustration {
  position: absolute;
  bottom: -27px;
  left: 194px;
  z-index: 10;
  width: 200px;
}

.perks .inner .box__title_link {
  margin-bottom: 32px;
}
.perks__grid {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  grid-auto-rows: auto;
  grid-gap: 0;
}
@media (max-width: 640px) {
  .perks__grid {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
.perks__grid:before {
  content: "";
  position: absolute;
  bottom: 16px;
  top: 16px;
  left: 16px;
  right: 16px;
  width: auto;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background: #EAEAF3;
}
@media (max-width: 640px) {
  .perks__grid:before {
    bottom: 1px;
    top: 1px;
    left: 1px;
    right: 1px;
  }
}
.perks__grid .item {
  transition: all 0.2s ease;
  margin: 0 !important;
  padding: 0.5px;
  box-sizing: border-box;
}
.perks__grid .item img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  border-right: 4px;
  filter: grayscale(0);
}
.perks__grid .item img:hover {
  filter: grayscale(0);
}

.lps {
  background-color: #18171C;
  overflow: hidden;
  position: relative;
}
.lps .inner {
  position: relative;
}
@media (max-width: 640px) {
  .lps .inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 640px) {
  .lps .title__main_small {
    font-size: 20px;
  }
}
.lps form {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  width: 100%;
  max-width: 870px;
}
@media (max-width: 640px) {
  .lps form label {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.02em;
  }
}
.lps form .row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 39px;
}
@media (max-width: 640px) {
  .lps form .row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }
}
.lps form input {
  background-color: transparent;
  padding: 8px 16px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #666666;
  color: #666666;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .lps form input {
    padding: 8px 0;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input::placeholder {
  color: #666666;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .lps form input::placeholder {
    color: #666666;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
  }
}
.lps form input:focus, .lps form input:active {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  border-bottom: 1px solid #3C6CF4;
}
.lps form input[name=name] {
  max-width: 232px;
  margin: 0 9px;
}
@media (max-width: 640px) {
  .lps form input[name=name] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input[name=company] {
  max-width: 273px;
  margin: 0 0 0 8px;
}
@media (max-width: 640px) {
  .lps form input[name=company] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input[name=professional] {
  max-width: 274px;
  margin: 0 8px;
}
@media (max-width: 640px) {
  .lps form input[name=professional] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input[name=place] {
  max-width: 412px;
  margin: 0 0 0 8px;
}
@media (max-width: 640px) {
  .lps form input[name=place] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input[name=message] {
  max-width: 463px;
  margin: 0 0 0 8px;
}
@media (max-width: 640px) {
  .lps form input[name=message] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form input[name=email] {
  max-width: 585px;
  margin: 0 0 0 8px;
}
@media (max-width: 640px) {
  .lps form input[name=email] {
    width: 100%;
    max-width: 100%;
    margin: 8px 0 24px;
  }
}
.lps form .submit {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: #3C6CF4;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  padding: 0;
  letter-spacing: 0.085rem;
}
@media (max-width: 640px) {
  .lps form .submit {
    font-size: 18px;
  }
}
.lps form .submit .icon-arrow-long-right {
  margin-left: 11px;
}
.lps .illustration {
  position: absolute;
  top: 130px;
  right: -150px;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .lps .illustration {
    right: -230px;
  }
}
@media (max-width: 640px) {
  .lps .illustration {
    display: none;
  }
}

.investment__intro_banner {
  background-color: #FAFAFD;
  position: relative;
}
.investment__intro_banner .inner {
  padding: 144px 230px 144px 112px;
  position: relative;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .investment__intro_banner .inner {
    padding: 144px;
  }
}
@media (max-width: 640px) {
  .investment__intro_banner .inner {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .investment__intro_banner .inner .title__large_font_weight_medium,
.investment__intro_banner .inner .title__large {
    font-size: 37px;
  }
}
.investment__intro_banner .inner:after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -56px;
  width: 408px;
  height: 113px;
  background: url("/assets/img/investment_intro_banner_after.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .investment__intro_banner .inner:after {
    bottom: -30%;
    right: auto;
    left: -14px;
  }
}
.investment__intro_banner .inner:before {
  content: "";
  position: absolute;
  top: 2px;
  right: 144px;
  width: 492px;
  height: 113px;
  background: url("/assets/img/investment_intro_banner_before.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .investment__intro_banner .inner:before {
    top: -30%;
    right: 0;
    left: -16px;
  }
}

.we_invest {
  position: relative;
}
@media (max-width: 640px) {
  .we_invest {
    padding-top: 80px;
  }
}
.we_invest .pattern {
  position: absolute;
  width: 621px;
  height: 563px;
  left: -100%;
  top: 27px;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .we_invest .pattern {
    left: -130%;
    top: 0;
  }
}
@media (max-width: 640px) {
  .we_invest .pattern {
    display: none;
  }
}
.we_invest .inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .we_invest .inner {
    flex-direction: column;
  }
}
.we_invest .inner .key__requirements {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 32px;
}
.we_invest .inner .key__requirements .item {
  flex: 0 1 calc(50% - 16px);
}
@media (max-width: 640px) {
  .we_invest .inner .key__requirements .item {
    flex: 0 1 100%;
  }
}
.we_invest .inner .key__requirements .item__decorated {
  padding: 28px 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.approach {
  background-color: #3C6CF4;
}

.we_offer {
  position: relative;
  overflow: hidden;
}
.we_offer .animate {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FAFAFD;
  transition: 1.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 640px) {
  .we_offer .animate {
    display: none;
  }
}
.we_offer .box__title_normal, .we_offer .box__content_normal, .we_offer .offer__items {
  z-index: 10;
}
@media (max-width: 640px) {
  .we_offer {
    background: #FAFAFD;
  }
}
.we_offer .offer__items {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
}
.we_offer .offer__items .navigation {
  position: absolute;
  top: -56px;
  right: 0;
  width: 96px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.we_offer .offer__items .navigation .offerSliderPrev,
.we_offer .offer__items .navigation .offerSliderNext {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.we_offer .offer__items .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  column-gap: 32px;
  width: 100%;
}
@media (max-width: 640px) {
  .we_offer .offer__items .swiper-wrapper {
    column-gap: 0;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (min-width: 641px), print {
  .we_offer .offer__items .navigation {
    display: none;
  }
}
.we_offer .offer__items .item {
  width: 23.2%;
}
.we_offer .offer__items .item .inner {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.we_offer .offer__image {
  margin-bottom: 32px;
}

.perks__intro__banner {
  position: relative;
  background-color: #FAFAFD;
}
.perks__intro__banner .inner {
  padding: 128px 120px 128px 112px;
  position: relative;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .perks__intro__banner .inner {
    padding: 128px 50px 168px 112px;
  }
}
@media (max-width: 640px) {
  .perks__intro__banner .inner {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .perks__intro__banner .inner .title__large_font_weight_medium,
.perks__intro__banner .inner .title__large {
    font-size: 37px;
  }
}
.perks__intro__banner .inner:after {
  content: "";
  position: absolute;
  right: -229px;
  top: -85px;
  width: 358px;
  height: 539px;
  background-image: url("/assets/img/perks_intro_banner_after.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .perks__intro__banner .inner:after {
    right: -164px;
  }
}
@media (max-width: 640px) {
  .perks__intro__banner .inner:after {
    right: -88%;
    height: 474px;
    top: -70px;
  }
}

.our_perks .inner {
  padding: 120px 0 80px;
}
@media (max-width: 640px) {
  .our_perks .inner {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .our_perks .text__center,
.our_perks .title__center {
    text-align: left;
  }
}
.our_perks .perks__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 53px;
}
@media (max-width: 640px) {
  .our_perks .perks__tabs {
    flex-direction: column;
    align-items: flex-start;
  }
}
.our_perks .perks__tabs .perks__filters-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .our_perks .perks__tabs .perks__filters-wrap {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.our_perks .perks__tabs .perks__filters-wrap .filters__tab {
  padding: 6px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #222222;
  border-bottom: 2px solid #E9E9F5;
  cursor: pointer;
}
.our_perks .perks__tabs .perks__filters-wrap .filters__tab:first-child {
  padding: 4px 16px;
  margin-right: 25px;
}
@media (max-width: 640px) {
  .our_perks .perks__tabs .perks__filters-wrap .filters__tab:first-child {
    padding: 16px;
    margin: 0;
  }
}
.our_perks .perks__tabs .perks__filters-wrap .filters__tab:not(:first-child) {
  margin: 4px 16px;
}
@media (max-width: 640px) {
  .our_perks .perks__tabs .perks__filters-wrap .filters__tab:not(:first-child) {
    margin: 16px;
  }
}
.our_perks .perks__tabs .perks__filters-wrap .filters__tab.active {
  border: none;
  color: #3C6CF4;
  position: relative;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.our_perks .perks__tabs .perks__filters-wrap .filters__tab.active:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #FAFAFD;
  border-radius: 8px;
  top: -5px;
  bottom: -5px;
  left: -10px;
  right: -10px;
  z-index: -1;
}
.our_perks .perks__tabs .btn {
  padding: 12px 28px;
}
.our_perks .perks__content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.our_perks .perks__content .perk {
  width: 31.3%;
  padding: 40px 32px 25px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  min-height: 370px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .our_perks .perks__content .perk {
    width: 31.2%;
  }
}
@media (max-width: 640px) {
  .our_perks .perks__content .perk {
    width: 100%;
    min-height: 100%;
    height: 100%;
    padding: 40px 32px;
  }
}
.our_perks .perks__content .perk:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.our_perks .perks__content .perk:hover .perk__price {
  background-color: #efefef;
}
.our_perks .perks__content .perk .content {
  margin-bottom: 83px;
}
@media (max-width: 640px) {
  .our_perks .perks__content .perk .content {
    margin-bottom: 40px;
  }
}
.our_perks .perks__content .perk .content .perk__logo {
  height: 36px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .our_perks .perks__content .perk .content .perk__logo {
    margin-bottom: 40px;
  }
}
.our_perks .perks__content .perk .perk__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 21px 15px 16px;
  background-color: #FAFAFD;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: calc(100% - 64px);
  right: 32px;
  left: 32px;
  bottom: 25px;
}
@media (max-width: 640px) {
  .our_perks .perks__content .perk .perk__price {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    top: 0;
  }
}
.our_perks .perks__content .perk .perk__price .perk__cost_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #222222;
}
.our_perks .perks__content .perk .perk__price .perk__cost {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #3C6CF4;
}
.our_perks .perks__content .perk .perk__price .perk__cost_arrow {
  display: flex;
  width: 23px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.7071 1.29292L17 0.585815L15.5858 2.00003L16.2929 2.70714L19.5858 6.00003H1H0V8.00003H1H19.5858L16.2929 11.2929L15.5858 12L17 13.4142L17.7071 12.7071L22.7071 7.70714L23.4142 7.00003L22.7071 6.29292L17.7071 1.29292Z' fill='%233C6CF4'/%3E%3C/svg%3E%0A");
  background-size: 23px;
  background-position: center;
  background-repeat: no-repeat;
}
.our_perks .load_more {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 80px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.our_perks .load_more:hover {
  color: #3C6CF4;
}
.our_perks .load_more .icon-arrow-long-right {
  margin-right: 15px;
}

.about__intro__banner {
  background-color: #FAFAFD;
  position: relative;
}
.about__intro__banner .inner {
  padding: 164px 168px 164px 114px;
  position: relative;
}
@media (max-width: 640px) {
  .about__intro__banner .inner {
    padding: 80px 0px;
  }
}
.about__intro__banner .inner .title__large_font_weight_medium {
  z-index: 10;
  position: relative;
}
@media (max-width: 640px) {
  .about__intro__banner .inner .title__large_font_weight_medium {
    font-size: 37px;
  }
}
@media (max-width: 640px) {
  .about__intro__banner .inner .title__large_font_weight_medium .title__large {
    font-size: 37px;
  }
}
.about__intro__banner .inner:after {
  content: "";
  position: absolute;
  bottom: -54px;
  right: -343px;
  width: 554px;
  height: 566px;
  background-image: url("/assets/img/about_intro_banner_before.svg");
  background-size: 554px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 640px) {
  .about__intro__banner .inner:after {
    top: -68%;
    left: 69%;
    zoom: 1;
  }
}

.about {
  position: relative;
  overflow: hidden;
}
.about .animate {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FAFAFD;
  transition: 1.5s ease-in-out;
}
.about .box__title_normal, .about .box__content_small, .about .box__content_normal, .about .offer__items {
  z-index: 10;
}
.about .inner {
  padding: 120px 0 110px;
}
@media (max-width: 640px) {
  .about .inner {
    padding: 48px 0;
  }
}
.about .link {
  margin-top: 16px;
}
.about .socials {
  margin-top: 16px;
}
.about .socials .link:not(:last-child) {
  margin-right: 12px;
}
.about .socials .link .icon__member-linkedin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z' fill='%230077B5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.65936 7.41135C8.65936 8.1959 8.0688 8.82367 7.12057 8.82367H7.10319C6.1902 8.82367 5.59998 8.1959 5.59998 7.41135C5.59998 6.6102 6.20818 6 7.13849 6C8.0688 6 8.64171 6.6102 8.65936 7.41135ZM8.48025 9.93892V18.1098H5.76078V9.93892H8.48025ZM18.2876 18.1098L18.2877 13.4249C18.2877 10.9151 16.9461 9.74706 15.1565 9.74706C13.7127 9.74706 13.0663 10.5401 12.7053 11.0965V9.93914H9.98553C10.0214 10.7059 9.98553 18.11 9.98553 18.11H12.7053V13.5467C12.7053 13.3025 12.723 13.0589 12.7949 12.8841C12.9914 12.3962 13.4389 11.8911 14.1902 11.8911C15.1747 11.8911 15.5682 12.6404 15.5682 13.7384V18.1098H18.2876Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s ease-in-out;
}
.about .socials .link .icon__member-linkedin:hover {
  opacity: 0.7;
}
.about .socials .link .icon__member-telegram {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='url(%23paint0_linear_164_5079)'/%3E%3Cpath d='M9.79995 17.5C9.41119 17.5 9.47725 17.3532 9.34317 16.9831L8.19995 13.2206L17 8' fill='%23C8DAEA'/%3E%3Cpath d='M9.80005 17.5C10.1 17.5 10.2326 17.3628 10.4 17.2L12 15.6442L10.0042 14.4407' fill='%23A9C9DD'/%3E%3Cpath d='M10.004 14.441L14.84 18.0139C15.3918 18.3184 15.7901 18.1607 15.9276 17.5015L17.8961 8.22524C18.0976 7.41722 17.5881 7.05074 17.0601 7.29042L5.50113 11.7475C4.71212 12.064 4.71672 12.5042 5.35731 12.7003L8.32361 13.6262L15.1909 9.29365C15.5151 9.09706 15.8126 9.20275 15.5684 9.41949' fill='url(%23paint1_linear_164_5079)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_164_5079' x1='9.0012' y1='1.0008' x2='3.0012' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2337AEE2'/%3E%3Cstop offset='1' stop-color='%231E96C8'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_164_5079' x1='10.4978' y1='12.7371' x2='11.7799' y2='16.8846' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFF7FC'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s ease-in-out;
}
.about .socials .link .icon__member-telegram:hover {
  opacity: 0.7;
}
.about .socials .link .icon__member-mail {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='%233C6CF4'/%3E%3Cpath d='M4.51064 7C4.22873 7 4 7.23169 4 7.51724V16.4828C4 16.7683 4.22873 17 4.51064 17H19.4894C19.7713 17 20 16.7683 20 16.4828V7.51724C20 7.23169 19.7713 7 19.4894 7H4.51064ZM5.94681 8.03448H18.0532L12.0001 13.0507L5.94681 8.03448ZM5.02128 8.6056L8.93089 11.8491L5.02128 15.3351V8.6056ZM18.9787 8.6056V15.3351L15.0691 11.8491L18.9787 8.6056ZM9.7394 12.5173L11.6756 14.1229C11.8644 14.2799 12.1357 14.2799 12.3245 14.1229L14.2607 12.5173L18.1383 15.9656H5.8617L9.7394 12.5173Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 0.3s ease-in-out;
}
.about .socials .link .icon__member-mail:hover {
  opacity: 0.7;
}

.we_respect {
  background-color: #3C6CF4;
  position: relative;
}
.we_respect .inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 92%;
  width: 456px;
  height: 554px;
  background-image: url("/assets/img/we_respect_pattern.svg");
  background-repeat: no-repeat;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .we_respect .inner:after {
    right: -324px;
  }
}
@media (max-width: 640px) {
  .we_respect .inner:after {
    opacity: 0.3;
    z-index: 0;
  }
}
.we_respect .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 113px;
  row-gap: 64px;
  flex-wrap: wrap;
  padding: 0 120px 0 220px;
  z-index: 10;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .we_respect .wrapper {
    row-gap: 69px;
    column-gap: 83px;
  }
}
@media (max-width: 640px) {
  .we_respect .wrapper {
    flex-direction: column;
    padding: 0;
  }
}
.we_respect .wrapper .column_one {
  width: 38%;
  z-index: 10;
}
@media (max-width: 640px) {
  .we_respect .wrapper .column_one {
    width: 100%;
  }
}
.we_respect .wrapper .column_two {
  width: 45%;
  z-index: 10;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .we_respect .wrapper .column_two {
    width: 49%;
  }
}
@media (max-width: 640px) {
  .we_respect .wrapper .column_two {
    width: 100%;
  }
}

.values {
  position: relative;
  overflow: hidden;
}
.values .animate {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #FAFAFD;
  transition: 1.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 640px) {
  .values .animate {
    display: none;
  }
}
@media (max-width: 640px) {
  .values {
    background: #FAFAFD;
  }
}
.values .title__main, .values .wrapper__values, .values .card {
  z-index: 10;
}
@media (max-width: 640px) {
  .values {
    background: #FAFAFD;
  }
}
.values .inner {
  padding: 124px 0 147px;
}
@media (max-width: 640px) {
  .values .inner {
    padding: 60px 0;
  }
}
.values .inner .wrapper__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 32px;
  flex-wrap: wrap;
}
.values .inner .wrapper__values .card {
  width: calc(50% - 16px);
  padding: 32px;
  height: 160px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
@media (max-width: 640px) {
  .values .inner .wrapper__values .card {
    width: 100%;
    height: 100%;
  }
}

.partners .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .partners .wrapper {
    flex-direction: column-reverse;
  }
}
.partners .wrapper__image {
  width: 49.2%;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .partners .wrapper__image {
    margin-right: 144px;
  }
}
@media (max-width: 640px) {
  .partners .wrapper__image {
    width: 100%;
    margin-bottom: 60px;
  }
}
.partners .wrapper__image .circle {
  width: 500px;
  height: 500px;
  position: relative;
  zoom: 1;
}
@media (max-width: 540px) {
  .partners .wrapper__image .circle {
    zoom: 0.96;
  }
}
@media (max-width: 500px) {
  .partners .wrapper__image .circle {
    zoom: 0.92;
  }
}
@media (max-width: 480px) {
  .partners .wrapper__image .circle {
    zoom: 0.87;
  }
}
@media (max-width: 460px) {
  .partners .wrapper__image .circle {
    zoom: 0.84;
  }
}
@media (max-width: 440px) {
  .partners .wrapper__image .circle {
    zoom: 0.8;
  }
}
@media (max-width: 420px) {
  .partners .wrapper__image .circle {
    zoom: 0.75;
  }
}
@media (max-width: 400px) {
  .partners .wrapper__image .circle {
    zoom: 0.72;
  }
}
@media (max-width: 390px) {
  .partners .wrapper__image .circle {
    zoom: 0.7;
  }
}
@media (max-width: 380px) {
  .partners .wrapper__image .circle {
    zoom: 0.7;
  }
}
@media (max-width: 360px) {
  .partners .wrapper__image .circle {
    zoom: 0.65;
  }
}
@media (max-width: 340px) {
  .partners .wrapper__image .circle {
    zoom: 0.6;
  }
}
@media (max-width: 320px) {
  .partners .wrapper__image .circle {
    zoom: 0.55;
  }
}
@media (max-width: 300px) {
  .partners .wrapper__image .circle {
    zoom: 0.5;
  }
}
.partners .wrapper__image .circle__wrap {
  border-radius: 50%;
  border: 1px solid #EAEAF3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .wrapper__image .circle__wrap--1 {
  width: 500px;
  height: 500px;
}
.partners .wrapper__image .circle__wrap--2 {
  width: 400px;
  height: 400px;
}
.partners .wrapper__image .circle__wrap--3 {
  width: 300px;
  height: 300px;
}
.partners .wrapper__image .circle__wrap--4 {
  width: 200px;
  height: 200px;
}
.partners .wrapper__image .circle__wrap--logo {
  background-color: #3C6CF4;
  border: 1px solid #3C6CF4;
}
.partners .wrapper__image .circle__desc {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.partners .wrapper__image .circle__desc--1 {
  width: 140px;
  height: 140px;
  opacity: 0;
  top: 183px;
  left: 180px;
  animation: rot1 35s infinite linear;
}
@keyframes rot1 {
  0% {
    opacity: 1;
    transform: rotate(0) translate(126px, -138px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) translate(126px, -138px) rotate(-360deg);
  }
}
.partners .wrapper__image .circle__desc--2 {
  width: 100px;
  height: 100px;
  top: 200px;
  left: 200px;
  animation: rot2 25s infinite linear;
}
@keyframes rot2 {
  0% {
    opacity: 1;
    transform: rotate(0) translate(176px, -193px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg) translate(176px, -193px) rotate(360deg);
  }
}
.partners .wrapper__image .circle__desc--3 {
  width: 100px;
  height: 100px;
  top: 198px;
  left: 198px;
  animation: rot3 15s infinite linear;
}
@keyframes rot3 {
  0% {
    opacity: 1;
    transform: rotate(0) translate(128px, -82px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) translate(128px, -82px) rotate(-360deg);
  }
}
.partners .wrapper__image .circle__desc--4 {
  width: 80px;
  height: 80px;
  top: 213px;
  left: 209px;
  animation: rot4 15s infinite linear;
}
@keyframes rot4 {
  0% {
    opacity: 1;
    transform: rotate(0) translate(126px, -138px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg) translate(126px, -138px) rotate(360deg);
  }
}
.partners .wrapper__image .circle__text {
  color: #3C6CF4;
  font-size: 1.375rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 640px) {
  .partners .wrapper__image .circle__text {
    font-size: 1.125rem;
  }
}
.partners .wrapper__image .circle__text span {
  color: #000000;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  display: block;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 640px) {
  .partners .wrapper__image .circle__text span {
    font-size: 0.625rem;
    letter-spacing: -0.04em;
  }
}
.partners .wrapper__content {
  width: 48%;
}
@media (max-width: 640px) {
  .partners .wrapper__content {
    width: 100%;
    margin-bottom: 72px;
  }
}

.about__we_invest .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about__we_invest .inner .wrapper__invest {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
  grid-auto-rows: auto;
  grid-gap: 32px;
  width: 100%;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .about__we_invest .inner .wrapper__invest {
    grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
  }
}
@media (max-width: 640px) {
  .about__we_invest .inner .wrapper__invest {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about__we_invest .inner .wrapper__invest .column {
  width: 100%;
}
.about__we_invest .inner .wrapper__invest .column .logo img {
  width: 100%;
  filter: grayscale(1);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.about__we_invest .inner .wrapper__invest .column .logo img:hover {
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 4px 4px 15px rgba(51, 51, 51, 0.1);
}

.lps__intro__banner {
  background-color: #FAFAFD;
  position: relative;
}
.lps__intro__banner .inner {
  padding: 164px 113px;
  position: relative;
}
@media (max-width: 640px) {
  .lps__intro__banner .inner {
    padding: 80px 0px;
  }
}
.lps__intro__banner .inner .title__large_font_weight_medium,
.lps__intro__banner .inner .title__large {
  z-index: 10;
  position: relative;
}
@media (max-width: 640px) {
  .lps__intro__banner .inner .title__large_font_weight_medium,
.lps__intro__banner .inner .title__large {
    font-size: 37px;
  }
}
.lps__intro__banner .inner:after {
  content: "";
  position: absolute;
  bottom: -68px;
  right: 80px;
  width: 630px;
  height: 684px;
  background-image: url("/assets/img/lps_intro_banner_before.svg");
  background-size: 630px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 1280px) and (min-width: 1024px) {
  .lps__intro__banner .inner:after {
    right: -80px;
  }
}
@media (max-width: 640px) {
  .lps__intro__banner .inner:after {
    bottom: -105px;
    right: -50%;
    zoom: 0.7;
  }
}

.why_now .wrapper__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .why_now .wrapper__box {
    flex-direction: column;
  }
}
.why_now .wrapper__box .list .item {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #222222;
}
@media (max-width: 640px) {
  .why_now .wrapper__box .list .item {
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.2;
  }
}
.why_now .wrapper__box .list .item:not(:last-child) {
  margin-bottom: 34px;
}

.why_we {
  position: relative;
  overflow: hidden;
}
.why_we .animate {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #FAFAFD;
  transition: 1.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 640px) {
  .why_we .title__center {
    text-align: left;
  }
}
.why_we .title__main, .why_we .column__wrapper, .why_we .column__four, .why_we .icon, .why_we .title__extra_small_bold, .why_we .text__small {
  z-index: 20;
}
.why_we__items {
  position: relative;
}
.why_we__items .swiper-wrapper {
  display: flex;
  column-gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .why_we__items .swiper-wrapper {
    column-gap: 0;
  }
}
.why_we__items .swiper-wrapper .column {
  width: 25%;
}
@media (max-width: 640px) {
  .why_we__items .swiper-wrapper .column {
    width: 100%;
    height: 100%;
  }
}
.why_we__items .navigation {
  display: none;
}
@media (max-width: 640px) {
  .why_we__items .navigation {
    position: absolute;
    top: -46px;
    right: 0;
    width: 96px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
  }
  .why_we__items .navigation .focusSliderPrev,
.why_we__items .navigation .focusSliderNext {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.why_we .column__wrapper {
  padding: 24px 32px 25px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  height: 100%;
}
@media (max-width: 640px) {
  .why_we .column__wrapper {
    min-height: 300px;
  }
}
.why_we .column__wrapper .icon {
  width: 160px;
  height: 160px;
  margin: 0 40px 16px;
}
@media (max-width: 640px) {
  .why_we .column__wrapper .icon {
    margin: 0 auto;
  }
}

.advantages {
  position: relative;
  background: url("/assets/img/advantages_bg.svg");
  background-position: center 52px;
  background-repeat: no-repeat;
  background-size: contain;
}
.advantages .inner {
  padding: 115px 0 121px;
}
.advantages .inner .wrapper__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
@media (max-width: 640px) {
  .advantages .inner .wrapper__stage {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
.advantages .inner .wrapper__stage .stage {
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  display: flex;
}
.advantages .inner .wrapper__stage .stage .title__extra_small_bold {
  line-height: 1.2;
}
@media (min-width: 1025px), print {
  .advantages .inner .wrapper__stage .stage:nth-child(even) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
  }
}
@media (min-width: 1025px), print {
  .advantages .inner .wrapper__stage .stage:nth-child(odd) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.advantages .inner .wrapper__stage .stage .number {
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits_for_lps {
  background-color: #3C6CF4;
  position: relative;
}
@media (min-width: 1025px), print {
  .benefits_for_lps .inner .box__content_normal {
    width: 49%;
  }
}
.benefits_for_lps .wrapper {
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .benefits_for_lps .wrapper {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .benefits_for_lps .wrapper .illustration {
    display: none;
  }
}
.benefits_for_lps .wrapper .benefits__list .item:not(:last-child) {
  margin-bottom: 48px;
}

/*# sourceMappingURL=styles.css.map */
