header {
  padding: 20px 0;
}

.aboutSection {
  padding: 70px 0;
}
.aboutSection .content .textContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aboutSection .content .textContent h1 {
  font-size: 44px;
  font-weight: 300;
}
.aboutSection .content .textContent p {
  font-size: 24px;
  font-weight: 300;
}
.aboutSection .content img {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/400;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-radius: 40px;
}

.taskSection {
  padding: 50px 0;
}
.taskSection .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.taskSection .content h2 {
  font-size: 34px;
  font-weight: 300;
}
.taskSection .content .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.taskSection .content .list .card {
  box-sizing: border-box;
  width: calc(50% - 10px);
  padding: 50px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--totalWhite);
}
.taskSection .content .list .card h3 {
  font-size: 18px;
  color: var(--darkGray);
}
.taskSection .content .list .card .number {
  display: block;
  width: 18px;
  height: 18px;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  border-radius: 10px;
}

.advantagesSection {
  padding: 50px 0;
}
.advantagesSection .content .header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.advantagesSection .content .header h2 {
  font-size: 34px;
  font-weight: 300;
}
.advantagesSection .content .header .controls {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--totalWhite);
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
.advantagesSection .content .header .controls button {
  background-color: transparent;
  border: none;
  outline: none;
  height: 100%;
  padding: 10px;
  cursor: pointer;
}
.advantagesSection .content .header .controls button.prev svg {
  transform: rotateZ(180deg);
}
.advantagesSection .content .header .controls button:disabled svg path {
  fill: #E5E5E8;
}
.advantagesSection .content #mySwiper {
  width: 100%;
}
.advantagesSection .content #mySwiper .item {
  box-sizing: border-box;
  width: 320px;
  background-color: var(--red);
  padding: 50px;
  border-radius: 25px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.advantagesSection .content #mySwiper .item h3 {
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 300;
}
.advantagesSection .content #mySwiper .item p {
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 800px) {
  header {
    padding: 20px 0;
  }
  .aboutSection {
    padding: 30px 0;
  }
  .aboutSection .content .textContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .aboutSection .content .textContent h1 {
    font-size: 32px;
    font-weight: 300;
  }
  .aboutSection .content .textContent p {
    font-size: 20px;
    font-weight: 300;
  }
  .aboutSection .content img {
    width: 100%;
    height: auto;
    aspect-ratio: 1080/400;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
    border-radius: 40px;
  }
  .taskSection {
    padding: 30px 0;
  }
  .taskSection .content h2 {
    font-size: 26px;
    font-weight: 300;
  }
  .taskSection .content .list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .taskSection .content .list .card {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--totalWhite);
  }
  .taskSection .content .list .card h3 {
    font-size: 18px;
    color: var(--darkGray);
  }
  .taskSection .content .list .card .number {
    display: block;
    width: 18px;
    height: 18px;
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    border-radius: 10px;
  }
  .advantagesSection {
    padding: 30px 0;
  }
  .advantagesSection .content .header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .advantagesSection .content .header h2 {
    font-size: 26px;
    font-weight: 300;
  }
  .advantagesSection .content .header .controls {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--totalWhite);
    border-radius: 10px;
  }
  .advantagesSection .content .header .controls button {
    background-color: transparent;
    border: none;
    outline: none;
    height: 100%;
    padding: 10px;
    cursor: pointer;
  }
  .advantagesSection .content .header .controls button.prev svg {
    transform: rotateZ(180deg);
  }
  .advantagesSection .content .header .controls button:disabled svg path {
    fill: #E5E5E8;
  }
  .advantagesSection .content .swiper .item {
    box-sizing: border-box;
    width: 100%;
    max-width: 320px;
    height: 263px;
    background-color: var(--red);
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .advantagesSection .content .swiper .item h3 {
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 300;
  }
  .advantagesSection .content .swiper .item p {
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 300;
  }
}/*# sourceMappingURL=wms.css.map */