@charset "UTF-8";
/* reset */
/* main variables */
body {
  margin: 0px;
  padding: 0px;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  height: 100%;
  line-height: 1;
  position: relative;
  font-size: 16px !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*MAIN*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-width: 0px;
  padding: 0px;
  margin: 0px;
}

html {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

input,
textarea {
  color: #333;
  font-family: "Inter", sans-serif;
  outline: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
}

td {
  margin: 0px;
  padding: 0px;
}

form {
  padding: 0px;
  margin: 0px;
}

a {
  color: #0050ff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
span,
div,
button {
  outline: none !important;
}

input[type="submit"],
input[type="button"],
button {
  -webkit-appearance: none;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.clearfix:after,
.wrapper:after,
.row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

/* checkbox */
/* radio */
/* select */
.jq-checkbox {
  top: -1px;
  width: 13px;
  height: 13px;
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background: #f6f6f6;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
  vertical-align: middle;
  cursor: pointer;
}

.jq-checkbox.checked .jq-checkbox__div {
  width: 9px;
  height: 9px;
  margin: 2px 0 0 2px;
  background: #666;
  box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 1px 0px rgba(0, 0, 0, 0.05);
}

.jq-checkbox.disabled {
  opacity: 0.5;
}

.jq-radio {
  width: 12px;
  height: 12px;
  border: 1px solid #c3c3c3;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #f6f6f6;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
  vertical-align: middle;
  cursor: pointer;
}

.jq-radio.checked .jq-radio__div {
  width: 6px;
  height: 6px;
  margin: 3px 0 0 3px;
  background: #666;
}

.jq-radio.disabled {
  opacity: 0.5;
}

.jq-file {
  width: 270px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.jq-file input {
  cursor: pointer;
  height: auto;
  line-height: 1em;
}

.jq-file__name {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  padding: 0 80px 0 10px;
  color: #333;
  font: 14px/30px Arial, sans-serif;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #f1f1f1;
  box-shadow: inset 1px 1px #f1f1f1;
  background: #fff;
}

.focused .jq-file__name {
  border: 1px solid #5794bf;
}

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  background: #f1f1f1
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC)
    repeat-x;
  -webkit-box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1,
    0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1,
    0 1px 2px rgba(0, 0, 0, 0.1);
  color: #333;
  text-shadow: 1px 1px #fff;
  font: 14px/30px Arial, sans-serif;
}

.jq-file:hover .jq-file__browse {
  background-color: #e6e6e6;
  background-position: 0 -10px;
}

.jq-file:active .jq-file__browse {
  background: #f5f5f5;
  -webkit-box-shadow: inset 1px 1px 3px #ddd;
  box-shadow: inset 1px 1px 3px #ddd;
}

.jq-file.disabled .jq-file__name {
  color: #888;
}

.jq-file.disabled,
.jq-file.disabled .jq-file__browse {
  border-color: #ccc;
  background: #f5f5f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888;
}

.jq-selectbox {
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
}

.jq-selectbox__select {
  height: 40px;
  padding: 10px 40px 0 15px;
  border: 1px solid #c3c3c3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #f5f5f5;
  -webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0);
  box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0);
  font-size: 14px;
  line-height: 18px;
  color: #000;
  font-family: Arial, sans-serif;
}

.jq-selectbox__select:hover {
  background: #f5f5f5;
}

.jq-selectbox__select:active {
  background: #f5f5f5;
}

.jq-selectbox.focused .jq-selectbox__select {
  background: #f5f5f5;
}

.opened .jq-selectbox__select {
  border-color: #000;
}

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #ccc;
  background: #f5f5f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888;
}

.jq-selectbox__select-text {
  display: block;
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  overflow: hidden;
  border-top: 5px solid #000;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  background: none;
}

.jq-selectbox__dropdown {
  top: 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 1px solid #000;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.1);
}

.jq-selectbox__search {
  margin: 5px;
}

.jq-selectbox__search input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  outline: none;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==)
    no-repeat 100% 50%;
  -webkit-box-shadow: inset 1px 1px #f1f1f1;
  box-shadow: inset 1px 1px #f1f1f1;
  color: #333;
  -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #f0f0f0;
  font-size: 13px;
}

.jq-selectbox ul {
  margin: 0;
  padding: 0;
}

.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 5px 10px;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-family: Arial, sans-serif;
}

.jq-selectbox li.selected {
  background-color: #000;
  color: #fff;
}

.jq-selectbox li:hover {
  background-color: #000;
  color: #fff;
}

.jq-selectbox li.disabled {
  color: #ccc;
  background: none;
}

.jq-selectbox li.disabled:hover {
  background: none;
}

.jq-selectbox li.optgroup {
  font-weight: bold;
}

.jq-selectbox li.optgroup:hover {
  background: none;
  color: #231f20;
  cursor: default;
}

.jq-selectbox li.option {
  padding-left: 25px;
}

.jq-select-multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #333;
  font: 14px/18px Arial, sans-serif;
  cursor: default;
}

.jq-select-multiple.focused {
  border: 1px solid #5794bf;
}

.jq-select-multiple.disabled {
  border-color: #ccc;
  background: #f5f5f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888;
}

.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
}

.jq-select-multiple li:first-child {
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
  background: #08c;
  color: #fff;
}

.jq-select-multiple li.disabled {
  color: #aaa;
}

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
  background: #ccc;
  color: #fff;
}

.jq-select-multiple li.optgroup {
  font-weight: bold;
}

.jq-select-multiple li.option {
  padding-left: 25px;
}

/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-handle {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}

.irs-handle.type_last {
  z-index: 2;
}

.irs-min,
.irs-max {
  position: absolute;
  display: block;
  cursor: default;
}

.irs-min {
  left: 0;
}

.irs-max {
  right: 0;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}

.irs-grid-pol.small {
  height: 4px;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs--flat {
  height: 40px;
}

.irs--flat.irs-with-grid {
  height: 60px;
}

.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}

.irs--flat .irs-bar--single {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}

.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}

.irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  background-color: #a43540;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  color: white;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}

.irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}

.irs--flat .irs-grid-text {
  color: #999;
}

.irs--big {
  height: 55px;
}

.irs--big.irs-with-grid {
  height: 70px;
}

.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(-50%, #ddd),
    color-stop(150%, white)
  );
  background: -webkit-linear-gradient(top, #ddd -50%, white 150%);
  background: -o-linear-gradient(top, #ddd -50%, white 150%);
  background: linear-gradient(to bottom, #ddd -50%, white 150%);
  border: 1px solid #ccc;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    color-stop(30%, #428bca),
    to(#b9d4ec)
  );
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #428bca 30%,
    #b9d4ec 100%
  );
  background: -o-linear-gradient(top, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}

.irs--big .irs-bar--single {
  -webkit-border-radius: 12px 0 0 12px;
  border-radius: 12px 0 0 12px;
}

.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}

.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    color-stop(30%, #b4b9be),
    to(white)
  );
  background: -webkit-linear-gradient(top, white 0%, #b4b9be 30%, white 100%);
  background: -o-linear-gradient(top, white 0%, #b4b9be 30%, white 100%);
  background: linear-gradient(to bottom, white 0%, #b4b9be 30%, white 100%);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    color-stop(30%, #919ba5),
    to(white)
  );
  background: -webkit-linear-gradient(top, white 0%, #919ba5 30%, white 100%);
  background: -o-linear-gradient(top, white 0%, #919ba5 30%, white 100%);
  background: linear-gradient(to bottom, white 0%, #919ba5 30%, white 100%);
}

.irs--big .irs-min,
.irs--big .irs-max {
  top: 0;
  padding: 1px 5px;
  color: white;
  text-shadow: none;
  background-color: #9f9f9f;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  color: white;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#428bca),
    to(#3071a9)
  );
  background: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
  background: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
  background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.irs--big .irs-grid-pol {
  background-color: #428bca;
}

.irs--big .irs-grid-text {
  color: #428bca;
}

.irs--modern {
  height: 55px;
}

.irs--modern.irs-with-grid {
  height: 55px;
}

.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e0e4ea),
    to(#d1d6e0)
  );
  background: -webkit-linear-gradient(top, #e0e4ea 0%, #d1d6e0 100%);
  background: -o-linear-gradient(top, #e0e4ea 0%, #d1d6e0 100%);
  background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#20b426),
    to(#18891d)
  );
  background: -webkit-linear-gradient(top, #20b426 0%, #18891d 100%);
  background: -o-linear-gradient(top, #20b426 0%, #18891d 100%);
  background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}

.irs--modern .irs-bar--single {
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}

.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}

.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.irs--modern .irs-handle > i:nth-child(2) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    to(#e9e6e6)
  );
  background: -webkit-linear-gradient(top, white 0%, #e9e6e6 100%);
  background: -o-linear-gradient(top, white 0%, #e9e6e6 100%);
  background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(3) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    color-stop(30%, #919ba5),
    to(#ffffff)
  );
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #919ba5 30%,
    #ffffff 100%
  );
  background: -o-linear-gradient(top, #ffffff 0%, #919ba5 30%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}

.irs--modern .irs-handle.state_hover > i:nth-child(1),
.irs--modern .irs-handle:hover > i:nth-child(1) {
  border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover > i:nth-child(3),
.irs--modern .irs-handle:hover > i:nth-child(3) {
  border-color: #48536a;
}

.irs--modern .irs-min,
.irs--modern .irs-max {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: white;
  background-color: #d1d6e0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: white;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}

.irs--modern .irs-grid {
  height: 25px;
}

.irs--modern .irs-grid-pol {
  background-color: #dedede;
}

.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}

.irs--sharp.irs-with-grid {
  height: 57px;
}

.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: black;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}

.irs--sharp .irs-bar--single {
  -webkit-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
}

.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}

.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}

.irs--sharp .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
  background-color: black;
}

.irs--sharp .irs-handle.state_hover > i:first-child,
.irs--sharp .irs-handle:hover > i:first-child {
  border-top-color: black;
}

.irs--sharp .irs-min,
.irs--sharp .irs-max {
  color: white;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: white;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}

.irs--sharp .irs-grid {
  height: 25px;
}

.irs--sharp .irs-grid-pol {
  background-color: #dedede;
}

.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--round {
  height: 50px;
}

.irs--round.irs-with-grid {
  height: 65px;
}

.irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa;
}

.irs--round .irs-bar--single {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}

.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: white;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #f0f6ff;
}

.irs--round .irs-min,
.irs--round .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: white;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa;
}

.irs--round .irs-grid {
  height: 25px;
}

.irs--round .irs-grid-pol {
  background-color: #dedede;
}

.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--square {
  height: 50px;
}

.irs--square.irs-with-grid {
  height: 60px;
}

.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}

.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: black;
}

.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}

.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid black;
  background-color: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}

.irs--square .irs-min,
.irs--square .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}

.irs--square .irs-from,
.irs--square .irs-to,
.irs--square .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: black;
  color: white;
}

.irs--square .irs-grid {
  height: 25px;
}

.irs--square .irs-grid-pol {
  background-color: #dedede;
}

.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
================================================================================
|                                     HEADER                                   |
================================================================================
*/
header {
  width: 100%;
  min-width: 320px;
  text-align: left;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-order: 1;
}

.header {
  position: absolute;
  padding: 24px 0;
  z-index: 10;
}

/* .header-main {
  background-color: #fff;
} */

.header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-main ul li a {
  color: #ffffff;
}

.header-logo {
  max-width: 167px;
  margin-right: 34px;
  margin-top: 1px;
}

.header-logo img {
  width: 100%;
}

.header-lang {
  position: relative;
  min-width: 100px;
}

.header-lang span {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-lang span i {
  margin-right: 8.5px;
}

.header-lang__text:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -18px;
  content: "\e904";
  font-family: "icomoon";
  font-size: 6px;
}

.header-lang__box {
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 12px rgba(65, 84, 112, 0.2);
  box-shadow: 0px 5px 12px rgba(65, 84, 112, 0.2);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(10px);
  -ms-transform: translateX(-50%) translateY(10px);
  transform: translateX(-50%) translateY(10px);
  top: -webkit-calc(100% + 15px);
  top: calc(100% + 15px);
  padding: 15px 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.header-lang__box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  z-index: 1;
}

.header-lang__box li {
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 5px 0;
}

.header-lang__box li:hover {
  color: #0050ff;
}

.header-nav {
  margin: 0 auto;
}

.header-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-nav ul li {
  margin-right: 24px;
}

.header-nav ul li:last-of-type {
  margin-right: 0;
}

.header-nav ul li a {
  color: #07132e;
  font-weight: 500;
  line-height: 16px;
  position: relative;
}

.header-nav ul li a:hover {
  color: #0050ff;
}

.header-nav ul li a.active {
  color: #0050ff;
}

