@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");


/*--------------------------------------------------------------
# General Settings
--------------------------------------------------------------*/


html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	overflow-y: auto;
	font-family: 'Inconsolata', monospace;
	font-size: 16px;
	font-weight: regular;
	color: #7a7a7a;
	outline: 0;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.relative { position: relative; }

.section-wrap {
	padding: 100px 0;
	overflow: hidden;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.mobile section {
	background-attachment: scroll !important;
}

.bg-light { background-color: #eaece7 !important; }

.bg-dark { background-color: #0d0d0d !important; }

.uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

.last { margin-bottom: 0 !important; }

::-moz-selection {
	color: #fff;
	background: #2cb8a5;
}

::-webkit-selection {
	color: #fff;
	background: #2cb8a5;
}

::selection {
	color: #fff;
	background: #2cb8a5;
}

a {
	text-decoration: none;
	color: #7a7a7a;
	outline: none;
	-webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}

.dark-link { color: #7a7a7a; }

.dark-link:hover { color: #fff; }

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

:focus { outline: none; }

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;

	margin-top: 0;
	color: #121212;
	font-weight: 500;
	line-height: 1.5;
}

h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 15px; }

p {
	color: #7a7a7a;
	line-height: 26px;
}

/*
.jumbo {
	min-height: 200vh;
	background: grey;
}
*/


/*-------------------------------------------------------*/
/* PRELOADER
/*-------------------------------------------------------*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
}
 
/* -- Circle -- */

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

#loader {
    display: block;
    position: relative;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    z-index: 1001;

    text-align: center;
    margin: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: circ-anim 0.7s linear infinite;
    border: 4px solid #2cb8a5;
    position: relative;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

#loader:after {
    position: absolute;
    content: "";
    width: 90%;
    height: 90%;
    background: transparent;
    top: 50%;
    left: 50;
    margin-left: -45%;
    margin-top: -45%;
    border-radius: 50%;
    border: 4px solid #b4bca9;
    box-sizing: border-box;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: circ-anim 0.35s reverse linear infinite;
}

@keyframes circ-anim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

/* -- Split Screen -- */

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #eaece7;
    z-index: 1000;
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */

.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.4s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.4s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.2s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.2s 1s ease-out;
}


/*-------------------------------------------------------*/
/* NAVBAR
/*-------------------------------------------------------*/

/*---- Navbar General Settings ------*/

.navbar {
	padding: 40px 20px 20px 20px;
	animation-duration: 0.5s;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	letter-spacing: 0.03em;
	font-weight: 300;
	text-transform: uppercase;
}

.navbar-expand-md .container-fluid {
	padding-right: 0;
	padding-left: 0;
}

/*---- Navbar Transparent ------*/

.navbar.navbar-transparent {
	background: transparent;
	border-bottom: 1px dotted #b3b3b3;
}

.navbar.navbar-transparent .navbar-nav a {
	color: #b3b3b3;
}

.navbar.navbar-transparent .navbar-nav a.active-menu,
.navbar.navbar-transparent .navbar-nav a:hover {
	color: #fff;
}

/*---- Navbar White ------*/

.navbar.navbar-white {
	background-color: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.navbar.navbar-white .navbar-nav a {
	color: #cccccc;
}

.navbar.navbar-white .navbar-nav a.active-menu,
.navbar.navbar-white .navbar-nav a:hover {
	color: #000;
}

/*---- Shrink Navbar ------*/

.shrink .navbar.navbar-transparent,
.shrink .navbar.navbar-white {
	background-color: #fff !important;
	border-bottom: none;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
	padding: 10px 20px 10px 20px;
}

/*---- Navbar Text ------*/

.navbar.navbar-transparent .navbar-nav a,
.navbar.navbar-white .navbar-nav a {
	font-size: 18px;
	line-height: 18px;
	margin: 22px 0 0 28px;
	padding: 0;
	position: relative;
	transition: all 0.3s ease;
}

.shrink .navbar.navbar-transparent .navbar-nav a,
.shrink .navbar.navbar-white .navbar-nav a {
	margin: 11px 0 11px 28px;
	color: #cccccc;
}

.shrink .navbar.navbar-transparent .navbar-nav a.active-menu,
.shrink .navbar.navbar-transparent .navbar-nav a:hover,
.shrink .navbar.navbar-white .navbar-nav a.active-menu,
.shrink .navbar.navbar-white .navbar-nav a:hover {
	color: #000;
}

/*---- Navbar LOGO Brand ------*/

.navbar-brand {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 2px;
}

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

.navbar-brand .logo-text-black {
	color: #000;
	line-height: 40px;
	margin-left: 4px;
}

.navbar-brand .logo-text-white {
	color: #fff;
	line-height: 40px;
	margin-left: 4px;
}

.logo-scroll,
.shrink .logo-start {
	display: none;
}

.shrink .logo-scroll {
	display: flex;
}


.offcanvas-menu {
	display: none;
}

@media (max-width: 767px) {

	/* Navbar
	-------------------------------------------------------*/

	.navbar {
		-webkit-animation: slideIn 0s;
		-moz-animation: slideIn 0s;
		-ms-animation: slideIn 0s;
		animation: slideIn 0s;
		transition: all 0.4s;
		padding: 10px 20px 10px 10px;
	}

	.shrink .navbar.navbar-transparent,
	.shrink .navbar.navbar-white {
		padding: 10px 20px 10px 10px;
	}

	/*---- Hamburger Button ------*/

	.navbar-toggler {
		padding: 0;
		border: none;
		border-radius: 0;
		position: absolute;
		top: 22px;
		right: 15px;
		width: 26px;
		height: 20px;
		cursor: pointer;
		opacity: 1;
		display: inline;
		transition: opacity 0.25s ease;
		box-shadow: none !important
	}

	.navbar-toggler span {
		background: #000;
		border: none;
		height: 1px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
	}

	.navbar-transparent .navbar-toggler span {
		background: #fff;
	}

	.navbar-toggler span:nth-of-type(2) {
		top: 8px;
	}

	.navbar-toggler span:nth-of-type(3) {
		top: 16px;
	}

	.transparent .navbar-toggler span {
		background: #fff;
	}

	button:focus {
		outline: 0px auto;
	}

	.shrink .navbar-transparent .navbar-toggler span {
		background: #000;
	}

	/*Offcanvas Mobile Menu Section*/

	.offcanvas-menu {
		position: fixed;
		right: -100%;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		display: block;
	}

	.offcanvas-menu-open .offcanvas-menu {
		right: 0;
		opacity: 1;
	}

	/*Offcanvas Menu Close*/

	.offcanvas-btn-close {
		position: absolute;
		right: 10px;
		top: 10px;
		background-color: #eaece7;
		z-index: 9;
		width: 40px;
		height: 40px;
		color: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.offcanvas-btn-close i {
		display: block;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		width: 24px;
		height: 1px;
		background-color: #666666;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		margin: auto;
		position: relative;
	}

	.offcanvas-btn-close i:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background-color: #666666;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.offcanvas-btn-close:hover i,
	.offcanvas-btn-close:focus i {
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	/*Offcanvas Content*/

	.offcanvas-content {
		padding: 120px 35px;
		/* Use vh as a fallback for browsers that do not support Custom Properties */
		height: 100%;
		background-color: #fff;
	}

	.offcanvas-content ul {
		margin: 0px;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		flex-direction: column;
		text-align: center;
		height: 100%;
		padding-left: 0;
		list-style-type: none;	
	}

	.offcanvas-content ul li a {
		font-family: 'Roboto', sans-serif;
		letter-spacing: 0.03em;
		font-weight: 300;
		text-transform: uppercase;
		font-size: 22px;
		line-height: 1.25;
		color: #cccccc;
		transition: all 0.3s ease;
	}

	.offcanvas-content ul li a.active-menu,
	.offcanvas-content ul li a:hover {
		color: #000;
		transition: all 0.3s ease;
	}
}


/*-------------------------------------------------------*/
/* Parallax (Background Image)
/*-------------------------------------------------------*/

.parallax-container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}

.parallax {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}


/*-------------------------------------------------------*/
/* HERO HEADER
/*-------------------------------------------------------*/

.hero {
	width: 100%;
	height: calc(100vh - var(--address-bar-height) * 1px);
	margin: 0;
}

.hero-background {
	width:100vw;
	height: 100%;
	margin: 0;
	-webkit-background-size: cover !important;
	background-position: center !important;
	background-size: cover !important;
}

.hero-background:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.6) 100%);
}

