@charset "UTF-8";

body {
  font-family: "Inter", sans-serif;
  color: rgb(0, 51, 102);
  font-weight: 400;
}

body.blur {
  overflow: hidden;
}

body .body-wrap {
  display: flex;
  padding-left: 270px;
}

body .body-wrap.blur {
  overflow: hidden;
  position: relative;
}

body .body-wrap.blur:before {
  content: "";
  position: fixed;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.8);
  z-index: 10;
}

body .content {
  position: relative;
  width: 100%;
}

body .container-fluid {
  max-width: 1170px;
  padding-left: 30px;
  padding-right: 30px;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

.section-title {
  font-size: 42px;
  line-height: normal;
  color: #1E1E1E;
  font-weight: 500;
}

.section-subtitle {
  color: #787878;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.section-title__inner {
  font-size: 36px;
}

.modals .modal {
  display: none;
}

.sidebar {
  background: #FFF;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 0;
  top: 0;
  bottom: 0;
  width: 270px;
  height: 100vh;
  border-right: 1px solid #F4F4F4;
  border-bottom: 1px solid #F4F4F4;
  z-index: 99;
}

.sidebar-logo {
  padding: 50px 28px 50px 30px;
  margin-bottom: 50px;
}

.sidebar-logo img {
  width: 100%;
  margin-bottom: 10px;
}

.sidebar-logo__description {
  color: #787878;
  font-size: 12px;
}

.sidebar nav {
  padding: 0 15px;
}

.sidebar nav ul {
  margin-bottom: 40px;
}

.sidebar nav ul li {
  margin-bottom: 20px;
  border-radius: 8px;
  background: #FFF;
  transition: 0.1s all;
}

.sidebar nav ul li:hover {
  background: #F4F4F4;
}

.sidebar nav ul li:last-child {
  margin-bottom: 0;
}

.sidebar nav ul li a {
  display: block;
  padding: 15px;
  color: #1E1E1E;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid #FFF;
  border-radius: 8px;
}

.sidebar nav ul li a.selected {
  background: #F4F4F4;
}

.sidebar nav ul li.nav-btn a.selected {
  /* border-color: rgb(0, 51, 102); */
  background: #F4F4F4;
  /* background: rgb(0, 51, 102);
  color: #fff; */
}

.sidebar nav ul li a:active {
  border: 1px solid #99ADC2;
}

.sidebar nav ul li.nav-btn {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  grid-gap: 0px;
}

.sidebar nav ul li.nav-btn a {
  color: rgb(0, 51, 102);
  border: 1px solid #E5EBF0;
  border-radius: 8px 0 0 8px;
  background: #E5EBF0;
  transition: 0.1s all;
  width: calc(100% - 46px);
}

.sidebar nav ul li.nav-btn a:active {
  border: 1px solid #99ADC2;
}

.sidebar nav ul li.nav-btn a:hover {
  background: rgba(229, 235, 240, 0.1);
}

.sidebar nav ul li.nav-btn.active a {
  background: rgb(0, 51, 102);
  color: #FFF;
  border-color: rgb(0, 51, 102);
}

.sidebar nav ul li.nav-btn.active a:hover {
  background: #F4F4F4;
  color: rgb(0, 51, 102);
}

.sidebar nav ul li.nav-btn.active .burger {
  display: block;
  position: relative;
  padding: 0;
}

.sidebar nav ul li.nav-btn.active .burger-btn {
  background: rgb(0, 51, 102);
  border-color: rgb(0, 51, 102);
  position: relative;
}

.sidebar nav ul li.nav-btn.active .burger-btn span {
  position: absolute;
  background: #FFF;
}

.sidebar nav ul li.nav-btn.active .burger-btn span:nth-child(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar nav ul li.nav-btn.active .burger-btn span:nth-child(2) {
  display: none;
}

.sidebar nav ul li.nav-btn.active .burger-btn span:nth-child(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar nav ul li.nav-btn.active .burger-btn:hover span {
  background: rgb(0, 51, 102);
}

.sidebar nav ul li.nav-btn .burger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 14px;
  height: 14px;
  padding: 3px 2px;
  border-radius: 5px;
}

.sidebar nav ul li.nav-btn .burger span {
  width: 10px;
  height: 1px;
  background: rgb(0, 51, 102);
  border-radius: 50px;
  transition: 0.3s all;
}

.sidebar nav ul li.nav-btn .burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  cursor: pointer;
  background: #E5EBF0;
  border-radius: 0 8px 8px 0;
  transition: 0.1s all;
  border: 1px solid #E5EBF0;
}

.sidebar nav ul li.nav-btn .burger-btn:hover {
  background: rgba(229, 235, 240, 0.1);
}

.sidebar nav ul li.nav-btn .burger-btn:active {
  border: 1px solid #99ADC2;
}

.sidebar-contacts {
  border-top: 1px solid #F4F4F4;
  padding: 30px;
}

.sidebar-contacts__item {
  margin-bottom: 20px;
  font-size: 14px;
}

.sidebar-contacts__item span {
  display: block;
}

.sidebar-contacts__item span:nth-child(1) {
  color: #787878;
  margin-bottom: 5px;
}

.sidebar-contacts__item span:nth-child(2) {
  color: #1E1E1E;
}

.sidebar-contacts__item span:nth-child(2) a {
  color: #1E1E1E;
  text-decoration: none;
}

.sidebar-contacts__item span:nth-child(2) a:hover {
  text-decoration: underline;
}

.sidebar-contacts__item:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  padding: 50px 30px 20px;
  font-size: 24px;
  color: #1E1E1E;
  font-weight: 600;
}

.sidebar.level-2 {
  opacity: 0;
  pointer-events: none;
  left: 0;
  background: #F4F4F4;
  width: 370px;
  border-right: none;
  transition: 0.3s all;
  z-index: 98;
}

.sidebar.level-2.active {
  display: block;
  opacity: 1;
  pointer-events: initial;
  left: 270px;
}

.sidebar.level-2 .sidebar-search {
  margin: 0 30px 30px;
}

.sidebar.level-2 .sidebar-search input {
  border: none;
}

.sidebar.level-2 .divider {
  margin: 0 30px 20px;
  height: 1px;
  background: #E8E8E8;
}

.sidebar.level-2 .nav ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: #787878;
  border-top: 1px solid #F4F4F4;
  border-bottom: 1px solid #F4F4F4;
  transition: 0.1s all;
}

.sidebar.level-2 .nav ul li a.active {
  background: #FFF;
}

.sidebar.level-2 .nav ul li a img {
  margin-right: 10px;
}

.sidebar.level-2 .nav ul li a:hover {
  background: #FFF;
}

.sidebar.level-2 .nav ul li a:active {
  border-top: 1px solid #99ADC2;
  border-bottom: 1px solid #99ADC2;
}

.sidebar.level-3 {
  opacity: 0;
  pointer-events: none;
  width: calc(100vw - 270px - 370px);
  max-width: 700px;
  left: 370px;
  border: none;
  z-index: 97;
  transition: 0.2s all;
}

.sidebar.level-3.active {
  display: block;
  opacity: 1;
  pointer-events: initial;
  left: 640px;
}

.sidebar.level-3 .sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 40px;
  cursor: pointer;
  background: #FFF;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  transition: 0.2s all;
}

.sidebar.level-3 .sidebar-close:hover {
  background: #F4F4F4;
}

.sidebar-catalog {
  padding: 10px 40px 0 20px;
  overflow-y: auto;
  height: 90%;
}

.sidebar-catalog__item {
  border-bottom: 1px solid #F4F4F4;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 35px;
  flex: 0 0 auto;
  width: calc(50% - 20px);
}

