@charset "UTF-8";

body * ::selection{
  color:#fff!important;
  background: #de0714 !important;
}
body * ::-moz-selection {
  color:#fff!important;
  background: #E30613!important;
}

.jq-checkbox,
.jq-radio {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.jq-checkbox input,
.jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.jq-file {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.jq-file input {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 100px;
  line-height: 1em;
}

.jq-file__name {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.jq-selectbox,
.jq-select-multiple {
  position: relative;
  display: inline-block;
}

.jq-selectbox select,
.jq-select-multiple select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.jq-selectbox li,
.jq-select-multiple li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.jq-selectbox {
  z-index: 10;
}

.jq-selectbox__select {
  position: relative;
}

.jq-selectbox__select-text {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.jq-selectbox__dropdown {
  position: absolute;
}

.jq-selectbox__search input {
  -webkit-appearance: textfield;
}

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

.jq-selectbox__dropdown ul {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

.jq-select-multiple ul {
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.jq-number {
  display: inline-block;
}

.jq-number__field input {
  -moz-appearance: textfield;
  text-align: left;
  /* для Opera Presto */
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
  margin: 0;
  /* в каких-то браузерах присутствует отступ */
  -webkit-appearance: none;
}

.jq-checkbox,
.jq-radio {
  vertical-align: -4px;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #C3C3C3;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  cursor: pointer;
}

.jq-checkbox.focused,
.jq-radio.focused {
  border: 1px solid #08C;
}

.jq-checkbox.disabled,
.jq-radio.disabled {
  opacity: 0.55;
}

.jq-checkbox {
  border-radius: 3px;
}

.jq-checkbox.checked .jq-checkbox__div {
  width: 8px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
      transform: rotate(-50deg);
}

.jq-radio {
  border-radius: 50%;
}

.jq-radio.checked .jq-radio__div {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 3px;
  border-radius: 50%;
  background: #777;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
          box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
}

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

.jq-file input {
  cursor: pointer;
}

.jq-file__name {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: inset 1px 1px #F1F1F1;
          box-shadow: inset 1px 1px #F1F1F1;
  font: 14px/32px Arial, sans-serif;
  color: #333;
}

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  border-radius: 0 4px 4px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -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);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}

.jq-file:hover .jq-file__browse {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.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.focused .jq-file__name {
  border: 1px solid #5794BF;
}

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

.jq-number {
  position: relative;
  vertical-align: middle;
  padding: 0 36px 0 0;
}

.jq-number__field {
  width: 100px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  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);
}

.jq-number__field:hover {
  border-color: #B3B3B3;
}

.jq-number__field input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: none;
  background: none;
  font: 14px Arial, sans-serif;
  color: #333;
}

.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -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);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

.jq-number__spin.minus {
  top: auto;
  bottom: 0;
}

.jq-number__spin:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-number__spin:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

.jq-number__spin:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #999;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-bottom: none;
  border-left: 5px solid transparent;
}

.jq-number__spin.minus:hover:after {
  border-top-color: #000;
}

.jq-number__spin.plus:hover:after {
  border-bottom-color: #000;
}

.jq-number.focused .jq-number__field {
  border: 1px solid #5794BF;
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #AAA;
}

.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #AAA;
}

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

.jq-selectbox__select {
  height: 32px;
  padding: 0 45px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -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);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}

.jq-selectbox__select:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

.jq-selectbox__select:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

.jq-selectbox.focused .jq-selectbox__select {
  border: none;
}

.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%;
}

.jq-selectbox .placeholder {
  color: #888;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  border-left: 1px solid #CCC;
}

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

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000;
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #AAA;
}

.jq-selectbox__dropdown {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #CCC;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif;
}

.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;
  border: 1px solid #CCC;
  border-radius: 3px;
  outline: none;
  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;
}

.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 6px;
  color: #231F20;
}

.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF;
}

.jq-selectbox li:hover {
  background-color: #08C;
  color: #FFF;
}

.jq-selectbox li.disabled {
  color: #AAA;
}

.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;
  border-radius: 4px;
  background: #FFF;
  -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);
  font: 14px/18px Arial, sans-serif;
  color: #333;
  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 {
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  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 li.optgroup {
  font-weight: bold;
}

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

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

input[type=email].styler,
input[type=password].styler,
input[type=search].styler,
input[type=tel].styler,
input[type=text].styler,
input[type=url].styler,
textarea.styler {
  padding: 8px 9px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  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);
  font: 14px Arial, sans-serif;
  color: #333;
}

input[type=search].styler {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.styler {
  overflow: auto;
}

input[type=email].styler:hover,
input[type=password].styler:hover,
input[type=search].styler:hover,
input[type=tel].styler:hover,
input[type=text].styler:hover,
input[type=url].styler:hover,
textarea.styler:hover {
  border-color: #B3B3B3;
}

input[type=email].styler:hover:focus,
input[type=password].styler:hover:focus,
input[type=search].styler:hover:focus,
input[type=tel].styler:hover:focus,
input[type=text].styler:hover:focus,
input[type=url].styler:hover:focus,
textarea.styler:hover:focus {
  border-color: #CCC;
  border-top-color: #B3B3B3;
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

button.styler,
input[type=button].styler,
input[type=submit].styler,
input[type=reset].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  outline: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -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);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}

button.styler.styler::-moz-focus-inner,
input[type=button].styler.styler::-moz-focus-inner,
input[type=submit].styler.styler::-moz-focus-inner,
input[type=reset].styler.styler::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.styler:not([disabled]):hover,
input[type=button].styler:not([disabled]):hover,
input[type=submit].styler:not([disabled]):hover,
input[type=reset].styler:not([disabled]):hover,
input[type=reset].styler:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6);
}

button.styler:active,
input[type=button].styler:active,
input[type=submit].styler:active,
input[type=reset].styler:active {
  background: #F5F5F5;
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
          box-shadow: inset 1px 1px 3px #DDD;
}

button.styler[disabled],
input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
  border-color: #CCC;
  background: #F5F5F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #888;
}

/*
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/

/*
  Maintain ratio mixin.
  @param {List} [$ratio] Ratio the element needs to maintain. A 16:9 ratio would look like this:
  .element { @include maintain-ratio(16 9); }
*/

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