.header-nav ul li a.active:after {
  position: absolute;
  left: 0;
  top: 45px;
  width: 100%;
  content: "";
  background: #0050ff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  height: 4px;
}

.header-user {
  margin-left: auto;
}

.header-user__mob {
  display: none;
}

.header-user a {
  font-weight: 500;
  font-size: 16px;
  color: #07132e;
}

.header-user a:hover {
  color: #0050ff;
}

.header-user .btn {
  margin-left: 8px;
  color: #ffffff;
}

.header-user .btn:hover {
  color: #ffffff;
}

.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.menu-main a {
  color: #FFFFFF !important;
}

.user-main a {
  color: #FFFFFF !important;
}

.user-main .btn {
  background: none;
}

.user-main .btn:hover {
  background: none;
}

.btn-menu {
  color: #222222;
  cursor: pointer;
  display: none;
  width: 52px;
  height: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 111;
  border: 1px solid #ebeff5;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-left: 8px;
}

.btn-menu span {
  background-color: #222222;
  display: block;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  -ms-transform-origin: center;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition-duration: 86ms;
  -o-transition-duration: 86ms;
  transition-duration: 86ms;
  -webkit-transition-property: background-color, opacity, -webkit-transform;
  transition-property: background-color, opacity, -webkit-transform;
  -o-transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 20px;
}

.btn-menu span:nth-child(1) {
  top: -webkit-calc(50% - 7px);
  top: calc(50% - 7px);
}

.btn-menu span:nth-child(2) {
  top: -webkit-calc(50% - 1px);
  top: calc(50% - 1px);
}

.btn-menu span:nth-child(3) {
  top: -webkit-calc(50% + 5px);
  top: calc(50% + 5px);
}

.btn-menu.active {
  cursor: pointer;
}

.btn-menu.active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
  left: 30%;
  top: -webkit-calc(53% - 7px);
  top: calc(53% - 7px);
}

.btn-menu.active span:nth-child(2) {
  opacity: 0;
}

.btn-menu.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  left: 30%;
  top: -webkit-calc(85% - 7px);
  top: calc(85% - 7px);
}

@media screen and (max-width: 930px) {
  .get-card {
    margin-left: auto;
  }
  .btn-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav {
    position: absolute;
    left: 160px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 24px;
    margin: 0;
  }
  .header-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header-nav ul li {
    margin-right: 16px;
  }
  .header-lang {
    margin-left: auto;
    padding: 12px 13px;
    height: 40px;
    min-width: auto;
    border: 1px solid #ebeff5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  .header-lang span.header-lang__text {
    display: none;
  }
  .header-lang span i {
    margin-right: 0;
  }
  .header-lang__box {
    left: 50%;
    min-width: 100px;
    width: auto;
  }
  .header-user {
    margin-left: 8px;
  }
  .header-user a {
    display: none;
  }
  .header-user a.header-user__mob {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 500;
  }
  .header-user__mob {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 10px 15px;
    /* border: 1px solid #ebeff5; */
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
  }
  .header-user__mob i {
    font-size: 16px;
    margin-right: 8px;
    margin-top: -1px;
  }
  .header-logo {
    max-width: 119px;
  }
  .header-content {
    padding: 0 16px;
  }
  .header {
    padding: 20px 0;
  }
  .header-nav ul li a.active:after {
    top: 22px;
    height: 2px;
  }
}

@media screen and (max-width: 800px) {
  .header-nav {
    position: absolute;
    top: 56px;
    left: 0px;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 24px;
    margin: 0;
  }
  .header-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    width: fit-content;
  }
  .header-nav ul li {
    margin-right: 16px;
  }
  .header-nav ul li a {
    font-size: 14px;
  }
  .header {
    padding: 8px 0;
  }
  .header .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .header-logo {
    margin-right: 10px;
    margin-top: 4px;
  }
  .header-user__mob i {
    margin-top: 0;
  }
}

