/* Animations */

.fade-in {
	animation: fadeIn ease 4s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.move-up-fade-in {
	animation: moveUp ease 3s;
}

@keyframes moveUp {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

/*----------------------------------------*/

/* Default CSS
/*----------------------------------------*/

body, html {
	height: 100%;
	margin: 0;
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	background-color: black;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: #fff;
	font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #fff;
	line-height: 2;
}

input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}

a:hover, a:focus {
	text-decoration: none;
	outline: none;
}

ul, ol {
	padding: 0;
	margin: 0;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	min-width: 186px;
	text-transform: uppercase;
	background: transparent;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
	position: relative;
}

.site-btn:after, .site-btn:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 14px;
}

.site-btn:before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	left: 0;
	top: 0;
}

.site-btn:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	right: 0;
	top: 0;
}

.site-btn span {
	display: block;
	padding: 23px 45px;
}

.site-btn span:after, .site-btn span:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 14px;
}

.site-btn span:before {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	left: 0;
	bottom: 0;
}

.site-btn span:after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	right: 0;
	bottom: 0;
}

.site-btn.sb-dark {
	color: #000;
}

.site-btn.sb-dark:before {
	border-top: 2px solid #000;
	border-left: 2px solid #000;
}

.site-btn.sb-dark:after {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}

.site-btn.sb-dark span:before {
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
}

.site-btn.sb-dark span:after {
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
}

.header-container {
	display: flex;
	list-style: none;
}

.header-container .header-social {
	flex: 1;
	text-align: right;
}

.header-section {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
}

.header-container a {
	display: block;
	font-size: 16px;
	color: #fff;
	padding: 40px;
	text-decoration: none;
}

.header-container .logo {
	padding-right: 90px;
}

.header-container .logo a {
	padding-top: 9px;
}

.header-section .mobile-logo {
	display: none;
}

.header-social a {
	display: inline-block;
	padding: 40px 40px 40px 0px;
}

.header-social a img {
	height: 20px;
	width: 20px;
}

.hero-container {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/4.jpg");
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.hero-text h2 {
	margin-bottom: 40px;
}

.down-sign {
	width: 60px;
	position: absolute;
	bottom: 37px;
	left: calc(50% - 30px);
	z-index: 99;
	text-align: center;
}

.down-sign h6 {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 10px;
}

.contact-link {
	position: absolute;
	left: 42px;
	bottom: 40px;
	z-index: 99
}

.contact-link:after {
	position: absolute;
	content: "";
	height: 135px;
	width: 1px;
	left: 50%;
	top: 50px;
	background: #fff
}

.contact-link p {
	font-size: 10px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-bottom: 180px
}

.contact-link img {
	width: 71px;
	height: 71px;
	border-radius: 50%;
	background-color: white;
}

.form-result {
	color: white;
}

.util-container {
	/*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/1.jpg");*/
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.util-container h2 {
	margin-bottom: 40px;
}

.util-container ul {
	color: #fff;
	list-style: none;
}

.util1 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/10.jpg");
}

.util2 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/3.jpg");
}

.util3 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/7.jpg");
}

.util4 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background/8.jpg");
}

.util5 {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("../img/background/11.jpg");
	padding-top: 20px;
	padding-bottom: 20px;
}

.portfolio {
	background-color: black;
	padding-top: 60px;
	padding-bottom: 60px;
}

.portfolio h2 {
	padding-bottom: 40px;
}

.portfolio figure {
	position: relative;
	overflow: hidden;
	margin: 0 0 10px 0;
}

