/* 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: #2E4687;
	color: white;
}

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

.flexvideo > div {
  width: 22%;
  padding: 3px 0px;
  margin: 0px 5px 10px;
	color: white;
   border: solid indianred 5px;
   background-color: indianred;
}

.picpix {
	color: antiquewhite;
	text-decoration: none;
   text-shadow: 0px 0px 10px black;
}

.picpix:hover {
	color: white;
}

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

p {
   font-size: 20px;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 45px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 25px;
}

ul {
	font-size: 35px;
}

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

.marquee {
	font-size: 50px;
}

#scmotto{
	font-size: 24px;
}

#homepics {
	height: 120px;
}

#altmotto {
	display: none;
}

#sclogo {
	height: 200px;
}

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

.flex-container4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 00px;
}

.flex-container4 > div {
    width: 30%;
    margin: 5px auto 2px;
    text-align: center;
    border-radius: 10px;
     padding: 0px;
     box-shadow: 0px 0px 26px black;
}

.flex-container4 > div:hover {
     box-shadow: 0px 0px 26px yellow;
     cursor: pointer;
}

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

.flex-container4a > div {
  width: 22%;
  margin: 20px 10px 0px 10px;
  padding: 0px;
  border: solid black 1px;
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 22px;
	background-color: #2E4687;
	color: white;
}

.flex-container4a > div:hover {
     box-shadow: 0px 0px 26px black;
     cursor: pointer;
}

.btn {
   width: auto;
   background-color: darkred;
   border: solid white 1px;
   color: white;
   font-size: 24px;
   padding: 6px;
   border-radius: 10px;
}

.btn:hover {
   background-color: silver;
   cursor: pointer;
   color: black;
}

#callusnow{
   display: none;
}

.flex-reviews {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
}

.flex-reviews > div {
  width: 32%;
  margin: 0px 10px 0px 10px;
   padding: 10px;
 	border: solid white 2px;
	background-color: #2E4687;
   border-radius: 20px;
	font-size: 18px;
   font-weight: 100;
   color: white;
}

@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
	
	#scname{
		font-size: 22px;
	}
	
	#sclogo {
		height: 300px;
	}
	
	#scmotto {
		display: none;
	}
	
	#homepics {
		height: 135px;
	}
	
	#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: 30px;
	}	

	h2 {
		font-size: 25px;
	}

	h3 {
		font-size: 20px;
	}
	
	h4 {
		font-size: 35px;
	}
	
	ul {
		font-size: 20px;
	}
   
   a {
      font-size: 20px;
   }
	
	.marquee {
		font-size: 60px;
	}
	
	#financingoptions {
		display: none;
	}
	
	.vimeo {
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
	}
     
     .flex-container4 > div {
          width: 90%;
     }

     .flex-container4a > div {
          width: 90%;
     }
   
      .flex-reviews > div {
         width: 90%;
      }
   
   .btn {
      width: auto;
      background-color: darkred;
      border: solid white 1px;
      color: white;
      font-size: 25px;
      padding: 10px;
      border-radius: 10px;
   }
   
   .flexvideo > div {
     width: 100%;
   }
   
   
   #callusnow{
      display: inline;
   }
   
   #popup {
      width: 95%;
   }
   
}