.main__hero {
  background-color: var(--bg-hero-color);
  background-image: url('/static/images/main/Polygon\ Luminary.svg');
  border-bottom-left-radius: 140px;
  background-size: cover;
}

.hero-container {
  padding-top: 201px;
  padding-bottom: 201px;
  background-image:
    url(/static/images/main/bg.png);
  background-repeat: no-repeat;
}

.hero-title {
  max-width: 800px;
  font-family: 'KyivTypeSans';
  font-weight: 800;
  font-size: 62px;
  line-height: 74px;
  color: var(--bg-color);
  margin-bottom: 25px;
}

.hero__swiper-container {
  max-width: 45%;
  margin-left: 0;
  position: relative;
}

.swiper-slide {
  color: var(--text-light-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}

.hero__swiper {
  width: 90%;
  margin-left: 0;
}

.swiper-button-next::after {
  content: "";
  right: -30px;
  position: absolute;
}

.hero__swiper-button-next {
  transition: transform .3s ease-in-out;
}


/* about */
.about__container {
  padding-top: 140px;
  padding-bottom: 70px;
}

.about__title {
  margin-bottom: 60px;
}

.about__list {
  display: flex;
  column-gap: 20px;
}

.about__item {
  width: calc((100% - 40px) / 3);
  padding: 60px 50px 90px;
  background-color: var(--text-light-color);
}

.about__item-1 {
  border-radius: 3px 3px 3px 90px;
}

.about__item-2 {
  border-radius: 3px 90px 3px 3px;
}

.about__item-3 {
  border-radius: 3px 3px 90px 3px;
}

.about__img {
  margin-bottom: 23px;
}

.about__item-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  color: var(--title-color);
  margin-bottom: 20px;
}

.about__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

/* quote */

.quote__container {
  padding-top: 70px;
  padding-bottom: 140px;
}

.quote__block {
  padding: 0 100px;
  display: flex;
  column-gap: 120px;
  align-items: center;
}

.quote__title {
  margin-bottom: 30px;
}

.quote__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--title-color);
  margin-bottom: 10px;
}

.quote__post {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

/* projects */
.projects__container {
  background-color: var(--text-light-color);
  border-top-right-radius: 140px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.projects__title {
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
}

.projects-swiper {
  padding-bottom: 60px;
}

.projects__slide {
  background-color: var(--bg-color);
  min-height: 600px;
}

.projects__slide-1 {
  border-radius: 3px 3px 3px 90px;
}

.projects__slide-2 {
  border-radius: 90px 3px 3px 3px;
}

.projects__slide-3 {
  border-radius: 3px 3px 90px 3px;
}

.projects__slide-4 {
  border-radius: 3px 90px 3px 3px;
}

.projects__slide-top {
  padding: 60px 50px 0;
}

.projects__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--descr-color);
  margin-bottom: 10px;
}

.projects__swiper-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  color: var(--title-color);
  margin-bottom: 10px;
}

.projects__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-gray-color);
}

.projects__slide-bottom {
  padding: 20px 50px 0;
}

.project__title-list {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--title-color);
  margin-bottom: 20px;
}

.projects__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
  padding-left: 17px;
  position: relative;
  margin-bottom: 15px;
}

.projects__item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot-color);
  left: 2px;
  top: 9px;
}

.projects-swiper.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 400px;
  left: 33%;
}

.projects__scrollbar {
  --swiper-scrollbar-drag-bg-color: var(--disabled-color);
  --swiper-scrollbar-bg-color: var(--border-color);

}

/* advantages */
.advantages__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;

}

.advantages__left {
  width: 50%;
  min-height: 526px;
}

.advantages__title {
  margin-bottom: 20px;
}

.advantages__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
  margin-bottom: 20px;
}

.advantages__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-hover-color);
  border-bottom: 1px solid var(--text-hover-color);
  padding-bottom: 5px;
  position: relative;
}

.advantages__link span {
  margin-right: 10px;
}

.advantages__link svg {
  transition: transform .3s ease-in-out;
}

.advantages__left-descr {
  margin-bottom: 30px;
}

.accordion-container {
  width: 60%;
}

.ac .ac-trigger span {
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  color: var(--title-color);
  transition: color .4s ease-in-out;
}

.ac-trigger {
  position: relative;
}

.ac .ac-trigger:hover span {
  color: var(--text-hover-color);
}

.ac .ac-trigger svg {
  margin-right: 10px;
}

.ac .ac-trigger svg path {
  transition: fill .4s ease-in-out;
}

.ac .ac-trigger:hover svg path {
  fill: var(--text-hover-color);
}

.ac .ac-trigger::after,
.ac.is-active>.ac-header .ac-trigger::after {
  content: "";
}

.ac.is-active>.ac-header span {
  color: var(--text-hover-color);
}

