* {
  -webkit-box-sizing: border-box;
		  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

html{
  scroll-behavior: smooth;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

@media screen and (max-width: 500px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    overflow: hidden;
  }
}



ul {
  list-style-type: none;
}

a.navbar-tel-inner {
  text-decoration: none;
 
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
 
}

header {
  height: 80px;
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  color: white;
  padding: 0 2vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .wraper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-content: center;
}

header .wraper .logo {
  font-size: 2rem;
  color: #162e44;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .wraper .navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
	  -ms-flex-align: center;
		  align-items: center;
}

header .wraper .navbar ul li {
  margin: 0.5rem 5px;
  position: relative;
}

header .wraper .navbar ul li a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 1.2rem;
  font-weight: 500;
}

header .wraper .navbar ul li:hover a {
  color: #25B6E6;
}

header .wraper .navbar ul li:last-child {
  margin: 0.5rem 0 0.5rem 1rem;
}

header .wraper .navbar ul .active-link {
  color: #25B6E6;
  font-weight: 700;
}

header .wraper .mobil-menu {
  display: none;
}

.header.haeder-dark {
    background-color: rgb(0 0 0);
}

.header.haeder-dark .logo p {
  color: #25B6E6;
}

.header.haeder-dark .navbar ul li a {
  color: #ffffff;
}

.header.haeder-dark .navbar ul li a.active-link {
  color: #25B6E6;
}

/* section {
  height: 100vh;
} */

.main-section {
    background: url(/img/fon.png);
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    padding: 0 2vw;
    height: 700px;
}

a.filekatalog {
    color: #ffffff;
    padding: 11px 15px;
    font-size: 1.2rem;
    font-weight: 700;
    background: #000000;
    text-transform: uppercase;
    box-shadow: 0 0 25px 0 #424242;
    border-radius: 7px;

    &:hover{
    transform: scale(0.95);
  }
}

.main-section h1 {
  font-size: 5rem;
  text-transform: uppercase;
  text-align: center;
  color: #25B6E6;
}

.main-section p {
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 10px;
}




nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.navbar-tel-inner {
  color: #ffffff;
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25B6E6;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 25px 0 #25b6e6;
  border-radius: 7px;

  &:hover{
    transform: scale(0.95);
  }
}

a.navbar-tel-inner:hover {
  color: #ffffff;
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25B6E6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo p {
  color: #25B6E6;
    font-size: 20px;
}

.btn-hero {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
  cursor: pointer;
}

a.btnhero {
  color: #ffffff;
  padding: 11px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25B6E6;
  text-transform: uppercase;
  box-shadow: 0 0 25px 0 #25b6e6;
  border-radius: 7px;

  &:hover{
    transform: scale(0.95);
  }
}

.btn-hero img {
  width: 100px;
}

.btn-hero p {
  text-transform: uppercase;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  header .wraper .navbar {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 8;
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	height: 100vh;
	color: #162e44;
	width: 100vw;
  }
  header .wraper .navbar ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	width: 80%;
	background-color: rgb(0, 0, 0);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding-top: 100px;
	z-index: 9;
  }
  header .wraper .navbar ul li {
	margin: 1.5rem;
  text-align: center;
  }
  header .wraper .navbar ul li a {
	font-size: 1.3rem;
  }
  header .wraper .navbar-links__togle {
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }
  header .wraper .mobil-menu {
	display: block;
	cursor: pointer;
	position: relative;
	z-index: 9;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	width: 40px;
	height: 45px;
  }
  header .wraper .mobil-menu span {
	position: absolute;
	display: block;
	height: 4px;
	width: 100%;
	left: 0;
  background-color: #25B6E6;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
	opacity: 1;
	border-radius: 10px;
	-webkit-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
  }
  header .wraper .mobil-menu span:nth-child(1) {
	top: 0px;
  }
  header .wraper .mobil-menu span:nth-child(2) {
	top: 10px;
  }
  header .wraper .mobil-menu span:nth-child(3) {
	top: 20px;
  }
  header .wraper .mobil-menu.open span:nth-child(1) {
	top: 20px;
	-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
  }
  header .wraper .mobil-menu.open span:nth-child(2) {
	top: 20px;
	opacity: 0;
	left: -60px;
  }
  header .wraper .mobil-menu.open span:nth-child(3) {
	top: 20px;
	-webkit-transform: rotate(-135deg);
			transform: rotate(-135deg);
  }
  .main-section h1 {
	font-size: 2rem;
  }

  .navbar-tel{
    display: none;
  }

  .tel-mobile {
    display: block;
  }
}

