@charset "utf-8";
@import url("../fonts/flaticon.css");
body {
	margin:0;
	padding:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: white;
	color: #424242;
	line-height:1em;
	opacity: 0;
	transition: opacity 0.5s ease;
	overflow: hidden;
}
body.ready {
	opacity: 1;
}
body.loading-done {
	overflow: auto;
}
body.overlay-open {
	overflow: hidden;
}
#loading {
	position: fixed;
	left:0;
	right:0;
	top:0;
	bottom: 0;
	background-color: #c85123;
	z-index: 9999;
	opacity: 1;
	transition: opacity 2s ease;
}
.loading-done #loading {
	opacity: 0;
	pointer-events: none;
}
p {
	line-height: 1.5em;
}
.text-white {
	color:white;
}
.mt-1 {
	margin-top: 10px !important;
}
.mt-2 {
	margin-top: 20px !important;
}
.mb-0 {
	margin-bottom: 0px !important;
}
.mb-2 {
	margin-bottom: 20px !important;
}
.btn {
	box-shadow: none;
	color:white;
	border-color:white;
	border-radius: 0;
}
.btn.active, .btn:active {
	box-shadow: none;
}
i {
	font-style: normal;
	display: inline-block;
}
hr {
	border: 0;
    padding: 0;
    margin: 0;
}
.container {
	margin: 0 auto;
	width: 100%;
	position: relative;
	line-height: 1em;
}
.float-middle {
	position: absolute;
	left:50%;
	top:50%;
	transform: translate(-50%,-50%);
	width: 25%;
}

.bg {
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom: 0;
	z-index: -1;
}
.menu {
	position: absolute;
	bottom: 0;
	z-index: 10;
	width: 100%;
	line-height: 80px;
	text-align: center;
	transition: all 0.2s ease; 
}
.menu.fix-top {
    position: fixed;
    top: 0;
    bottom: unset;
	line-height: 36px;
}

.menu .bg {
	background-color: #424242;
	opacity: .9;
}
.overlay-open .menu .bg {
	opacity: 1 !important;
}
.project-visible .menu .bg {
	opacity: 1 !important;
}
.menu img {
	height: 25px;
}
.menu a {
	color: white;
	text-decoration: none;
	padding: 10px;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
}
.menu .logo {
	padding: 5px 10px;
	display: none;
}
.menu .logo.show {
	display: inline-block !important;
}
.menu a:hover,
.menu a.active {
	color: #c85123;
	text-decoration: none;
}

.arrow-down {
    position: absolute;
    z-index: 1;
    right: 7px;
    top: 40%;
    animation: bounce-up-down 1.5s ease-in-out infinite;
    width: 20px;
    height: 20px;
    padding: 0 !important;
}
.arrow-down:before {
    content:"";
    display:inline-block;
    border: 2px solid #C85123;
    border-bottom: 0;
    border-left: 0;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-80%) rotate(135deg);
}
@keyframes bounce-up-down {
    0% {
        transform: translate(-50%,-50%);
    }
    50% {
        transform: translate(-50%,50%);
    }
    100% {
        transform: translate(-50%,-50%);
    }
}
.menu.fix-top .arrow-down {
	display: none;
}


.header {
	min-height: 400;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
	overflow: hidden;
}
.header > .bg {
	background-image: url('../imgs/banner/castleton-united-kingdom.jpg');
	background-size: cover;
	background-position: center;
}



.header > .bg:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 34, 32, 0.2);
    position: absolute;
    top: 0;
    right:0;
    left: 0;
}

.header span {
	color: white;
	text-transform: uppercase;
	padding-top: 20px;
	display: inline-block;
}
.header > #designbydp_logo {
	display: inline-block;
	width: 50%;
	height: 30vh;
	z-index: 10000;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 40%;
	position: absolute;
}
.header > #designbydp_logo .by-line {
	fill:#424242;
}
.header > #designbydp_logo .loading {
	fill:white;
	visibility: visible;
}
.loading-done .header > #designbydp_logo {
	animation: z-index 2s 2s ease;
}
.loading-done .header > #designbydp_logo .by-line {
	fill:#C85123;
	transition: all 0.5s ease;
}
.loading-done .header > #designbydp_logo .design-dp {
	fill:white;
	transition: all 0.5s ease;
}
.loading-done .header > #designbydp_logo .loading {
	transition: all 0.5s ease;
	opacity: 0;
}