.sidebar-catalog__item a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

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

.sservices .sidebar-catalog__item a.sidebar-catalog__item-category {
  display: none;
  margin-bottom: 20px;
  text-decoration: none;
}

.sidebar-catalog__item-category {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
}

.sidebar-catalog__item-subcategory {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
}

.input-search {
  position: relative;
}

.input-search__icon {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
}

.input-search__icon svg path {
  stroke: #787878;
  transition: 0.1s all;
}

.input-search__close {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all;
}

.input-search input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  padding: 14px 50px 12px;
  font-size: 16px;
  outline: none;
  transition: 0.4s all;
}

.input-search input::placeholder {
  transition: 0.1s all;
}

.input-search:hover input:not(:focus)::placeholder {
  color: #1E1E1E;
}

.input-search:hover .input-search__icon svg path {
  stroke: #1E1E1E;
}

.input-search:after {
  content: "";
  position: absolute;
  height: 25px;
  width: 1px;
  right: 54px;
  top: 50%;
  background: #D2D2D2;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}

.input-search.focused {
  position: relative;
}

.input-search.focused:after {
  opacity: 1;
}

.input-search.focused input {
  padding: 14px 90px 12px 20px;
}

.input-search.focused .input-search__icon {
  cursor: pointer;
  pointer-events: initial;
  left: calc(100% - 44px);
}

.input-search.focused .input-search__icon svg path {
  stroke: #1E1E1E;
}

.input-search.focused .input-search__close {
  display: block;
  cursor: pointer;
  pointer-events: initial;
  opacity: 1;
}

.input-search.focused .input-search__close:hover svg path {
  stroke: #1E1E1E;
}

.city-modal .countries {
  max-height: 530px;
  overflow-y: scroll;
}

.city-modal .countries-block {
  padding: 15px 0;
  border-bottom: 1px solid #E8E8E8;
}

.city-modal .countries-block strong {
  display: block;
  color: #1E1E1E;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.city-modal .countries-block ul a {
  display: block;
  text-decoration: none;
  color: #787878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180.023%;
  transition: 0.2s all;
}

.city-modal .countries-block ul a:hover {
  color: #1E1E1E;
  text-decoration: underline;
}

::-webkit-scrollbar {
  width: 15px;
  height: 15px;
  background-color: #F4F4F4;
  border-radius: 100px;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
  background-color: #E5EBF0;
  border-radius: 100px;
  height: 15px;
  width: 15px;
  border: 4px solid #F4F4F4;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #99ADC2;
}

.header {
  z-index: 9;
  width: 100%;
}

.header:not(.header-absolute) {
  margin-bottom: 50px;
}

.header-absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: #FFF;
}

.header-absolute .header-bottom__info a:hover {
  border-bottom: 1px solid white;
}

.header:not(.header-absolute) .header {
  color: #1E1E1E;
}

.header:not(.header-absolute) .header-top {
  border-bottom: 1px solid #D2D2D2;
}

.header:not(.header-absolute) .header-bottom__info a {
  color: #1E1E1E;
  border-bottom: 1px solid #D2D2D2;
}

.header:not(.header-absolute) .header-bottom__info a:hover {
  border-bottom: 1px solid #1E1E1E;
}

.header:not(.header-absolute) .header-bottom__info .phone svg path {
  fill: none;
  stroke: #1E1E1E;
}

.header:not(.header-absolute) .header-bottom__nav a {
  color: #1E1E1E;
  border-bottom: 1px solid #D2D2D2;
}

.header:not(.header-absolute) .header-bottom__nav a:hover {
  border-bottom: 1px solid #1E1E1E;
}

.header:not(.header-absolute) svg path {
  fill: #1E1E1E;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.header-top__city {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-top__city svg {
  margin-right: 5px;
}

.header-top__city:hover {
  text-decoration: underline;
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom__info {
  display: flex;
  font-size: 16px;
  font-weight: 400;
}

.header-bottom__info a {
  display: flex;
  padding: 10px 0;
  align-items: center;
  text-decoration: none;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.2s all;
}

.header-bottom__info a svg {
  margin-right: 10px;
}

.header-bottom__info a.phone {
  margin-right: 40px;
}

.header-bottom__info a:hover {
  border-bottom: 1px solid #003366;
}

.header-bottom__nav ul {
  display: flex;
}

.header-bottom__nav ul li {
  position: relative;
}

.header-bottom__nav ul li:nth-child(1) a {
  text-align: left;
  padding-left: 0;
}

.header-bottom__nav ul li:last-child a {
  text-align: right;
  padding-right: 0;
}

.header-bottom__nav ul li:last-child:after {
  display: none;
}

.header-bottom__nav ul li:after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #A5A5A5;
  border-radius: 50%;
}

.header-bottom__nav ul a {
  text-decoration: none;
  font-size: 14px;
  padding: 14px 28px;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.2s all;
}

.header-bottom__nav ul a:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}

main.slider {
  margin-bottom: 100px;
}

main.slider.catalog-inner {
  margin-bottom: 0;
}

main.slider.catalog-inner .main-slider .item {
  padding-top: 155px;
}

.main-slider .owl-dots {
  display: none;
}

.main-slider .item {
  position: relative;
  color: #FFF;
  padding-top: 415px;
  background-size: cover;
  background-position: center center;
  padding-bottom: 105px;
}

.main-slider .item::before {
  content: "";
  position: absolute;
  background: rgba(0, 51, 102, 0.85);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 8;
}

.main-slider .item * {
  position: relative;
  z-index: 9;
}

.main-slider .item .title {
  font-size: 62px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.main-slider .item .description {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 495px;
  margin-bottom: 30px;
}

.main-slider__hash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(244, 244, 244, 0.5);
  backdrop-filter: blur(47px);
  -webkit-backdrop-filter: blur(27px);
}

.main-slider__hash-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
}

.main-slider__hash-item {
  background: transparent;
  padding: 15px 90px 15px 15px;
  text-decoration: none;
  position: relative;
  border-radius: 0;
  transition: 0.2s all;
}

.main-slider__hash-item .title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #1E1E1E;
  margin-bottom: 5px;
}

.main-slider__hash-item .descr {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
}

.main-slider__hash-item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  height: 61px;
  width: 1px;
  background: #6685A3;
}

.main-slider__hash-item:first-child {
  border-radius: 8px 0 0 8px;
}

.main-slider__hash-item:last-child {
  border-radius: 0 8px 8px 0;
}

.main-slider__hash-item:last-child:after {
  display: none;
}

.main-slider__hash-item:hover {
  background: #F4F4F4;
}

.main-slider__hash-item_hover {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: #F4F4F4;
  transition: 0.2s all;
}

.main-slider__hash-item_hover .loading {
  display: none;
  transition: 0.1s all;
}

.main-slider__hash-item_hover .wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.main-slider__hash-item.active {
  position: relative;
}

.main-slider__hash-item.active * {
  position: relative;
  z-index: 3;
}

.main-slider__hash-item.active .main-slider__hash-item_hover {
  position: absolute;
  display: block;
  opacity: 1;
  top: -10px;
  bottom: -10px;
  left: -1px;
  right: -1px;
  z-index: 2;
}

