body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  color: #2d2d2d;
}

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

h1,
h2,
h3 {}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.content-gen {
  padding: 0 0 72px;
}

.breadcrumbs li {
  display: inline-block;
  margin-right: -4px;
  align-items: center;
}

.burgerMenu__btn {
  display: none;
  z-index: 1002;
  -webkit-transition: 0.1s -webkit-transform linear;
  transition: 0.1s -webkit-transform linear;
  transition: 0.1s transform linear;
  transition: 0.1s transform linear, 0.1s -webkit-transform linear;
  position: fixed;
  background: 0;
  float: right;
  margin: 2rem;
  height: 2.7rem;
  width: 3.5rem;
  outline: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 1200px) {
  .burgerMenu__btn {
    display: block;
  }
}

.burgerMenu__bar,
.burgerMenu__bar::before,
.burgerMenu__bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
  position: absolute;
  background: #000;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  content: '';
  top: 50%;
  right: 0;
}

.burgerMenu__bar {
  margin-top: -0.2rem;
}

.burgerMenu__bar::before {
  top: -1.2rem;
}

.burgerMenu__bar::after {
  top: 1.2rem;
}

.burgerMenu__bar::before,
.burgerMenu__bar::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.burgerMenu__btn.active .burgerMenu__bar {
  background: 0;
}

.burgerMenu__btn.active .burgerMenu__bar::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #fff;
}

.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu__btn.active .burgerMenu__bar::after {
  top: 0;
}

.burgerMenu__btn.active .burgerMenu__bar,
.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu.active .burgerMenu__bar::after {
  -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}

.burgerMenu__nav {
  z-index: 1001;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91), -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 6.2rem;
}

.menu-open .burgerMenu__nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.burgerMenu__list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.burgerMenu__item {
  font-size: 2.6rem;
  text-transform: uppercase;
}

.burgerMenu__link {
  display: block;
  padding: 20px 8px;
  color: #fff;
}

.burgerMenu__link:hover,
.burgerMenu__link:focus,
.burgerMenu__link:active {
  background-color: rgba(13, 120, 146, 1);
  text-decoration: none;
  color: #fff;
}

.modalMain {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}

.modalMain__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}

