.front-slider {
  border-radius: 8px;
}

.front-slider-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
}

.front-slide {
  height: auto;
  border-radius: inherit;
}

.front-slide-img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.front-advantages__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.front-advantages__block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background-color: #ffffff;
}

.front-advantages__block-icon {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1024px) {
  .front-advantages__block-icon {
    width: 30px;
    height: 30px;
  }
}

.front-categories {
  margin-top: 48px;
}

.front-categories__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.front-categories__card {
  width: calc(100% / 6 - 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background-color: #ffffff;
}

.front-categories__card-img {
  object-fit: contain;
  max-height: 120px;
}

.front-categories__card-title {
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  text-align: center;
}

.front-categories__card:hover .front-categories__card-title {
  color: #2385e1;
}

.front-manufacturers {
  margin-top: 128px;
  padding: 24px 0;
  background-color: #ffffff;
}

.front-manufacturers-box {
  display: grid;
  align-items: center;
  grid-template-columns: 400px 1fr;
  gap: 48px;
}

.front-manufacturers-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
}

.front-manufacturers-slider-wrapper {
  position: relative;
  display: grid;
  align-items: center;
}

.front-manufacturers-slider {
  display: flex;
  width: 100%;
  max-width: 100%;
}

.front-manufacturers-slide {
  height: auto;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.front-manufacturers-slide__img {
  object-fit: cover;
}

.front-manufacturers-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  background: url('../img/icons/arrow.svg');
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2971F6;
}

.front-manufacturers-arrow-prev {
  left: -24px;
  transform: scale(-1, 1);
}

.front-manufacturers-arrow-next {
  right: -24px;
}

.front-about {
  margin-top: 128px;
}

.front-about__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.front-about__logo {
  width: 200px;
  object-fit: contain;
}

.front-about__dsc {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.front-about__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 90%;
  margin-top: 24px;
}

.front-about__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(100% / 3 - 12px);
}

.front-about__list-item-title {
  font-size: 30px;
  font-weight: 700;
}

.front-about__list-item-dsc {
  font-size: 20px;
  font-weight: 500;
}

.front-about__list-item-divider {
  width: 100%;
  max-width: 35%;
  height: 2px;
  background-color: #2971F6;
}

.front-clients {
  padding-top: 50px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .front-clients {
    padding-top: 60px;
  }
}
@media screen and (max-width: 550px) {
  .front-clients {
    padding-top: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .front-clients .front-manager__info .front-manager__title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 550px) {
  .front-clients .front-manager .front-manager__dsc {
    font-size: 14px;
    line-height: 20px;
  }
}

.front-clients__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 16px;
}

@media screen and (max-width: 500px) {
  .front-clients__title {
    margin-bottom: 20px;
  }
}

.front-clients__subtitle {
  max-width: 688px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-PayneGray);
  margin-bottom: 24px;
  @media (max-width: 500px) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .front-clients__subtitle {
    margin-bottom: 20px;
  }
}

.front-clients__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 23px;
  margin-top: 48px;
  @media (max-width: 1240px) {
    grid-template-columns: repeat(auto-fill, minmax(223px, 1fr));
    align-items: center;
    justify-items: center;
  }
}

@media screen and (max-width: 1240px) {
  .front-clients__cards {
    grid-template-columns: repeat(auto-fill, minmax(223px, 1fr));
    align-items: center;
    justify-items: center;
  }
}

@media screen and (max-width: 550px) {
  .front-clients__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 0;
  }
}

.front-clients__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background-color: #ffffff;
  max-width: 330px;
  height: 160px;
  @media (max-width: 1240px) {
    height: auto;
  }
}

@media screen and (max-width: 1240px) {
  .front-clients__card {
    height: auto;
  }
}

@media screen and (max-width: 550px) {
  .front-clients__card {
    height: 100px;
  }
}

.front-manager {
  margin-top: 50px;
  background-color: var(--color-white);
  
  @media (max-width: 1024px) {
    margin-top: 57px;
  }

  @media (max-width: 500px) {
    margin-top: 34px;
  }
}

@media screen and (max-width: 1024px) {
  .front-manager {
    margin-top: 57px;
  }
}

@media screen and (max-width: 500px) {
  .front-manager {
    margin-top: 34px;
  }
}

.front-manager__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.front-manager__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.front-manager__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
}

.front-manager__dsc {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.front-manager__form .c-modal__controls {
  margin-top: 24px;
}

.front-manager__form .c-modal__close-btn {
  display: none;
}

.front-manager__form .c-modal__button--submit {
  width: 100%;
}
