.engineering {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  gap: 49px;
  align-items: center;
  /* user-select: none;
  pointer-events: none; */
  background-color: var(--color__light);
}

.engineering__title {
  padding-bottom: 62px;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  font-family: 'Raleway';
  color: var(--color__blue);
}

.engineering__list {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.engineering__list-card {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.card-description {
  max-width: 243px;
  padding-bottom: 32px;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400; 
}

.engineering__image_mobile {
  width: 100%;
  min-height: 412px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(/src/img/engineering/image_engeneeering_mobile.png);
}

.engineering__image_tablet {
  display: none;
}

.engineering__image_desktop {
  display: none;
}

@media screen and (min-width: 375px) {
  .card-description {
    max-width: 298px;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {

  .engineering {
    padding-top: 150px;
    gap: 50px;
  }

  .engineering__title {
    padding-bottom: 60px;
    font-size: 32px;
    line-height: 48px;
  }

  .engineering__list {
    padding: 0 111px;
  }

  .engineering__list-card {
    padding-bottom: 40px;
    gap: 25px;
  }

  .card-description {
    max-width: max-content;
    padding: 0 74px 0 0;
    font-size: 22px;
    line-height: 33px;
  }

  .engineering__image_mobile {
    display: none;
  }

  .engineering__image_tablet {
    display: block;
    width: 100%;
    min-height: 608px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(/src/img/engineering/image_engeneeering_tablet.png);
  }
}

@media screen and (min-width: 1440px) {

  .engineering {
    display: flex;
    flex-direction: row;
    padding: 150px 100px;
    justify-content: center;
    align-items: flex-start;
    gap: 128px;
  }

  .engineering__title {
    padding-bottom: 90px;    
    text-align: left;
  }

  .engineering__list {
    display: flex;
    min-width: 472px;
    flex-direction: column;
    padding: 0;
  }
 
  .card-description {
   padding: 0;
  }

  .engineering__image_tablet {
    display: none;
  }

  .engineering__image_desktop {
    display: block;
    min-width: 640px;
    min-height: 480px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(/src/img/engineering/image_engeneeering_tablet.png);
  }
}