.header > .words {
	display: inline-block;
	width: 100%;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	font-weight: normal;
	color: #424242;
	z-index: 10000;
	transform: translateX(-50%);
	left: 50%;
	bottom: 30%;
	position: absolute;
	opacity: .8;
}
.loading-done .header > .words {
	transition: all 0.5s ease;
	color: #C85123;
	animation: z-index 2s 2s ease;
}
@keyframes z-index {
    100% {
        z-index: 1;
    }
}
h1,
h2 {
	margin: 0;
}
section {
	padding: 50px 0;
	display: inline-block;
	width: 100%;
}
section h1:before {
	content: "";
	display: inline-block;
	width: 40%;
	height: 4px;
	background-color: #C85123;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
section h1 {
	position: relative;
	font-size: 41px;
	line-height: normal;
	padding-bottom: 20px;
	text-transform: uppercase;
	margin-bottom: 25px;
	margin-top: 15px;
	display: inline-block;
}
section .description {
	width: 80%;
	display: block;
	margin: auto;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
section h2 {
	position: relative;
	display: inline-block;
	font-size: 25px;
	line-height: normal;
	padding-bottom: 20px;
	text-transform: uppercase;
}
section span {
	line-height: 1.4em;
	opacity: .7;
}
/*
SERVICES
*/

#services ul {
	display: inline-block;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 30px 0 0 0;
}
#services .service {
	margin-bottom: 60px;
}

#services .service h2 {
	display: inline-block;
	width:100%;
	color:#C85123;
}
#services i {
	display: inline-block;
	line-height: normal;
	padding-bottom: 15px;
	opacity: .7;
}
#services .service i:before {
	font-size: 70px;
}
#services .service span {
	min-height:63px;
}
/*
PORTFOLIO
*/
#portfolio {
	background-color: #424242;
	line-height: 0;
}
#portfolio ul {
	display: inline-block;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	/* background-color: white; */
}
#portfolio h1,
#portfolio .description { 
	color:white;
}
#portfolio .filter {
	display: none;
	margin-bottom: 35px;
	color:white;
	line-height: normal;
	text-transform: uppercase;
	font-size: 12px;
}
#portfolio .filter * + * {
	padding-left: 15px;
}
#portfolio .filter a {
	opacity: .7;
	cursor: pointer;
	color:white;
	text-decoration: none;
}
#portfolio .filter a:hover,
#portfolio .filter a.active {
	opacity: 1;
}
#portfolio .project {
	background-position: center;
	background-repeat: no-repeat;
	width:50%;
	float: left;
	line-height: 0;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	color:white;
	background-color: black;
}
#portfolio .project  h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
	line-height: 22px;
}
#portfolio .project span {
	font-size: 12px;
	border-radius: 50px;
	border: 1px solid white;
	padding: 5px 12px;
	text-transform: uppercase;
}
#portfolio .project span + span {
	margin-left:5px;
}
#portfolio .project .preview {
	width:100%;
	height: auto;
	transition: all .3s ease;
}
#portfolio .project:hover .preview {
	transform: scale(1.05);
	filter: blur(5px);
}

#portfolio .project:hover .preview {
	 transform: scale(1.1); 
	 -webkit-filter: blur(5px); 
	 filter: blur(5px); 
}

#portfolio .project .info {
	opacity: 0;
	transition: all .5s ease;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #c85123;
	visibility: hidden;
}
#portfolio .project:hover .info {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
	visibility: visible;
}
#portfolio .project .info div {
	padding: 5rem;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

/*
CONTACTS
*/
#contacts {
	background-color: #C85123;
	color: white;
}

#contacts h1:before {
	background-color: #424242;
}
#contacts a {
	color:white;
	text-decoration: none;
}
#contacts a:hover {
	color:#424242;
}
#contacts i {
	margin-right:10px;
}
#contacts i svg {
	height: 24px;
	width: 24px;
	fill: #424242;
	margin-bottom: -7px;
}

