/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.sector {
  position: relative;
  width: 100%;
}
.sector .swiper {
  overflow: unset;
}
.sector .swiper-wrapper {
  cursor: url("/assets/svg/slider-cursor.svg") 29 29, auto;
}

.sector-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: fit-content;
  width: 300px;
}
.sector-card.-active .sector-card__image::after, .sector-card:hover .sector-card__image::after {
  opacity: 0.7;
}
.sector-card.-active .sector-card__main, .sector-card:hover .sector-card__main {
  background-color: hsl(0, 0%, 100%);
}
.sector-card.-active .sector-card__button, .sector-card:hover .sector-card__button {
  border-color: transparent;
}
.sector-card.-active .button, .sector-card:hover .button {
  border-color: #c3c3c3;
}
.sector-card.-active .plus-icon, .sector-card:hover .plus-icon {
  fill: #f58220;
}
.sector-card.-active .sector-card__subpages {
  display: flex;
}
.sector-card.-active .sector-card__subpages {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.sector-card.-active .button {
  border-color: #f58220;
}
.sector-card.-active .plus-icon__vertical {
  display: none;
}
.sector-card__image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 360px;
}
.sector-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sector-card__image::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 117, 0, 0.8) 0%, rgba(245, 130, 32, 0) 42.13%);
  transition: all 50ms ease;
}
.sector-card__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: transparent;
  transition: all 50ms ease;
}
.sector-card__button {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 24px;
  border-bottom: 0.5px solid #5f5f5f;
}
.sector-card__subpages {
  cursor: default;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px 24px 30px;
  width: 100%;
}
.sector-card__subpage {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: #474747;
  font-size: 16px;
  font-size: 1rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 400;
  letter-spacing: -1px;
}
.sector-card__subpage img {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 100ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.sector-card__subpage:hover {
  font-weight: 500;
}
.sector-card__subpage:hover img {
  opacity: 1;
  transform: translateX(0);
}
.sector-card__title {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 27.2px;
  line-height: 1.7rem;
  text-transform: none;
}
.sector-card .button {
  width: 50px;
  height: 50px;
  border-color: transparent;
  background-color: transparent;
  transition: all 50ms ease;
}
.sector-card .button::before {
  content: unset;
}
.sector-card .button svg {
  width: 2ch;
  filter: unset;
}
@media screen and (min-width: 768px) {
  .sector-card {
    width: 350px;
  }
  .sector-card__image {
    height: 420px;
  }
  .sector-card__button {
    height: 115px;
  }
}