/** {
	border: solid 1px #000;
}*/


.navbar {
  	background: #fff;
  	box-shadow: 0px 2px 4px rgba(0, 0, 0, .5);
  	z-index: 1;
}

.navbar-light .navbar-brand,
.navbar-brand {
	margin-left: 10px;
}

.navbar-light .navbar-nav .nav-link,
.nav-link {
	font-family: Montserrat;
	font-weight: 700;
	font-size: 16px;
	color: #4d4d4d;
	margin-right: 10px;
}

.navbar-light .navbar-nav .nav-link:hover,
.nav-link:hover {
	background-color: #fff;
	color: #F58220;
	text-decoration: none;
}

.hero-image {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../material/hero-image.jpg");
	max-width: 1920px;
	width: 100%;
	height: 75vh;
	background-position: center;
  	background-size: cover;
  	position: relative;
}

.hero-text {
  	text-align: left;
  	position: absolute;
  	width: 42%;
  	top: 50%;
  	left: 30%;
  	transform: translate(-50%, -50%);
  	font-family: Montserrat;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	color: #fff;
	animation: fadeInDown 2s;
}

	/*animation*/

	@keyframes fadeInDown {
	  from {
	    opacity: 0;
	    -webkit-transform: translate3d(-50%, -20%, 0);
	    transform: translate3d(-50%, -20%, 0);
	  }

	  to {
	    opacity: 1;
	    -webkit-transform: translate3d(-50%, -50%, 0);
	    transform: translate3d(-50%, -50%, 0);
	  }
	}

.fadeInDown {
  	-webkit-animation-name: fadeInDown;
  	animation-name: fadeInDown;
}

.container-1 {
	display: grid;
	grid-template-columns: 1fr ;
	justify-content: space-evenly;
	padding: 50px 100px 50px 100px;
}

.wrapper-1 {
	display: grid;
	grid-template-areas: 
	"service-title service-title service-title"
	"icon-1 icon-2 icon-3"
	"icon-title-1 icon-title-2 icon-title-3"
	"icon-desc-1 icon-desc-2 icon-desc-3";

	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	justify-items: center;
}

.service {
	grid-area: service-title;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 32px;
	text-align: center;
	line-height: 1.2;
	color: #4d4d4d;
	margin-bottom: 30px;
}

.icon-1 {
	grid-area: icon-1;
}

.icon-2 {
	grid-area: icon-2;
}

.icon-3 {
	grid-area: icon-3;
}

.icon-title-1 {
	grid-area: icon-title-1;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 18px;
	color: #4d4d4d;
	text-align: center;
	margin-top: 30px;
}

.icon-title-2 {
	grid-area: icon-title-2;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 18px;
	color: #4d4d4d;
	text-align: center;
	margin-top: 30px;
}

.icon-title-3 {
	grid-area: icon-title-3;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 18px;
	color: #4d4d4d;
	text-align: center;
	margin-top: 30px;
}

.icon-desc-1 {
	grid-area: icon-desc-1;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 1.2;
	max-width: 300px;
}

.icon-desc-2 {
	grid-area: icon-desc-2;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 1.2;
	max-width: 300px;
}

.icon-desc-3 {
	grid-area: icon-desc-3;
	font-family: Montserrat;
	font-weight: 500;
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 1.2;
	max-width: 300px;
}

.container-2 {
	background-color: #C51D26;
	padding: 50px 100px;
}

.wrapper-2 {
	display: grid;
	grid-template-areas: 
	"logo-1 logo-1"
	"photo-1 desc-1"
	"photo-1 btn-1";

	grid-template-columns: 450px minmax(300px, 800px);
	justify-content: center;
}

.sam-logo {
	grid-area: logo-1;
	justify-self: center;
	margin-bottom: 50px;
}

.sam-photo {
	grid-area: photo-1;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, .5);
}

.sam-desc {
	grid-area: desc-1;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	text-align: left;
	line-height: 1.3;
	padding-left: 20px;
}

.btn-vs-1 {
	grid-area: btn-1;
	justify-self: start;
	margin-left: 20px;
}

.btn-red {
	font-family: Montserrat;
	font-weight: 500;
	font-size: 15px;
	text-align: center;
	background-color: none;
	border: solid 2px #fff;
	padding: 7px 15px;
	border-radius: 5px;
	color: #fff;
}

.btn-red:hover {
  background-color: #fff;
  text-decoration: none;
  color: #C51D26;
}

.container-3 {
	background-color: #222;
	padding: 50px 100px;
}

