/*
Theme Name: CATS Custom Theme
Author: Paul Butera
Description: CATS Custom Styling
Version: 1.0
Tags: CATS
*/

@import url('bootstrap/css/bootstrap.min.css');

@import url('https://fonts.googleapis.com/css?family=Lato|Lato:bold');
/* Added Lato:bold becasue faux-bold Lato looked bad 11/5/18 PH

/*CARD STYLE TAKEN FROM BOOTSTRAP 4*/
.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
/*  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;*/
}

.card-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f7f7f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f7f7f9;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-primary {
  background-color: #0275d8;
  border-color: #0275d8;
}

.card-primary .card-header,
.card-primary .card-footer {
  background-color: transparent;
}

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.card-success .card-header,
.card-success .card-footer {
  background-color: transparent;
}

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.card-info .card-header,
.card-info .card-footer {
  background-color: transparent;
}

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.card-warning .card-header,
.card-warning .card-footer {
  background-color: transparent;
}

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f;
}

.card-danger .card-header,
.card-danger .card-footer {
  background-color: transparent;
}

.card-outline-primary {
  background-color: transparent;
  border-color: #0275d8;
}

.card-outline-secondary {
  background-color: transparent;
  border-color: #ccc;
}

.card-outline-info {
  background-color: transparent;
  border-color: #5bc0de;
}

.card-outline-success {
  background-color: transparent;
  border-color: #5cb85c;
}

.card-outline-warning {
  background-color: transparent;
  border-color: #f0ad4e;
}

.card-outline-danger {
  background-color: transparent;
  border-color: #d9534f;
}

.card-inverse {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-header,
.card-inverse .card-footer {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
  color: #fff;
}

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-subtitle,
.card-inverse .card-blockquote .blockquote-footer {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
  color: #fff;
}

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0;
}

