/*----------------------- technology ----------------------------*/
.technology {
  position: relative;
  padding-top: 0;
  padding-bottom: 150px;
  overflow: hidden;
}
.technology .bg-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.technology .bg-item--left {
  left: 0;
}
.technology .bg-item--right {
  right: 0;
}
.technology .container {
  position: relative;
  z-index: 1;
}
.technology__list {
  margin-top: 30px;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .technology__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/* .technology .bg-item {
  display: none;
} */
.technology__list--first-row {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.technology__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 12px 16px 12px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--base100);
  border-radius: 10px;
}
.technology__item:hover .technology__item-text {
  color: #124DD9;
}
.technology__item:hover svg path {
  fill: #124DD9;
}
@media screen and (max-width: 768px) {
  .technology__item {
    max-width: 400px;
    width: 100%;
  }
}
.technology__item-icon {
  width: 44px;
  height: 26px;
}
.technology__item-icon img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .technology__item {
    padding: 12px 16px 12px 14px;
    margin: 0 auto;
  }
}
.technology__item svg {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.technology__item-text {
  font-family: MMedium;
  font-size: 18px;
  line-height: 1;
  color: #2b3337;
  margin-right: 50px;
}
@media screen and (max-width: 576px) {
  .technology__item-text {
    font-size: 15px;
  }
}
.technology__item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 10px;
  -webkit-box-shadow: var(--baseBoxShadow);
  box-shadow: var(--baseBoxShadow);
}
.technology__item-link:hover,
.technology__item-link:focus {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: var(--darkBoxShadow);
  box-shadow: var(--darkBoxShadow);
}
.technology .content-header {
  margin-bottom: 70px;
}
.technology__content-header h2 {
  color: #2B3337;
  font-size: 24px;
  font-family: 'MSemiBold', sans-serif;
  margin-bottom: 5px;
}
.technology__content-header--bottom {
  max-width: 460px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  .technology .content-header {
    margin-bottom: 60px;
  }
}
.technology__content:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 576px) {
  .technology__content:not(:last-child) {
    margin-bottom: 60px;
  }
}
.technology__content-header {
  text-align: center;
  max-width: 505px;
  margin-right: auto;
  margin-left: auto;
}
.technology__content-header h3 {
  color: var(--brandBase2);
  font-family: MSemiBold;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 576px) {
  .technology__content-header h3 {
    font-size: 20px;
  }
}
.technology__content-subtitle {
  margin-top: 6px;
  max-width: 590px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.technology__content-header p {
  color: var(--brandBase2);
  font-family: MRegular;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .technology {
    padding-bottom: 80px;
  }
  .technology__content-header h2 {
    font-size: 20px;
  }
  .technology__content-header p {
    font-size: 14px;
  }
}