/* GENERATIVE CSS STYLES */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');

/*
* { 
  outline: 1px solid red;
  outline-offset: -1px;
}
*/

body, header { 
	background-color: #FFF;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	top: -1px;
	width: 100%;
	height: 100%; 
}

.stickyHeader.is-pinned {
	
	padding-top:5px;
	background-color: #FFF;
	
	.primary-logo {
		max-width: 150px;
		height: 50px;
	}
	
	.menu a {
	font-size: 15px;
	}
	
}

header { border-bottom: 1px solid #000;}

h1 {
	color: #000;
	font-size: 36px;
	font-weight: 300;

	padding: 10px 20px;
}

h2 {
	color: #000;
	font-size: 32px;
	font-weight: 300;
	padding: 10px 20px;	}

h3 {
	color: #000;
	font-weight: 400;
	font-size: 28px;
	padding: 10px 20px;
	}
h4 {
	font-weight: 300;
	color: #000;
	font-size: 24px;
	padding: 10px 20px;
}
h5 {color: #000;
	font-size: 18px;
	font-weight: 400;
	padding: 10px 20px;}

p {color: #000;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	padding: 10px 20px;}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.stickyHeader {
	position:sticky;
	top: -1px;
	z-index: 200;
}

.menu ul, #menu ul {
  list-style: none; 
  text-align: center;

}

.menu li {
  display: inline; 
}


#mobile-menu-modal ul  { 
	padding-top:100px;
}

#menu li {
	display: block;
	width: auto;
	padding-right: 40px;
	padding-bottom: 20px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
    }

.menu a, #menu a  {
	font-weight: 400;
	font-size: 24px;
	text-align: center;
	padding:5px 10px;
	text-decoration: none;
	transition:
	font-size 2s;
}

.menu a {	
	color: #000;
}

#menu a	{	
	color: #fff;
}

.menu a:hover {
	color: #57c7de;
}


#navHamburger {
	display: none;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 300;
	width: 35px;
	height: 35px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#navHamburger span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: rgb(0, 0, 0);
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#navHamburger.open span {
	background: rgb(198, 198, 198) !important;

}

#navHamburger span:nth-child(1) {
  top: 0px;
}

#navHamburger span:nth-child(2),
#navHamburger span:nth-child(3) {
  top: 12px;
}

#navHamburger span:nth-child(4) {
  top: 24px;
}

#navHamburger.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#navHamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#navHamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#navHamburger.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.spacerBlock {
	padding-top: 10px;
	width: 100%;
	border-bottom: 1px solid #112;
	margin-bottom: 10px;
}

.uniPad {
	padding: 10px 20px;}

  

.footer{
	padding:20px;
	background-color: #ccc;
}

.footer p { 
	color: #000;
}



