@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

/* LAYOUT 
	• Banner
	• Header
	• Home
	• About
	• Services
	• Media
	• Contact
	  - Contact Form
/* NAVIGATION */
/* TYPOGRAPHY */
/* IMAGES */
/* PHOTO GALLERY */
/* YOUTUBE VIDEOS */

body {   
	margin: 0px;
	font-size: 100%;
	background-color: #40c9ff;
}	

/*================================================================ LAYOUT */

.wrapper {
	width: 100%;
    margin: 0 auto;
	overflow: hidden;
}

/******************************** BANNER */

.banner-container1 {
	text-align: center;
	width: 100%;
    margin: 0 auto;
	background: url("http://budgetwebdesignakron.com/images/bg-banner2.jpg") no-repeat center center fixed; 
   -webkit-background-size: cover;
}
.banner-container2{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: auto !important;
}
@media screen and (max-width : 760px) {
	.banner-container2 { padding-top: 40px; }
}
.banner-container1b {
	text-align: center;
	width: 100%;
    margin: 0 auto;
	background: url("http://budgetwebdesignakron.com/images/bg-banner2.jpg") no-repeat center center fixed; 
   -webkit-background-size: cover;
}
.banner-container2b{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: auto !important;
}
@media screen and (max-width : 760px) {
	.banner-container2b { padding-top: 40px; }
}

/******************************** HEADER */

.header-container1 {
	width: 100%;
	height: 70px;
	background-color: #dfc891;
	margin-top: -19px;
}
.header-container2 {
	width: 90%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%
}

/******************************** HOME - SECTION 1 */

.hs1-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #ffffff;
	overflow: hidden;
}
.hs1-container2 {
	width: 90%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

/********************************  HOME SECTION 1 - TWO COLUMNS */

.hs1-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
}
.hs1-2column {
    flex: 1;             /* Allows items to grow and shrink equally */
	width:50%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: right;
}
@media (max-width: 770px) {
    .hs1-container-2columns { flex-direction: column; /* Stacks the divs vertically */ }
    .hs1-2column { width: 100%; /* Makes each div take full width */ text-align: center; }
}

/******************************** HOME - SECTION 2 */

.hs2-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #40c9ff;
	overflow: hidden;
}
@media screen and (max-width: 770px) {
    .hs2-container1 { padding: 20px 0px 40px 0px; }
}

/******************************** HOME - SECTION 2 -THREE COLUMNS */

.hs2-container-3columns {
    display: flex; /* Activates Flexbox */
    flex-wrap: wrap; /* Allows columns to wrap to new lines on smaller screens */
    gap: 20px; /* Adds space between columns */
	justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
	background-color: #40c9ff; 
	}
}
@media screen and (max-width: 770px) {
    .hs2-container-3columns { padding: 20px 0px 100px 0px; }
}
.hs2-3column {
    /* Calculates width for three equal columns, accounting for the gap */
    width: calc((45% - 40px) / 3);
    padding: 0 15px 15px 15px;
	margin: 40px;
    background-color: #b6fafa;
    box-sizing: border-box; /* Ensures padding/border are included in the width calculation */
	border-radius: 10px;
	}
}
@media (max-width: 1921px) {
	.hs2-3column { margin: 40px; }
}
@media (max-width: 1921px) {
	.hs2-3column { width: calc((58% - 40px) / 3); }
}
@media (max-width: 1440px) {
	.hs2-3column { margin: 10px; }
}
@media (max-width: 1440px) {
	.hs2-3column { width: calc((87% - 40px) / 3); }
}
@media (max-width: 1201px) {
	.hs2-3column { margin: 10px; }
}
@media (max-width: 1201px) {
	.hs2-3column { width: calc((87% - 40px) / 3); }
}
@media (max-width: 1025px) {
	.hs2-3column { margin: 10px; }
}
@media (max-width: 1025px) {
	.hs2-3column { width: calc((87% - 40px) / 3); }
}
/* Media query for responsiveness: stacks columns on screens smaller than 600px */
@media screen and (max-width: 770px) {
    .hs2-3column { width: 90%; /* Makes each column take the full width on small screens */ margin: 20px 0px 0px 0px; }
}

/******************************** HOME - SECTION 3 */

