@charset "UTF-8";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}
  
header {
	padding: 5px;
}

img {
	width: 100dvw;
	max-width: 100dvw;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
	background-color: #dbecf1;
}
.site-footer {
    margin: 0;
	text-align: center;
    padding: 0.1rem;
   /* border-top: 1px solid #ddd; */
    color: white;
    font-size: 0.9rem;
    /*background: #f8f8f8;*/
	background-color: rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
}

.site-footer a {
    color: #8B4513;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
.footer-text {
	font-size: 13px;
	margin-top: 0.5px;
	margin-bottom: 0.5px;
}



body {
	margin-left: auto;
	margin-right: auto;
	background: #e6f4f8;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 192px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

.hero {
	min-height: 100vh;
	min-width: 100vw;  
	background-image: url("shadowjfix.jpg");
	background-size: cover;
	/*padding: 20px 20px 50px 20px;*/
	color: #FFFFFF;
	text-align: center;
	background-repeat:no-repeat;
}
/*tryint to fix for phone display*/
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
	min-width: 100vw;
  background-size: cover;
}
	/*
.hero-text {
  text-align: center;
  color: white;   
}  */
/* Transparent overlay using RGBA */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.1); /* Black with 50% transparency */
        z-index: 1;
    }

    /* Hero text */
    .hero-content {
        position: relative;
        z-index: 2; /* Above overlay */
    }
h1 {
	font-size: 57px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 1px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 1px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 1px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}

.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}

.info-box-tan {
	background-color: #b9a88e;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
}

.info-box-dark {
	background-color: #2D2D35;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
}


.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

/*Tablet View*/
@media (max-width: 780px) {
  .hero-image {
   /* background-image: none;*/
    height: auto;
    min-height: 780px;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media (min-width: 780px){
	
	body {
		max-width: 780px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
}

/*Desktop View*/

@media (min-width: 480px){
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: darkgreen;
  font-weight: bold;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 400px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
	font-weight: normal;
  
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -110px;

  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}