.cssanimation, .cssanimation span {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.cssanimation span { display: inline-block }

.fadeInBottom { animation-name: fadeInBottom }

@keyframes fadeInBottom {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to { opacity: 1 }
}

.slider-container {
  width: 100%;
  margin: 0 auto;
}

.slide-item {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70vh;
  
}

.slide-item-page {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 30vh;
  
}

.slide-testimonial {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 250px;
  
}

.slide-text {
	position: absolute;
	z-index: 4;
	padding-bottom:45px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center; 
	font-size: 45px;
	font-weight: 300;
	color:#fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.398);
}

.testimonial-text {
	
	padding-bottom:20px;
	text-align: center;
	font-size: 22px;
	line-height: 32px;
}

.testimonials > div > div {
	 border: 1px solid #112;
	 margin: 10px;
}

.slide-text .smallText { font-size: 14px; }

.slick-dots li button:before
{
	font-size: 15px;
}

.rImg{
	max-width:100%;
	height:auto;
}

.cssanimation, .cssanimation span {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.cssanimation span { display: inline-block }

.fadeInBottom { animation-name: fadeInBottom }

@keyframes fadeInBottom {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to { opacity: 1 }
}


.primary-logo {
	margin: 10px auto;
	background-image:url(/_images/logos/tt-k.png);
	background-size: contain;
	width: 80%;
	height: 150px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	transition:
	width 2s,
	height 2s;
}

.mobile-logo {
	background-image:url(/_images/logos/tt-white.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	width: 125px;
	height: 125px;
}

.twoCol, .threeCol,.twoColHard, .threeColHard {
	display:flex;
	flex-wrap:wrap;
}

.twoCol > div, .twoColHard > div {
		width:50%;
}


.threeCol > div, .threeColHard > div{
		width:calc(100%/3);
}

.social { 
	float: left; 
	display: block;
	margin-right: 5px;
}

.highlightBlock {
	background-color: #fff;
	border-top: 1px solid #112;
	border-bottom: 1px solid #112;
}

.callOut { font-weight: 700; color: #57c7de; }

.strong { font-weight: 700; }

.modal {
  display: none; 
  position: fixed; 
  z-index: 200; 
  padding-top: 30px; 
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8); 
  }
  
#mobile-menu-modal{ 
	background-color: ;
	background-image: url('/_images/teresa-and-the-foundation-000.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
}
	
#quoteModal{ background-color: rgba(255, 255, 255, 0.0);}
  
.primary-logo-dark {
	  background-image:url(/_images/logos/tt-k.png) !important;
	  position: relative;
	  z-index: 250;
  }

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;;
}

.modal-content input, .modal-content textarea {
	width: 100%;
	max-width: 350px;
	font-size: 1.1em;
	float: left;
	clear: left;
	margin-bottom: 5px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


.quoteButton, .quoteSubmit{
padding: 10px 20px;  background: #63bd56;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #FFF;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.quoteButton:hover, .quoteSubmit:hover {
  background: #8c8c8c;
  text-decoration: none;
}

.gButton{
padding: 10px 20px;  background: #666;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #FFF;;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  display: inline-block;
  width: auto !important;
}

.quoteButton:hover, .gButton:hover {
  background: #888;
  text-decoration: none;
}
	
.galleryImagesFour a {
	width: calc(100% / 4);
	float: left;
}

.galleryImagesThree a {
	width: calc(100% / 3);
	float: left;
}

.galleryImagesTwo a {
	width: calc(100% / 2);
	float: left;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  float:left;
}
	
.clear {
	clear:both;
}

.onlyMobile, .mobile-menu-display { display: none;}




/* Media Query for Dark Theme */
@media (prefers-color-scheme: dark) { 
	
	body { 
		background-color: #112;
		color: #FFF;
	}
	
	#navHamburger span {
	  background: rgb(255, 255, 255);
  	}
	
	#menuToggle span
	{
	  background: #cacaca !important;
	  }
	  
	h1 {color: #FFF;}
	h2 {color: #FFF;}
	h3 {color: #FFF;}
	h4 {color: #FFF;}
	h5 {color: #FFF;}
	p {color: #FFF;}
	
	.stickyHeader, .stickyHeader.is-pinned {
		background-color: #112;
	}
	
	#mobile-menu-modal{ background-color: #112;}
		
	#quoteModal{ background-color: rgba(255, 255, 255, 0.0);}
	
	.menu a, .mobile-menu-modal a {
		color: #fff;
	}
	
	.menu a:hover {
		color: #57c7de;
	}
	
	.footer {
		margin-top:20px;
		background-color: #112;
		color: #FFF;
	}
	
	.footer p { 
		color: #FFF;
	}
	
	.primary-logo {
		background-image:url(/_images/logos/tt-white.png);
	}
	
	.modal-content {
	  background-color: #112;
	}
	
	
	.close {
	  color: #dddddd;
	}
	
	.close:hover,
	.close:focus {
	  color: #555;
	}
	
	.highlightBlock {
		background-color: #112;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	
	.testimonial-text {
		color:#fff;
	}
	
	.spacerBlock {
		padding-top:10px;
		border-bottom: 1px solid #FFF;
		margin-bottom: 10px;
	}
	
	.testimonials > div > div {
		 border: 1px solid #FFF;
	}
	
	.quoteButton{
	padding: 10px 20px;	  background: #63bd56;
	  -webkit-border-radius: 28;
	  -moz-border-radius: 28;
	  border-radius: 28px;
	  font-family: Arial;
	  color: #FFF;
	  font-size: 14px;
	  padding: 10px 20px 10px 20px;
	  text-decoration: none;
	  display: inline-block;
	  width: auto !important;
	}
	
	.gButton{
	padding: 10px 20px;	  background: #666;
	  -webkit-border-radius: 28;
	  -moz-border-radius: 28;
	  border-radius: 28px;
	  font-family: Arial;
	  color: #FFF;;
	  font-size: 14px;
	  padding: 10px 20px 10px 20px;
	  text-decoration: none;
	  display: inline-block;
	  width: auto !important;
	}
	
	.quoteButton:hover, .gButton:hover {
	  background: #888;
	  text-decoration: none;
	}

}


  

/* Media Query for Hamburger Menu */
@media screen and (max-width: 650px) {
  
  
  
  #navHamburger, .mobile-menu-display {
	display: block;
  }
  
  .primary-logo-dark {
		background-image:url(/_images/logos/tt-white.png) !important;
		position: relative;
		z-index: 250;
	}
  
  p.quoteDesc { font-size: 12px !important; line-height: 14px; }
  
  .modal-content h3 { font-size: 22px; line-height: 26px;}
  
  .menu {  
  	display: none;
  }
  
  /* columns */
  .twoCol > div, .threeCol > div {
	  width:100%;
  }
  
  .onlyMobile { display: inline-block;}
  
  .galleryImagesFour a {
	  width: calc(100% / 2);
	  float: left;
  }
  
  

}