/*
Theme Name: Custom Theme Core GP
Author: Fahad
Description: Based on GeneratePress
Version: 1.0
Template: generatepress

This is the child theme for GeneratePress theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/


.site-content {
    display: block;
}

/*a:hover, a:active, a:focus { color: white; }*/

.LinksUnderlineEffect1 {
  display: inline-block;
  position: relative;
}

.LinksUnderlineEffect1::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #106c00;
  transition: transform 0.25s ease-out;
}

.LinksUnderlineEffect1:hover::after {
  transform: scaleX(1);
}


.LinksUnderlineEffect1::after {
  transform-origin: bottom center;
}

.LinksUnderlineEffect1:hover::after {
  transform-origin: bottom center;
}