@charset "UTF-8";

body {
  font: 15px/140% "Inter", sans-serif;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: -0.4px;
  background: #02101C;
  color: white;
}

body .site-main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body:before {
  background: rgba(0, 7, 45, 0.35);
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 90;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
}

body.overlay:before {
  visibility: visible;
  opacity: 1;
}

.h1,
.h2 {
  font-weight: 700;
  margin-bottom: 0;
}

.h1, h1 {
  font-size: 48px;
  line-height: 116.667%;
}

.h2, h2 {
  font-size: 36px;
  line-height: 122%;
}

h3{
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

h4{
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

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

h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
}

.text a {
  text-decoration: none;
}

.text a,
.text a:hover {
  color: #FE9139;
}

.text a:hover {
  text-decoration: underline;
}

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

.text h2 {
  font-size: 22px;
}

.text .brand-item {
  margin: 32px 0 16px;
}

.text > img {
  max-width: 100%;
  height: 400px;
  margin-bottom: 16px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.text > *:last-child {
  margin-bottom: 0;
}

.text > *:last-child {
  margin-bottom: 0;
}

.text-content {
  max-width: 750px;
  margin: 0 auto;
}

.text-content__title {
  margin-bottom: 32px;
}

.text-content__image {
  max-width: 100%;
  height: 400px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.row {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: -16px;
}

.row > div {
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.img-chart {
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 16px;
}

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

.modal {
  background: #17202A;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
}

.modal__cross {
  position: absolute;
  top: 15px;
  right: 15px;
  fill: #FE9139;
}

.modal__header {
  margin-bottom: 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}

.modal-col {
  margin-bottom: 16px;
}

.modal-col__input:not(:last-child) {
  margin-bottom: 8px;
}

.modal-col__title {
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  background: #02101C;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(240, 246, 254, 0.24);
  -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, box-shadow 0.3s;
  transition: border 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.form-input:hover {
  -webkit-box-shadow: 0 0 0 2px rgb(66, 163, 207);
          box-shadow: 0 0 0 2px rgb(66, 163, 207);
  border-color: transparent;
}

.form-input__area {
  background: transparent;
  width: 100%;
  border: none;
  padding: 0;
  color: white;
}

.form-input__area:focus {
  outline: none;
}

.form-input__area::-webkit-input-placeholder {
  color: rgba(240, 246, 254, 0.45);
}

.form-input__area::-moz-placeholder {
  color: rgba(240, 246, 254, 0.45);
}

.form-input__area:-ms-input-placeholder {
  color: rgba(240, 246, 254, 0.45);
}

.form-input__area::-ms-input-placeholder {
  color: rgba(240, 246, 254, 0.45);
}

.form-input__area::placeholder {
  color: rgba(240, 246, 254, 0.45);
}

.form-input__label {
  font-size: 12px;
  display: block;
}

textarea {
  height: 100px;
  resize: none;
}

.answer-box {
  border: 1px solid rgba(240, 246, 254, 0.24);
  border-radius: 16px;
  padding: 16px;
}

.answer-box:not(:last-child) {
  margin-bottom: 8px;
}

.answer-box__content {
  margin-top: 16px;
}

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

.answer-box__li:not(:last-child) {
  margin-bottom: 12px;
}

.answer-box__li svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  max-width: 24px;
  margin-right: 8px;
}

.answer-box__title {
  font-size: 18px;
  font-weight: 600;
}

.modal a.close-modal {
  display: none;
}

.brand-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brand-item h2 {
  margin: 0;
}

.brand-item__picture {
  background: rgba(240, 246, 254, 0.08);
  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: 72px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  margin-right: 12px;
}

.brands-picture {
  background: rgba(240, 246, 254, 0.06);
  text-align: center;
  height: 400px;
  border-radius: 16px;
  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;
}

.brands-picture__vs {
  margin: 23px 0;
  color: rgb(220, 67, 113);
}

.site-footer__top {
  border-top: 1px solid rgba(240, 246, 254, 0.24);
  border-bottom: 1px solid rgba(240, 246, 254, 0.24);
  padding: 32px;
}

.site-footer__bottom {
  padding: 16px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer__terms {
  text-decoration: none;
  color: #FE9139;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.site-footer__terms:hover {
  color: rgb(238, 197, 86);
}

.site-footer__copyright {
  color: rgba(240, 246, 254, 0.8);
}

.site-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-menu__link {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(240, 246, 254, 0.8);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.site-footer-menu__link:hover {
  color: #FE9139;
}

.site-footer-menu__li:not(:last-child) {
  margin-bottom: 16px;
}

.container {
  max-width: 1230px !important;
  margin: 0 auto;
  padding: 0 15px;
}

.container-sm {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
}

.container-content {
  padding-left: 32px;
  padding-right: 32px;
}

.site-header {
  padding: 16px 0;
  height: 90px;
    z-index: 1;
}

.site-header__burger {
  background: rgb(238, 197, 56);
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  max-width: 40px;
  border-radius: 6px;
  border: none;
  fill: white;
  display: none;
  padding: 0;
}

.site-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  margin-left: 24px;
}

.site-header__menu:first-child {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-header__menu:last-child {
  display: none;
  margin-left: 24px;
}

.site-header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #17202A;
  border-radius: 14px;
  padding-right: 8px;
  padding-left: 8px;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 15px;
  right: 15px;
  top: 16px;
  margin: 0 auto;
  max-width: 1200px;
}

.site-bar {
  background: #17202A;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
  width: 284px;
  padding: 30px 20px;
  bottom: 0;
  overflow: auto;
  border-radius: 16px 0 0 16px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.site-bar.active {
  -webkit-transform: none;
          transform: none;
}

.site-bar__cross {
  background: transparent;
  width: 40px;
  height: 40px;
  border: none;
}

.site-bar__title {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}

.site-bar__top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  fill: #FE9139;
}

.site-bar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-bar-menu__li:not(:first-child) {
  margin-top: 16px;
}

.site-bar-menu__title {
  text-decoration: none;
  display: block;
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 16px;
}

.site-bar-menu__title,
.site-bar-menu__title:hover {
  color: rgba(240, 246, 254, 0.8);
}

.site-bar-menu > li:not(:last-child) {
  border-bottom: 1px solid rgba(240, 246, 254, 0.24);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.site-bar-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}

.site-bar-menu__link {
  text-decoration: none;
}

.site-bar-menu__link,
.site-bar-menu__link:hover {
  color: white;
}

.site-menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

.site-menu__li:hover .site-menu__dropdown {
  display: block;
}

.site-menu__li:hover .site-menu__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.site-menu__li:not(:last-child) {
  padding-right: 10px;
}

.site-menu__icon {
  fill: rgba(240, 246, 254, 0.45);
  -webkit-transition: fill 0.3s, -webkit-transform 0.3s;
  transition: fill 0.3s, -webkit-transform 0.3s;
  transition: fill 0.3s, transform 0.3s;
  transition: fill 0.3s, transform 0.3s, -webkit-transform 0.3s;
  margin-left: 4px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  max-width: 16px;
}

.site-menu__link {
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 128%;
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.site-menu__link:hover .site-menu__icon {
  fill: #FE9139;
}

.site-menu__link:hover {
  color: #FE9139;
}

.site-menu-dropdown {
  position: absolute;
  top: 100%;
  padding-top: 5px;
  display: none;
}

.site-menu-dropdown--right {
  right: 0;
}

.site-menu-dropdown ul ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-menu-dropdown__list {
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(240, 246, 254, 0.24);
  background: #17202A;
  padding: 0;
  margin: 0;
  padding: 20px;
}

.site-menu-dropdown__list--more > li:not(:last-child) {
  border-bottom: 1px solid rgba(240, 246, 254, 0.24);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.site-menu-dropdown__link {
  white-space: nowrap;
  font-size: 14px;
  text-decoration: none;
  line-height: 128%;
  font-weight: 500;
  color: white;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.site-menu-dropdown__link:hover {
  color: #FE9139;
}

.site-menu-dropdown__li:not(:last-child) {
  margin-bottom: 16px;
}

.site-menu-dropdown__title {
  text-decoration: none;
  display: block;
  color: rgba(240, 246, 254, 0.8);
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 16px;
}

.jumbotron__content {
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jumbotron__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

.jumbotron__text {
  color: rgba(240, 246, 254, 0.8);
}

.jumbotron__subtitle {
  font-weight: 600;
  color: #FE9139;
  font-size: 18px;
  line-height: 130%;
}

.jumbotron__title {
  margin-top: 8px;
  margin-bottom: 16px;
}

.jumbotron__text {
  margin-bottom: 16px;
}

.button {
  border-radius: 10px;
  padding: 0 16px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  -webkit-transition: background-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.button--block {
  width: 100%;
}

.button--theme-primary {
  background: rgb(238, 197, 56);
  color: #00072D !important;
}

.button--theme-primary:hover {
  opacity: 0.6;
}

.button--theme-secondary {
  background: rgba(238, 197, 56, 0.14);
  color: rgb(254, 145, 57);
}

.button--theme-secondary:hover {
  background: rgba(238, 197, 56, 0.4);
  color: rgb(254, 145, 57);
}

.button-header {
    flex-shrink: 0;
    margin-left: 16px;
}

.button-gradient {
    background: linear-gradient(90deg, #FF9533 0%, #EEC538 100%);
    color: black;
    transition: all .25s linear;
}

.button-gradient:hover {
    opacity: .8;
    color: black;
}

.section {
  margin-bottom: 64px;
}

.section__head {
  margin-bottom: 24px;
}

.section__head--sm {
  margin-bottom: 12px;
}

.section__footer {
  margin-top: 24px;
}

.section-text {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid rgba(240, 246, 254, 0.24);
}

.section-text__row {
  padding-top: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantage {
  padding-bottom: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(240, 246, 254, 0.24);
}

.advantage__icon {
  background: rgba(240, 246, 254, 0.08);
  width: 72px;
  height: 72px;
  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;
  border-radius: 14px;
}

.advantage__text {
  color: rgba(240, 246, 254, 0.8);
}

.advantage__title {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.application__col {
  overflow: hidden;
}

.application__picture {
  background: rgba(240, 246, 254, 0.06);
  border-radius: 14px;
  display: block;
  height: 100%;
}

.application__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

.application__row {
  margin-bottom: -40px;
}

.application__row .application__item {
  padding-bottom: 40px;
}

.application-item {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.application-item:hover .application-item__top {
  background: rgba(240, 246, 254, 0.24);
}

.application-item:hover .application-item-link__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.application-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  fill: #FE9139;
}

.application-item__link {
  text-align: center;
  color: #FE9139;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.application-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  border: 1px solid rgba(240, 246, 254, 0.24);
  border-radius: 16px;
  font-weight: 500;
  color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.application-item-link {
  font-size: 14px;
  line-height: 130%;
}

.application-item-link__icon {
  width: 20px;
  height: 20px;
  fill: #FE9139;
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.panel {
  background: rgba(240, 246, 254, 0.06);
  border-radius: 14px;
  padding: 24px 32px;
}

.panel__title {
  margin-bottom: 16px;
}

.panel__text {
  margin-top: 16px;
  display: block;
  color: rgba(240, 246, 254, 0.8);
  margin-bottom: 0;
}

.panel__head {
  margin-bottom: 30px;
}

.faq {
  border-top: 1px solid rgba(240, 246, 254, 0.24);
}

.faq--is-active .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq:last-child .faq__head {
  padding-bottom: 0;
}

.faq:last-child .faq__content {
  padding-top: 16px;
}

.faq__head {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.faq__title {
  font-weight: 600;
  font-size: 20p;
  inset-inline-end: 120%;
}

.faq__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  fill: #FE9139;
  max-width: 24px;
  margin-left: 8px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq__content {
  padding-bottom: 16px;
  display: none;
  color: rgba(240, 246, 254, 0.8);
}

.review {
  background: rgba(240, 246, 254, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.review__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review__date {
  color: rgba(240, 246, 254, 0.8);
}

.review__head {
  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;
}

.review__text {
  color: rgba(240, 246, 254, 0.8);
  margin-top: 4px;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
    height: 88px;
}

.review__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(240, 246, 254, 0.24);
  margin-top: 12px;
  padding-top: 12px;
}

.review-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-user__name {
  font-size: 13px;
  font-weight: 600;
}

.review-user__city {
  color: rgba(240, 246, 254, 0.8);
  font-size: 11px;
}

.review-user__picture {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  max-width: 40px;
    height: 40px;
}

.review-user__picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user__link {
  font-weight: 500;
  color: #FE9139;
  text-decoration: none;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.review-user__link:hover {
  color: #FE9139;
  opacity: 0.6;
}

.review-user-link__icon {
  height: 24px;
  width: 24px;
  fill: #FE9139;
}

.review-rating__star {
  width: 22px;
  height: 22px;
  fill: #FE9139;
  stroke-width: 2px;
  stroke: #FE9139;
}

.review-rating__star--big {
  width: 30px;
  height: 30px;
}

.review-rating__star--is-disabled {
  fill: transparent;
  stroke: rgba(240, 246, 254, 0.45);
  stroke-width: 2px;
}

.reviews .slick-list {
  margin-left: -8px;
  margin-right: -8px;
}

.reviews .slick-slide {
  padding-left: 8px;
  padding-right: 8px;
}

.review-page {
  margin-bottom: 12px;
}

.review-page__text {
  margin-bottom: 16px;
}

.review-page__title {
  margin: 12px 0;
}

.slick-arrow {
  background: rgb(238, 197, 56);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 6px;
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 50;
}

.slick-arrow--prev {
  left: -10px;
}

.slick-arrow--next {
  right: -10px;
}

.slick-arrow__icon {
  width: 24px;
  height: 24px;
  fill: #02101C;
}

.breadcrumb {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  margin-bottom: 12px;
}

.breadcrumb__link {
  color: rgba(240, 246, 254, 0.8);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumb__link:hover {
  color: #FE9139;
}

.breadcrumb__link:after {
  content: "›";
  margin: 0 8px;
}

.categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 12px 0 6px;
}

.categories--single {
  margin: 0 0 32px 0;
}

.categories__link {
  background: rgba(238, 197, 56, 0.14);
  margin-right: 6px;
  margin-bottom: 6px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  color: white;
  -webkit-transition: border 0.3s, background-color 0.3s, color 0.3s;
  transition: border 0.3s, background-color 0.3s, color 0.3s;
}

.categories__link--active,
.categories__link:hover {
  border-color: rgb(66, 163, 207);
  color: rgb(254, 145, 57);
}

.post {
  padding-top: 16px;
  border-top: 1px solid rgba(240, 246, 254, 0.24);
}

.post__image {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.post__text {
  margin: 8px 0;
  color: rgba(240, 246, 254, 0.8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.post__title {
  margin-top: 12px;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  color: white;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.post__title:hover {
  color: #FE9139;
}

.signal {
  background: rgba(240, 246, 254, 0.06);
  padding: 20px 16px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.signal__main {
  margin: 9px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.signal__timing {
  background: rgba(240, 246, 254, 0.08);
  margin-left: 8px;
  height: 24px;
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 40px;
  color: #FE9139;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.signal__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.signal__button {
  background: red;
  height: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
  margin-left: auto;
  text-decoration: none;
}

.signal__button--danger,
.signal__button--danger:hover {
  background: rgb(84, 8, 31);
  color: rgb(220, 67, 113);
}

.signal__button--success,
.signal__button--success:hover {
  background: rgb(8, 84, 71);
  color: rgb(20, 211, 177);
}

.signal__direction {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  max-width: 24px;
  margin-right: 12px;
  height: 24px;
}

.signal__direction--bottom {
  fill: rgb(220, 67, 113);
}

.signal__direction--up {
  fill: rgb(20, 211, 177);
}

.signal__date {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 140%;
  color: rgba(240, 246, 254, 0.8);
}

.signal__price {
  margin-left: auto;
  color: rgba(240, 246, 254, 0.8);
  font-weight: 600;
}

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

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

.signal__wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.signal-geo {
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 8px;
}

.signal-geo__item {
  border-radius: 50%;
  position: absolute;
  height: 16px;
  width: 16px;
}

.signal-geo__item:first-child {
  top: 0;
  left: 0;
}

.signal-geo__item:last-child {
  bottom: 0;
  right: 0;
}

.single-props {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-props-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 145.455%;
}

.single-props-item:not(:last-child):after {
  content: "·";
  color: rgba(240, 246, 254, 0.6);
  margin: 0 6px;
}

.single-props-item__value--success {
  color: rgb(220, 67, 113);
}

.single-props-item__value--danger {
  color: rgb(20, 211, 177);
}

.single-props-item__label {
  margin-right: 4px;
  color: rgba(240, 246, 254, 0.6);
}

.container-flex{
    display: flex;
    align-items: flex-start;
}

.container-block{
    width: calc(100% - 288px);
}

.sidebar{
    flex-shrink: 0;
    flex-basis: 256px;
    margin-right: 32px;
    background: rgba(240, 246, 254, 0.06);
    padding: 12px 16px;
    display: flex;
    flex-flow: row wrap;
    border-radius: 12px;
    position: sticky;
    top: 100px;
    justify-content: space-between;
    margin-bottom: 64px;
}

.sidebar .button{
    margin-bottom: 8px;
    flex-basis: 100%;
}

.sidebar-title{
    margin-bottom: 24px;
    width: 100%;
}

.sidebar-link{
    display: flex;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
    width: calc(50% - 4px);
}

.sidebar-link-full{
    width: 100%;
}

.sidebar-link-pic{
    width: 100%;
}

.sidebar-applications{
    display: flex;
    justify-content: space-between;
}

.sidebar-link-icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(240, 246, 254, 0.24);
    border-radius: 16px;
    font-weight: 500;
    color: white;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    width: 100%;
}

.sidebar-link-icon img{
    max-width: 44px;
}

.sidebar-link:hover .sidebar-link-icon{
    background: rgba(240, 246, 254, 0.24);
}

.sidebar-link:hover .application-item-link__icon{
    transform: rotate(45deg);
}

.sidebar-demo{
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mt-45{
    margin-top: 45px;
}


.contact-form__item{
    position: relative;
    margin-top: 8px;
}

.contact-form__item input, .contact-form__item .text-element{
    font-family: inherit;
    padding: 30px 14px 16px;
    border: 1px solid rgba(240, 246, 254, 0.12);
    background: transparent;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    border-radius: 12px;
}

.contact-form__item textarea{
    height: 184px;
    resize: none;
}

.text-element{
    width: 100%;
    color: white;
}

.text-element:focus + .contact-form__label{
    font-size: 12px;
    top: 10px;
    color: rgba(240, 246, 254, 0.6);
}

.text-element.filled + .contact-form__label{
    font-size: 12px;
    top: 10px;
    color: rgba(240, 246, 254, 0.6);
}

.text-element.error{
    border: 1px solid red;
}

.contact-form__label{
    position: absolute;
    left: 14px;
    top: 25px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    transition: all .25s linear;
    pointer-events: none;
}

.contact-form{
}

.contact-form .button{
    margin-top: 28px;
    width: 100%;
}

.popup-success-active .popup-success-blackout{
    opacity: 1;
}

.popup-success-active .popup-success{
    opacity: 1;
    pointer-events: auto;
}

.popup-success-active .popup-success__container{
    opacity: 1;
    transform: translateY(0);
}

.popup-success-blackout{
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all .25s linear;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.popup-success{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    pointer-events: none;
    opacity: 0;
    transition: all .25s linear;
}

.popup-success__container{
    background: #333957;
    padding: 50px 16px;
    border-radius: 14px;
    position: relative;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: all .25s linear;
    transform: translateY(20px);
}

.popup-success__pic{
    margin-bottom: 20px;
}

.popup-success__title{
    font-weight: 600;
    font-size: 30px;
    text-align: center;
}

.popup-success__close{
    position: absolute;
    right: 16px;
    z-index: 1;
    top: 16px;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .container-block{
        width: 100%;
    }
    .container-flex{
        flex-direction: column;
    }
    .sidebar{
        margin-right: 0;
        position: relative;
        top: auto;
        margin-bottom: 64px;
    }
    .sidebar-title{
        margin-bottom: 12px;
        text-align: center;
    }
    .sidebar .button{
        flex-basis: calc(50% - 4px);
    }
    .sidebar-link{
        width: calc(33.3% - 4px);
    }
    .sidebar-link-pic{
        margin-top: 36px;
        width: calc(50% - 4px);
    }
    .sidebar-demo{
        height: 116px;
        align-items: center;
        justify-content: center;
    }
  .site-footer__top {
    padding: 32px 16px;
  }

  .site-footer__bottom {
    padding: 16px;
  }

  .container-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jumbotron__content {
    min-height: initial;
  }

  .jumbotron__image {
    height: 480px;
  }

  .application__image {
    height: 480px;
  }
}

@media (max-width: 767.98px) {
    .button-header {
        height: 40px !important;
        margin: 0 8px 0 6px;
    }
    .site-header__left{
        flex-grow: 1;
    }
    .site-header__logo img{
        max-width: 40px;
        max-height: 40px;
    }
  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 30px;
  }

  .reviews-page__top {
    display: block;
  }

  .reviews-page__top > *:first-child {
    margin-bottom: 10px;
  }

  .blocker {
    padding-top: 90px;
  }

  .site-header__burger {
    display: block;
  }

  .site-header__menus {
    display: none;
  }

  .site-header__row {
    height: 56px;
    padding-right: 8px;
  }

  .panel {
    padding: 24px 16px;
  }

  .reviews-footer {
    display: block;
  }

  .reviews-footer > *:first-child {
    margin-bottom: 5px;
  }
    .review-user__name, .review-user__city{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .review-user__content{
        max-width: 68%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .review-user{
        max-width: 61%;
    }
}

@media (max-width: 575.98px) {
  .advantage__text {
    font-size: 12px;
    line-height: 130%;
  }

  .advantage__title {
    font-size: 15px;
    line-height: 130%;
  }
    .review-user__link{
        display: flex;
        align-items: center;
    }
    .review-user__link span{
        max-width: 78px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
