:root {
  /* COLORS */
  --white: #ffffff;
  --black: #21212b;
  --black60: #21212b99;
  --green: #d0db5f;
  --green-light: #d0db5f33;
  --links: #0a94a8;
  --yellow: #f1ea75;
  --orange: #f7ac6f;
  --blue: #96c0e8;
  --primaryColor: #d0db5f;
  --secondaryColor: #f89443;

  /* grays */
  --gray900: #071621;
  --gray700: #666e87;
  --gray500: #8a90a7;
  --gray300: #bec6d3;
  --gray100: #f5f4f4;

  /* dark */
  --dark: #21212b;

  /* font */
  --mainFont: Montserrat, Arial, sans-serif;
  --titleFont: Montserrat, Arial, sans-serif;
}

/*** HEADER ***/

.c-Header-item svg {
  transition: fill 0.4s ease-in-out;
}

.c-Header-item.favorites svg:hover {
  fill: #ffc4c4;
}

.c-Header-item.bell svg:hover {
  fill: #ffe5b4;
}

@keyframes bellRing {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-13deg);
  }
  60% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0);
  }
}

.c-Header-item.bell svg {
  transform-origin: top center;
  transition: fill 0.3s ease;
}

.c-Header-item.bell svg:hover {
  animation: bellRing 1s ease-in-out;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.c-Header-item.favorites svg {
  transform-origin: center;
  transition: fill 0.3s ease;
}

.c-Header-item.favorites svg:hover {
  fill: #ffc4c4;
  animation: heartbeat 1s ease-in-out infinite;
}

@keyframes userBounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-10px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-3px);
  }
  75% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

.c-Header-item.account svg {
  transform-origin: center;
  transition: fill 0.3s ease-in-out;
}

.c-Header-item.account svg:hover {
  animation: userBounce 1s ease;
  fill: var(--gray300);
}

/*** HOME ***/

/*.InteractiveContent--grid{
  height: 100vh;
}

.InteractiveContent__text{
  place-content: center;
}

.InteractiveContent__images .overlay_item{  width: 180px;
  height: 180px;
}

.InteractiveContent__images{
  place-content: center;
}

.InteractiveContent__images .overlay_item:nth-child(2){
  top: 30px;
  left: -10%;
}

.InteractiveContent__images .overlay_item:nth-child(3){
  bottom: 30px;
  right: -10%;
  z-index: 2;
}

@media all and (min-width: 380px){

  .InteractiveContent__title,
  .InteractiveContent__text{
    grid-column:2/6!important;
  }

  .InteractiveContent__title{
    grid-row:2/6!important;
  }

  .InteractiveContent__text{
    grid-row:7/12!important;
    place-content: start;
  }

  .InteractiveContent__title h2{
    font-size: 2.5rem;
    font-weight: 700;
  }

  .InteractiveContent__text p{
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .InteractiveContent__images .background_image{
    width: 300px;
    height: auto;
  }

  .InteractiveContent--grid {
    height: 80vh;
  }
}

@media all and (min-width: 1600px){

  .InteractiveContent__title,
  .InteractiveContent__text{
    grid-column:2/6!important;
  }

  .InteractiveContent--grid{
    height: auto;
  }

  .InteractiveContent__images .overlay_item{
    width: 250px;
    height: 250px;
  }

  .InteractiveContent__images .background_image{
    width: 600px;
    height: 100%;
  }

  .InteractiveContent__title h2{
    font-size: 3.5rem;
  }

  .InteractiveContent__text p {
    font-size: 1.25rem;
  }
}

@media all and (min-width: 1920px){

  .InteractiveContent__images .overlay_item:nth-child(3){
    right: -10%;
  }

}*/

/*@media all and (min-width: 2000px){

  .InteractiveContent__title{
    grid-row: 2/5!important;
  }

  .InteractiveContent__text{
    grid-row: 5/8!important;
    place-content: center;
  }

  .InteractiveContent__images .background_image{
    width: 500px;
    height: 100%;
  }

  .InteractiveContent__images .overlay_item:nth-child(2){
    left: 0;
  }

  .InteractiveContent__images .overlay_item:nth-child(3){
    right: 0;
  }
  .InteractiveContent__text p {
    font-size: 1.5rem;
  }

}*/

/*.InteractiveContent__images{
  place-content: center;
  display: flex;
  overflow: visible!important;
}

.InteractiveContent__images img{
  !* height: 100%; *!
  width: auto;
  object-fit: cover;
}*/

/*** EditoCarousel ***/

.editoCarousel__header__link {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  position: relative;
}

.editoCarousel__header__link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.editoCarousel__header__link:hover::before {
  width: 100%;
}

.editoCarousel__header__link::after {
  content: '';
  width: 16px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12.5L15 7L9 1.5' stroke='%2321212B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 7L1 7' stroke='%2321212B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.editoCarousel__header h2,
.editoCarousel--fullScreen h2 {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.editoCarousel__header h2 {
  color: var(--white);
}

.editoCarousel--fullScreen__header h2 {
  color: var(--primaryColor);
}

.editoCarousel__header h3 {
  color: var(--dark);
  font-size: 2.5rem;

  @media all and (min-width: 768px) {
    width: 80%;
  }
}

/* .editoCarousel--fullScreen__header h3{
  font-size: 2rem;
} */
.editoCarousel__header {
  padding: 2rem 0;
}

.editoCarousel__header h2,
.editoCarousel__header h3,
.editoCarousel--fullScreen h2,
.editoCarousel--fullScreen h3 {
  font-weight: 700;
  text-align: center;
  font-size: 32px;
}

/*** EventsSection ***/

.eventsSection h2 {
  color: var(--secondaryColor);
  text-transform: uppercase;
  font-size: 1.2rem;

  svg {
    width: 20px;
    height: auto;
  }
}

.floatingSearchBar-modal .floatingSearchBar-button,
.floatingSearchBar-modal-focused .floatingSearchBar-button,
.floatingSearchBar-button {
  background-color: var(--green);
}

/*** FOOTER ***/

.help-section a.office-link {
  background: #d0db5f66;
  padding: 10px;
  width: 300px;
}

.help-section a.contact-link {
  background: var(--blue);
  padding: 10px;
  width: 300px;
}

.pro-section a.footer-pro-link {
  background: var(--orange);
  padding: 10px;
  width: 300px;
}

.pro-section a.footer-press-link {
  background: rgb(250, 220, 235);
  padding: 10px;
  width: 300px;
}

.searchBoxIA-button {
  background-color: var(--green);
}

.searchBoxIA-button-disabled {
  background: #f6f8df;
  cursor: unset !important;
}

.ModernFooter .bottom-footer {
  padding-bottom: 90px;
}

.embla__slide__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #666;
  font-style: italic;
}

.HTMLVisualContent {
  padding: 30px;
  font-family: var(--mainFont);

  h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    padding-bottom: 15px;
  }

  p {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
  }

  a {
    font-weight: 700;
    text-decoration: underline;
  }

  @media screen and (min-width: 768px) {
    padding: 40px;
    margin: 0 auto;
    max-width: 1400px;
  }
}

#matomo-opt-out {
  padding: 0 20px;
  @media screen and (min-width: 768px) {
    padding: 0 26vw;
  }

  p,
  label {
    font-family: Montserrat !important;
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 500;
  }

  input {
    display: inline;
    margin-right: 8px;
  }
}

.optin-text a {
  text-decoration: underline;
}
