/* ============================================================
   FILE: _home.scss
   Variables and @extend resolved to plain CSS
   ============================================================ */

/* Home slider -- .et_pb_button @extend .rf-button--primary */
#rf-body .rf-home--slider .et_pb_button {
  color: #fff;
  background: #274156;
  background: linear-gradient(90deg, rgba(39, 65, 86, 1) 0%, #6b879c 100%);
  transition: 0.25s all ease-in-out;
}
#rf-body .rf-home--slider .et_pb_button:hover {
  background-color: #6b879c !important;
  color: #fff !important;
  opacity: 80%;
  transform: translateY(-0.25rem);
}
#rf-body .rf-home--slider .et_pb_container {
  max-width: 1400px;
}

/* Help blurb */
#rf-body .help-blurb {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#rf-body .help-blurb h4 {
  display: inline-block;
  position: relative;
}
#rf-body .help-blurb h4::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #274156;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
#rf-body .help-blurb h4:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Menu button -- @extend .rf-button--secondary */
#rf-body .df-menu-button {
  color: #fff;
  background-color: #6b879c;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
}
#rf-body .df-menu-button:hover {
  background-color: transparent !important;
  color: #6b879c !important;
  opacity: 80%;
  box-shadow: 0 0 0 0.125rem inset #6b879c;
}

/* Contact blurb */
#rf-body .rf-contact--blurb {
  display: flex;
  justify-content: start;
  background-color: #ffffff !important;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
#rf-body .rf-contact--blurb .et_pb_blurb_content {
  margin: 0 !important;
}

/* CTA secondary -- .et_pb_button @extend .rf-button--inverse-outline */
#rf-body .rf-cta--secondary .et_pb_button {
  color: #fff !important;
  background-color: transparent;
  height: fit-content;
  box-shadow: 0 0 0 0.125rem inset #fff;
}
#rf-body .rf-cta--secondary .et_pb_button:hover {
  background-color: #fff !important;
  color: #ffffff !important;
  opacity: 80%;
}

/* Service page blurb */
#rf-body .service-page-blurb {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  justify-content: space-between;
}
#rf-body .service-page-blurb .df_ab_blurb_title { color: #6b879c; }
#rf-body .service-page-blurb li::marker { color: #6b879c; }
#rf-body .service-page-blurb .et_pb_module_inner { height: 100%; }
#rf-body .service-page-blurb .df_ab_blurb_container { height: 100%; }
#rf-body .service-page-blurb .df_ab_blurb_content_container {
  height: 100%;
  justify-content: space-between;
}

/* Service blurb button -- @extend .rf-button--primary */
#rf-body .service-page-blurb .df_ab_blurb_button {
  margin-top: 2rem;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  width: 100%;
  justify-content: center;
  color: #fff;
  background: #274156;
  background: linear-gradient(90deg, rgba(39, 65, 86, 1) 0%, #6b879c 100%);
  transition: 0.25s all ease-in-out;
}
#rf-body .service-page-blurb .df_ab_blurb_button:hover {
  background-color: #6b879c !important;
  color: #fff !important;
  opacity: 80%;
  transform: translateY(-0.25rem);
}

/* Blurb icon */
#rf-body .service-page-blurb .df-blurb-icon {
  padding: 1rem;
  border-radius: 100%;
  background: linear-gradient(rgba(39, 65, 86, 1) 0%, #6b879c 100%);
  margin-bottom: 2rem;
  transition: 0.25s all ease-in-out;
}
#rf-body .service-page-blurb .df-blurb-icon:hover {
  transform: scale(1.1);
}