/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* GLOBAL LINK STYLE */
a {
  color: #007BFF;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #0056b3;
  transition: width 0.3s ease;
}

a:hover {
  color: #0056b3;
}

a:hover::after {
  width: 100%;
}

a:visited {
  color: #007BFF;
}