@charset "UTF-8";
/* breakpoints */
.heroelement {
  position: relative;
  z-index: 10;
}
.heroelement h1 *, .heroelement h1 {
  font-weight: 900;
  font-size: clamp(1.875rem, 8vw, 6.875rem);
  line-height: 1.1;
  padding-bottom: 0.5rem;
}
.heroelement .hero__circle {
  position: relative;
  margin-top: 3rem;
}
.heroelement .hero__circle .image__swiper {
  overflow: clip;
  border-top-left-radius: var(--border-radius-full);
  border-top-right-radius: var(--border-radius-full);
}
.heroelement .hero__circle .image__swiper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.heroelement .hero__circle .points {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 20;
}
.heroelement .point {
  background-color: var(--point-bg-clr, var(--clr-primary));
  padding: 0.375rem;
  --font-clr: var(--white);
  border-radius: var(--border-radius-xl);
  transition: all 0.4s ease;
  opacity: 0;
  min-width: 300px;
}
@media (max-width: 991.98px) {
  .heroelement .point {
    opacity: 1;
  }
}
.heroelement .point i {
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s ease;
  overflow: visible;
}
@media (min-width: 992px) {
  .heroelement .point i {
    font-size: 2rem;
  }
}
.heroelement .point__trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.heroelement .point__title {
  font-size: 1rem;
  text-wrap: nowrap;
  margin-right: 1rem;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 12;
}
@media (min-width: 992px) {
  .heroelement .point__title {
    font-size: 1.125rem;
  }
}
.heroelement .point__content {
  padding: 0.5rem 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  background-color: inherit;
  border-bottom-left-radius: var(--border-radius-xl);
  border-bottom-right-radius: var(--border-radius-xl);
  transition: all ease 0.3s;
  transform: scale(0);
  transform-origin: top center;
}
.heroelement .point__content .slide__links {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.heroelement .point__content .slide__links a {
  text-decoration: none;
  transition: var(--transition);
}
.heroelement .point__content .slide__links a i {
  font-size: inherit;
  transform: unset;
}
.heroelement .point__content .slide__links a i::before {
  content: "";
  transition: var(--transition);
}
.heroelement .point__content .slide__links a:hover i {
  font-size: inherit;
  transform: unset;
}
.heroelement .point__content .slide__links a:hover i::before {
  content: "";
}
.heroelement .point.active {
  z-index: 20;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.heroelement .point.active i {
  display: inline-block;
  transform: rotate(45deg);
  transition: all 0.2s ease;
}
.heroelement .point.active .point__content {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.heroelement .bottom__section .circle__holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.heroelement .bottom__section .circle__holder .circle {
  --font-clr: var(--white);
  aspect-ratio: 2;
  background-color: var(--clr-secondary);
  border-bottom-left-radius: var(--border-radius-full);
  border-bottom-right-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3rem;
  flex-direction: column;
  padding: 2rem;
}
@media (min-width: 992px) {
  .heroelement .bottom__section .circle__holder .circle {
    padding: 3rem;
  }
}
@media (min-width: 1200px) {
  .heroelement .bottom__section .circle__holder .circle {
    padding: 5rem;
  }
}
@media (min-width: 1600px) {
  .heroelement .bottom__section .circle__holder .circle {
    padding: 11rem;
  }
}
.heroelement .bottom__section .circle__holder .circle .jumbotron {
  font-size: clamp(1.875rem, 4vw, 6rem);
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}
.heroelement .bottom__section .circle__holder .circle a {
  font-size: 1.375rem;
}
.heroelement .bottom__section img {
  border-bottom-left-radius: var(--border-radius-xxl);
  border-bottom-right-radius: var(--border-radius-xxl);
}
.heroelement .bottom__section .image__points .point {
  --point-bg-clr: var(--white);
  border-radius: 50px;
  background-color: var(--point-bg-clr, var(--white));
  height: 1.5rem;
  width: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25);
  opacity: 1;
  animation: pulse 2s infinite;
  min-width: unset;
}
.heroelement .bottom__section .image__points .point[aria-describedby] {
  box-shadow: 0 0 0 10px var(--point-bg-clr, var(--white));
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.heroelement .desktop .point {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
}
.heroelement .mobile {
  --border-radius: 60%;
}
.heroelement .mobile .mobile__swiper img {
  width: 150%;
  margin-left: -25%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.heroelement .mobile .mobile__thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
}
.heroelement .mobile .mobile__thumbs .swiper-slide {
  width: max-content;
}
.heroelement .mobile .point__content {
  top: unset;
  bottom: calc(100% - 1px);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
  transform-origin: bottom center;
}
.heroelement .mobile .point.active {
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}
.heroelement .mobile .swiper__controls .next, .heroelement .mobile .swiper__controls .prev {
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  position: relative;
}
.heroelement .mobile .swiper__controls .next i, .heroelement .mobile .swiper__controls .prev i {
  color: var(--black);
  font-size: 1rem;
}
.heroelement .mobile .bottom__section .circle__holder {
  width: 150%;
  left: -25%;
}
.heroelement .mobile .bottom__section .circle__content {
  max-width: 90vw;
  margin: 0 auto;
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%2Fthemes%2Fthermotex24%2Fscss%2Felements%2F_hero.scss%22%2C%22%2Fthemes%2Fthermotex24%2Fscss%2Felements%2F..%2Fsettings%2Fbreakpoints.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAEA%3BAAAA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACGE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADqBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC3BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAD0CA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAgBE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAASV%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACtHF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADgJI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYE%3BAAAA%3BAAAA%3BAAAA%3BAAQN%3BAACE%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAME%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUE%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%22%7D */