.position {
  padding-block: 80px;
}

.position-tabs__inner {
  max-width: 1360px;
  padding-inline: 40px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .position-tabs__inner {
    padding-inline: 32px;
  }
}

.position-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1280px) {
  .position-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 980px) {
  .position-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .position-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.position-tab {
  padding-block: 22px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: #4869c1;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  position: relative;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .position-tab {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 540px) {
  .position-tab {
    aspect-ratio: 1/1;
  }
}
.position-tab:hover {
  transform: scale(0.9);
}
.position-tab:hover .position-tab__icon svg {
  animation: arrow-fly 0.4s ease forwards;
}

.position-tab__num {
  position: absolute;
  top: 5.6%;
  left: 5.6%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .position-tab__num {
    font-size: 13px;
    line-height: 100%;
  }
}

.position-tab__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.position-tab__title {
  font-size: 19px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 768px) {
  .position-tab__title {
    font-size: 13px;
  }
}

.position-tab__img {
  width: 54%;
}
@media (max-width: 768px) {
  .position-tab__img {
    width: 40%;
  }
}

.position-tab__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33px;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  display: grid;
  place-content: center;
}
@media (max-width: 768px) {
  .position-tab__icon {
    width: 24px;
  }
}

.position-boxes {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (max-width: 1023px) {
  .position-boxes {
    gap: 56px;
  }
}

.position-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1023px) {
  .position-box {
    gap: 8px;
  }
}

.position-box__top {
  width: 100%;
}
@media (max-width: 1023px) {
  .position-box__top {
    display: contents;
  }
}

.position-box__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1023px) {
  .position-box__head {
    order: 1;
  }
}

.position-box__num {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.position-box__title {
  font-size: 40px;
  line-height: 160%;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .position-box__title {
    font-size: 32px;
  }
}

.position-box__lead {
  max-width: 800px;
  line-height: 200%;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--color-text);
}
@media (max-width: 1023px) {
  .position-box__lead {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
}

.position-box__bottom {
  display: flex;
  gap: 8%;
}
@media (max-width: 1023px) {
  .position-box__bottom {
    display: contents;
  }
}

.position-box__body {
  width: 35%;
  color: var(--color-text);
}
@media (max-width: 1023px) {
  .position-box__body {
    order: 4;
    width: 100%;
    padding-top: 24px;
  }
}

.position-box__subtitle {
  line-height: 200%;
  letter-spacing: 0.04em;
}

.position-box__text {
  margin-top: 8px;
  padding: 24px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.04em;
}

.position-box__img {
  width: 57%;
}
@media (max-width: 1023px) {
  .position-box__img {
    width: 100%;
    order: 2;
  }
}/*# sourceMappingURL=positions.css.map */