@font-face {
  font-family: "AvantGardeCTT";
  src: url('../fonts/AvantGardeCTT/AvantGardeCTT-bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "AvantGardeCTT";
  src: url('../fonts/AvantGardeCTT/AvantGardeCTT-bold2.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "CenturyGothic";
  src: url('../fonts/AvantGardeCTT/AvantGardeCTT.woff') format('woff');
  src: url("../fonts/CenturyGothic/CenturyGothic-bold3.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.btn {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 20px 35px;
  font-size: 18px;
  line-height: 21px;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.btn:focus,
.btn:hover {
  text-decoration: none;
}

.btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.btn.btn-primary {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-37.51%, #FF646E), color-stop(85.71%, #E20E1B));
  background: -o-linear-gradient(top, #FF646E -37.51%, #E20E1B 85.71%);
  background: linear-gradient(180deg, #FF646E -37.51%, #E20E1B 85.71%);
  border-color: transparent;
}

.btn.btn-primary:hover {
  color: #E30613;
  background: #fff;
  border-color: #E30613;
}

.btn.btn-secondary {
  color: #E30613;
  background-color: #fff;
  border-color: #E30613;
}

.btn.btn-secondary:hover {
  color: #fff;
  background-color: #E30613;
  border-color: #E30613;
}

.btn.btn-success {
  color: #fff;
  background-color: #6FCF97;
  border-color: #6FCF97;
}

.btn.btn-success:hover {
  color: #333;
  background-color: transparent;
  border-color: #6FCF97;
}

.btn.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn.btn-light:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn.btn-link {
  font-weight: 400;
  color: #E30613;
  background-color: transparent;
}

.btn.btn-link.text-muted {
  color: #A4A9BB;
}

.btn.btn-icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 2px;
  color: #333;
  font-size: 24px;
  border-radius: 50%;
}

.btn.btn-strong {
  font-weight: 700;
  text-transform: uppercase;
}

.btn.btn-block {
  display: block;
  width: 100%;
}

.btn.btn-sm {
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
}

.btn.btn-outline-primary {
  color: #E30613;
  background-color: transparent;
  background-image: none;
  border-color: #E30613;
}

.btn.btn-outline-primary:hover {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-37.51%, #FF646E), color-stop(85.71%, #E20E1B));
  background: -o-linear-gradient(top, #FF646E -37.51%, #E20E1B 85.71%);
  background: linear-gradient(180deg, #FF646E -37.51%, #E20E1B 85.71%);
  border-color: #E30613;
}

.btn.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.5);
}

.btn.btn-outline-secondary {
  color: #324C9A;
  background-color: transparent;
  background-image: none;
  border-color: #A4A9BB;
  text-decoration: none;
}

.btn.btn-outline-secondary:hover {
  color: #fff;
  background-color: #324C9A;
  border-color: #324C9A;
}

.btn.btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn.btn-outline-success {
  color: #6FCF97;
  background-color: transparent;
  background-image: none;
  border-color: #6FCF97;
}

.btn.btn-outline-success:hover {
  color: #fff;
  background-color: #6FCF97;
  border-color: #6FCF97;
}

.btn.btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn.btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn.btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn.btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn.btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn.btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.remodal {
  text-align: left;
  background: #EFEDED;
  border-radius: 10px;
  position: relative;
  padding: 16px 24px;
}

.remodal .remodal-close {
  right: 10px;
  top: 10px;
  left: auto;
  width: 18px;
  height: 18px;
}

.remodal .remodal-close:before {
  width: 100%;
  height: 100%;
  line-height: 18px;
}

.remodal .title {
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #E30613;
  margin-bottom: 20px;
}

.remodal .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.remodal .jq-selectbox {
  width: 100%;
}

.remodal .jq-selectbox__select {
  background: #fff;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 43px;
  line-height: 43px;
  border: none;
  font-size: 18px;
  border-radius: 10px;
  color: #000;
}

.remodal .jq-selectbox__trigger {
  border-left: none;
}

.remodal .jq-selectbox__trigger-arrow {
  border-top-color: #E30613;
  top: 19px;
}

.remodal-wrapper {
  padding: 0;
}

.form-w410 {
  max-width: 410px;
}

.form-bg {
  background: #f1f5f9;
  border-radius: 4px;
  padding: 32px;
}

.form-group {
  margin-bottom: 44px;
}

.form-group.mb-60 {
  margin-bottom: 60px;
}

.form-group p {
  font-size: 13px;
  line-height: 16px;
  color: #333333;
}

.form-group a {
  color: #324c9a;
}

.form-column {
  width: 740px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-column .form-check {
  margin-bottom: 27px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.form-dif {
  margin: 0 5px;
  -ms-flex-item-align: center;
      align-self: center;
}

.form-group .form-label {
  display: inline-block;
  margin-bottom: 6px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}

.form-group .form-title {
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 10px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.form-control::-webkit-input-placeholder {
  color: #000000;
}

.form-control::-moz-placeholder {
  color: #000000;
}

.form-control:-ms-input-placeholder {
  color: #000000;
}

.form-control::-ms-input-placeholder {
  color: #000000;
}

.form-control::placeholder {
  color: #000000;
}

.form-group-simbol {
  position: relative;
  max-width: 80px;
}

.form-group-simbol .form-control {
  padding-right: 22px;
}

.form-group-simbol .simbol {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 5px;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  /* or 123% */
  text-align: center;
  color: #333333;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
  border-bottom: 1px solid rgba(68, 121, 163, 0.12);
}

.form-control-plaintext::-webkit-input-placeholder {
  color: #a4a9bb;
}

.form-control-plaintext::-moz-placeholder {
  color: #a4a9bb;
}

.form-control-plaintext:-ms-input-placeholder {
  color: #a4a9bb;
}

.form-control-plaintext::-ms-input-placeholder {
  color: #a4a9bb;
}

.form-control-plaintext::placeholder {
  color: #a4a9bb;
}

.form-text {
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #a4a9bb;
  margin-top: 10px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 26px;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-label a {
  text-decoration: none;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-captcha .form-control {
  max-width: 150px;
  margin-right: 12px;
}

.form_radio {
  margin-bottom: 10px;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form_radio label:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: url(../img/radiobutton-inactive.png) 0 0 no-repeat;
}

/* Checked */

.form_radio input[type=radio]:checked + label:before {
  background: url(../img/radiobutton-active.png) 0 0 no-repeat;
}

/* Hover */

.form_radio label:hover:before {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

/* Disabled */

.form_radio input[type=radio]:disabled + label:before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.checkbox-other {
  display: block;
  margin: 0 0 10px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.checkbox-other input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.checkbox-other span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 18px;
}

.checkbox-other span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #EEEEEE;
  border-radius: 2px;
}

/* Checked */

.checkbox-other input[type=checkbox]:checked + span:before {
  background-color: #FD7400;
  background-image: url(../img/chekbox-active.svg);
  background-size: 11px 9px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Focus */

.focused span:before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Hover */

.checkbox-other span:hover:before {
  background-image: url(../img/chekbox-active.svg);
  background-size: 11px 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FD7400;
}

/* Active */

.checkbox-other span:active:before {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

/* Disabled */

.checkbox-other input[type=checkbox]:disabled + span {
  color: #666;
  cursor: default;
}

.checkbox-other input[type=checkbox]:disabled + span:before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
}

.text-warning {
  color: #F2994A;
}

.text-danger {
  color: #E30613;
}

.text-link {
  color: #324c9a;
}

.text-white {
  color: #fff;
}

.text-success {
  color: #6fcf97;
}

.text-muted {
  color: #a4a9bb;
}

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

.text-left {
  text-align: left;
}

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

.table {
  width: 100%;
  margin-bottom: 40px;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
  background-color: transparent;
  caption-side: bottom;
  border-collapse: collapse;
  white-space: nowrap;
}

.table a {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #324c9a;
}

.table.history a {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #324c9a;
}

.table.history p {
  margin: 0;
}

.table.history .btn {
  text-decoration: none;
}

.table > thead {
  vertical-align: bottom;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.table > tbody {
  vertical-align: inherit;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: transparent;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

.table > :not(caption) > * > * {
  padding: 19px 0.5rem 28px;
  border-bottom-width: 1px;
  font-weight: normal;
}

.alert {
  position: relative;
  padding: 20px 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
}

.alert-primary {
  color: #333;
  background-color: #F1F5F9;
  border-color: #F1F5F9;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

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

body {
  font-family: "AvantGardeCTT", sans-serif;
}

body.lock {
  overflow: hidden;
}

.wrp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.wrp p {
  font-size: 18px;
  line-height: 25px;
}

.container {
  max-width: 1388px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

a {
  color: #E30613;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

img {
  height: auto;
}

.d-none {
  display: none !important;
}

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

.d-block {
  display: block;
}

.d-desktop-none {
  display: none;
}

.d-mobile-none {
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.button-up {
  font-family: "AvantGardeCTT", sans-serif;
  display: none;
  position: fixed;
  right: 40px;
  bottom: 184px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #D9D9D9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 15;
}

.button-up:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icons-sprite.svg#button-up");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 160%;
  width: 100%;
  height: 100%;
}

.remodal.calc {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
}

.remodal.calc .remodal-close {
  top: -20px;
  right: -20px;
  color: #E30613;
}

.remodal.calc .remodal-close span {
  display: none;
}

.remodal.remodal-video {
  max-width: 1160px;
  padding: 35px;
  background: transparent;
  border: 0;
}

.form-check-input {
  margin-top: 6px;
  margin-left: -24px;
}

.form-check {
  padding-left: 24px;
}

.form-check-label {
  font-weight: normal;
  font-size: 9px;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: #000000;
}

.jq-checkbox {
  width: 11px;
  height: 11px;
  border: 1px solid #E30613 !important;
  border-radius: 2px;
  background: transparent;
  outline: none !important;
}

.jq-checkbox.checked .jq-checkbox__div {
  margin: 2px 0 0 1px;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive:before {
  display: block;
  content: "";
}

.embed-responsive.embed-responsive-21by9:before {
  padding-top: 42.857143%;
}

.embed-responsive.embed-responsive-16by9:before {
  padding-top: 56.25%;
}

.embed-responsive.embed-responsive-9by16:before {
  padding-top: 109%;
}

.embed-responsive.embed-responsive-4by3:before {
  padding-top: 75%;
}

.embed-responsive.embed-responsive-1by1:before {
  padding-top: 100%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.header {
  padding: 23px 0 26px;
  background-color: #EFEFEF;
}

.header__back {
  display: none;
}

.header__button {
  background-color: #EFEFEF;
  border: 1px solid #E30613;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 15;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 5px;
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__button:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #E30613;
}

.header__button:hover:before {
  background-color: #fff;
}

.header__button:hover:after {
  background-color: #fff;
}

.header__button:hover span {
  background-color: #fff;
}

.header__button:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #E30613;
  width: 17px;
  height: 1px;
}

.header__button:after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #E30613;
  width: 17px;
  height: 1px;
}

.header__button span {
  width: 100%;
  height: 1px;
  background-color: #E30613;
}

.header__phone {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E30613;
  display: block;
  text-align: right;
  margin-bottom: 14px;
}

.header .container {
  max-width: 1160px;
}

.nav {
  padding: 0;
}

.nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: #E30613;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  overflow: hidden;
  margin-bottom: 74px;
  position: relative;
  background-color: #EFEFEF;
}


.hero__decor {
  position: absolute;
  top: 112px;
  right: 0;
  background-image: url("../img/hero-decor.png");
  background-repeat: no-repeat;
  width: 135px;
  height: 50px;
  animation: translateX 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -5s);

  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.hero__decor2 {
  position: absolute;
  bottom: 15px;
  left: -100px;
  background-image: url("../img/hero-decor2.png");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  animation: translateY 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -5s);

  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.hero__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 39px;
  position: relative;
}

.hero__txt {
  max-width: 700px;
}

.hero__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #1B1B1B;
  margin: 0 0 10px;
}

.hero__title span {
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.hero__lable {
  background: -webkit-gradient(linear, left top, right top, color-stop(3.27%, #E20E1B), color-stop(49.92%, #FF646E), color-stop(97.66%, #E20E1B));
  background: -o-linear-gradient(left, #E20E1B 3.27%, #FF646E 49.92%, #E20E1B 97.66%);
  background: linear-gradient(90deg, #E20E1B 3.27%, #FF646E 49.92%, #E20E1B 97.66%);
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  max-width: 612px;
}

.hero__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero__list li {
  position: relative;
  font-weight: normal;
  font-size: 23px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #000000;
}

.hero__list li:before {
  content: "";
  display: inline-block;
  color: #000;
  border-radius: 50%;
  background-color: #000;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  vertical-align: middle;
  overflow: hidden;
}

.hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__row span {
  text-align: right;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  color: #000000;
}

.hero__row .btn {
  padding: 28px 25px;
  max-width: 325px;
}

.hero__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.hero__img img{
  animation: translateX 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -2s);

  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.hero__img.mobile {
  display: none;
}

.hero__video {
  width: 100%;
}

.hero__video img {
  width: 100%;
}

.hero__num {
  font-family: "AvantGardeCTT", sans-serif;
  background-color: #C2C2C2;
  padding: 45px 15px 48px;
  margin-top: 34px;
}

.hero__num.mobile {
  display: none;
}

.hero__num-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.hero__num-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33%;
          flex: 1 0 33.33%;
  max-width: 370px;
}

.hero__num-top {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero__num-middle {
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #E30613;
}

.hero .container {
  max-width: 1160px;
}

.footer {
  background-color: #4E5A65;
  padding: 88px 0 36px;
  margin: auto 0 0;
}

.footer .container {
  max-width: 1160px;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 112px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__body.mobile {
  display: none;
}

.footer__body img {
  max-width: 100%;
  height: none;
  display: block;
}

.footer__policy {
  margin-top: 24px;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  display: block;
  text-decoration: none;
}

.percent {
  margin-bottom: 81px;
  position: relative;
  overflow: hidden;
}

.percent__decor {
  position: absolute;
  top: 60px;
  right: 20px;
  background-image: url("../img/percent-decor.png");
  background-repeat: no-repeat;
  width: 69px;
  height: 200px;
  transition: all .3s ease;
}

/*.percent.animation .percent__decor {
  position: fixed;
}*/

.percent__header {
  margin-bottom: 72px;
  padding-left: 118px;
}

.percent__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.percent__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  grid-gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.percent__item {
  max-width: 250px;
}

.percent__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58px;
  height: 58px;
  background: -o-linear-gradient(143.95deg, #FF646E 12.66%, #E30613 64.29%);
  background: linear-gradient(306.05deg, #FF646E 12.66%, #E30613 64.29%);
  border-radius: 50%;
  overflow: hidden;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 35px;
}

.percent__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 25px;
}

.percent__anons {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000000;
}

.geografia {
  margin-bottom: 30px;
}

.geografia__header {
  margin-bottom: 60px;
}

.geografia__title {
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
}

.geografia__title:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #E30613;
  width: 100%;
  height: 3px;
}

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

.geografia__txt {
  width: 304px;
  margin: 36px auto 80px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
  letter-spacing: 0.05em;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.geografia__txt b {
  font-size: 18px;
}

.advantage {
  background-color: #EFEFEF;
  margin-bottom: 73px;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.advantage__header {
  margin-bottom: 81px;
  position: relative;
  padding-left: 118px;
}

.advantage__decor {
  position: absolute;
  top: 70px;
  right: 70px;
  background-image: url("../img/advantage-decor.png");
  background-repeat: no-repeat;
  width: 80px;
  height: 55px;
}


.advantage__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.advantage__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 40px;
}

.advantage__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 56px);
          flex: 1 0 calc(50% - 56px);
}

.advantage__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}

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

.advantage__item:last-of-type .advantage__name {
  border-bottom: 0;
}

.advantage__item span {
  color: #fff;
}

.advantage__num {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-right: 51px;
  padding-bottom: 23px;
}

.advantage__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid #000;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.advantage__link {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  color: #E30613;
  margin-left: 53px;
}

.opening {
  margin-bottom: 85px;
}

.opening__header {
  margin-bottom: 77px;
  padding-left: 118px;
}

.opening__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.opening__subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-top: 10px;
}

.opening__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 116px;
}

.opening__item:nth-of-type(-4n + 4) {
  margin-left: auto;
}

.opening__name {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
}

.mobile_name{display: none;}
.opening__figure {
  margin: 0;
  display: none;
}

.opening__figure-big {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 30px 0;
}

.store-decoration {
  overflow: hidden;
}

.store-decoration__header {
  margin-bottom: 81px;
  position: relative;
  padding-left: 118px;
}

.store-decoration__title {
  display: inline-block;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.store-decoration__slider {
  margin-bottom: 77px;
}

.store-decoration .one .swiper-slide {
  width: 548px;
}

.store-decoration .one .swiper-slide img{
  width: 100%;
}

.store-decoration .one .swiper-slide.swiper-slide-visible:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.store-decoration .one .swiper-slide.swiper-slide-visible:after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 50px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.store-decoration .two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.store-decoration .two:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.store-decoration .two .swiper-slide {
  width: 263px;
}

.store-decoration .swiper-button-next {
  right: 20px;
  z-index: 20;
  height: 68px;
  background-image: url("../img/store-decoration-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px 68px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin: 0;
}

.store-decoration .swiper-button-next:after {
  display: none;
}

.store-decoration .swiper-button-prev {
  left: 20px;
  z-index: 20;
  height: 68px;
  background-image: url("../img/store-decoration-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px 68px;
  -webkit-transform: rotate(180deg) translate(0, 50%);
      -ms-transform: rotate(180deg) translate(0, 50%);
          transform: rotate(180deg) translate(0, 50%);
  margin: 0;
}

.store-decoration .swiper-button-prev:after {
  display: none;
}

.uniform {
  margin: 30px 0;
}

.uniform.active .dropdown-block {
  display: block;
}

.uniform.active .uniform__arrow {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.uniform__header {
  margin-bottom: 81px;
  position: relative;
  padding-left: 118px;
}

.uniform__title {
  display: inline-block;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.uniform__body img {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: block;
  margin: 0 auto;
}

.uniform .swiper-container-uniform,
.uniform .swiper-container-uniform-thumb {
  overflow: hidden;
  position: relative;
}

.uniform .swiper-container-uniform-thumb {
  display: none;
}

.uniform .swiper-container-uniform-thumb .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.uniform .swiper-uniform-next img {
  margin-right: 0;
}

.parametrs {
  padding: 60px 0 35px;
  background-color: #EFEFEF;
}

.parametrs__header {
  margin-bottom: 85px;
  padding-left: 118px;
}

.parametrs__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: -0.3px;
  color: #E30613;
}

.parametrs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.parametrs__img {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);
  pointer-events: none;
}

.parametrs__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: 0;
}

.parametrs__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(40% - 20px);
          flex: 1 0 calc(40% - 20px);
  max-width: 548px;
  position: relative;
  z-index: 100;
}

.parametrs__name {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 17px;
}

.parametrs__list {
  margin: 0 0 19px 0;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
}

.parametrs__list li {
  position: relative;
  padding-left: 15px;
}

.parametrs__list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  overflow: hidden;
}

.investment {
  margin: 30px 0 80px;
  overflow: hidden;
}

.investment__header {
  margin-bottom: 79px;
}

.investment__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: -0.3px;
  color: #E30613;
}

.investment__txt {
  flex: 1 0 640px;
  max-width: 640px;
  position: relative;
  margin-right: 40px;
}

.investment__txt P {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 19px 0 0;
}

.investment__list {
  margin: 0 0 0 15px;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #000000;
}

.investment__list li {
  position: relative;
  padding-left: 15px;
}

.investment__list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  overflow: hidden;
}

.investment__item {
  min-width: 1140px;
  padding: 33px 20px 40px;
  margin: 0 -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: #000000;
}

.investment__item:first-of-type {
  color: #E30613;
  padding: 14px 20px;
}

.investment__item:nth-child(even) {
  background-color: #EFEDED;
}

.investment__item:nth-child(even):before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: calc(100vw - 40px);
  height: 100%;
  background-color: inherit;
  pointer-events: none;
  z-index: 0;
}

.investment__item hr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  border: 0;
  border-bottom: 3px solid #E30613;
  margin-top: 0;
  margin-bottom: 28px;
}

.investment__item-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.investment__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
}

.investment__price {
  font-weight: bold;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 115px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.investment .container {
  max-width: 1160px;
}

.learning-main {
  position: relative;
  padding: 85px 0;
  margin-bottom: 85px;
  overflow: hidden;
}

.learning-main__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin-bottom: 50px;
}

.learning-main__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(77, 77, 77, 0.6);
  width: 100%;
  height: 100%;
}

.learning-main__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.learning-main__img-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.learning-main__header {
  margin-bottom: 86px;
}

.learning-main__header.mobile {
  display: none;
}

.learning-main__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.learning-main__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.learning-main__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(33.33% - 40px);
          flex: 1 0 calc(33.33% - 40px);
  max-width: 324px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.learning-main__item.align-center {
  -ms-flex-item-align: center;
      align-self: center;
}

.learning-main__icon {
  background-image: url("../img/icons-sprite.svg#icon-training-red");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 36px;
  height: 36px;
  margin-bottom: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}

.learning-main__name {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.learning-main .btn {
  margin: 80px auto 20px;
  width: 100%;
  max-width: 329px;
}

.learning-main .container {
  max-width: 1160px;
}

.learning-page {
  overflow: hidden;
  margin-bottom: 110px;
}

.learning-page h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 21px;
}

.learning-page__body {
  margin-bottom: 61px;
}

.learning-page__body p {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #333333;
}

.learning-page__galllery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 38px;
  margin-bottom: 75px;
}

.learning-page__galllery img {
  border-radius: 10px;
}

.learning-page__dark {
  background-color: #E5E5E5;
  border-radius: 10px;
  padding: 27px 3px 27px 114px;
  line-height: 25px;
  margin-top: 27px;
  margin-bottom: 76px;
}

.learning-page__dark p {
  font-weight: bold;
  margin: 0;
  font-size: 14px;
}

.learning-page__dark ul {
  margin: 0;
}

.learning-page__list {
  margin: 27px 0;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 0.05em;
  /*text-transform: lowercase;*/
  color: #000000;
}

.learning-page__list--margin {
  margin-left: 114px;
}

.learning-page__list li {
  position: relative;
  padding-left: 15px;
}

.learning-page__list li:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  overflow: hidden;
}

.learning-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 86px;
}

.learning-page__row-name {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
}

.learning-page__row p {
  font-family: "AvantGardeCTT", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #333333;
  margin: 0;
}

.learning-page__row .btn {
  width: 329px;
  margin-top: 63px;
}

.learning-page__row P {
  font-family: "AvantGardeCTT", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: #333333;
}

.learning-page .container {
  max-width: 1160px;
}

.shedule {
  margin-bottom: 61px;
}

.shedule__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 21px;
}

.shedule__body {
  padding-left: 115px;
}

.shedule__list {
  margin: 0 0 42px;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #000000;
}

.shedule__list li {
  position: relative;
  padding-left: 15px;
}

.shedule__list li:before {
  display: none;
}

.reviews {
  margin-bottom: 68px;
  overflow: hidden;
}

.reviews__header {
  margin-bottom: 72px;
  padding-left: 118px;
}

.reviews__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: -0.3px;
  color: #E30613;
}

.reviews__body {
  position: relative;
}

.reviews__name {
  background: -o-linear-gradient(6.62deg, #E30613 4.96%, #FF646E 84.78%);
  background: linear-gradient(83.38deg, #E30613 4.96%, #FF646E 84.78%);
  border-radius: 20px;
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  padding: 29px 39px;
  margin: 0 0 28px;
}

.reviews__anons {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #000000;
  padding: 0 4px;
  height: 197px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.reviews__anons.show {
  height: auto;
  -webkit-line-clamp: none;
  display: block;
}

.reviews__anons ul {
  margin: 15px 0;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  color: #000000;
}

.reviews__anons ul li {
  position: relative;
  padding-left: 15px;
}

.reviews__anons ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  overflow: hidden;
}

.reviews__anons p {
  margin: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
}

.reviews__link {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  color: #000000;
}

.reviews__link.hide_rev_btn{
  display:none!important;
}
.reviews__footer {
  margin-top: 25px;
  max-width: 1246px;
}

.reviews__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 -11px 0 auto;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #D43749;
  text-decoration: none;
  position: relative;
}

.reviews__btn:after {
  content: "";
  position: absolute;
  top: 3px;
  right: -110px;
  background-image: url("../img/icons-sprite.svg#icon-arrow-next");
  background-repeat: no-repeat;
  width: 72px;
  height: 22px;
}

.reviews .swiper-container-reviews {
  overflow: hidden;
  position: relative;
  max-width: 1246px;
}

.articles {
  margin: 86px 0 34px;
}

.articles__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
  margin-bottom: 79px;
}

.articles__body {
  color: #000000;
  line-height: 25px;
}

.articles__item {
  margin-bottom: 26px;
}

.articles__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 23px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.articles__name {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.articles__data {
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
}

.articles__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.articles__img {
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}

.articles__img img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.articles__txt {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #333333;
}

.articles__txt .btn {
  display: none !important;
}

.articles .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
  margin-right: 0;
  margin-left: auto;
  border: none;
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #E30613;
  padding: 10px;
}

.pagination {
  text-align: center;
  margin-bottom: 79px;
}

.pagination a,
.pagination span {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: normal;
  color: #000;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 5px;
}

.pagination a.active,
.pagination span.active {
  color: #E30613;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
}

.articles-inner {
  margin: 86px 0 78px;
}

.articles-inner__h1 {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
  margin-bottom: 75px;
}

.articles-inner__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 62px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.articles-inner__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #000000;
}

.articles-inner__img {
  position: relative;
  margin-bottom: 30px;
}

.articles-inner__img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.articles-inner__date {
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 20px;
  text-align: right;
}

.articles-inner__body p {
  font-weight: normal;
  font-size: 18px;
  line-height: 35px;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #333333;
  margin: 0 0 5px;
}

.articles-inner__body p:first-letter {
  margin-left: 10px;
}

.articles-inner__body img{
  max-width: 100%;
  height: auto;
  width: auto;
}

.articles-inner__body li{
  font-weight: normal;
  font-size: 18px;
  line-height: 35px;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #333333;
}

.articles-inner .container {
  max-width: 1160px;
}

.pagination-inner {
  margin-top: 24px;
  margin-bottom: 50px;
}

.pagination-inner__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pagination-inner__link {
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
  position: relative;
}

.pagination-inner__link:hover {
  color: #E30613;
}

.pagination-inner__link:before {
  content: "";
  position: absolute;
  top: 3px;
  background-image: url("../img/icons-sprite.svg#icon-arrow-dropdown");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 26px;
  height: 20px;
}

.pagination-inner__link--left {
  padding-left: 28px;
}

.pagination-inner__link--left:before {
  left: -8px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.pagination-inner__link--right {
  padding-right: 28px;
}

.pagination-inner__link--right:before {
  right: -3px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.calculator {
  padding: 30px 0 89px;
  margin-bottom: 81px;
  background-color: #EFEFEF;
}
.calculator.no-bg {

  background-color: transparent;
}

.calculator__header {
  margin-bottom: 72px;
}

.calculator__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: -0.3px;
  color: #E30613;
}

.calculator__body {
  margin: auto;
}

.calculator__span {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #000000;
}

.calculator__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px 30px;
}

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

.calculator__modal .table {
  margin-bottom: 0;
  font-size: 10px;
}

.calculator__modal .table > :not(caption) > * > * {
  padding: 0 10px 18px;
  border-bottom-width: 0;
}

.calculator__modal .table td:first-child {
  max-width: 157px;
  white-space: initial;
}

.calculator__modal .table td:last-child {
  text-align: right;
}

.calculator__modal .table tfoot {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #000000;
}

.calculator__modal .table tfoot td {
  font-weight: bold;
}

.calculator__modal-item {
  padding: 49px 25px 25px;
  margin: 0 20px;
  max-width: 380px;
  position: relative;
  background-image: url("../img/check-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.calculator__modal-logo {
  margin-bottom: 26px;
}

.calculator__modal-title {
  font-weight: bold;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 10px;
}

.calculator__code {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #4D4D4D;
}

.calculator__btn {
  width: 329px;
  font-weight: bold;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.05em;
  padding: 17px 25px;
  margin: 0 0 0 215px;
  display: block;
}

.calculator .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 46px;
}

.calculator .form-label {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 278px;
          flex: 1 0 278px;
  max-width: 278px;
}

.calculator .form-control {
  border: 1px solid #E30613;
  border-radius: 5px;
  max-width: 210px;
  padding: 14px 0.75rem;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #E30613;
  background-color: rgba(217, 217, 217, 0.5);
  margin-right: 135px;
}

.calculator .form-control::-webkit-outer-spin-button,
.calculator .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator .form-control::-webkit-input-placeholder {
  color: #8A8383;
}

.calculator .form-control::-moz-placeholder {
  color: #8A8383;
}

.calculator .form-control:-ms-input-placeholder {
  color: #8A8383;
}

.calculator .form-control::-ms-input-placeholder {
  color: #8A8383;
}

.calculator .form-control::placeholder {
  color: #8A8383;
}

.calculator .alert {
  text-align: center;
  display: none;
}

.calculator .container {
  max-width: 1160px;
}

.calculator .sub_title_row {
  font-weight: bold;
}

.tabs-format {
  overflow: hidden;
}

.tabs-format__header {
  margin-bottom: 85px;
  padding-left: 118px;
}

.tabs-format__title {
  display: inline-block;
  font-weight: bold;
  font-size: 32px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.tabs-format__body {
  margin-bottom: 80px;
}

.tabs-format__txt {
  padding: 122px 16px 122px 122px;
  max-width: 45%;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-family: "AvantGardeCTT", sans-serif;
}

.tabs-format__txt p {
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.tabs-format__img {
  left: 45%;
  width: 55%;
  bottom: 0;
}

.tabs-format__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tabs-format .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
}

.tabs-format .tabs label {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  padding: 23px 2rem;
  margin: 0;
  cursor: pointer;
  background: #fff;
  -webkit-transition: background ease 0.2s;
  -o-transition: background ease 0.2s;
  transition: background ease 0.2s;
  color: #E30613;
  border: 1px solid #E30613;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.tabs-format .tabs .tab {
  margin-top: -5px;
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  display: none;
  background: #9F9FA0;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tabs-format .tabs .tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #9F9FA0;
  width: 100%;
  height: 100%;
}

.tabs-format .tabs .tab:after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  background-color: #9F9FA0;
  width: 100%;
  height: 100%;
}

.tabs-format .tabs input[type=radio] {
  position: absolute;
  opacity: 0;
}

.tabs-format .tabs input[type=radio]:checked + label {
  background: #E30613;
  color: #fff;
}

.tabs-format .tabs input[type=radio]:checked + label + .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tur {
  margin-bottom: 86px;
}

.tur__body {
  position: relative;
  margin-bottom: 84px;
}

.tur__body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(77, 77, 77, 0.5);
  width: 100%;
  height: 100%;
}

