* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #f6f7f9;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
/* ------ .btn ------ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  outline: none;
}
.btn.btn-default {
  border: 1px solid #000;
  border-radius: 30px;
  color: #000;
}
.btn.btn-primary {
  background-color: #FF6800;
  border: 1px solid #FF6800;
  border-radius: 30px;
  color: #fff;
}
/* ------ .page-title ------ */
.page-title {
  margin: 50px 0;
}
.page-title .page-title__row {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1024px) {
  .page-title .page-title__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-title .page-title__head {
  flex: 0 0 auto;
  background-color: #4FC3F7;
  border-radius: 7px;
  padding: 7px;
}
.page-title .page-title__head h1 {
  margin: 0;
  padding: 0;
}
.page-title .page-title__description {
  flex: 0 0 500px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .page-title .page-title__description {
    margin-top: 15px;
    flex: 0 0 auto;
  }
}
/* ------ .section-title ------ */
.section-title {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
  }
}
.section-title .section-title__head {
  flex: 0 0 auto;
  background-color: #4FC3F7;
  border-radius: 7px;
  padding: 7px;
}
.section-title .section-title__head h2 {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 600;
}
.section-title .section-title__description {
  flex: 0 0 500px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .section-title .section-title__description {
    flex: 0 0 auto;
  }
}
/* ------ mobile menu ------ */
.mobile-menu-button {
  display: none;
}
@media (max-width: 1080px) {
  .mobile-menu-button {
    display: block;
  }
}
.mobile-menu-button svg {
  width: 50px;
  height: 50px;
}
.mobile-menu-button svg path {
  fill: #FF6800;
}
.mobile-menu {
  position: fixed;
  z-index: 99999;
  width: 90%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
.mobile-menu.active {
  display: block !important;
}
.mobile-menu .mobile-menu__wrapper {
  position: relative;
  padding: 30px;
}
.mobile-menu .mobile-menu__wrapper ul {
  margin: 0;
  padding: 0;
}
.mobile-menu .mobile-menu__wrapper ul li {
  list-style: none;
  margin-bottom: 10px;
}
.mobile-menu .mobile-menu__wrapper a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__contacts {
  margin-top: 30px;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__action {
  margin-top: 15px;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__action a {
  color: #fff;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__close {
  position: absolute;
  top: 30px;
  right: 15px;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__close svg {
  width: 50px;
  height: 50px;
}
.mobile-menu .mobile-menu__wrapper .mobile-menu__close svg path {
  fill: #FF6800;
}
/* ------ open-form ------ */
.open-form .open-form__title {
  margin-bottom: 30px;
}
.open-form .open-form__title h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 15px;
  padding: 0;
}
.open-form a {
  color: #FF6800;
}
/* ------ popup ------ */
.popup {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.active {
  display: flex !important;
}
.popup .popup__background {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup .popup__wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
.popup .popup__wrapper .popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #FF6800;
  border-radius: 50%;
}
.popup .popup__wrapper .popup__close svg {
  width: 20px;
  height: 20px;
}
.popup .popup__wrapper .popup__close svg path {
  fill: #fff;
}
.form input,
.form textarea {
  display: block;
  margin-top: 5px;
  width: 100%;
  max-width: 550px;
  border: 1px solid #c1c3c7;
  border-radius: 7px;
}
.form input[type="text"] {
  height: 50px;
  padding: 5px;
}
.form textarea {
  min-height: 120px;
  padding: 5px;
}
.form label {
  display: block;
  margin-bottom: 30px;
}
.form .input-error {
  display: block;
  color: red;
}
/* ------ section.content ------ */
section.content {
  line-height: 1.7;
}
/* ------ header.header ------ */
header.header {
  padding: 25px 0;
  background-color: transparent;
}
header.header .header__row {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
header.header .header__logo {
  flex-grow: 1;
}
header.header .header__logo img {
  max-height: 45px;
  width: auto;
}
header.header .header-address {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  header.header .header-address {
    display: none;
  }
}
header.header .header-address svg {
  width: 30px;
  height: 30px;
}
header.header .header-address svg path {
  fill: #FF6800;
}
header.header .header-address span.city {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  header.header .header-phone {
    display: none;
  }
}
header.header .header-phone a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #000;
  text-decoration: none;
}
header.header .header-phone a svg {
  width: 30px;
  height: 30px;
}
header.header .header-phone a svg path {
  fill: #FF6800;
}
header.header .header-phone a .header-phone__content {
  text-align: right;
}
header.header .header-phone a .header-phone__content .header-phone__number {
  font-size: 20px;
  font-weight: 600;
}
header.header .header-phone a .header-phone__content .header-phone__info {
  font-size: 16px;
}
header.header .header__action .btn {
  font-size: 16px;
}
/* ------ nav.top-menu ------ */
@media (max-width: 1024px) {
  nav.top-menu {
    display: none;
  }
}
nav.top-menu .top-menu__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
nav.top-menu .top-menu__menu ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 0;
  padding: 0;
}
nav.top-menu .top-menu__menu ul li {
  list-style: none;
}
nav.top-menu .top-menu__menu ul li a {
  color: #000;
  text-decoration: none;
}
/* ------ nav.breadcrumbs ------ */
nav.breadcrumbs {
  padding: 30px 0;
}
nav.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav.breadcrumbs ol li {
  list-style: none;
}
nav.breadcrumbs ol li a {
  color: #FF6800;
  text-decoration: none;
}
/* ------ section.map ------ */
section.map {
  padding: 50px 0;
}
section.map .map__row {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  margin: 0 -15px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  section.map .map__row {
    margin: 0;
    padding: 15px 0;
  }
}
section.map .map__row .open-form {
  flex: 0 0 calc(50% - 30px);
  margin: 15px;
}
@media (max-width: 1024px) {
  section.map .map__row .open-form {
    flex: 0 0 calc(100% - 15px);
    margin: 0;
  }
}
section.map .map__row .open-form h3 {
  font-weight: 600;
}
section.map .map__row .map__wrapper {
  flex: 0 0 calc(50% - 30px);
  margin: 15px;
  padding: 10px;
  border: 2px solid #FF6800;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  section.map .map__row .map__wrapper {
    flex: 0 0 calc(100% - 15px);
    margin: 30px 0;
  }
}
section.map .map__row .map__wrapper #map {
  height: 435px;
}
/* ------ footer.footer ------ */
footer.footer {
  margin-top: 100px;
  min-height: 400px;
  background-color: #c1c3c7;
}
footer.footer .footer__row {
  display: flex;
  column-gap: 60px;
  padding: 30px;
  margin: 0 -30px;
}
@media (max-width: 880px) {
  footer.footer .footer__row {
    flex-direction: column;
    padding: 30px 0;
    margin: 0px;
  }
}
footer.footer .footer__logo {
  flex-grow: 1;
  margin-bottom: 30px;
}
footer.footer .footer__logo img {
  max-height: 45px;
  width: auto;
}
footer.footer .footer__logo .info {
  margin-top: 30px;
  padding-left: 50px;
  line-height: 1.2;
}
@media (max-width: 880px) {
  footer.footer .footer__logo .info {
    padding-left: 0;
  }
}
footer.footer .footer__logo .info strong {
  font-weight: 600;
}
footer.footer .footer__menu {
  margin-bottom: 30px;
}
footer.footer .footer__menu h3 {
  padding: 0;
  margin: 0 0 15px 0;
}
footer.footer .footer__menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  margin: 0;
  padding: 0;
}
footer.footer .footer__menu ul li {
  list-style: none;
}
footer.footer .footer__menu ul li a {
  color: #333;
  text-decoration: underline;
}
/* ------ section.hero ------ */
section.hero {
  padding: 30px 0;
}
section.hero .hero__row {
  display: flex;
  margin: 0 -15px;
  column-gap: 30px;
}
@media (max-width: 880px) {
  section.hero .hero__row {
    flex-direction: column;
  }
}
section.hero .hero__content {
  flex: 0 0 calc(45% - 45px);
  margin: 15px;
}
section.hero .hero__content .hero__title {
  font-size: 37px;
  font-weight: 700;
}
section.hero .hero__content .hero__description {
  margin-top: 30px;
  line-height: 1.7;
}
section.hero .hero__content .hero__form.form {
  margin-top: 30px;
}
section.hero .hero__content .hero__form.form .form__group {
  display: flex;
  align-items: center;
}
section.hero .hero__content .hero__form.form .form__group input {
  border-color: #c1c3c7;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
section.hero .hero__content .hero__form.form .form__group button {
  height: 51px;
  background-color: #FF6800;
  border: none;
  outline: none;
  border-radius: 7px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 5px 15px;
  margin-bottom: -4px;
  color: #fff;
}
section.hero .hero__content .hero__form.form .form__footer {
  color: #c1c3c7;
  margin-top: 10px;
}
section.hero .hero__slider {
  flex: 0 0 calc(55% - 45px);
  margin: 15px;
  min-width: 0;
}
section.hero .hero__slider .hero__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section.hero .hero__slider .swiper-button-prev,
section.hero .hero__slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FF6800;
  background-color: #fff;
}
section.hero .hero__slider .swiper-button-prev::after,
section.hero .hero__slider .swiper-button-next::after {
  font-size: 20px;
}
section.hero .hero__slider .swiper-pagination-bullet {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
}
section.hero .hero__slider .swiper-pagination-bullet-active {
  background-color: #FF6800;
  color: #fff;
}
/* ------ section.our-advantages ------ */
section.our-advantages {
  padding: 50px 0;
}
section.our-advantages .our-advantages__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
section.our-advantages .our-advantages__row .our-advantages__item.item {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
  padding: 15px;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 880px) {
  section.our-advantages .our-advantages__row .our-advantages__item.item {
    flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 500px) {
  section.our-advantages .our-advantages__row .our-advantages__item.item {
    flex: 0 0 calc(100% - 30px);
  }
}
section.our-advantages .our-advantages__row .our-advantages__item.item .item__row .item__icon svg {
  width: 60px;
  height: 60px;
}
section.our-advantages .our-advantages__row .our-advantages__item.item .item__row .item__icon svg path {
  fill: green;
}
section.our-advantages .our-advantages__row .our-advantages__item.item .item__row .item__content .item__title {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}
section.our-advantages .our-advantages__row .our-advantages__item.item .item__row .item__content .item__description {
  margin-top: 15px;
  line-height: 1.7;
}
/* ------ section.portfolio ------ */
section.portfolio {
  padding: 30px 0;
}
section.portfolio .portfolio__wrapper {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section.portfolio .portfolio__title {
  font-size: 30px;
  font-weight: 600;
  color: #FF6800;
}
section.portfolio .portfolio__title a {
  color: #FF6800;
}
section.portfolio .portfolio__description {
  margin-top: 15px;
  line-height: 1.7;
}
section.portfolio .portfolio__slider {
  margin-top: 30px;
}
section.portfolio .portfolio__slider .swiper {
  padding-bottom: 70px;
}
section.portfolio .portfolio__slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 400px;
}
section.portfolio .portfolio__slider .swiper-slide img {
  display: block;
  width: auto;
  height: 400px;
  object-fit: cover;
}
section.portfolio .portfolio__slider .swiper-button-prev,
section.portfolio .portfolio__slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FF6800;
  background-color: #fff;
}
section.portfolio .portfolio__slider .swiper-button-prev::after,
section.portfolio .portfolio__slider .swiper-button-next::after {
  font-size: 20px;
}
section.portfolio .portfolio__slider .swiper-pagination-bullet {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
}
section.portfolio .portfolio__slider .swiper-pagination-bullet-active {
  background-color: #FF6800;
  color: #fff;
}
/* ------ section.services ------ */
section.services .services__row {
  display: flex;
  margin: 0 -15px;
}
@media (max-width: 880px) {
  section.services .services__row {
    flex-wrap: wrap;
  }
}
section.services .services__row .services__item {
  position: relative;
  flex: 0 0 calc(50% - 30px);
  height: 400px;
  margin: 15px;
  padding: 10px;
  border: 2px solid #FF6800;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 880px) {
  section.services .services__row .services__item {
    flex: 0 0 calc(100% - 30px);
  }
}
section.services .services__row .services__item .item__bg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 6px;
  transition: top 500ms ease, left 500ms ease, right 500ms ease, bottom 500ms ease;
}
section.services .services__row .services__item:hover .item__bg {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  translate: top 500ms;
}
section.services .services__row .services__item .item__name {
  background-color: #FF6800;
  position: absolute;
  bottom: 70px;
  left: 0px;
  z-index: 2;
  padding: 20px;
  font-size: 40px;
  color: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
section.services .services__row .services__item .item__name span {
  font-size: 20px;
  font-weight: 200;
}
/* ------ section.add-services ------ */
section.add-services {
  padding: 50px 0;
}
section.add-services .add-services__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
section.add-services .add-services__row .add-services__item {
  flex: 0 0 calc(25% - 30px);
  margin: 15px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: margin-top 500ms ease;
}
@media (max-width: 880px) {
  section.add-services .add-services__row .add-services__item {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
  }
}
section.add-services .add-services__row .add-services__item:hover {
  margin-top: -20px;
}
@media (max-width: 880px) {
  section.add-services .add-services__row .add-services__item:hover {
    margin-top: 15px;
  }
}
section.add-services .add-services__row .add-services__item .item__icon img {
  width: 100px;
  height: 100px;
}
section.add-services .add-services__row .add-services__item .item__title {
  margin-top: 20px;
}
/* ------ section.comparison-slider ------ */
section.comparison-slider {
  padding: 50px 0;
}
section.comparison-slider .comparison-slider__row {
  display: flex;
  align-items: center;
  margin: 0 -25px;
}
@media (max-width: 880px) {
  section.comparison-slider .comparison-slider__row {
    flex-direction: column;
  }
}
section.comparison-slider .comparison-slider__row .comparison-slider__slider {
  flex: 0 0 calc(55% - 50px);
  margin: 25px;
  border-radius: 10px;
  overflow: hidden;
}
section.comparison-slider .comparison-slider__row .comparison-slider__content {
  flex: 0 0 calc(45% - 50px);
  margin: 25px;
  line-height: 1.7;
}
section.comparison-slider .comparison-slider__row .comparison-slider__content h2 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
section.comparison-slider .comparison-slider__row .comparison-slider__content a {
  border-radius: 10px !important;
  margin-top: 20px;
}
/* ------ section.quality ------ */
section.quality {
  padding: 50px 0;
}
section.quality .quality__row .quality__item {
  display: flex;
  margin: 15px 0;
  padding: 25px 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #c1c3c7;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  section.quality .quality__row .quality__item {
    flex-direction: column;
  }
}
section.quality .quality__row .quality__item .item__image {
  position: relative;
  flex: 0 0 250px;
  width: 250px;
}
@media (max-width: 1024px) {
    section.quality .quality__row .quality__item .item__image {
        position: relative;
        flex: 0 0 180px;
        width: 180px;
    }
}
section.quality .quality__row .quality__item .item__image a {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.quality .quality__row .quality__item .item__image img {
  width: 100%;
  max-width: 180px;
  height: auto;
}
section.quality .quality__row .quality__item .item__image svg {
  position: absolute;
  width: 30px;
  height: 30px;
}
section.quality .quality__row .quality__item .item__image svg path {
  fill: #fff;
}
section.quality .quality__row .quality__item .item__info {
  padding: 0 30px;
}
@media (max-width: 1024px) {
    section.quality .quality__row .quality__item .item__info {
        padding: 30px 0;
    }
}
section.quality .quality__row .quality__item .item__info .item__title {
  font-size: 22px;
  font-weight: 600;
}
section.quality .quality__row .quality__item .item__info .item__subtitle {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 600;
  color: #FF6800;
}
section.quality .quality__row .quality__item .item__info .item__introtext {
  margin-top: 15px;
  line-height: 1.7;
}
section.quality .quality__row .quality__item .item__info .item__action {
  margin-top: 15px;
}
@media (max-width: 1024px) {
  section.quality .quality__row .quality__item .item__info .item__action {
    display: none;
  }
}
section.quality .quality__row .quality__item .item__info .item__action .btn {
  border-radius: 10px;
}
section.quality .quality__row .quality__item .item__description {
  flex: 0 0 300px;
  width: 300px;
}
@media (max-width: 1024px) {
  section.quality .quality__row .quality__item .item__description {
    padding: 0;
  }
}
section.quality .quality__row .quality__item .item__description ul {
  list-style: none;
  padding-left: 0;
}
section.quality .quality__row .quality__item .item__description ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}
section.quality .quality__row .quality__item .item__description ul li::before {
  content: "✓";
  /* символ галочки */
  color: #FF6800;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 1024px) {
  section.quality .quality__row .quality__item .item__description .item__action {
    display: block !important;
    margin-top: 30px;
  }
}
/* ------ section.price ------ */
section.price {
  padding: 50px 0;
}
section.price table {
    white-space: nowrap;
}
/* ------ section.promo ------ */
section.promo .promo__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
section.promo .promo__row .promo__item {
  flex: 0 0 calc(50% - 30px);
  margin: 15px;
  padding: 10px;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (max-width: 880px) {
  section.promo .promo__row .promo__item {
    flex: 0 0 calc(100% - 30px);
  }
}
section.promo .promo__row .promo__item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
/* ------ section.contacts ------ */
section.contacts .contacts__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
section.contacts .contacts__row .contacts__item {
  flex: 0 0 calc(33.333% - 30px);
  margin: 15px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 880px) {
  section.contacts .contacts__row .contacts__item {
    flex: 0 0 calc(100% - 30px);
  }
}
section.contacts .contacts__row .contacts__item p {
  line-height: 1.7;
}
/* ------ ------ ------ ------ */
/* Контейнер с горизонтальной прокруткой и внешней рамкой */
.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #c1c3c7;
  border-radius: 10px;
}
.zebra-table {
  min-width: 500px;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
/* Чередование строк */
.zebra-table tbody tr:nth-child(even) {
  background-color: #fff;
}
/* Шапка */
.zebra-table thead th {
  background-color: #FF6800;
  color: #fff;
  text-align: left;
  padding: 20px 20px;
}
/* Ячейки: только горизонтальные разделители, без боковых линий */
.zebra-table td,
.zebra-table th {
  padding: 20px 20px;
  border-top: 1px solid #c1c3c7;
  /* верхняя граница */
  border-bottom: 1px solid #c1c3c7;
  /* нижняя граница */
  border-left: none;
  /* убираем левую */
  border-right: none;
  /* убираем правую */
}
/* Убираем верхнюю границу у первой строки шапки, чтобы не двоилась с рамкой контейнера */
.zebra-table thead tr:first-child th {
  border-top: none;
}
/* Убираем нижнюю границу у последней строки тела таблицы */
.zebra-table tbody tr:last-child td {
  border-bottom: none;
}


/* ------ section.process ------ */
section.process {
    
}
section.process .process__row {
    background-color: #FF6800;
    padding: 30px 10px;
    border-radius: 10px;
}
section.process .process__slider {
    position: relative;
    padding: 0 80px;
}
section.process .process__slider .swiper-slide {
    width: auto;
}
section.process .process__slider .swiper-slide img {
    width: auto;
    height: 400px;
}
section.process .process__slider .swiper-slide .process__video {
    width: auto;
    height: 400px;
}

section.process .process__slider .swiper-button-prev,
section.process .process__slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FF6800;
  background-color: #fff;
}
section.process .process__slider .swiper-button-prev::after,
section.process .process__slider .swiper-button-next::after {
  font-size: 20px;
}

