
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.hero:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.hero-img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/*filter: grayscale(1);*/
}

.hero-content {
	position: absolute;
	z-index: 2;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-logo {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}

.hero-logo:after {
	content: '';
	position: absolute;
	display: block;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 15%,
		rgba(255, 255, 255, 1) 85%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 3;
	opacity: 1;
	animation: line-anim;
	animation-duration: 4s;
}

.hero-logo img {
	position: relative;
	width: 125px;
	margin-bottom: 10px;
	animation: logo-anim;
	animation-duration: 2s;
}

.hero-logo p {
	position: absolute;
	left: 50%;
	bottom: -35px;
	transform: translateX(-50%);
	font-size: 14px;
	margin-bottom: 0;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	overflow: hidden;
	animation: mark-anim;
	animation-duration: 4s;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero .hero-icon {
	width: 35px;
	display: block;
	position: absolute;
	top: 85%;
	left: 50%;
	z-index: 5;
	transform: translate(-50%, -50%);
	opacity: 1;
	animation-name: mouse-icon;
	animation-duration: 6s;
}

.hero .hero-icon img {
	width: 100%;
	height: 100%;
	animation: mouse 3s infinite;
}

.home nav {
	display: none;
}

.fast-contact {
	position: absolute;
	z-index: 2;
	width: 100%;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	color: #fff;
	background-color: transparent;
}

.fast-contact .ls {
	letter-spacing: 2px;
	display: flex;
	align-items: center;
}

.fast-contact .rs {
	text-align: left;
	display: flex;
	align-items: center;
}

.fast-contact .rs > * {
	display: block;
	margin-left: 10px;
	color: #fff;
	text-decoration: none;
	transition-duration: 0.25s;
}

.fast-contact .rs svg path,
.fast-contact .rs svg circle {
	transition-duration: 0.25s;
}

.fast-contact .rs a {
	display: flex;
	align-items: center;
}

.fast-contact .rs .insta svg:hover path,
.fast-contact .rs .insta svg:hover circle {
	fill: #fc6aae;
}

.fast-contact .rs .fb svg:hover path {
	fill: #6690e5;
}

.fast-contact .rs svg {
	width: 15px;
	height: 15px;
}

.hero-nav nav {
	width: 100%;
}

.hero-nav nav.navbar-expand-lg .navbar-collapse {
	margin: auto;
	width: 100%;
	overflow: hidden;
	animation: hero-nav-anim;
	animation-duration: 5s;
	justify-content: center;
}

.hero-nav nav.navbar-expand-lg .navbar-nav .nav-link {
	position: relative;
	color: #fff;
	font-size: 24px;
	letter-spacing: 2px;
	min-width: 100px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-nav nav.navbar-expand-lg .navbar-nav .nav-link:before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 15%,
		rgba(255, 255, 255, 1) 85%,
		rgba(255, 255, 255, 0) 100%
	);
	transition-duration: 0.25s;
}

.hero-nav nav.navbar-expand-lg .navbar-nav .nav-link:hover:before {
	width: 75%;
}

.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler:focus {
	outline: none !important;
	border: none !important;
	box-shadow: none !important;
}

section {
	margin: 75px 0;
	position: relative;
}

section.about {
	margin-top: 50px;
}

section:after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: 50%;
	height: 1px;
	width: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	background-color: #cfcece;
}

.contact {
	margin-bottom: 50px;
}

.contact:after {
	display: none;
}

.section-title {
	text-align: center;
	font-size: 45px;
	font-weight: 300;
	margin-bottom: 30px;
	padding-top: 25px;
}

.ab-content {
	text-align: center;
}

.of-tile {
	position: relative;
	padding: 25px !important;
	display: block;
	border-radius: 10px;
	background: #f6f6f6;
	color: #000;
	text-decoration: none;
	transition-duration: 0.5s;
	overflow: hidden;
	margin-top: 25px;
}

.of-tile:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(
		225deg,
		rgba(133, 133, 133, 1) 0%,
		rgba(3, 3, 3, 1) 100%
	);
	transition-duration: 0.5s;
	transform: translateY(101%);
}

.of-tile.of-phone:before {
	background: linear-gradient(225deg, rgb(63, 177, 8) 0%, rgb(15, 62, 13) 100%);
}

.of-tile.of-form:before {
	background: linear-gradient(225deg, rgb(212, 8, 67) 0%, rgb(96, 9, 17) 100%);
}