.ac.is-active>.ac-header svg path {
  fill: var(--text-hover-color);
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.ac-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

.ac {
  border: none;
  margin-top: 0;
}

.ac:first-child {
  border-bottom: 1px solid var(--border-color);
}

.ac-item {
  position: relative;
  padding-left: 43px;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

.ac-item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dot-color);
  left: 25px;
  top: 9px;
}

.advantages__right {
  width: 50%;
  background-image: url(/static/images/main/adv-right.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  position: relative;
}

/* .advantages__right-btn-top,
.advantages__right-btn-bot {
  padding: 25px;
  padding-left: 55px;
  background-color: var(--bg-color);
  box-shadow: 0px 0px 15px rgba(24, 26, 31, 0.1);
  border-radius: 3px;
  position: absolute;
}

.advantages__right-btn-top {
  right: 1px;
  top: 19px;
}

.advantages__right-btn-bot {
  left: 0;
  bottom: 80px;
}

.advantages__right-btn-top::before,
.advantages__right-btn-bot::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 20px;
}

.advantages__right-btn-top::before {
  background-image: url(/static/images/main/adv-btn-1.svg);
}

.advantages__right-btn-bot::before {
  background-image: url(/static/images/main/adv-btn-2.svg);
}

 .tabs__btn--active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 3px;
  background: linear-gradient(to right, #04AB75, var(--text-hover-color));
  z-index: -1;
} */

/* products */
.products {
  background-color: var(--text-light-color);
}

.products__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.products__title {
  text-align: center;
  margin-bottom: 60px;
}

.products__block {
  display: flex;
  column-gap: 20px;
  padding: 0 200px;
}

.block__descr {
  background-color: var(--white-color);
  border-radius: 3px 3px 3px 90px;
  padding: 131px 40px 60px 50px;
  min-height: 516px;
  width: 380px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.block__descr:before {
  content: "";
  position: absolute;
  left: 50px;
  top: 60px;
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
}

.block__descr-1::before {
  background-image: url(/static/images/main/products-icon-1.svg);
}

.block__descr-2::before {
  background-image: url(/static/images/main/products-icon-2.svg);
}

.block__title {
  font-weight: 700;
  font-size: 21px;
  line-height: 29px;
  color: var(--title-color);
  margin-bottom: 20px;
}

.block__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
  margin-bottom: 15px;
  padding-left: 34px;
  position: relative;
}

.block__item::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 18px;
  background-image: url(/static/images/main/products-mark.svg);
  background-repeat: no-repeat;
  top: 4px;
  left: 0;
}

.block__link-box {
  padding-left: 34px;
}

.block__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-hover-color);
  border-bottom: 1px solid var(--text-hover-color);
  padding-bottom: 5px;
  position: relative;
}

.block__link span {
  margin-right: 10px;
}

.block__link svg {
  transition: transform .3s ease-in-out;
}

/* photo */

.photo__container {
  padding-top: 140px;
  padding-bottom: 70px;
}

.photo__swiper-container {
  position: relative;
  padding-bottom: 70px;
}

.photo__swiper {
  width: 100%;
}

.photo__slide img {
  object-fit: contain;
  width: 100%;
  border-radius: 3px 3px 90px 3px;
}

.photo-prev::after {
  content: "";
}

.photo-prev,
.photo-next {
  top: 96%;
  width: 250px;
  border: 2px solid var(--text-hover-color);
  border-radius: 3px;
  color: var(--text-hover-color);
  display: flex;
  column-gap: 15px;
  transition: color .3s ease-in-out,
    background-color .3s ease-in-out;
}

.photo-prev {
  left: 0;
}

.photo-next {
  right: 0;
}

.photo-prev path,
.photo-next path {
  transition: fill .3s ease-in-out;
}

/* contains */
.hero__swiper-button-next::before,
.advantages__link::before,
.ac-trigger::before,
.block__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  outline: 1px solid var(--text-hover-color);
  outline-offset: 3px;
  opacity: 0;
  transition: opasity .3s ease-in-out;
}

.hero__swiper-button-next:focus-visible,
.advantages__link:focus-visible,
.ac-trigger:focus-visible,
.block__link:focus-visible,
.photo-prev:focus-visible,
.photo-next:focus-visible {
  outline: 0;
}

.hero__swiper-button-next:focus-visible::before,
.advantages__link:focus-visible::before,
.ac-trigger:focus-visible::before,
.block__link:focus-visible::before {
  opacity: 1;
}

.photo-prev:hover,
.photo-next:hover,
.photo-prev:focus-visible,
.photo-next:focus-visible {
  background-color: var(--text-hover-color);
  color: var(--bg-color);
}

.photo-prev:hover path,
.photo-next:hover path,
.photo-prev:focus-visible path,
.photo-next:focus-visible path {
  fill: var(--bg-color);
}

.block__link:hover svg,
.advantages__link:hover svg,
.hero__swiper-button-next:hover svg {
  transform: translateX(2px);
}