.main-slider__hash-item.active .main-slider__hash-item_hover svg {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.main-slider__hash-item.active .main-slider__hash-item_hover .loading {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1E1E1E;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  border-radius: 8px;
  padding: 14px 30px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: 0.2s all;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  position: relative;
  margin-left: 5px;
  transition: 0.2s all;
  right: 0;
}

.btn.icon-left svg {
  margin-left: 0;
  margin-right: 5px;
}

.btn:not(.animation-reverse):hover svg {
  right: -10px;
}

.btn.animation-reverse:hover svg {
  right: 10px;
}

.btn-lg {
  padding: 20px 45px;
}

.btn-sm {
  padding: 12px 25px;
}

.btn-primary {
  background: rgb(0, 51, 102);
  color: #FFF;
}

.btn-primary:hover {
  background: #0B437A;
}

.btn-primary:active {
  background: rgb(0, 51, 102);
}

.btn-white {
  background: #FFF;
  color: rgb(0, 51, 102);
}

.btn-white:hover {
  background: #F4F4F4;
}

.btn-white:active {
  background: #FFF;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgb(0, 51, 102);
  color: rgb(0, 51, 102);
}

.btn-secondary:hover {
  background: rgb(0, 51, 102);
  color: #FFF;
}

.btn-secondary:active {
  background: #0B437A;
}

.btn-ghost {
  background: #F4F4F4;
  color: #1E1E1E;
}

.btn-ghost:hover {
  background: #F9F9F9;
}

.btn-ghost:active {
  background: #E8E8E8;
}

.btn.disabled:disabled {
  background: #F4F4F4;
  color: #D2D2D2;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.disabled:disabled svg path {
  stroke: #D2D2D2;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-left: 10px;
  padding-right: 10px;
}

.mobile-menu {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 50px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  transition: 0.1s all;
}

.mobile-menu span {
  width: 100%;
  height: 2px;
  background: #FFF;
  border-radius: 8px;
}

.mobile-menu:not(.header-absolute) span {
  background: rgb(0, 51, 102);
}

.mobile-menu:not(.header-absolute):active {
  background: rgba(30, 30, 30, 0.5);
}

.mobile-menu:active {
  background: rgba(255, 255, 255, 0.5);
}

.mobile-close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
}

.breadcrumps {
  margin-bottom: 25px;
}

.breadcrumps ul {
  display: flex;
  align-items: center;
}

.breadcrumps ul li {
  margin-right: 10px;
  color: #1E1E1E;
}

.breadcrumps ul li:last-child {
  margin-right: 0;
}

.breadcrumps ul li a,
.breadcrumps ul li span {
  text-decoration: none;
  color: #A5A5A5;
  font-size: 16px;
  font-weight: 400;
}

section {
  padding-bottom: 50px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 50px;
}

section.no-border {
  border-bottom: none;
}

section .section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

section .section-top .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .section-top .btns .btn:first-child {
  margin-right: 20px;
}

.about {
  border-radius: 8px;
  overflow: hidden;
}

.about .video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 415px;
}

.about .video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about .video-box:before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about .video-content {
  z-index: 2;
  position: relative;
  color: #fff;
  padding: 50px;
  font-size: 20px;
}

.about .video-content #unMute {
  opacity: 0;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 2px;
}

.about .video-content #unMute.show {
  opacity: 1;
}

.about .video-content #unMute svg {
  margin-left: 5px;
}

.about .video-content #unMute:hover {
  border-bottom: 1px solid #FFF;
}

.about-info {
  border-top: 1px solid #E8E8E8;
  background: #F8F8F8;
  padding: 50px 30px;
}

.about-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 20px;
}

.about-bottom p {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

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

.about-bottom p.strong {
  display: block;
  color: #1E1E1E;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 60px;
}

.about-bottom .fact-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-bottom .fact-number {
  display: block;
  color: rgb(0, 51, 102);
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.about-bottom .fact-text {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
}

.catalog .section-top {
  margin-bottom: 30px;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.catalog-group {
  position: relative;
  flex: 1 1 calc(50% - 20px);
  margin: 10px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  background: #FFF;
  height: 330px;
  padding: 30px;
  overflow: hidden;
  transition: 0.1s all;
  z-index: 3;
}

.catalog-group:after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 300px;
  height: 500px;
  transform: rotate(9deg);
  background: #CCD6E0;
  z-index: 1;
}

.catalog-group:hover {
  background: rgb(0, 51, 102);
}

.catalog-group:hover:after {
  display: none;
}

.catalog-group:hover .catalog-group__img {
  transform: scale(1.3);
  bottom: -50px;
}

.catalog-group:hover nav li:not(.all) a {
  color: #99ADC2;
}

.catalog-group:hover nav li:not(.all) a:hover {
  color: #FFF;
}

.catalog-group:hover nav li:not(.all) a:hover:after {
  opacity: 1;
  right: -25px;
}

.catalog-group:hover nav li.group a {
  color: #FFF;
}

.catalog-group:hover nav li.all a {
  color: #FFF;
}

.catalog-group:hover nav li.all svg path {
  fill: #FFF;
}

.catalog-group nav {
  position: relative;
  width: 50%;
  z-index: 3;
}

.catalog-group nav li a {
  display: inline-block;
  position: relative;
  color: #787878;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.2s all;
}

.catalog-group nav li a:hover {
  color: #1E1E1E;
}

.catalog-group nav li a:after {
  opacity: 0;
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/local/templates/galactica/src/assets/img/main-catalog/arrow.svg");
  width: 19px;
  height: 19px;
  transition: 0.2s all;
}

.catalog-group nav li.group a {
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 500;
}

.catalog-group nav li.all a {
  display: flex;
  align-items: center;
  color: #1E1E1E;
}

.catalog-group nav li.all a svg {
  margin-left: 5px;
}

.catalog-group__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: 0.2s all;
}

.services-list {
  display: flex;
  align-items: stretch;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-right: -5px;
}

.services-list>div:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 66%;
}

.services-list>div:nth-child(2) {
  display: flex;
  align-items: stretch;
  flex: 1 1 33%;
}

.services-group {
  border-radius: 8px;
  margin: 5px;
  flex: 1 1 calc(50% - 10px);
  padding: 20px;
  background-color: #1E1E1E;
  background-size: cover;
  background-position: center center;
  min-height: 357px;
  transition: 0.2s all;
}

.services-group:hover {
  background-image: unset !important;
  background-color: rgb(0, 51, 102);
}

.services-group:hover nav li {
  opacity: 1 !important;
}

.services-group:hover nav li a {
  color: #FFF !important;
}

.services-group nav li {
  transition: 0.2s all;
}

.services-group nav li:not(.group) {
  opacity: 0;
}

.services-group nav li.group a {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.services-group nav li.group a:after {
  display: none !important;
}

.services-group nav li.black a {
  color: #1E1E1E;
}

.services-group nav li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #99ADC2;
  margin-bottom: 15px;
}

.services-group nav li a:hover {
  color: #FFF !important;
}

.services-group nav li a:hover:after {
  opacity: 1;
  right: -25px;
}

.services-group nav li a:after {
  opacity: 0;
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/local/templates/galactica/src/assets/img/main-catalog/arrow.svg");
  width: 19px;
  height: 19px;
  transition: 0.2s all;
}

.features-slider {
  display: flex;
  align-items: stretch;
}

.features-slider__btns {
  flex: 1 1 37%;
  margin-right: 20px;
}

.features-slider__btns-item {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  margin-bottom: 20px;
  cursor: pointer;
}

.features-slider__btns-item:last-child {
  margin-bottom: 0;
}

.features-slider__btns-item span {
  transition: 0.1s all;
  color: #787878;
  line-height: normal;
}

.features-slider__btns-item-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.features-slider__btns-item svg {
  margin-right: 15px;
  width: 40px;
  height: 40px;
}

.features-slider__btns-item:not(.catalog-features) svg path {
  transition: 0.1s all;
  fill: #787878;
}



.features-slider__btns-item.catalog-features svg path {
  transition: 0.1s all;
  stroke: #787878;
}

.features-slider__btns-item.catalog-features:hover svg path {
  stroke: rgb(0, 51, 102);
}