.of-tile.of-portfolio:before {
	background: linear-gradient(225deg, rgb(8, 124, 212) 0%, rgb(6, 50, 83) 100%);
}

.of-tile.of-projects:before {
	background: linear-gradient(
		225deg,
		rgb(125, 25, 238) 0%,
		rgb(55, 12, 105) 100%
	);
}

.of-tile.of-carrier:before {
	background: linear-gradient(
		225deg,
		rgb(250, 227, 85) 0%,
		rgb(205, 151, 33) 100%
	);
}

.of-home-img {
	height: 300px;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.of-home-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-position: center;
	object-fit: contain;
}

.of-icon {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}

.of-icon svg {
	height: 50px;
	width: 50px;
}

.of-title {
	position: relative;
	z-index: 2;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.offer .of-title {
	margin-top: 25px;
}

.of-tile:hover {
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
	transform: translateY(-5px);
}

.of-tile svg {
	width: 50px;
	height: 50px;
}

.of-tile svg path {
	fill: #000;
	transition-duration: 0.5s;
}

.of-tile:hover svg path {
	fill: #fff;
}

.of-tile:hover:before {
	transform: translateY(0);
}

.of-tile.offhover:hover {
	color: #000;
	transform: none;
}

.of-tile.offhover:before {
	display: none;
}

.of-tile.of-link {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 0 !important;
}

.of-tile.of-link .of-title {
	margin: 0;
}

.contact iframe {
	width: 100%;
	border-radius: 10px;
}

.footer {
	background-color: #f6f6f6;
	padding: 25px 0 5px;
	font-size: 14px;
}

.footer a {
	color: #989898;
	text-decoration: none;
	transition-duration: 0.25s;
}

.footer a:hover {
	color: #777;
}

.copyrights {
	margin-top: 10px;
	text-align: center;
	font-size: 12px;
	color: #989898;
}

nav {
	background-color: #f6f6f6;
	padding: 0 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
	position: relative;
	color: #000;
	text-transform: uppercase;
	transition-duration: 0.25s;
}

.navbar-expand-lg .navbar-nav .nav-link:before {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	height: 1px;
	width: 0;
	transform: translateX(-50%);
	background-color: #000;
	transition-duration: 0.25s;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:before {
	width: 80%;
}

.navbar-expand-lg .navbar-collapse .navbar-nav {
	margin-left: auto;
}

.navbar-brand img {
	width: 50px;
	height: 50px;
}

.subsite-holder {
	padding-bottom: 25px;
}

.of-s-wrapper {
	display: flex;
}

.of-s-icon {
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	color: #fff;
}

.of-s-content {
	padding: 0 20px;
	position: relative;
	z-index: 2;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
	width: 100%;
	transition-duration: 0.25s;
}

.of-s-content:hover {
	color: #777;
}

.of-tile-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-position: center;
	object-fit: cover;
	z-index: 0;
}

.of-tile-bg {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.contact-form-holder .form-group {
	width: 80%;
	margin: auto;
}

.contact-form-holder .form-group input,
.contact-form-holder .form-group textarea {
	width: 100%;
	margin-bottom: 20px;
	border: none;
	border-bottom: 2px solid #f7f6f6;
	transition-duration: 0.5s;
}

.contact-form-holder .form-group input:focus,
.contact-form-holder .form-group textarea:focus {
	outline: none;
	border-bottom-color: #000;
}

.contact-form-holder .form-group textarea {
	height: 150px;
}

.contact-form-holder button {
	position: relative;
	width: 50%;
	padding: 25px !important;
	display: block;
	margin: auto;
	font-size: 24px;
	font-weight: 500;
	border: none;
	border-radius: 10px;
	background: #f6f6f6;
	color: #000;
	text-decoration: none;
	transition-duration: 0.5s;
	overflow: hidden;
}

.contact-form-holder button:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(
		225deg,
		rgba(133, 133, 133, 1) 0%,
		rgba(3, 3, 3, 1) 100%
	);
	transition-duration: 0.5s;
	transform: translateY(101%);
}

.contact-form-holder button span {
	position: relative;
	z-index: 2;
}

.contact-form-holder button:hover {
	color: #fff;
	transform: translateY(-5%);
}

.contact-form-holder button:hover:before {
	transform: translateY(0);
}

.contact-form-holder input[type='submit'] {
	border: 0;
	color: #000;
	background-color: #f6f6f6;
	padding: 10px 20px;
	display: block;
	width: 50%;
	margin: auto;
	font-weight: 500;
	border-radius: 10px;
	transition-duration: 0.25s;
}

.contact-form-holder input[type='submit']:hover {
	color: #777;
}

.realizations-elem {
	background-color: #f6f6f6;
	border-radius: 10px;
	height: 500px;
	position: relative;
	overflow: hidden;
	display: block;
	margin-bottom: 25px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.realizations-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	z-index: 2;
}

.realizations-title-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 4;
	transform: translateY(100%);
	transition-duration: 0.5s;
}