/* Captions */


.hero-holder {
	position: absolute;
	left: 80px;
	bottom: 80px;
}

.hero-holder h1,
.hero-holder h2 {
	font-weight: 700;
	line-height: 1.22em;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInLeftBig;
	animation-delay: 0.6s;
}

.hero-holder h1 {
	font-size: 52px;
	color: #fff;
	animation-delay: 0.6s;
}

.hero-holder h2 {
	color: #999999;
	animation-delay: 0.8s;
}

.hero-holder h1 span,
.hero-holder h2 span {
	background-color: rgba(0, 0, 0, 0.5);
}


/*-------------------------------------------------------*/
/* SWIPER
/*-------------------------------------------------------*/

/* Swiper Hero */
/*-------------------------------------------------------*/

.hero-swiper .swiper-wrapper {
	width: 100%;
	height: calc(100vh - var(--address-bar-height) * 1px);
	margin: 0;
}

/* Swiper Hero Captions (Text) */

.swiper-holder {
	color: #fff;
	position: absolute;
	left: 80px;
	bottom: 80px;
}

.swiper-holder h1 {
	color: #fff;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.21em;
}

.swiper-holder h1 span {
	background-color: rgba(0, 0, 0, 0.5);
}

/* Swiper Hero Navigation (Arrows)*/