.tel-mobile {
  display: none;
}





/* Каталог */

a.btn-kategorii-cart {

  &:hover{
    transform: scale(0.95);
  }
}


section#uslugi {
  padding-top: 50px;
  height: auto;
  
}

h2.zag-uslug {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #25B6E6;
  font-size: 20px;
}

.price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #25B6E6;
  text-transform: uppercase;
  font-weight: 700;
}

.zagblock h2 {
    color: #000;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-size: 30px;
}

.blue-stripe {
  width: 100px;     /* Длина полоски */
  height: 4px;      /* Толщина */
  background: #25B6E6;
  margin-bottom: 10px; /* Отступ от заголовка */
}

.kategorii {
  display: flex;
  flex-wrap: wrap; /* разрешаем перенос элементов */
  justify-content: center; /* выравниваем по центру */
  gap: 10px; /* отступы между элементами */
  margin-bottom: 50px;
}

.kategirii-cart {
  flex: 0 0 calc(33.333% - 10px); /* 3 элемента в строке (ширина ≈33.3% минус gap) */
  box-sizing: border-box; /* учитываем padding и border в ширине */
  max-width: calc(33.333% - 10px); /* ограничиваем ширину */
}

/* Для второй строки (4-й и 5-й элементы) делаем ширину ≈50% */
.kategirii-cart:nth-child(n + 4) {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

.kategirii-cart {
  padding: 15px;
  box-shadow: 0 0 10px 0px rgb(0 0 0 / 20%);
  background: #fff;
  transition: 0.3s;

  &:hover{
    transform: scale(0.95);
    transition: 0.3s;
  }
}

img.img-kategorii-cart {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 200px;
  object-fit: cover;
}

.kategirii-cart-opis p {
  color: #000000;
}

.kategirii-cart-opis {
  padding: 15px 0px;
}

a.btn-kategorii-cart {
  display: flex
;
  justify-content: flex-end;
  color: #ffffff;
}


@media screen and (max-width: 500px) {
 .priemushestva {
    display: grid;
    grid-template-columns: repeat(1, auto);
    justify-content: center;
    gap: 35px;
}

.contacts-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dop__zag {
    text-align: center !important;
    color: #25b6e6;
    text-transform: uppercase;
}

.dopopis {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

  img.img-kategorii-cart {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 120px;
    object-fit: cover;
}
  
}


/* Услуги */


[role="tablist"] {
  background: rgba(31, 31, 31, 0);
  padding: 0px;
  margin: 0px;
  text-align: center;
  margin-bottom: 15px;
}

[role="presentation"] {
  display: block;
}

[role="presentation"][data-tab-active] {
  background: #00ae42;
  -webkit-transition: all 100ms cubic-bezier(0.42, 0, 1, 1);
  transition: all 100ms cubic-bezier(0.42, 0, 1, 1);
  
}

[role="tab"] {
/*   border: 3px solid transparent; */
  color: #fff;
  display: block;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 100ms cubic-bezier(0.42, 0, 1, 1);
  transition: all 100ms cubic-bezier(0.42, 0, 1, 1);
}

[role="tab"]:focus {
    outline: 0;
    background-color: #00ae42;
    box-shadow: inset 0 0 0 0px #036800;
}

[role="tabpanel"] {
  background: #ffffff00;
  padding: 1rem;
  height: auto;
  color: white;
  border-style: solid;
  border-color: #00ae42;
}

[role="tabpanel"] h2 {
  margin-top: 0;
}

[role="tabpanel"][aria-hidden="true"] {
  display: none;
}

[role="tabpanel"]:focus {
  outline: 0;
  box-shadow: inset 0 0 0 2px #00ae42;
  
}



@media screen and (min-width: 800px) {
  [role="presentation"] {
    display: inline-block;
  }

  [role="presentation"][data-tab-active] [role="tab"]:after {
    content: '';
    display: inline-block;
    margin: auto;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 0px solid #036800;
  }
}



/* Приемущества */

.priemushestva {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 20px;
}

section#priem {
    height: auto;
    padding: 50px 0 50px 0;
}

.priemushestva__zag h2 {
    padding: 30px 0 30px 0;
    color: #25b6e6;
    text-transform: uppercase;
    font-size: 20px;
}

.priemushestva__description p {
    color: white;
}

h2.zag__pri {
    color: white;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 50px;
}

/* 3d */

.d-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
}
  

