#event {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  padding-top: 80px !important;
}

#mobile-btn:hover #burger-icon {
  stroke: #E94F37;
}

#mobile-menu {
  z-index: 99999 !important;
  flex-direction: column !important;
}

.fixed-position {
  position: fixed;
}

.fp-tooltip {
  background: #E94F37;
  padding: 2px 9px 2px 9px;
  border: 2px solid;
  border-radius: 15px;
  overflow: hidden;
}

h3 span {
  display: none;
  /* Fallback: Set a background color. */
  background-color: #E94F37;

  /* Create the gradient. */
  background-image: linear-gradient(45deg, #E94F37, #F18F01);

  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

/*----------------*/
/* --- Mobile --- */
/*----------------*/
#e-title {
  grid-area: title;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
}

#e-text {
  grid-area: text;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0px;
}

#e-button {
  grid-area: button;
  display: flex;
  align-items: center;
  justify-content: center;
}

#e-img {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
}

h3 {
  text-align: center;
}

#e {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-areas:
    "title"
    "text"
    "button"
    "image";
  grid-template-columns: 1fr;
  grid-template-rows: 20% 25% 10% auto;
}

/*-----------------*/
/* --- Desktop --- */
/*-----------------*/
@media (min-width: 1024px) {
  #e-title {
    grid-area: title;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  #e-text {
    grid-area: text;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12.5%;
    padding-right: 12.5%;
    text-align: left;
    padding-top: 15px;
  }

  #e-button {
    grid-area: button;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #e-img {
    grid-area: image;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  h3 {
    text-align: center;
  }

  #e {
    display: grid;
    height: 75%;
    width: 100%;
    padding-left: 13rem;
    padding-right: 13rem;
    grid-template-areas:
      "image ."
      "image ."
      "image title"
      "image text"
      "image button"
      "image ."
      "image .";
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
  }
}