.swiper-button-prev,
.swiper-button-next {
	color: #fff;
	font-size: 16px;
	width: 40px !important;
	height: 40px !important;
	background: rgba(0, 0, 0, 0.4);
	left: auto;
	top: auto; 
	bottom: 30px;
	position: absolute;
	transition: all 0.3s ease;
}

.swiper-button-next {
	right: 30px;
}

.swiper-button-prev {
	right: 72px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.8);
	transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}

/* Swiper Hero Pagination (Counter) */

.swiper-pagination {
	width: 70px;
	height: 40px;
	line-height: 40px;
	color: #000;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	left: auto;
	right: 114px;
	bottom: 30px;
	z-index: 1;
	font-size: 16px;
	font-weight: 500;
}

/* Swiper Partners */
/*-------------------------------------------------------*/

.swiper-partners {
	display: flex;
	text-align: center;
	/* Center slide text vertically */
	justify-content: space-between;
	align-items: center;
}

.partner-item img {
	transition: 0.35s ease;
	filter: grayscale(100%);
}

.partner-item img:hover {
	transition: 0.35s ease;
	filter: grayscale(0%);
	transform: scale3d(1.2, 1.2, 1.2);
}


/*-------------------------------------------------------*/
/* SCROLL DOWN (HOME & Portfolio Page)
/*-------------------------------------------------------*/

.scroll-down-box {
	width: 40px;
	height: 40px;
	position: absolute;
	left: calc(50% - 20px);
	text-align: center;
	bottom: 0;
	z-index: 2;
}

.scroll-down {
	width: 1px;
	height: 40px;
	background: treansparent;
	position: absolute;
	left: calc(50% - 0.5px);
	bottom: 0;
	z-index: 2;
}

