@charset "utf-8";

/* Top page carousel slide */
@import url(slide.css);


/* COLOR PALETTE:
Light grey: rgb(212, 213, 215)
Black: rgb(35, 31, 32)

*/

body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
  /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	*/
  font-family: 'ヒラギノ明朝 ProN' , 'Hiragino Mincho ProN' , '游明朝','游明朝体',YuMincho,'Yu Mincho' , 'ＭＳ 明朝' , 'MS Mincho' , HiraMinProN-W3 , 'TakaoEx明朝' , TakaoExMincho , 'MotoyaLCedar' , 'Droid Sans Japanese' , serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
}


h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {
  margin: 0px;padding: 0px;font-size: 100%;
}

h1 {
  font-size: 1.9em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1.1em;
}


ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

@media screen and (max-width: 900px) {

  h2 {
    font-size: 1.4em;
  }

  h3 {
    font-size: 1.1em;
  }

  h4 {
    font-size: 1em;
  }
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 1.5em;
  }
}

/* REUSABLES */

.bg-gray {
  background-color: rgb(212, 213, 215);
}

.bg-pink {
  background-color: rgb(241, 154, 173);
}

.bg-beige {
  background-color: rgb(234, 232, 225);
}

.bg-black {
  background-color: rgb(35, 31, 32);
}

.bg-ltbrwn {
  background-color: rgb(155, 153, 137);
}


.txt-white {
  color: white;
}

.txt-brown {
  color: rgb(154, 147, 121);
}

/* Collapsible Responsive Navigation -----------------------*/
/* Add a black background color to the top navigation */

.topBarFlex {
  width: 100%;
  display: flex;
  height: 40px;
  justify-content: space-between;
  background-color:#000000;
}

.topBarL {
  width: 80%;
	  background-color:#000000;
}

.topBarR {
  min-width: 300px;
  background-color: rgb(154, 147, 121);
  color: white;
  text-align: center;
  transition: background-color .5s ease-out;
}

.topBarR span {
  height: 30px;
  line-height: 40px;
}

.topBarR:hover {
  background-color: black;
}



@media screen and (max-width: 600px) {
  .topBarFlex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .topBarL {
    width:0;
    display: none;
  }

  .topBarR {
    width: 100%;

  }
}




/* Collapsible Responsive Navigation -----------------------*/
/* Add a black background color to the top navigation */
.topnav {
  overflow: hidden;
  display: flex;
  width: 100%;
  background-color: #F19AAD;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 15px 5px 0 5px;
  text-decoration: none;
  font-size: 1em;
  width: 20%;
  font-weight: bold;
}

.topnav span {
  font-size: .7em;
  font-weight: normal;
  line-height: .8;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #EAE8E1;
  color: rgb(133, 133, 133);
  transition: color .2s;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #4CAF50;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}


@media screen and (max-width: 1200px) {
  .topnav a {
    font-size: 1em;
  }
}

@media screen and (max-width: 900px) {
  .topnav a {
    font-size: .8em;
    padding: 0;
    padding-top: 15px;
  }
}


/* When the screen is less than 700 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 700px) {
  .topnav {
    display: block;
  }
  
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* Responsive added with JavaScript */
@media screen and (max-width: 700px) {
  .topnav.responsive {position: sticky;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    margin: auto;
    width: 100%;
  }
}




/* BOTTOM NAVIGATION */
.botnav {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 100%;
}

/* Style the links inside the navigation bar */
.botnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 15px 16px 0 16px;
  text-decoration: none;
  font-size: .7em;
  width: 33%;
  font-weight: bold
}

.botnav span {
  font-size: .7em;
  font-weight: normal;
  line-height: .8;
}

/* Change the color of links on hover */
.botnav a:hover {
  background-color: #EAE8E1;
  color: black;
}

/* Add an active class to highlight the current page */
.botnav a.active {
  background-color: #F19AAD;
  color: black;
}

.botnavL, .botnavR {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .botnav {
    flex-direction: column;
  }

  .botnav a {
    font-size: .7em;
    line-height: 1em;
  }

  .botnav span {
    font-size: .6em;
    line-height: 1.2em;
  }

  .botnavL, .botnavR {
    width: 100%;
  }

}

@media screen and (max-width: 500px) {
  .botnav a {
    font-size: .5em;
  }
}

.copyright {
  text-align: center;
  font-size: .7em;  
}

