@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Comforter+Brush&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*, *::before, *::after {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 140px;
}

.container-fluid {
	padding: 0;
	margin: auto;
}

/* BODY */

body {
    font-family: 'Public Sans', sans-serif;
	color: #333;
	line-height: 1.6;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*
li {
	list-style: none;
}
*/

a {
    text-decoration: none;
    color: #003E52;
	font-weight: 600;
	font-size: 1.25rem;
}

a:hover {
    text-decoration: underline;
    color: #017E89;
}

/* NAVIGATION */

#header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    height: 110px;
    z-index: 3;
    -webkit-box-shadow: -2px 3px 6px 2px #9E9E9E;
    box-shadow: -2px 3px 6px 2px #9E9E9E;
}

.navbar {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0 24px;
}

.nav-menu	{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wabutton {
	background-color: #4AA225;
	color: #FFFFFF;
	border: none;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1em;
	padding-right: 1.25em;
	border-radius: 0.25em;
	display: block;	
	text-align: center;
	text-decoration: none;
}

.wabutton:hover {
	background-color: #eef6f9;
	color: #004050;
	text-decoration: none;
	padding-top: 0.45em;
	padding-bottom: 0.45em;
	padding-left: 0.945em;
	padding-right: 1.2em;
	border: 0.063em solid #004050;
}

/*
.nav-branding {
	display:block;
	margin: 0;
}
*/

/*
.nav-link {
	transition: 0.2s ease;
}
*/

.hamburger {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 32px;
	height: 4px;
	margin: 8px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #017E89;
}	

ul li {
    display: inline-block; 
	padding-top: 1.5em;
	padding-right: 0.0625em;
	padding-left: 0.0625em;
}

ul.menu {
	padding-top: 1em;
}

li .call {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
	font-size: 1.25rem;
	color: #017E89;
}

li.call:hover {
    text-decoration: none;
}

li.underline-hover-effect {
	display: inline-block;
	padding-bottom: 0.25em;
	position: relative;
}

li.underline-hover-effect::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background-color: #019AA7;
	transform: scaleX(0);
	transition: transform 400ms ease-in;
}

li.underline-hover-effect:hover::after {
	transform: scaleX(0.6);
}


/* GLOBAL */


h1{
	font-family: "Poppins", sans-serif;
	font-weight: 600;
    text-align: left;
	font-size: 2.625em;
}

.row-h1 {
	padding-left: 2em;
	padding-top: 1em;
	max-width: 40em;
	}

h2 {
	font-family: "Poppins", sans-serif;
    font-weight: 600;
	font-size: 2em;
	padding-top: 0.75rem;
    padding-bottom: 1rem;
    text-align: left;
    color: #003E52;
}

.white {
    color: #FFFFFF;

}


h3 {
	font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding-top: 0.75em;
    padding-bottom: 0.25em;
    text-align: left;
    color: #019AA7;
    letter-spacing: 0.125em;
}

h4 {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 1em;
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
    text-align: left;
    color: #019AA7;
}

h5 {
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    padding-bottom: 0.25rem;
	line-height: 1.25em;
    text-align: left;
    color: #003E52;
}

.eyebrow {
	background-color: #019AA7;
	height: 8px;
	margin-right: 85%;
}

.eyebrow-light {
	background-color: #DAEAEA;
	height: 8px;
	margin-right: 85%;
}
	
p {
	font-family: "Public Sans", sans-serif;
}

.p-bold {
	font-weight: 700;
}

.p-body {
    color: #333333;
    font-size: 1.25rem;
}

.small-text {
	font-size: 1rem;
}

.larger-white {
    color: #FFFFFF;
    font-size: 1.25em;
    font-weight: 300;
}

.link-font {
	font-family: "Public Sans", sans-serif;
	font-size: 1.5rem;
	
}

.left {
	text-align: left;
}


/* HERO */

.jumbotron {
    background-image: url(../images/hero-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	color: #FFFFFF;
    text-shadow: 2px 2px 2px #192F36;
    height: 20.5rem;
	margin-top: 12em;
}

.img-fluid {
    border-radius: 10px 10px 10px 10px ;
}

.rounded {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}


/* CARD STYLES*/

.card-textstyle {
    font-size: 1.125rem;
}

.row-cards {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
 	margin-top: -1.6rem;
	padding-bottom: 2em;
}

.p-cards {
   	font-family: "Public Sans", sans-serif;
   	font-size: 1.125rem;
   	font-weight: 400;
	padding-bottom: 1rem;
	color: #004050;
}

.col-xl-4 {
    text-align: center;	
}

/* BRANDS*/

.container-fluid .brands {
	display:flex;
	background-color: #E7EFF2;
	width: 80%;

	
}

.snuggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem;
}

/* LOCATION*/

.location {
    margin-top: 6em;
	margin-bottom: 4em;
}

.rounded-border {
    border-radius: 10px;
    border: 3px solid #B7E9A2;
	padding: 10px;
}

.locatorbutton {
	background-color: #4AA225;
	color: #FFFFFF;
	width: 60%;
	border: none;
	padding: 1em;
	border-radius: 0.25em;
	display: block;	
	text-align: center;
	text-decoration: none;
}