.scroll-down:after {
	content: "";
	width: 1px;
	height: 0;
	animation: 1s scrolldown infinite;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

@keyframes scrolldown {
	0% {
		top: 0;
		height: 0;
	}
	50% {
		top: 0;
		height: 100%;
	}
	51% {
		top: auto;
		bottom: 0;
		height: 100%;
	}
	100% {
		top: auto;
		bottom: 0;
		height: 0;
	}
}


/*-------------------------------------------------------*/
/* BACK TO TOP BUTTON
/*-------------------------------------------------------*/

.back-to-top,
.back-to-top:visited {
	position: fixed;
	z-index: 20;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	bottom: 20px;
/*
	margin-left: calc(100vw - 76px);
*/
	margin-left: calc(100vw - 76px);
	border: 0.5px solid #fff;
	text-decoration: none;
	color: #000;
	background-color: #eaece7;
	font-size: 16px;
	cursor: pointer;
	transform: translateY(400%);
	transition: all .5s ease;
}

.back-to-top:hover {
	color: #fff;
	background-color: #2cb8a5;
	transition: all .5s ease;
}


/*--------------------------------------------------------------
# Features Icons Boxes (HOME)
--------------------------------------------------------------*/

.feature-item {
	text-align: center;
	padding: 0 20px;
}

.feature-icon {
	display: inline-block;
	font-size: 0px;
	width: 80px;
	height: 80px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	color: #fff;
	background: #eaece7;
	-webkit-transition: background 0.3s, color 0.3s;
	-moz-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}

.feature-icon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: "";
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	top: -5px;
	left: -5px;
	padding: 5px;
	box-shadow: 0 0 0 3px #2cb8a5;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-webkit-transform: scale(0.8);
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transition: transform 0.3s, opacity 0.3s;
	transform: scale(0.8);
	opacity: 0;
}

.feature-icon:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.feature-item h3 {
	font-size: 18px;
	margin-top: 30px;
}

.feature-item p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Portfolio (HOME + PORTFOLIO)
--------------------------------------------------------------*/

.row.grid-4-col,
.row.grid-3-col {
	padding-left: 6px;
	padding-right: 6px;
}

.grid-4-col .portfolio-item,
.grid-4-col .gallery-item {
	width: 25%;
}

.grid-3-col .portfolio-item {
	width: 33.333%;
}

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

.filter {
	display: inline-block;
	padding: 4px 12px;
	cursor: pointer;
}

.portfolio-filter {
	list-style: none;
	margin-bottom: 50px;
	cursor: default;
	font-size: 16px;
	text-align: center;
	font-weight: 400;
}

.portfolio-filter a.active,
.portfolio-filter a:hover {
	color: #000;
}

