/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


.main-navigation a,
.nav-menu a {
    text-transform: capitalize !important;
	 font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;

}


@media (max-width: 480px){ 
	.page-title {
		font-size:25px;
		line-height:20px;
	}
	.page-subtitle {
		font-size:20px;
		line-height: 20px;
	}

}

.main-navigation .main-nav ul li[class*="current-menu-"] > a  {
    border-top: 5px solid #68B072;
}

.main-nav ul li a{
    border-top: 5px solid transparent; /* Initially transparent */
    transition: border-top 0.3s; /* Add smooth transition */
}

ul.benefits {
  list-style-type: none;
  padding-left: 0;
	margin:0;
}
.custom-list {
  list-style-type: none;
  padding-left: 0;
	margin:0;
}

ul.custom-list li {
	padding: 5px 5px;
	
	border-bottom: 1px solid #E0DEDE;
}

span.label-faq {
	font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #6cb177;
  font-size: 13px;
  line-height: 20px;
}

/* Hide the second line by default */
.hideable-text {
  display: none;
  transition: max-height 0.3s ease-out; /* Transition for smooth animation */
  max-height: 0; /* Start with a max-height of 0 */
  overflow: hidden; /* Hide overflowing content */
}
/* Style for the checkbox */
.hide-checkbox {
  display: none; /* Hide the checkbox */
}

/* Show the second line when checkbox is checked */
.hide-checkbox:checked ~ .hideable-text {
  display: block;
  max-height: 100px; /* Adjust the max-height to the desired value */
}

/* Style for the custom checkbox label */
.hide-checkbox + label {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
	background-color: black;
	color: white;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
}

/* Highlight label on hover */
.hide-checkbox + label:hover {
  background-color: #f0f0f0;
}

/* Style for the plus sign */
.hide-checkbox + label::after {
  content: '+';
  font-size: 15px; /* Reduce font size for better fit */
  line-height: 30px; /* Match line height with height for vertical centering */
  display: inline-block; /* Make sure it's inline-block for centering */
}

/* Use a thicker checkmark Unicode character as the bullet */
ul.benefits li:before {
  content: "\2714"; /* Unicode character for a heavy checkmark */
  font-weight: bold; /* Make the checkmark thicker */
  color: #6cb177; /* Set the color to green */
  margin-right: 5px; /* Add some space between the checkmark and the list item text */
}

/* On hover, change the border color */
.main-nav ul li a:hover {
    border-top-color: #6CB177; /* Green color */
} 

.infobox {
	height:150px;
}

.infocard {
   
	background-color: white;
	border: 1px solid #6CB177;
	padding:10px;
	border-radius: 3px;
}

li > a{
	font-family: 'PT Sans', sans-serif; /* Specify the font family */
    font-style: normal; /* Specify the font style */
    font-weight: 400; /* Specify the font weight */
    color: #68B073; /* Specify the font color */
    font-size: 16px; /* Specify the font size */
    line-height: 24px; /* Specify the line height */
	text-decoration: none;
	 display: block;
    width: 100%;
    border-bottom: 1px solid #EEEFF4;
    padding-bottom: 3px;
	transition: color 0.5s ease;
}

li > a:hover {
	color:lightgray
}

[class*="footer-widget"] h2,[class*="footer-widget"] h4 {
	font-family: 'Roboto', sans-serif; /* Specify the font family */
    font-style: normal; /* Specify the font style */
    font-weight: 300; /* Specify the font weight */
    color: #595959;
    font-size: 16px; /* Specify the font size */
    line-height: 24px; /* Specify the line height */
	text-transform: uppercase;
}

[class*="footer-widget"] .textwidget {
	font-family: 'PT Sans', sans-serif; /* Specify the font family */
    font-style: normal; /* Specify the font style */
    font-weight: 400; /* Specify the font weight */
    
    font-size: 16px; /* Specify the font size */
    line-height: 24px; /* Specify the 
}*/
}

aside ul li.menu-item a:before , div.footer-widgets li.menu-item a:before, a.wp-block-latest-posts__post-title:before{
    content: "> ";
    color: #a7aaad;
	 	font-weight:bold
}
.comment-form .form-submit .submit {
	background-color: #6cb177;
	height: 45px;
	width: 165px;
	border-radius: 3px;
	transition: background-color 0.5s ease;
}

.comment-form .form-submit .submit:hover {
	background-color: #999999;
}

textarea {
	background-color: white;
	border-color: #d2d2d2;
}

input[type="submit"], .wpsp-read-more a, .read-more-container  a{
	background-color: #6cb177;
	border: 0px;
    color: !important white; 
    border-radius: 3px;
	transition: background-color 0.6s ease;
}



input[type="submit"]:hover, .wpsp-read-more a:hover, .read-more-container  a:hover {
	border:0px;
	background-color: #999999;
}

.masonry-container article.post {
	border:2px solid #ebeaea;
	border-radius:10px;
}

/*.wp-show-posts-image img {
	transition: filter 0.3s ease;
}

.wp-show-posts-image img:hover {
	filter: brightness(120%) saturate(80%) hue-rotate(90deg);
}*/

.wpsp-image-center, .post-image {
  position: relative;
  display: inline-block;
}

.wpsp-image-center::after, .post-image::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6cb177; 
  opacity: 0;
  transition: opacity 0.3s ease; 
	pointer-events: none; 
}

.wpsp-image-center:hover::after, .post-image:hover::after {
  opacity: 0.5; 
}

