@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*PAGE CSS BEGINS HERE*/

:root {
    --black: #1a1a1a;
    --white: #eae9e9;
    --ltGray: #c0c2cb;
    --dkGray: #717583;   
}

html, body {
    font-family: Arial, Gotham, "Helvetica Neue", Helvetica, "sans-serif";
    height: 100%;
    background-color: var(--white);
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
	box-sizing: border-box;
}

header {
	max-width: 100%;
}

strong {
	font-weight: 700;
}

h3 {
	font-size: 24px;
	margin-bottom: 8px;
}

.backgroundImgContainer{
	height: 100%;
	min-height: 100%;
	margin: auto;
	text-align: center;
	max-height: 700px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.backgroundImg img {
	max-width: 100%;
	position: relative;
	object-fit: cover;

}

.whiteLayer {
	width: 100%;
	height: 100%;
	max-height: 100%;
	position: absolute;
	bottom:0;
	left:0;
	background-color: rgba(255,255,255,.3);
	z-index: 1;
}

.floatingImg {
	position: absolute;
	/*top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
	opacity: 80%;
	z-index: 2;
}

.floatingImg img {
	width: 100%;
	height: auto;
}

nav {
	
}

.smallLogo {
	width: 100px;
	height: auto;
}

main {
    flex: 1 0 auto;
    width: 100%;
    text-align: center;
    align-items: center;
	background-color: var(--white);
}

.oneColumnContainer {
	background-color: var(--ltGray);
}

.banner img {
	max-width: 100%;
	margin: 60px 0;
}


.twoColumnContainer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	margin: 40px 0px;	
}

.col1 {
	width: 40%;
}

.col2 {
	width: 40%;
}

.servicesPage {
	
}

.servicesPage .flexContainer{
	display: flex;
	flex-direction: column;
}

.servicesPage .flexItem {
	margin-bottom: 20px;
}

.servicesPage .twoColumnContainer {
	text-align: left;
	justify-content: center;
	gap: 40px;
}

.servicesPage .col1 {
	width: 35%;
}

.servicesPage .col2 {
	width: 35%;
}

.servicesPage .col2 img {
	max-width: 100%;
	height: auto;
	display: block;
}

.servicesHeader {

	max-width: 400px;
	margin-top: 40px;
	position: relative;
	left: 5%;
}

.services {
	
}

.servicesContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: var(--white);
	justify-content: center;
	padding: 10px;
	gap: 10px;
}

.servicesContainer:first-of-type {
	padding-bottom: 0;
}

.servicesContainer .item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 260px;
	background-color: var(--ltGray);
}

.servicesContainer .item div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 180px;
	padding: 20px;
	background-color: rgba(255,255,255,1);
	filter: drop-shadow(5px 5px 20px rgba(0,0,0,.3));
}

.contact .twoColumnContainer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	margin: 40px 0px;	
}

.contact .col1 {
	width: 30%;
	text-align: left;
}

.contact .col2 {
	width: 50%;
}

.contact .col2 iframe {
	max-width: 100%;
}

.twoColumnContainer .col1 .socials {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 130px;
	height: 30px;
}

.twoColumnContainer .col1 .socials img {
	width: auto;
	height: 20px;
}


.footer {
	background-image: url("../_img/stuccoTexture.webp");
	
	padding: 60px;
	
}

.footerContainer {
	padding: 50px;
	display: flex;
	justify-content: space-between;
	border: 3px solid var(--black);
	border-radius: 15px;
}

.footer .col1 {
	width: 35%;
}

.footer .col1 img {
	width: 100%;
	height: auto;
}

.footer .col2 {
	width: 50%;
}

.footer .col2 img {
	width: auto;
	max-height: 120px;
	margin-bottom: 20px;
}

.footer .col2 p {
	line-height: 20px;
	font-weight: 700;
	text-align: left;
}

.footer .socials {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 130px;
	height: 30px;
}

.footer .socials img {
	width: auto;
	height: 20px;
}

/* MOBILE CSS BEGINS HERE */

@media all and (max-width: 660px) {
    
}