.logoBlock {
  background-color: #4C4948;
  padding-top: 50px;
  padding-bottom: 20px;
}

.textBlock {
  background-color: black;
  padding-top: 12px;
  padding-bottom: 12px;
}

.copyright a {
  color: white;
}

.snslogo a {
  margin: 5px;
}


@media screen and (max-width: 500px) {
  .copyright {
    font-size: .6em;
    padding-top: 0;
    padding-bottom: 0;
  }
}




/* 3 Column Flexbox --------------------------------------*/

.threeCol {
	display: flex;
  	justify-content: space-around;
  	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	padding: 50px;
}

@media screen and (max-width: 900px) {
  .threeCol {
    flex-direction: column;
    justify-content: center;
  }
}




/* 2 Column to Rows Flexbox ------------------------------*/
.twoCol {
  display: flex;
  width: 100%;
  flex-direction: row;
  margin: auto;
  justify-content: space-around;
}

.twoColL, .twoColR {
  width: 48%;
  padding: 30px;
  margin: auto;
}

.twoColL30 {
  width: 33%;
}

@media screen and (max-width: 900px) {
  .twoCol {
    flex-direction: column;
    width: 100%;
  }

  .twoColL, .twoColR {
    width: 85%;
    padding: 10px;
    margin: auto;
  }
}

@media screen and (max-width: 500px) {
  .twoColL, .twoColR {
    padding: 0;
    padding-bottom: 30px;
  }
}

