body{
	margin: 0;
	padding: 0;
	background-color: #fff;
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #262626;
	font-size: 20px;
	line-height: 29px;
}
a,a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
	height: auto;
}
p{
	margin: 0 0 30px;
}
section{
	margin-bottom: 100px;
}
h1, h2,h3,h4{
	margin: 0 0 30px;
}
h3{
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	color: #262626;
}
.btn {
	position: relative;
	padding: 9px 15px;
	border-radius: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}



.btn-primary {
	background: #262626;
	color: #fff;
	border-width: 1px;
    border-color: #262626;	
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #fff;
	color: #262626;	
    border-color: #262626;	
	box-shadow: none;	
}

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
	background-color: #fff;
	color: #262626;	
    border-color: #262626;	
}
/* Keep long-form content comfortably inside the viewport. */
@media (min-width: 1400px){
	.container-xxl{
		max-width: 1320px;
	}
}

/* Preserve comfortable side spacing on phones and small tablets. */
@media (max-width: 767.98px){
	.container,
	.container-xxl{
		padding-left: 20px;
		padding-right: 20px;
	}
}
.site-branding h1{
	padding: 10px 15px;
	margin: 0 0 30px;
	font-size: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: 800;
	background-color: #262626;
}
.site-branding h1 a{
	color: #fff;
	display: block;
}
.site-branding h1 span{
	display: block;
}
@media (min-width: 992px){
	.site-branding h1{
		font-size: 39px;
		line-height: 35px;
		padding: 15px 20px;
	}	
}
.nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	text-align: center;
}
.nav ul li{
	display: inline-block;
	margin: 0 8px;
}
.nav ul li:first-child{
	margin-left: 0;
}
.nav ul li:last-child{
	margin-right: 0;
}
@media (min-width: 992px){
	.nav ul li{
		margin: 0 20px;
	}	
}
@media (min-width: 1200px){
	.nav ul li{
		display: inline-block;
		margin: 0 30px;
	}	
}
@media (max-width: 767.98px){
	.nav ul li:last-child{
		display: none;
	}
}
.nav ul li a{
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	text-transform: uppercase;
	color: #262626;
	position: relative;
	padding: 0 0 3px;
}
@media (min-width: 992px){
	.nav ul li a{
		font-size: 18px;
		line-height: 25px;
		letter-spacing: 0.1em;
	}	
}
.nav ul li a::after{
    content: " ";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #262626;
    width: 0;
    height: 2px;
    transition: all 300ms ease-out;
}
.nav ul li a:hover::after,
.nav ul li a.active:after{
    width: 100%;
}
.section-title{
	font-weight: 700;
	font-size: 20px;
	padding: 0px 5px 0px 15px;
	line-height: 30px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(38, 38, 38, 0.3);
	position: relative;
	display: inline-block;
	z-index: 1;
	margin: 0 0 45px 0;
}
.section-title:hover{
	color: #fff;
}
.section-title:before{
	content: '';
	width: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #262626;
	transition: all 0.5s;
	z-index: -1;
}
.section-title:hover:before{
	width: 100%;
}

.tab-nav{
	list-style: none;
	padding: 0;
}
.tab-nav li{
	width: 49%;
	padding: 0 5px;
	vertical-align: top;
	display: inline-block;
	margin: 0 0 20px;
}
@media (min-width: 992px){
	.tab-nav li{
		width: 24%;
		padding: 0 10px;
	}	
}
.tab-nav li a{
	display: block;
	padding: 20px;
	font-size: 20px;
	line-height: 30px;
	color: #262626;
	font-weight: 700;
	width: 100%;
	min-height: 130px;
	border: 2px solid #262626;
}
.tab-nav li a:hover,
.tab-nav li.active a{
	background: #262626;
	color: #fff;
}
@media (min-width: 1200px){
	.tab-nav li a{
		padding: 25px;
		font-size: 24px;
		line-height: 30px;
		min-height: 150px;
	}	
}
@media (min-width: 1600px){
	.tab-nav li a{
		padding: 35px;
		font-size: 30px;
		line-height: 40px;
		min-height: 200px;
	}	
}
.tab-content p{
	font-size: 18px;
}
.tab-content{
	display: none;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeIn 0.5s ease 1 forwards
}
.tab-content.active{
	display: block
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
.form-content label{
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0 0 5px 15px;
	display: block;
}
.form-group{
	margin: 0 0 40px;
}
.form-control,textarea{
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	border-top: 0;
	border-right: 0;
	padding: 10px 15px;
	border-color: #262626;
	border-width: 2px;
	border-radius: 0;
	background-color: transparent;
}
.form-control:focus{
	outline: 0;
	box-shadow: none;
	border-color: #262626;
}
::placeholder{
	opacity: 1;
	color: rgba(38, 38, 38, 0.3);
}
textarea{
	width: 100%;
	height: calc(100% - 24px);
	resize: none;
}
.btn-submit{
	margin: 40px 0 0;
	padding: 9px 15px;
	border: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(38, 38, 38, 0.3);
	background: rgba(38, 38, 38, 0.1);
	transition: all 0.5s;
}
.btn-submit:hover{
	color: #fff;
	background: #262626;
}
.project-h{
	padding: 0 0 20px;
	border-bottom: solid 1px #262626;	
}
.project-h span{
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 160%;
	color: rgba(38, 38, 38, 0.3);	
}
.project-h i{
	margin: 0 20px;
	font-size: 30px;
}
.project-h h3{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	color: #262626;	
}
.gallery h4{
	font-weight: 700;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #262626;
	padding: 0 0 0 20px;
	margin: 20px 0 40px;
}
.site-footer{
	padding: 0 0 20px 0;
}
.site-footer span{
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.1em;
	color: rgba(38, 38, 38, 0.3);	
}
.site-footer strong{
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.1em;
	color: #262626;
}
.site-footer a{
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0.1em;
	color: #262626;
	margin: 0 10px;
}