.features-slider__btns-item.catalog-features.active svg path {
  stroke: #FFF;
}

.features-slider__btns-item.catalog-features span {
  font-size: 18px;
  font-weight: 300;
}


.features-slider__btns-item:hover {
  border-color: rgb(0, 51, 102);
}

.features-slider__btns-item:hover span {
  color: #1E1E1E;
}

.features-slider__btns-item:not(.catalog-features):hover svg path {
  fill: rgb(0, 51, 102);
}

.features-slider__btns-item.active {
  background: rgb(0, 51, 102);
  border-color: rgb(0, 51, 102);
}

.features-slider__btns-item.active span {
  color: #FFF;
}

.features-slider__btns-item:not(.catalog-features).active svg path {
  fill: #FFF;
}

.features-slider__slides {
  flex: 1 1 63%;
  position: relative;
}

.features-slider__slides-item {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0px;
  padding: 30px;
  transition: 0.4s all;
  background-size: cover;
}

.features-slider__slides-item.active {
  opacity: 1;
  right: 0;
}

.features-slider__slides-item .title {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.features-slider__slides-item p,
.features-slider__slides-item li {
  color: #FFF;
  opacity: 0.7;
  margin-bottom: 27px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.features-slider__slides-item p~ul {
  margin-top: -27px;
}

.features-slider__slides-item ul {
  list-style: disc;
  list-style-position: inside;
}

.features-slider__slides-item li {
  /* line-height: 10px; */
  margin-bottom: 0;
}



.reviews-slider__item {
  display: block;
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--black-10, #E8E8E8);
}

.reviews-slider__item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 8px;
  background: #1E1E1E;
  opacity: 0;
  transition: 0.2s all;
}

.reviews-slider__item:hover:before {
  opacity: 0.7;
}

.reviews-slider__item:hover svg {
  opacity: 1;
}

.reviews-slider__item svg {
  transition: 0.2s all;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.examples-catalog__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.examples-catalog__list .reviews-slider__item {
  margin-bottom: 20px;
}

.form-transparent {
  color: #1E1E1E;
}

.form-transparent .form-wrap {
  padding: 0;
}

.form-transparent .form-description {
  color: #1E1E1E;
}

.form-transparent .form-description a {
  color: #1E1E1E;
}

.form-transparent .form-title {
  color: #1E1E1E;
}

.form-transparent .form-file__label {
  border: 1px solid #D2D2D2;
  color: #A5A5A5 !important;
}

.form-transparent .form-file__label svg path {
  fill: #A5A5A5;
}

.form-transparent .form-file__label:hover {
  border: 1px solid #1E1E1E;
  color: #1E1E1E !important;
}

.form-transparent .form-file__label:hover svg path {
  fill: #1E1E1E;
}

.form-transparent label {
  color: #1E1E1E !important;
}

.form-wrap {
  border-radius: 8px;
  padding: 50px 30px;
  background-size: cover;
}

.form-title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.form-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-top>div {
  flex: 1 1 25%;
  margin-right: 20px;
}

.form-top>div:last-child {
  margin-right: 0;
}

.form-top>div input {
  width: 100%;
}

.form-top>div .btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.form label {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.form input {
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
  transition: 0.2s all;
  outline: none;
}

.form input::placeholder {
  color: #848484;
}

.form input:hover {
  border: 1px solid #A5A5A5;
}

.form input:focus {
  border: 1px solid #1E1E1E;
}

.form button.btn {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
}

.form-file {
  margin-bottom: 10px;
}

.form-file input[type=file] {
  display: none;
}

.form-file__label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
  border-radius: 5px;
  border: 1px solid #6685A3;
  transition: 0.2s all;
  cursor: pointer;
}

.form-file__label:hover {
  border: 1px solid #FFF;
}

.form-file__label svg {
  margin-right: 10px;
}

.form-description {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-description a {
  color: #FFF;
}

.partners-slider__item {
  transition: 0.2s all;
  padding: 47px 53px;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
}

.partners-slider__item img {
  filter: grayscale(1);
}

.partners-slider__item:hover {
  border: 1px solid #F4F4F4;
  background: #F4F4F4;
}

.partners-slider__item:hover img {
  filter: grayscale(0);
}

.blog {
  position: relative;
}

.blog-section {
  padding: 50px 30px;
  border-radius: 8px;
  background: #F8F8F8;
}

.blog-section__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.blog-section__bottom-text {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.blog-section__bottom-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-section__bottom-socials a {
  display: block;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  border: 1px solid #A5A5A5;
  margin-right: 20px;
  transition: 0.2s all;
}

.blog-section__bottom-socials a:last-child {
  margin-right: 0;
}

.blog-section__bottom-socials a:hover {
  border: 1px solid #1E1E1E;
}

.blog-section__bottom-socials a img {
  height: 24px;
}

.blog .dashed svg {
  width: 100%;
}

.blog-slider {
  position: relative;
}

.blog-slider-arrows {
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 350px;
  left: 0;
}

.blog-slider-arrows-prev {
  cursor: pointer;
  position: relative;
  right: -15px;
}

.blog-slider-arrows-prev.disabled svg path {
  fill: #A5A5A5;
}

.blog-slider-arrows-next {
  cursor: pointer;
  position: relative;
  left: -15px;
}

.blog-slider-arrows-next.disabled svg path {
  fill: #A5A5A5;
}

.blog-item {
  display: block;
  border-radius: 8px;
  border: 1px solid #DEDEDE;
  background: #FFF;
  overflow: hidden;
  text-decoration: none;
}

.blog-item:hover .blog-item__info .title {
  text-decoration: underline;
}

.blog-item__img {
  border-bottom: 1px solid #DEDEDE;
}

.blog-item__img img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.blog-item__info {
  padding: 30px;
}

.blog-item__info .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #333;
  margin-bottom: 10px;
}

.blog-item__info .text {
  color: #787878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.blog-item__info-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.blog-item__info-bottom .date {
  color: #A5A5A5;
  font-size: 16px;
  font-weight: 400;
  margin-right: 40px;
}

.blog-item__info-bottom .category {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.blog-item__info-bottom .category .color {
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

/* .blog-item__info-bottom .category.red:before {
  background: #E93F3F;
}

.blog-item__info-bottom .category.green:before {
  background: #16C95E;
} */

.contacts {
  padding: 50px 30px;
  background-image: url("/local/templates/galactica/src/assets/img/contacts-min.jpeg");
  background-size: cover;
  border-radius: 8px;
  color: #FFF;
  border: none;
}

.contacts .section-title {
  color: #FFF;
}

.contacts-wrap {
  display: flex;
  align-items: stretch;
}

.contacts-info {
  flex: 1 1 26%;
  margin-right: 50px;
}

.contacts-map {
  flex: 1 1 74%;
}

.contacts-info__title {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contacts-info__address {
  border-radius: 8px;
  border: 1px solid #FFF;
  padding: 12px 15px;
  margin-bottom: 20px;
  cursor: pointer;
}

.contacts-info__address:not(.active):hover {
  border: 1px solid #6685A3;
}

.contacts-info__address.active {
  background: #FFF;
  color: #1E1E1E;
}

.contacts-info__address.active span {
  color: #787878;
}

.contacts-info__address.active p {
  color: #1E1E1E;
}

.contacts-info__address.active .show svg path {
  fill: rgb(0, 51, 102);
}

.contacts-info__address.active .show span {
  color: rgb(0, 51, 102);
}

.contacts-info__address span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #6685A3;
  margin-bottom: 5px;
}

.contacts-info__address p {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145.023%;
  margin-bottom: 10px;
}

.contacts-info__address .show {
  display: flex;
  align-items: center;
}

.contacts-info__address .show svg {
  margin-right: 5px;
}

.contacts-info__address .show svg path {
  fill: #FFF;
}

.contacts-info__address .show span {
  margin: 0;
  padding: 0;
  color: #FFF;
}

.contacts-info .phone {
  padding: 20px 0;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 20px;
}

.contacts-info .phone span {
  display: block;
  color: #6685A3;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

.contacts-info .phone a {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: 0.2s all;
}

.contacts-info .phone a:hover {
  text-decoration: underline;
}

.contacts-info .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contacts-info .btn.btn-white {
  margin-bottom: 15px;
}

.contacts-info .btn svg {
  margin-right: 5px;
}

.contacts-info .btn.btn-secondary {
  color: #FFF;
  border: 1px solid #FFF;
}

.contacts-map {
  border-radius: 8px;
  overflow: hidden;
}

.contacts-map #map {
  width: 100%;
  height: 100%;
}

.balloon-root {
  position: relative;
  padding: 10px 15px;
  background: rgb(0, 51, 102);
  width: 160px;
  border-radius: 8px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.balloon-head {
  color: #99ADC2;
}

.balloon-pin svg {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 6px;
  height: 5px;
}

footer {
  border-top: 1px solid #E8E8E8;
}

footer .footer {
  padding: 30px 0 50px;
}

footer .footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-right: 20px;
}

footer .footer-nav>nav {
  max-width: 250px;
}

footer .footer-nav li.group a {
  color: #1E1E1E;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

footer .footer-nav li a {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #787878;
  transition: 0.2s all;
}

footer .footer-nav li a:hover {
  color: #1E1E1E;
}

footer .footer .logo {
  display: block;
  position: relative;
  text-decoration: none;
  margin-bottom: 32px;
}

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

footer .footer-link {
  display: block;
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  text-decoration: none;
}

footer .footer-link:hover {
  text-decoration: underline;
}

footer .footer-link-title {
  display: block;
  margin-bottom: 5px;
  color: #A5A5A5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .footer-socials {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

footer .footer-socials a {
  display: block;
  margin-right: 30px;
  text-decoration: none;
}

footer .footer-bottom {
  background: #F4F4F4;
}

footer .footer-bottom__info {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .footer-bottom__info span {
  color: #787878;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 30px;
}

.team-employer {
  margin-bottom: 30px;
}

.team-employer__photo {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-employer__name {
  color: #1E1E1E;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}

.team-employer__position {
  color: #787878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.team-show-all {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #E8E8E8;
  padding-top: 10px;
  cursor: pointer;
  transition: 0.2s all;
}

.team-show-all:hover {
  border-top: 1px solid #1E1E1E;
}

.team-show-all:hover svg {
  top: 5px;
}

.team-show-all__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-show-all__btn span {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
}

.team-show-all__btn svg {
  position: relative;
  transition: 0.2s all;
  margin-right: 5px;
  top: 0;
}

.seo-text {
  border-radius: 8px;
  background: #F4F4F4;
  padding: 50px 30px;
}

.catalog-seo.seo-text {
  padding: 0;
  background: transparent;
}

.seo-text h2,
.seo-text h3 {
  color: #1E1E1E;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.catalog-seo.seo-text h2,
.catalog-seo.seo-text h3 {
  margin-bottom: 30px;
}

.seo-text p {
  color: #4B4B4B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 15px;
  margin-right: 20px;
}

.seo-text p:last-child {
  margin-bottom: 20px;
}

.seo-text .full {
  display: none;
}

.seo-text__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.catalog-seo.seo-text .show-text-btn {
  border: none;
  cursor: pointer;
  color: #1E1E1E;
  margin-top: 30px;
  font-size: 16px;
}

.catalog-seo.seo-text .show-text-btn:hover {
  border: none;
  text-decoration: underline;
}

.seo-text.active .show-text-btn:hover svg {
  top: -5px;
}

.seo-text.active .show-text-btn svg {
  transform: rotate(180deg);
}

.seo-text.active .full {
  display: block;
}

.seo-text.active .truncate {
  display: none;
}

.seo-text .show-text-btn {
  border: 1px solid #FFF;
}

.seo-text .show-text-btn svg {
  top: 0;
  bottom: 0;
}

.seo-text .show-text-btn:hover {
  border: 1px solid #1E1E1E;
}

.seo-text .show-text-btn:hover svg {
  right: 0;
  top: 5px;
}

.examples-slider__item {
  display: block;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  padding: 30px;
  color: #FFF;
  text-decoration: none;
}

.examples-slider__item:hover .title {
  text-decoration: underline;
}

.examples-slider__item .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 380px;
  margin-bottom: 180px;
}

.examples-slider__item .bottom {
  display: flex;
  align-items: flex-start;
}

.examples-slider__item .bottom>div {
  margin-right: 40px;
}

.examples-slider__item .bottom>div:last-child {
  margin-right: 0;
}

.examples-slider__item .bottom>div span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.examples-slider__item .bottom>div span:first-child {
  margin-bottom: 5px;
  color: #D2D2D2;
}

.main-title {
  padding-bottom: 50px;
  border-bottom: 1px solid #D2D2D2;
  margin-bottom: 50px;
}

.main-title h1 {
  color: #1E1E1E;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 25px;
}

.catalog-block .section-title {
  font-size: 36px;
}

.catalog-block__item {
  display: block;
  padding: 20px 20px 180px 20px;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: 0.2s all;
  background-size: cover;
  margin-bottom: 20px;
}

.catalog-block__item:hover {
  border: 1px solid #1E1E1E;
  color: rgb(0, 51, 102);
}

.products-tabs {
  margin-bottom: 30px;
}

.products-tabs .btn {
  font-size: 16px;
}

.products-tabs .btn:not(.btn-primary) {
  color: #787878;
}

.products-list {
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
}

.products-list__item {
  display: block;
  padding: 30px;
  position: relative;
  margin-right: 18px;
  border-radius: 8px;
  border: 1px solid var(--black-20, #D2D2D2);
  margin-bottom: 20px;
  text-decoration: none;
  color: #787878;
  font-weight: 400;
  font-size: 18px;
}

.products-list__item-add {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: rgb(0, 51, 102);
  border: 1px solid rgb(0, 51, 102);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s all;
}

.products-list__item-add:hover {
  transform: scale(1.1);
}

.products-list__item-add:active {
  background: #6685A3;
  border: 1px solid #6685A3;
}

.products-list__item-add.active {
  background: #1E1E1E;
}

.products-list__item-add.active:active {
  background: #6685A3;
  border: 1px solid #6685A3;
}

.products-list__item-add.active svg path.hide {
  display: none;
}

.products-list__item-img {
  padding: 0 20px;
  margin-bottom: 25px;
}

.products-list__item-img img {
  height: 270px;
}

.products-list__item-img .gray-block {
  border-radius: 2px;
  background: #F4F4F4;
  width: 255px;
  height: 269px;
}

.productsv2 .products-list__item-type,
.productsv3 .products-list__item-type {
  text-decoration: none;
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-top: 50px;
}

.productsv2 .products-list__item-type:hover,
.productsv3 .products-list__item-type:hover {
  text-decoration: underline;
}

.productsv3 .products-list {
  justify-content: space-between;
}

.productsv3 .products-list__item {
  margin: 0;
  max-width: 355px;
  margin-bottom: 30px;
}

.productsv3.services .products-list {
  justify-content: space-between;
}

.productsv3.services .products-list__item {
  margin: 0;
}

.productsv3.services .products-list__item-wrap {
  max-width: 263px;
  /* margin-bottom: 30px; */
}

.productsv3.services .products-list__item img {
  width: 100%;
  height: auto;
}

.productsv3.services .products-list__item-img {
  padding: 0;
}

.productsv3.services .products-list__item-type {
  display: block;
  text-decoration: none;
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 200px;
  margin-top: 20px;
}

.productsv3.services .products-list__item-type:hover {
  text-decoration: underline;
}

.montazh-img img {
  border-radius: 2px;
  width: 100%;
}

.products-list__item-name {
  display: block;
  text-decoration: none;
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: 0.2s all;
}

.products-list__item-name:hover {
  text-decoration: underline;
  color: rgb(0, 51, 102);
}

.sizes-table {
  border-radius: 8px;
  overflow: hidden;
}

.sizes-table td {
  text-align: center;
  padding: 10px 25px;
}

.sizes-table td span {
  display: block;
  color: #787878;
}

.sizes-table td.full {
  vertical-align: middle;
}

.sizes-table table {
  width: 100%;
  overflow: hidden;
  color: #1E1E1E;
  font-size: 18px;
  line-height: 140%;
}

.sizes-table table th,
.sizes-table table td {
  border: 1px solid #E8E8E8;
  border-collapse: collapse;
}

.sizes-table table tbody tr:nth-child(even) {
  background: #F4F4F4;
}

.sizes-table table thead tr {
  background: #F4F4F4;
}

.sizes-table table thead tr.bg-blue {
  background: rgb(0, 51, 102);
  color: #FFF;
}

.sizes-table table thead tr.bg-blue span {
  color: #99ADC2;
}

.types-slider__item {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
}

.types-slider__item-title {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.types-slider__item-description {
  margin-bottom: 30px;
}

.types-slider__item-description p {
  color: #787878;
  margin-bottom: 20px;
}

.types-slider__item-description p:last-child {
  margin-bottom: 0;
}

.types-slider__item-imgs {
  display: flex;
  align-items: flex-start;
}

.types-slider__item-imgs img {
  max-width: 210px;
  margin-right: 20px;
}

.types-slider__item-imgs img:last-child {
  margin-right: 0;
}

.calculator-top {
  margin-bottom: 30px;
}

.calculator-top .btns {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.calculator-top .btns .btn {
  font-size: 16px;
  margin-right: 0 !important;
}

.calculator-top .btns .btn-empty {
  color: #787878;
}

.calculator-form {
  padding: 30px 30px 50px;
  border-radius: 5px;
  background: #F4F4F4;
}

.calculator-form__title {
  color: #1E1E1E;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.calculator-form form .small-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calculator-form form .small-inputs .itc-select {
  margin-right: 10px;
}

.calculator-form form .small-inputs .itc-select:last-child {
  margin-right: 0;
}

.calculator-form form button.btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.calculator-form form .itc-select {
  margin-bottom: 15px;
}

.calculator-form form .itc-select__toggle {
  border-radius: 8px;
  border: 1px solid #1E1E1E;
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  padding: 12px 20px;
  transition: 0.2s all;
}

.calculator-form form .itc-select__toggle:hover {
  border: 1px solid #A5A5A5;
}

.calculator-form form .itc-select__toggle[value=""] {
  border: 1px solid #D2D2D2;
  color: #A5A5A5;
}

.calculator-form form .itc-select__toggle[value=""]:after {
  opacity: 0.4;
}

.calculator-form form .itc-select__toggle:after {
  width: 8px;
  height: 8px;
}

.calculator-form form .itc-select__dropdown {
  top: calc(100% + 5px);
  border-radius: 8px;
  background: #FFF;
  border: none;
  padding: 15px 10px;
  max-height: 250px;
}

.calculator-form form .itc-select__option {
  padding: 8px 15px;
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  border-radius: 8px;
}

.calculator-form form .itc-select__option_selected {
  background: #F4F4F4;
  padding: 8px 15px;
}

.calculator-form form .itc-select__option_selected:after {
  color: rgb(0, 51, 102);
  width: 24px;
  height: 24px;
  background-image: url("/local/templates/galactica/src/assets/img/select-arrow.svg");
}

.calculator-form form input {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #D2D2D2;
}

.calculator-form form input:not(:placeholder-shown) {
  border: 1px solid #1E1E1E;
}

.calculator-form form input:last-child {
  margin-bottom: 20px;
}

.calculator-form form .description {
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.calculator-form form .result {
  color: #A5A5A5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.calculator-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px;
  border-radius: 5px;
  border: 1px solid #D2D2D2;
}

.calculator-img img {
  height: 100%;
}

.calculator .itc-select__dropdown {
  /* ползунок скроллбара */
}

.calculator .itc-select__dropdown::-webkit-scrollbar {
  width: 15px;
  height: 15px;
  background-color: #FFF;
  border-radius: 100px;
  border: 4px solid #FFF;
}

.calculator .itc-select__dropdown::-webkit-scrollbar-thumb {
  background-color: #E5EBF0;
  border-radius: 100px;
  height: 15px;
  width: 25px;
  border: 5px solid #FFF;
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  right: 30px;
  border-radius: 8px;
  background: #1E1E1E;
  padding: 20px;
  z-index: 9;
  opacity: 0;
  transition: 0.2s all;
}

.toast.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.toast-text {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  width: 175px;
  margin-right: 40px;
  line-height: normal;
}

.toast-link {
  color: #16C95E;
  text-decoration: none;
}

.toast-link:hover {
  text-decoration: underline;
}

.faq-item {
  position: relative;
  padding: 25px 0;
  border-bottom: 1px solid #D2D2D2;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover svg path {
  fill: #1E1E1E;
}

.faq-item.active .faq-item__title {
  color: #1E1E1E;
}

.faq-item.active .faq-item__text {
  display: block;
  margin-top: 10px;
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 700px;
}

.faq-item.active .faq-item__cross {
  transform: rotate(45deg);
}

.faq-item.active .faq-item__cross path {
  fill: #1E1E1E;
}

.faq-item__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  color: #787878;
  cursor: pointer;
  transition: 0.2s all;
}

.faq-item__title:hover {
  color: #1E1E1E;
}

.faq-item__cross {
  position: absolute;
  top: 25px;
  right: 0;
  pointer-events: none;
  transition: 0.2s all;
}

.faq-item__cross path {
  transition: 0.2s all;
}

.faq-item__text {
  display: none;
}

.fancybox-slide--html .fancybox-close-small {
  top: -15px !important;
}

.fancybox-content {
  padding: 30px 30px 40px;
  border-radius: 8px;
  overflow: visible;
  max-width: 550px;
  width: 100%;
}

.fancybox-close-small {
  right: -62px !important;
}

.fancybox-close-small svg {
  width: 32px;
  height: 32px;
}

.fancybox-close-small svg path {
  fill: #FFF !important;
}

.modal-title {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.modal-description {
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.modal-description.ghost {
  color: #A5A5A5;
  margin-bottom: 20px;
}

.modal-offer {
  color: #1E1E1E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
}

.modal .form-file {
  margin-bottom: 20px;
}

.modal .form-file label {
  border: 1px solid #D2D2D2;
  color: #A5A5A5;
}

.modal .form-file label:hover {
  border: 1px solid #A5A5A5;
}

.modal .form-file label svg path {
  fill: #A5A5A5;
}

.modal form label {
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.modal form input {
  width: 100%;
  margin-bottom: 20px;
}

.modal form button.btn {
  justify-content: center;
  width: 100%;
}

.text-content {
  color: #1E1E1E;
  padding-bottom: 100px;
}

.text-content h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.text-content p {
  color: #787878;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 25px;
}

.text-content h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}

.text-content figure {
  margin-bottom: 30px;
}

.text-content figure img {
  width: 100%;
  border-radius: 8px;
}

.text-content figure figcaption {
  color: #787878;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-content h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.text-content ul {
  list-style: inside;
  color: #787878;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.text-content h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.text-content blockquote {
  border-radius: 4px;
  background: #F4F4F4;
  border-left: 10px solid #D2D2D2;
  padding: 15px 63px 15px 20px;
  color: #1E1E1E;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 50px;
}

.text-content blockquote p {
  margin-bottom: 0;
}

.text-content blockquote strong {
  display: block;
  margin-bottom: 20px;
}

.text-content table {
  width: 100%;
  overflow: hidden;
  color: #1E1E1E;
  font-size: 16px;
  line-height: 140%;
}

.text-content table th,
.text-content table td {
  border: 1px solid #E8E8E8;
  border-collapse: collapse;
  padding: 12px 20px;
  text-align: center;
}

.text-content table tbody tr:nth-child(odd) {
  background: #F4F4F4;
}

.text-content table thead tr.bg-blue {
  background: rgb(0, 51, 102);
  color: #FFF;
}

.text-content table thead tr.bg-blue span {
  color: #99ADC2;
}

.sizes-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.sizes-list__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-decoration: none;
  margin: 10px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  width: 260px;
  position: relative;
  transition: 0.2s all;
}

.sizes-list__item:not(div):hover {
  background: rgb(0, 51, 102);
  border: 1px solid rgb(0, 51, 102);
}

.sizes-list__item:not(div):hover .absolute {
  right: 15px;
  opacity: 1;
}

.sizes-list__item:not(div):hover .absolute span {
  color: #FFF;
}

.sizes-list__item:not(div):hover .absolute svg {
  display: block;
  margin-left: 5px;
}

.sizes-list__item:not(div):hover .title,
.sizes-list__item:not(div):hover .description {
  color: #FFF;
}

.sizes-list__item:nth-child(5),
.sizes-list__item:nth-child(6) {
  width: 400px;
}

.sizes-list__item .title {
  color: rgb(0, 51, 102);
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 10px;
}

.sizes-list__item .title span {
  font-size: 64px;
}

.sizes-list__item .description {
  color: #787878;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sizes-list__item .absolute {
  display: flex;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 1;
  transition: 0.2s all;
}

.sizes-list__item .absolute span {
  font-size: 14px;
  font-weight: 400;
  color: rgb(0, 51, 102);
}

.sizes-list__item .absolute svg {
  display: none;
}

.title-popover {
  display: inline-block;
  cursor: help;
  position: relative;
  margin-bottom: 20px;
}

.title-popover__item {
  display: flex;
  align-items: center;
}

.title-popover__item svg {
  margin-left: 10px;
}

.title-popover .popover {
  display: none;
  position: absolute;
  left: calc(100% + 12px);
  top: -61px;
  padding: 15px 20px;
  border-radius: 10px;
  background: #F4F4F4;
  width: 425px;
  z-index: 3;
}

.title-popover .popover p {
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-popover .popover p:last-child {
  margin-bottom: 0;
}

.title-popover .popover p strong {
  display: block;
  font-weight: 600;
}

.title-popover .popover svg {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.title-popover:hover .popover {
  display: block;
}

.text-content .btn-ghost svg {
  margin-right: 10px;
}

.text-content .btn-ghost small {
  margin-left: 10px;
  color: #787878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-content .table {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
}

.text-content .table.hide {
  height: 290px;
}

.text-content .table.hide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}

.text-content .team-show-all.no-border {
  border: none;
}

.text-content ul {
  list-style-position: outside;
  padding-left: 20px;
}

.text-content.no-padding {
  padding: 0;
}

.graphic {
  margin-top: 50px;
}

.graphic-block {
  padding-left: 30px;
  padding-right: 30px;
}

.graphic-block img {
  width: 100%;
}

.services-seo h2 {
  line-height: normal;
  margin-bottom: 20px;
}

.services-seo p {
  margin-bottom: 30px;
}

.services-seo p:last-child {
  margin-bottom: 20px;
}

.services-seo .btn:first-child {
  margin-right: 20px;
}

.services-seo .btn.btn-ghost {
  background: #E5EBF0;
  color: rgb(0, 51, 102);
}

.blog-block .blog-item {
  margin-bottom: 20px;
}

.blog-block .btn-empty {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
}

.blog-block .btn-empty:hover {
  background: #F4F4F4;
}

.main-title .description {
  margin-bottom: 30px;
  color: #787878;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-title .input-search {
  max-width: 400px;
}

.main-title .input-search.focused input {
  padding: 21px 90px 21px 20px;
}

.main-title .input-search input {
  max-width: 400px;
  padding: 21px 52px;
}

.main-title .blog-section__bottom {
  flex-direction: column;
  align-items: flex-start;
}

.main-title .blog-section__bottom-text {
  margin-bottom: 10px;
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-title.no-border {
  border: none;
  margin-bottom: 0;
}

.tags {
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  padding: 20px 0 0;
  margin-bottom: 50px;
}

.tags .btn {
  margin-bottom: 20px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tags .tag {
  display: block;
  margin-right: 20px;
  color: #787878;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.2s all;
  margin-bottom: 20px;
  text-decoration: none;
}

.tags .tag:hover {
  color: rgb(0, 51, 102);
}

.tags .tag.active {
  color: #1E1E1E;
}

.blog-title {
  border-radius: 8px;
  padding: 30px;
  color: #FFF;
  margin-bottom: 30px;
}

.blog-title__top {
  display: flex;
  align-items: center;
  margin-bottom: 160px;
  font-size: 18px;
  font-weight: 400;
}

.blog-title__top-type {
  position: relative;
  margin-right: 20px;
}

.blog-title__top-type.orange {
  padding-left: 18px;
}

.blog-title__top-type.orange:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F2994A;
}

.blog-title h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.requisites {
  border-radius: 8px;
  border: 1px solid #D2D2D2;
  padding-bottom: 0;
  margin-bottom: 100px;
  margin-top: 100px;
}

.requisites-top {
  padding: 20px 30px;
  border-bottom: 1px solid #D2D2D2;
}

.requisites-content {
  padding: 30px;
}

.requisites-block {
  margin-bottom: 20px;
}

.requisites-block:last-child {
  margin-bottom: 0;
}

.requisites-block span {
  display: block;
  margin-bottom: 5px;
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.requisites-block span:first-child {
  color: #1E1E1E;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.information-item {
  display: block;
  border-radius: 5px;
  background: #F4F4F4;
  padding: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  border: 1px solid #F4F4F4;
  transition: 0.2s all;
}

.information-item:hover {
  border: 1px solid #1E1E1E;
}

.information-item__title {
  color: #1E1E1E;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.information-item__description {
  color: #787878;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.information-item__link {
  display: flex;
  align-items: center;
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.information-item__link svg {
  margin-left: 5px;
}

.examples-slider__item.example-page {
  margin-bottom: 20px;
}

.materials-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.materials-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 186px;
  width: 357px;
  border-radius: 2px;
  border: 1px solid var(--black-20, #D2D2D2);

  color: #036;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}

.views-materials__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.views-materials__item {
  padding: 5px 20px;
  border-left: 1px solid #D2D2D2;
  color: #1E1E1E;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.views-materials__item:first-child {
  padding-left: 0;
  border-left: none;
}

.views-materials__img {
  width: 100%;
  border-radius: 8px;
}

@media screen and (max-width: 1400px) {
  body .container-fluid {
    max-width: 1000px;
  }

  .contacts-info {
    flex: 1 1 30%;
    margin-right: 30px;
  }

  .contacts-map {
    flex: 1 1 70%;
  }

  .about-bottom .fact-number {
    font-size: 55px;
  }
}

@media screen and (max-width: 1366px) {
  .header-bottom__info a.phone {
    margin-right: 20px;
  }

  .catalog-group:after {
    right: -90px;
  }

  .catalog-group__img {
    right: -70px;
  }
}

@media screen and (max-width: 1280px) {
  .main-slider__hash-item {
    padding: 15px 30px 15px 15px;
  }

  .services-group {
    min-height: 300px;
  }

  footer .footer-nav {
    margin-right: 0;
  }
}

@media screen and (max-width: 1200px) {
  footer .footer-socials {
    margin-bottom: 30px;
  }

  footer .footer>.row {
    flex-direction: column-reverse;
  }

  footer .footer-link {
    margin-bottom: 15px;
  }

  footer .footer .logo {
    margin-bottom: 15px;
  }

  .about-bottom .fact-number {
    font-size: 50px;
  }

  .about-bottom .fact-wrap .fact {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .main-slider .item .title {
    font-size: 55px;
  }

  .header-bottom__info {
    font-size: 14px;
  }
}

@media screen and (max-width: 1170px) {
  header.header-absolute {
    padding-top: 50px;
  }

  body .body-wrap {
    padding-left: 0;
  }

  .mobile-close {
    display: block;
  }

  .sidebar {
    display: none;
    position: fixed;
    padding-top: 30px;
    overflow: scroll;
  }

  .sidebar.active {
    display: block;
  }

  .sidebar-logo {
    display: none;
  }

  .sidebar-contacts {
    padding: 15px;
    margin-top: 15px;
  }

  .sidebar nav ul {
    margin-bottom: 15px;
  }

  .sidebar nav ul li {
    margin-bottom: 5px;
  }

  .sidebar nav ul li.nav-btn .burger-btn {
    display: none !important;
  }

  .sidebar nav ul li.nav-btn a {
    width: 100%;
    background: transparent;
    border: none;
  }

  .header-bottom__info {
    display: none;
  }

  .header-bottom__nav {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .seo-text .row {
    flex-direction: column-reverse;
  }

  .seo-text .seo-text__img {
    height: 300px;
    margin-bottom: 30px;
  }

  .sizes-table {
    position: relative;
    overflow-x: scroll !important;
  }

  .types-slider__item-imgs {
    flex-wrap: wrap;
  }

  .calculator-top .btns {
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .calculator-form {
    margin-bottom: 10px;
  }

  .calculator-form form .small-inputs {
    flex-wrap: wrap;
  }

  .calculator-form form .small-inputs .itc-select {
    margin-right: 0 !important;
  }

  .faq-item__title {
    font-size: 18px;
    padding-right: 35px;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-nav nav {
    width: 100%;
    max-width: none;
  }

  .requisites {
    margin: 50px 0;
  }

  .requisites .section-title {
    margin-bottom: 15px;
  }

  .text-content h2 {
    font-size: 40px;
  }

  .blog-title h1 {
    font-size: 44px;
  }

  .breadcrumps ul {
    flex-wrap: wrap;
  }

  .main-slider__hash-item {
    padding: 10px;
  }

  .about .video-box {
    height: 200px;
  }

  .about-bottom p.strong {
    margin-bottom: 30px;
  }

  .about-bottom .fact-wrap {
    margin-bottom: 30px;
    justify-content: flex-start;
  }

  .about-bottom .fact-wrap .fact {
    justify-content: flex-start;
  }

  .catalog-group {
    flex: 1 1 100%;
  }

  .services-list {
    flex-wrap: wrap;
  }

  .services-list>div:nth-child(1) {
    flex: 1 1 100%;
  }

  .services-list>div:nth-child(2) {
    flex: 1 1 100%;
  }

  footer .footer-bottom__info span {
    margin-bottom: 15px;
  }

  main.slider {
    margin-bottom: 30px;
  }

  .main-slider .item {
    padding-top: 200px;
  }

  .main-slider .item .title {
    font-size: 35px;
  }

  .section-title {
    font-size: 30px;
  }

  .about-bottom p.strong {
    font-size: 20px;
  }

  .about-bottom .fact-wrap {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .form-top {
    flex-wrap: wrap;
  }

  .form-top>div {
    flex: 1 1 45%;
    margin-right: 10px;
  }

  .form-top>div input {
    margin-bottom: 15px;
  }

  .form-top>div:last-child {
    margin-right: 10px;
    flex: 1 1 100%;
  }

  .features-slider__slides-item .title {
    font-size: 27px;
  }

  .features-slider__slides-item p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 10px;
  }

  .features-slider {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .features-slider__btns {
    flex: 1 1 100%;
    margin-right: 0;
  }

  .features-slider__slides {
    display: block;
    width: 100%;
    flex: 1 1 100%;
  }

  .features-slider__slides-item {
    display: none;
    position: relative;
    margin-bottom: 15px;
  }

  .features-slider__slides-item.active {
    display: block;
  }

  .features-slider__btns-item {
    margin-bottom: 10px;
    padding: 15px;
  }

  .about-bottom .fact-wrap .fact {
    text-align: left;
    align-items: flex-start;
  }

  .about .video-content {
    padding: 10px;
  }

  section .section-top {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  section .section-top .section-title {
    margin-bottom: 10px;
  }

  .form-title {
    font-size: 21px;
  }

  .blog-section__bottom {
    flex-wrap: wrap;
  }

  .blog-section__bottom-text {
    margin-bottom: 15px;
  }

  .contacts-wrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .contacts-info {
    flex: 1 1 100%;
    margin-right: 0;
  }

  .contacts-map {
    flex: 1 1 100%;
  }

  .contacts-map #map {
    height: 300px;
    margin-bottom: 25px;
  }

  footer .footer {
    padding: 30px 0 15px;
  }

  footer .footer-nav {
    flex-wrap: wrap;
  }

  footer .footer-nav nav {
    margin-bottom: 15px;
  }

  .seo-text h2,
  .seo-text h3 {
    font-size: 25px !important;
  }

  .sizes-list__item {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {

  .main-slider__hash {
    flex-wrap: wrap;
  }

  .main-slider__hash-item {
    width: 100%;
  }

  .main-slider__hash-wrap {
    transform: none;
  }

  .about-top {
    flex-wrap: wrap;
  }

  .about-top .section-title {
    margin-bottom: 15px;
  }

  .catalog-group:after {
    right: -200px;
  }

  .catalog-group__img {
    right: -150px;
  }

  .form-top>div {
    flex: 1 1 100%;
    width: 100%;
  }

  .main-slider .item .title {
    font-size: 25px;
  }

  .main-slider .item {
    padding: 130px 0 60px;
  }

  .blog-section__bottom-socials {
    flex-wrap: wrap;
  }

  .blog-section__bottom-socials a {
    margin-right: 0;
    margin-top: 10px;
  }

  .catalog-group nav {
    flex: 1 1 100%;
    width: 100%;
  }

  .catalog-group__img {
    display: none;
  }

  .services-group nav li.group a {
    font-size: 21px;
  }

  body .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-title h1 {
    font-size: 45px !important;
  }
}

@media screen and (max-width: 325px) {
  .form-wrap {
    padding: 20px;
  }

  .blog-section {
    padding: 20px;
  }

  .blog-item__info {
    padding: 10px;
  }

  .blog-item__info-bottom .category {
    display: none;
  }

  .contacts {
    padding: 10px;
  }

  .examples-slider__item .bottom {
    flex-wrap: wrap;
  }

  .examples-slider__item .bottom>div {
    margin-bottom: 15px;
  }
}