.portfolio figure img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.portfolio figcaption {
	position: absolute;
	top: 0;
	left: 0;
	padding: 25% 0;
	width: 100%;
	height: 100%;
	background-color: black;
	text-align: center;
	font-size: 15px;
	opacity: 0;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.portfolio figcaption .caption-content {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -100px;
	width: 200px;
	-webkit-transform: translate(0px, 15px);
	-ms-transform: translate(0px, 15px);
	transform: translate(0px, 15px);
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.portfolio figcaption a {
	color: #fff;
}

.portfolio figcaption p {
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: 400;
}

.portfolio figure:hover figcaption, .portfolio figure:focus figcaption {
	opacity: 1;
	cursor: pointer;
}

.contact a {
	text-decoration: none;
	color: white;
}

.contact-form .form-input, .contact-form textarea {
	width: 100%;
	border: none;
	border-bottom-color: currentcolor;
	border-bottom-style: none;
	border-bottom-width: medium;
	font-size: 12px;
	color: #fff;
	padding-bottom: 22px;
	margin-bottom: 25px;
	font-weight: 500;
	border-bottom: 1px solid #fff;
	background: 0 0;
}

input[type=submit] {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	background: transparent;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
	position: relative;
}

.contact-form textarea {
	height: 180px;
	margin-bottom: 50px;
}

.nav-switch {
	cursor: pointer;
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
}

.nav-switch svg {
	transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-switch.active svg {
	transform: rotate(90deg);
}

.nav-switch path {
	transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-switch path:nth-child(1) {
	transform-origin: 36% 40%;
}

.nav-switch path:nth-child(2) {
	stroke-dasharray: 29 299;
}

.nav-switch path:nth-child(3) {
	transform-origin: 35% 63%;
}

.nav-switch path:nth-child(4) {
	stroke-dasharray: 29 299;
}

.nav-switch path:nth-child(5) {
	transform-origin: 61% 52%;
}

.nav-switch path:nth-child(6) {
	transform-origin: 62% 52%;
}

.nav-switch.active path:nth-child(1) {
	transform: translateX(9px) translateY(1px) rotate(45deg);
}

.nav-switch.active path:nth-child(2) {
	stroke-dasharray: 225 299;
	stroke-dashoffset: -72px;
}

.nav-switch.active path:nth-child(3) {
	transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.nav-switch.active path:nth-child(4) {
	stroke-dasharray: 225 299;
	stroke-dashoffset: -72px;
}

.nav-switch.active path:nth-child(5) {
	transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.nav-switch.active path:nth-child(6) {
	transform: translateX(9px) translateY(1px) rotate(45deg);
}

/* The Modal (background) */

.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1000;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
	overflow: hidden;
}

/* Modal Content */

.modal-container {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.8);
}

/* The Close Button */

.modal-container .close {
	position: fixed;
	padding: 0 15px;
	right: 5%;
	color: white;
	font-size: 35px;
	background-color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	z-index: 10;
}

.slick-list, .slick-track {
	height: 95%;
}

.slick-list img {
	margin: auto;
}

/*----------------------------------------
  Slidshow
  ----------------------------------------*/

/*----------------------------------------
  Arrows
  ----------------------------------------*/

.slick-arrow {
	position: absolute;
	z-index: 10;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	cursor: pointer;
	font-size: 0;
	outline: none;
	width: 40px;
	height: 40px;
}

.slick-arrow:before {
	content: "<";
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: white;
	background-color: rgba(192, 192, 192, 0.3);
	display: block;
	transition: all 0.5s ease-out;
}

.slick-arrow.slick-next {
	left: auto;
	right: 20px;
	content: ">";
}

.slick-arrow.slick-next:before {
	transform: rotate(180deg);
}

.slick-arrow:hover:before {
	opacity: 1;
}

.slideshow {
	position: relative;
	height: 100%;
	z-index: 1;
}

/*----------------------------------------
  Slider 1
  ----------------------------------------*/

.slider {
	height: 100%;
	overflow: hidden;
}

.slider .item {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.slider .item img {
	width: auto;
	height: 100%;
}

.slider .slick-dots {
	bottom: 15px;
	z-index: 1;
	text-align: center;
	position: absolute;
	padding: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.slider .slick-dots li {
	display: inline;
	margin: 0;
	padding: 0;
}

.slider .slick-dots li button {
	border: none;
	background: none;
	text-indent: -9999px;
	font-size: 0;
	width: 20px;
	height: 20px;
	outline: none;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.slider .slick-dots li button:before {
	content: "";
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 4px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.7;
	transition: all 0.5s ease-out;
}

@media all and (max-width: 850px) {
	.header-container {
		flex-wrap: wrap;
	}
	.header-container>li {
		flex-basis: 100%;
	}
	.header-container a {
		text-align: center;
		font-size: 24px;
	}
	.header-container .logo {
		display: none;
	}
	.nav-switch {
		display: block;
	}
	nav {
		width: 0;
		height: 100%;
		position: fixed;
		z-index: 10;
		top: 0;
		left: 0;
		background-color: #111;
		overflow-x: hidden;
		transition: 0.5s;
		padding-top: 60px;
	}
	nav.active {
		width: 100%;
	}
	.header-section .mobile-logo {
		display: block;
		position: absolute;
		top: 18px;
		left: 20px;
	}
	.contact-link:after {
		display: none;
	}
	.contact-link p {
		display: none;
	}
	.hero-text h1 {
		font-size: 40px;
		font-weight: 300;
	}
	.hero-text h2 {
		font-size: 24px;
		font-weight: 200;
		padding-top: 20px;
	}
	.util-container {
		min-height: 100%;
		height: auto;
		padding-top: 20px;
	}
	.contact-form p {
		line-break: anywhere;
	}
	.util5 {
		padding-bottom: 20px;
	}
	.portfolio figcaption {
		opacity: 0.7;
	}
	.util-container {
		background-color: black;
		background-image: none;
	}
	.header-social a {
		display: block;
		padding: 40px;
	}
	.slick-arrow:before {
		width: 30px;
		height: 30px;
		font-size: 30px;
	}
	.slider .item img {
		width: 90%;
		height: auto;
	}
}