.locatorbutton:hover {
	background-color: #eef6f9;
	color: #004050;
	text-decoration: underline;
	padding-top: 0.95em;
	padding-bottom:0.95em;
	padding-left: 0.945em;
	padding-right: 1.2em;
	border: 0.063em solid #004050;
}

/* REPORTS */

.reports {
    margin-top: 10em;
	margin-bottom: 2em;
}

/* CITAS */

	

.citas {
	margin-bottom: 2em;
	/*
	border-left: 0.063em solid rgb(195, 195, 195);
	*/
	background-color:#E2EDED;
	border-radius: 0.5em;
	padding-bottom: 24px;
	padding-left: 2em;

}
.container-citas {
	display: flex;
	justify-content: center;
}

.container-citas-blue a {
	background-color: #01828E;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 600;
	padding: 1em;
	border-radius: 0.25em;
	display: block;
	text-align: center;
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 2.25em;
	margin-top: .5em;

}

.container-citas-green a {
	background-color: #4AA225;
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 600;
	padding: 1em;
	border-radius: 0.25em;
	display: block;
	text-align: center;
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 2.25em;
	margin-top: .5em;

}

.container-citas a:hover {
	background-color: #eef6f9;
	color: #004050;
	text-decoration: underline;
	border: 0.063em solid #004050;
	padding: 0.95em;
}

.card-citas-blue {
	background-color: #FFFFFF;
	height: auto;
	margin-top: 2em;
	margin-left: 1em;
	margin-right: 1em;
	margin-bottom: 1em;
	border-radius: 0.5em;
	border: 0.063em solid rgb(195, 195, 195);
	filter: drop-shadow(0.25rem 0.25rem 0.25rem rgb(171, 171, 171));
}

.card-citas-green {
	background-color: #FFFFFF;
	height: auto;
	margin-top: 2em;
	margin-left: 1em;
	margin-right: 1em;
	margin-bottom: 1em;
	border-radius: 0.5em;
	border: 0.063em solid rgb(195, 195, 195);
	filter: drop-shadow(0.25rem 0.25rem 0.25rem rgb(171, 171, 171));
}

.p-citas {
    color: #004050;
    font-size: 1.25rem;
    font-weight: 300;
	text-align: center;
	padding: 1em;
	line-height: 1.5em;
}

.h5-citas {
	font-family: "Poppins", sans-serif;
	color: #003E52;
	font-weight: 500;
	font-size: 1.5em;
	line-height: 1.5em;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 0;
	margin-left: 1em;
	margin-right: 1em;
	padding-top: 0.75em;
}

.center-citas {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1em;
  }


/* CONTACT */

	
.contact {
    background-color: #01828E;
	padding: 4em 0;

}

/*
.contact-email {
}
*/

.form {
	margin-top: 3rem;
	padding: 2em 0;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 700;
}

.email-link:hover {
    text-decoration: underline;
}



/*
label {
	display: block;
	padding-bottom: 0s.25em;
	padding-top: 0.5em;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 38em;
    padding-bottom: 1em;
    background-color: #F8FBFB;
    border: 1px solid #B7CAD1;
    border-radius: 3px;
    font-size: rem;
}
input.button {
    display: inline;
    background-color: #01828E;
    padding: 0.5em 1.5em;
	margin-right: 1em;
    border-width: 0px;
    color: #FFFFFF;
    border-radius: 3px;
	margin-top: 1.5em;
}

input.button:hover {
    background-color: #3D851E;
    text-decoration: underline;
}
*/




/* FOOTER */

.blue-footer {
    text-align: center;
    background-color: #003E52;
    color: #FFFFFF;
	margin-top: 0;
	padding: 2.5em 0;
}

.p-footer {
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 300;
}

.footer:hover {
	color: #FFFFFF;
	font-size: 1em;
    font-weight: 300;
	text-decoration: underline;
}

@media (max-width: 576px) {

}

@media (max-width: 768px) {

}


@media (max-width: 992px) {

	.hamburger {
		display: block;
	}
	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1) {
		transform: translateY(12px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-12px) rotate(-45deg);
	}
	.nav-menu {
    justify-content: start;
    position: fixed;
    right: -100%;
    flex-direction: column;
    background-color: #DFEDED;
    width: 100%;
    top: 0;
	padding-top: 3em;
    text-align: center;
    transition: 0.3s;
    padding-bottom: 30px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 1px 2px 6px 2px #787878;
    box-shadow: 1px 2px 6px 2px #787878;
	}
	.nav-item {
		margin: 16px 0;
	}
	.nav-menu.active {
		right: 0;
	}
	.nav-menu li {
		width: 45%;
	}
	.nav-menu li a, .nav-menu li a:hover {
		box-shadow: 0 -1px 0 rgba(0,103,112,0.25) inset;
	}
	li.underline-hover-effect:hover::after {
		transform: scaleX(0.5);
	}
	.nav-menu li .call {
		box-shadow: 0 0 0 rgba(0,103,112,0.25) inset;
	}

}

@media (max-width: 1200px) {

}