/* 2 Row to Column Flexbox ------------------------------*/
.twoRow {
  display: flex;
  width: 25%;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .twoRow {
    flex-direction: row;
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .twoRow {
    flex-direction: column;
    width: 95%;
  }
}


/* 1/3 Photo/Text Flexbox*/
.twoCol13 {
  display: flex;
  width: 100%;
  margin: auto;
  max-width: 900px;
  font-size: .8em;
  justify-content: center;
}

.twoCol13L {
  width: 40%;
  margin-left: 20px;
  margin-right: 10px;
}


.twoCol13R {
  width: 60%;
  text-align: left;
  margin-left: 50px;
  margin-right: 20px;
}

.twoCol13R p {
  font-size: 1.3em;
}

.twoCol13L img {
  max-width: 300px;
  margin-top: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 900px) {
  .twoCol13 {
    flex-direction: column;
  }

  .twoCol13R {
    margin: auto;
    width: 92%;
    max-width: 700px;
    text-align: center;
  }

  .twoCol13R p {
    font-size: 1.1em;
  }

  .twoCol13L {
    margin-left: 5px;
    margin-right: 5px;
    width: 100%;
  }

  .twoCol13L img {
    max-width: 300px;
    width: 100%;
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  
  .twoCol13R {
    max-width: 300px;
  }
  .twoCol13L img {
    margin-right: 2px;
    margin-left: 2px;
  }
}



/* TOP PAGE CSS */
#toplogo {
  width: 100%;
  max-width: 300px;
}

.headerbox {
  height: 220px;
  display: flex;
  flex-direction: row;
  margin: auto;
}


.headerboxL, .headerboxR {
  margin: auto;
}

.headerboxL {
  width: 50%;
  margin-left: 30px;
}


.headerboxR {
  width: 49%;
  margin-right: 40px;
  text-align: right;
}

.headerboxR h1 {
	margin: 0;

}

.headerboxR h2 {
	line-height: 90%;
}

.headerboxR a {
	text-decoration:none;
	color:black;
	
}

.linknocolor {
	text-decoration:none;
	color:black;
}


.headerboxR img {
  width: 240px;
}

@media screen and (max-width:900px){
  .headerbox {
    height: 260px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
  }

  .headerboxR, .headerboxL {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  #toplogo {
    max-width: 300px;
  }
} 

@media screen and (max-width:500px){
  .headerbox {
    height: 260px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
  }

  .headerboxR, .headerboxL {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  #toplogo {
    min-width: 200px;
    max-width: 300px;
  }
}

.sectionContents {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sectionHeaderTxt {
  max-width: 950px;
  width: 100%;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .sectionHeaderTxt {
    max-width: 600px;
  }

}

@media screen and (max-width: 500px) {
  .sectionHeaderTxt {
    max-width: 350px;
  }
}


.pageButton {
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: auto;
  padding-bottom: 50px;
  padding-right: 0px;
}

.pageButton img {
  max-width: 350px;
  float: right;
}

@media screen and (max-width: 900px) {
  .pageButton {
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
  }
  .pageButton img {
    float: none;
  }
}

@media screen and (max-width: 500px) {
  .pageButton {
    max-width: 300px;
  }
  .pageButton img {
    width: 100%;
    min-width: 200px;
  }
}

.contents {
  text-align: center;
}


.newsContainer {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.newsContainer img {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.newsContainer p {
  font-size: .95em;
}

@media screen and (max-width: 900px) {
  .newsContainer {
    max-width: 700px;
    padding: 20px;
    text-align: center;
  }

  .newsContainer h1 {
    padding: 0;
    text-align: center;
  }
}

.contentContainer h1 {
  text-align: left;
  padding-left: 0px;
}

.news {
  padding-left: 0;
}



/* ~~~~~ TOP PAGE ~~~~~ */


.departments {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 30px;

}



.depLR {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 60px;
  text-align: left;
}

.depLR h3 {
  padding-left: 30px;
  font-weight: bold;
}

.sanfrancisco {
  width: 50px;
  height: 50px;
  position: absolute;
  right:50%;
  margin-left: 30px;
}

@media screen and (max-width: 900px) {
	.sanfrancisco {
	position: static;
	}
}

.depLR img {
  width: 100%;
}





.picL {
  flex-direction: row;
}

.txtL {
  flex-direction: row-reverse;
}

.smCol {
  width: 45%;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 5px #111;
  box-shadow: 5px 5px 5px #111;  
}

.lgCol {
  width: 50%;
}


.lgCol a {
  color: black;
}

.lgCol a:hover {
 font-size: 105%;
 transition: 0.3s;
}

.lgCol p {
  color: black;
  padding-left:30px;
  padding-right:10px;
}



@media screen and (max-width: 800px) {
  .depLR {
    flex-direction: column-reverse;
  }

  .smCol, .lgCol {
    width: 100%;
    max-width: 400px;
    margin: auto;

  }

  .smCol {
    margin-bottom: 40px;
  }

  .lgCol {
    margin-bottom: 10px;
  }

}

.imgGrow img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.imgGrow:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}




.memberPhoto {
  width: 100%;
  max-width: 220px;
}


@media screen and (max-width: 900px) {
  .memberPhoto {
    margin: 3px;
  }

  .memberInfo {
    font-size: 1em;
    padding-top: 20px;
  }
}


/* ~~~~ CONTACT SECTION ~~~~ */
.contactSec {
  width: 100%;
  max-width: 1200px;
  margin: 200px auto;
  text-align:center;
}

.contactBtns {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contactBtns a {
  padding: 10px;
}

.contactBtns img {
  width: 100%;
  max-width: 400px;
}


.contactBtnSec {
  padding: 100px;
  margin: auto;
}

@media screen and (max-width: 900px) {
 .contactBtns {
    flex-direction: column;
  }
  
   .contactBtnSec {
    padding: 50px;
  }
}

.contactBtnSec img {
  max-width: 500px;
  width: 100%;
}

.yuilogo {
  width: 100%;
  max-width: 350px;
}


.botAddress {
  text-align: right;
  }
}


@media screen and (max-width: 500px) {
  .botAddress {
    font-size: .8em;
  }
}


/* ~~~~~~~~~~~~~~~~~ PAGES ~~~~~~~~~~~~~~~~~~~~*/

.GoogleMapBox {
width: 80%;
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
}


.pageHead {
  width: 100%;
}

.pageHeadPhoto {
  width: 100%;
}

.floatSection {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.float-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.float-container p {
  margin: 30px;
  font-size: 1.2em;
}

.float-container img {
  margin: 30px 30px 10px 30px;
  float: right;
  max-width: 270px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .float-container {
    padding: 0;
    max-width: 300px;
    text-align: center;
  }

  .float-container img {
    float: none;
    margin: auto;
  }

  .float-container p {
    margin: 20px 0 0 0;
  }
}

/* ~~~~~~~~ ABOUT PAGE ~~~~~~~~~~~~~*/
.aboutChart {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.flowChart {
  width: 100%;
  max-width: 800px;
  background-image: url("../images/cars_illust.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 360px;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .flowChart {
    background-image: url("../images/cars_illust02.jpg");
    max-width: 500px;
    height: 700px;
    margin: auto;

  }
}


.flowChartT {
  width: 100%;
  max-width: 800px;
  background-image: url("../images/about_chart02_t.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 360px;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .flowChartT {
    background-image: url("../images/about_chart_sp_t.jpg");
    max-width: 500px;
    height: 700px;
    margin: auto;

  }
}

@media screen and (max-width: 500px) {
  .disap500 {
    display: none;
  }
}


/* ~~~~~~~ ACCESS PAGE ~~~~~~~~~~~~*/
.contentContainer {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contentContainer h1 {
  text-align: left;
  padding-left: 60px;
}


.rowsToStacked {
  display: flex;
  flex-direction: raw; 
  padding-top: 20px;
  padding-bottom: 20px;
}

.rowsToStacked .L {
  width: 33%;
  text-align: left;
  
}

.rowsToStacked .R {
  width: 66%;
  text-align: left;
}

.rowsToStacked img {
  width: 100%;
  margin: auto;
}


@media screen and (max-width: 900px) {
  .contentContainer {
    max-width: 700px;
    padding: 0;
  }

  .contentContainer h1 {
    padding: 0;
    text-align: center;
  }
  .rowsToStacked {
    flex-direction: row;
  }

  .rowsToStacked .R, .rowsToStacked .L {
    text-align: center;
   
  }

}

@media screen and (max-width: 500px) {
  .rowsToStacked {
    flex-direction: column;
    margin: auto;
    
    text-align: center;
  }
  .rowsToStacked .R, .rowsToStacked .L {
    width: 100%;
    padding: 0;
	padding-top: 20px;
  }
}

@media screen and (min-width: 500px) {
  .app500 {
    display: none;
  }
}


.twoImgToStacked {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
}

.twoImgToStacked .imga {
  width: 100%;
}

.img_wrap{
  transition-duration: 0.5s;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

.twoImgToStacked .imgb {
  width: 100%;
}

.img_wrap2{
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.img_wrap2 img{
  width: 100%;
  transition-duration: 0.5s;
}

.img_wrap2:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}


.twoImgToStacked img {
  width: 50%;
  max-width: 450px;
  padding: 15px;
  margin: auto;
  margin-bottom: 10px;
}



@media screen and (max-width: 900px) {
  
  .twoImgToStacked img {    
    max-width: 450px;
	padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  .twoImgToStacked {
    flex-direction: column;
    margin: auto;
  }
  .twoImgToStacked img {
    width: 100%;
    max-width: 350px;
	padding-top: 0px;
    padding-bottom: 0px;
  }
}



.threeImgToStacked {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 900px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.threeImgToStacked img {
  width: 33%;
  max-width: 450px;
  padding: 15px;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .threeImgToStacked img {
    max-width: 400px;
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .threeImgToStacked {
    flex-direction: column;
    margin: auto;
  }
  .threeImgToStacked img {
    width: 100%;
    max-width: 300px;
  }
}




.img_wrap{
  transition-duration: 0.5s;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}





/* ~~~~~~~~ GALLERY PAGE ~~~~~~~~~~~~~*/


.modalSection {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.modalImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}


.modalImages img {
  width: 100%;
  max-width: 240px;
  cursor: pointer;
  transition: 0.3s all ease;
  margin: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  -webkit-box-shadow: 5px 5px 5px #111;
  box-shadow: 5px 5px 5px #111;
  display: inline; 
}

.modalImages img:hover {
  transform: scale(0.9);  
}

@media screen and (max-width: 600px) {
  .modalImages img {
    max-width: 150px;
    margin: 15px;
  }
}

.modal {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 1;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
}

.modalContent {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modalImg {
  width: 40%;
  min-width: 360px;
  max-width: 500px;

}

@media screen and (max-width: 500px) {
  .modalImg {
    width: 80%;
    min-width: auto;
  }
}

.modalTxt {
  margin-top: 1em;
}

.close {
  position: absolute;
  top: 4em;
  right: 2em;
  z-index: 1;
  font-size: 2em;
  cursor: pointer;
}

.modal.appear {
  opacity: 1;
  pointer-events: all;
}

.modal.appear .modalImg, .modal.appear .modalTxt {
  animation: zoom 0.3s linear;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.productsTail {
  margin: auto;
  width: 100%;
  padding: 50px;
}

/*~~~~~~~~~ CONTACT PAGE ~~~~~~~~~~~~~~~~*/
.contactFlex {
  display: flex;
  width: 100%;
  max-width: 1000px;
}

.field {
  width: 40%;
  padding: 10px 20px;
  float: left;
}

.input {
  width: 60%;
}

.req { 
  background-color: #F19AAD;
  color: white;
  padding: 0px 6px;
  margin-left: 10px;
  float: right;
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

select {
  background: white;
  color: grey;
}

.inquiry {
	width: 60%;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #F19AAD;
  color: white;
  padding: 15px 45px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: auto;
  font-size: 1.2em;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: rgb(83, 83, 83);
}

/* Add a background color and some padding around the form */
.contactContainer {
  width: 100%;
  max-width: 900px;
  margin: auto;
  margin-top: 50px;
  border-radius: 5px;
  padding: 20px;
  text-align: left;   
}

.submitBtn {
  text-align: center;
}

@media screen and (max-width: 680px) {

  .contactContainer {
    margin-top: 10px;

  }

  .contactFlex {
    flex-direction: column;
    text-align: center;
  }

  .field {
    width: 100%;
    padding: 0;
    float: left;
    margin-top: 20px;
  }
  
  .input {
    width: 100%;
  }

  .req {
    float: none;
  }

}






/* ~~~~~ SERVICE ~~~~ */
.serviceTopTxt {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.numTxtFlex {
  width: 100%;
  max-width: 840px;
  margin: auto;
  display: flex;
  text-align: left;
  margin-top: 30px;
  padding: 20px;
}

.numR {
  flex-direction: row-reverse;
}

.numTxtFlex img {
  max-width: 120px;
  margin: auto;
}

.photoBox {
	width: 100%;
	margin:auto;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
  .numTxtFlex {
    flex-direction: column;
    text-align: center;
  }

  .numTxtFlex img {
    max-width: 80px;
  }
}

@media screen and (max-width: 500px) {
  .numTxtFlex {
    max-width: 300px;
  }
}

.serviceTxt {
  margin: auto;
}

.serviceChart {
  width: 100%;
  max-width: 700px;
  padding: 20px;
  margin: auto;
}

.serviceChart img {
  width: 100%;
  max-width: 600px;
}

@media screen and (max-width: 500px) {
  .serviceChart p {
    max-width: 300px;
    margin: auto;
    margin-top: 30px;
  }
}

.teamIllust  {
  width: 100%;
  max-width: 700px;
  padding: 20px;
}

@media screen and (max-width: 500px) {
  .teamIllust {
    padding: 0px;
  }
}



/*~~~~ CLASS SNIPPITS ~~~~*/

/* RESPONSIVE */

/* Breaks UNDER 900 */

@media screen and (min-width: 900px) {
  .respBR {
    display: none;
  }
}

/* Breaks OVER 900 */

@media screen and (min-width: 900px) {
  .wideBR {
    display: none;
  }
}



/* ALIGNMENT */
.taL {text-align: left;}
.taJustify {text-align: justify}

/* FONT MODIFICATIONS */
.bold {font-weight: bold;}
.ul {text-decoration: underline;}
.redTxt { color: red;}

/* PADDING */
.p30 {padding: 30px;}

/* PADDING TOP/BOTTOM */
.pt20 {padding-top: 20px;}
.pt50 {padding-top: 50px;}
.pt100 {padding-top: 100px;}
.pt200 {padding-top: 200px;}
.pb15 {padding-bottom: 15px;}
.pb20 {padding-bottom: 20px;}
.pb50 {padding-bottom: 50px;}
.pb100 {padding-bottom: 100px;}
.pb200 {padding-bottom: 200px;}
.pr20 {padding-right: 20px;}
.pr50 {padding-right: 50px;}
.pl20 {padding-left: 20px;}
.pl50 {padding-left: 50px;}
.pl60 {padding-left: 60px;}

/* MARGIN TOP/BOTTOM */
.mt20 {margin-top: 20px;}
.mt50 {margin-top: 50px;}
.mt100 {margin-top: 100px;}
.mt200 {margin-top: 200px;}
.mb20 {margin-bottom: 20px;}
.mb50 {margin-bottom: 50px;}
.mb200 {margin-bottom: 200px;}
.ml20 {margin-left: 20px;}
.mr20 {margin-right: 20px;}


.bottomborder {border-bottom: 4px black solid;}
 