@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 {
    --ltGray: #7D8C91;
	--ltBlue: #80BDD1;
	--dkBlue: #384B52;
	--paleBlue: #5D82AF;
	--taupe: #7C736A;
	--sand: #D1A980;
}

html, body {
    font-family: "Montserrat", serif;
    height: 100%;
    color: #3b3d3d;
    
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
	box-sizing: border-box;
    
}
header {
	/*background: url("../_img/headerBackground6.svg");
	background-repeat: no-repeat;
	background-position: bottom;*/
    background: var(--paleBlue);
background: linear-gradient(180deg, rgba(98,165,236,1) 0%, rgba(98,165,236,1) 10%, rgba(93,130,175,1) 80%, rgba(93,130,175,1) 100%);
	/*background-color: var(--paleBlue);*/
	background-size: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
    padding: 10px;
	/*padding-bottom: 5%;*/
	min-height: 100px;
}

header img {
	height: 120px;
	width: auto;
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,.25));
}

nav {
}

.headerContact {
	display: flex;
	width: 70%;
	color: #fff;
}

.headerContact ul {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 0;
}


.headerContact a {
	color: #fff;
}



h2 {
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h3 {
	font-size:26px;
	font-weight: 700;
	color: var(--paleBlue);
	text-transform: uppercase;
	
}

h4 {
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

p {
	line-height: 22px;
	margin-bottom: 14px;
}

p:last-of-type {
	margin-bottom: 0;
}

ul {
	margin-bottom: 10px;
}

a {
    color: var(--paleBlue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

.modal {
      display: none;
      position: fixed;
      z-index: 1;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.4);
    }
    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px;
      border-radius: 8px;
      width: 400px;
      box-shadow: 0 0 10px rgba(0,0,0,0.25);
    }
    .close {
      float: right;
      font-size: 24px;
      cursor: pointer;
    }

	button {
		display: flex;
		justify-content: center;
		align-items: center;
      padding: 20px 10px;
	  border-radius: 50px;
	  line-heiht: 18px;
	  background-color: var(--paleBlue);
	  color: #fff;
	  font-weight: 700;
	  border: 0;
	  filter: drop-shadow(3px 3px 5px rgba(0,0,0,.8));
	  position:sticky;
	  bottom: 40px;
	  right: 40px;
	  width: max-content;
	  margin-left: auto;
    }



main {
    flex: 1 0 auto;
    width: 100%;
    text-align: center;
    align-items: center;
    background: url("../_img/AdobeStock_398531256_2.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
	position: relative;
    /*backgrond-color: rgba(235,245,245,1.00);*/
}

main li {
	margin-bottom: 10px;
}

main li:last-of-type {
	margin-bottom: 0;
}

main .banner {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

main .banner h1 {
	font-size: 60px;
	font-weight: 700;
	color: var(--paleBlue);
	text-shadow: 2px 2px 3px rgba(0,0,0,.25);
}

main .banner h2 {
	font-size: 40px;
	font-weight: 700;
	color: var(--paleBlue);
	text-shadow: 2px 2px 3px rgba(0,0,0,.25);
	margin: 20px auto;
}


main .oneColumn {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	margin: 40px 5% 80px;
    
    background: rgba( 255, 255, 255, 0.45 );
box-shadow: 0 8px 24px 0 rgba( 0, 0, 0, 0.35 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
/*border: 1px solid rgba( 255, 255, 255, 0.18 );*/
    padding: 0px;
    border: 3px solid var(--ltGray);
}

main .oneColumn .colOne {
    width: 100%;
}



main .oneColumn .servicesCategories {
    margin-top: 0px;
    margin-bottom: 60px;
    padding: 20px 0;
    background-color: var(--paleBlue);
}

.servicesCategories h2 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 20px;
}

.servicesCategories a {
    color: #fff;
}

.servicesCategories ul {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.servicesCategories li {
    margin: 0;
    font-weight: 700;
    margin-bottom: 10px;
}

main .categoryContainer {
    width: 80%;
    margin: auto;
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 24px 0 rgba( 0, 0, 0, 0.35 );
}



.categoryHeader {
    background-color: var(--paleBlue);
    border-radius: 10px 10px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 10px 0;
    color: #fff;
    z-index: 1;
    position: relative;
}

.categoryContent {
    border: 2px solid var(--ltGray);
    margin-top: -10px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 0;
    position: relative;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.categoryContent h3 {
    margin: 10px 0;
    font-size: 22px
}

.categoryContent p {
    text-align: left;
    width: 90%;
}


main .twoColumn {
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 40px;
	margin: 40px auto 80px;
	max-width:  1000px;;
    background: rgba( 255, 255, 255, 0.55 );
	box-shadow: 0 8px 24px 0 rgba( 0, 0, 0, 0.35 );
	backdrop-filter: blur( 4px );
	-webkit-backdrop-filter: blur( 4px );
	border-radius: 10px;
	/*border: 1px solid rgba( 255, 255, 255, 0.18 );*/
    padding: 15px;
    border: 3px solid var(--ltGray);
}

main .twoColumn .colOne {
	width: 50%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: left;
    
    
}

main .twoColumn .colTwo {
	width: 50%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
    /*border-left: 2px solid var(--ltGray);*/
}

main .twoColumn .colTwo img {
	max-width: 100%;
	height: auto;
}

main .threeColumn {
	border: 2px solid blue;
	display: flex;
	gap: 40px;
	margin: 40px 5%;
}

main .threeColumn .colOne {
	border: 2px solid green;
	width: 33%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

main .threeColumn .colTwo {
	border: 2px solid orange;
	width: 33%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

main .threeColumn .colThree {
	border: 2px solid Pink;
	width: 33%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.glss {
    background: rgba( 255, 255, 255, 0.35 );
box-shadow: 0 8px 24px 0 rgba( 0, 0, 0, 0.35 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
/*border: 1px solid rgba( 255, 255, 255, 0.18 );*/
    padding: 15px;
    border: 3px solid var(--ltGray);
}

.spacer {
    height: 100px;
}

.divider {
	background-color: var(--paleBlue);
	color: #fff;
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
	margin: 80px 0;
    min-height: 200px;
}

.dividerTop {
	position: absolute;
	top: 0;
	left: 0;
}

.dividerBottom {
	position: absolute;
	bottom: 0;
	left: 0;
}

.roundedImage {
	/*border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;*/
    border-radius: 10px;
	border: 3px solid var(--ltGray);
	filter: drop-shadow(0px 8px 24px rgba(0,0,0,.35))
}

/*--ABOUT PAGE--*/

.staff {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.staffItem {
	width: 300px;
	background: rgba( 255, 255, 255, 0.55 );
	box-shadow: 0 8px 24px 0 rgba( 0, 0, 0, 0.35 );
	backdrop-filter: blur( 4px );
	-webkit-backdrop-filter: blur( 4px );
	border-radius: 10px;
	padding: 15px;
    border: 3px solid var(--ltGray);
}

.staffPhoto img {
	max-width: 100%;
	height: auto;
}

.staffBio {
	text-align: center;
	margin-top: 10px;
}

/*--SERVICES PAGE--*/

.servicesContainer {
	width: 45%;
	margin: 40px auto 80px;
	border: 1px solid red;
}

/*.accordionContainer {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.accordion {
  background-color: var(--paleBlue);
  color: #fff;
  cursor: pointer;
  padding: 10px;
  width: 30%;
	max-width: 300px;
  border: none;
  text-align: center;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
	border-radius: 10px;
	z-index: 1;
	margin-top: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}*/

/*.active, .accordion:hover {
  background-color: var(--paleBlue); 
}*/

.panel {
  padding: 15px;
	padding-top: 25px;
  display: none;
  background-color: #fff;
  overflow: hidden;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-top: -10px;
	color: #3b3d3d;
	z-index: 0;
}

/*--CONTACT PAGE--*/

.googleMap{
	border: 3px solid var(--ltGray);
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,.35));
	width: 100%;
	min-width: 100%;
	height: auto;
	min-height: 400px;
}

.contact .colOne {
}

.contact .colOne h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.contact .colOne ul {
	margin-bottom: 30px;
}

.contact .colOne li {
	text-align: center;
}

.contact .twoColumn .colOne {
	width: 45%;
}

.contact .twoColumn .colTwo {
	width: 100%;
	min-height: 100%;
}

.contact .form {
	max-width: 500px;
	height: 1000px;
	margin: auto;
}

/*--FOOTER--*/

footer {
	/*background: url("../_img/footerBackground4.svg");
	background-repeat: no-repeat;
	background-size: 110vw;
	padding: 12% 0 80px;*/
    background: var(--paleBlue);
background: linear-gradient(0deg, rgba(98,165,236,1) 0%, rgba(98,165,236,1) 10%, rgba(93,130,175,1) 80%, rgba(93,130,175,1) 100%);
    /*background-color: var(--paleBlue);*/
	display: flex;
	justify-content: space-around;
    width: 100%;
    height: auto;
    text-align: center;
	color: #fff;
	line-height: 20px;
	padding: 20px 0;
	margin: 0;
}

footer h3 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 10px;
}

footer ul {
	margin: 0;
}

footer li {
	padding: 0px 15px;
}

footer li:last-of-type {
	padding-bottom: 0;
}

.address ul {
	display: flex;
	flex-direction: row;
}

/* MOBILE CSS BEGINS HERE */

@media all and (max-width: 660px) {

	header {
		min-height: 140px;
	}

	.headerContact ul {
		flex-direction: column;
		gap: 0;
		text-align: center;
	}

	.headerContact ul li {
		margin-bottom: 5px;
	}
    
    main .oneColumn {
        width: 100%;
        margin: 40px 0;
    }
    
    main .oneColumn .colOne {
        
    }
    
    main .twoColumn {
        flex-direction: column-reverse;
		flex-wrap: wrap;
    }
    
    main .twoColumn .colOne {
        min-width: 100%;
    }
    
    main .twoColumn .colTwo {
        width: 100%;
    }
    
    main img {
        max-width: 100%;
        height: auto;
    }

	iframe .googleMap{
		width: auto;
		height: auto;
	}
    
    .roundedImage {
        
    }
    
    .categoryContainer {
        width: 100%;
        
    }
    
    .categoryHeader {
        
    }
    
    .categoryContent {
        width: 100%;
    }

	footer .address ul{
		flex-direction: column;
	}
}
