/**
 * Theme Name:     Neatt WP Theme
 * Author:         S17 Design
 * Template:       enfold
 * Text Domain:	   neatt-wp-theme
 * Description:    WP Theme for Neatt using Enfold
 */


/** Typography **/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 300 !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600 !important;
}

.italichighlight {
	font-family: playfair display !important;
	font-style: italic !important;
	font-weight: bold !important;
	color: #85D7CB !important;
}
.introtext {
	font-size: 1.3em !important;
}
.serviceslist {
	color: #777777 !important;
	text-transform: uppercase !important;
}


/* Removes the gap above the Client Logo grid */
.avia-smallarrow-slider-heading {
	display: none !important;
	visibility: hidden !important;
}





/* Animated Nav Underline */
.menu-item {
	display: inline-block;
	position: relative;
	color: #41ADA4;
}

.menu-item:active {
	color: #41ADA4 !important;
}

.menu-item:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #41ADA4;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.menu-item:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
	color: #41ADA4 !important;
}


/* No date on Blog Page Masonry Grid */
span.av-masonry-date {
	display: none!important;
}











/* CSS for Disappearing Header on Scroll */

@media only screen and (min-width: 768px) {
 
 #header {
 	-webkit-transform:  translateY(0px);
		transform:  translateY(0px);
	-webkit-transition: transform 1s ease;
		transition: transform 1s ease;
  }

  #header.hide {
	  /* a little bit more than the header height */
	-webkit-transform:  translateY(-105px);  
		transform:  translateY(-105px);
	-webkit-transition: transform 1s ease;
  		transition: transform 1s ease;
}
}