.realizations-title-holder a {
	display: block;
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 20px;
	font-size: 20px;
	letter-spacing: 2px;
	border-radius: 5px;
	color: #000;
	background-color: #fff;
	text-decoration: none;
	transition-duration: 0.25s;
}

.realizations-title-holder a:hover {
	color: #777;
}

.realizations-title {
	position: absolute;
	width: 100%;
	padding: 20px;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.realizations-elem:hover .realizations-title-holder {
	transform: translateY(0);
}

.single-content {
	margin-bottom: 50px;
}

.single-realization .single-content img {
	width: 100%;
}

.contact-info {
	text-align: center;
	color: #989898;
	margin-bottom: 15px;
}

.contact-info > * {
	margin-bottom: 0;
}

.of-home-btn {
	color: #000;
	text-decoration: none;
	display: block;
	margin: 50px auto 0;
	width: 30%;
	font-size: 18px;
	text-align: center;
	padding: 20px 0;
	border-radius: 10px;
	font-weight: 600;
	text-transform: uppercase;
	transition-duration: 0.25s;
	background-color: #f6f6f6;
}

.of-home-btn:hover {
	color: #777;
	transform: scale(1.1);
}

.single-of-hero {
	position: relative;
	height: 400px;
	margin-bottom: 50px;
}

.single-of-hero img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-of-hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

.single-of-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.single-of-title:before,
.single-of-title:after {
	content: '';
	position: absolute;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 15%,
		rgba(255, 255, 255, 1) 85%,
		rgba(255, 255, 255, 0) 100%
	);
}

.single-of-title:before {
	width: 60%;
	top: -10px;
}

.single-of-title:after {
	width: 90%;
	bottom: -10px;
}

.single-of-content {
	max-width: 60%;
	margin: 0 auto 50px;
	position: relative;
}

.single-of-content:before,
.single-of-content:after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 2px;
	background: linear-gradient(
		0deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(0, 0, 0, 1) 35%,
		rgba(0, 0, 0, 1) 50%,
		rgba(0, 0, 0, 1) 65%,
		rgba(255, 255, 255, 1) 100%
	);
}

.single-of-content:before {
	left: -25px;
}

.single-of-content:after {
	right: -25px;
}

.realizations-elem-holder {
	width: 50%;
	padding: 10px;
	float: left;
}

@keyframes mouse {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(20%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes mouse-icon {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes logo-anim {
	0% {
		width: 0;
	}
	100% {
		width: 125px;
	}
}

@keyframes line-anim {
	0% {
		width: 0;
	}

	50% {
		width: 0;
	}

	100% {
		width: 400px;
	}
}

@keyframes hero-nav-anim {
	0% {
		width: 0;
		overflow: hidden;
	}

	50% {
		width: 0;
		opacity: 1;
	}

	100% {
		width: 100%;
	}
}

@keyframes mark-anim {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media (max-width: 1199.98px) {
	.of-home-img {
		height: 500px;
	}
}

@media (max-width: 991.98px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		text-align: right;
	}

	.navbar-expand-lg .navbar-nav .nav-link:before {
		display: none;
	}

	.navbar-expand-lg .navbar-nav .nav-link:hover {
		color: #989898;
	}

	.hero-img {
		background-attachment: scroll;
	}

	.single-of-content {
		max-width: 90%;
	}

	.realizations-elem-holder {
		width: 100%;
	}
}

@media (max-width: 767.98px) {
	.hero-logo:after {
		width: 80%;
	}

	.of-home-img {
		height: 250px;
	}

	.of-tile.of-link {
		width: 80%;
	}

	@keyframes line-anim {
		0% {
			width: 0;
		}

		50% {
			width: 0;
		}

		100% {
			width: 80%;
		}
	}
}
.altcha-widget-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-item {
	margin-top: 5px;
}