@media screen and (max-width: 365px) {
  .header-logo {
    margin-right: 10px;
  }
  .header-user,
  .btn-menu {
    margin-left: 5px;
  }
  .header-lang {
    padding: 12px;
  }
  .header-user__mob {
    padding: 10px 12px;
  }
  .header-user a.header-user__mob {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 325px) {
  .btn-menu.active span:nth-child(1) {
    left: 25%;
  }
  .btn-menu.active span:nth-child(3) {
    left: 25%;
  }
}

.get-card {
  padding: 4px 8px;
  background-color: #1B63FF;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.get-card img {
  margin-right: 6px;
}

.get-card:hover {
  background-color: #34CE44;
}

/*
================================================================================
|                                     FOOTER                                   |
================================================================================
*/
footer {
  text-align: left;
  width: 100%;
  min-width: 320px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  -webkit-order: 3;
}

.footer {
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(20, 45, 104, 0.5)),
      to(#091634)
    ),
    #142d68;
  background: -webkit-linear-gradient(
      top,
      rgba(20, 45, 104, 0.5) 0%,
      #091634 100%
    ),
    #142d68;
  background: -o-linear-gradient(top, rgba(20, 45, 104, 0.5) 0%, #091634 100%),
    #142d68;
  background: linear-gradient(180deg, rgba(20, 45, 104, 0.5) 0%, #091634 100%),
    #142d68;
  z-index: 1;
  position: relative;
}

.footer:after {
  content: url(../img/footer-pattern.svg);
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

.footer-col:last-of-type {
  width: -webkit-calc(100% - 520px);
  width: calc(100% - 520px);
}

.footer-top {
  padding-top: 144px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-logo {
  max-width: 231px;
  margin-bottom: 46px;
}

.footer-logo img {
  width: 100%;
}

.footer-opportunity {
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #ebeff5;
  margin-bottom: 16px;
  max-width: 326px;
}

.footer-buy {
  margin-bottom: 48px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}

.footer-buy li {
  margin-right: 16px;
}

.footer-company {
  border: 1px solid rgba(137, 148, 163, 0.3);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 24px;
  width: 392px;
  max-width: 100%;
}

.footer-company span {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  display: block;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-company p {
  font-size: 14px;
  line-height: 24px;
  color: #8994a3;
  margin-bottom: 16px;
  max-width: 235px;
}

.footer-company a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
}

.footer-company a i {
  margin-left: 4px;
}

.footer-company a i:before {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-company a:hover {
  color: #fff;
}

.footer-company a:hover i:before {
  color: #fff;
}

.footer-title {
  margin-bottom: 72px;
}

.footer-title span {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  text-transform: capitalize;
  /* max-width: 464px; */
}

.footer-title ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6px;
}

.footer-title ul li {
  margin-left: 55px;
}

.footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 600px;
}

.footer-nav__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-calc(100% - 185px);
  width: calc(100% - 185px);
}

.footer-nav ul {
  margin-bottom: 47px;
  width: 50%;
}

.footer-nav ul:nth-of-type(odd) {
  margin-right: 20px;
  width: 45%;
}

.footer-nav ul:last-of-type {
  margin-top: -32px;
}

.footer-nav ul li {
  margin-bottom: 16px;
}

.footer-nav ul li:last-of-type {
  margin-bottom: 0;
}

.footer-nav ul li span {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #ebeff5;
  display: block;
  margin-bottom: 22px;
}

.footer-nav ul li a {
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
}

.footer-nav ul li a:hover {
  color: #fff;
}

.footer-nav ul li a i {
  margin-left: 4px;
  vertical-align: text-top;
  font-size: 16px;
}

.footer-contacts {
  max-width: 185px;
  margin-top: -6px;
}

.footer-contacts ul {
  width: 100%;
  padding-right: 45px;
  margin-bottom: 42px;
}

.footer-contacts ul:last-of-type,
.footer-contacts ul:nth-of-type(odd) {
  margin-top: 0;
  width: 100%;
  margin-right: 0;
}

.footer-contacts ul li {
  font-size: 14px;
  line-height: 24px;
  color: #8994a3;
  margin-bottom: 16px;
}

.footer-lang {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-lang i {
  margin-right: 8px;
  font-size: 16px;
}

.footer-bottom {
  padding: 29px 0px 32px;
}

.footer-bottom span {
  font-size: 12px;
  line-height: 16px;
  color: #8994a3;
  margin-left: 3px;
  display: inline-block;
}

.footer-bottom span:last-of-type {
  margin-left: 0;
}

@media screen and (max-width: 1200px) {
  .footer-company {
    width: 296px;
  }
  .footer-col:last-of-type {
    width: -webkit-calc(100% - 400px);
    width: calc(100% - 400px);
  }
  .footer-top {
    padding-top: 145px;
  }
  .footer-logo {
    max-width: 210px;
    margin-bottom: 34px;
    margin-top: 15px;
  }
  .footer-title {
    margin-right: 0;
    margin-bottom: 47px;
  }
  .footer-title span {
    max-width: 290px;
  }
  .footer-title span br {
    display: none;
  }
  .footer-title ul li {
    margin-left: 32px;
  }
  .footer-title ul {
    margin-top: -27px;
  }
  .footer-nav ul:nth-of-type(odd) {
    margin-right: 15px;
  }
  .footer-nav__box {
    width: -webkit-calc(100% - 215px);
    width: calc(100% - 215px);
  }
  .footer-contacts {
    max-width: 215px;
  }
  .footer-contacts ul {
    padding-right: 70px;
  }
  .footer-company a i {
    margin-left: 6px;
    font-size: 11px;
  }
}

@media screen and (max-width: 991px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-top {
    padding-top: 65px;
    padding-bottom: 55px;
  }
  .footer-logo {
    margin-top: 0;
    max-width: 165px;
    margin-bottom: 22px;
  }
  .footer-opportunity {
    display: none;
  }
  .footer-company {
    width: 100%;
  }
  .footer-col:last-of-type {
    width: 100%;
    margin-top: 47px;
  }
  .footer-title {
    padding-right: 97px;
    margin-bottom: 56px;
  }
  .footer-title span {
    font-size: 20px;
    line-height: 24px;
    max-width: 370px;
  }
  .footer-title ul {
    margin-top: 0;
  }
  .footer-title ul li {
    margin-left: 7px;
  }
  .footer-title ul li img {
    max-width: 54px;
  }
  .footer-nav {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }
  .footer-nav__box {
    width: 100%;
  }
  .footer-nav ul:nth-of-type(odd),
  .footer-nav ul {
    width: 20%;
    margin-right: 19px;
  }
  .footer-nav ul:nth-of-type(2) {
    margin-right: 55px;
  }
  .footer-nav ul:last-of-type {
    margin-top: 0;
  }
  .footer-contacts {
    max-width: 100%;
  }
  .footer-contacts ul:nth-of-type(odd),
  .footer-contacts ul {
    width: 100%;
    margin-right: 0;
  }
  .footer-contacts {
    margin-top: 8px;
  }
  .footer-contacts ul {
    margin-bottom: 52px;
  }
  .footer-contacts li span {
    margin-bottom: 20px;
  }
  .footer-contacts ul li {
    margin-bottom: 8px;
    letter-spacing: 0.1px;
  }
  .footer-bottom {
    padding: 30px 0px 30px;
  }
}

@media screen and (max-width: 767px) {
  .footer-title {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 42px;
  }
  .footer-title ul {
    margin-top: 15px;
  }
  .footer-title ul li {
    margin-left: 0;
    margin-right: 6px;
  }
  .footer-nav ul:nth-of-type(odd),
  .footer-nav ul,
  .footer-nav ul:nth-of-type(2) {
    width: 46%;
    margin-right: 0;
  }
  .footer-nav__box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer-nav ul:last-of-type {
    margin-top: -32px;
  }
  .footer-contacts {
    margin-top: 0px;
  }
  .footer-contacts ul:nth-of-type(odd),
  .footer-contacts ul,
  .footer-contacts ul:nth-of-type(2) {
    width: 100%;
    padding-right: 0;
    margin-bottom: 44px;
  }
  .footer-contacts ul:last-of-type {
    margin-top: 0;
  }
  .footer-top {
    padding-bottom: 45px;
  }
  .footer-bottom span {
    margin-left: -2px;
    font-size: 12px;
    line-height: 15px;
  }
  .footer-bottom span:last-of-type {
    margin-left: -5px;
  }
}

@media screen and (max-width: 480px) {
  .footer-bottom span:last-of-type {
    margin-left: -2px;
  }
}

.main-wrapper {
  padding: 0 0 0 0;
  min-width: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
}

.wrapper {
  min-width: 320px;
  max-width: 1304px;
  padding: 0 40px 0 40px;
  margin: 0 auto;
  position: relative;
}

/* titles */
p {
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
  font-weight: 400;
}

h1,
.title1 {
  font-size: 72px;
  line-height: 72px;
  color: #07132e;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
}

h2 {
  font-size: 56px;
  line-height: 56px;
  color: #07132e;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -2px;
}

h3 {
  font-size: 40px;
  line-height: 40px;
  color: #07132e;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

strong,
b {
  font-weight: 700;
}

/* text position */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* loader */
.loaded .main-wrapper {
  visibility: hidden;
}

.icon-load {
  background: url(../img/loader.gif) no-repeat left top;
  width: 40px;
  height: 40px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-left: -20px;
  display: none;
}

.loaded .icon-load {
  display: block;
}

/*
================================================================================
|                                     CONTENT                                 |
================================================================================
*/
.content {
  min-width: 320px;
  text-align: left;
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-order: 2;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.btn {
  height: 48px;
  line-height: 46px;
  outline: none;
  background: #0050ff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0 32px;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid transparent;
}

.btn:hover {
  background: #34ce44;
}

.btn-green {
  background: #34ce44;
}

.btn-green:hover {
  background: #2ab539;
}

.btn.disabled {
  pointer-events: none;
  background-color: #f9e5b1;
}

.btn-icon {
  padding: 0 24px;
}

.btn-icon i {
  margin-right: 5px;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
}

.btn-md {
  padding: 0 23px;
  height: 40px;
  line-height: 38px;
}

.main-block {
  background-image: url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 200px 0 280px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.main-block:after {
  content: url(../img/main-wave.svg);
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -2px;
  z-index: -1;
}

.main-block__cookies {
  position: absolute;
  left: 15px;
  bottom: 251px;
  background: #ffffff;
  -webkit-box-shadow: 0px 16px 30px rgba(65, 84, 112, 0.2);
  box-shadow: 0px 16px 30px rgba(65, 84, 112, 0.2);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 18px 25px 18px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-block__cookies span {
  margin-left: 13px;
  margin-right: 23px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
}

.main-block__cookies .btn {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 7px 12px;
  height: 36px;
  line-height: normal;
}

.main-block__info {
  max-width: 930px;
  margin: 0 auto;
  margin-bottom: 117px;
}

.main-block__info h1 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 52px;
}

.main-block__info p {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin: auto auto 40px;
  max-width: 820px;
}

.main-block__suptitle {
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  color: #8994a3;
  margin-bottom: 24px;
}

.advantages {
  padding-top: 24px;
}

.advantages-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
}

.advantages-item {
  max-width: 171px;
  text-align: center;
  width: 14%;
}

.advantages-item__icon {
  margin-bottom: 14px;
}

.advantages-item span {
  font-size: 14px;
  line-height: 16px;
  color: #07132e;
}

.top-text {
  max-width: 585px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}

.top-text__descr {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8994a3;
  margin-bottom: 8px;
}

.top-text p {
  margin: 0 auto;
  max-width: 500px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
}

.top-text-decor1,
.top-text-decor2 {
  position: absolute;
  top: 33px;
  left: -121px;
}

.top-text-decor2 {
  left: auto;
  top: 28px;
  right: -121px;
}

.investment {
  padding-top: 150px;
}

.investment .top-text p {
  max-width: 435px;
}

.investment-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 936px;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.investment-card {
  background: #f6f8fb;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  width: -webkit-calc(50% - 12px);
  width: calc(50% - 12px);
  text-align: center;
  padding: 56px 15px 72px;
}

.investment-card:first-of-type {
  margin-top: 10px;
}

.investment-card__title {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #07132e;
  margin-bottom: 16px;
}

.investment-card__img {
  position: relative;
  width: 220px;
  height: 136px;
  margin: 0 auto;
  margin-bottom: 52px;
  z-index: 1;
}

.investment-card__img img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: initial;
}

.investment-card__rate {
  z-index: 2;
  position: relative;
}

.investment-card__rate-suptitle {
  display: block;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #07132e;
  opacity: 0.5;
}

.investment-card__rate-title {
  display: block;
  font-size: 28px;
  line-height: 32px;
  color: #07132e;
  margin: 4px 0;
}

.investment-card__rate-interest {
  display: block;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 16px;
}

.investment-card__rate-interest ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.investment-card__rate-interest ul li {
  margin: 0 4px;
}

.investment-card__rate-exp {
  padding: 5px 12px;
  background: #f6f8fb;
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #07132e;
  margin-bottom: 32px;
  display: inline-block;
}

.investment-card__link {
  display: block;
  margin-top: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.investment-card__link:hover {
  color: #0143d4;
}

.investment-card__dark {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
  padding: 41px 15px 88px;
}

.investment-card__dark .investment-card__title {
  color: #ffffff;
}

.investment-card__dark .investment-card__rate-suptitle {
  color: #ffffff;
  opacity: 0.5;
}

.investment-card__dark .investment-card__rate-title, .investment-card__dark .investment-card__rate-interest {
  color: #ffffff;
}

.investment-card__dark .investment-card__rate-exp {
  border: 1px solid #364667;
  background-color: transparent;
  color: #ffffff;
}

.investment-card__stars {
  margin-bottom: 12px;
}

.investment-card__stars img {
  margin: 0 1.5px;
}

.popular {
  padding-top: 202px;
  position: relative;
}

.popular-decor {
  display: none;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.popular-items {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popular-item {
  width: 264px;
  height: 96px;
  margin: 0 12px;
  margin-bottom: 24px;
  background: #f6f8fb;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
}

.popular-item:last-of-type {
  margin-right: -38px;
}

.popular-item__icon {
  background: #ffffff;
  -webkit-box-shadow: 0px 16px 30px rgba(65, 84, 112, 0.2);
  box-shadow: 0px 16px 30px rgba(65, 84, 112, 0.2);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
}

.popular-item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #07132e;
}

.how {
  padding-top: 175px;
}

.how .top-text {
  margin-bottom: 51px;
}

.how .top-text p {
  margin-top: 5px;
}

.how-items {
  margin-top: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.how-item {
  margin-left: 12px;
  margin-right: 12px;
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  text-align: center;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 32px 32px 64px;
  color: #fff;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.how-item__num {
  margin-bottom: 6px;
}

.how-item__img {
  margin-bottom: 32px;
  height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.how-item span {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  display: block;
  margin-bottom: 8px;
}

.how-item p {
  color: #8994a3;
  font-size: 14px;
  line-height: 24px;
}

.affiliate {
  background: #f6f8fb;
  margin-top: 208px;
}

.affiliate .wrapper {
  padding-top: 188px;
  padding-bottom: 140px;
}

.affiliate .top-text {
  margin-bottom: 32px;
}

.affiliate .top-text p {
  margin-top: 16px;
}

.affiliate-content {
  text-align: center;
}

.affiliate-content img {
  position: absolute;
}

.affiliate-content__link {
  display: block;
  margin-top: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.affiliate-content__link:hover {
  color: #0143d4;
}

.affiliate-content .btn {
  padding: 0 31.5px;
}

.affiliate-decor1 {
  top: 13.4% !important;
  left: 0.8% !important;
  position: absolute !important;
}

.affiliate-decor2 {
  top: 5% !important;
  left: 30% !important;
  position: absolute !important;
}

.affiliate-decor3 {
  top: 0 !important;
  right: 16.5% !important;
  left: auto !important;
  position: absolute !important;
}

.affiliate-decor4 {
  left: 8.6% !important;
  bottom: 0 !important;
  top: auto !important;
  position: absolute !important;
}

.affiliate-decor5 {
  top: 78% !important;
  left: 63.9% !important;
  position: absolute !important;
}

.affiliate-decor6 {
  top: 50% !important;
  right: 7.2% !important;
  left: auto !important;
  position: absolute !important;
}

.talk {
  padding-top: 144px;
}

.talk-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.talk-item {
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  margin: 0 12px;
  text-align: center;
  background: #f6f8fb;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.talk-item__img {
  width: 100%;
  height: 232px;
  display: block;
}

.talk-item__img:hover {
  opacity: 0.7;
}

.talk-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.talk-item__info {
  padding: 32px;
}

.talk-item__info p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 auto;
  margin-bottom: 11px;
  max-width: 270px;
}

.talk-item__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  display: block;
  text-transform: capitalize;
  color: #07132e;
  margin-bottom: 4px;
}

.talk-item__title:hover {
  color: #0143d4;
}

.talk-item__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.talk-item__link:hover {
  color: #0143d4;
}

.plan-block {
  margin-top: 200px;
  height: 288px;
  position: relative;
}

.plan-block__items {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.plan-block__item {
  white-space: nowrap;
  -webkit-transition: 0.55s ease-out;
  -o-transition: 0.55s ease-out;
  transition: 0.55s ease-out;
}

.plan-block span {
  color: #fff;
  text-shadow: -1px -1px 0 #c5cdd7, 1px -1px 0 #c5cdd7, -1px 1px 0 #c5cdd7,
    1px 1px 0 #c5cdd7;
  font-weight: 900;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  margin: 0 12px;
}

.plan-block span.plan-block__main {
  color: #07132e;
  text-shadow: none;
}

.plan-block__item:nth-of-type(2) {
  margin-left: -30px;
  -webkit-transition: 0.45s ease-out;
  -o-transition: 0.45s ease-out;
  transition: 0.45s ease-out;
}

.plan-block__item:nth-of-type(1) {
  -webkit-transition: 0.65s ease-out;
  -o-transition: 0.65s ease-out;
  transition: 0.65s ease-out;
}

.customers {
  padding-top: 200px;
}

.customers .top-text {
  max-width: 100%;
}

.customers-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: -12px;
  margin-right: -12px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.customers-item {
  margin: 0 12px;
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  background: #f6f8fb;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 56px 48px;
}

.customers-item__author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.customers-item__author-img {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.customers-item__author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.customers-item__author-name {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #07132e;
  margin-bottom: 4px;
  display: block;
}

.customers-item__author-place {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.customers-item__author-place br {
  display: none;
}

.customers-item__author-place img {
  margin-left: 8px;
}

.customers-item p {
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
}

.customers-item__date {
  margin-top: 24px;
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #8994a3;
}

.sign-block {
  margin-top: 200px;
}

.sign-block__content {
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  text-align: center;
  padding: 72px 24px 80px;
}

.sign-block__content .top-text {
  margin-bottom: 0;
}

.sign-block__content .top-text h3,
.sign-block__content .top-text p {
  color: #ffffff;
}

.sign-block__content .top-text .btn {
  margin-top: 32px;
}

.sign-block-decor1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.sign-block-decor2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.our-news {
  padding-top: 144px;
  text-align: center;
}

.our-news .btn {
  margin: 0 auto;
  margin-top: 40px;
}

.our-news .news-items {
  max-width: 940px;
  margin: 0 auto;
}

.our-news .top-text {
  margin-bottom: 51px;
}

.our-news .top-text p {
  margin-top: 5px;
}

.news-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  text-align: left;
}

.news-item {
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  margin-left: 12px;
  margin-right: 12px;
}

.news-item__img {
  height: 152px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  display: block;
}

.news-item__img:hover {
  opacity: 0.7;
}

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

.news-item__title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  margin-bottom: 8px;
}

.news-item__title:hover {
  color: #0143d4;
}

.news-item__date {
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
}

.achievements {
  padding-top: 200px;
}

.achievements-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.achievements-item {
  width: -webkit-calc(50% - 24px);
  width: calc(50% - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 24px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #c5cdd7;
  padding: 47px 63px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.achievements-item__img {
  width: 128px;
  min-width: 128px;
  height: 128px;
  margin-right: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.achievements-item p {
  font-size: 14px;
  line-height: 24px;
  color: #07132e;
}

.main-faq {
  padding-top: 175px;
  padding-bottom: 144px;
}

.main-faq .top-text {
  max-width: 100%;
}

.main-faq .top-text p {
  max-width: 100%;
  margin-top: 4px;
}

.main-faq .faq-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.main-faq__block {
  text-align: center;
  margin-top: 40px;
}

.main-faq__block h5 {
  margin-bottom: 8px;
}

.main-faq__block p {
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  margin-bottom: 8px;
}

.main-faq__block a {
  color: #0050ff;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}

.main-faq__block a:hover {
  color: #0143d4;
}

.faq-col {
  margin-left: 12px;
  margin-right: 12px;
  width: -webkit-calc(50% - 24px);
  width: calc(50% - 24px);
}

.faq-item {
  width: 100%;
  margin-bottom: 16px;
}

.faq-item__head {
  cursor: pointer;
  background: #f6f8fb;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 24px 48px 24px 24px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #07132e;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.faq-item__head-btn {
  width: 11px;
  height: 11px;
  text-align: center;
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.faq-item__head-btn:before,
.faq-item__head-btn:after {
  content: "";
  position: absolute;
  background: #07132e;
}

.faq-item__head-btn:before {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 11px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq-item__head-btn:after {
  top: 50%;
  left: 50%;
  height: 1px;
  width: 11px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq-item__head:hover {
  color: #0143d4;
}

.faq-item__head:hover .faq-item__head-btn:before,
.faq-item__head:hover .faq-item__head-btn:after {
  background-color: #0143d4;
}

.faq-item__content {
  padding: 24px;
  display: none;
}

.faq-item.active .faq-item__head-btn:before {
  display: none;
}

.slick-dots {
  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;
  width: 100%;
}

.slick-dots li {
  margin: 0 4px;
}

.slick-dots li button {
  font-size: 0;
  background: #ebeff5;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 24px;
  height: 4px;
  border: none;
  outline: none;
  content: "";
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slick-dots li.slick-active button {
  background: #07132e;
}

.achievements .slick-dots li.slick-active button {
  background: #0050ff;
}

.login {
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  padding: 32px 65px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-radial-gradient(
      100% 100%,
      92.24% 180.27%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #142d68;
  background: -o-radial-gradient(
      100% 100%,
      92.24% 180.27%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #142d68;
  background: radial-gradient(
      92.24% 180.27% at 100% 100%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    #142d68;
  background-blend-mode: soft-light, normal;
  z-index: 1;
  position: relative;
}

.login:after {
  content: url(../img/login-pattern.svg);
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

.login-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: 100%;
}

.login-logo {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
  /* -webkit-transform: translateX(39px);
  -ms-transform: translateX(39px);
  transform: translateX(39px); */
}

.login-lang {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.login-lang i {
  margin-right: 8px;
  font-size: 16px;
}

.login-bottom {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #c5cdd7;
  text-align: center;
  margin-top: auto;
}

.login-bottom a {
  color: #c5cdd7;
}

.login-bottom a:hover {
  opacity: 0.7;
}

.login-form {
  padding: 48px 56px;
  max-width: 504px;
  background: #ffffff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin: 40px auto;
}

.login-form.signup-form {
  margin: 61px auto;
}

.login-form.recovery-form h3 {
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
}

.login-form .recovery-form__confirm {
  display: none;
}

.login-form__title {
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

.login-form__subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
  display: block;
  margin-bottom: 40px;
  text-align: center;
}

.login-form .btn {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  margin-top: 8px;
  height: 56px;
  line-height: 56px;
}

.login-form__agree {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #8994a3;
  display: block;
}

.login-form__agree a:hover {
  color: #0143d4;
}

.login-form__add {
  margin-top: 40px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #8994a3;
  display: block;
}

.login-form__add a:hover {
  color: #0143d4;
}

.box-field {
  margin-bottom: 24px;
  position: relative;
}

.box-field__label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
  margin-bottom: 8px;
}

.box-field .form-control {
  width: 100%;
  background: #ffffff;
  height: 48px;
  line-height: 48px;
  border: 1px solid #c5cdd7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0px 14px;
  font-size: 16px;
  color: #07132e;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-field .form-control::-webkit-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 14px;
}

.box-field .form-control:-ms-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 14px;
}

.box-field .form-control::-ms-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 14px;
}

.box-field .form-control::placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 14px;
}

.box-field .form-control:-ms-input-placeholder {
  color: #8994a3;
  font-size: 14px;
}

.box-field .form-control::-ms-input-placeholder {
  color: #8994a3;
  font-size: 14px;
}

.box-field .form-control:focus {
  border: 1px solid #0050ff;
}

.box-field .form-control.error {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(255, 83, 83, 0.1)),
      to(rgba(255, 83, 83, 0.1))
    ),
    #ffffff;
  background: -webkit-linear-gradient(
      bottom,
      rgba(255, 83, 83, 0.1),
      rgba(255, 83, 83, 0.1)
    ),
    #ffffff;
  background: -o-linear-gradient(
      bottom,
      rgba(255, 83, 83, 0.1),
      rgba(255, 83, 83, 0.1)
    ),
    #ffffff;
  background: linear-gradient(
      0deg,
      rgba(255, 83, 83, 0.1),
      rgba(255, 83, 83, 0.1)
    ),
    #ffffff;
  border: 1px solid #ff5353;
}

.box-field__password {
  position: relative;
}

.box-field__password-eye {
  position: absolute;
  right: 16px;
  top: 40px;
}

.box-field__password .box-field__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box-field__password-link {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #0050ff;
}

.box-field__password-link:hover {
  color: #0143d4;
}

.box-field label.error {
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #ff5353;
  display: block;
  margin-bottom: 29px;
}

.recovery-form__confirm-email {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.recovery-form__confirm-text {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #8994a3;
  display: block;
  text-align: center;
  margin-bottom: 23px;
}

.recovery-form__confirm .btn {
  text-align: center;
}

.detail-main {
  background-image: url(../img/detail-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.about-main {
  padding-top: 224px;
  padding-bottom: 144px;
}

.about-main__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-main .top-text {
  text-align: left;
  margin: 0;
  margin-left: -1px;
  max-width: 100%;
}

.about-main .top-text p {
  max-width: 100%;
}

.about-main__info {
  width: -webkit-calc(100% - 624px);
  width: calc(100% - 624px);
}

.about-main__info-subtitle {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: #07132e;
  margin: 24px 0;
}

.about-main__info p {
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
  margin: 0;
  margin-bottom: 40px;
  display: block;
}

.about-main__info-presentation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-main__info-presentation img {
  margin-right: 15px;
}

.about-main__info-presentation a {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 16px;
}

.about-main__info-presentation a i {
  font-size: 12px;
  margin-left: 2px;
}

.about-main__info-presentation a i:before {
  color: #0050ff;
}

.about-main__info-presentation a:hover {
  color: #0143d4;
}

.about-main__info-presentation a:hover i:before {
  color: #0143d4;
}

.about-main__info-presentation span {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #8994a3;
}

.about-main__blocks {
  width: 496px;
}

.about-main__block {
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 40px 63px;
  width: 100%;
  margin-bottom: 24px;
}

.about-main__block span {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  display: block;
  margin-bottom: 16px;
}

.about-main__block p {
  font-size: 14px;
  line-height: 24px;
  color: #07132e;
  margin-bottom: 13px;
}

.about-main__block a {
  font-size: 14px;
  line-height: 16px;
}

.about-main__block a i {
  font-size: 12px;
  margin-left: 2px;
}

.about-main__block a i:before {
  color: #0050ff;
}

.about-main__block a:hover {
  color: #0143d4;
}

.about-main__block a:hover i:before {
  color: #0143d4;
}

.about-main__block:last-of-type {
  margin-bottom: 0;
}

.features {
  background: #f6f8fb;
  padding: 120px 0 144px;
}

.features .top-text {
  max-width: 822px;
}

.features .top-text p {
  max-width: 100%;
  margin-top: 24px;
}

.features-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  margin-left: -12px;
  margin-right: -12px;
}

.features-item {
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  text-align: center;
  margin-left: 12px;
  margin-right: 12px;
}

.features-item__img {
  width: 100%;
  height: 272px;
}

.features-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features-item span {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  display: block;
  margin-bottom: 8px;
  text-transform: capitalize;
  color: #07132e;
}

.features-item p {
  font-size: 14px;
  line-height: 24px;
  max-width: 328px;
  margin: 0 auto;
}

.leadership {
  padding-top: 144px;
}

.leadership .top-text {
  margin-bottom: 65px;
}

.leadership-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}

.leadership-item {
  width: -webkit-calc(24.5% - 48px);
  width: calc(24.5% - 48px);
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 72px;
}

.leadership-item__img {
  height: 304px;
  width: 100%;
  margin-bottom: 24px;
}

.leadership-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.leadership-item__name {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  margin-bottom: 6px;
}

.leadership-item__position {
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
}

.performance {
  padding-top: 130px;
}

.performance-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.performance-info {
  width: 392px;
}

.performance-info .top-text {
  text-align: left;
  margin: 0;
  margin-left: -1px;
  max-width: 100%;
  margin-bottom: 70px;
}

.performance-info .top-text p {
  max-width: 100%;
}

.performance-info .top-text h3 {
  font-size: 32px;
  line-height: 40px;
}

.performance-info .top-text .top-text-decor1 {
  top: -51px;
  left: -109px;
}

.performance-info .top-text .top-text-decor2 {
  bottom: -105px;
  right: -54px;
  top: auto;
}

.performance-items {
  width: -webkit-calc(100% - 520px);
  width: calc(100% - 520px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.performance-col {
  max-width: 288px;
}

.performance-item {
  width: 100%;
  margin-bottom: 48px;
}

.performance-item:last-of-type {
  margin-bottom: 0;
}

.performance-item span {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #07132e;
  text-transform: capitalize;
}

.performance-item p {
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
}

.plan-block__about .plan-block__item:nth-of-type(1) {
  margin-left: 126px;
}

.plan-block__about .plan-block__item:nth-of-type(2) {
  margin-left: 541px;
}

.plan-block__about .plan-block__item:nth-of-type(3) {
  margin-left: -296px;
}

.investment-about {
  padding-top: 200px;
}

.investment-about-content {
  max-width: 1016px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.investment-about-img img {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.investment-about-info {
  width: -webkit-calc(100% - 520px);
  width: calc(100% - 520px);
}

.investment-about-info__title {
  display: block;
  font-weight: bold;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 23px;
  color: #07132e;
}

.investment-about-info p {
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
}

.investment-about-info__author {
  margin-top: 40px;
}

.investment-about-info__author-name {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  display: block;
  margin-bottom: 8px;
}

.investment-about-info__author-add {
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
}

.sign-block__inner {
  margin-top: 198px;
}

.sign-block__inner .main-faq__block {
  margin-bottom: 56px;
  margin-top: 56px;
}

.investments-main {
  padding: 224px 0 464px;
}

.investments-main-decor1,
.investments-main-decor2 {
  position: absolute;
}

.investments-main-decor1 {
  left: -304px;
  top: -89px;
  z-index: 1;
}

.investments-main-decor1:after {
  width: 249px;
  height: 249px;
  background-image: url(../img/investment-title-decor1-ellipse.png);
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -100px;
  right: -40px;
  content: "";
  z-index: -1;
}

.investments-main-decor2 {
  right: -286px;
  top: -12px;
  z-index: 1;
}

.investments-main-decor2:after {
  width: 188px;
  height: 188px;
  background-image: url(../img/investment-title-decor2-ellipse.png);
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -70px;
  right: -65px;
  content: "";
  z-index: -1;
}

.investments-main-decor3 {
  display: none;
  position: absolute;
  top: 110%;
  right: 160px;
}

.investments-main .top-text p {
  max-width: 600px;
}

.investments-plans {
  margin-top: -320px;
}

.investments-plan {
  max-width: 1145px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.investments-plan__card {
  width: 504px;
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  margin-bottom: 199px;
}

.investments-plan__card:last-of-type {
  margin-bottom: 0;
}

.investments-plan__card-top {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f2f6fb),
    to(#e6ebf3)
  );
  background: -webkit-linear-gradient(top, #f2f6fb 0%, #e6ebf3 100%);
  background: -o-linear-gradient(top, #f2f6fb 0%, #e6ebf3 100%);
  background: linear-gradient(180deg, #f2f6fb 0%, #e6ebf3 100%);
  -webkit-border-radius: 16px 16px 0 0;
  border-radius: 16px 16px 0 0;
  margin: -1px;
  padding-top: 178px;
  padding-bottom: 30px;
  text-align: center;
  position: relative;
}

.investments-plan__card-top img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -38px;
}

.investments-plan__card-top span {
  display: block;
}

.investments-plan__card-descr {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #8994a3;
  margin-bottom: 2px;
}

.investments-plan__card-title {
  font-weight: 900;
  font-size: 54px;
  line-height: 54px;
  color: #07132e;
  letter-spacing: -2px;
}

.investments-plan__card-subtitle {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #07132e;
}

.investments-plan__card-exp {
  background: #ffffff;
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #07132e;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -13px;
}

.investments-plan__card-content {
  padding: 61px 88px 96px;
}

.investments-plan__card-content ul {
  margin-top: 28px;
}

.investments-plan__card-content ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.investments-plan__card-content ul li:last-of-type {
  margin-bottom: 0;
}

.investments-plan__card-content ul li span {
  font-weight: normal;
}

.investments-plan__card-content .btn {
  margin-top: 48px;
  width: 100%;
  text-align: center;
}

.investments-plan__card-dark .investments-plan__card-top {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
}

.investments-plan__card-dark .investments-plan__card-descr {
  color: #8994a3;
}

.investments-plan__card-dark .investments-plan__card-title {
  color: #ffffff;
}

.investments-plan__card-dark .investments-plan__card-subtitle {
  color: #ffffff;
}

.investments-plan__info {
  width: -webkit-calc(100% - 616px);
  width: calc(100% - 616px);
  margin-top: 40px;
  padding-right: 45px;
}

.investments-plan__info p {
  color: #07132e;
  margin-bottom: 24px;
}

.investments-plan__info p:last-of-type {
  margin-bottom: 0;
}

.investments-plan__info ul {
  margin-top: 33px;
}

.investments-plan__info ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 16px;
}

.investments-plan__info ul li:last-of-type {
  margin-bottom: 0;
}

.investments-plan__info ul li i {
  color: #34ce44;
  margin-right: 14px;
  font-size: 33px;
  margin-top: -9px;
}

.investments-plan__title {
  display: block;
  font-weight: bold;
  font-size: 40px;
  line-height: 40px;
  color: #07132e;
  margin-bottom: 8px;
}

.investments-plan__subtitle {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  margin-bottom: 25px;
}

.range-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.range-slider-title {
  font-size: 16px;
  line-height: 16px;
  color: #07132e;
  margin-right: 5px;
}

.range-slider-val {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #07132e;
  border: none;
  background: transparent;
  width: 112px;
  text-align: right;
  margin-left: 0px;
  margin-top: 1px;
  margin-right: -4px;
}

.range-slider .irs {
  width: 128px;
}

.range-slider .irs-single {
  display: none;
}

.range-slider .irs--round {
  height: auto;
  margin-top: -70px;
}

.range-slider .irs--round .irs-line {
  background: #ebeff5;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  height: 4px;
}

.range-slider .irs--round .irs-bar {
  background-color: #0050ff;
}

.range-slider .irs--round .irs-handle {
  background: #0050ff;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 28px;
  height: 28px;
  top: 23px;
}

.range-slider .irs--round .irs-handle:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff;
}

.tap .top-text {
  max-width: 100%;
  margin-left: -16px;
  margin-bottom: 80px;
}

.tap .top-text p {
  max-width: 440px;
}

.tap-content {
  max-width: 1016px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tap-img {
  width: 455px;
  height: 264px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.tap-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tap-info {
  width: -webkit-calc(100% - 519px);
  width: calc(100% - 519px);
  margin-top: -8px;
  padding-right: 39px;
}

.tap-info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.tap-info li:last-of-type {
  margin-bottom: 0;
}

.tap-info li i {
  color: #34ce44;
  margin-right: 15px;
  font-size: 33px;
  margin-top: -4px;
}

.investments-products {
  padding-top: 78px;
  margin-bottom: -54px;
}

.investments-products h5 {
  text-align: center;
}

.investments-products__items {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -8px;
  margin-right: -8px;
}

.investments-products__item {
  margin-left: 8px;
  margin-right: 8px;
  width: -webkit-calc(20% - 16px);
  width: calc(20% - 16px);
  background: #f6f8fb;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  height: 80px;
  text-align: center;
  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;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #07132e;
  padding: 16px 24px;
}

.referral-main {
  padding-top: 224px;
  padding-bottom: 464px;
}

.referral-main-decor1,
.referral-main-decor2,
.referral-main-decor3 {
  position: absolute;
}

.referral-main-decor1 {
  top: 55px;
  left: -150px;
  width: 292px;
  z-index: 1;
}

.referral-main-decor1:after {
  width: 365px;
  height: 365px;
  background-image: url(../img/referral-main-decor1-ellipse.png);
  -webkit-background-size: 330px 330px;
  background-size: 330px;
  display: block;
  position: absolute;
  bottom: -80px;
  right: 55px;
  content: "";
  z-index: -1;
}

.referral-main-decor2 {
  top: -64px;
  right: 262px;
  width: 41px;
}

.referral-main-decor3 {
  top: 12px;
  right: 0;
  width: 146px;
  z-index: 1;
}

.referral-main-decor3:after {
  width: 176px;
  height: 176px;
  background-image: url(../img/referral-main-decor2-ellipse.png);
  -webkit-background-size: 209px 209px;
  background-size: 209px;
  display: block;
  position: absolute;
  bottom: -40px;
  right: -8px;
  content: "";
  z-index: -1;
}

.referral-main .top-text {
  max-width: 600px;
  padding-right: 27px;
}

.referral-main .top-text p {
  max-width: 460px;
}

.referral-cards {
  margin-top: -376px;
}

.referral-cards__content {
  max-width: 1044px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.referral-card {
  width: -webkit-calc(33.3% - 28px);
  width: calc(33.3% - 28px);
  margin-left: 14px;
  margin-right: 14px;
  background: #f6f8fb;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 49px 46px;
  text-align: center;
}

.referral-card__img {
  height: 96px;
  position: relative;
}

.referral-card__img img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: initial;
}

.referral-card__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  display: block;
  margin-bottom: 23px;
}

.referral-card__price {
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  color: #8994a3;
  padding: 7px 14px;
}

.referral-card ul {
  text-align: left;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 0 14px;
}

.referral-card ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #07132e;
  margin-bottom: 12px;
}

.referral-card ul li:last-of-type {
  margin-bottom: 0;
}

.referral-card ul li span {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}

.referral-card p {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
}

.referral-card__dark {
  padding-top: 61px;
  padding-bottom: 65px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
}

.referral-card__dark .referral-card__title,
.referral-card__dark ul li {
  color: #fff;
}

.referral-card__dark p {
  color: #8994a3;
}

.referral-card__dark .referral-card__title {
  margin-top: 10px;
}

.sign-block__referral {
  max-width: 1096px;
  margin: 0 auto;
  margin-top: 200px;
}

.sign-block__referral h5 {
  color: #fff;
  text-transform: capitalize;
}

.sign-block__referral .sign-block__content {
  padding: 64px 24px 64px;
}

.sign-block__referral .sign-block__content .top-text .btn {
  margin-top: 24px;
  padding: 0 40px;
}

.refferal-program {
  margin-top: 200px;
  padding: 144px 0;
  background: #f6f8fb;
  position: relative;
  overflow: hidden;
}

.refferal-program-decor1,
.refferal-program-decor2,
.refferal-program-decor3,
.refferal-program-decor4 {
  position: absolute;
}

.refferal-program-decor1 {
  width: 109px;
  left: 8.4% !important;
  top: 23.4% !important;
}

.refferal-program-decor2 {
  width: 53px;
  left: 41.2% !important;
  top: 7% !important;
}

.refferal-program-decor3 {
  width: 135px;
  right: 10.4% !important;
  top: 0 !important;
  left: auto !important;
}

.refferal-program-decor4 {
  width: 71px;
  height: 67px;
  left: 54.8% !important;
  bottom: -17px !important;
  top: auto !important;
}

.refferal-program__content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1016px;
  margin: 0 auto;
}

.refferal-program__main {
  width: 288px;
}

.refferal-program__main .top-text__descr {
  margin-bottom: 17px;
}

.refferal-program__info {
  width: -webkit-calc(100% - 416px);
  width: calc(100% - 416px);
  padding-right: 14px;
  margin-top: 14px;
}

.refferal-program__info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}

.refferal-program__info p:last-of-type {
  margin-bottom: 0;
}

.refferal-program__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  display: block;
  color: #07132e;
}

.refferal-faq {
  padding-top: 199px;
  padding-bottom: 56px;
}

.refferal-faq-decor {
  position: absolute;
  right: 16.7%;
  top: 14%;
  z-index: 1;
  pointer-events: none;
}

.refferal-faq .top-text {
  max-width: 100%;
  margin-left: -6px;
}

.refferal-faq .top-text p {
  max-width: 100%;
}

.refferal-faq .faq-items {
  max-width: 808px;
  margin: 0 auto;
  margin-top: 66px;
}

.refferal-faq .main-faq__block {
  margin-top: 58px;
}

.contacts-main {
  padding-top: 224px;
  padding-bottom: 464px;
}

.contacts-main-decor1,
.contacts-main-decor2 {
  position: absolute;
}

.contacts-main-decor1 {
  left: 5%;
  top: 1%;
}

.contacts-main-decor2 {
  right: 7.4%;
  top: 33%;
}

.contacts-main .top-text p {
  max-width: 580px;
  font-size: 18px;
  line-height: 24px;
}

.contacts-help {
  margin-top: -376px;
}

.contacts-help__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts-help__info {
  width: 496px;
  margin-top: 16px;
}

.contacts-help__info-subtitle {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #8994a3;
  margin-bottom: 48px;
}

.contacts-help__info-item {
  background: #f6f8fb;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 32px 40px 32px 64px;
  margin-bottom: 24px;
  position: relative;
}

.contacts-help__info-item img {
  position: absolute;
  left: -34px;
  top: 48%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contacts-help__info-item:last-of-type {
  margin-bottom: 0;
}

.contacts-help__info-item span {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #07132e;
}

.contacts-help__form {
  width: -webkit-calc(100% - 624px);
  width: calc(100% - 624px);
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 55px 79px;
}

.contacts-help__form h4 {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 8px;
}

.contacts-help__form .form-subtitle {
  text-align: center;
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #8994a3;
  margin-bottom: 24px;
}

.contacts-help__form .box-field__label {
  color: #07132e;
}

.contacts-help__form .btn {
  margin: 0 auto;
  display: block;
  margin-top: 29px;
  font-weight: 500;
  font-size: 17px;
}

.box-field .jq-selectbox.focused .jq-selectbox__select {
  background: #ffffff;
}

.box-field .jq-selectbox__select {
  width: 100%;
  background: #ffffff;
  height: 48px;
  line-height: 48px;
  border: 1px solid #c5cdd7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0px 14px;
  font-size: 16px;
  color: #07132e;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-field .jq-selectbox__trigger-arrow {
  border: none;
  width: 31px;
  height: 100%;
  overflow: visible;
  position: absolute;
  top: 0;
  right: 0;
}

.box-field .jq-selectbox__trigger-arrow:after {
  content: "\e922";
  font-family: "icomoon";
}

.box-field .jq-selectbox__dropdown {
  top: -webkit-calc(100% - 1px) !important;
  top: calc(100% - 1px) !important;
  border: 1px solid #c5cdd7;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.box-field .jq-selectbox li {
  padding: 15px;
  font-size: 16px;
  color: #07132e;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-field .jq-selectbox li.selected,
.box-field .jq-selectbox li:hover {
  background: #f6f8fb;
}

.box-field__textarea .form-control {
  resize: none;
  height: 106px;
  padding: 15px;
  font-size: 14px;
  line-height: 24px;
}

.checkbox-box {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  line-height: 16px;
  margin-top: 26px;
}

.checkbox-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #c5cdd7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #fff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-box input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-box .checkmark:after {
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid #0050ff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contacts-chat {
  padding-top: 213px;
}

.contacts-chat__block {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#242f47),
    to(#07132e)
  );
  background: -webkit-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: -o-linear-gradient(top, #242f47 0%, #07132e 100%);
  background: linear-gradient(180deg, #242f47 0%, #07132e 100%);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 39px 114px 47px 80px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

.contacts-chat__block-decor {
  top: 0;
  left: 42%;
  position: absolute;
  height: 100%;
}

.contacts-chat__block-decor img {
  height: 100%;
}

.contacts-chat__block-decor2,
.contacts-chat__block-decor3 {
  position: absolute;
  display: none;
}

.contacts-chat__main {
  max-width: 384px;
  position: relative;
  margin-top: 9px;
}

.contacts-chat__main img {
  position: absolute;
  top: -9px;
  right: 0;
}

.contacts-chat__main-addr {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 18px;
}

.contacts-chat__main-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px;
  display: block;
}

.contacts-chat__main .btn {
  padding: 0 47px;
}

.contacts-chat__main .btn i {
  margin-left: 5px;
}

.contacts-chat__main .btn i:before {
  color: #fff;
}

.contacts-chat__items {
  width: 354px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts-chat__item {
  margin-bottom: 8px;
  padding: 9px 62px 9px 14px;
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  z-index: 1;
  background: #2a486f;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.contacts-chat__item:after {
  position: absolute;
  left: -4px;
  bottom: -3px;
  content: url(../img/contacts-chat-message1.png);
}

.contacts-chat__item p {
  max-width: 172px;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.4px;
}

.contacts-chat__item span {
  font-size: 11px;
  line-height: 13px;
  font-style: italic;
  color: #8e8e93;
  top: 16px;
  right: 15px;
  position: absolute;
}

.contacts-chat__item span i {
  font-size: 9px;
}

.contacts-chat__item:last-of-type {
  margin-bottom: 0;
}

.contacts-chat__item:nth-of-type(3) {
  padding: 9px 55px 11px 19px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.contacts-chat__item:nth-of-type(even) {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  background: #30b53d;
  padding: 9px 64px 9px 14px;
}

.contacts-chat__item:nth-of-type(even) p {
  max-width: 195px;
}

.contacts-chat__item:nth-of-type(even):after {
  left: auto;
  right: -5px;
  content: url(../img/contacts-chat-message2.png);
}

.contacts-chat__item:nth-of-type(even) span {
  color: #ebeff5;
  top: 14px;
  right: 5px;
}

.contacts-chat__item:nth-of-type(4) {
  padding: 9px 57px 13px 14px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.location {
  padding: 200px 0;
}

.location .top-text p {
  max-width: 100%;
}

.location-items {
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.location-item {
  margin-left: 12px;
  margin-right: 12px;
  width: -webkit-calc(33.3% - 24px);
  width: calc(33.3% - 24px);
  text-align: center;
}

.location-item__img {
  height: 304px;
  display: block;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
}

.location-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-item span {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #07132e;
}

.location-item p {
  font-size: 14px;
  line-height: 24px;
  color: #07132e;
}

.faq {
  position: relative;
  padding-top: 224px;
  z-index: 1;
}

.faq:after {
  content: url(../img/detail-bg.jpg);
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

.faq-decor1,
.faq-decor2 {
  position: absolute;
}

.faq-decor1 {
  left: 11.8%;
  top: -4%;
}

.faq-decor2 {
  top: -6%;
  right: 10.5%;
}

.faq .top-text {
  max-width: 100%;
  margin-bottom: 68px;
}

.faq .top-text p {
  max-width: 100%;
  margin-top: 4px;
}

.faq .faq-items {
  max-width: 818px;
  margin: 0 auto;
  padding-right: 10px;
}

.faq .faq-item {
  margin-bottom: 17px;
}

.faq-chat {
  padding-top: 62px;
}

.faq-block {
  margin-top: 56px;
  margin-bottom: 56px;
  margin-left: -11px;
}

.news-main {
  position: relative;
  padding-top: 224px;
  padding-bottom: 200px;
  z-index: 1;
}

.news-main:after {
  content: url(../img/detail-bg.jpg);
  position: absolute;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

.news-main .top-text {
  padding-left: 26px;
  margin-bottom: 68px;
}

.news-main .top-text p {
  margin-top: 4px;
}

.news-main__items {
  max-width: 808px;
  margin: 0 auto;
}

.news-main__item {
  margin-bottom: 144px;
}

.news-main__item:last-of-type {
  margin-bottom: 0;
}

.news-main__item-img {
  width: 100%;
  height: 352px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  margin-bottom: 40px;
}

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

.news-main__item-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 40px;
  display: block;
  margin-bottom: 24px;
  color: #07132e;
}

.news-main__item p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  color: #07132e;
}

.news-main__item-date {
  display: block;
  color: #8994a3;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 16px;
}

.news-main__item-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-main__item-share a {
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-main__item-share a i:before {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.news-main__item-share a i.icon-twitter,
.news-main__item-share a i.icon-mail {
  font-size: 13px;
}

.news-main__item-share a:hover i:before {
  color: #0050ff;
}

.subscribe {
  position: relative;
  background: #f6f8fb;
  padding: 80px 0 88px;
}

.subscribe-decor {
  position: absolute;
  top: 0;
  left: 47.5%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  max-width: initial;
}

.subscribe-content {
  text-align: center;
  max-width: 522px;
  margin: 0 auto;
}

.subscribe-content h4 {
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
}

.subscribe-content span {
  font-size: 16px;
  line-height: 16px;
  margin-top: 8px;
  margin-bottom: 32px;
  display: block;
}

.box-field__subscribe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.box-field__subscribe .form-control {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  width: -webkit-calc(100% - 142px);
  width: calc(100% - 142px);
}

.box-field__subscribe .form-control::-webkit-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 16px;
}

.box-field__subscribe .form-control:-ms-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 16px;
}

.box-field__subscribe .form-control::-ms-input-placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 16px;
}

.box-field__subscribe .form-control::placeholder {
  color: #8994a3;
  opacity: 1;
  font-size: 16px;
}

.box-field__subscribe .form-control:-ms-input-placeholder {
  color: #8994a3;
  font-size: 16px;
}

.box-field__subscribe .form-control::-ms-input-placeholder {
  color: #8994a3;
  font-size: 16px;
}

.box-field__subscribe .btn {
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  width: 142px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.box-field__subscribe label.error {
  position: absolute;
  left: 0;
  bottom: -20px;
  margin: 0;
}

.links-page li {
  margin-bottom: 15px;
}

.box-field__password-eye {
  cursor: pointer;
}

.jq-selectbox__dropdown {
  -webkit-box-shadow: 0px 5px 12px rgba(65, 84, 112, 0.2);
  box-shadow: 0px 5px 12px rgba(65, 84, 112, 0.2);
}

@media screen and (max-width: 1600px) {
  .refferal-program-decor1 {
    left: -4.6%;
  }
}

@media screen and (max-width: 1200px) {
  .wrapper {
    padding-left: 44px;
    padding-right: 44px;
  }
  .scroll-off {
    overflow: hidden;
  }
  .scroll-off .content:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(34, 34, 34, 0.15);
    z-index: 10;
  }
  .main-block__cookies {
    display: none;
  }
  .advantages-items {
    max-width: 598px;
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advantages-item {
    max-width: 100%;
    width: -webkit-calc(33.3% - 30px);
    width: calc(33.3% - 30px);
    margin-bottom: 50px;
  }
  .investment {
    padding-top: 149px;
  }
  .popular-decor {
    display: block;
  }
  .popular-items {
    max-width: 640px;
    margin: 0 auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .popular-item:nth-of-type(3) {
    margin-left: 76px;
  }
  .popular-item:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }
  .how-item {
    padding: 36px 32px 64px;
  }
  .how-item__num {
    margin-bottom: 2px;
  }
  .how-item p br {
    display: none;
  }
  .affiliate {
    margin-top: 201px;
  }
  .affiliate .wrapper {
    padding-top: 179px;
    padding-bottom: 148px;
  }
  .affiliate-decor1 {
    left: 5%;
  }
  .affiliate-decor2 {
    left: 35.5%;
  }
  .affiliate-decor4 {
    left: -2.4%;
  }
  .affiliate-decor5 {
    left: 67.9%;
  }
  .affiliate-decor6 {
    right: 4.2%;
  }
  .talk-item__info p {
    max-width: 100%;
  }
  .talk-item__info {
    padding: 32px 15px;
  }
  .customers-item__author-img {
    min-width: 56px;
  }
  .customers-item__author-place {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .customers-item__author-place img {
    margin-left: 9px;
    display: block;
  }
  .customers-item__author-place br {
    display: block;
  }
  .our-news .news-items {
    margin: 0 auto;
    max-width: 960px;
  }
  .achievements-item {
    padding: 15px 44px;
    min-height: 224px;
  }
  .achievements-item__img {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-right: 28px;
  }
  .achievements-item__img img {
    max-width: 80%;
  }
  .main-faq .faq-items,
  .faq-col {
    margin-left: 0;
    margin-right: 0;
  }
  .faq-col {
    width: 100%;
  }
  .faq-col:nth-of-type(2) {
    display: none;
  }
  .about-main__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-main__info {
    width: 100%;
  }
  .about-main__blocks {
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 56px;
  }
  .about-main__block {
    margin-left: 12px;
    margin-right: 12px;
    width: -webkit-calc(50% - 24px);
    width: calc(50% - 24px);
    margin-bottom: 0;
  }
  .about-main__info-presentation img {
    margin-right: 16px;
  }
  .detail-main {
    background-image: none;
  }
  .features-items {
    margin-left: 0;
    margin-right: 0;
  }
  .leadership-item {
    width: -webkit-calc(31.7% - 48px);
    width: calc(31.7% - 48px);
  }
  .performance-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .performance-info {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 64px;
    position: relative;
  }
  .performance-info .top-text {
    margin-bottom: 0;
    max-width: 392px;
    position: initial;
  }
  .performance-info .top-text img {
    display: block;
  }
  .performance-info img {
    display: none;
  }
  .performance-info .top-text .top-text-decor1 {
    top: 0px;
    left: 393px;
  }
  .performance-info .top-text .top-text-decor2 {
    bottom: -172px;
    right: -10px;
    top: auto;
  }
  .performance-items {
    width: 100%;
    max-width: 688px;
  }
  .plan-block__about .plan-block__item:nth-of-type(1) {
    margin-left: 236px;
  }
  .plan-block__about .plan-block__item:nth-of-type(2) {
    margin-left: 650px;
  }
  .plan-block__about .plan-block__item:nth-of-type(3) {
    margin-left: -190px;
  }
  .investment-about {
    padding-top: 200px;
  }
  .investment-about-img {
    width: 456px;
    height: 496px;
  }
  .investment-about-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .investment-about-info {
    width: -webkit-calc(100% - 512px);
    width: calc(100% - 512px);
  }
  .sign-block__inner {
    margin-top: 200px;
  }
  .investments-main-decor1:after,
  .investments-main-decor2:after {
    display: none;
  }
  .investments-main-decor3 {
    display: block;
  }
  .investments-main-decor1 {
    left: -289px;
    width: 180px;
  }
  .investments-main-decor2 {
    right: -185px;
  }
  .investments-plans {
    margin-top: -376px;
  }
  .investments-plan__card {
    width: 424px;
  }
  .investments-plan__card-content {
    padding: 61px 48px 96px;
  }
  .investments-plan__info {
    width: -webkit-calc(100% - 480px);
    width: calc(100% - 480px);
    padding-right: 0;
  }
  .investments-plan__info p {
    font-size: 14px;
    line-height: 24px;
  }
  .investments-plan__info ul {
    margin-top: 31px;
  }
  .investments-plan__card {
    margin-bottom: 143px;
  }
  .investments-plan__card:last-of-type {
    margin-bottom: 0;
  }
  .tap {
    padding-top: 56px;
  }
  .tap .top-text {
    margin-left: 0;
  }
  .tap-img {
    width: 424px;
  }
  .tap-info {
    width: -webkit-calc(100% - 479px);
    width: calc(100% - 479px);
    margin-top: 0px;
    padding-right: 0;
  }
  .tap-info li {
    line-height: 22px;
  }
  .tap-info li i {
    margin-top: -6px;
  }
  .investments-products__items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .investments-products__item {
    width: 232px;
    margin-bottom: 16px;
  }
  .investments-products {
    padding-top: 80px;
    margin-bottom: -15px;
  }
  .referral-main .top-text {
    padding-right: 0;
  }
  .referral-main-decor2 {
    right: 252px;
  }
  .referral-main-decor3 {
    width: 81px;
    top: 51px;
    right: 51px;
  }
  .referral-main-decor1 {
    width: 170px;
    top: 106px;
    left: -39px;
    height: 132px;
  }
  .referral-main-decor1 img {
    width: 100%;
    height: 100%;
  }
  .referral-main-decor3:after {
    right: -44px;
  }
  .referral-cards__content {
    margin: 0 -14px;
  }
  .referral-card {
    padding: 49px 34px;
    padding-bottom: 80px;
  }
  .referral-card__dark {
    padding: 62px 34px;
    padding-bottom: 104px;
  }
  .sign-block__referral {
    margin-top: 144px;
  }
  .refferal-program__content {
    max-width: 775px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .refferal-program__info {
    width: -webkit-calc(100% - 321px);
    width: calc(100% - 321px);
    margin-top: 23px;
  }
  .refferal-program__main .top-text__descr {
    max-width: 100px;
  }
  .refferal-program__main {
    width: 265px;
  }
  .refferal-program {
    padding-bottom: 80px;
  }
  .refferal-program-decor1 {
    height: 103px;
    left: -2.6%;
  }
  .refferal-program-decor1 img {
    width: 100%;
    height: 100%;
  }
  .refferal-program-decor2 {
    left: 34%;
  }
  .refferal-program-decor3 {
    right: 3%;
  }
  .refferal-program-decor4 {
    left: 58.8%;
  }
  .refferal-faq-decor {
    right: 7.7%;
  }
  .contacts-main-decor1 {
    left: -3.5%;
    top: 1%;
  }
  .contacts-main-decor2 {
    right: -3.6%;
  }
  .contacts-main {
    padding-bottom: 104px;
  }
  .contacts-help {
    margin-top: 0;
  }
  .contacts-help__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts-help__info {
    width: 100%;
    margin-top: 0;
  }
  .contacts-help__info h2 {
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: normal;
  }
  .contacts-help__info-subtitle {
    text-align: center;
    margin-bottom: 41px;
  }
  .contacts-help__form {
    width: 100%;
  }
  .contacts-help__info-item {
    padding-left: 56px;
  }
  .contacts-help__info-item img {
    left: -32px;
    top: 52%;
  }
  .contacts-help__form {
    margin-top: 80px;
  }
  .contacts-help__form .form-subtitle {
    margin-bottom: 23px;
  }
  .contacts-help__form h4 {
    font-size: 40px;
    line-height: 40px;
  }
  .checkmark {
    top: 45%;
  }
  .contacts-chat {
    padding-top: 196px;
  }
  .contacts-chat__block-decor {
    left: 40%;
  }
  .faq-decor1 {
    left: 1.5%;
  }
  .faq-decor2 {
    right: -0.5%;
  }
  .faq .faq-items {
    max-width: 775px;
    margin: 0 auto;
    padding-right: 0;
  }
  .contacts-chat {
    padding-top: 62px;
  }
  .contacts-chat .contacts-chat__block-decor {
    left: 55%;
  }
  .news-main__items {
    max-width: 776px;
  }
}

@media screen and (max-width: 1025px) {
  .our-news .news-items {
    margin: 0 -12px;
    max-width: 960px;
  }
  .subscribe-decor {
    display: none;
  }
  .subscribe {
    z-index: 1;
    position: relative;
  }
  .subscribe:after {
    content: url(../img/subscribe-decor2.png);
    position: absolute;
    left: 51%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: normal;
  }
  .wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .main-block__info h1 {
    margin: 0 auto;
    margin-bottom: 24px;
    max-width: 90%;
    font-size: 40px;
    line-height: 40px;
  }
  .main-block img {
    width: 94%;
  }
  .main-block__info {
    margin-bottom: 155px;
  }
  .advantages-item {
    margin-bottom: 47px;
  }
  .investment {
    padding-top: 153px;
  }
  .investment h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .top-text-decor1 {
    left: -68px;
  }
  .top-text-decor2 {
    right: -68px;
  }
  .investment-card {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }
  .popular-decor {
    bottom: -6px;
    left: 50%;
    max-width: initial;
  }
  .how-items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .how-item {
    margin-bottom: 24px;
    width: -webkit-calc(50% - 24px);
    width: calc(50% - 24px);
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  .how-item span {
    text-transform: capitalize;
    margin-bottom: 7px;
  }
  .affiliate {
    margin-top: 173px;
  }
  .affiliate-decor1 {
    left: -7%;
  }
  .affiliate-decor2 {
    left: 31%;
  }
  .affiliate-decor3 {
    right: 5.5%;
  }
  .affiliate-decor4 {
    left: -11.4%;
  }
  .affiliate-decor5 {
    left: 73.9%;
  }
  .affiliate-decor6 {
    right: -2%;
  }
  .talk {
    padding-top: 198px;
  }
  .talk h3 {
    max-width: 485px;
    margin: 0 auto;
  }
  .talk-items,
  .talk-item {
    margin-left: 0;
    margin-right: 0;
  }
  .talk-item {
    width: 100%;
    margin-bottom: 24px;
  }
  .talk-item__info {
    max-width: 296px;
    margin: 0 auto;
  }
  .plan-block {
    margin-top: 175px;
  }
  .customers h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .customers-items,
  .customers-item {
    margin-left: 0;
    margin-right: 0;
  }
  .customers-item {
    width: 100%;
    margin-bottom: 24px;
    padding: 57px 48px;
  }
  .customers .top-text {
    margin-bottom: 70px;
  }
  .customers-item__author-place img {
    margin-left: 10px;
    margin-right: 0;
  }
  .customers-item__date {
    margin-top: 23px;
  }
  .sign-block {
    margin-top: 176px;
  }
  .our-news .news-items,
  .news-item {
    margin-left: 0;
    margin-right: 0;
  }
  .news-item {
    width: 100%;
    margin-bottom: 19px;
  }
  .news-item__img {
    height: 232px;
  }
  .our-news .btn {
    margin-top: 37px;
  }
  .achievements-item {
    min-height: initial;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 31px 45px;
  }
  .achievements-items {
    margin-left: 0;
    margin-right: 0;
  }
  .main-faq {
    padding-top: 191px;
    padding-bottom: 55px;
  }
  .about-main__info h2,
  .leadership h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .features {
    padding-bottom: 120px;
  }
  .features h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .features-items {
    margin-left: 0;
    margin-right: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 56px;
  }
  .features-item {
    margin-left: auto;
    margin-right: auto;
    max-width: 312px;
    width: 100%;
    margin-bottom: 56px;
  }
  .features-item:last-of-type {
    margin-bottom: 0;
  }
  .leadership-items {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 12px;
  }
  .leadership-item {
    width: 264px;
    display: inline-block;
    margin-left: 12px;
    margin-right: 7px;
  }
  .performance-info {
    margin-bottom: 62px;
  }
  .performance-info .top-text img {
    z-index: -1;
  }
  .performance-info .top-text .top-text-decor2 {
    display: none;
  }
  .plan-block {
    margin-top: 200px;
  }
  .plan-block__about .plan-block__item:nth-of-type(1) {
    margin-left: 492px;
  }
  .plan-block__about .plan-block__item:nth-of-type(2) {
    margin-left: 908px;
  }
  .plan-block__about .plan-block__item:nth-of-type(3) {
    margin-left: 68px;
  }
  .investment-about-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .investment-about-img {
    width: 100%;
    height: 496px;
    margin-bottom: 56px;
  }
  .investment-about {
    padding-top: 200px;
  }
  .investment-about-info {
    width: 100%;
  }
  .sign-block__inner {
    margin-top: 200px;
  }
  .investments-main-decor1 {
    left: -162px;
  }
  .investments-main-decor2 {
    right: -129px;
  }
  .investments-main-decor3 {
    right: 32px;
  }
  .investments-plan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 216px;
  }
  .investments-plan:last-of-type {
    margin-bottom: 0;
  }
  .investments-plan__card {
    width: 100%;
  }
  .investments-plan__card-content {
    padding: 61px 196px 96px;
  }
  .investments-plan__info {
    width: 100%;
    margin-top: 39px;
  }
  .investments-plan__card {
    margin-bottom: 0px;
  }
  .tap {
    padding-top: 200px;
  }
  .tap-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tap-img {
    width: 100%;
  }
  .tap .top-text {
    margin-bottom: 56px;
  }
  .tap-info {
    width: 100%;
    margin-top: 45px;
  }
  .tap-info li {
    margin-bottom: 33px;
  }
  .investments-products__item {
    width: 229px;
  }
  .investments-products {
    margin-bottom: -17px;
  }
  .referral-main-decor1 {
    width: 138.12px;
    height: 107.25px;
    left: -58px;
  }
  .referral-main-decor2 {
    width: 33.31px;
    height: 51.19px;
    right: 168px;
  }
  .referral-main-decor3 {
    width: 65.81px;
    height: 53.62px;
    top: 63px;
    right: 5px;
  }
  .referral-main-decor3:after {
    opacity: 0.5;
    right: -53px;
    bottom: -43px;
  }
  .referral-cards {
    margin-top: -345px;
  }
  .referral-card {
    padding: 49px 17px;
    padding-bottom: 64px;
  }
  .referral-card__dark {
    padding: 62px 17px;
    padding-bottom: 89px;
  }
  .sign-block__referral {
    margin-top: 144px;
  }
  .sign-block__referral .sign-block__content {
    padding: 52px 24px 52px;
    overflow: hidden;
  }
  .sign-block__referral .sign-block__content .top-text {
    max-width: 380px;
  }
  .refferal-program__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .refferal-program__main {
    width: 100%;
  }
  .refferal-program__info {
    width: 100%;
  }
  .refferal-program__content {
    max-width: 639px;
  }
  .refferal-program__main .top-text__descr {
    max-width: 100%;
  }
  .refferal-program {
    padding: 128px 0 119px;
  }
  .refferal-program-decor3 {
    display: none;
  }
  .refferal-program-decor2 {
    left: 41.5%;
    top: 6%;
  }
  .refferal-program-decor1 {
    left: auto;
    right: -10%;
    top: 4%;
  }
  .refferal-program-decor4 {
    left: 61.8%;
    bottom: 4%;
  }
  .refferal-faq {
    padding-top: 216px;
    padding-bottom: 216px;
  }
  .refferal-faq .top-text {
    margin-left: 0;
    margin-bottom: 49px;
  }
  .refferal-faq .faq-items {
    margin-top: 0;
  }
  .refferal-faq-decor {
    right: -0.3%;
    top: 9%;
  }
  .contacts-main-decor1 {
    left: -21.5%;
  }
  .contacts-main-decor2 {
    right: -21.6%;
  }
  .contacts-help__info-item {
    padding-left: 82px;
  }
  .contacts-help__info-item img {
    left: -4px;
    top: 50%;
  }
  .contacts-chat {
    padding-top: 141px;
  }
  .contacts-chat__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -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;
    padding: 67px 50px 91px 50px;
  }
  .contacts-chat__main {
    text-align: center;
    margin-top: 64px;
  }
  .contacts-chat__main img {
    right: -26px;
  }
  .contacts-chat__block-decor {
    display: none;
  }
  .contacts-chat__block-decor2,
  .contacts-chat__block-decor3 {
    display: block;
  }
  .contacts-chat__block-decor2 {
    left: 0;
    bottom: 0;
  }
  .contacts-chat__block-decor3 {
    right: 0;
    top: 0;
  }
  .location {
    padding: 143px 0;
  }
  .location h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .location-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .location-item {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-bottom: 56px;
  }
  .location-item:last-of-type {
    margin-bottom: 0;
  }
  .faq-decor1 {
    left: -2.5%;
  }
  .faq-decor2 {
    right: -2.5%;
  }
  .faq .top-text {
    margin-bottom: 85px;
  }
  .contacts-chat {
    padding-top: 126px;
  }
  .news-main .top-text {
    padding-left: 0;
  }
  .news-main {
    padding-bottom: 145px;
  }
  .our-news h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .our-news .news-item {
    margin-bottom: 23px;
  }
  .our-news .btn {
    margin-top: 32px;
  }
}

@media screen and (max-width: 767px) {
  .how-items,
  .how-item {
    margin-left: 0;
    margin-right: 0;
  }
  .how-item {
    width: 100%;
    margin-bottom: 24px;
  }
  h1,
  .title1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .main-block {
    padding-top: 113px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .main-block img {
    width: 100%;
    max-width: 321px;
  }
  .main-block__info {
    margin-bottom: 103px;
  }
  .advantages-item {
    width: 50%;
  }
  .advantages {
    padding-top: 51px;
  }
  h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: normal;
  }
  .top-text p {
    font-size: 14px;
    line-height: 24px;
  }
  .top-text {
    margin-bottom: 65px;
  }
  .investment {
    padding-top: 102px;
  }
  .investment h2 {
    letter-spacing: normal;
    font-size: 40px;
    line-height: 40px;
  }
  .top-text-decor1,
  .top-text-decor2 {
    display: none;
  }
  .investment-content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .investment-card {
    width: 100%;
  }
  .investment-card:first-of-type {
    margin-top: 0;
    margin-bottom: 25px;
  }
  .popular {
    padding-top: 144px;
  }
  h3 {
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
  }
  .popular .top-text {
    margin-bottom: 47px;
  }
  .popular-item:nth-of-type(3),
  .popular-item:last-of-type,
  .popular-item {
    margin: 0 12px;
    margin-bottom: 24.6px;
  }
  .popular-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .popular-decor {
    bottom: 93px;
    left: 66%;
    max-width: initial;
  }
  .how {
    padding-top: 119px;
  }
  .affiliate {
    margin-top: 161px;
  }
  .affiliate .wrapper {
    padding-top: 145px;
    padding-bottom: 161px;
    overflow: hidden;
  }
  .affiliate .top-text {
    z-index: 1;
  }
  .affiliate h2 {
    font-size: 72px;
    line-height: 72px;
    margin-top: 18px;
    letter-spacing: -1.6px;
  }
  .affiliate .top-text p br {
    display: none;
  }
  .affiliate-content__link {
    font-size: 16px;
    line-height: 16px;
    margin-top: 22px;
  }
  .affiliate-decor1 {
    width: 88px;
    left: 12%;
    top: -1%;
    height: 72px;
  }
  .affiliate-decor2,
  .affiliate-decor3,
  .affiliate-decor5 {
    display: none;
  }
  .affiliate-decor4 {
    width: 179px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -13px;
    height: 96px;
  }
  .affiliate-decor6 {
    width: 38px;
    top: 6.7%;
    right: 12.2%;
  }
  .talk {
    padding-top: 144px;
  }
  .talk .top-text__descr {
    margin: 0 auto;
    margin-bottom: 8px;
    max-width: 260px;
  }
  .talk .top-text {
    margin-bottom: 56px;
  }
  .plan-block {
    margin-top: 144px;
  }
  .plan-block span {
    font-size: 72px;
    line-height: 72px;
  }
  .plan-block__items .plan-block__item {
    margin-bottom: 23px;
  }
  .plan-block__items .plan-block__item:first-of-type {
    margin-left: 22.1%;
  }
  .plan-block__items .plan-block__item:nth-of-type(2) {
    margin-left: 9.3%;
  }
  .plan-block__items .plan-block__item:nth-of-type(3) {
    margin-left: -43.5%;
  }
  .customers {
    padding-top: 122px;
  }
  .customers .top-text {
    margin-bottom: 47px;
  }
  .customers-item {
    padding: 57px 40px;
  }
  .customers-item__author-place br {
    display: none;
  }
  .customers-item__author-place {
    position: relative;
  }
  .customers-item__author-place img {
    position: absolute;
    right: -26px;
    top: 2px;
  }
  .sign-block__content .top-text h3 {
    font-size: 40px;
    line-height: 40px;
    text-transform: initial;
  }
  .sign-block__content .top-text p {
    font-size: 16px;
    line-height: 24px;
  }
  .sign-block-decor2 {
    max-width: 52px;
  }
  .sign-block-decor1 {
    max-width: 44px;
    left: 2px;
  }
  .sign-block__content {
    overflow: hidden;
  }
  .our-news h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .news-item {
    margin-bottom: 23px;
  }
  .our-news .btn {
    margin-top: 32px;
  }
  .achievements {
    padding-top: 145px;
  }
  .achievements h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .achievements .top-text {
    margin-bottom: 98px;
  }
  .achievements-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 39px 32px;
  }
  .achievements-item__img {
    width: 100%;
    margin-right: 0;
    height: auto;
    margin-bottom: 8px;
  }
  .achievements-item__img img {
    max-width: 100%;
    min-width: 214px;
  }
  .main-faq {
    padding-top: 128px;
    padding-bottom: 46px;
  }
  .main-faq h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .main-faq .top-text p {
    max-width: 100%;
    margin-top: 9px;
  }
  .main-faq .top-text {
    max-width: 100%;
    margin-bottom: 49px;
  }
  .faq-col:nth-of-type(2) {
    display: block;
  }
  .main-faq__block p {
    font-size: 14px;
    line-height: 24px;
  }
  .login-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .login-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .login {
    padding: 32px 24px 24px;
  }
  .login-form {
    padding: 30px 15px;
  }
  .about-main__info h2,
  .leadership h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: normal;
  }
  .about-main {
    padding-top: 113px;
    padding-bottom: 113px;
  }
  .about-main .top-text p {
    font-size: 16px;
    line-height: 24px;
  }
  .about-main__info-presentation a {
    margin-bottom: 2px;
  }
  .about-main__blocks {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-main__block {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 31px 39px;
    margin-bottom: 24px;
  }
  .about-main__block:last-of-type {
    margin-bottom: 0;
  }
  .about-main__block p {
    margin-bottom: 15px;
  }
  .features .top-text {
    text-align: left;
  }
  .features h2 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: normal;
    text-transform: capitalize;
  }
  .features {
    padding-top: 79px;
    padding-bottom: 60px;
  }
  .features .top-text p {
    font-size: 16px;
    line-height: 24px;
  }
  .features-item__img {
    height: 270px;
    margin-bottom: -8px;
  }
  .features-item span {
    margin-bottom: 5px;
  }
  .features-item {
    margin-bottom: 76px;
  }
  .leadership .top-text p br {
    display: none;
  }
  .leadership .top-text {
    margin-bottom: 49px;
  }
  .performance {
    padding-top: 73px;
  }
  .performance-info .top-text h3 {
    text-transform: initial;
  }
  .performance-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .performance-col {
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .performance-col:last-of-type {
    margin-bottom: 0;
  }
  .performance-info {
    margin-bottom: 56px;
  }
  .performance-info .top-text .top-text-decor1 {
    top: -50px;
    left: -28px;
  }
  .performance-info .top-text .top-text-decor2 {
    display: block;
    bottom: -83px;
    right: -79px;
  }
  .plan-block__about .plan-block__item:nth-of-type(1) {
    margin-left: 23.4%;
  }
  .plan-block__about .plan-block__item:nth-of-type(2) {
    margin-left: 18.9%;
  }
  .plan-block__about .plan-block__item:nth-of-type(3) {
    margin-left: 7.2%;
  }
  .investment-about {
    padding-top: 120px;
  }
  .investment-about-img {
    height: 344px;
  }
  .investment-about-info__title {
    margin-bottom: 14px;
  }
  .investment-about-info__author {
    margin-top: 17px;
  }
  .investments-main {
    padding: 161px 0 436px;
  }
  .investments-main-decor1 {
    width: 110px;
    left: -65px;
    top: -65px;
  }
  .investments-main-decor3 {
    display: none;
  }
  .investments-main-decor2 {
    width: 70px;
    right: -57px;
    top: 31px;
  }
  .investments-plan__card-top {
    padding-top: 180px;
  }
  .investments-plan__card-content {
    padding: 61px 32px 38px;
  }
  .investments-plan .range-slider .irs {
    margin-top: 3px;
    position: absolute;
    width: 100%;
  }
  .range-slider {
    position: relative;
  }
  .investments-plan__card-content ul {
    margin-top: 69px;
  }
  .investments-plan__title {
    font-size: 24px;
    line-height: 24px;
  }
  .investments-plan__subtitle,
  .investments-plan__info ul li {
    font-size: 14px;
    line-height: 16px;
  }
  .investments-plan__info ul li {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .investments-plan__info ul li i {
    margin-top: 0;
  }
  .investments-plan__info ul {
    margin-top: 38px;
  }
  .investments-plan {
    margin-bottom: 204px;
  }
  .tap {
    padding-top: 144px;
  }
  .tap .top-text {
    margin-bottom: 48px;
  }
  .tap-info li {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .tap-info li i {
    margin-top: 0;
  }
  .tap-info {
    margin-top: 56px;
  }
  .investments-products h5 {
    font-size: 24px;
    line-height: 24px;
    text-align: left;
  }
  .investments-products {
    padding-top: 145px;
  }
  .investments-products__items {
    margin-top: 24px;
  }
  .investments-products__item {
    width: 100%;
    display: block;
    text-align: left;
    height: auto;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
    margin-bottom: 8px;
  }
  .investments-products {
    margin-bottom: -7px;
  }
  .range-slider-val {
    margin-right: 0;
    width: 130px;
    padding: 0;
    opacity: 1;
  }
  .referral-main {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .referral-main-decor1 {
    width: 78px;
    height: 60px;
    top: -58px;
    left: -23px;
  }
  .referral-main-decor1:after {
    -webkit-background-size: 130px 130px;
    background-size: 130px;
    width: 130px;
    height: 130px;
    right: -32px;
    top: -42px;
    opacity: 0.6;
  }
  .referral-main-decor2 {
    right: 44px;
    top: -59px;
  }
  .referral-main-decor3 {
    width: 39px;
    height: 32px;
    top: 177px;
    right: 43px;
  }
  .referral-main-decor3:after {
    opacity: 0.3;
    right: -76px;
    bottom: -59px;
  }
  .referral-cards__content {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .referral-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .referral-card:last-of-type {
    margin-bottom: 0;
  }
  .referral-cards {
    margin-top: -137px;
  }
  .referral-card ul {
    padding: 0;
  }
  .referral-card {
    padding: 49px 47px;
  }
  .referral-card {
    padding: 49px 47px 62px;
  }
  .referral-card__dark {
    padding: 63px 47px 64px;
  }
  .sign-block__referral .sign-block__content {
    padding: 78px 24px 75px;
  }
  .sign-block__referral .sign-block__content .sign-block-decor1 {
    display: none;
  }
  .refferal-program {
    margin-top: 127px;
    padding: 120px 0 105px;
  }
  .refferal-program-decor1 {
    width: 135px;
    height: 128px;
    right: -14%;
    top: 2%;
  }
  .refferal-program-decor2 {
    left: 9%;
    top: -1.5%;
  }
  .refferal-program-decor4 {
    left: 74.8%;
    bottom: -1.5%;
  }
  .refferal-faq {
    padding-top: 144px;
    padding-bottom: 55px;
  }
  .refferal-faq h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .refferal-faq .top-text p {
    font-size: 16px;
    line-height: 16px;
  }
  .refferal-faq .top-text {
    margin-bottom: 57px;
  }
  .refferal-faq-decor {
    display: none;
  }
  .refferal-faq .main-faq__block {
    margin-top: 55px;
  }
  .refferal-faq .main-faq__block p {
    font-size: 16px;
    line-height: 16px;
  }
  .contacts-chat__block-decor2,
  .contacts-chat__block-decor3 {
    display: none;
  }
  .contacts-main .top-text p {
    font-size: 14px;
    line-height: 24px;
  }
  .contacts-main-decor1 {
    left: -25.5%;
    top: -51%;
  }
  .contacts-main-decor2 {
    right: -16%;
    width: 150px;
    top: 94%;
  }
  .contacts-help__info h2 {
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
  }
  .contacts-help__info-subtitle {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 54px;
  }
  .contacts-help__info-subtitle br {
    display: none;
  }
  .contacts-help__info-item img {
    left: auto;
    top: auto;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-bottom: 16px;
    margin-left: 8px;
  }
  .contacts-help__info-item {
    padding: 32px;
  }
  .contacts-help__info-item span {
    margin-bottom: 13px;
  }
  .contacts-help__form {
    margin-top: 147px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .checkbox-box {
    margin-top: 27px;
  }
  .checkmark {
    top: 7px;
  }
  .contacts-help__form .btn {
    margin-top: 24px;
  }
  .contacts-chat {
    padding-top: 147px;
  }
  .contacts-chat__block {
    padding: 54px 45px 77px 45px;
    overflow: hidden;
  }
  .contacts-chat__main-title {
    margin-bottom: 15px;
  }
  .location h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: normal;
    margin-top: 10px;
  }
  .location .top-text {
    margin-bottom: 57px;
  }
  .contacts-chat__main .btn {
    white-space: nowrap;
  }
  .faq {
    padding-top: 161px;
  }
  .faq-decor1,
  .faq-decor2 {
    display: none;
  }
  .faq .top-text p {
    font-size: 16px;
    line-height: 16px;
    margin-top: 7px;
  }
  .faq .top-text {
    margin-bottom: 57px;
  }
  .contacts-chat {
    padding-top: 130px;
  }
  .faq-block {
    margin: 56px auto;
    max-width: 355px;
    padding: 0 15px;
  }
  .faq-block p {
    font-size: 16px;
    line-height: 16px;
  }
  .news-main {
    padding-top: 160px;
  }
  .news-main .top-text p {
    font-size: 16px;
    line-height: 16px;
    margin-top: 7px;
  }
  .news-main .top-text {
    margin-bottom: 57px;
  }
  .news-main__item {
    margin-bottom: 105px;
  }
  .news-main__item:last-of-type {
    margin-bottom: 0;
  }
  .news-main {
    padding-bottom: 104px;
  }
  .subscribe-content span {
    margin-top: 7px;
    margin-bottom: 24px;
  }
  .box-field__subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .box-field__subscribe .form-control {
    width: 100%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  .box-field__subscribe .btn {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-top: 16px;
  }
  .subscribe {
    padding-bottom: 16px;
    overflow: hidden;
  }
  .box-field__subscribe label.error {
    position: relative;
    bottom: auto;
    margin-top: 4px;
    width: 100%;
    text-align: left;
  }
  .box-field__subscribe .form-control {
    margin-bottom: 0;
  }
  .affiliate .top-text p {
    font-size: 16px;
    line-height: 24px;
  }
  .range-slider .irs--round .irs-line {
    top: 33px;
  }
}

@media screen and (max-width: 480px) {
  .main-block {
    background-image: url(../img/main-bg-mob.jpg);
  }
  .advantages-item {
    width: 100%;
    max-width: 227px;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .advantages-item__icon {
    margin-bottom: 0;
    min-width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 16px;
  }
  .talk-item {
    margin-bottom: 21px;
  }
  .customers-item {
    margin-bottom: 12px;
  }
  .news-item__img {
    height: 152px;
  }
  .investment-info__title {
    margin-bottom: 16px;
  }
  .investment-info__author {
    margin-top: 16px;
  }
  .investment-info__author-name {
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
  }
  .sign-block__inner {
    margin-top: 142px;
  }
  .sign-block__inner .main-faq__block {
    margin-bottom: 47px;
    margin-top: 56px;
    padding: 0 16px;
  }
  .subscribe:after {
    display: none;
  }
  .subscribe {
    background-image: url(../img/subscribe-bg-mob.jpg);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

@media screen and (max-width: 376px) {
  .main-block:after {
    content: url(../img/main-wave2.svg);
    bottom: -5px;
  }
}

@media screen and (max-width: 340px) {
  .main-block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-block__info h1 {
    max-width: 100%;
  }
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*# sourceMappingURL=style.css.map */
.form-errors {
  color: #f00;
  margin-bottom: 5px;
}
.hidden {
  display: none;
}
.pt-50 {
  padding-top: 50px;
}

#trustedsite-tm-image {
  display: none;
}

.bold {
  font-size: 24px;
  margin: 24px 0;
  display: block;
}