#about-block .right_side .swiper {
  overflow: visible !important;
}
#about-block {
  overflow: hidden;
  transition: all 0.3s ease-in;
}
#about-block .content {
  margin-right: 0px;
  padding-right: 0px;
  max-width: 100%;
  transition: all 0.3s ease-in;
      width: auto;
}
#about-block .items_block {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease-in;
}
#about-block .left_side {
   flex-shrink: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease-in;
}
#about-block .right_side {
  transition: all 0.3s ease-in;
  overflow: hidden;
  padding-right: 25%;
   flex: 0 0 60%;
  width: 60%;
}
#about-block .slide_image {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in;
}
#about-block .slide_image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease-in;
  border-radius: 10px;
}
#about-block .navigation {
  width: 100%;
  gap: 30px;
  transition: all 0.3s ease-in;
}
#about-block .navigation .nav {
  gap: 10px;
  transition: all 0.3s ease-in;
}
#about-block .swiper-button-prev { 
  left: 0;
  transition: all 0.3s ease-in;
}
#about-block .swiper-button-next {
  right: 0;
  transition: all 0.3s ease-in;
}
@media(max-width: 1000px) {
  #about-block .items_block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    transition: all 0.3s ease-in;
  }
  #about-block .right_side {
    padding-right: 0;
    width: 100%;
    flex: 0 0 100%;
    transition: all 0.3s ease-in;
  }
  #about-block .slide_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease-in;
  }
}
@media(max-width: 500px) {
  #about-block .slide_image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease-in;
  }
}