.hs3-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #ddd5c2; 
	overflow: hidden;
	padding-bottom: 30px;
}
@media screen and (max-width: 1921px) {
	.hs3-container1  { padding-bottom: 50px; }
}
.hs3-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 1025px) {
	.hs3-container-2columns  { max-width: 95%; }
}
.hs3-2columna {
    flex: 3;             /* Allows items to grow and shrink equally */
	width: 70%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
.hs3-2columnb {
    flex: 1;             /* Allows items to grow and shrink equally */
	width: 30%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .hs3-container-2columns { flex-direction: column; /* Stacks the divs vertically */ width: 90%; }
    .hs3-2columna { width: 100%; /* Makes each div take full width */ text-align: center; }
	.hs3-2columnb { width: 100%;            /* Makes each div take full width */ text-align: center; }
}

/******************************** HOME - SECTION 4 */

.hs4-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #cdf1ff;
	overflow: hidden;
	padding-bottom: 30px;
}
@media screen and (max-width: 1921px) {
	.hs4-container1  { padding-bottom: 50px; }
}
.hs4-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 1025px) {
	.hs4-container-2columns  { max-width: 95%; }
}
.hs4-2columna {
    flex: 3;             /* Allows items to grow and shrink equally */
	width: 70%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
.hs4-2columnb {
    flex: 1;             /* Allows items to grow and shrink equally */
	width: 30%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .hs4-container-2columns {
        flex-direction: column; /* Stacks the divs vertically */
		width: 90%;
    }
    .hs4-2columna {
        width: 100%;            /* Makes each div take full width */
		text-align: center;
    }
	.hs4-2columnb {
        width: 100%; /* Makes each div take full width */ text-align: center; }
}

/******************************** HOME - SECTION 5 */

.hs5-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #68d4ff;
	overflow: hidden;
}
.hs5-container2 {
	width: 90%;
	max-width: 1300px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

/******************************** FOOTER */

.footer-container1 {
    display: flex; /* Activates Flexbox */
    flex-wrap: wrap; /* Allows columns to wrap to new lines on smaller screens */
    gap: 20px; /* Adds space between columns */
	justify-content: center; /* Centers horizontally */
    /*align-items: center;     /* Centers vertically */
    padding-top:15px;
	background: url("http://budgetwebdesignakron.com/images/bg-banner2.jpg") no-repeat center center fixed; 
}
.footer-3column  {
    /* Calculates width for three equal columns, accounting for the gap */
    width: calc((45% - 40px) / 3);
    padding: 0 15px 0px 0px;
	margin: 0px 40px 0px 40px;
    box-sizing: border-box; /* Ensures padding/border are included in the width calculation */
	overflow: hidden;
}
@media screen and (max-width: 1921px) {
	.footer-3column  { width: calc((58% - 40px) / 3); }
}
/* Media query for responsiveness: stacks columns on screens smaller than 600px */
@media screen and (max-width: 770px) {   
    .footer-3column  { width: 90%; /* Makes each column take the full width on small screens */ }
}


/******************************** ABOUT - SECTION 1 */

.as1-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #ffffff;
	overflow: hidden;
}
@media screen and (max-width: 770px) {   
    .as1-container1  { padding-bottom: 0px; }
}
.as1-container2 {
	width: 90%;
	max-width: 1000px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

/******************************** ABOUT - SECTION 2 */

.as2-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #f6f6f6;
}
.as2-container2 {
	width: 90%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
/********************************  ABOUT -  SECTION 2 - TWO COLUMNS */

.as2-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.as2-2column {
    flex: 1;             /* Allows items to grow and shrink equally */
	width:50%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .as2-container-2columns { flex-direction: column; /* Stacks the divs vertically */ }
    .as2-2column { width: 100%; /* Makes each div take full width */ text-align: center; }
}

/********************************  ABOUT -  SECTION 3 */

.as3-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #ffffff;
	overflow: hidden;
}
.as3-container2 {
	width: 90%;
	max-width: 1000px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

/******************************** SERVICES - SECTION 1 */

.ss1-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #f6f6f6;
	overflow: hidden;
}
.ss1-container2 {
	width: 90%;
	max-width: 1000px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
/********************************  SERVICES SECTION 2 - TWO COLUMNS */

.ss2-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background-color: #ffffff;
	overflow: hidden;
}
@media only screen and (max-width: 770px) {
	.ss2-container1 { padding-bottom: 30px; }
}
.ss2-container2 {
	width: 90%;
	max-width: 1200px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
.ss2-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.ss2-2columna {
    flex: 3;             /* Allows items to grow and shrink equally */
	width: 70%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
.ss2-2columnb {
    flex: 1;             /* Allows items to grow and shrink equally */
	width: 30%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 1025px) {
.ss2-container-2columns {max-width: 90%; }
}
@media (max-width: 770px) {
    .ss2-container-2columns {
        flex-direction: column; /* Stacks the divs vertically */
		width: 90%;
    }
    .ss2-2columna {
        width: 100%;            /* Makes each div take full width */
		text-align: center;
    }
	.ss2-2columnb {
        width: 100%;            /* Makes each div take full width */
		text-align: center;
    }
}

/********************************  SERVICES SECTION 3 - TWO COLUMNS */
.ss3-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #f6f6f6;
}
.ss3-container2 {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
.ss3-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.ss3-2column {
    flex: 1;             /* Allows items to grow and shrink equally */
	width:50%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .ss2-container-2columns { flex-direction: column; /* Stacks the divs vertically */ }
    .ss2-2column { width: 100%; /* Makes each div take full width */ text-align: center; }
}

/******************************** MEDIA - SECTION 1 */

.ms1-container1 {
	width: 100%;
	max-width: 100%;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #f6f6f6;
	overflow: hidden;
}
.ms1-container2 {
	width: 90%;
	max-width: 1000px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
.ms2-container3 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #e2e2e2;
}

/********************************  MEDIA -  SECTION 2 */

.ms2-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #f6f6f6;
}
.ms2-container2 {
	width: 90%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}


/********************************  MEDIA -  SECTION 3 - TWO COLUMNS */

.ms3-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #f6f6f6;
}
.ms3-container2 {
	width: 90%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
.ms3-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.ms3-2column {
    flex: 1;             /* Allows items to grow and shrink equally */
	width:50%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .ms3-container-2columns { flex-direction: column; /* Stacks the divs vertically */ }
    .ms3-2column { width: 100%; /* Makes each div take full width */ text-align: center; }
}

/*================================================================ CONTACT PAGE */

/********************************  CONTACT -  SECTION 1 */

.cs1-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #ffffff;
}
.cs1-container2 {
	width: 90%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
/********************************  CONTACT -  SECTION 2 */

.cs2-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	overflow: hidden;
	background-color: #f6f6f6;
}
.cs2-container2 {
	width: 90%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}
