@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");
/* -------------------------- Colors -------------------------- */
:root,
:host {
  --line-height_0_73: 0.73;
  --line-height_1_13: 1.13;
  --line-height_1_17: 1.17;
  --line-height_1_29: 1.29;
  --line-height_1_27: 1.27;
  --line-height_1_33: 1.33;
  --line-height_1_38: 1.38;
  --line-height_1_43: 1.43;
  --line-height_1_5: 1.5;
  --line-height_1_57: 1.57;
  --line-height_1_67: 1.67;
  --line-height_1_78: 1.78;
  --RGBA_1: rgba(0, 103, 120, 0.15);
  --RGBA_2: rgba(0, 103, 120, 0.9);
  --RGBA_3: rgba(104, 137, 155, 0.33);
  --RGBA_4: rgba(38, 133, 245, 0.28);
  --RGBA_5: rgba(0, 0, 0, 0);
  --RGBA_6: rgba(255, 255, 255, 0.6);
  --RGBA_7: rgba(0, 0, 0, 0.29);
  --RGBA_8: rgba(0, 0, 0, 0.2);
  --RGBA_9: rgba(255, 255, 255, 0);
  --RGBA_10: rgba(112, 144, 176, 0.2);
  --RGBA_11: rgba(194, 225, 245, 0);
  --RGBA_12: rgba(0, 0, 0, 0.08);
}

/* -------------------------- Colors -------------------------- */
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-Bold";
  src: url("/assets/fonts/Manrope-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-ExtraBold";
  src: url("/assets/fonts/Manrope-ExtraBold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-ExtraLight";
  src: url("/assets/fonts/Manrope-ExtraLight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-Light";
  src: url("/assets/fonts/Manrope-Light.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-Medium";
  src: url("/assets/fonts/Manrope-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope-SemiBold";
  src: url("/assets/fonts/Manrope-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
/* Bulma Utilities */
.margin-top-2 {
  margin-top: 2rem !important;
}

agn-slider {
  display: block;
}
agn-slider .slider {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px), print {
  agn-slider .slider .slider-wrapper {
    margin: 0 auto;
    overflow: hidden;
  }
}
agn-slider .slider .slider-container {
  column-gap: 1.5rem;
  display: flex;
  margin: 0 auto;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
}
agn-slider .slider .slider-prev,
agn-slider .slider .slider-next {
  display: none;
}
@media screen and (min-width: 768px), print {
  agn-slider .slider .slider-prev,
agn-slider .slider .slider-next {
    align-items: center;
    cursor: pointer;
    display: flex;
    filter: drop-shadow(0 0 1rem #e4e0e0);
    height: 96px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    z-index: 10;
  }
}
agn-slider .slider .slider-prev.is-faded,
agn-slider .slider .slider-next.is-faded {
  opacity: 0.5;
  pointer-events: none;
}
agn-slider .slider .slider-prev {
  background-size: 56px 96px;
  border-bottom: 25px solid transparent;
  border-left: 56px solid #ffffff;
  border-top: 25px solid transparent;
  height: 96px;
  left: 0;
  right: auto;
}
agn-slider .slider .slider-prev .image {
  left: -41.5px;
  position: absolute;
  right: auto;
}
agn-slider .slider .slider-next {
  background-size: 56px 96px;
  border-bottom: 25px solid transparent;
  border-right: 56px solid #ffffff;
  border-top: 25px solid transparent;
  height: 96px;
  left: auto;
  right: 0;
}
agn-slider .slider .slider-next .image {
  left: auto;
  position: absolute;
  right: -41.5px;
}
agn-slider .slider .slider-dots {
  display: none;
}
@media screen and (min-width: 768px), print {
  agn-slider .slider .slider-dots {
    column-gap: 0.5rem;
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  agn-slider .slider .slider-dots .slider-dot {
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    width: 10px;
  }
  agn-slider .slider .slider-dots .slider-dot.current-slide {
    background-color: #000000;
    opacity: 0.3;
  }
}
agn-slider .slider .slider-dots.hide-dots {
  display: none;
}
@media screen and (max-width: 767px) {
  agn-slider .slider.is-slider-mobile .slider-wrapper {
    overflow: unset;
    width: 100vw !important;
  }
  agn-slider .slider.is-slider-mobile .slider-container {
    column-gap: 16px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-points-x: repeat(200px);
    scroll-snap-type: x mandatory;
    width: 100% !important;
  }
  agn-slider .slider.is-slider-mobile .slider-container .slider-item {
    display: inline-block;
    scroll-snap-align: center;
  }
}