@charset "UTF-8";
/* CSS Document */

html{
	scroll-behavior: smooth;
}
body{
	padding: 0;
	margin: 0;
	width:100%;
}
input{
	font-size: 20px;
}

h1, label, #submit{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	color: #ec363a;
	margin-bottom: 20px;
	font-size: 25px;
}

p{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: 30px;
	color:#303030;
	font-weight: 300;
}



/*START HERO*/
#heroContainer{
	width:100%;
	height: 80vh;
	background-color:lightgray;
	background-image: url("KitchenCab_Images/home1.jpg");
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: inherit;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#affordable{
	position: absolute;
	right: 0;
	top: 0;
	background-color: #ec363a;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	padding:20px;
	margin: 0;
	font-weight:100;
	box-shadow: 1px 1px 8px #000;
}
#heroLogo{
	width: 350px;
}
@media only screen and (max-width:980px){
	#heroContainer{
		background-attachment:scroll;
	}	
	#affordable{
		width:100%;
	}	
}
/*END HERO*/

/*SCROLL NAV START*/
#scrollNavContainer{
	width:100%;
	background-color: #ec363a;
	padding: 10px 0;
	box-shadow: 0 0px 6px #000;
	position: sticky;
	top: 0;
	margin-bottom: 20px;
	z-index: 100000;
}
#scrollNavUl{
	display: flex;
	justify-content: center;
	align-items: center;
}
.scrollNavLi{
	display: inline-block;
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	margin: 0 30px;
	color: #fff;
	cursor: pointer;
	transition: .5s;
}
.scrollNavLi:hover{
	opacity: .6;
}

@media only screen and (max-width:980px){
	#scrollNavContainer{
		display: none;
	}	
}
/*SCROLL NAV END*/

/*WELCOME CONTENT START*/
#welcomeContentContainer{
	width: 85%;
	margin: 0 auto;
}
#welcomeH1{

	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	text-align: center;
	color: #ec363a;
	margin-bottom: 20px;
}
#welcomeContent{
	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: 30px;
	color:#303030;
	font-weight: 300;
}
@media only screen and (max-width:980px){
	#welcomeContentContainer{
		width:100%;
	}	
}
/*WELCOME CONTENT END*/

/*SHOP KITCHEN CONTENT BEGIN*/
#shopKitchenContainer{
	height: 450px;
	width: 85%;
	background-color:#f1f1f1;
	display: grid;
	grid-template-columns: 50% 50%;
	margin: 0 auto;
    overflow: hidden;
}
#welcomeContent{
	padding: 0 30px;
}
#cabinetContainer{
	width:100%;
	height: 100%;
	grid-column: 1;
	grid-row: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cabinetDoor{
	display: inline-block;
	width:33%;
	box-shadow: 0px 0px 8px #000;
}
#cabinetDoor2,#cabinetDoor3{
	margin-left: -30px
}

#cabinetDoor1{
	transform: translateY(100px);
}
#cabinetDoor2{
	transform: translateY(100px);
}
#cabinetDoor3{
	transform: translateY(100px);
}

#shopKitchenBigContentContainer{
	display: flex;
	justify-content: center;
	align-items: center;
}
#shopKitchenContentContainer{
	width:85%;
}
#shopKitchenH1{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	color: #ec363a;
	margin-bottom: 20px;
}
#shopKitchenContent{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: 30px;
	color:#303030;
	font-weight: 300;
}
.bigButtonContainer{
	display: grid;
	grid-template-columns: 1;
	grid-template-rows: 1;
	overflow: hidden;
	border: 2px solid #ef3e42;
	width: 250px;
	border-radius: 3px;
	cursor: pointer;
	margin: 20px 0;
}
.buttonContainer{
	width: 250px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	flex-direction: column;
	grid-row: 1;
	grid-column: 1;
	z-index: 1000;
	margin: 0;
	padding: 0;
}
.buttonLink{
	text-decoration: none;
}
.buttonContent{
	color:#ef3e42;
	font-weight: 550;
	margin: 0;
	padding: 0;
	transition:.3s;
	font-size:20px;
	text-transform:uppercase;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 400;
}
.transition{
	background-color:#ef3e42;
	width: 250px;
	height: 50px;
	position: relative;
	grid-row: 1;
	grid-column: 1;
	margin: 0;
	padding: 0;
	transform: translateX(-100%);
	transition:.3s;
	border-left: 4px solid #ef3e42;
	border-right: 4px solid #ef3e42;
}
.bigButtonContainer:hover .transition{
	transform: translateX(0%);
}
.bigButtonContainer:hover .buttonContent{
color:#fff;
}
@media only screen and (max-width:980px){
	#shopKitchenContainer{
		width:100%;
		display: block;
		height: auto;
		padding-bottom: 20px;
	}
	#cabinetContainer{
		height: 300px;
		overflow: hidden;
		display: block;
		text-align: center;
	}
	#cabinetDoor2,#cabinetDoor3{
		margin: 0;
	}
	#shopKitchenBigContentContainer{
		display: block;
		text-align: center;
		width: 100%;
	}
	#shopKitchenContentContainer{
		width:100%;
		text-align: center;
	}
	.bigButtonContainer{
		margin: 20px auto;
	}
	#shopKitchenContent{
		padding: 0 30px;
	}
	
}
/*SHOP KITCHEN CONTENT END*/