.tur__body img {
  width: 100%;
  display: block;
}

.tur__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 442px;
  width: 100%;
}

.tur__footer {
  text-align: center;
}

.tur__footer .btn{
  max-width: 249px;
  width: 100%;
}

.video-shops {
  background-color: #EFEFEF;
  padding: 75px 0 38px;
  overflow: hidden;
  position: relative;
}

.video-shops__header {
  margin-bottom: 71px;
  padding-left: 118px;
  position: relative;
}

.video-shops__decor {
  position: absolute;
  top: 29px;
  right: 29px;
  background-image: url("../img/video-shops-decor.png");
  background-repeat: no-repeat;
  width: 80px;
  height: 52px;
}

.video-shops__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.video-shops__figure {
  margin: 0 0 30px;
  background: #D9D9D9;
  border-radius: 10px;
  overflow: hidden;
}

.video-shops__figure img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-shops__name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 19px;
}

.video-shops__anons {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #000000;
}

.video-shops__footer {
  margin-top: 76px;
  max-width: 1246px;
}

.video-shops__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 -11px 0 auto;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #D43749;
  text-decoration: none;
  position: relative;
}

.video-shops__btn:after {
  content: "";
  position: absolute;
  top: 3px;
  right: -110px;
  background-image: url("../img/icons-sprite.svg#icon-arrow-next");
  background-repeat: no-repeat;
  width: 72px;
  height: 22px;
}

