.equipments-list {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 128px;
}
.equipment {
  display: flex;
  width: 100%;
  color: #fff;
}
.equipment:nth-child(even) {
  /* flex-direction: row-reverse; */
}

.equipment__item {
  display: flex;
}

.equipment__img {
  position: relative;
  background-size: cover;
  background-position: center;
}

.equipment__img,
.equipment__info {
  width: 50%;
}
.equipment__img img { 
  width: 100%;
  height: auto;
  object-fit: cover;
}

.equipment__info {
  padding: 2.5vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75vw;
  background: rgb(0 0 0 / 50%);
}
.equipment__info .title_part {
  font-size: max(2vw, 21px);
  width: 100%;
  font-weight: 600;
}

.equipment__description {
  font-size: max(1vw, 14px);
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}
  
  

.equipment__info .equipments_icon svg {
  width: 100%;
  height: 100%;
}
.equipment__info .equipments_icon {
  position: relative;
  padding: 10px;
  width: 100px;
  height: 100px;
  line-height: 120px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}
.equipment.now-in-view .equipment__info .equipments_icon {
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 2000ms ease 500ms;
  -ms-transition: all 2000ms ease 500ms;
  -o-transition: all 2000ms ease 500ms;
  -moz-transition: all 2000ms ease 500ms;
  transition: all 2000ms ease 500ms;
}

@media screen and (max-width: 1080px) {
  .support-section--wrapper {
    gap: 2vw;
  } 
}

@media screen and (max-width: 800px) {
  .equipments-list {
    padding: 5vh 0;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
  }
  .equipment {
    flex-direction: column;
    align-items: center;
  }

  .equipment:nth-child(even) {
    flex-direction: column;
  }

  .equipment__item {
    width: 72.5%;
  }

  .equipment__img {
    /* width: 70%; */
    height: min(35vh, 50vh);
  }

  .equipment__info {
    padding: 5vw 2.75vw;
    gap: 2.5vw;
  }

  .support-section--wrapper {
    gap: 3vw;
  }
   .equipment__info .title_part {
    font-size: max(3.5vw, 28px);
    text-align: center;
  }

  .support-section .section_content {
    gap: 2vw;
  }

  .section_content,
  .equipment__description {
    font-size: max(2.25vw, 15px);
  }

  .support-section .section_title {
    font-size: 7vw;
  }
}

@media screen and (max-width: 650px) {
  .equipment__item {
    width: 85%;
  }

  .equipment__info {
    gap: 3.75vw;
    padding: 7.5vw 2.5vw;
  }
  .support-section--wrapper {
    gap: 3.5vw;
  } 
  .support-section .section_content {
    gap: 2.5vw;
    max-width: 94%;
  }

  .equipment__btn {
    --button-horizontall-side-padding: 1.5rem;
    --button-vertical-side-padding: 0.75rem;
    --button-width: 50%;
    align-self: center;
  }
 
}

@media screen and (max-width: 500px) {
  .button.equipment__btn {
    --button-width: 100%;
  }

  .equipment__info {
    padding: 2.5vh 0;
  }
}
