/* colors */
/* easing bezier */
/* layout vars */
/* TYPE EFFECT BANNER */
.type-effect-banner {
  margin-top: 60px;
}
@media screen and (min-width : 48em) {
  .type-effect-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .type-effect-banner > div {
    width: calc((100% - 30px) / 2);
  }
}
.type-effect-banner p {
  font-weight: 500;
}
.type-effect-banner h1 {
  background-color: #005DAF;
  background-image: var(--gradient-dark-blue);
  background-size: 100%;
  background-clip: text;
  color: transparent;
}
.type-effect-banner #typed {
  color: #878F94;
}
.type-effect-banner .typed-cursor {
  color: #005DAF;
}
.type-effect-banner .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.type-effect-banner .text-wrapper .read-more {
  align-self: flex-start;
  margin-top: 15px;
}
.type-effect-banner .image-wrapper {
  margin-top: 30px;
}
@media screen and (min-width : 48em) {
  .type-effect-banner .image-wrapper {
    margin-top: initial;
  }
}
@media screen and (min-width : 110em) {
  .type-effect-banner .image-wrapper {
    width: 60%;
    margin-right: -10%;
  }
}
.type-effect-banner .read-more {
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1), box-shadow 0.2s cubic-bezier(0.45, 0, 0.55, 1), background 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.type-effect-banner .read-more span {
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.type-effect-banner .read-more:hover {
  background: var(--gradient-dark-blue) padding-box, var(--gradient-dark-blue) border-box;
}
.type-effect-banner .read-more:hover span {
  color: white;
}
