/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
  float: left;
  padding: 5px;
  border: 0px solid red;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

body {
	background-color: #FBFAFF;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
	color: burlywood;
	font-size: 75px;
	font-weight: bold;
}

.flex-container > div {
  width: 32%;
  margin: 0px 10px 0px 10px;
  padding: 0px;
 	border: solid white 1px;
}

.flex-container > div:hover {
	color: white;
	border: solid white 1px;
	cursor: pointer;
}

.flex-container-1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
	color: black;
	font-size: 20px;
	font-weight: bold;
}

.flex-container-1 > div {
  width: 32%;
  margin: 0px 10px 0px 10px;
  padding: 0px;
 	border: solid white 1px;
}

/*
.flex-container-1 > div:hover {
	color: white;
	border: solid white 1px;
	cursor: pointer;
}
*/

.flex-container-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	color: black;
	font-weight: bold;
}

.flex-container-2 > div {
  width: 32%;
  margin: 20px 10px 0px 10px;
  padding: 0px;
  border: solid black 1px;
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 30px;
	background-color: #30408b;
	color: white;
}

.picpix {
	color: burlywood;
	text-decoration: none;
}

.picpix:hover {
	color: white;
}

h1, h2, h3, h4, ul, p, marquee, span {
	font-family: 'Merriweather', sans-serif;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 45px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 35px;
}

ul {
	font-size: 35px;
}

#scname{
	font-size: 24px; 
	font-weight: bold; 
	margin-top: 0px;
}

.marquee {
	font-size: 50px;
}

#scmotto{
	font-size: 30px;
}

#homepics {
	height: 120px;
}

#altmotto {
	display: none;
}

#sclogo {
	height: 200px;
}

.vimeo {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
	
	#scname{
		font-size: 60px;
	}
	
	#sclogo {
		height: 300px;
	}
	
	#scmotto {
		display: none;
	}
	
	#homepics {
		height: 240px;
	}
	
	#altmotto {
		display: inline;
		font-size: 50px;
	}
	
	.flex-container > div {
	  width: 100%;
		font-size: 100px;
	}
	
	.flex-container-1 > div {
	  width: 100%;
		font-size: 36px;
	}
	
	.flex-container-2 > div {
  		width: 100%;
	}
	
	h1 {
		font-size: 65px;
	}	

	h2 {
		font-size: 60px;
	}

	h3 {
		font-size: 55px;
	}
	
	h4 {
		font-size: 50px;
	}
	
	ul {
		font-size: 50px;
	}
	
	.marquee {
		font-size: 60px;
	}
	
	#financingoptions {
		display: none;
	}
	
	.vimeo {
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
	}
	
}