/*SHOP BATHROOM BEGIN*/
		#shopBathContainer{
			height: 450px;
			width: 85%;
			background-color:#f1f1f1;
			display: grid;
			grid-template-columns: 50% 50%;
			margin: 20px auto;
		}
		#shopBathBigContentContainer{
			grid-column: 1/2;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		#shopBathContentContainer{
			width: 85%;
		}
		#shopBathImageContainer{
			grid-column: 2/3;
			height: 100%;
			background-image: url(KitchenCab_Images/shopBathImage.jpg);
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
		}
		
		#shopBathH1{
			font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
			font-weight: 400;
			color: #ec363a;
			margin-bottom: 20px;
		}
		
		#shopBathContent{
			font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
			font-size: 20px;
			line-height: 30px;
			color:#303030;
			font-weight: 300;
		}

@media only screen and (max-width:980px){
	#shopBathContainer{
		grid-template-rows: 300px auto;
		grid-template-columns: 100%;
		width:100%;
		height: auto;
		text-align: center;
		padding-bottom: 30px;
	}
	#shopBathContentContainer{
		grid-row: 2;
		grid-column: 1/3;
		height: auto;
	}
	#shopBathImageContainer{
		grid-row: 1;
		grid-column: 1/3;
		height:300px;
	}
}
		/*SHOP BATHROOM END*/


/*FINANCE BEGIN*/
		#financeContainer{
			height: 500px;
			width: 100%;
			background-color:lightgray;
			background-image: url(KitchenCab_Images/financeImage.jpg);
			background-size: cover;
			background-repeat: no-repeat;
			background-blend-mode: multiply;
			background-position: center;
			background-attachment: fixed;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
			margin: 20px 0 20px 0
		}
		#financeH1{
			font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
			font-weight: 400;
			color: #fff;
			margin-bottom: 20px;
		}
@media only screen and (max-width:980px){
	#financeContainer{
		background-attachment: scroll;
	}	
}
		/*FINANCE END*/

/*PAST WORK BEGIN*/
		#pastWorkContainer{
			height: 450px;
			width: 85%;
			background-color:#f1f1f1;
			margin: 0px auto;
			padding: 30px;
			text-align: center;
			display: flex;
			justify-content: center;
			align-items: center;
			flex-direction: column;
		}
		#photoBigContainer{
			display: grid;
			grid-template-columns: 33%;
			overflow: hidden;
			grid-gap: 10px;
			height:60%;
		}
		
		.photoContainer{
			overflow: hidden;
		}
		
		#pastPhoto1{
			grid-column: 1/2;
			overflow: hidden;
		}
		#pastPhoto2{
			grid-column: 2/3;
			overflow: hidden
		}
		#pastPhoto3{
			grid-column: 3/4;
		}
		
		#pastPhoto1 img, #pastPhoto2 img, #pastPhoto3 img{
			transition: 10s;
			cursor: pointer;
		}
		
		#pastPhoto1 img:hover, #pastPhoto2 img:hover, #pastPhoto3 img:hover{
			transform: scale(1.2);
		}

@media only screen and (max-width:980px){
	#pastWorkContainer{
		width:100%;
		display: block;
		height: auto;
	}
	#photoBigContainer{
		display: block;
		overflow: visible;
		width:100%;
	}
	.photoContainer{
		width:100%;
	}
	
	#pastPhoto1 img:hover, #pastPhoto2 img:hover, #pastPhoto3 img:hover{
			transform: scale(1);
	}
}
		
		/*PAST WORK END*/
	
	/*TESTIMONIAL BEGIN*/
		#testimonialContainer{
			width: 85%;
			background-color:#ec363a;
			margin: 0 auto 20px auto;
			padding: 30px;
			text-align: center;
		}
		#testimonialContent{
			color: #fff;
		}

@media only screen and (max-width:980px){
	#testimonialContainer{
		width:100%;
	}	
}
		/*TESTIMONIAL END*/


/*CONTACT START*/
#contactContainer{
	height: 600px;
	width: 100%;
	background-color:gray;
	background-image: url(KitchenCab_Images/home1.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	
	
}

#form{
	display: grid;
	grid-template-rows: 3;
	grid-template-columns: 50% 50%;
	grid-gap: 20px;
}

#contactFormContainer{
	width:85%;
	background-color:rgba(255,255,255,.9);
	padding:30px;
	
}
#nameContainer{
	grid-column: 1/2;
	grid-row: 1;
	margin-bottom: 20px;
}
#emailContainer{
	grid-column: 2/3;
	grid-row: 1;
	margin-bottom: 20px;
}
#messageContainer{
	grid-row: 2;
	grid-column: 1/3;
	margin-bottom: 20px;
}
.inputField{
	width:100%;
	background-color:rgba(255,255,255,0);
	border: 2px solid #ec363a;
	outline: none;
	border-radius: 2px;
}

@media only screen and (max-width:980px){
	#form{
		display: block;
	}
	#contactContainer{
		background-attachment: scroll;
		height: auto;
	}
}
/*CONTACT END*/

#backButton{
    padding:20px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #fff;
    color:#cc1500;
    border:2px solid #cc1500;
    font-size: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
}
#backButton:hover{
    opacity: .8;
}