.card-img {
  border-radius: calc(0.25rem - 1px);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img-top {
  border-top-right-radius: calc(0.25rem - 1px);
  border-top-left-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}




.col-half-offset{
    margin-left:4.166666667%
}







/*Custom style*/


h1
{
	margin-top: 30px;
	margin-bottom: 30px;
	color: #353535;
	font-family: 'Lato', sans-serif;
	line-height: 1.6;
}

h2
{
	font-family: 'Lato', sans-serif;
	margin-top: 40px;
	margin-bottom: 40px;
}

h3
{
	font-family: 'Lato', sans-serif;
}

p, footer
{
	font-family: 'Lato', sans-serif;
	word-wrap: break-word;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: 300;
	padding-left: 0;
}

.page-id-948 p, footer, .page-id-249 p, footer, .page-id-1196 p, footer .page-id-951 p, footer
{
	margin-top: 15px;
}

span
{
	font-family: 'Lato', sans-serif;
	word-wrap: break-word;
	font-size: 16px;
	font-weight: 300;
	padding-left: 0;
}

a
{
	color: #6e6e6e;
	text-decoration: none;
}

li
{
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
}

html, body 
{
    overflow-x: hidden;
}

hr
{
	height: 2px;
    background-color:#eee;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.navbar
{
	min-height: 0px !important;
}

.navbar-collapse.collapse
{
	padding: 0 !important;
}

.navbar-default
{
	background-color: white;
	border-color: white;
	margin-bottom: 0px;
}

#menu-header-navigation
{
	padding-left: 0;
	margin-bottom: 0;
}

.menu-header-navigation-container ul
{
	width: 100%;
	padding-left: 0;
}

.menu-header-navigation-container ul li
{
	display: inline-block;
	padding-right: 37px;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	color: #6e6e6e;
	margin-bottom: 5px;
}

.menu-header-navigation-container ul li a 
{
	padding-bottom: 10px;
}
.menu-header-navigation-container ul li a:hover 
{
	text-decoration: none !important;
	color: #01bbd4 !important;
}

.menu-header-navigation-container ul li a:active 
{
	text-decoration: none !important;
	color: #01bbd4 !important;
}

.menu-header-navigation-container ul li a:visited 
{
	text-decoration: none !important;
}

.menu-header-navigation-container ul li a:link 
{
	text-decoration: none !important;
}

.menu-header-navigation-container ul li:last-child
{
	padding-right: 0px;
}

.mobile-menu
{
	text-align: right;
	display: none;
}

.mobile-menu i
{
	font-size: 3em;
	line-height: 2em;
	display: inline;
	vertical-align: middle;
	cursor: pointer;
}

#main-content
{
	position: relative;
	left: 0;
}

.slide-menu
{
	position: absolute;
	left: -310px;
	background-image: linear-gradient(to bottom, rgba(1,187,212,.85) 0%,rgba(1,187,212,.85) 100%), url("/wp-content/themes/cats_custom_theme/images/shards_pattern.jpg");
	width: 300px;
	float: left;
	height: 100vh;
	z-index: 10000;
	position: fixed;
	-webkit-box-shadow: 3px 0px 8px 0px rgba(56,56,56,1);
	-moz-box-shadow: 3px 0px 8px 0px rgba(56,56,56,1);
	box-shadow: 3px 0px 8px 0px rgba(56,56,56,1);

	padding-top: 10px;
}


.slide-menu ul li
{
	display: block;
	padding: 0;
	margin: 0;
}

.slide-menu ul li a
{
	display: block;
	color: white;
	padding-left: 15px;
}

.slide-menu .current-menu-item a
{
	border-bottom-style: solid;
	border-bottom-width: 4px ;
	border-bottom-color: white;
	color: white;
}

.slide-menu .menu-header-navigation-container ul li a:hover 
{
	text-decoration: none !important;
	color: white !important;

}

.current-menu-item a
{
	border-bottom-style: solid;
	border-bottom-width: 8px ;
	border-bottom-color: #95c343;
	color: #01bbd4;
}
.current-menu-item a:hover
{
	text-decoration: none;
}

.front-hero
{
	background-color: #01bbd4;
	background-image: linear-gradient(to bottom, rgba(1,187,212,.85) 0%,rgba(1,187,212,.85) 100%), url("/wp-content/themes/cats_custom_theme/images/shards_pattern.jpg");

}

.home-more-info h2
{
	margin-top: 0;
}

.nav-shadow
{
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
	z-index: 100;
	position: relative;
}

.front-hero h1
{
	padding-top: 110px;
	color: white;
}

.hero-heading
{
	padding-left: 0;
}

.hero-image
{
	max-height: 400px;
}

.hero-right-col
{
	padding: 0px;
}

.contact-banner
{
	background-color: #95c343;
	background-image: linear-gradient(to bottom, rgba(149,195,67,.85) 0%,rgba(149,195,67,.85) 100%), url("/wp-content/themes/cats_custom_theme/images/shards_pattern.jpg");
	min-height: 80px; 
	margin-bottom: 50px;
}

.contact-banner h2
{
	text-align: center;
	color: white;
	margin: 0;
	margin-bottom: auto;
	padding-top: 23px;
	padding-bottom: 10px;
	display: inline-block;
}

.contact-banner img
{
	display: inline-block;
	height: 60px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding-right: 20px;
}

a.social:hover, a.social:focus
{
	text-decoration:none !important;
}


.contact-banner a:last-child img
{
	padding-right: 0;
	margin-right: 0;
}

.contact-banner .col-xs-12
{
	text-align: center;
}

.about-hero
{
	background-image: linear-gradient(to bottom, rgba(1,187,212,.85) 0%,rgba(1,187,212,.85) 100%), url("/wp-content/themes/cats_custom_theme/images/shards_pattern.jpg");
	margin-bottom: 40px;
}

.about-hero .col-md-6
{
	padding-left: 0;
}

.about-hero img
{
	padding-top: 40px;
}

.about-hero p 
{
	padding-top: 40px;
}

.about-hero a, .about-hero a:hover
{
	color: white;
} /* added 11/5/18 PH */

.about-image
{
	margin-bottom: 40px;
}

.about-hero h2
{
	margin-top: 30px;
	margin-bottom: 30px;
	color: white;
	font-size: 26px;
}

.about-hero p
{
	color: white;
	font-size: 16px;
}

.wave-pic-placeholder
{
	background-color: #95c343;
}

.waves
{
	margin-top: 40px;
}

.waves h2, .faqs h2
{
	color: #01bbd4;
	margin-top: 40px;
	margin-bottom: 40px;
}

.newsletters ul
{
	padding-left: 20px;
}

.faq
{
	margin-bottom: 10px;
}

.faqs
{
	margin-bottom: 50px;
}

.faq-header
{
	cursor: pointer;
	color: white;
	font-size: 22px;
	font-family: 'Lato', sans-serif;
	background-color: #01bbd4;
	padding: 8px;
	padding-left: 12px;
	font-weight: 200;
}

.waves .faq
{
	margin-bottom: 0;
}

.waves .faq-header
{
	background-color: #95C343
}

.waves .faq-answer
{
	border-color: #95C343
}

.waves h2
{
	color : #95c343;
}

.faq-header i
{
	float: right;
	font-size: 1.8em;
	line-height: .9em;
	display: inline;
	vertical-align: middle;
	cursor: pointer;
}

.faq-answer
{
	border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #01bbd4;
}

.faq-answer p
{
	padding: 8px;
	padding-left: 12px;
	margin-bottom: 0px;
}

.partners
{

}

#wave-section-2, #wave-section-3, #wave-section-4, #wave-section-5
{
	display: none;
} 

.team-member
{
	text-align: center;
	margin-bottom: 30px;
	min-height: 315px; 
}

.team-member img
{
	/*border: 3px solid #01bbd4;*/
	height: 150px;
	width: 150px;
	margin-left: auto;
	margin-right: auto;
}
.funding-body img
{
	height: auto !important;
	max-height: 150px !important;
	margin: auto;
}

.funding-body
{
	height: 150px;
	min-height: auto;
}

.team-member li
{
	color: black;
	list-style-type: none;
}

.team-member-name 
{
	color: #95c343 !important;
	display: block;
	padding-top: 10px;
}

.team-member ul 
{
	padding-left: 0;
}

#map
{
	min-height: 400px; 
}

.contact-hero
{
	margin-bottom: 0;
}

.contact-hero p 
{
	padding-top: 0;
}

.contact-hero .col-md-12 p
{
	padding-top: 40px;
}

.contact-info-larger
{
	font-size: 25px !important;
}

.contact-info-larger a
{
	color: white;
}

.contact-info-larger a:hover
{
	color: black;
}

.resource h2
{
	text-align: center;
}

.resource p
{
	text-align: center;
	padding-top: 20px;
}

.card
{
	/*border: 2px solid #01bbd4;*/
	cursor: pointer;
	height: 370px;
	margin-bottom: 40px;
}

.card h3
{
	font-size: 22px;
	margin-bottom: 12px;
}

.card img
{
	width: 100%;
	height: auto;
}

.card-img-wrapper
{
	height: 150px;
	overflow: hidden;
}

.news-item .card-text
{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* number of lines to show */
}

.btn-primary
{
	background: #01bbd4;
	border: 1px solid #01bbd4;
	text-align: center;
}

.news-item .btn
{
	position: absolute;
	bottom: 15px;
	width: 93%;
	display: block;
}

.panel-group
{
	border-radius: 0 !important;
}

.panel-heading
{
	color: white !important;
	background-color: #01bbd4 !important;
	border-color: #01bbd4 !important;
	border-radius: 0 !important;
}

.blogs h3 a
{
	color: #01bbd4;
}

.blogs p
{
	margin-bottom: 20px;
}

.blogs a 
{
	font-family: 'Lato', sans-serif;
	color: #01bbd4;
}

.single-blog-post h1 a
{
	color: #01bbd4 !important;
}

.blog-post-cats
{
	padding-bottom: 20px;
	border-bottom: medium solid #95c343;
}

.nav-posts
{
	padding-top: 15px;
	padding-bottom: 15px;
	
}

.nav-posts a
{
	font-family: 'Lato', sans-serif;
	color: #01bbd4;
}

.blogtags
{
	margin-top: 40px;
}


.card-1 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card-1:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.panel-body a, .resource a, .team-member a, .post_tags a, .previous a, .next-post a
{
	color: #337ab7;
	text-decoration: underline;
}

.entrybody p 
{
	display: inline-block;
}

.post_tags p 
{
	margin-bottom: 5px;
}

.footer-nav ul li 
{
	display: block;
	font-size: 16px;
}

.footer-nav ul li a, .footer-nav ul li a:hover, .footer-nav ul li a:active
{
	border: 0 !important;
}


/*Nav*/
@media (max-width:1200px)
{
	h1
	{
		padding-top: 0;
		text-align: center;
	}

	.front-hero
	{
		background: 0;
		background-color: #01bbd4;
		background-image: linear-gradient(to bottom, rgba(1,187,212,.85) 0%,rgba(1,187,212,.85) 100%), url("/wp-content/themes/cats_custom_theme/images/shards_pattern.jpg");

	}

	.front-hero h1
	{
		padding-top: 0px;
	}

	.navbar
	{
		display: none;
	}

	.mobile-menu
	{
		display: inline-block;
	}

	.home-more-info h2
	{
		margin-top: 40px;
	}
}

@media (max-width:1007px)
{
	.front-hero img
	{
		margin-left: 55px;
	}

}

@media (max-width:780px)
{
	.front-hero img
	{
		margin-left: auto;
		margin-right: auto;
	}
	.team-member
	{
		min-height: 0;
	}
	
}






















/*RANGE SLIDER*/
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 9px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background: rgba(149, 195, 67, 0.91);
  border-radius: 1.3px;
  border: 0px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0), 0px 0px 0.9px rgba(13, 13, 13, 0);
  border: 0px solid #95c343;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #95c343;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(160, 201, 86, 0.91);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
  background: rgba(149, 195, 67, 0.91);
  border-radius: 1.3px;
  border: 0px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0), 0px 0px 0.9px rgba(13, 13, 13, 0);
  border: 0px solid #95c343;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #95c343;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: rgba(135, 179, 57, 0.91);
  border: 0px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-fill-upper {
  background: rgba(149, 195, 67, 0.91);
  border: 0px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0px 0px 1px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0), 0px 0px 0.9px rgba(13, 13, 13, 0);
  border: 0px solid #95c343;
  height: 26px;
  width: 26px;
  border-radius: 15px;
  background: #95c343;
  cursor: pointer;
  height: 8px;
}
input[type=range]:focus::-ms-fill-lower {
  background: rgba(149, 195, 67, 0.91);
}
input[type=range]:focus::-ms-fill-upper {
  background: rgba(160, 201, 86, 0.91);
}
