.video-banner {
  position: relative;
  width: 100%;

  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.documentslist__grid-pagin div .pagination {
    display: flex;
    column-gap: 10px;
}
.banner-image {
  width: 100%;
  max-height: 700px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0px 5px 10px 0px #00000008;
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100000000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 1440px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.3s;
}

.close-modal:hover {
  opacity: 0.7;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Соотношение 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.new-window-note {
  margin-top: 25px;
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.new-window-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.new-window-link:hover {
  background-color: #0056b3;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.video-banner:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
     
   
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        

        
 
        
        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            color: white;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            z-index: 1;
        }
        
        .banner-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .banner-description {
            font-size: 16px;
            opacity: 0.9;
            max-width: 600px;
            line-height: 1.5;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000000000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            width: 90%;
            max-width: 1240px;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            transition: opacity 0.3s;
        }
        
        .close-modal:hover {
            opacity: 0.7;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Соотношение 16:9 */
            height: 0;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }
        
        .new-window-note {
            margin-top: 25px;
            text-align: center;
            color: #666;
            font-size: 14px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 8px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
/* Адаптивность */
@media (max-width: 768px) {
  .banner-image {
    height: 300px;
  }

  .banner-title {
    font-size: 22px;
  }

  .banner-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .banner-image {
    height: 335px;
  }

  .banner-title {
    font-size: 20px;
  }

  .play-icon::after {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
}


/*carysel*/
.container__carysel {
  position: relative;

  box-sizing: border-box;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.swiper {

  width: 100%;
  height: 100%;
  padding-top: 40px;
}
@media (min-width: 768px) {
.container__carysel .swiper {
    overflow: visible!important;
}
}
.swiper-slide {
  text-align: center;
 
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;

}

.swiper-slide>a>img {

  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
      min-height: 420px;
}

.swiper-slide {

border-radius: 40px;

  width: 420px;
  height: 420px;
}
.swiper-slide:hover a img{
 
position: relative;
    transform: scale(1.19);
    z-index: 999;
}
.swiper-wrapper {
 
  display: flex;
  height: 420px;
  align-items: center;
}
.swiper-wrapper a img {

  border-radius: 40px;
}
.swiper-slide>a  {
position: relative;
}

.swiper-slide-title{
  width: 460px;
  background: #fff;
  opacity: 0;
position: absolute;
text-align: left;
padding: 40px;
font-weight: 600;
font-size: 36px;
color: #000;
line-height: 42px;
letter-spacing: 0px;
bottom: -19px;
  left: 50%; 
  transform: translateX(-50%); 
z-index: 9999;
border-radius: 30px;
}
.swiper-slide:hover .swiper-slide-title  {
opacity: 1;
}
.swiper-slide-active a {
  border-radius: 40px;
  height: 100%;
}
.swiper-slide-prev {
border-radius: 40px;
  height: 420px;
  justify-content: flex-end;
}
.swiper-slide-next,
.swiper-slide-next a {

 border-radius: 40px;
  height: 420px;
  justify-content: flex-start;
}
.swiper-slide-prev a {

   
  border-radius: 40px;
  height: 420px;
}
.swiper-slide:hover a{

     display: block;
  border-radius: 40px;
  height: 420px;
}
.swiper-slide:hover{
margin-left: 40px;
    margin-right: 60px !important;
}
.swiper-slide:hover .advantages__flex-block-text{
 
     display: none;
}

.preim_pagotziv {
  padding-top: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  justify-content: space-between;
}
.preim_pagotziv > p {
  float: right;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #000;
}
.preim_pagotziv > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    justify-content: flex-start;
    box-sizing: border-box;
}
.swiper-button-next,
.swiper-button-prev {
  display: flex;
  outline: none;
  box-shadow: none;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 20px;
  position: relative;
  top: 0;
  left: 0;
  width: 120px;
  height: 100px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  align-items: center;
  color: #000;
  justify-content: center;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ebebeb;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
 
/* Замена стандартных стрелок на символы */
.swiper-button-next:after,
.swiper-button-prev:after {
  content: ""; /* Убираем стандартный символ */
  font-family: initial; /* Сбрасываем шрифт */
}

.swiper-button-next::after {
  content: url(../img/icon/leftes.svg); /* или &rarr; */
  font-size: 30px;
  font-weight: bold;
  transform: rotateZ(180deg);
}
.swiper-button-prev::after {
  content: url(../img/icon/leftes.svg); /* или &rarr; */
  font-size: 30px;
  font-weight: bold;
}



@media only screen and (min-width: 350px) and (max-width: 768px) {
  .swiper-slide:hover{
margin-left: 0px;
    margin-right: 20px !important;
}
  .swiper {
    padding-top: 20px;
}
  .swiper-slide-title {
            display: none;
width: 90%;
        background: #fff;
        opacity: 1;
        position: absolute;
        text-align: left;
        padding: 20px;
        font-weight: 600;
        font-size: 14px;
        color: #000;
        line-height: 20px;
        letter-spacing: 0px;
        bottom: 4%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        border-radius: 12px;
}
    .swiper-slide:hover span {
        display: block;
    }
  .swiper-slide:hover a {
    display: block;
    border-radius: 40px;
    height: 200px;
}
  .swiper-slide:hover a img {
    transition: var(--transition);
    position: relative;
    transform: scale(1);
    z-index: 999;
    border-radius: 12px;
}
  .swiper-wrapper {
    display: flex;
          min-width: 163px;
    max-width: 163px;
    min-height: 163px;
    max-height: 163px;
    height: 163px;
    align-items: center;
}
.swiper-slide-next, .swiper-slide-next a
 {
    border-radius: 12px;
              min-width: 163px;
    max-width: 163px;
    min-height: 163px;
    max-height: 163px;
    height: 163px;
    justify-content: flex-start;
}
  .swiper-slide-prev a {
    border-radius: 12px;
      min-width: 163px;
    max-width: 163px;
    min-height: 163px;
    max-height: 163px;
    height: 163px;
}
  .swiper-slide {
    border-radius: 12px;
    min-width: 163px;
    max-width: 163px;
    min-height: 163px;
    max-height: 163px;
    height: 163px;
    width: 50%;
}
  .swiper-slide:hover {
    border-radius: 12px;
    min-width: 200px;
    max-width: 200px;
    min-height: 200px;
    max-height: 200px;
    height: 200px;
    width: 50%;
}
 .swiper-slide:hover a {
    border-radius: 12px;
    min-width: 200px;
    max-width: 200px;
    min-height: 200px;
    max-height: 200px;
    height: 200px;
    width: 50%;
}
 .swiper-slide:hover img {
    border-radius: 12px;
    min-width: 200px;
    max-width: 200px;
    min-height: 200px;
    max-height: 200px;
    height: 200px;
    width: 50%;
}

  .swiper-slide a img {
     border-radius: 12px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}
.swiper-slide-active a {
    border-radius: 12px;
}
  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
    outline: none;
    box-shadow: none;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 12px;
    position: relative;
    top: 0;
    width: 80px;
    height: 60px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    align-items: center;
    color: #000;
    justify-content: center;
  }
  .preim_pagotziv > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-content: flex-start;
  }
  .preim_pagotziv {
    padding-top: 58px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;

    justify-content: space-between;
  }
  .preim_pagotziv > p {
    float: right;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0px;
    color: #000;
  }
  .swiper .container {
    padding: 0;
  }

}
/*carysel end*/
.image_customers img{
    border-radius: 40px;
    width: 100%;
    max-height: 800px;
    object-fit: cover;
}

@media only screen and (min-width: 350px) and (max-width: 768px) {
.image_customers img{
border-radius: 20px;
        width: 100%;
        height: 600px;
        max-height: 600px;
        object-fit: cover;
}
}
.advantages{
  margin-top: 160px;
}
.conpanie .advantages__flex-block-text img {
    max-width: 20px;
    width: 100%;
    transform: rotateZ(180deg);
      margin: 10px 0;
}
.conpanie .advantages__flex-block-text p {
font-weight: 600;
font-size: 36px;
color: #000;
line-height: 42px;
letter-spacing: 0px;

}

.conpanie .advantages__flex-block-text
 {
  overflow: hidden;
  position: relative;
    transition: var(--transition);
    width: 100%;
    min-height: 380px;
    max-height: 380px;
    height: 100%;
    background: #f9f9f9;
    border-radius: 40px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    gap: 41px;
    cursor: pointer;
    justify-content: space-between;
}
.conpanie .advantages__flex-block-textimg{
  padding: 0;
}
.conpanie .advantages__flex-block-textimg img {
    max-width: 100%;
    width: 100%;
    transform: rotateZ(0deg);
    margin:  0;
    object-fit: cover;
    height: 100%;
}
@media only screen and (min-width: 350px) and (max-width: 768px) {
    .conpanie .advantages__flex-block-text img {
    max-width: 20px;
    width: 100%;
    transform: rotateZ(180deg);
    margin: 0px 0;
}
.conpanie .advantages__flex-block-textimg img
 {
    max-width: 100%;
    width: 100%;
    transform: rotateZ(0deg);
    margin: 0;
    object-fit: cover;
    max-height: 212px;
    height: 100%;
}
.conpanie .advantages__flex-block-text p {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    line-height: 24px;
    letter-spacing: 0px;
}
.conpanie .advantages__flex-block-text {
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    width: 100%;
           min-height: 190px;
    max-height: 380px;
    height: 100%;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    cursor: pointer;
    justify-content: space-between;
}
.advantages {
    margin-top: 40px;
}

  .conpanie .advantages__flex-block-textimg{
  padding: 0;
}
}
.fotogelery__grid-block{
 position: relative;
border-radius: 30px;
}
.fotogelery__grid-block>img{
 position: relative;
border-radius: 30px;
min-height: 480px;
object-fit: cover;
}
.fotogelery__grid{
     display: grid;
    column-gap: 20px;
    row-gap: 60px;
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
}
.fotogelery h2{
color: #000;
font-weight: 600;
font-size: 50px;
line-height: 59px;
letter-spacing: 0px;
margin: 0;
padding-bottom: 60px;
padding-top: 160px;
}
/*pagin*/
.documentslist__grid-pagin {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.documentslist__grid-pagin div{
    display: flex;
    column-gap: 10px;
}
.documentslist__grid-pagin div a{
    cursor: pointer;
     transition: var(--transition);
display: flex;
    min-width: 91px;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0px;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.documentslist__grid-pagin div a:hover{
     transition: var(--transition);
    background: #EBEBEB;
}
.documentslist__grid-pagin div a.active{
  
    background: #EBEBEB;
}
.documentslist__grid-pagin p{
font-weight: 400;
font-size: 20px;
color: #000;
line-height: 24px;
letter-spacing: 0px;

}
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .documentslist__grid-pagin {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
    .documentslist__grid-pagin div a{
    cursor: pointer;
     transition: var(--transition);
display: flex;
    min-width: 60px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
            padding: 20px 26px;
    border-radius: 12px;
    background: #fff;
    align-content: center;
    justify-content: center;
    align-items: center;
}
    .documentslist__grid-pagin p
 {
font-weight: 400;
font-size: 12px;
line-height: 14px;
letter-spacing: 0px;
color: #000;
}
}
/*pagin*/
.fotogelery__grid-block-text {
 
    overflow: hidden;
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    transition: var(--transition);
    max-width: 650px;
    width: 100%;
    max-height: 420px;
    height: 100%;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 80px;
    opacity: 0;
   display: flex;
    flex-direction: column;
    gap: 41px;
    cursor: pointer;
  justify-content: flex-end;
}
.fotogelery__grid-block:hover .fotogelery__grid-block-text {
opacity: 1;

}
.fotogelery__grid-block-text img
 {
    max-width: 20px;
    width: 100%;
    transform: rotateZ(180deg);
    margin: 10px 0;
}
.fotogelery__grid-block-text p
 {
font-weight: 600;
font-size: 36px;
line-height: 36px;
letter-spacing: 0px;
color: #000;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .fotogelery__grid-block-text {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    max-width: 295px;
    width: 100%;
    max-height: 200px;
    height: 100%;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    justify-content: flex-end;
}
  .fotogelery__grid-block-text p {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #000;
}
.fotogelery__grid {
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-columns: 1fr;
}
.fotogelery__grid-block>img {
    position: relative;
    border-radius: 20px;
    min-height: 240px;
    object-fit: cover;
}
.fotogelery h2 {
    color: #000;
    font-weight: 600;
    font-size: 26px;
    line-height: 31px;
    letter-spacing: 0px;
    margin: 0;
    padding-bottom: 30px;
    padding-top: 40px;
}
}