.d-inner-right {
  grid-column: span 2 / span 2;
}

a.d-inner-btn {
  color: #ffffff;
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25B6E6;
  box-shadow: 0 0 25px 0 #25b6e6;
  display: inline-flex
;

&:hover{
  transform: scale(0.95);
}
}

.d-btn {
  text-align: end;
  padding-top: 30px;
}

img.dimg {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  object-fit: cover;
}


/* О НАС */

section#about {
  background: #E6E6E6;
  padding-top: 30px;
  padding-bottom: 30px;
  height: auto;
}


.about-inner {
  display: flex;
  gap: 20px;
}

.about-left h2 {
  color: #25B6E6;
  text-transform: uppercase;
  font-size: 35px;
  margin-bottom: 10px;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-right img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 500px;
    height: 100%;
}


@media screen and (max-width: 1000px) {
  .about-inner {
    flex-wrap: wrap;
  }
  .about-right img {
    width: 100%;
}
}


/* Вопрос ответ */
.zagfaq h2 {
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0;
    font-size: 30px;
}



#sp-ea-196.sp-easy-accordion>.sp-ea-single {
    background: #833b3b00!important;
}



section#faq {
    height: auto;
    margin-bottom: 50px;
}

#sp-ea-196.sp-easy-accordion>.sp-ea-single {
    margin-bottom: 10px;
    border: 1px none #e2e2e2!important;
    padding-bottom: 10px!important;
    border-bottom: 2px solid #25b6e6!important;
}



/* footer */



.border-shape {
  background: #00ae42 none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 3px;
  left: 0;
  margin: 20px auto;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 80px;
  width: 40% !important;
}

#sp-ea-196.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
    float: left;
    color: #25b6e6!important;
    font-size: 16px;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*FOOTER*/
  footer {
    width: 100%;
    background-color: #2d2d2d;
    color: #fff;
}

.contacts-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

  .fa {
    display: inline-block;
    font: normal normal normal 0px / 1 FontAwesome;
    font-size: 23px!important;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

  .top_header {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
}
  
.top_header section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
  
  .top_header span{
  padding:0 1rem;
  }
  
  .top_header .fa{
  color: #25B6E6;
  font-size:35px;
  }
  
  .border-shape {
    background: #25B6E6 none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 3px;
    left: 0;
    margin: 20px auto;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
    width: 40% !important;
}
  
  footer .border-shape::before {
  width: 100%;
  left:120px;
  }
  
  footer .border-shape::after {
  width: 100%;
  right:120px;
  }
  
  footer .bottom_content section {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: Center;
    height: auto;
}
  
  .bottom_content a{
  margin:0 20px;
  color:rgba(255,255,255,0.7);
  transition:0.5s;
  }
  
  .bottom_content a:hover{
  color:rgba(255,255,255,1);
  }
  
  
  .copyright {
    padding: 0.8em 0;
    background-color: #25B6E6;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}
  
  
  
  @media (max-width:820px){
  .top_header{
  padding:1rem;
  display:block;
  }

  .border-shape {
    background: #25B6E6 none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 3px;
    left: 0;
    margin: 149px auto auto;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
}
  
  .top_header section{
  margin:40px 0;
  align-items:left;
  justify-content:left;
  }
  footer .bottom_content section{
  padding:1rem;
  display:block;
  }
  footer .bottom_content section a{
  padding:1rem;
  font-size:12px;
  margin:0 5px;
  display:inline-block;
  }
  }
  



  /* страница поста */

  .content-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* таблица */

.wp-block-table .has-fixed-layout td, .wp-block-table .has-fixed-layout th {
  word-break: break-word;
  border-color: #25B6E6!important;
}

p.number {
    text-align: center;
    background: #25b6e6;
    color: white;
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.zagstranic {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: #54c3e5;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.shema {
    text-align: center!important;
}

.recm1 {
    background: #ECECEC;
    padding: 0px 30px 0 30px;
}

.rec__inner {
   
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}


.rec__cart {
    display: flex;
    background: white;
    padding: 20px;
    gap: 20px;
}

a.btnzag__url {
    border: 1px solid #54c3e5;
    border-radius: 7px;
    padding: 10px 20px;
    width: 193px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

a.btnzag__url:hover {
    background: #54c3e5;
    color: #fff;
}

h3.zagrec__cart {
    text-transform: uppercase;
}

.btn__block {
    text-align: -webkit-right;
}

.rec__cart__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

img.imgrec {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

section#rec {
    height: auto;
    background: #ECECEC;
    padding: 1px 0 50px 0px;
}

.wp-block-separator {
    border: none;
    border-top: 2px solid;
    color: #54c3e5;
}





/* footer */

.contacts__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}

.social {
    display: flex;
    justify-content: flex-end;

    gap: 10px;
}

a.mail {
    padding: 30px 0;
    color: #54c3e5;
}

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

.map {
  display: flex;
  justify-content: flex-end;
}

section#contacts {
    background-color: #000000;
    padding: 50px 0;
    height: auto;
}

h2.contact-zag {
  color: #ffffff;
}

p.contact-adres {
  padding: 50px 0;
  color: #ffffff;
}
.telefon-con {
  padding-bottom: 50px;
}

p.raspisanie {

  color: #ffffff;
}

.footer__btn {
  color: #fff;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #25B6E6;
}

.contacts__inner {
  border-bottom: groove;
}

.contacts__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  margin-bottom: 20px;
  padding-bottom: 50px;
}



@media (max-width: 767.98px) {
  .contacts__inner {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: 1fr;
      grid-column-gap: 10px;
      grid-row-gap: 0px;
  }

  .contacts-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

  .social {
      display: flex;
      justify-content: center;
      padding-bottom: 10px;
  }

  .contacts-left {
      text-align: center;
      margin-bottom: 70px;
  }

}

a.telefon-contacts {
  font-size: 25px;
  color: #ffffff;
}

.dop__zag {
  text-align: left !important;
  color: #25b6e6;
  text-transform: uppercase;
}

a.doc {
  color: #cccccc;
}

/* Хлебные крошки */

.breadcrumbs {
  margin: 10px 0;
  font-size: 14px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #25b6e6;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: #6C757D;
}



/* Лазерное Сканирование */

.secuslug {
  height: 450px;
}

.secuslug_dop {
    height: 250px;
    font-size: 40px;
    font-weight: 700;
    color: #25b6e6;
}

h1.postzag {
  color: #ffffff;
}

a.btnhero.btnpost {
  color: #ffffff;
  padding: 11px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #000000;
  text-transform: uppercase;
}

section#postpost {
  height: auto;
  padding: 50px 0;
}


