.background-white {
  background-color: #fff;
}
.background-custom-black {
  background-color: #263238;
}
.background-opacity-grey {
  background: rgba(0, 0, 0, 0.5);
}
.background-medium-grey {
  background: #555C60;
}
.background-red {
  background: #E5383B;
}
.border-radius-1 {
  border-radius: 1px;
}
.border-radius-10 {
  border-radius: 10px;
}
.font-light {
  font-family: "MontserratLight" !important;
}
.font-normal {
  font-family: "InterRegular" !important;
}
.font-bold {
  font-family: "InterBold" !important;
}
.font-extra-bold {
  font-family: "InterExtraBold" !important;
}
.font-semibold {
  font-family: "MontserratBold" !important;
}
.font-medium {
  font-family: "InterMedium" !important;
}
.font-italic {
  font-family: "MontserratItalic" !important;
}
.font-bold-italic {
  font-family: "MontserratBoldItalic" !important;
}
.font-philosopher-400 {
  font-family: "Philosopher-normal" !important;
}
.font-philosopher-700 {
  font-family: "Philosopher-bold" !important;
}
.font-segoe-ui-400 {
  font-family: "Segoe UI" !important;
}
.font-segoe-ui-700 {
  font-family: "Segoe UI semibold" !important;
}
.font-segoe-ui-bold {
  font-family: "Segoe UI bold" !important;
}
.font-segoe-ui-light {
  font-family: "Segoe UI Light" !important;
}
.font-segoe-ui-italic {
  font-family: "Segoe UI italic" !important;
}
.font_bigO {
  font-family: "Glyphter";
}
.shadow-10 {
  box-shadow: -7px 7px #E5E5E5;
}
.shadow-5 {
  box-shadow: -5px 5px #E5E5E5;
}
.shadow-2-red {
  box-shadow: -2px 2px #BE3A3A;
}
.shadow-none {
  box-shadow: none;
}
.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-none {
  list-style: none;
}
.text-underline {
  text-decoration: underline;
}
.color-white {
  color: #fff;
}
.color-red {
  color: #E5383B;
}
.color-dark-red {
  color: #BA181B;
}
.color-crimson {
  color: #821113;
}
.color-black {
  color: #263238 !important;
}
.color-dark-grey {
  color: #444B51 !important;
}
.color-custom-blue {
  color: #042f44;
}
.bg-beige {
  background: #F5F3F4;
}
.m-15 {
  margin: 15px;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mb-15 {
  margin-bottom: 15rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.fz-3 {
  font-size: 3rem;
}
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: "InterRegular" !important;
  font-size: 20px;
  line-height: 1.5;
  color: #263238;
  position: relative;
}
button:active,
button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
input,
textarea {
  outline: none;
}
input:active,
textarea:active {
  outline: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input;
}
:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container-big {
  max-width: 1635px;
  margin: 0 auto;
  padding: 0 10px;
}
h1 {
  font-family: "InterExtraBold" !important;
  font-size: 48px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    text-align: center;
    font-size: 30px;
  }
}
h2 {
  font-family: "InterBold" !important;
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h2 {
    text-align: center;
    font-size: 28px;
  }
}
h3 {
  font-family: "InterBold" !important;
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h3 {
    text-align: center;
    font-size: 26px;
  }
}
h4 {
  font-family: "InterMedium" !important;
  font-size: 24px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h4 {
    text-align: center;
    font-size: 24px;
  }
}
b {
  font-family: "InterMedium" !important;
  color: #E5383B;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active,
a:focus {
  outline: none;
}
p,
ul,
ol {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  p,
  ul,
  ol,
  li {
    font-size: 18px;
  }
}
p {
  text-indent: 0;
}
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ol-counter;
}
ol li {
  display: flex;
  position: relative;
}
ol li:before {
  counter-increment: ol-counter;
  content: counter(ol-counter);
  font-family: "MontserratExtraBold";
  font-size: 30px;
  line-height: 1;
  margin-right: 15px;
}
small {
  white-space: nowrap;
}
.our-projects-detail_result {
  display: none;
}
.sub-block {
  font-family: "InterMedium" !important;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  position: relative;
  z-index: 150;
  line-height: 138.4%;
  letter-spacing: -0.02em;
  border-radius: 30px;
  min-height: 60px;
  color: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
}
.sub-block::after {
  content: "";
  background-image: url(/local/templates/rutego/images/cart-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  margin-left: 20px;
}
.sub-block--brand {
  background: #E5383B;
}
.sub-block--brand:hover {
  background-color: #2c2c2c;
}
.sub-block--without-cart {
  cursor: default;
}
.sub-block--without-cart::after {
  display: none;
}
.sub-block--dark {
  background: #2e2e2e;
}
.sub-block--dark:hover {
  background-color: #E5383B;
}
.sub-block--gray {
  background: #565f64;
}
@media (max-width: 556px) {
  .sub-block {
    font-size: 22px;
  }
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form .main-user-consent-request-announce {
  margin-left: 37px;
}
.contact-form label:not(:last-child) {
  margin-bottom: 19px;
}
.contact-form input {
  border: none;
  border-bottom: 1px solid #1c1c1c;
  width: 100%;
}
.contact-form input:not([type="submit"]) {
  background: transparent;
}
.contact-form input::placeholder {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #727272;
}
.contact-form .main-user-consent-request input:checked + span:before {
  width: 15px;
  height: 15px;
  top: -3px;
  left: 5px;
  background: url("/local/templates/rutego/images/black-galk.svg");
}
.contact-form .main-user-consent-request-announce-custom {
  width: 19px;
  height: 17px;
  border: 1px solid #1c1c1c;
}
.contact-form .main-user-consent-request-announce {
  width: 90%;
  font-weight: 400;
  font-size: 15px;
  color: #727272;
  line-height: initial;
  text-align: initial;
}
.contact-form .main-user-consent-request-announce span {
  border-bottom: 1px solid currentColor;
}
.btn {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 20px;
  background: transparent;
  color: #263238;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-out all;
  white-space: nowrap;
  border: 1px solid #263238;
  border-radius: 10px;
  outline: none;
  box-shadow: -7px 7px #E5E5E5;
}
.btn:hover {
  text-decoration: none;
  box-shadow: -5px 5px #E5E5E5;
}
.btn:hover:hover {
  box-shadow: -2px 2px #E5E5E5;
}
.btn:active,
.btn:focus {
  box-shadow: none;
}
.btn.shadow-5 {
  box-shadow: -5px 5px #E5E5E5;
}
.btn.shadow-5:hover {
  box-shadow: -2px 2px #E5E5E5;
}
.btn--white {
  background: #fff;
}
.btn--white:hover {
  background: #D3D3D3;
}
.btn--white:active,
.btn--white:focus {
  background: #B1A7A6;
}
.btn--white .fas {
  padding-left: 16px;
}
.btn--red {
  background: #E5383B;
  color: #fff;
}
.btn--red.shadow-5-red {
  box-shadow: -5px 5px #BE3A3A;
}
.btn--red:hover {
  background: #BA181B;
  color: #fff;
}
.btn--red.shadow-5:hover {
  box-shadow: -2px 2px #E5E5E5 !important;
}
.btn--red:active,
.btn--red:focus {
  background: #821113;
  color: #fff;
}
.btn--red .fas {
  padding-left: 16px;
}
.btn--black {
  background: #263238;
  color: #fff;
}
.btn--black:hover {
  background: #000;
}
.btn--more {
  box-shadow: none;
  border: 1px solid #fff;
  color: #fff;
  padding-right: 16px;
}
.btn--more .fas {
  padding-left: 16px;
}
.btn--more:hover {
  box-shadow: none;
  background: #555C60;
  color: #fff;
}
.btn--i-want-more {
  box-shadow: none;
  border: 1px solid #263238;
  color: #263238;
  background: #fff;
  padding-right: 16px;
}
.btn--i-want-more .fas {
  padding-left: 16px;
}
.btn--i-want-more:hover {
  box-shadow: none;
  background: #555C60;
  color: #fff;
}
.btn--back i {
  margin-right: 1px;
}
.btn.shadow-2-red {
  box-shadow: -2px 2px #BE3A3A;
  text-transform: none;
  line-height: 1;
  padding: 10px 20px;
}
@media (max-width: 1399px) {
  .btn.shadow-2-red {
    padding: 10px 10px;
  }
}
.bx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.bx-breadcrumb .bx-breadcrumb-item {
  color: #E5383B;
}
.bx-breadcrumb .bx-breadcrumb-item a,
.bx-breadcrumb .bx-breadcrumb-item span {
  font-size: 16px;
  line-height: 24px;
}
.bx-breadcrumb .bx-breadcrumb-item a {
  color: #B1A7A6;
}
.bx-breadcrumb .bx-breadcrumb-item i {
  font-size: 20px;
  color: #B1A7A6;
  margin: 0 10px;
}
@media (max-width: 575px) {
  .bx-breadcrumb .bx-breadcrumb-item i {
    font-size: 16px;
  }
}
.topbutton {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #263238;
  border-radius: 10px;
  font-size: 30px;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(270deg);
  box-shadow: -4px -4px #E5E5E5;
  position: fixed;
  right: -30px;
  bottom: 100px;
  z-index: 999;
}
.topbutton .fa {
  margin-left: 15px;
  font-size: 40px;
}
.topbutton:hover {
  text-decoration: none;
}
.background-footer-bg {
  background: #D3D3D3;
}
.system-block__title {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #263238;
  margin-bottom: 15px;
}
.system-block__item:not(:last-child) {
  margin-bottom: 15px;
}
.system-item {
  display: flex;
  align-items: center;
  background: #d9d9d9;
  border-radius: 10px;
  column-gap: 20px;
  height: 50px;
}
.system-item input {
  opacity: 0;
  width: 60px;
  height: 50px;
  position: absolute;
}
.system-item__action {
  width: 60px;
  background: rgba(114, 114, 114, 0.26);
  height: 100%;
  position: relative;
}
.system-item__action::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.system-item__action--check {
  background-image: url("/local/templates/rutego/images/plus-nav.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.system-item__prop {
  flex-grow: 1;
}
.form-modal,
.form-modal-director {
  width: 30%;
  background: #fff;
  border: 1px solid #263238;
  position: fixed;
  top: 7%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 30px;
  z-index: 150;
  display: none;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .form-modal,
  .form-modal-director {
    width: 65%;
  }
}
@media (max-width: 575px) {
  .form-modal,
  .form-modal-director {
    width: 85%;
  }
}
@media (max-width: 400px) {
  .form-modal,
  .form-modal-director {
    width: 95%;
  }
}
.form-modal .form-modal-close,
.form-modal-director .form-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-modal .form-modal-close i,
.form-modal-director .form-modal-close i {
  font-size: 30px;
}
.form-modal h4,
.form-modal-director h4 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .form-modal h4,
  .form-modal-director h4 {
    margin-bottom: 20px;
  }
}
.form-modal h4:before,
.form-modal-director h4:before {
  content: "";
  width: 150px;
  height: 2px;
  background: #263238;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.form-modal .form-inner-wrap,
.form-modal-director .form-inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.form-modal .form-inner-wrap a,
.form-modal-director .form-inner-wrap a {
  margin-top: auto;
}
.form-modal .input-wrap,
.form-modal-director .input-wrap {
  max-width: 480px;
  width: 100%;
  border: 1px solid #263238;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: -5px 5px #E5E5E5;
  transition: box-shadow 0.5s;
}
@media (max-width: 991px) {
  .form-modal .input-wrap,
  .form-modal-director .input-wrap {
    margin-bottom: 20px;
  }
}
.form-modal .input-wrap.shadow-10,
.form-modal-director .input-wrap.shadow-10 {
  box-shadow: -7px 7px #E5E5E5;
  transition: box-shadow 0.5s;
}
.form-modal .input-wrap input,
.form-modal-director .input-wrap input {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .form-modal .input-wrap input,
  .form-modal-director .input-wrap input {
    padding: 10px;
    font-size: 16px;
  }
}
.form-modal .input-wrap textarea,
.form-modal-director .input-wrap textarea {
  width: 100%;
  border: none;
  display: block;
  padding: 15px 20px;
  box-sizing: border-box;
  border-radius: 10px;
}
.form-modal .input-wrap textarea:focus-visible,
.form-modal-director .input-wrap textarea:focus-visible {
  outline: none;
}
.form-modal .main-user-consent-request,
.form-modal-director .main-user-consent-request {
  max-width: 480px;
}
.main div.owl-carousel h2 {
  font-size: 42px;
  font-weight: 700;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media (max-width: 1199px) {
  .header_inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
}
.header_inner_logo {
  flex: 0.1 1 auto;
  margin-bottom: 17px;
}
@media (min-width: 500px) {
  .header_inner_logo {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .header_inner_logo {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .header_inner_logo {
    width: 45%;
  }
}
@media (max-width: 500px) {
  .header_inner_logo {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .header_inner_logo .header_logo {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .header_inner_logo .header_logo {
    justify-content: flex-start;
  }
}
@media (max-width: 500px) {
  .header_inner_logo .header_logo {
    display: flex;
    justify-content: center;
  }
}
.header_inner_logo img {
  display: block;
}
.header_inner > nav {
  flex: 0.5 1 auto;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .header_inner > nav {
    margin: inherit;
  }
}
@media (max-width: 991px) {
  .header_inner > nav {
    display: flex;
    justify-content: end;
    flex: 0.9 1 auto;
    order: 2;
    width: 20%;
  }
}
@media (max-width: 767px) {
  .header_inner > nav {
    flex: 0.1 1 auto;
  }
}
@media (max-width: 500px) {
  .header_inner > nav {
    margin: 10px 0;
    width: 30%;
    justify-content: center;
    order: 5;
  }
}
@media (max-width: 991px) {
}
.header_inner > nav > div .header_menu {
  font-family: "InterBold" !important;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 991px) {
}
.header_inner .box_btn {
  display: flex;
  flex: 0.05 1 auto;
  flex-direction: row;
}
@media (max-width: 1199px) {
  .header_inner .box_btn {
    flex: 0.01 1 auto;
  }
}
@media (max-width: 991px) {
  .header_inner .box_btn {
    flex: 0.3 1 auto;
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header_inner .box_btn {
    flex: 0.1 1 auto;
  }
}
@media (max-width: 500px) {
  .header_inner .box_btn {
    justify-content: center;
    width: 70%;
  }
}
.header_inner .box_btn > div {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header_inner .box_btn a {
    margin: 0 0 0 90px;
  }
}
@media (max-width: 500px) {
  .header_inner .box_btn a {
    margin: 0;
  }
}
.header_inner .header_contact {
  display: flex;
  flex: 0.05 1 auto;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .header_inner .header_contact {
    flex: 0.01 1 auto;
  }
}
@media (max-width: 991px) {
  .header_inner .header_contact {
    order: 1;
    width: 35%;
  }
}
@media (max-width: 500px) {
  .header_inner .header_contact {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.header_inner .header_contact_box {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 991px) {
  .header_inner .header_contact_box {
    text-align: left;
  }
}
@media (max-width: 500px) {
  .header_inner .header_contact_box {
    text-align: center;
  }
}
.index-top-block__img img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}
.index-top-block-slider {
  margin-bottom: 50px;
}
.index-top-block-slider .owl-item:nth-child(4) .background-banner {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left 40%;
}
@media (max-width: 767px) {
  .index-top-block-slider .owl-item:nth-child(4) .background-banner {
    background-size: cover;
  }
}
.index-top-block-slider .owl-item:nth-child(4) .index-top-block__text .info {
  position: relative;
  bottom: 55px;
  font-weight: 500;
  font-size: 31px;
  line-height: 38px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .index-top-block-slider .owl-item:nth-child(4) .index-top-block__text .info {
    font-size: 22px;
    line-height: 26px;
  }
}
.index-top-block-slider .owl-item:nth-child(4) .index-top-block__text .info + span {
  font-size: 19px;
  position: relative;
  top: -10px;
}
.index-top-block-slider .owl-item:nth-child(4) .index-top-block__text .info__sub-text {
  display: block;
  font-size: 12px;
}
.index-top-block-slider .owl-item:nth-child(4) .index-top-block__img {
  position: relative;
  right: 37px;
  bottom: -3px;
}
.index-top-block-slider .owl-item:nth-child(4) .index-top-block__img::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 39%;
  background: url("/local/templates/rutego/images/click-icon.svg") no-repeat;
  width: 85px;
  height: 70px;
  background-size: cover;
}
.index-top-block-slider .background-banner {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media (max-width: 767px) {
  .index-top-block-slider .background-banner {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .index-top-block-slider .index-top-block__text a.btn {
    margin-bottom: 10px;
  }
}
.index-top-block-slider .index-top-block__text .heading {
  font-size: 70px;
  line-height: 80px;
  font-family: "MontserratBold";
}
@media (max-width: 767px) {
  .index-top-block-slider .index-top-block__text .heading {
    font-size: 35px;
    line-height: 40px;
    margin-top: 10px;
  }
}
.index-top-block-slider .index-top-block__text .heading span {
  display: inline-flex;
  align-items: end;
}
.index-top-block-slider .index-top-block__text .heading span .font_bigO {
  font-size: 110px;
  line-height: 69px;
}
@media (max-width: 767px) {
  .index-top-block-slider .index-top-block__text .heading span .font_bigO {
    font-size: 80px;
    line-height: 39px;
  }
}
.index-top-block-slider .index-top-block__text .info {
  font-size: 27px;
  line-height: 46px;
}
@media (max-width: 767px) {
  .index-top-block-slider .index-top-block__text .info {
    font-size: 22px;
    line-height: 26px;
  }
}
.index-top-block-slider .owl-stage-outer {
  height: 100%;
}
.index-top-block-slider .owl-stage-outer .owl-stage {
  height: 100%;
  display: flex;
  align-items: center;
}
.index-top-block-slider .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
  margin: 0 10px;
}
.index-top-block-slider .owl-nav {
  margin: 0;
  position: absolute;
  bottom: 50%;
  left: -5%;
  width: 110%;
}
.index-top-block-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.index-top-block-slider .owl-nav .owl-prev:hover {
  background: none;
}
.index-top-block-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
}
.index-top-block-slider .owl-nav .owl-next:hover {
  background: none;
}
.index-top-block-slider .owl-nav .owl-next .fa,
.index-top-block-slider .owl-nav .owl-prev .fa {
  font-size: 36px;
}
.index-top-block-slider .owl-nav .owl-next:hover,
.index-top-block-slider .owl-nav .owl-prev:hover {
  color: inherit;
}
.index-top-block-slider .owl-dots {
  margin-top: 20px;
}
.index-top-block-slider .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background: url("/local/templates/rutego/images/radio-bg.svg") no-repeat center;
  background-size: contain;
}
.index-top-block-slider .owl-dots .owl-dot.active span,
.index-top-block-slider .owl-dots .owl-dot:hover span,
.index-top-block-slider .owl-dots .owl-dot:focus span {
  background: url("/local/templates/rutego/images/radio-checked-bg.svg") no-repeat center;
  background-size: contain;
}
.footer-copyright {
  margin-bottom: 0;
}
.footer-copyright span {
  display: block;
  color: #8E8E8E;
  font-size: 16px;
}
@media (max-width: 575px) {
  .footer-copyright span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .footer_sertificate-block {
    margin-top: 10px;
  }
}
.bottom-menu {
  width: 80%;
  column-count: 2;
  max-height: 115px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1199px) {
  .bottom-menu {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .bottom-menu {
    align-items: center;
    max-height: unset;
  }
}
.bottom-menu li {
  width: 50%;
}
@media (max-width: 575px) {
  .bottom-menu li {
    text-align: center;
  }
}
.bottom-menu li a {
  display: inline-block;
  color: #8E8E8E;
  font-size: 20px;
  line-height: 24px;
  padding: 5px;
}
@media (max-width: 991px) {
  .bottom-menu li a {
    font-size: 15px;
    line-height: 19px;
  }
}
@media (max-width: 991px) {
  .bottom-menu {
    width: 100%;
  }
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background: #fff;
  box-shadow: -5px 5px #E5E5E5;
  border: 1px solid #263238;
  border-radius: 10px;
  min-height: 380px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .price-item {
    min-height: unset;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .price-item {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .price-item {
    max-width: 100%;
  }
}
.price-item__heading {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
}
.price-item__info {
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 40px 0 0;
  margin-bottom: 0;
}
.price-item__info i {
  font-size: 18px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .price-item__info {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .price-item__info {
    padding: 40px 0 0;
  }
}
.price-item:hover {
  transition: all 0.2s;
  transform: scale(1.015);
  text-decoration: none;
}
@media (max-width: 1199px) {
  .price-item img {
    max-height: 200px;
  }
}
@media (max-width: 575px) {
  .price-item img {
    max-height: 120px;
  }
}
.clouds-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.cloud-1,
.cloud-2,
.cloud-3,
.cloud-4,
.cloud-5,
.cloud-6,
.cloud-7 {
  width: 100%;
  height: 13%;
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: 99;
}
.cloud-1 img,
.cloud-2 img,
.cloud-3 img,
.cloud-4 img,
.cloud-5 img,
.cloud-6 img,
.cloud-7 img {
  position: absolute;
}
.cloud-1 {
  z-index: -1;
}
.cloud-4,
.cloud-5,
.cloud-6,
.cloud-7 {
  z-index: -1;
}
.cloud-1 {
  top: 0;
}
.cloud-1 img {
  animation: animCloud 20s infinite linear;
}
.cloud-2 {
  top: 22%;
}
.cloud-2 img {
  animation: animCloud 60s infinite linear;
}
.cloud-3 {
  bottom: 20%;
}
.cloud-3 img {
  animation: animCloud 40s infinite linear;
}
.cloud-4 {
  top: 10%;
}
.cloud-4 img {
  animation: animCloud 40s infinite linear;
}
.cloud-5 {
  bottom: 35%;
}
.cloud-5 img {
  animation: animCloud 25s infinite linear;
}
.cloud-6 {
  bottom: 3%;
}
.cloud-6 img {
  animation: animCloud 30s infinite linear;
}
.cloud-7 {
  bottom: 13%;
}
.cloud-7 img {
  animation: animCloud 80s infinite linear;
}
@keyframes animCloud {
  from {
    right: 0;
  }
  to {
    right: 100%;
  }
}
.and-also_wrapper {
  position: relative;
}
.and-also__technology {
  margin-top: 95px;
  margin-bottom: 50px;
  z-index: 15;
  position: relative;
}
.and-also__technology_item {
  border-radius: 10px;
  border-top-left-radius: 0;
}
@media (max-width: 1199px) {
  .and-also__technology_item {
    background: #fff;
    border: 1px solid #263238;
    border-radius: 10px;
    padding: 0 10px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.and-also__technology_item p {
  font-size: 60px;
  font-weight: 700;
  margin-left: 20px;
}
@media (max-width: 1399px) {
  .and-also__technology_item p {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .and-also__technology_item p {
    margin: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .and-also__technology_item p {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .and-also__technology_item p {
    font-size: 36px;
  }
}
.and-also_inner::after {
  content: "";
  width: 1012px;
  height: 900px;
  background: url("/local/templates/rutego/images/ice.png") no-repeat center;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -155px;
  z-index: 10;
}
@media (max-width: 1399px) {
  .and-also_inner::after {
    height: 850px;
  }
}
@media (max-width: 1199px) {
  .and-also_inner::after {
    height: 800px;
  }
}
@media (max-width: 575px) {
  .and-also_inner::after {
    height: 720px;
  }
}
.and-also_inner article {
  width: 100%;
}
@media (max-width: 575px) {
  .and-also_inner article {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 450px) {
  .and-also_inner article {
    max-width: 100%;
  }
}
.and-also_item {
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: #ffffff1f;
  border: 1px solid #fff;
  z-index: 15;
  border-radius: 10px;
  position: relative;
  box-shadow: -7px 7px #515B60;
}
.and-also_item h3 {
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .and-also_item h3 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .and-also_item h3 {
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .and-also_item h3 {
    letter-spacing: -2px;
    font-size: 22px;
  }
}
.and-also_item__text {
  font-size: 20px;
  line-height: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}
.black-wrapper {
  background: #263238;
  padding: 50px 0;
}
.services-block__main {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .services-block__main {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .services-block__main p {
    text-align: center;
  }
}
.services-block_text span {
  width: 67%;
  font-size: 36px;
  line-height: 40px;
  position: relative;
}
.services-block_text span:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #263238;
  position: absolute;
  left: 0;
  top: -35px;
}
.services-block_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .services-block_price {
    justify-content: center;
    flex-direction: column;
  }
}
.services-block_price span {
  text-align: center;
  padding: 0 0 20px 0;
}
.working-with-us {
  padding-bottom: 30px;
}
.working-with-us_item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #263238;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .working-with-us_item {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .working-with-us_item {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 450px) {
  .working-with-us_item {
    max-width: 100%;
  }
}
.working-with-us_item h3 {
  text-align: center;
}
@media (max-width: 1399px) {
  .working-with-us_item h3 {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .working-with-us_item h3 {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .working-with-us_item h3 {
    height: max-content;
  }
}
.working-with-us_item__text {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: flex-start;
}
.working-with-us_item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 165px;
  margin-bottom: 20px;
}
.overflow {
  overflow: hidden;
}
.contact-block-bg-move-wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  min-height: 880px;
}
.contact-block-bg-move-wrap .container {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  z-index: 25;
}
@media (max-width: 1199px) {
  .contact-block-bg-move-wrap {
    min-height: 1100px;
  }
}
.contact-block-bg-move {
  position: absolute;
  left: 0;
  right: -1940px;
  top: 0;
  bottom: 0;
  background: url("images/contacts-block-move-bg-1.svg");
  background-repeat: repeat-x;
  background-position: 0% bottom;
  animation: animTown 15s infinite linear;
  background-size: contain;
}
@-webkit-keyframes animTown {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-1941px);
  }
}
.contacts-block-wrapper {
  padding: 40px 0 0;
  position: relative;
  z-index: 10;
}
.contacts-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 18px;
  background: #fff;
  border: 1px solid #263238;
  border-radius: 10px;
  box-shadow: -7px 7px #B1A7A6;
  margin: 0 0 80px;
  position: relative;
  z-index: 40;
}
@media (max-width: 1199px) {
  .contacts-block-list {
    margin: 20px 0;
  }
}
.contacts-block-list li {
  font-family: "MontserratLight" !important;
  width: 90%;
  display: flex;
  align-items: center;
}
.contacts-block-list li:before {
  display: none;
}
@media (max-width: 991px) {
  .contacts-block-list li {
    width: 100%;
  }
}
.contacts-block-list li i {
  font-size: 30px;
}
@media (max-width: 991px) {
  .contacts-block-list li i {
    font-size: 20px;
  }
}
.contacts-block-list li a {
  display: block;
  margin-left: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
}
@media (max-width: 991px) {
  .contacts-block-list li a {
    margin-left: 16px;
    font-size: 16px;
    line-height: 22px;
  }
}
.contacts-block-list li span {
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
}
@media (max-width: 1360px) and (min-width: 991px) {
  .contacts-block-list li span {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .contacts-block-list li span {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 768px) and (max-width: 767px) and (min-width: 513px) {
  .contacts-block-list li span br {
    display: none;
  }
}
.contacts-block-list li:not(:last-of-type) {
  margin-bottom: 30px;
}
.contacts-block-list li:first-child i {
  margin-right: 25px;
}
.contacts-block-list:before {
  content: "";
  width: 285px;
  height: 205px;
  background: url("images/superman.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: -60%;
  left: 10%;
  animation: moveUpDown 5s infinite linear;
  z-index: 21;
}
@media (max-width: 1199px) {
  .contacts-block-list:before {
    top: 15%;
    left: 115%;
  }
}
@media (max-width: 991px) {
  .contacts-block-list:before {
    left: 100%;
  }
}
@media (max-width: 767px) {
  .contacts-block-list:before {
    display: none;
  }
}
.contacts-block-map-wrap {
  border: 1px solid #263238;
  border-radius: 10px;
  box-shadow: -7px 7px #B1A7A6;
  position: relative;
  z-index: 40;
  width: 100%;
  padding: 10px;
  background: #fff;
}
@media (max-width: 767px) {
  .contacts-block-map-wrap {
    width: 100%;
    z-index: 39;
  }
}
.contacts-block-map {
  width: 100%;
  height: 660px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
}
.contacts-block-map .ymaps-2-1-79-map {
  width: 100%;
}
.speed-line {
  position: absolute;
  width: 70px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 20;
}
.speed-line__variant1 {
  background-image: url("images/speed-line.svg");
}
.speed-line__variant2 {
  background-image: url("images/speed-two-lines.svg");
}
.speed-line__variant3 {
  background-image: url("images/speed-two-lines-small.svg");
  width: 23px;
}
@keyframes animSpeedLine {
  from {
    right: 25%;
  }
  to {
    right: 100%;
  }
}
@keyframes moveUpDown {
  from {
    transform: translateY(0);
  }
  25% {
    transform: translateY(1.56rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-1.56rem);
  }
  to {
    transform: translateY(0);
  }
}
.about__banner {
  background-image: url(/local/templates/rutego/images/about-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  max-height: 1000px;
}
.about__banner .about__heading {
  padding: 60px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: -0.5rem 0.5rem #E5383B;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .about__banner .about__heading {
    padding: 60px;
    width: 90%;
  }
}
.about__banner h1 {
  color: #fff;
  text-shadow: -3px 3px 0px rgba(211, 211, 211, 0.78);
  line-height: 1.24;
  margin: 0 auto;
  width: fit-content;
  text-transform: inherit;
}
@media (min-width: 1200px) {
  .about__banner h1 {
    font-size: 48px;
  }
}
.about__banner h1::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: #E5383B;
  border-radius: 25px;
  top: 5px;
  position: absolute;
  left: -25px;
}
.about__banner h1::after {
  content: "";
  color: #fff;
  font-family: "MontserratMedium";
  text-shadow: 0 -1px 0 #4b4b4b, 0 -1px 0 #4b4b4b, 0 1px 0 #4b4b4b, 0 1px 0 #4b4b4b, -1px 0 0 #4b4b4b, 1px 0 0 #4b4b4b, -1px 0 0 #4b4b4b, 1px 0 0 #4b4b4b, -1px -1px 0 #4b4b4b, 1px -1px 0 #4b4b4b, -1px 1px 0 #4b4b4b, 1px 1px 0 #4b4b4b, -1px -1px 0 #4b4b4b, 1px -1px 0 #4b4b4b, -1px 1px 0 #4b4b4b, 1px 1px 0 #4b4b4b;
  position: absolute;
  top: 0px;
  left: 0px;
}
.about__work {
  color: #263238;
}
.about__work .about-work__heading {
  font-size: 30px;
  font-family: "MontserratBold" !important;
}
@media (min-width: 768px) {
  .about__work .about-work__heading {
    min-height: 65px;
  }
}
@media (max-width: 991px) {
  .about__work .about-work__heading {
    line-height: 2rem;
  }
}
@media (min-width: 992px) {
  .about__work .about-work__heading {
    line-height: 3rem;
  }
}
.about__work .about-work__text {
  font-family: "MontserratMedium" !important;
}
.black-line {
  width: 185px;
  height: 8px;
  background-color: #263238;
}
.about-our-company_bg {
  background: url(/local/templates/rutego/images/about-our-company1.png) 60%, url(/local/templates/rutego/images/about-our-company2.png) 60%;
  background-repeat: no-repeat, no-repeat;
  background-position-x: right, left;
  background-position-y: top, bottom;
}
@media (max-width: 1199px) {
  .about-our-company_bg {
    background-position-x: left, right;
  }
}
.about-our-company_bg .our-company__text {
  color: #555C60;
  background-image: url(/local/templates/rutego/images/about-arrow.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 100%;
  height: 100%;
  width: 100%;
}
.about-our-company_bg .our-company-text_big {
  font-size: 130px;
  font-family: "MontserratBold" !important;
}
@media (max-width: 991px) {
  .about-our-company_bg .our-company-text_big {
    font-size: 50px;
  }
}
.about-our-company_bg .our-company-text_small {
  font-size: 25px;
  font-family: "MontserratBold" !important;
  background-color: #fff;
}
.about__partners .about-partners__block {
  border: 1px solid #000;
  min-height: 150px;
  padding: 35px 80px;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .about__partners .about-partners__block {
    padding: 35px;
  }
}
.about__partners .about-partners__block .owl-stage {
  display: flex;
  align-items: center;
}
.about__partners .about-partners__block .owl-stage .owl-item {
  display: flex;
  justify-content: center;
}
.about__partners .about-partners__block .owl-stage .owl-item img {
  width: unset;
}
.about__partners .partners-boy {
  bottom: -15px;
  left: -50px;
  z-index: 99;
}
@media (max-width: 890px) {
  .about__partners .partners-boy {
    display: none;
  }
}
@media (min-width: 891px) and (max-width: 991px) {
  .about__partners .partners-boy {
    left: -110px;
  }
}
.about__partners .partners-girl {
  bottom: -15px;
  right: -20px;
  z-index: 99;
}
@media (max-width: 890px) {
  .about__partners .partners-girl {
    display: none;
  }
}
@media (min-width: 891px) and (max-width: 991px) {
  .about__partners .partners-girl {
    right: -100px;
  }
}
.about__partners .about-partners__logo {
  max-width: 200px;
}
.about__partners .about-partners__logo.yandex {
  max-width: 140px;
}
.about__partners .background-under {
  bottom: -8px;
  left: 0;
  right: 0;
}
.about-history__year .nav-tabs {
  border: none;
}
.about-history__year .nav-item::before {
  display: none;
}
.about-history__year .nav-link {
  background-color: unset;
  border: none;
  font-family: "MontserratBold";
  font-size: 30px;
  line-height: 37px;
  color: #263238;
}
.about-history__year .nav-link.active {
  border-bottom: 3px solid #E5383B;
  font-size: 38px;
  line-height: 46px;
  color: #263238;
}
.about-history__year .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-history__year .owl-nav {
  position: absolute;
  top: 25%;
  left: -60px;
  right: -60px;
  display: flex;
  justify-content: space-between;
  z-index: -9;
}
@media (max-width: 991px) {
  .about-history__year .owl-nav {
    left: -40px;
    right: -40px;
  }
}
.about-history__year .owl-nav .owl-prev span,
.about-history__year .owl-nav .owl-next span {
  display: none;
}
.about-history__year .owl-nav button {
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  width: 76px;
  height: 22px;
}
.about-history__year .owl-nav .owl-prev {
  background-image: url(/local/templates/rutego/images/nav-arrow.png) !important;
}
.about-history__year .owl-nav .owl-prev.disabled {
  visibility: hidden;
}
.about-history__year .owl-nav .owl-next {
  background-image: url(/local/templates/rutego/images/nav-arrow.png) !important;
  transform: rotate(180deg);
}
.about-history__year .owl-nav .owl-next.disabled {
  visibility: hidden;
}
.about-history__content .year__content {
  border: 1px solid #000;
  min-height: 240px;
  max-width: 435px;
  width: 100%;
}
@media (max-width: 1199px) {
  .about-history__content .year__content {
    left: 50%;
    transform: translate(-50%);
  }
}
.about-history__content .year__content > .active {
  display: flex !important;
}
.about-history__content .year__content p {
  font-size: 21px;
  line-height: 30px;
  font-family: "MontserratRegular" !important;
  color: #000;
  padding: 0px 20px 20px;
}
.about-history__content .year__content img {
  max-height: 130px;
}
.about-history__content .year__content .content__inner {
  top: 10px;
  bottom: 0;
  right: 0;
}
.year__content__background-left {
  background: #D3D3D3;
  left: -20px;
  bottom: 0;
  top: 4px;
  height: 100%;
  z-index: -9;
  transform: skewY(-25deg);
  width: 20px;
  border: 1px solid #000;
  z-index: 9;
  border-bottom: none;
}
.background-under_wrapper {
  overflow: hidden;
  bottom: -10px;
  left: -20px;
  right: 0;
  padding-right: 7px;
}
.background-under_main {
  height: 10px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  background: repeating-linear-gradient(-90deg, #000 0, #000 2px, #D3D3D3 1px, #D3D3D3 10px);
  transform: skewX(-65deg);
}
.white-line {
  width: 185px;
  height: 8px;
  background-color: #fff;
}
.about__clients {
  background-color: #555C60;
  color: #fff;
}
.about__clients .bg-beige {
  background-color: #555C60 !important;
}
.about__clients h4 {
  color: #000;
}
.bottom-form-block__img {
  background: url("../include/images/subscribe-bg.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  .bottom-form-block__img {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .bottom-form-block__img img {
    margin-top: 50%;
  }
}
@media (max-width: 767px) {
  .bottom-form-block__text {
    text-align: center;
  }
  .bottom-form-block__text h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.bottom-form-block-input__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .bottom-form-block-input__wrap {
    justify-content: center;
  }
}
.bottom-form-block-input__wrap p {
  font-size: 1.88rem;
  line-height: 2.63rem;
  margin: 0 1.25rem 0 0;
}
@media (max-width: 991px) {
  .bottom-form-block-input__wrap p {
    font-size: 1.48rem;
  }
}
@media (max-width: 767px) {
  .bottom-form-block-input__wrap p {
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0 0 1rem 0;
  }
}
.bottom-form-block-input__wrap .input-wrap {
  flex-grow: 1;
  box-shadow: -5px 5px #E5E5E5;
  border: 1px solid #263238;
  margin-right: 20px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .bottom-form-block-input__wrap .input-wrap {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.bottom-form-block-input__wrap .input-wrap input {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  padding: 15px 20px;
  border: none;
  outline: none;
  border-radius: 10px;
}
.bottom-form-block-input__wrap .input-wrap input::placeholder {
  color: #D3D3D3;
}
@media (max-width: 991px) {
  .bottom-form-block-input__wrap .input-wrap input {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.text-area-wrap {
  display: flex;
  min-height: 200px;
  box-shadow: -5px 5px #E5E5E5;
  border: 1px solid #263238;
  border-radius: 10px;
}
.text-area-wrap textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 15px 20px;
  border-radius: 10px;
  resize: none;
}
.price__section a {
  color: #263238;
}
.price__section__item {
  border: 1px solid #263238;
  box-shadow: -5px 5px #E5E5E5;
  border-radius: 10px;
}
.price__section__item img {
  height: 200px;
  object-fit: contain;
}
.price__section__item:hover {
  transform: scale(1.015);
  transition: all 0.5s;
}
.line {
  max-width: 32.81rem;
  height: 0.31rem;
  background: #263238;
  margin: 3.13rem auto;
}
@media (max-width: 767px) {
  .line {
    margin: 40px auto 10px;
  }
}
@media (max-width: 991px) {
  div.clients {
    width: 85%;
    margin: 0 auto;
  }
}
div.clients .owl-item {
  padding: 0 20px;
}
div.clients .owl-nav {
  position: absolute;
  top: calc(50% - 30px);
  display: flex !important;
  justify-content: space-between;
  width: 105%;
  z-index: -1;
}
@media (max-width: 575px) {
  div.clients .owl-nav {
    width: 125%;
    margin: 0 0 20px 0;
  }
}
div.clients .owl-nav button {
  font-size: 40px !important;
  z-index: 1000;
  width: 25px;
}
div.clients .owl-dots {
  display: none;
}
div.clients img {
  height: 175px;
  border-radius: 10px;
}
div.clients a {
  position: relative;
  z-index: 10;
}
.services-top-block {
  background-repeat: no-repeat;
  background-position: 100% center;
  margin-bottom: 8.13rem;
}
@media (max-width: 767px) {
  .services-top-block .btn--red {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }
}
.services-top-block.development {
  background: url("/local/templates/rutego/images/services-top-block-bg.svg") no-repeat;
  background-position: 12% center;
  background-size: contain;
}
@media (max-width: 767px) {
  .services-top-block.development {
    --bs-gutter-x: 0px;
  }
}
@media (max-width: 991px) {
  .services-top-block {
    margin-bottom: 4rem;
  }
}
.services-top-block p {
  line-height: 1.5;
  text-indent: 0;
  text-align: start;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .services-top-block p {
    text-align: center;
  }
}
.services-top-block p:last-of-type {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .services-top-block p:last-of-type {
    margin-bottom: 1.5rem;
    font-size: 20px;
  }
}
.services-top-block p.modification__desc {
  border: 1px solid #000;
  box-shadow: -0.5rem 0.5rem #E5383B;
  padding: 10px 15px;
  margin: 50px 0;
}
@media (max-width: 991px) {
  .services-top-block p {
    font-size: 20px;
    line-height: 1.5;
  }
}
.services-top-block img {
  max-height: 450px;
  object-fit: contain;
}
.services-online-store-block p {
  font-size: 2.38rem;
  line-height: 2.88rem;
  text-indent: 0;
}
.services-updating-site-top-block p {
  line-height: 1.5;
  text-align: start;
  margin-bottom: 1rem;
}
.services-updating-site-top-block p:last-of-type {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .services-updating-site-top-block p:last-of-type {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .services-updating-site-top-block p {
    font-size: 20px;
    line-height: 1.5;
  }
}
.services-updating-site-top-block img {
  max-height: 350px;
}
.services-tech-support-top-block p {
  font-size: 2.38rem;
  line-height: 2.88rem;
  text-indent: 0;
  text-align: start;
}
@media (max-width: 991px) {
  .services-tech-support-top-block p {
    font-size: 1.38rem;
    line-height: 1.25;
  }
}
@media (max-width: 575px) {
  .services-tech-support-top-block p {
    width: 70%;
  }
}
@media (max-width: 430px) {
  .services-tech-support-top-block {
    background-position-y: 60% !important;
  }
}
.services-bitrix-license-top-block p {
  font-size: 2.38rem;
  line-height: 2.88rem;
}
.services-contextual-advertising-top-block p {
  font-size: 2.38rem;
  line-height: 2.88rem;
}
.owl-carousel .owl-item img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}
.diff-block {
  position: relative;
}
.diff-block::before {
  content: "";
  left: 50%;
  top: 0;
  position: absolute;
  width: 235px;
  height: 580px;
  background-image: url("./images/vs-img.svg");
}
.redesign {
  text-indent: unset !important;
}
.redesign .top-block {
  background: url(/local/templates/rutego/images/title-block.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  height: 700px;
  background-size: 60%;
}
@media (max-width: 1200px) {
  .redesign .top-block {
    height: auto;
    background-position: center right;
  }
}
.redesign .advantages {
  background-image: url("../images/advantages-bg-top.svg"), url("../images/advantages-bg-bottom.svg");
  background-repeat: no-repeat;
  background-position: 95% 33%, 0 85%;
}
.redesign .redesign-block__inner {
  background-image: url(/local/templates/rutego/images/bacground-redising.png);
  background-repeat: no-repeat;
  height: 800px;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1490px) {
  .redesign .redesign-block__inner {
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 1200px) {
  .redesign .redesign-block__inner {
    align-items: start;
    padding-top: 60px;
  }
}
@media (max-width: 567px) {
  .redesign .redesign-block__inner {
    align-items: center;
    padding-top: 0;
  }
}
.redesign .hands-slider {
  position: relative;
  bottom: -50px;
}
@media (max-width: 1490px) {
  .redesign .hands-slider {
    bottom: -30px;
  }
}
@media (max-width: 567px) {
  .redesign .hands-slider {
    display: none;
  }
}
.redesign .redesign-block__slider {
  width: 70%;
  height: 80%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .redesign .redesign-block__slider {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .redesign .redesign-block__slider {
    width: 90%;
  }
}
@media (max-width: 567px) {
  .redesign .redesign-block__slider {
    width: 95%;
  }
}
.redesign .redesign-block__slider .slider-wrapper {
  width: 100%;
  height: 100%;
  z-index: 9;
}
.redesign .redesign-block__slider .slider-wrapper .twentytwenty-wrapper {
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.redesign .redesign-block__slider .slider-wrapper .twentytwenty-wrapper #redesign-slider {
  width: 95%;
  height: 95% !important;
  border: 20px solid black;
  border-image: url(/local/templates/rutego/images/planshet.png) 20 round;
}
.redesign .redesign-block__slider .slider-wrapper .twentytwenty-wrapper #redesign-slider img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.redesign .redesign-block__slider .podstavka {
  position: absolute;
  bottom: -185px;
  z-index: 1;
}
@media (max-width: 567px) {
  .redesign .redesign-block__slider .podstavka {
    display: none;
  }
}
.redesign .sentence-block {
  background-image: url(/local/templates/rutego/images/bacground-redes.png);
  background-repeat: no-repeat;
  height: 100%;
  background-position: 50% 25%;
}
.redesign .sentence-block .sentence-block-container-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.redesign .sentence-block .sentence-block-container-wrapper .sentence-block-container_bg {
  background-color: #555c60;
  padding: 30px;
  height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.redesign .sentence-block .sentence-block__list {
  list-style-image: url(/local/templates/rutego/images/marker-li.png);
  padding-left: 80px;
}
.redesign .sentence-block .sentence-block__list li {
  padding-left: 20px;
}
.redesign .sentence-block .sentence-block__list li::before {
  display: none;
}
.redesign .sentence-block .sentence-block__list .list-minus {
  list-style-image: url(/local/templates/rutego/images/minus.png);
}
.input-wrap-d-none {
  display: none;
}
#certificates .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#certificates .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #E5E5E5;
  margin: 0 5px;
  border-radius: 5px;
}
#certificates .owl-dots .owl-dot.active {
  background-color: #444B51;
}
.price-of-services-item-wrap .price-of-services-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 15px;
  background: #fff;
  color: #263238;
  border: 1px solid #263238;
  border-width: 2px;
  min-height: unset;
}
.price-of-services-item-wrap .price-of-services-item ul {
  list-style-type: none;
  margin-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .price-of-services-item-wrap .price-of-services-item ul {
    margin-top: 65px;
  }
}
.price-of-services-item-wrap .price-of-services-item ul li {
  text-align: left;
  line-height: 1.5;
  position: relative;
}
.price-of-services-item-wrap .price-of-services-item ul li::before {
  content: "\f067";
  display: flex;
  width: 0.6em;
  height: 0.6em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: none;
  box-shadow: none;
  color: #E5383B;
  top: 6px;
  list-style-type: none;
  margin-bottom: 0;
  line-height: 20px;
  position: absolute;
  left: -30px;
}
.price-of-services-item-wrap .price-of-services-item .heading {
  background: #fff;
  top: -20px;
  left: -2px;
  color: #E5383B;
  padding: 0 20px;
  font-size: 30px;
}
@media (max-width: 767px) {
  .price-of-services-item-wrap .price-of-services-item .heading {
    font-size: 20px;
  }
}
.price-of-services-item-wrap .price-of-services-item .heading .price-of-services-item-plus {
  margin-top: 30px;
  padding-bottom: 30px;
}
.price-of-services-item-wrap .price-of-services-item ._price-block {
  display: flex;
  align-items: baseline;
  background-color: #fff;
  padding: 0 20px;
  bottom: -30px;
  right: -100px;
}
@media (max-width: 1299px) {
  .price-of-services-item-wrap .price-of-services-item ._price-block {
    right: -30px;
  }
}
@media (max-width: 575px) {
  .price-of-services-item-wrap .price-of-services-item ._price-block {
    flex-direction: column;
    bottom: -50px;
  }
}
.price-of-services-item-wrap .price-of-services-item ._price-block .__old {
  font-size: 38px;
  margin-right: 40px;
  white-space: pre;
  position: relative;
  display: inline-block;
  font-family: "MontserratBold";
  font-weight: unset;
  color: #000;
}
@media (max-width: 575px) {
  .price-of-services-item-wrap .price-of-services-item ._price-block .__old {
    font-size: 24px;
  }
}
.price-of-services-item-wrap .price-of-services-item ._price-block .__old::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  color: #E5383B;
  width: 100%;
  height: 0;
  border-bottom: 5px solid #E5383B;
  transform: rotate(-10deg);
}
.price-of-services-item-wrap .price-of-services-item ._price-block .__action {
  background-color: #242e33;
  padding: 0 44px;
  font-weight: unset;
  font-family: "MontserratExtraBold";
  color: #E5383B;
  font-size: 40px;
  border-radius: 10px;
}
.price-of-services-item-wrap ._bottom-block {
  position: relative;
  left: 78px;
  margin-top: 48px;
}
@media (max-width: 1299px) {
  .price-of-services-item-wrap ._bottom-block {
    left: 8px;
  }
}
@media (max-width: 575px) {
  .price-of-services-item-wrap ._bottom-block {
    margin-top: 65px;
  }
}
.price-of-services-item-wrap__main__picture {
  margin-left: 50px;
  margin-top: 70px;
}
@media (max-width: /*(min-width: 1200px) and*/ /*(min-width: 1200px) and*/ 1399px) {
  .price-of-services-item-wrap__main__picture {
    margin-left: 50px;
    margin-top: 172px;
  }
}
@media (max-width: 1299px) {
  .price-of-services-item-wrap__main__picture {
    margin-left: -19px;
  }
}
@media (max-width: 1199px) {
  .price-of-services-item-wrap__main__picture {
    margin: 60px auto 0;
  }
}
.price-of-services-item-wrap__main__picture img {
  display: block;
  max-width: 100%;
  height: auto;
  z-index: 100;
  position: relative;
}
div.privacy-policy h3 {
  margin-top: 60px;
}
div.privacy-policy table td {
  border-width: 1px;
}
footer .footer-copyright-privacy {
  flex-direction: column;
}
footer .footer-copyright-privacy a {
  display: block;
  color: #8e8e8e;
  font-size: 16px;
}
footer .menu_bottom ul {
  list-style-type: none;
}
footer .menu_bottom div,
footer .menu_bottom a {
  display: block;
  color: #8e8e8e;
  font-size: 16px;
}
.seo_rutego {
  padding-bottom: 50px;
}
.seo_rutego_box {
  display: flex;
  justify-content: space-around;
}
.seo_rutego_box_header span {
  font-weight: 700;
}
div.locking {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(2.5px);
  z-index: 20000;
  display: none;
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  margin-top: 180px;
}
@media (max-width: 575px) {
  div.locking {
    top: 205px;
  }
}
div.on {
  display: block;
}
.off_scroll {
  overflow-y: hidden;
}
.hero {
  padding: 80px 0;
  background: #263238;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom -70px center;
  min-height: 600px;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 900px;
  }
}
@media (min-width: 1600px) {
  .hero {
    background-image: url(/local/templates/rutego/images/hero-bg.svg);
  }
}
@media (min-width: 1600px) {
  .hero__inner {
    flex-direction: column;
  }
}
.hero::before {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1px;
  background-size: cover;
  width: 100%;
  left: 0;
  height: 200px;
  z-index: 10;
}
@media (min-width: 1600px) {
  .hero::before {
    background-image: url("/local/templates/rutego/images/hero-bg-bottom.svg");
  }
}
.hero__content {
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .hero__content {
    margin: 0;
  }
}
.hero__content h1 {
  font-family: "InterBold" !important;
  text-transform: initial;
  font-size: 29px;
  text-align: center;
}
@media (min-width: 440px) {
  .hero__content h1 {
    font-size: 40px;
  }
}
@media (min-width: 578px) {
  .hero__content h1 {
    font-size: 52px;
  }
}
@media (min-width: 991px) {
  .hero__content h1 {
    font-size: 68px;
    text-align: left;
  }
}
.hero__content h1 span {
  color: #E5383B;
}
.hero__img {
  position: relative;
}
.hero p {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 135.4%;
  letter-spacing: 0.08em;
  color: rgba(237, 237, 237, 0.9);
}
@media (min-width: 440px) {
  .hero p {
    font-size: 18px;
  }
}
@media (min-width: 578px) {
  .hero p {
    font-size: 20px;
  }
}
@media (min-width: 991px) {
  .hero p {
    font-size: 24px;
    text-align: left;
  }
}
.hero .faq {
  flex-direction: column;
  margin-top: 30px;
  z-index: 10;
}
@media (min-width: 991px) {
  .hero .faq {
    margin-top: 0;
  }
}
@media (max-width: 1517px) {
  .hero .faq {
    flex-direction: column;
  }
}
@media (min-width: 1600px) {
  .hero .faq {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    margin-top: 270px;
  }
}
.hero .faq-item {
  display: flex;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 12px;
  padding-left: 111px;
  padding-right: 15px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  background: #E5383B;
  min-height: 70px;
  border-radius: 40px;
  max-width: 400px;
  width: 100%;
}
@media (min-width: 576px) {
  .hero .faq-item {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 117px;
    min-height: 126px;
  }
}
.hero .faq-item p {
  margin: 0;
  font-family: "InterBold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 124.5%;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-line;
}
@media (min-width: 576px) {
  .hero .faq-item p {
    font-size: 20px;
  }
}
.hero .faq-item.faq-item-1 {
  background-image: url("/local/templates/rutego/images/faq-1.svg");
  background-size: 45px 40px;
  background-repeat: no-repeat;
  background-position: top 45% left 35px;
}
@media (min-width: 576px) {
  .hero .faq-item.faq-item-1 {
    background-size: 62px 60px;
  }
}
.hero .faq-item.faq-item-2 {
  background-image: url("/local/templates/rutego/images/faq-2.svg");
  background-size: 38px 43px;
  background-repeat: no-repeat;
  background-position: top 45% left 35px;
  position: relative;
}
@media (min-width: 576px) {
  .hero .faq-item.faq-item-2 {
    background-size: 42px 62px;
  }
}
.hero .faq-item.faq-item-2::after {
  content: "";
  background-image: url("/local/templates/rutego/images/Character.svg");
  background-repeat: no-repeat;
  display: none;
  position: absolute;
  bottom: -68px;
  background-size: contain;
  width: 90px;
  right: -84px;
  height: 253px;
  z-index: 10;
}
@media (min-width: 1626px) {
  .hero .faq-item.faq-item-2::after {
    display: block;
  }
}
.hero .faq-item.faq-item-3 {
  white-space: nowrap;
  background-image: url("/local/templates/rutego/images/faq-3.svg");
  background-repeat: no-repeat;
  background-position: top 45% left 35px;
  background-size: 47px 43px;
}
@media (min-width: 576px) {
  .hero .faq-item.faq-item-3 {
    background-size: 65px 65px;
  }
}
.modification {
  padding-top: 163px;
  padding-bottom: 50px;
  color: #fff;
  min-height: 900px;
  position: relative;
  overflow: hidden;
}
.modification__container {
  position: relative;
}
.modification::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(14, 20, 23, 0.85), rgba(14, 20, 23, 0.85));
  background-repeat: no-repeat;
  background-size: cover;
}
.modification video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.modification__content {
  position: relative;
  z-index: 100;
}
.modification__left p {
  font-weight: 400;
  font-size: 24px;
  line-height: 132.5%;
  letter-spacing: 0.01em;
  margin-bottom: 73px;
}
.modification__left p span {
  font-family: "InterBold" !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 132.5%;
  color: #e56363;
}
.modification__right {
  padding-top: 97px;
}
.modification__btn-buy {
  font-family: "InterBold" !important;
  padding-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  bottom: -126px;
  right: 25%;
  width: 247px;
  height: 247px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  line-height: 132.5%;
  color: #fff;
  background: #f01f01;
  z-index: 101;
  cursor: pointer;
}
.modification__title {
  margin-bottom: 84px;
}
.modification__title h1 {
  font-weight: 800;
  font-size: 84px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.modification__title h1 span {
  padding-left: 146px;
}
.modification__title h1::before {
  content: "любого уровня сложностии";
  font-family: "InterRegular" !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 128.5%;
  letter-spacing: 0.01em;
  color: #e56363;
  max-width: 165px;
  display: inline-block;
  position: absolute;
  top: 44px;
  left: 0;
  text-transform: lowercase;
}
.modification__list {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 15px;
}
.modification__list li {
  font-weight: 700;
  font-size: 18px;
  line-height: 132.5%;
  padding: 17px 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 40px;
}
.modification__stack {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 51px 62px;
}
.vs {
  padding-top: 63px;
  padding-bottom: 100px;
  position: relative;
}
.vs h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  text-transform: lowercase;
  letter-spacing: 0.025em;
  color: #263238;
  margin-bottom: 46px;
}
@media (min-width: 1200px) {
  .vs h3 {
    font-size: 36px;
  }
}
.vs h3::first-letter {
  text-transform: uppercase;
}
.vs__img {
  margin: auto;
  width: 235px;
  height: 582px;
  background-image: url("/local/templates/rutego/images/vs-img.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  bottom: 40px;
}
.vs__list {
  list-style: none;
  padding: 0;
}
.vs__list li:not(:last-child) {
  margin-bottom: 15px;
}
.vs__list-sum {
  width: 100%;
  margin-top: 66px;
}
.vs__content-box {
  margin: auto;
  text-align: center;
  max-width: 910px;
}
.vs__content-box h2 {
  font-family: "InterExtraBold" !important;
  margin-bottom: 2rem;
  font-weight: 800;
  font-size: 48px;
  line-height: 131.4%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.vs__content-box h2 span {
  color: #E5383B;
}
@media (max-width: 430px) {
  .vs__content-box h2 {
    font-size: 24px;
  }
}
.vs__content-box p {
  font-size: 1.5rem;
}
.dart {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #263238;
  background-image: url("/local/templates/rutego/images/dart-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.dart__top {
  position: relative;
}
.dart__top::after {
  content: "";
  display: none;
  position: absolute;
  top: -281px;
  right: 70px;
  background-image: url("/local/templates/rutego/images/dart.svg");
  background-repeat: no-repeat;
  width: 769px;
  height: 638px;
  z-index: 1;
}
@media (min-width: 1405px) {
  .dart__top::after {
    display: block;
  }
}
.dart__content-box {
  margin: auto;
  text-align: center;
  max-width: 910px;
  margin-bottom: 100px;
}
@media (min-width: 750px) {
  .dart__content-box {
    margin-bottom: 206px;
  }
}
.dart__content-box h2 {
  font-family: "InterExtraBold" !important;
  font-weight: 800;
  font-size: 22px;
  line-height: 158.9%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
}
.dart__content-box h2 span {
  color: #E5383B;
}
@media (min-width: 400px) {
  .dart__content-box h2 {
    font-size: 26px;
  }
}
@media (min-width: 991px) {
  .dart__content-box h2 {
    font-size: 40px;
  }
}
.dart__content-box p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
.dart__title {
  font-family: "InterBold" !important;
  max-width: 866px;
  padding-bottom: 80px;
  font-weight: 800;
  font-size: 84px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
@media (max-width: 556px) {
  .dart__title {
    font-size: 56px;
  }
}
.dart__title span {
  color: #E5383B;
}
.dart__box-items {
  display: flex;
  column-gap: 20px;
}
.dart__box-list {
  flex-grow: 1;
  list-style: none;
  padding: 0;
  position: relative;
}
.dart__list-item {
  font-family: "InterMedium" !important;
  padding-left: 55px;
  position: relative;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 556px) {
  .dart__list-item {
    font-size: 16px;
    padding-left: 40px;
  }
}
@media (max-width: 390px) {
  .dart__list-item {
    font-size: 14px;
  }
}
.dart__list-item::before {
  content: "";
  position: absolute;
  background-image: url("/local/templates/rutego/images/white-galk.svg");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 17px;
  left: 0;
  top: 5px;
}
@media (min-width: 576px) {
  .dart__list-item::before {
    width: 32px;
    height: 22px;
  }
}
@media (max-width: 390px) {
  .dart__list-item::before {
    width: 20px;
  }
}
.dart__list-item--not {
  opacity: 0.8;
}
.dart__list-item--not::before {
  background-image: url("/local/templates/rutego/images/dark-krest.svg");
}
.dart__list-item:not(:last-child) {
  margin-bottom: 10px;
}
.dart__box-title {
  font-family: "InterBold" !important;
  max-width: 431px;
  flex-grow: 2;
  text-align: center;
  margin-bottom: 58px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media (min-width: 556px) {
  .dart__box-title {
    font-size: 32px;
  }
}
.dart__list-sum {
  margin-top: 58px;
  padding: 14px 23px;
}
@media (min-width: 576px) {
  .dart__list-sum {
    padding: 14px 43px;
  }
}
.dart__list-btn {
  margin-top: 58px;
  width: 100%;
  background: #fff;
}
.dart__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  padding: 70px 100px;
  min-height: 900px;
  background: #ef5f61;
  border: 1.55642px solid #263238;
  box-shadow: -15.5642px 15.5642px 0px rgba(211, 211, 211, 0.78);
  z-index: 5;
  color: #fff;
}
@media (max-width: 556px) {
  .dart__box {
    padding: 70px 20px;
    min-height: 600px;
  }
}
.dart__box--white {
  position: relative;
  color: #263238;
  background-color: white;
}
.dart__box--white .dart__list-item::before {
  background-image: url("/local/templates/rutego/images/black-galk.svg");
}
.dart__box--white .dart__list-item--not::before {
  background-image: url("/local/templates/rutego/images/dark-krest.svg");
}
.dart__box:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 556px) {
  .dart__box:not(:last-child) {
    margin-right: 0;
  }
}
.air-block {
  min-height: 528px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1.5px solid #263238;
  box-shadow: -15.5642px 15.5642px 0px rgba(211, 211, 211, 0.78);
  padding: 50px 10px 66px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.air-block__content {
  max-width: 558px;
}
.air-block h2 {
  font-family: "InterBold" !important;
  font-weight: 700;
  font-size: 25px;
  line-height: 158.9%;
  text-align: center;
  letter-spacing: -0.02em;
}
.air-block h2 span {
  color: #E5383B;
}
@media (min-width: 500px) {
  .air-block h2 {
    font-size: 36px;
  }
}
.air-block p {
  margin-bottom: 41px;
}
.air-block::before {
  content: "";
  display: none;
  position: absolute;
  background-image: url("/local/templates/rutego/images/shape-gray.svg");
  background-repeat: no-repeat;
  width: 606px;
  height: 575px;
  left: -3px;
  bottom: -350px;
}
@media (min-width: 1075px) {
  .air-block::before {
    display: block;
  }
}
.air-block::after {
  content: "";
  display: none;
  position: absolute;
  background-image: url("/local/templates/rutego/images/shape-gray.svg");
  background-repeat: no-repeat;
  width: 606px;
  height: 575px;
  right: -93px;
  top: -330px;
  transform: rotate(180deg);
}
@media (min-width: 1075px) {
  .air-block::after {
    display: block;
  }
}
.mobile {
  min-height: 957px;
  padding-top: 107px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right -95px center;
}
@media (min-width: 1250px) {
  .mobile {
    background-image: url("/local/templates/rutego/images/mob-bg.png");
  }
}
.mobile__img {
  position: relative;
}
@media (min-width: 768px) {
  .mobile__img {
    left: 115px;
  }
}
.mobile__block-info {
  max-width: 563px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.mobile__block-info::after {
  content: "";
  width: 747px;
  height: 480px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -47px;
  left: 89px;
}
@media (min-width: 1600px) {
  .mobile__block-info::after {
    background-image: url("/local/templates/rutego/images/sumk-icons.svg");
  }
}
.mobile__title {
  font-family: "InterExtraBold" !important;
  font-weight: 800;
  font-size: 30px;
  line-height: 158.9%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #263238;
  margin-bottom: 40px;
}
@media (min-width: 568px) {
  .mobile__title {
    font-size: 36px;
  }
}
.mobile__title span {
  color: #E5383B;
}
.mobile__desc {
  margin-bottom: 61px;
}
.mobile__block-sub {
  width: 100%;
  margin-bottom: 41px;
}
.mobile__btn {
  width: 100%;
  max-width: 450px;
}
.contact {
  padding-top: 10px;
  padding-bottom: 60px;
  min-height: 653px;
  background: #263238 url("/local/templates/rutego/images/contact-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 991px) {
  .contact {
    padding-top: 89px;
  }
}
.contact__form-title {
  font-family: "InterBold" !important;
  font-weight: 700;
  font-size: 30px;
  line-height: 128%;
}
@media (min-width: 578px) {
  .contact__form-title {
    font-size: 36px;
  }
}
.contact__info {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .contact__info {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .contact__info {
    top: 50px;
  }
}
.contact__title {
  font-family: "InterExtraBold" !important;
  font-weight: 800;
  font-size: 26px;
  line-height: 45px;
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 400px) {
  .contact__title {
    font-size: 28px;
  }
}
@media (min-width: 499px) {
  .contact__title {
    font-size: 40px;
  }
}
@media (min-width: 578px) {
  .contact__title {
    line-height: 56px;
  }
}
@media (min-width: 992px) {
  .contact__title {
    font-size: 38px;
    text-align: left;
    line-height: 56px;
  }
}
@media (min-width: 1200px) {
  .contact__title {
    font-size: 54px;
    line-height: 84px;
  }
}
.contact__title span {
  color: #E5383B;
}
.contact__desc {
  max-width: 666px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 51px;
}
@media (min-width: 568px) {
  .contact__desc {
    font-size: 20px;
  }
}
.contact__sub-block {
  max-width: 257px;
}
@media (max-width: 992px) {
  .contact__sub-block {
    margin: 0 auto;
  }
}
.contact__top {
  padding: 37px 0;
  background: #263238;
}
@media (min-width: 1459px) {
  .contact__top {
    min-height: 57px 0;
  }
}
.contact__form-box {
  padding: 38px;
  min-height: 512px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
}
.contact__bottom {
  display: none;
}
@media (min-width: 1459px) {
  .contact__bottom {
    display: block;
  }
}
.contact__form-desc {
  text-align: center;
}
.contact__label-politic {
  margin-top: 35px;
}
.table-price {
  background: #E5383B;
  border-radius: 10px;
  min-height: 149px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-transform: uppercase;
}
.table-price__title {
  font-size: 24px;
}
.table-price__number {
  font-size: 36px;
  letter-spacing: 0.08em;
}
.system-block__item input:checked + .system-item__action {
  background-color: #E5383B;
}
.system-block__item input:checked + .system-item__action--radio::before {
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
}
.system-block__item input:checked + .system-item__action--radio::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
}
.system-block__item input:checked + .system-item__action--check {
  background-color: #E5383B;
  background-image: url("/local/templates/rutego/images/galk-bold-white.svg");
}
.positive {
  position: relative;
  padding-left: 55px;
  font-weight: 400;
  font-size: 21px;
  line-height: 29px;
  letter-spacing: 0.025em;
  color: #1c1c1c;
}
@media (min-width: 991px) {
  .positive {
    font-size: 24px;
  }
}
.positive::before {
  content: "";
  position: absolute;
  background-image: url("/local/templates/rutego/images/gal.svg");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 22px;
  left: 0;
  top: 5px;
}
.negative {
  position: relative;
  padding-left: 55px;
  font-weight: 400;
  font-size: 21px;
  line-height: 29px;
  letter-spacing: 0.025em;
  color: #1c1c1c;
}
@media (min-width: 991px) {
  .negative {
    font-size: 24px;
  }
}
.negative::before {
  content: "";
  position: absolute;
  background-image: url("/local/templates/rutego/images/krest.svg");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 22px;
  left: 0;
  top: 5px;
}