.portfolio-filter a {
	display: inline-block;
	margin: 0 5px;
	color: #999999;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

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

.portfolio-container {
	margin: 0 -6px;
}

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

.portfolio-item {
	z-index: 1;
	overflow: hidden;
	padding: 6px;
	position: relative;
}

.portfolio-content {
	position: relative;
	overflow: hidden;
}

.portfolio-item img {
	width: 100%;
	height: auto;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-item:hover img {
	-webkit-transform: translate3d(0, -35px, 0);
	transform: translate3d(0, -35px, 0);
	filter: grayscale(60%);
	transition: all 0.3s ease;
}

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

.portfolio-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.portfolio-item .portfolio-mask {
	opacity: 0;
	transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-mask {
	opacity: 1;
	transition: all 0.3s ease;
}

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

.portfolio-caption {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	width: 100%;
	height: 70px;
	position: absolute;
	background: #eaece7;
	bottom: -100px;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	color: #fff;
	padding: 15px 0;
}

.portfolio-caption h2,
.portfolio-caption p {
	color: #333;
	transition: all 0.3s ease;
	line-height: 1;
}

.portfolio-caption h2 {
	font-size: 17px;
}

.portfolio-caption p {
	margin-bottom: 0;
}

.portfolio-item:hover .portfolio-caption {
	-webkit-transform: translate3d(0, -100px, 0);
	transform: translate3d(0, -100px, 0);
	transition: all 0.35s;
	;
}

.portfolio-caption:hover {
	background: #2cb8a5;
	transition: all 0.3s ease;
}

.portfolio-caption:hover h2,
.portfolio-caption:hover p {
	color: #fff;
	transition: all 0.3s ease;
}


/*-------------------------------------------------------*/
/* PORTFOLIO Single
/*-------------------------------------------------------*/

/* Sectiune Info Proiect
-------------------------------------------------------*/

.portfolio-single-info h2,
.portfolio-single-info p {
	text-align: center;
}

.portfolio-single-info h2 {
	font-size: 18px;
	margin-bottom: 10px;
}

.portfolio-single-info p {
	margin-bottom: 30px;
}

/* Sectiune Galerie Grid
-------------------------------------------------------*/

.gallery-item {
	z-index: 1;
	overflow: hidden;
	padding: 6px;
}

.gallery-item a {
	display: block;
	overflow: hidden;
	position: relative;
	margin: auto;
}

.gallery-item a img {
	transition: transform 0.3s ease 0s;
	transform: scale3d(1, 1, 1);
	height: 100%;
	width: 100%;
}

.gallery-item a:hover img {
	transform: scale3d(1.1, 1.1, 1.1);
}

.gallery-item a .portfolio-single-icons {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease;
}

.gallery-item a:hover .portfolio-single-icons {
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s ease;
}

.gallery-item a .portfolio-single-icons i {
	font-size: 30px;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	color: #fff;
	opacity: 0;
	position: absolute;
	transition: opacity 0.3s ease;
}

.gallery-item a:hover .portfolio-single-icons i {
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* Sectiune Fancybox
-------------------------------------------------------*/

.fancybox-bg {
	background: rgb(255, 255, 255);
}

.fancybox-is-open .fancybox-bg {
	opacity: 1;
}

/* Counter */

.fancybox-infobar {
	font-size: 16px;
	font-weight: 400;
	padding: 0 14px;
	color: #999;
}

/* Buttons */

.fancybox-button {
	background: #eaece7;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
	color: #888;
}

.fancybox-button:hover {
	color: #000;
}

/* Caption */

.fancybox-caption {
	background: transparent;
	color: #000;
	font-family: "Inconsolata", monospace;
	font-size: 16px;
	font-weight: 500;
	line-height: 44px;
	padding: 0px 44px 0px 44px;
	height: 44px;
}

.fancybox-caption__body {
	max-height: 44vh;
}


/*-------------------------------------------------------*/
/* About us (HOME + ABOUT US)
/*-------------------------------------------------------*/

.about-home-item {
	padding: 0 20px;
}

.about-home-item p {
	margin: 0;
}


/*-------------------------------------------------------*/
/* Subtitle (HOME)
/*-------------------------------------------------------*/

.subtitle-home h2 {
	font-weight: 100;
	font-size: 36px;
	padding: 0 20px;
	margin: 0;
}


/*--------------------------------------------------------------
# Services (HOME + SERVICES)
--------------------------------------------------------------*/

.service-boxes {
	padding: 0;
}

.service-boxes .container-fluid {
	border-left: 1px dotted #ccc;
}

.service-item-wrap {
	border-right: 1px dotted #ccc;
	padding: 100px 40px;
}

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

.service-item-box1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-item-box1 h3 {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 20px;
}

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

.service-item-wrap .service-item-box {
	position: relative;
	top: 100px;
}

.service-item-box h3 {
	font-size: 18px;
	margin-top: 30px;
}

.service-item-box,
.hidden-text {
	transition: 0.35s ease;
}

.hidden-text {
	opacity: 0;
	visibility: hidden;
}

.service-item-wrap:hover .service-item-box {
	top: 0px;
}

.service-item-wrap:hover .hidden-text,
.mobile .hidden-text {
	opacity: 1;
	visibility: visible;
}

.mobile .service-item-box {
	top: 0px;
}


/*-------------------------------------------------------*/
/* Parallax Testimonials (HOME + ABOUT US)
/*-------------------------------------------------------*/

.parallax-testimonials {
	padding: 140px 0;
}

.parallax-testimonials h2 {
	font-size: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.parallax-testimonials p {
	font-size: 18px;
	font-style: italic;
	color: #fff;
	line-height: 34px;
	margin-bottom: 0;
	font-weight: 300;
}

.parallax-testimonials span {
	color: #a9a9a9;
	font-size: 16px;
	text-align: center;
	margin-top: 20px;
}


/*-------------------------------------------------------*/
/* Page Title
/*-------------------------------------------------------*/

.page-title {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 100px;
	padding: 100px 0;
}

.page-title h1 {
	margin: 0;
	color: #fff;
	font-weight: 200;
	letter-spacing: 0.05em;
	font-size: 32px;
	text-align: center;
}


/*-------------------------------------------------------*/
/* Skiils Bars
/*-------------------------------------------------------*/

/* Skills Percentage */

.skills-item {
	position: relative;
	margin-bottom: 50px;
}

.skills-item:nth-child(6) {

}

.skills-header {
	position: relative;
	margin-bottom: 10px;
	color: #666666;
}

.skills-title {
	margin-bottom: 0;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 300;
}

.skills-percentage {
	position: absolute;
	right: 0;
	top: -2px;
	font-size: 18px;
	font-weight: 500;
}

/* Skills Bars */

.skills-bar {
    position: relative;
    width: 100%;
}

.skills-bar .bar-inner {
    position: relative;
    width: 100%;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.skills-bar .bar-inner .bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 6px;
    background: #ffa64d;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    margin-top: -3px;
}


/*-------------------------------------------------------*/
/* Our Team (ABOUT US)
/*-------------------------------------------------------*/

.our-team .container {
	max-width: 1140px;
}

.team-img img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
	width: 100%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.team-img img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.team-member,
.team-img {
	position: relative;
	overflow: hidden;
}

.team-title {
	margin: 24px 0 3px;
}


/*-------------------------------------------------------*/
/* Callout (SERVICES)
/*-------------------------------------------------------*/

.callout-text {
	padding: 20px;
	background-color: #fff;
}

.callout-text p {
	margin: 0;
	font-size: 15.5px;
}


/*-------------------------------------------------------*/
/* Contact
/*-------------------------------------------------------*/

.contact-side {
	flex: 30%;
	background-color: #f1f1f1;
	padding-top: 80px;
	padding-left: 80px;
}

.contact-map {
	flex: 70%;
	padding: 0;
}

.contact-item {
	position: relative;
	padding-left: 30px;
	margin-top: 20px;
}

.contact-icon {
	position: absolute;
	left: 0;
}

.contact-icon i {
	font-size: 17px;
	color: #a3a3a3;
}


/*-------------------------------------------------------*/
/* Google Map
/*-------------------------------------------------------*/

.gmap {
	width: 100%;
	height: 450px;
	transition: all 0.2s ease;
}

.pin-wrap {
	position: absolute;
	width: 40px;
	height: 40px;
	margin-top: -50px;
	margin-left: -22px;
	transform-origin: 50% 120.71068% 0;
	-webkit-animation: bounce 500ms ease infinite alternate;
			animation: bounce 500ms ease infinite alternate;
}

.pin::after {
	position: absolute;
	display: block;
	box-sizing: border-box;
	left: 14px;
	top: 15px;
	width: 12px;
	height: 12px;
	content: "";
	transform: rotateZ(-45deg);
	background-color: #ff0000;
	border-radius: 50% 50% 50% 50%;
}

.pin::before {
	position: absolute;
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	content: "";
	transform: rotateZ(-45deg);
	border: 10px solid #2cb8a5;
	border-radius: 50% 50% 50% 0;
}

.shadow {
	position: absolute;
}

.shadow::after {
	position: absolute;
	left: -111px;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -11px;
	content: "";
	transform: rotateX(55deg);
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.3) 100px 0 6px;
}

.pulse {
	position: absolute;
	margin-top: -50px;
	margin-left: -50px;
	transform: rotateX(55deg);
}

.pulse::after {
	display: block;
	width: 100px;
	height: 100px;
	content: "";
	opacity: 0;
	border-radius: 50%;
	box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.2);
	-webkit-animation: pulsate 500ms ease-out infinite alternate;
			animation: pulsate 500ms ease-out infinite alternate;
}

@keyframes pulsate {
	0% {
		transform: scale(1.2, 1.2);
		opacity: 1;
	}

	100% {
		transform: scale(0.1, 0.1);
		opacity: 0;
	}
}

@keyframes bounce {
	0% {
		transform: translate3d(0, 0, 0) scale3d(1, 1.05, 1);
	}
	100% {
		transform: translate3d(0, -40px, 0) scale3d(1.1, 0.9, 1);
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-section {
	padding: 100px 0 0 0;
	width: 100%;
}

.footer-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-subtitle {
	font-weight: 300;
	color: #fff;
	margin-bottom: 14px;
}

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

.footer-brand,
.footer-services,
.footer-contact {
	margin: 0 10px;
}

.footer-brand {
	width: calc(40% - 20px);
	padding-right: 40px;
}

.footer-services {
	width: calc(30% - 20px);
	padding-left: 30px;
}

.footer-contact {
	width: calc(30% - 20px);
	padding-left: 30px;
}

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

.footer-brand p {
	margin-bottom: 0;
}

.footer-logo {
	display: inline-block;
	padding: 0 0 20px 0;
	margin: 0;
	font-size: 22px;
	font-weight: 200;
	letter-spacing: 2px;
	font-family: 'Roboto', sans-serif;
}

.footer-logo img {
	width: auto;
	height: 40px;
	display: inline-block;
}

.footer-logo-text {
	color: #fff;
	line-height: 40px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0;
}

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

.footer-services p {
	margin-left: 14px;
	margin-bottom: 1px;
	text-indent: -14px;
}

.footer-services p:last-child {
	margin-bottom: 0;
}

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

.footer-contact i {
	padding-right: 14px;
}

.footer-contact p {
	margin-left: 30px;
	margin-bottom: 10px;
	text-indent: -15px;
}

.footer-contact p:last-child {
	margin-bottom: 0;
}

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

.sub-footer {
	padding: 30px 0;
	margin-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer p {
	margin-bottom: 0;
	padding-left: 10px;
	font-size: 14px;
}


/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/

.section-buttons .btn {
	margin-bottom: 20px;
}

.btn {
	font-family: "Inconsolata", monospace;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.2em;
	border: 2px solid transparent;
	border-radius: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	color: #fff;
	background-color: #121212;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn-lg {
	font-size: 13px;
	padding: 10px 22px;
}

.btn.btn-light {
	background-color: #eaece7;
	color: #121212;
}

.btn.btn-transparent {
	color: #fff;
	background-color: transparent;
	border: 1px solid #fff;
}

.btn:focus {
	color: #fff;
	outline: none !important;
}

.btn:hover {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	color: #fff;
}

.btn-transparent:hover,
.btn.btn-light:hover {
	background-color: #2cb8a5;
	border-color: transparent;
}


/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/

.upperacase {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.heading {
	margin-bottom: 30px;
}

h1.heading-small {
	font-size: 20px;
	letter-spacing: 0.2em;
}

h2.heading-small {
	font-size: 16px;
	letter-spacing: 0.2em;
}

h3.heading-small {
	font-size: 15px;
	letter-spacing: 0.2em;
}

h4.heading-small {
	font-size: 14px;
	letter-spacing: 0.2em;
}

h5.heading-small {
	font-size: 13px;
	letter-spacing: 0.2em;
}

h6.heading-small {
	font-size: 12px;
	letter-spacing: 0.2em;
}

.bottom-line:after {
	content: "";
	display: block;
	width: 40px;
	border-bottom: 2px solid #7a7a7a;
	margin: 19px auto 24px;
	z-index: 1;
	position: relative;
}

.bottom-line.style-2:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	border-bottom: 2px solid #d9d9d9;
}

.bottom-line.left-align:after {
	margin: 19px auto 24px 0;
}

.subheading {
	font-size: 15px;
	line-height: 26px;
	margin-top: 7px;
}

.subheading.style-2 {
	font-size: 16px;
}

.section-headings p {
	margin-bottom: 30px;
}

.highlight {
	padding: 3px 5px;
	color: #fff;
	background-color: #2cb8a5;
}