/* Сохранение оборудования */

.osnashenie {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.osnashenie_right h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #25b6e6;
    margin-bottom: 20px;
}

img.osnashenie__img {
    width: 370px;
    height: 400px;
    object-fit: cover;
}

.pereosnashenie {
    display: flex;
    margin-top: 50px;
    background: #ECECEC;
    padding: 20px;
    gap: 20px;
}

.pereosnashenie__content h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #25b6e6;
    margin-bottom: 20px;
}

img.pereosnashenie__img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.pereosnashenie_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a.pereosnashenie__btn {
    color: #ffffff;
    padding: 11px 15px;
    font-size: 1.2rem;
    font-weight: 700;
    background: #25B6E6;
    text-transform: uppercase;
    box-shadow: 0 0 25px 0 #25b6e6;
    border-radius: 7px;
    width: fit-content;

    &:hover{
    transform: scale(0.95);
  }
}

.sohran_priem {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.sohran_inner {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 100%;
        text-align: center;
}

.zagoborud h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #25b6e6;
    text-align: center;
    margin: 50px 0;
}

.sohran_inner h2 {
    color: #25b6e6;
    margin: 20px 0;
}


.sohran2_priem {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}


.sohran2_inner {
    flex: 1 1 500px;
    min-width: 200px;
    max-width: 100%;
    background: #25b6e6;
    color: white;
    padding: 20px;
}

.sohran2_inner h2 {
    margin: 20px 0;
    text-transform: uppercase;
}

.sohran2_inner img {
    width: 50px;
    height: 50px;
}

.zagoborud2 h2 {
    text-align: left;
    margin-bottom: 10px;
    margin-top: 100px;
}

.zagoborud2 p {
    margin-bottom: 50px;
}

.video {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 100px;
}

.video__left h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 40px;
}

.wpcp-carousel-section .wpcp-single-item img {
    margin: 0 auto;
    height: 200px !important;
    box-shadow: none;
    object-fit: cover !important;
    width: 100% !important;
}

#sp-wp-carousel-free-id-313.sp-wpcp-313 .swiper-button-prev i, #sp-wp-carousel-free-id-313.sp-wpcp-313 .swiper-button-next i {
    color: #25b6e6!important;
}

.gallery2 {
    margin: 100px 0;
}