.cs2-container-2columns {
    display: flex;       /* Activates flexbox layout */
    flex-wrap: wrap;     /* Allows items to wrap onto a new line if needed */
    gap: 30px;           /* Adds space between the divs */
	padding-top: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.cs2-2column {
    flex: 1;             /* Allows items to grow and shrink equally */
	width:50%;
    min-width: 200px;    /* Optional: sets a minimum width before they wrap */
	text-align: left;
}
@media (max-width: 770px) {
    .cs2-container-2columns {
        flex-direction: column; /* Stacks the divs vertically */
    }
    .cs2-2column {
        width: 100%;            /* Makes each div take full width */
		text-align: center;
    }
}

/*================================================================ CONTACT FORM */

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #c2c2c2;
  border-radius: 4px; /* Optional: adds rounded corners */
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical; /* Allows vertical resizing of the textarea */
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 18px;
}
input[type="message"],
textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border: 2px solid #c2c2c2;
  border-radius: 4px; /* Optional: adds rounded corners */
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical; /* Allows vertical resizing of the textarea */
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 770px) {
textarea {
    font-size: 15px;
  }
}
.button {
  background-color: #1495c4; 
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer; /* Changes cursor to a hand on hover */
  font-size: 20px;
  font-family: "Google Sans Flex", sans-serif;
}

/*================================================================ NAVIGATION */