.video-shops .swiper-container-shop {
  overflow: hidden;
}

.concerns {
  background-color: #EFEFEF;
  padding: 70px 0 45px;
}

.concerns__header {
  margin-bottom: 70px;
  padding-left: 118px;
}

.concerns__title {
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.concerns__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 40px;
}

.concerns__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 56px);
          flex: 1 0 calc(50% - 56px);
}

.concerns__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 29px;
  padding-left: 72px;
}

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

.concerns__item:last-of-type .advantage__name {
  border-bottom: 0;
}

.concerns__item span {
  color: #fff;
}

.concerns__txt {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}

.concerns__name {
  font-weight: bold;
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 18px;
}

.concerns details[open] summary:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.concerns details summary {
  cursor: pointer;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  color: #4D4D4D;
  list-style: none;
}

.concerns details summary:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  background-image: url("../img/icons-sprite.svg#concerns-arrow");
  background-repeat: no-repeat;
  width: 63px;
  height: 16px;
}

.concerns details > div {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  font-family: "AvantGardeCTT", sans-serif;
}
.dt_block{}
.dt_block summary span.show_dt {display:inline-block;}
.dt_block summary span.hide_dt {display:none;}
.dt_block[open] summary span.show_dt{ display:none!important;}
.dt_block[open] summary span.hide_dt{ display:inline-block!important;}

