@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");
#feature {
  background: url("../images/feature/feature-johanna-jacques-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-family: "Oxanium", sans-serif;
  height: 290px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (min-width: 526px) {
  #feature {
    height: 299px;
  }
}

.feature_wrapper {
  float: left;
  height: 100%;
  width: 100%;
  position: relative;
}

.feature_text h1 {
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.03rem;
  line-height: 1.4;
  margin: 0;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
  font-family: "Oxanium", sans-serif;
}

.feature_wrapper img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.learn_more_wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0 0 2rem;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.25s;
  font-family: "Oxanium", sans-serif;
  background: #F0FC69;
}
.learn_more_wrap a {
  color: #124C51;
  text-decoration: none;
}
.learn_more_wrap:hover {
  background-color: #2a9d8f;
  color: #eeff59;
  cursor: pointer;
}
.learn_more_wrap:hover a {
  color: #eeff59;
}

.learn_more_wrap .fake-border {
  background: #eeff59;
  position: absolute;
  transition: 0.15s all ease;
}

.learn_more_wrap .left, .learn_more_wrap .right {
  width: 2px;
  height: 100%;
}

.learn_more_wrap .top, .learn_more_wrap .bottom {
  height: 2px;
  width: 100%;
}

.learn_more_wrap .left {
  top: 100%;
  left: 0%;
  transition-delay: 0ms;
}

.learn_more_wrap .right {
  top: -100%;
  right: 0%;
  transition-delay: 300ms;
}

.learn_more_wrap:hover .left, .learn_more_wrap:hover .right {
  top: 0%;
}

.learn_more_wrap .top {
  left: -100%;
  top: 0;
  transition-delay: 150ms;
}

.learn_more_wrap .bottom {
  bottom: 0%;
  left: 100%;
  transition-delay: 450ms;
}

.learn_more_wrap:hover .top, .learn_more_wrap:hover .bottom {
  left: 0%;
}