
h1{
    margin-top: 0;
    line-height: 50px;
}

*{
    box-sizing: border-box;
}

.company_service{
    width: 100%;
}

.company_service p, .about_company p, .about_company li{
    font-size: 22px;
    line-height: 26px;
    font-family: "Arial";
}

.about_company li{
    margin-top: 10px;
}

.photo_collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 равных колонок */
    gap: 10px;
    width: 100%;
}

.photo_collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Первая строка — по 50% */
.photo_collage img:nth-child(1) {
    grid-column: span 3; /* 3/6 = 50% */
}
.photo_collage img:nth-child(2) {
    grid-column: span 3;
}

/* Вторая строка — по 33.3% */
.photo_collage img:nth-child(3),
.photo_collage img:nth-child(4),
.photo_collage img:nth-child(5) {
    grid-column: span 2; /* 2/6 = 33.3% */
}

.mySwiper {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Центрируем изображение */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    h1{
        line-height:  36px;
    }
    
    h2{
        font-size: 28px;
        line-height: 32px;
    }
    
}

@media screen and (max-width: 968px) {
    
}

@media screen and (max-width: 860px) {
    
}


@media screen and (max-width: 768px) {
    h1{
        text-align: center;
    }
    
    .company_service p, .about_company p, .about_company li{
        font-size: 18px;
        line-height: 24px;
    }
    
}

@media screen and (max-width: 550px) {

}


@media screen and (max-width: 500px) {
}

@media screen and (max-width: 400px){
    
}