.dt_block summary span {
  cursor: pointer;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.05em;
  text-decoration-line: underline;
  color: #4D4D4D;
  list-style: none;
}

.footer-form {
  background-color: #EFEFEF;
  padding: 81px 0 105px;
  overflow: hidden;
}

.footer-form__header {
  margin-bottom: 32px;
  text-align: center;
}

.footer-form__title {
  display: inline-block;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0.05em;
  color: #E30613;
}

.footer-form__body {
  max-width: 500px;
  margin: 0 auto;
}

.footer-form__form {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.footer-form__decor {
  content: "";
  position: absolute;
  bottom: 0;
  right: -414px;
  background-image: url("../img/form-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 307px;
  height: 310px;
}

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

.footer-form__check .jq-checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 27px;
}

.footer-form__check span {
  font-family: "AvantGardeCTT", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: #4D4D4D;
}

.footer-form .form-group {
  margin-bottom: 34px;
}

.footer-form .form-control {
  padding: 17px 34px;
}

.footer-form .btn.btn-primary {
  margin: 0 auto;
  width: 250px;
  display: block;
}

.send-plan {
  background-color: #9F9FA0;
  padding: 85px 83px 62px;
  position: relative;
}

.send-plan__decor {
  position: absolute;
  bottom: -63%;
  left: 64px;
  background-image: url("../img/send-plan-decor.png");
  background-repeat: no-repeat;
  width: 111px;
  height: 324px;
}

.send-plan__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.send-plan__btns {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 20px);
          flex: 1 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.send-plan__btns .btn {
  border-radius: 10px;
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 325px;
  margin: 0 auto 22px;
  padding: 13px 60px;
}

.send-plan__btns .btn.whatsapp {
  background-color: #22B43B;
}

.send-plan__btns .btn.telegramm {
  background-color: #13ADFC;
}

.send-plan__btns .btn.sms {
  background-color: #B23D4A;
}

.send-plan__btns .btn svg {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30px;
          flex: 1 0 30px;
  max-width: 30px;
}

.send-plan__btns .btn span {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 95px;
          flex: 1 0 95px;
  max-width: 95px;
}

.send-plan__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 20px);
          flex: 1 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.send-plan__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #000000;
  margin: 0 0 12px;
}

.send-plan__subtitle {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #000000;
}

.send-plan__anons {
  display: block;
}

.send-plan__anons.mobile {
  display: none;
}

.send-plan .container {
  max-width: 1160px;
}

.number {
  background-color: #EFEFEF;
  padding: 45px 0 50px;
  margin-bottom: 84px;
}

.number__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 143px;
  max-width: 858px;
  margin-left: 85px;
}

.number__item {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-family: "AvantGardeCTT", sans-serif;
}

.number__text {
  color: #000000;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  max-width: 170px;
}

.number__text span {
  display: block;
  color: #E30613;
}

.number__count {
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  color: #E30613;
  margin-bottom: 6px;
  margin-left: auto;
}

.number__count span {
  font-size: 18px;
  line-height: 25px;
}

.rent {
  margin: 86px 0 75px;
}

.rent__header {
  margin-bottom: 72px;
}

.rent__title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #E30613;
  margin: 0 0 79px;
}

.rent__subtitle {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}

.rent__body p {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #000000;
}

.rent__figure {
  margin: 0 0 73px;
}

.rent__figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 73px;
}

.rent__row-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 20px);
          flex: 1 0 calc(50% - 20px);
  max-width: 555px;
}

.rent__row-title {
  font-family: "AvantGardeCTT", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.05em;
  color: #000000;
}

.rent__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 0.05em;
  /*text-transform: lowercase;*/
  color: #000000;
}

.rent__list--margin {
  margin-left: 114px;
}

.rent__list li {
  position: relative;
  padding-left: 15px;
}

.rent__list li:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  overflow: hidden;
}

.rent__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 73px 0;
}

.rent__gallery img {
  border-radius: 10px;
}

@keyframes translateY {
  to {
    transform: translateY(300px);
  }
}
@keyframes translateY2 {
  to {
    transform: translateY(-300px);
  }
}
@keyframes translateX {
  to {
    transform: translateX(300px);
  }
}

@keyframes translateX2 {
  to {
    transform: translateX(0);
  }
}


.exhibit{
  margin-top:20px;
}

.sentence {

}
.sentence {
  /*font-size:30px;*/
  /*font-weight: bold;*/
  white-space: pre;
  /*color:red;*/
}
.sentence span {
  display: inline-block;
  transform: translateY(0);
}
@keyframes wave {
  0% { transform: translateY(0); }
  30% { transform: translateY(-50%); }
  70% { transform: translateY(30%); }
  100% { transform: translateY(0); }
}

/*.sentence span{*/
/*  position: relative;*/
/*  display: inline-block;*/
/*}*/
/*.sentence span.active {*/
/*  !*animation: bounceUp 600ms ease 0ms 1 normal both;*!*/
/*  animation: bounceUp 0.4s ease-in-out forwards;*/
/*}*/