.wrapper-3 {
	display: grid;
	grid-template-areas: 
	"logo-2 logo-2"
	"desc-2 photo-2"
	"btn-2 photo-2";

	grid-template-columns: minmax(300px, 800px) 450px;
	justify-content: center;
}

.xc-logo {
	grid-area: logo-2;
	justify-self: center;
	margin-bottom: 50px;
}

.xc-photo {
	grid-area: photo-2;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, .5);
}

.xc-desc {
	grid-area: desc-2;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	text-align: left;
	line-height: 1.3;
	padding-right: 20px;
}

.btn-vs-2 {
	grid-area: btn-2;
	justify-self: start;
}

.btn-black {
	font-family: Montserrat;
	font-weight: 500;
	font-size: 15px;
	text-align: center;
	background-color: none;
	border: solid 2px #fff;
	padding: 7px 15px;
	border-radius: 5px;
	color: #fff;
}

.btn-black:hover {
	background-color: #fff;
	text-decoration: none;
	color: #222;
}

.footer {
	background-color: #CFD8DC;
	margin: 0px;
}

.footer-text {
	font-family: Montserrat;
	font-weight: 500;
	font-size: 15px;
	text-align: center;
	padding: 20px 40px;
	margin: 0px;
}

.contact-hero-image {
	background-image: url("../material/location_map/location_map.png");
	max-width: 1920px;
	width: 100%;
	height: 74vh;
	background-position: center;
	background-size: cover;
	position: relative;
}

.contact-wrapper-1 {
	display: grid;
	grid-template-areas: 
	"left-info right-info";
	/* grid-template-columns: repeat(3, 1fr); */
	grid-template-rows: auto;
	/* justify-items: center; */
}

.contact-title {
	color: #F58220;
	font-size: 24px;
	font-weight: bold;
	font-family: Montserrat;
}

.contact-subtitle {
	color: #4D4D4D;
	font-size: 21px;
	font-weight: bold;
	font-family: Montserrat;
}

.contact-desc {
	color: #4D4D4D;
	font-size: 18px;
	font-weight: 400;
	font-family: Montserrat;
}

.contact-container-1 {
	display: grid;
	grid-template-columns: 1fr ;
	justify-content: space-evenly;
	/* padding: 40px 180px 40px 180px; */
	padding: 50px 100px 50px 100px;
}

.contact-form-box {
	background-color: #fff;
	width: 500px;
	height: 515px;
	border-radius: 5px;
}

.contact-form-box-title {
	color: #666666;
	font-size: 24px;
	font-weight: bold;
	font-family: Montserrat;
	margin-left: 0px;
	margin-right: 0px;

}

.contact-form-box-title-container {
	display: grid;
	justify-content: center;
	padding-top: 30px;
}

.contact-form-input-container {
	padding: 10px 50px 10px 50px;
}

.effect7
{
	position:relative;
	-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.1) inset;
	-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.1) inset;
	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}
.effect7:before, .effect7:after
{
    content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 4px rgba(0,0,0,0.3);
    -moz-box-shadow:0 0 4px rgba(0,0,0,0.3);
    box-shadow:0 0 4px rgba(0,0,0,0.3);
    top:0;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
		border-radius:100px / 10px;

}
.effect7:after
{
	right:10px;
	left:auto;
	-webkit-transform:skew(8deg) rotate(3deg);
	-moz-transform:skew(8deg) rotate(3deg);
	-ms-transform:skew(8deg) rotate(3deg);
	-o-transform:skew(8deg) rotate(3deg);
	transform:skew(8deg) rotate(3deg);
}

input[type=text], select {
  width: 100%;
  padding: 11px 15px 10px 15px;
  margin: 8px 0;
  display: inline-block;
  border: 0.5px solid #cccccc;
  border-radius: 5px;
	box-sizing: border-box;
	height: 45px;
	color:#4D4D4D;
}

textarea, select {
  width: 100%;
  padding: 12px 15px 10px 15px;
  margin: 8px 0;
  display: inline-block;
  border: 0.5px solid #cccccc;
  border-radius: 5px;
	box-sizing: border-box;
	color:#4D4D4D;
}

::placeholder {
	color: #CCCCCC;
	font-size: 18px;
}

input[type=submit] {
	width: 120px;
	height: 45px;
  background-color:#F58220;
  color: white;
  padding: 11px 31px 13px 31px;
  /* margin: 8px 0; */
  border: none;
  border-radius: 4px;
	cursor: pointer;
}

a, a:hover {
	color: #4d4d4d
}

.waze-icon {
	width: 28px; height: 28px; margin-bottom: 5px
}