/**
 * ================================================================
 * TABLE OF CONTENTS - LOCAL SITE ADDITIONS
 * ================================================================
 *
 * 1. CUSTOM SITE TEXT STYLES
 * 1.1 Small Text
 * 1.2 Highlight Links
 *
 * ================================================================
 */


/** ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */



/* ===================== 1. CUSTOM SITE TEXT STYLES ===================== */


/* 1.1 Small Text */

/****** desktop ******/
.small-text div.et_pb_text_inner {
    font-size: 1rem !important;
}

/****** tablet ******/
@media only screen and (max-width: 980px) {
.small-text div.et_pb_text_inner {
    font-size: .95rem !important;
}
}

/****** mobile ******/
@media only screen and (max-width: 767px) {
.small-text div.et_pb_text_inner {
    font-size: .85rem !important;
}
}


/* 1.2 Highlight Links */

/****** Text Link - highlight color ******/
.highlight-link {
  color: #2f6fb2!important;
  font-weight: bold!important;
  text-decoration: underline!important;
  transition: color 0.2s ease!important;
}

.highlight-link:hover {
color: #022f6c!important; 
text-decoration: underline!important;
}

/****** Text Link - highlight white ******/
.highlight-link-white {
  color: #ffffff!important;
  font-weight: bold!important;
  text-decoration: underline!important;
  transition: color 0.2s ease!important;
}

.highlight-link-white:hover {
color: #022f6c!important; 
text-decoration: underline!important;
}

@media only screen and (max-width: 980px) {
  .et_pb_text a.highlight-link,
  .et_pb_text a.highlight-link:visited,
  .et_pb_text a.highlight-link:focus,
  .et_pb_text a.highlight-link:active {
    color: #2f6fb2 !important;
    text-decoration: underline !important;
  }

  .et_pb_text a.highlight-link:hover {
    color: #022f6c !important;
    text-decoration: underline !important;
  }
}