/*!*bounce top in*!*/
/*@keyframes bounceUp {*/
/*  !*0% {*!*/
/*  !*  transform: translate3d(0px, 0px, 0px);*!*/
/*  !*  opacity: 0;*!*/
/*  !*}*!*/
/*  !*50% {*!*/
/*  !*  transform: translate3d(0px, -50px, 0px);*!*/
/*  !*  opacity: 0.7;*!*/
/*  !*}*!*/
/*  !*80% {*!*/
/*  !*  transform: translate3d(0px, 20px, 0px);*!*/
/*  !*  opacity: 1;*!*/
/*  !*}*!*/
/*  !*100%{*!*/
/*  !*  transform: translate3d(0px, 0px, 0px);*!*/
/*  !*  opacity: 1;*!*/
/*  !*}*!*/
/*  0% { transform: translateY(0); }*/
/*  30% { transform: translateY(-50%); }*/
/*  70% { transform: translateY(30%); }*/
/*  100% { transform: translateY(0); }*/
/*}*/


@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 524px;
    padding: 32px 54px;
  }

  .remodal .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #E30613;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1120px) {
  .investment__body {
    overflow: auto;
    margin: 0 -15px;
  }

  .investment__item {
    padding-left: 50px;
  }

  .investment__item:first-of-type {
    color: #E30613;
    padding: 14px 50px;
  }
}