.nav {
	height: 50px;
	background-color: #05a6e5;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
}
.icon {
	position: absolute;
}
/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
}
/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	margin-right: 1px;
}
/*Style for menu links*/
li a {
	display:block;
	min-width:150px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Poppins", sans-serif;
	font-size: 14pt;
	font-weight: 600;
	color: #ffffff;
	/*background: rgba(255, 255, 255, 0.0);*/
	background-color: #05a6e5;
	text-decoration: none;
}
li.sm a {
	display:block;
	min-width:50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Poppins", sans-serif;
	font-size: 14pt;
	font-weight: 600;
	color: #ffffff;
	/*background: rgba(255, 255, 255, 0.0);*/
	background-color: #05a6e5;
	text-decoration: none;
}
/*Hover state for top level links */
li:hover a {
	background: #016b91;
	height: 50px;
	font-size: 14pt;
	font-weight: 600;
	margin-top:0px;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Poppins", sans-serif;
	font-size: 18pt;
	text-decoration: none;
	color: #ccc4a7;
	background: #05a6e5;
	text-align: center;
	padding: 10px 0;
	display: none;
}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*Navigation Responsive Styles*/

@media screen and (max-width : 1026px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		border-bottom: 1px solid #666153;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}
.responsive {
	width: 100%;
	height: auto;
}

/*================================================================ TYPOGRAPHY */
h1 {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 43px;
	color: #36a2ab;
	line-height: 130%;
	text-align: left;
}
@media only screen and (max-width: 770px) {
h1 {
    font-size: 29px;
	line-height: 120%;
  }
}
.h1media {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 43px;
	color: #36a2ab;
	line-height: 120%;
	text-align: center;
}
h1.header {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 43px;
	color: #018591;
	line-height: 160%;
	text-align: left;
}
h1.headermedia {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 43px;
	color: #018591;
	line-height: 160%;
	text-align: center;
}
h1.headercontact {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 43px;
	color: #018591;
	line-height: 160%;
	text-align: center;
}
@media only screen and (max-width: 770px) {
h1.header, h1.headermedia {
    font-size: 35px;
	text-align: center;
	line-height: 200%
  }
}
h2 {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #36a2ab;
	text-align: left;
	/*line-height: 160%;*/
}
.h2home3 {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #9e3900;
	text-align: left;
	/*line-height: 160%;*/
}
.h2home4 {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #018591;
	text-align: left;
	/*line-height: 160%;*/
}
.h2about {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #36a2ab;
	text-align: left;
	/*line-height: 160%;*/
}
.h2services {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #633200;
	text-align: left;
	/*line-height: 160%;*/
}
h2.media {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 35px;
	font-weight: 700;
	color: #36a2ab;
	text-align: center;
	/*line-height: 160%;*/
}
@media only screen and (max-width: 770px) {
h2, .h2about, .h2services, .h2home3, .h2home4 {
	font-family: "Google Sans Flex", sans-serif;
    font-size: 26px;
  }
}
.cardheader {
font-family: "Google Sans Flex", sans-serif;
	font-size: 25px;
	font-weight: 600;
	color: #9e3900;
	text-align: center;
	line-height: 50%;
}
@media only screen and (max-width: 1930px) {
.cardheader { line-height: 120%; }
}
h3 {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 35px;
	color: #36a2ab;
	line-height: 120%;
	text-align: left;
}
.h3red {
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 700;
	font-size: 35px;
	color: #047fbf;
	line-height: 120%;
	text-align: left;
}

@media only screen and (max-width: 770px) {
h3, .h3red {
    font-size: 25px;
  }
}
.h2small {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 25px;
	font-weight: 700;
	line-height: 0%;
	text-align: left;
	color: #36a2ab;;
	padding-bottom: -10px;
}
@media only screen and (max-width: 770px) {
.h2small {
    line-height: 100%;
  }
}
.text {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	line-height: 160%;
	text-align: left;
	color: #55555;
}
.textcenter {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	line-height: 160%;
	text-align: center;
	color: #55555;
}
.textcontact {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 30px;
	line-height: 160%;
	text-align: center;
	color: #55555;
}
.text-red {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 160%;
	text-align: left;
	color: #d00f06;
}
.text-banner {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 130%;
	text-align: center;
	color: #ffffff;
	margin: -20px 0px 10px 0px;
}
.text-as2 {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	line-height: 160%;
	text-align: left;
	color: #ffffff;
}
.textcontact1 {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 25px;
	line-height: 160%;
	text-align: center;
	color: #55555;
}
@media only screen and (max-width: 770px) {
.textcontact1 {;
	font-size: 20px;
  }
}
@media (max-width: 600px) {
  .text {font-size: 16px;  }
  .text-white {font-size:16px; }
  .mainttext-red {font-size: 16px; }
  .textcenter {font-size: 16px; }
}
.text-footer {
	font-family: 'Google Sans Flex', sans-serif;
	font-size: 22px;
	line-height: 160%;
	text-align: center;
	color: #ffffff;
}
@media only screen and (max-width: 770px) {
.text-footer {;
	text-align: center;
  }
}
.formtext {
	font-family: 'Google Sans Flex', sans-serif;
	font-size: 22px;
	line-height: 10%;
	text-align: left;
	color: #555555;
}
@media only screen and (max-width: 770px) {
.formtext {
    font-size: 18px;
  }
}
/******** HYPERLINKS ********/

/** Main Text Links **/

/* unvisited link */
a.text:link {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	line-height: 160%;
	text-align: left;
	color: #0567fa;
	text-decoration: none;
}
/* visited link */
a.text:visited {
	color: #0567fa;
}
/* mouse over link */
a.text:hover {
	color: #be9874;
}
a.text:active {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	line-height: 160%;
	text-align: left;
	color: #0000FF;
	text-decoration: none;
}
@media (max-width: 770px) {
	a.text:link {font-size: 16px;  }
}
/** Footer Links **/
.footer-link {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 160%;
	text-align: left;
	color: #47c4df;
	text-decoration: none;
}
/* mouse over link */
.footer-link:hover {
	color: #50fbed;
}
/* visited link */
.footer-link:visited {
	color: #47c4df;
}
/*================================================================ IMAGES */

img {
  max-width: 100%; /* Ensures image stays within container width */
  height: auto;    /* Maintains aspect ratio */
  border-radius: 10px;
}
img.logosm {
	padding-top: 55px;
	width: 12%;
	height: 12%;
}
@media screen and (max-width: 770px) {
	img.logosm { 
	padding-top: 20px;
		width: 60%;
	    height: 60% }
}
@media screen and (max-width: 770px) {
	.img-hs1-2column { 
		padding-bottom: 40px;
	    max-width: 100% }
}
img.iconsm {
	display: inline-block;
	vertical-align: middle;
}
.img-hs1-2column {
	max-width: 95%; /* Ensures image stays within container width */
	border-radius: 10px;
}
@media screen and (max-width: 770px) {
	.img-hs1-2column { 
		padding-bottom: 40px;
	    max-width: 100% }
}
img.hamburger {
	width: 30px;
	height: 15px; /* May distort if aspect ratio isn't 3:2 */
}
img.home {
	max-width: 60%; /* Ensures image stays within container width */
	height: auto;    /* Maintains aspect ratio */
	padding-top: 40px;
}
@media screen and (max-width: 770px) {
	img.home { padding-top: 0px; }
}
img.services {
	max-width: 70%; /* Ensures image stays within container width */
	height: auto;    /* Maintains aspect ratio */
	padding-top: 40px;
}
@media screen and (max-width: 770px) {
	img.home, img.services { padding-top: 0px; }
}
/*================================================================ PHOTO GALLERY */

* {box-sizing: border-box}
	body {font-family: Verdana, sans-serif; margin:0}
	.slider {display: none}
	img {vertical-align: middle;}
}


.slider-container1 {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	min-height: 100%;
	padding-bottom: 20px;
	height: auto !important;
	height: 100%;
	background-color: #ffffff;
	overflow: hidden;
}


.slider-box {
	max-width: 600px;
	position: relative;
	margin: auto;
}	
@media screen and (max-width: 770px) {
.slider-box {
	width: 90%;
	position: relative;
	margin: auto; }
}	
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}	 
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
} 
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}
/*.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}*/
.numIndicator {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: #717171;
}	 
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}
@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
} 
@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}
@media only screen and (max-width: 300px) {
	.prev, .next,.text {font-size: 11px}
}



/*================================================================ YOUTUBE VIDEOS */
.container-videos {
	min-height: 100px;
	max-width: 100%;
	text-align: center;
	overflow: hidden;
	width: 100%;
    margin: 0 auto;
	background-color: #000000;
   -webkit-background-size: cover;
}
@media screen and (max-width: 770px) {
          iframe {
            width: 100%; /* Make the video take full width on mobile */
            height: auto; /* Maintain aspect ratio */
          }
        }