.modalMain__inner {
  position: absolute;
  width: 450px;
  padding: 24px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url(/img/form_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1005;
}

.modalMain__title {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.modalMain__row {
  margin: 8px 0;
}

.modalMain__input {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.modalMain__button {
  text-align: center;
}

@media (max-width: 768px) {
  .modalMain__inner {
    width: 98%;
  }
}

.modalYesright {
  color: #fff;
}

.modalYesright a {
  color: #fff;
}

.modalMain__btn {
  background-color: #008cd0;
  padding: 8px;
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  outline-style: none;
  font-weight: 600;
  color: #fff;
}

.modalMain__btn:hover {
  background-color: #66BAE2;
  color: #fff;
}

.stick-menu {
  display: none;
  text-align: center;
}

.is-sticky .stick-menu {
  width: 100%;
  z-index: 1000;
  display: block;
  position: fixed;
  background-color: #fff;
  padding: 12px 0;
}

.stickMenu__list {
  display: flex;
  justify-content: space-around;
}

.toTop {
  width: 50px;
  height: 50px;
  font-size: 24px !important;
  line-height: 45px !important;
  color: #fff;
  background: #337ab7;
  border: 1px solid #337ab7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: fixed;
  right: 66px;
  bottom: 80px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}

.toTop:hover {
  border: 1px solid #337ab7;
  color: #337ab7;
  background: #fff;
  text-decoration: none;
}

.toTop:focus {
  border: 1px solid #337ab7;
  color: #fff;
  background: #337ab7;
  text-decoration: none;
}

.line-top {
  display: none;
  z-index: 1001;
  /*position: fixed;*/
  width: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .line-top {
    display: block;
  }
}

.line-top__inner {
  padding: 8px 8px;
  background-color: #fcfcfc;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-top__logo {
  height: 32px;
}

.line-top__phone {
  text-align: left;
}

.line-top__phone-link {
  color: #000;
  text-decoration: none;
}

.line-top__logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.line-top__icon {
  text-decoration: none;
  color: #000;
  font-size: 1.8em;
}

.shapka__logo-img {
  width: 100px;
}

.mobile-menu {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fcfcfc;
  z-index: 1001;
}

.mobile-menu__inner {
  padding: 16px;
}

.mobile-menu__line-top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__logo {
  height: 48px;
}

.mobile-menu__logo-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.mobile-menu__closed {
  color: #000;
  text-decoration: none;
  font-size: 1.8em;
}

.mobile-menu__menu {
  margin: 16px 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__item {
  padding: 8px 0;
}

.mobile-menu__link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu__phone {
  margin: 16px 0;
  color: #000;
}

.mobile-menu__phone-text {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875em;
}

.mobile-menu__phone-list {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.mobile-menu__phone-item {

}

.mobile-menu__phone-link {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.category-mobile {
  margin: 8px 0;
}

.category-mobile select {
  width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 8px 16px;
}

.sticky {
  position: fixed;
}

.line-top__callback {
  background-color: #000;
  color: #ffffff;
  border: none;
  margin-top: 4px;
  text-transform: lowercase;
  padding: 4px 8px;
}

.modal-exit {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1001;
  top: 0;
  left: 0;
}

.modal-exit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 350px;
  background-color: #ffffff;
  box-shadow: 0 0 8px #666666;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-exit__inner {
    width: 98%;
  }
}

.modal-exit__header {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

/*--------*/
.shapka-top {
  background-color: #eaebf5;
}

.shapka-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.shapka-phones {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shapka-phone {
  margin-right: 54px;
}

.shapka-btn a {
  background-color: #c0c1c9;
  border: 2px solid #c0c1c9;
  color: #2d2d2d;
  padding: 12px 32px;
}

.shapka-btn a:hover {
  background-color: #eaebf5;
  cursor: pointer;
}

.shapka-phone__title {
  font-size: 14px;
}

.shapka-phone__link a {
  font-size: 16px;
  color: #2d2d2d;
}

.shapka-phone__link span {
  font-weight: bold;
}

.shapka {
  background-color: #fff;
  padding: 32px 0;
}

.shapka__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shapka-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.shapka-menu__item {
  margin-left: 16px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

.shapka-menu__item a {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 600;
}

.shapka-menu__item a:hover {
  color: #0089ce;
}

.shapka-menu__item a:hover:after {
  content: " ";
  background-color: #0089ce;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
}

.shapka-logo__img {
  width: 243px;
}

.slider-gener .slider__item {
  padding: 0 0 150px;
}

.slider-gener .slider__inner {
  display: none;
}

.slider__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 58px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 32px;
}

.slider__subtitle {
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: #fff;
}

.slider__text {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

.slider__item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 180px 0 150px;
}

.slider-btn a {
  background-color: #fff;
  padding: 8px 32px;
  border: 1px solid #fff;
  color: #008cd0;
}

.slider__item1 {
  background-image: url(/img/slider/001.jpg);
}

.forma,
.slider {
  position: relative;
}

.slider {
  margin-bottom: 50px;
}

.forma {
  min-height: 200px;
  display: none;
}

.forma-a {
  position: absolute;
  top: -60px;
  left: 10%;
  right: 10%;
  background-color: #008cd0;
  width: 80%;
  background-image: url(/img/form_bg.jpg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

.forma__inner {
  padding: 32px 0;
}

.forma__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
}

.forma__subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.gen-title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.plusi__img {
  margin-right: 12px;
}

.plusi__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.plusi__text {
  font-weight: 700;
  font-size: 14px;
}

.plusi {
  margin: 0 0 102px;
}

.remont__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}

.remont__left,
.remont__right {
  width: 50%;
}

.remont__left {
  font-size: 18px;
  text-transform: uppercase;
}

.remont__right {
  border-left: 2px solid #0089ce;
  font-size: 12px;
}

.remont__right ol,
.remont__right ul {
  margin: 0;
}

.remont__right li {
  margin-bottom: 8px;
}

.white {
  color: #fff;
}

.process {
  background-image: url(/img/process_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 102px 0;
  color: #fff;
}

.process__title {
  font-weight: 700;
  margin-bottom: 16px;
}

.process__items {
  padding-top: 32px;
}

.process__items ul {
  padding: 0;
  margin: 0;
}

.process__items ul li {
  margin-bottom: 8px;
}

.news__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news {
  padding: 72px 0;
}

.news__title .gen-title {
  margin-bottom: 0;
}

.gen-link a {
  font-size: 22px;
  color: #2d2d2d;
  font-weight: 700;
}

.news__items {
  padding: 54px 0;
}

.news__item {
  border: 1px solid #c0c0c0;
  padding: 16px 12px;
}

.news__date {
  font-size: 12px;
  color: #c0c0c0;
}

.news__title {
  padding: 10px 0;
  color: #008cd0;
  font-size: 22px;
}

.news__text {
  font-size: 14px;
  color: #0c072d;
  margin-bottom: 12px;
}

.news__link {
  font-size: 16px;
  color: #008cd0;
}

.blue-banner {
  color: #fff;
  background-color: #008cd0;
  padding: 0 32px 0 16px;
}

.blue-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blue-banner__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blue-banner__link a {
  font-size: 14px;
  color: #fff;
}

.blue__img {
  width: 250px;
}

.grey-form,
.footer {
  background-color: #eaebf5;
}

.footer__adress {
  background-color: #fff;
  padding: 16px 0;
  text-align: center;
}

.footer__adress-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__adress-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f0f0f;
  line-height: 24px;
}

.footer__adress-rejim {
  font-size: 10px;
  color: #0f0f0f;
  padding: 8px 0;
}

.footer__adress-phone a {
  font-size: 14px;
  font-weight: 700;
  color: #008cd0;
}

.footer {
  padding: 42px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-right: 32px;
}

.footer-two {
  display: flex;
  justify-content: space-between;
}

.footer__title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer__list a {
  font-size: 12px;
  color: #5c5c5c;
}

.footer__list li {
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-bot {
  background-color: #2d2d2d;
  padding: 10px 0;
}

.footer-bot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

.bot-r {
  display: flex;
  justify-content: flex-end;
}

.bot-r div {
  margin-left: 32px;
}

.bot-r a {
  color: #fff;
}

.grey-form {
  padding: 16px 0;
}

.grey-forma__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grey-forma__title {
  font-weight: 700;
  font-size: 28px;
  color: #008cd0;
}

.grey-forma__subtitle {
  font-size: 14px;
  color: #0f0f0f;
}

.grey-forma-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formMain__input {
  color: #000;
  border: 1px solid #000;
  padding: 8px 16px;
  width: 100%;
  background-color: inherit;
}

.grey-forma-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formMain__input::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
}

.formMain__input::-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
}

.formMain__input:-moz-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
}

.formMain__input:-ms-input-placeholder {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
}

.formMain__row {
  margin-left: 32px;
  max-width: 33%;
}

.grey-forma-btn {
  color: #fff;
  background-color: #008cd0;
  padding: 10px 32px;
  border: 2px solid #008cd0;
  text-transform: uppercase;
  font-size: 10px;
}

.grey-forma-btn:hover {
  background-color: inherit;
  color: #008cd0;
}

.form-control {
  background-color: inherit;
  color: #000;
}

.form-control::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
}

.form-control::-moz-placeholder {
  color: #fff;
  font-size: 14px;
}

.form-control:-moz-placeholder {
  color: #fff;
  font-size: 14px;
}

.form-control:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
}

.brands {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: minmax(80px, auto);
  grid-gap: 20px;
}

.brand__item img {
  width: 100%;
}

.brand__item {
  text-align: center;
}

.brand__title {
  color: #222;
  font-weight: 600;
}

.mobile-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  margin-top: 30px;
}

.mobile-phones .shapka-phone {
  margin-right: 0;
  text-align: center;
}

.mobile-phones .shapka-phone__title,
.mobile-phones .shapka-phone__link a {
  font-size: 14px;
}



@media (max-width: 1200px) {
  .shapka-menu__item a {
    font-size: 12px;
  }

  .brands {
    grid-template-columns: repeat(6, 1fr);
  }

  .shapka-phone__title {
    font-size: 11px;
  }

  .shapka-phone__link a {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .brands {
    grid-template-columns: repeat(4, 1fr);
  }
  .shapka-top,
  .shapka {
    display: none;
  }

  .forma-a {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .plusi__item {
    margin-bottom: 12px;
  }

  .process__items .col-sm-6 {
    display: inline-block;
    margin-right: -4px;
    float: none;
    vertical-align: top;
    margin-bottom: 16px;
  }

  .grey-forma__inner {
    display: block;
  }

  .grey-forma-left {
    margin-bottom: 24px;
  }

  .formMain__row {
    margin: 0 32px 0 0;
  }
}

@media (max-width: 768px) {
  .brands {
    grid-template-columns: repeat(3, 1fr);
  }
  .plusi {
    padding: 42px 0;
  }

  .news__item {
    margin-bottom: 16px;
  }

  .footer__inner {
    display: block;
    text-align: center;
  }

  .footer__list {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .form-control {
    margin-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .blue-banner__inner {
    display: block;
    text-align: center;
  }

  .blue__img {
    margin-top: 16px;
    max-width: 100%;
  }

  .grey-forma-right {
    display: block;
  }

  .formMain__row {
    margin: 0;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
  }

  .grey-forma-btn {
    display: block;
  }

  .footer-bot__inner,
  .bot-r {
    display: block;
    text-align: center;
  }

  .bot-r div {
    margin: 0;
    margin-top: 8px;
  }

  .slider__item {
    background-position: center right;
  }
}

@media (max-width: 450px) {
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-two {
    display: block;
  }

  .remont__item {
    display: block;
  }

  .remont__left {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .remont__right {
    border-top: 2px solid #0089ce;
    width: 100%;
    border-left: none;
    padding-top: 12px;
  }
}

.fotorama img,
.fotorama {
  width: 100% !important;
}

.shapka-soc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shapka-soc__item {
  margin: 0 8px;
}

.shapka-soc__item a {
  font-size: 26px;
  color: #000;
}

.line-top__phone {
  font-weight: 600;
  font-size: 18px;
}

.enter-btn a {
  background-color: #0081c8;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  display: inline-block;
}

.banner-enter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}

.banner-enter__inner {
  padding: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  background-color: #fff;
}

@media(max-width: 768px) {
  .banner-enter__inner {
    flex-direction: column;
    gap: 10px;
  }

  .banner-enter {
    top: 0;
    bottom: auto;
  }
}