@media only screen and (max-width: 1023px) {
  .header {
    padding: 24px 0;
  }

  .header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }

  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 25;
    margin-left: auto;
    margin-right: 0;
  }

  .header__button.active:before {
    width: 60%;
    top: 15px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
  }

  .header__button.active:after {
    width: 60%;
    bottom: 15px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
  }

  .header__button.active{
    background-color: #E30613;
  }

  .header__button.active span {
    display: none;
  }

  .header__phone {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-right: 30px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }

  .nav {
    position: absolute;
    top: 120%;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 20;
    padding: 30px 48px;
    display: none;
    background-color: #D9D9D9;
  }

  .nav.active {
    display: block;
  }

  .nav__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .nav__item {
    margin-bottom: 12px;
  }

  .nav__item.active .nav__dropdown {
    opacity: 1;
    visibility: visible;
    height: auto;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .nav__item.active .nav__link--arrow:after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .nav__item:before {
    display: none;
  }

  .nav__item:not(:first-child) {
    margin-left: 0;
  }

  .nav__link {
    font-size: 16px;
    line-height: 16px;
    padding: 0;
    text-align: left;
  }

  .hero {
    margin-bottom: 50px;
  }

  .hero_decor {
    display: none;
  }

  .hero__txt {
    max-width: 60%;
  }

  .hero__title {
    font-size: 20px;
    line-height: 28px;
  }

  .hero__title span {
    font-size: 32px;
    line-height: 40px;
  }

  .hero__lable {
    font-size: 20px;
    line-height: 40px;
  }

  .hero__list {
    margin: 0 0 28px;
  }

  .hero__list li {
    font-size: 16px;
    line-height: 34px;
  }

  .hero__row span {
    font-size: 12px;
    line-height: 14px;
  }

  .hero__row .btn {
    padding: 16px 20px;
    font-size: 16px;
  }

  .hero__num {
    padding: 35px 15px 41px;
    margin-top: 37px;
  }

  .hero__num-top {
    font-size: 16px;
    line-height: 26px;
  }

  .hero__num-middle {
    font-size: 26px;
    line-height: 46px;
  }

  .footer {
    padding: 60px 0 36px;
  }

  .footer__body {
    gap: 20px 50px;
  }

  .percent {
    margin-bottom: 50px;
  }

  .percent__decor {
    display: none;
  }

  .percent__header {
    margin-bottom: 40px;
    padding-left: 50px;
  }

  .percent__item {
    max-width: 100%;
  }

  .advantage {
    margin-bottom: 50px;
  }

  .advantage__header {
    margin-bottom: 40px;
    position: relative;
    padding-left: 50px;
  }

  .advantage__decor {
    display: none;
  }

  .advantage__title {
    display: inline-block;
    font-family: "AvantGardeCTT", sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 25px;
    letter-spacing: 0.05em;
    color: #E30613;
  }

  .advantage__body {
    padding-left: 0;
  }

  .advantage__num {
    font-size: 24px;
    line-height: 25px;
    margin-right: 30px;
  }

  .advantage__name {
    font-size: 18px;
    line-height: 24px;
    min-height: 73px;
  }

  .advantage__item {
    margin-bottom: 60px;
    min-height: 95px;
  }

  .opening__header {
    margin-bottom: 50px;
    padding-left: 50px;
  }

  .opening__figure-big {
    display: none;
  }

  .opening__figure {
    display: block;
    text-align: center;
  }

  .opening__body {
    gap: 20px;
  }

  .opening__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 20px);
            flex: 1 0 calc(50% - 20px);
    max-width: 50%;
    text-align: center;
  }

  .opening__item:nth-of-type(-4n + 4) {
    margin-left: auto;
  }

  .parametrs__header {
    margin-bottom: 40px;
    padding-left: 50px;
  }

  .reviews {
    margin-bottom: 50px;
  }

  .reviews__header {
    margin-bottom: 40px;
    padding-left: 50px;
  }

  .reviews__name {
    font-size: 22px;
    line-height: 25px;
    padding: 20px 30px;
    margin: 0 0 20px;
  }

  .reviews__btn {
    margin: 0 100px 0 auto;
  }

  .reviews__btn:after {
    top: 3px;
    right: -100px;
    width: 72px;
    height: 22px;
  }

  .tabs-format__header {
    margin-bottom: 40px;
    padding-left: 50px;
  }

  .tabs-format__title {
    font-size: 32px;
    line-height: 25px;
  }

  .tabs-format__body {
    margin-bottom: 40px;
  }

  .tur {
    margin-bottom: 50px;
  }

  .tur__body {
    margin-bottom: 50px;
  }

  .video-shops__header {
    margin-bottom: 50px;
    padding-left: 50px;
  }

  .video-shops__decor {
    display: none;
  }

  .video-shops__btn {
    margin: 0 100px 0 auto;
  }

  .video-shops__btn:after {
    top: 3px;
    right: -100px;
    width: 72px;
    height: 22px;
  }

  .concerns__header {
    margin-bottom: 50px;
    padding-left: 50px;
  }

  .concerns__body {
    gap: 20px;
    padding-left: 0;
  }

  .concerns__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 56px);
            flex: 1 0 calc(50% - 56px);
  }

  .send-plan {
    padding: 60px 0;
  }

  .send-plan__decor {
    display: none;
  }

  .send-plan__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .number__body {
    gap: 20px;
    display: block;
    max-width: 100%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .pc_name{display: none!important;}
  .mobile_name{display: block!important;}
  .remodal .jq-selectbox {
    width: 100%;
  }

  .remodal .jq-selectbox__select {
    background: #fff;
    text-shadow: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    border: none;
    border-radius: 4px;
  }

  .remodal .jq-selectbox__trigger {
    border-left: none;
  }

  .remodal .jq-selectbox__trigger-arrow {
    border-top-color: #E30613;
    top: 10px;
  }

  .remodal .btn {
    padding: 7px 35px;
    font-size: 18px;
    line-height: 22px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-control {
    padding: 0.2rem 0.75rem;
    font-size: 12px;
    line-height: 18px;
    border-radius: 4px;
  }

  .d-desktop-none {
    display: block;
  }

  .d-mobile-none {
    display: none !important;
  }

  .remodal.calc .remodal-close {
    top: auto;
    right: auto;
    color: #E30613;
    position: relative;
    display: block;
    width: 100%;
    margin: 20px 0;
  }

  .remodal.calc .remodal-close:before {
    display: none;
  }

  .remodal.calc .remodal-close span {
    display: inline-block;
    border-bottom: 1px solid #E30613;
  }

  .remodal.calc .btn {
    width: 100%;
    max-width: 100%;
    padding: 11px 20px;
    font-size: 12px;
    line-height: 14px;
  }

  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .header {
    padding-bottom: 12px;
  }

  .header.page {
    background-color: #ffffff;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header.page.gray {
    background-color: #EFEFEF !important;
  }

  .header.page.gray .header__button {
    background-color: #EFEFEF;
  }

  .header.page .header__back {
    display: block;
  }

  .header.page .header__phone {
    text-align: center;
  }

  .header.page .header__button {
    background-color: #ffffff;
  }
  .header.page .header__button.active,
  .header.page .header__button:hover{
    background-color: #E30613;
  }

  .header__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__phone {
    margin-left: 0;
    margin-right: auto;
    font-size: 20px;
    text-align: left;
  }

  .header__button {
    top: -12px;
    margin-right: 8px;
    margin-left: auto;
  }

  .hero {
    text-align: center;
    margin-bottom: 14px;
  }

  .hero__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    padding-top: 0;
  }

  .hero__txt {
    max-width: 582px;
    text-align: right;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .hero__img {
    display: none;
  }

  .hero__img.mobile {
    display: block;
    width: 284px;
    height: 269px;
    margin-top: -31px;
  }

  .hero__title {
    font-size: 24px;
    line-height: 25px;
    text-align: center;
  }

  .hero__title span {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 18px;
  }

  .hero__list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
  }

  .hero__list li {
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding-left: 15px;
  }

  .hero__list li:before {
    left: 0;
    position: absolute;
    top: 11px;
  }

  .hero__row span {
    font-size: 8px;
    line-height: 10px;
  }

  .hero__lable {
    font-size: 16px;
    line-height: 33px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__row .btn {
    font-size: 16px;
    padding: 16px 10px;
    max-width: 232px;
    width: 100%;
    margin: 0 auto;
  }

  .hero__num {
    display: none;
    margin: 0 -20px 30px;
  }

  .hero__num.mobile {
    display: block;
    padding: 21px 0;
  }

  .hero__num-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .hero__num-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

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

  .hero__num-top {
    font-size: 14px;
    line-height: 30px;
  }

  .hero__num-middle {
    font-size: 36px;
    line-height: 39px;
  }

  .hero__video {
    height: 221px;
  }

  .hero__video img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .footer__body {
    display: none;
  }

  .footer__body.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 24px;
  }

  .footer__policy {
    text-align: center;
    font-size: 12px;
    line-height: 15px;
  }

  .percent {
    padding: 0;
    margin: 0 0 10px;
  }

  .percent__header {
    margin-bottom: 8px;
    padding: 0;
    text-align: center;
  }

  .percent__title {
    font-size: 24px;
    line-height: 50px;
  }

  .percent__body {
    grid-gap: 17px;
  }

  .percent__item {
    display: block;
    max-width: 100%;
    gap: 10px;
    padding-left: 66px;
    position: relative;
  }

  .percent__num {
    position: absolute;
    top: -5px;
    left: 3px;
    width: 45px;
    height: 45px;
    margin-bottom: 0;
  }

  .percent__name {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 17px;
  }

  .percent__anons {
    font-size: 14px;
    line-height: 24px;
  }

  .geografia__header {
    margin-bottom: 37px;
    position: relative;
  }

  .geografia__title {
    display: none;
  }

  .geografia__body {
    display: block;
  }

  .geografia__txt {
    width: 304px;
    margin: 36px auto;
  }

  .advantage {
    padding: 50px 0 30px;
    margin-bottom: 30px;
  }

  .advantage__header {
    margin-bottom: 40px;
    text-align: center;
    padding: 0;
  }

  .advantage__title {
    font-size: 24px;
    line-height: 25px;
  }

  .advantage__title:after {
    display: none;
  }

  .advantage__body {
    display: block;
  }

  .advantage__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }

  .advantage__item {
    padding-left: 9px;
    margin-bottom: 23px;
    min-height: auto;
  }

  .advantage__item:last-of-type {
    margin-bottom: 23px;
  }

  .advantage__item:last-of-type .advantage__name {
    border-bottom: 1px solid #000;
  }

  .advantage__num {
    width: 30px;
    font-size: 24px;
    line-height: 25px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 10px;
    text-align: center;
  }

  .advantage__name {
    font-size: 16px;
    line-height: 25px;
    min-height: auto;
    padding-bottom: 22px;
  }

  .advantage__link {
    font-size: 16px;
    line-height: 25px;
    margin-left: 0;
    display: block;
  }

  .opening {
    margin-bottom: 20px;
  }

  .opening__header {
    margin-bottom: 7px;
    padding-left: 0;
    text-align: center;
  }

  .opening__title {
    max-width: 230px;
    margin: 0 auto 14px;
    font-size: 24px;
    line-height: 36px;
  }

  .opening__subtitle {
    font-size: 16px;
    line-height: 19px;
  }

  .opening__figure-big {
    display: none;
  }

  .opening__figure {
    margin: 0;
    display: block;
  }

  .opening__body {
    gap: 6px;
  }

  .opening__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }

  .opening__item:nth-of-type(-4n + 4) {
    margin-left: auto;
  }

  .opening__name {
    font-size: 16px;
    line-height: 25px;
    margin-top: -20px;
  }

  .store-decoration__header {
    margin-bottom: 15px;
    padding: 0;
    text-align: center;
  }

  .store-decoration__title {
    font-size: 24px;
    line-height: 50px;
  }

  .store-decoration__slider {
    margin-bottom: 20px;
  }

  .store-decoration .one .swiper-slide {
    width: 60%;
  }

  .store-decoration .d-none-mobile {
    display: none;
  }

  .uniform__header {
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
    text-align: center;
  }

  .uniform__title {
    font-size: 24px;
    line-height: 50px;
  }

  .uniform__body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .uniform .swiper-container-uniform-thumb {
    display: block;
  }

  .uniform .swiper-uniform-next {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -29px;
    z-index: 10;
  }

  .parametrs {
    padding: 20px 0 7px;
  }

  .parametrs__header {
    margin-bottom: 27px;
    padding: 0;
    text-align: center;
  }

  .parametrs__title {
    font-size: 24px;
    line-height: 25px;
  }

  .parametrs__body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .parametrs__content {
    width: 100%;
  }

  .parametrs__txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .parametrs__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .parametrs__name {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 25px;
  }

  .parametrs__list {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 25px;
  }

  .investment {
    margin: 20px 0;
  }

  .investment .text-danger {
    font-size: 13px;
    margin: 0;
  }

  .investment__header {
    margin-bottom: 8px;
    text-align: center;
    padding: 0;
  }

  .investment__title {
    font-size: 24px;
    line-height: 25px;
  }

  .investment__item {
    padding: 15px 50px;
    margin: 0 -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }

  .investment__item:first-of-type {
    color: #E30613;
    padding: 14px 50px;
  }

  .investment__item:nth-child(even) {
    background-color: #EFEDED;
  }

  .investment__item:nth-child(even):before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: calc(100vw - 40px);
    height: 100%;
    background-color: inherit;
    pointer-events: none;
    z-index: 0;
  }

  .investment__name {
    font-size: 12px;
  }

  .investment__price {
    font-size: 12px;
  }

  .learning-main {
    padding: 0;
    margin-bottom: 41px;
  }

  .learning-main__header {
    display: none;
  }

  .learning-main__header.mobile {
    display: block;
    margin-bottom: 27px;
    margin-top: 26px;
  }

  .learning-main__title {
    font-family: "AvantGardeCTT", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #E30613;
  }

  .learning-main__body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .learning-main__img {
    position: relative;
    margin-bottom: 20px;
  }

  .learning-main__img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(77, 77, 77, 0.6);
    width: 100%;
    height: 100%;
  }

  .learning-main__img img {
    width: 100%;
  }

  .learning-main__img-logo {
    display: block;
    width: 90%;
  }

  .learning-main__item {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .learning-main__item.align-center {
    display: none;
  }

  .learning-main__name {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.05em;
    color: #000000;
  }

  .learning-main .btn {
    width: 100%;
    margin: 0 auto;
    padding: 18px 20px;
    font-size: 22px;
    line-height: 26px;
  }

  .learning-page {
    margin-bottom: 0;
  }

  .learning-page__body {
    margin-bottom: 30px;
  }

  .learning-page__galllery {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .learning-page__galllery > div {
    width: 100%;
  }

  .learning-page__galllery img {
    width: 100%;
  }

  .learning-page h2 {
    font-size: 20px;
    margin-bottom: 11px;
  }

  .learning-page p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.05em;
  }

  .learning-page__dark {
    margin: 0 -15px;
    padding: 22px 27px;
  }

  .learning-page__list {
    margin: 27px 0;
    padding: 0;
    list-style-type: none;
    font-weight: normal;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: #000000;
  }

  .learning-page__list li {
    position: relative;
    padding-left: 15px;
  }

  .learning-page__list li:before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    border-radius: 50%;
    background-color: #000;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    vertical-align: middle;
    overflow: hidden;
  }

  .learning-page__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }

  .learning-page__row > div {
    width: 100%;
    margin-bottom: 20px;
  }

  .learning-page__row .btn {
    width: 100%;
    display: block;
    margin: 30px auto 0;
  }

  .shedule {
    margin-bottom: 23px;
  }

  .shedule__body {
    padding-left: 0;
  }

  .shedule__list {
    margin: 0 0 23px;
    padding: 0;
    list-style-type: none;
    font-weight: normal;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: #000000;
  }

  .shedule__list li {
    padding-left: 0;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 30px;
  }

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

  .shedule__list li:before {
    display: none;
  }

  .shedule__list li span {
    display: block;
  }

  .reviews {
    padding: 0;
    margin-bottom: 12px;
  }

  .reviews__header {
    margin-bottom: 15px;
    padding: 0;
    text-align: center;
  }

  .reviews__title {
    font-size: 24px;
    line-height: 50px;
  }

  .reviews__name {
    padding: 15px 25px;
    font-size: 16px;
    line-height: 25px;
    max-width: 233px;
    margin: 0 auto 24px;
  }

  .reviews__anons {
    font-size: 14px;
    line-height: 24px;
    height: 148px;
    margin-bottom: 14px;
  }

  .reviews__anons p{
    font-size: 14px;
    line-height: 24px;
  }

  .reviews__link {
    font-size: 14px;
    line-height: 25px;
  }

  .reviews__footer {
    margin-top: 21px;
  }

  .reviews__btn {
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 19px;
  }

  .reviews__btn:after {
    top: 1px;
    right: 0;
    width: 62px;
    height: 22px;
  }

  .articles {
    margin: 0 0 29px;
  }

  .articles__title {
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 19px;
  }

  .articles__item {
    margin-bottom: 12px;
  }

  .articles__item.active .articles__data {
    display: block;
  }

  .articles__item.active .articles__dropdown {
    display: block;
  }

  .articles__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .articles__name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    position: relative;
    padding-right: 25px;
    font-size: 16px;
    line-height: 25px;
  }

  .articles__item.active .articles__name:after {
    transform: rotate(180deg);
  }
  .articles__name:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background-image: url("../img/icons-sprite.svg#icon-arrow-dropdown");
    background-repeat: no-repeat;
    width: 22px;
    height: 6px;
  }

  .articles__data {
    font-size: 12px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: none;
    margin-top: 16px;
  }

  .articles__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .articles__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .articles__img img {
    width: 100%;
  }

  .articles__txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 14px;
  }

  .articles__txt .btn {
    display: block !important;
    margin-left: 0;
    margin-right: auto;
  }

  .articles__dropdown {
    display: none;
  }

  .articles .btn {
    display: none;
  }

  .pagination {
    margin-bottom: 22px;
  }

  .pagination a,
  .pagination span {
    font-size: 12px;
  }

  .pagination a.active,
  .pagination span.active {
    font-size: 12px;
  }

  .pagination a.more,
  .pagination span.more {
    display: block;
  }

  .articles-inner {
    margin: 20px 0 26px;
  }

  .articles-inner__h1 {
    display: none;
  }

  .articles-inner__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .articles-inner__title {
    font-size: 20px;
    line-height: 35px;
  }

  .articles-inner__title:after {
    width: 203px;
  }

  .articles-inner__img {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .articles-inner__date {
    position: absolute;
    bottom: -30px;
    right: 0;
    margin-bottom: 0;
  }

  .articles-inner__body p {
    font-weight: normal;
    font-size: 12px;
    line-height: 25px;
    text-align: justify;
    letter-spacing: 0.05em;
    color: #333333;
    margin: 0 0 5px;
  }

  .articles-inner__body p:first-letter {
    margin-left: 10px;
  }

  .articles-inner__body li{
    font-weight: normal;
    font-size: 12px;
    line-height: 25px;
    text-align: justify;
    letter-spacing: 0.05em;
    color: #333333;
    margin: 0 0 5px;
  }

  .pagination-inner__link {
    font-size: 12px;
  }

  .pagination-inner__link:hover {
    color: #E30613;
  }

  .pagination-inner__link:before {
    content: "";
    position: absolute;
    top: 3px;
    background-image: url("../img/icons-sprite.svg#icon-arrow-dropdown");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 26px;
    height: 20px;
  }

  .pagination-inner__link--left {
    padding-left: 20px;
  }

  .pagination-inner__link--left:before {
    left: -8px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .pagination-inner__link--right {
    padding-right: 20px;
  }

  .pagination-inner__link--right:before {
    right: -3px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .calculator {
    padding: 30px 0;
    margin-bottom: 27px;
  }

  .calculator__header {
    margin-bottom: 27px;
    padding: 0;
    text-align: center;
  }

  .calculator__title {
    font-size: 24px;
    line-height: 25px;
  }

  .calculator__btn {
    width: 100%;
    font-size: 22px;
    line-height: 26px;
    padding: 17px 25px;
    margin: 0;
  }

  .calculator__modal {
    display: block;
    margin: 0 0 30px;
  }

  .calculator__modal-logo {
    display: none;
  }

  .calculator__modal-item {
    padding: 25px;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
  }

  .calculator__modal-item:last-child {
    background-position: bottom;
    margin-top: 0;
  }

  .calculator__span {
    font-size: 16px;
    line-height: 12px;
  }

  .calculator .form-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .calculator .form-label {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .calculator .form-control {
    max-width: 142px;
    margin-right: 20px;
    margin-left: 71px;
    padding: 3px 0.75rem;
  }

  .tabs-format {
    margin: 0 0 30px;
  }

  .tabs-format__header {
  margin-bottom:10px;
  }

  .tabs-format__title {
    font-size: 20px;
    line-height: 25px;
  }

  .tabs-format__title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 142px;
    height: 3px;
    background-color: #fff;
  }

  .tabs-format__body {
    margin-bottom: 0;
  }

  .tabs-format__txt {
    padding: 22px;
    max-width: 100%;
    font-size: 12px;
    line-height: 14px;
  }

  .tabs-format__txt p {
    font-size: 12px;
    line-height: 14px;
  }

  .tabs-format__img {
    left: 0;
    width: 100%;
    bottom: 0;
  }

  .tabs-format__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .tabs-format .tabs .tab,
  .tabs-format .tabs label {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }

  .tabs-format .tabs label {
    font-family: "AvantGardeCTT", sans-serif;
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
    line-height: 19px;
    padding: 18px 2rem;
  }

  .tabs-format .tabs input[type=radio]:checked + label + .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tur {
    margin-bottom: 30px;
  }

  .tur__body {
    margin-bottom: 30px;
    height: 221px;
  }

  .tur__body img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }

  .tur__btn {
    font-size: 16px;
    max-width: 334px;
    width: 100%;
  }

  .tur__footer .btn{
    max-width: 232px;
    padding: 16px 10px;
  }

  .video-shops{
    padding: 36px 0 50px;
  }

  .video-shops__header {
    margin-bottom: 28px;
    padding-left: 0;
    text-align: center;
  }

  .video-shops__title {
    font-size: 24px;
    line-height: 25px;
    max-width: 300px;
    margin: 0 auto;
  }

  .video-shops__figure{
    margin-bottom: 18px;
  }

  .video-shops__name {
    font-size: 16px;
    margin-bottom: 19px;
  }

  .video-shops__anons {
    font-size: 16px;
  }

  .video-shops__footer {
    margin-top: 21px;
  }

  .video-shops__btn {
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 19px;
  }

  .video-shops__btn:after {
    top: 1px;
    right: 0;
    width: 62px;
    height: 22px;
  }

  .concerns {
    padding: 50px 0 30px;
  }

  .concerns__header {
    margin-bottom: 40px;
    padding-left: 0;
    text-align: center;
  }

  .concerns__title {
    font-size: 24px;
    line-height: 25px;
  }

  .concerns__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }

  .concerns__item {
    margin-bottom: 23px;
    padding-left: 48px;
  }

  .concerns__txt {
    padding-bottom: 25px;
  }

  .concerns__name {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 4px;
  }

  .concerns details[open] summary:before {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .concerns details summary {
    font-size: 14px;
    line-height: 25px;
  }

  .concerns details summary:before {
    width: 43px;
    left: 0;
  }

  .concerns details > div {
    font-size: 14px;
    line-height: 25px;
  }

  .send-plan {
    padding: 15px 0 0;
  }

  .send-plan__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
  }

  .send-plan__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }

  .send-plan__btns {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .send-plan__btns .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 30px;
    padding: 13px 60px;
  }
  .send-plan__btns .btn:last-of-type {
    margin-bottom: 0;
  }

  .send-plan__btns .btn svg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30px;
            flex: 1 0 30px;
    max-width: 30px;
  }

  .send-plan__btns .btn span {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 95px;
            flex: 1 0 95px;
    max-width: 95px;
  }

  .send-plan__title {
    font-size: 24px;
    line-height: 40px;
    margin: 0 0 12px;
  }

  .send-plan__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .send-plan__anons {
    text-align: center;
    display: none;
  }

  .send-plan__anons.mobile {
    display: block;
  }

  .number {
    padding: 14px 0;
    margin-bottom: 41px;
  }

  .number__item {
    text-align: center;
    margin-bottom: 18px;
  }

  .number__text {
    font-size: 16px;
    line-height: 25px;
    margin: 0 auto 12px;
  }

  .number__text span {
    display: inline;
  }

  .number__count {
    font-size: 36px;
    line-height: 25px;
  }

  .number__count span {
    display: block;
  }

  .rent {
    margin: 10px 0 30px;
  }

  .rent__header {
    margin-bottom: 19px;
  }

  .rent__title {
    text-align: center;
    font-size: 24px;
    line-height: 35px;
    margin: 0 0 16px;
  }

  .rent__subtitle {
    font-size: 16px;
    line-height: 35px;
  }

  .rent__figure {
    height: 182px;
    margin: 0 -20px 19px;
  }

  .rent__row {
    gap: 6px;
    margin-bottom: 19px;
  }

  .rent__row-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }

  .rent__row-title {
    font-size: 14px;
    line-height: 35px;
  }

  .rent__gallery {
    gap: 30px;
    margin: 18px 0;
  }

  .footer-form{
    padding: 28px 0;
  }
  .footer-form__title{
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 424px) {
  .geografia__txt {
    width: 100%;
  }
}

.grecaptcha-badge{
  display:none!important;
}