/* nav styles start here */
.header{
	text-align: center;
	position: relative;
	width:100%;
	margin-bot:30px;
	
}
.logo{
}
h5{
	font-weight: 400;
}
nav[role="menu"]{
	background-color: #373737;
	position: absolute;
	text-align: left;
	top:100%;
	left:0;
	width: 100%;
	transform: scale(1, 0);
	transform-origin: top;
	transition: transform 300ms ease-in-out 250ms;
}
nav ul{
	padding:0;
	margin:0;
	list-style: none;
}
nav[role="menu"] li{
	margin-bottom: 1em;
	margin-left:1em;	
}
nav[role="menu"] a{
	text-decoration: none;
	color:white;
	font-size: .85rem;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
}
nav[role="menu"] a:hover{
	color: grey;
}
.nav-toggle{
	display: none;
}
.nav-toggle:checked ~nav[role="menu"]{
	transform: scale(1,1);
}
.nav-toggle:checked ~nav[role="menu"] a{
	opacity: 1;
	transition: opacity 250ms ease-in-out 250ms;
}
/*checkbox label*/

.nav-toggle-label{
	position:absolute;
	top:0;
	left:0;
	margin-left:1em;
	height:100%;
	display:flex;
	align-items: center;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after{
	display:block;
	background: black;
	height:2px;
	width:2em;
	border-radius: 2px;
	position:relative;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after{
	content:'';
	position:absolute
}
.nav-toggle-label span::before{
	bottom: 7px;
}
.nav-toggle-label span::after{
	top:7px;
}
/*screen resize*/
@media screen and (min-width:800px){
	.nav-toggle-label{
		display: none;
	}
	.header{
		display:grid;
		grid-template-columns: 1fr auto 5fr 1fr;
	}
	.logo{
		grid-column: 2/3;
	}
	nav[role="menu"]{
		all:unset;
		grid-column: 3/4;
		display:flex;
		justify-content: flex-end;
		align-items:center;
	}
	nav[role="menu"] ul{
		display:flex;
	}
	nav[role="menu"] li{
		margin-left:3em;
		margin-bottom:0;
	}
	nav[role="menu"] a{
		opacity: 1;
		position:relative;
	}
	nav[role="menu"] a::after{
		content:'';
		display:block;
		height:5px;
		background: black;
		position: absolute;
		bottom:-.3em;
		left:0;
		right:0;
		transform: scale(0,1);
		transition:transform ease-in-out 200ms;
		
	}
	}
	nav[role="menu"] a:hover::after{
		transform:scale(1,1);
	}
/* Global */
.container{
	width: 80%;
	height: cover;
	margin: auto;
	overflow: hidden
}
.designs{
	width:100%;
	height:auto;
}
.about{
	float: right;
}
/* header*/
header{
	width: 100%;
	height: 100%; 
	padding-top:30px;
	min-height: 70px;
	}
header a{
	color: white;
	font-family: archivo medium;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 17px;
}
header a:hover{
	color:#3C4A4A;
}
header a:active{
	color:#647D7D;
}
header ul{
	padding:0;
	margin:0;
	
}
header li{
	float:left;
	display: inline;
	padding: 0,20px,0,20px;
	margin-right: 40px;
}
header #branding{
	float:left;
}
header #branding h1{
	margin:0;
}
header nav{
	float: right;
}
header h1{
	font-family: archivo bold;
	color: white;
	font-size:90px;
	margin-top: 15%;
	line-height: normal;
	margin-left: 25%;
	margin-bottom: 0%;
	padding-bottom: 0%;
}
header h2{
	font-family: archivo bold;
	color: white;
	align: center;
	font-size: 47px;
	margin-top: 0%;
	padding-top:0%;
	margin-left: 25%;
	margin-bottom: 0%;
	padding-bottom: 1%;
	line-height: normal;
}
header h3{
	font-family: archivo bold;
	line-height: normal;
	color: white;
	align: center;
	font-size: 27px;
	margin-top: 0%;
	padding-top:0%;
	margin-left: 25%;
	margin-bottom: 2%;
	padding-bottom: 0%;
}
.button1{
	margin-left: 30%;
	border-radius: 40px;
	text-align: center;
	font-family: archivo medium;
	font-size:20px;
	background-color: #ACACAC;
	text-decoration: none;
	height: 50px;
	width: 250px;
}
.button1:hover{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
	background-color: #2D2D2D;
	outline-color: #2D2D2D;
	color:white;
}
/*links*/
.holder1{
	width:40%;
	height: 10%;
	margin-top: 4%;
	margin-right:5%;
	float: left;
	}
.holder1:hover{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,1), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*grids*/
.grid-container1 {
	margin-left:8%;
	margin-top: 10%;
  display: grid;
  grid-template-columns: 10% 10% 10%;
}
.grid-container {
	margin-left:8%;
	margin-top: 5%;
  display: grid;
  grid-template-columns: 30% 30% 30%;
grid-template-rows: 30% 30% 30%;
	padding: 10px;
}
.grid-item {
  padding: 5%;
  font-size: 30px;
  text-align: center;
}
.grid-item>img{
	object-fit: cover;
	max-width: 100%;
	background-size:fill;
	background-position: center;
}
.grid-item:hover{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,1), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*Gallery */
div.gallery {
  border: 1px solid #ccc;
	align:center;
	margin-left: 20%;
}
div.gallery:hover {
  border: 1px solid #777;
}
div.gallery img {
  width: 100%;
  height: auto;
}
.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}
@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}
@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*contact form */
.container1{
	width: 60%;
	margin: auto;
	overflow: hidden
}
h4{
	font-size: 35px;
	margin-bottom:1%;
	color:white;
}
p{
	width: 80%;
	color:white;
	margin-top:0%;
	margin-bottom: 10%;
}
p1{
	color:white;
	margin-top:500%;
	font-size:20px;
}
label{
	color:white;
}
input[type=text], select, textarea {
	width:100%;
	padding:12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top:6px;
	margin-bottom: 16px;
	resize: vertical;
}
input[type=submit] {
	background-color:#004CFF;
	color:white;
	padding:12px 20px;
	border:none;
	border-radius:4px;
	cursor: pointer;
}
input[type=submit]:hover{
	background-color:#0038BB;
}