/*
Budget
*/
#budget {
	background-color: #C85123;
	padding-top: 0;
}
#budget .btn:hover,
#budget .btn.active,
#budget .btn:active {
	border-color:transparent;
	background-color: #424242;
	color:white;
}
#budget h2 {
	text-align:center;
	display: block;
	color: white;
	padding: 5px 0 25px 0;
}
form {
	display: none;
	margin: 0;
}
form span {
	opacity: 1;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea{
	border-radius: 0;
	height: auto;
	line-height: 25px;
	border: 1px solid transparent;
}
.form-group label {
	font-weight: normal;
	text-transform: uppercase;
}
.form-group.required label:after {
	content:" *";
	color: white;
}
.form-group label.checkbox {
	cursor: pointer;
	margin: 0;
	padding: 6px 0;
}
.form-group div.checkbox {
	display: inline-block;
	background-color: white;
	margin: 0;
	position: relative;
	padding-right: 40px;
}
.form-group div.checkbox:before {
	content: "";
	display: inline-block;
	background-color: white;
	margin: 0;
	line-height: 0;
	width: 26px;
	height: 26px;
	position: absolute;
	top: -18px;
}
.form-group label.checkbox {
	color: white;
}
.form-group label.checkbox input[type=checkbox] {
	display: none;
	position: absolute;
}
.form-group input[type=checkbox]:hover + .checkbox:before {
	border: 1px solid #424242;
}
.form-group input[type=checkbox]:checked + .checkbox:before  {
	background-image: url('../imgs/icon-checkmark.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: center;
}

.form-group .has-error,
.form-group input[type=checkbox].has-error + .checkbox:before {
	background-color: #f0bca8;
}
.form-control {
	border-color:transparent;
	box-shadow: none;
}
.form-control:focus {
	box-shadow: none !important;
    border: 1px #424242 solid;
}

.form-response span {
	opacity: 1;
}
form .privacy-policy {
	padding: 6px 0 6px 5px;
    display: inline-block;
    color: white;
    text-transform: uppercase;
    text-decoration: underline;
	cursor: pointer;
}



.overlay {
	position: fixed;
	overflow-y: auto;
	background-color: white;
	top: 56px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	transition: opacity .5s ease;
	display: none;
}
.overlay.visible {
    opacity: 1;
}
.overlay.show {
    visibility: visible;
}

.overlay .close {
	position: fixed;
	right: 15px;
	top: 70px;
	width: 1.5rem;
	height: 1.5rem;
	cursor: pointer;
	opacity: 1;
}
.overlay .close:before,
.overlay .close:after {
 	position: absolute;
 	left: 7px;
 	top: -3px;
 	content: ' ';
 	height: 2rem;
 	width: 2px;
 	background-color: #c85123;
}
.overlay .close:hover:before,
.overlay .close:hover:after {
	background-color: #424242;
}
.overlay .close:before {
  transform: rotate(45deg);
}
.overlay .close:after {
  transform: rotate(-45deg);
}
.overlay .close-text {
	display: inline-block;
	line-height: normal;
	margin-top: 20px;
	color: #c85123;
	border-color: #c85123;
	text-transform: uppercase;
	
}
.overlay .close-text:hover {	
	border-color:transparent;
	background-color: #424242;
	color:white;
}
.overlay > article {
	display: none;
}
.overlay > article.active {
	display: block;
}

.overlay > article h1 + span {
	display: block;
	margin: 0 auto 25px auto;
}
.overlay > article img {
	width:100%;
}
.overlay .visit-website {background-color: #c85123;padding: 50px 0;}
.overlay .visit-website span {color: white;display: block;font-size: 18px;text-transform: uppercase;opacity: 1;}
.overlay .visit-website a {color: white !important;font-size: 32px;font-weight: 600;line-height: normal;text-decoration: none !important;}

.overlay section h1 {
	margin-top: 0;
}
footer {
	padding: 20px 0;
	opacity: .7;
    font-size: 12px;
}
footer a {
	color:#c85123 !important;
	cursor: pointer;
}
.grecaptcha-badge {
	display: none;
}
@media (min-width: 768px) {
	.header > .logo {
		width: 30vw;
	}
	#services .service {
		width: 33.33%;
		float: left;
	}
	#services .service:nth-child(4) {
		margin-left: 16.67%;
	}
	#services .service:nth-child(n+4) {
		margin-bottom: 0;
	}
	#portfolio .project {
		width: 25%;
	}
	.overlay > article h1 + span {
		width: 70%;
	}
	
	#budget .container,
	.overlay .container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.overlay > article h1 + span {
		width: 60%;
	}
	
	#budget .container,
	.overlay .container {
		width: 970px;
	}
}

@media (min-width: 1200px) { 
	.header > .logo {
		width: 20vw;
	}
	.overlay > article h1 + span {
		width: 50%;
	}
	#budget .container,
	.overlay .container {
		width: 1170px;
	}
}