@font-face {
	font-family: "Montserrat";
	src: url(../fonts/Montserrat.woff) format("woff");
}

@font-face {
	font-family: "Montserrat-Light";
	src: url(../fonts/Montserrat-Light.woff) format("woff");
}

@font-face {
	font-family: "Regular";
	src: url(../fonts/Regular.woff) format("woff");
}

@font-face {
	font-family: "Medium";
	src: url(../fonts/Medium.woff) format("woff");
}

@font-face {
	font-family: "Bold";
	src: url(../fonts/Bold.woff) format("woff");
}

html,
body {
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	font-smooth: always !important;
	-moz-osx-font-smoothing: grayscale !important;
	font-size: 14px;
	margin: 0;
	padding: 0;
	color: #252427;
	font-family: "Regular";
	font-weight: normal;
}

::selection {
	background: #33312b;
}

::-moz-selection {
	background: #33312b;
}

* {
	transition: all .3s cubic-bezier(.8, .01, .2, 1);
	-webkit-transition: all .3s cubic-bezier(.8, .01, .2, 1);
	-moz-transition: all .3s cubic-bezier(.8, .01, .2, 1);
	-o-transition: all .3s cubic-bezier(.8, .01, .2, 1);
	-ms-transition: all .3s cubic-bezier(.8, .01, .2, 1);
}

strong {
	font-family: "Bold";
}

a,
a:visited {
	color: #252427;
	text-decoration: none;
}

a:hover,
a:active {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0 0 15px 0;
	padding: 0;
	position: relative;
}

.text-white {
	color: #fff;
}

.text-white a,
.text-white a:visited {
	color: #fff;
}

.text-white a:hover,
.text-white a:active {
	color: #d9d9d9;
}

.text-black {
	color: #000;
}

.text-aspla {
	color: #4a6fa8;
}

.btn {
	border-radius: 50px;
	text-transform: uppercase;
	margin-top: 20px;
	font-weight: normal;
	font-family: "Montserrat-Light";
	text-decoration: none !important;
}

.btn-primary {
	font-size: 16px;
	padding: 14px 50px;
	background: #4a6fa8;
	color: #ffecc0;
}

.btn-primary:visited {
	color: #ffecc0;
}

.btn-primary:hover {
	background: #3f5e8e;
	color: #ffecc0;
}

.btn-default {
	padding: 10px 30px;
	background: #f5f0e7;
	color: #4a6fa8 !important;
	font-size: 14px;
}

.btn-default:visited {
	color: #4a6fa8 !important;
}

.btn-default:hover {
	background: #f2dbad;
	color: #4a6fa8 !important;
}

.btn-download {
	font-size: 14px;
	padding: 10px 25px;
	background: #4a6fa8;
	color: #fff;
}

.btn-download:visited {
	color: #fff;
}

.btn-download:hover {
	background: #3f5e8e;
	color: #fff;
}

h1 {
	font-family: "Regular";
	font-size: 54px;
}

h2 {
	font-family: "Regular";
	font-weight: 500;
	font-size: 48px;
}

h3 {
	font-family: "Regular";
	font-size: 26px;
	font-weight: 300;
}

.clearfix {
	clear: both;
}

#backtotop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	background: #33312b;
	opacity: 0;
	visibility: hidden;
}

#backtotop.invp {
	visibility: visible;
	opacity: 1;
}

#backtotop svg {
	width: 12px;
	height: 12px;
	padding: 15px;
}

#backtotop:hover {
	background: #4a6fa8;
}

header {
	width: 100%;
	height: 100vh;
	background: #ffeabc url('../images/header.jpg');
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#header-overlay {
	width: 100%;
	height: 100vh;
	background: url('../images/header.png');
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
}

#top-bar {
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 0;
	padding: 20px;
	position: fixed;
	z-index: 9999;
}

#top-bar.sticky {
	background: #ffecc0;
}

#top-bar.sticky #logo img {
	max-width: 80px;
}

#top-bar.sticky #navigation {
	padding: 10px 0;
}

#logo img {
	max-width: 150px;
}

#logo {
	float: left;
}

#nav-btn {
	float: right;
	padding-top: 9px;
	display: none;
}

#nav-btn svg {
	width: 30px;
	height: 30px;
}

#navigation {
	float: right;
	padding: 25px 0;
	font-family: "Montserrat";
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	font-weight: 700;
}

#navigation a {
	padding: 0 15px;
	text-decoration: none !important;
}

#navigation a.active {
	color: #4a6fa8;
}

#navigation a:hover {
	color: #4a6fa8;
}

#header-text {
	text-align: center;
	font-family: "Medium";
	padding-top: 130px;
}

#header-text p {
	font-size: 15px;
	max-width: 700px;
	margin: 18px auto 40px auto;
}

@keyframes scrollDown {
	100%,
	0% {
		bottom: 15px;
	}
	50% {
		bottom: 35px;
	}
}

@-webkit-keyframes scrollDown {
	100%,
	0% {
		bottom: 15px;
	}
	50% {
		bottom: 35px;
	}
}

#scroll-btn {
	position: absolute;
	bottom: 45px;
	left: 0;
	right: 0;
	text-align: center;
	animation: scrollDown 1s cubic-bezier(.8, .01, .2, 1) infinite;
	-webkit-animation: scrollDown 1s cubic-bezier(.8, .01, .2, 1) infinite;
	-o-animation: scrollDown 1s cubic-bezier(.8, .01, .2, 1) infinite;
	-moz-animation: scrollDown 1s cubic-bezier(.8, .01, .2, 1) infinite;
	-ms-animation: scrollDown 1s cubic-bezier(.8, .01, .2, 1) infinite;
}

#scroll-btn img {
	max-width: 30px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.row {
	width: 100%;
}

.col-half {
	width: 49%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.col-full {
	width: 100%;
	display: block;
	position: relative;
}

#despre-noi .content {
	text-align: right;
	padding-right: 30px;
}

#despre-noi .content p:last-of-type {
	margin-bottom: 35px !important;
}

#despre-noi {
	background: #4a6fa8;
}

#despre-noi img {
	max-width: 500px;
	margin-bottom: -3px;
	padding-left: 30px;
}

#doneaza {
	background: #000 url("../images/doneaza.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#doneaza .content {
	box-sizing: border-box;
	padding: 50px 0;
	text-align: center;
}

#doneaza .title {
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

#doneaza .content>p {
	font-size: 16px;
}

#doneaza .title:after {
	content: '';
	width: 50px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #4a6fa8;
	text-align: center;
	margin: auto;
	z-index: 999;
}

.steps {
	padding: 90px 0 50px 0;
	max-width: 65%;
	margin: 0 auto;
}

.steps h2 {
	margin: 10px 0;
}

.step {
	margin: 0 auto;
	text-align: left;
	position: relative;
}

.step:nth-child(1) {
	padding-bottom: 60px;
}

.step:nth-child(1) .step-icon:after,
.step:nth-child(2) .step-icon:after {
	position: absolute;
	width: 2px;
	height: 122px;
	content: '';
	background: #b9b8b6;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -124px;
}

.step:nth-child(2) {
	padding: 60px 0;
}

.step:nth-child(3) {
	padding-top: 60px;
}

.step-icon {
	vertical-align: top;
	display: inline-block;
	border: 2px solid #4a6fa8;
	padding: 40px;
	width: 80px;
	height: 80px;
	border-radius: 200px;
	cursor: default;
	margin-right: 50px;
	position: relative;
	text-align: center;
}

.step:hover .step-icon {
	background: #4a6fa8;
}

.step:hover .step-icon .a {
	fill: #fff;
}

.step-icon svg {
	vertical-align: top;
	max-width: 80px;
	max-height: 80px;
}

.step-text {
	text-align: left;
	display: inline-block;
	vertical-align: middle;
}

.step-text p {
	max-width: 450px;
}

.step-text-half {
	text-align: center;
	width: 49%;
	display: inline-block;
}

.step-text-half p {
	margin-bottom: 25px;
}

#mai-departe {
	background: #4a6fa8;
	font-size: 16px;
}

#mai-departe p {
	margin-bottom: 30px;
}

#mai-departe img {
	max-width: 400px;
	margin-bottom: -3px;
}

#mai-departe ul {
	padding: 0;
	margin-bottom: 30px;
}

#mai-departe li {
	list-style: none;
	position: relative;
	padding: 15px 0;
}

#mai-departe li svg {
	width: 30px;
	height: 30px;
	float: left;
	margin-right: 20px;
}

#mai-departe ul span {
	vertical-align: 50%;
}

#mai-departe li:hover .b {
	fill: #f2dbad;
}

#contact {
	text-align: center;
	background: #33312b;
	color: #a1a1a1;
}

#contact .content {
	padding: 70px 0 30px 0;
}

#contact p {
	font-size: 16px;
}

#contact ul {
	padding: 0;
	margin: 30px 0 70px 0;
}

#contact li {
	list-style: none;
	width: 35px;
	height: 35px;
	border-radius: 200px;
	background: #a1a1a1;
	display: inline-block;
	margin: 0 8px;
	vertical-align: top;
}

#contact li:hover {
	background: #898989;
}

#contact li img {
	width: 11px;
	padding: 7px;
	width: 17px;
	height: 20px;
}

#contact a,
#contact a:hover,
#contact a:visited,
#contact a:active {
	color: #a1a1a1;
}

@media screen and (max-width:1200px) {
	* {
		background-attachment: scroll !important;
	}
	.container {
		padding: 0 10px;
		box-sizing: border-box;
	}
	h1 {
		font-size: 35px;
	}
	h2 {
		font-size: 30px;
	}
	#logo img {
		max-width: 100px;
	}
	#nav-btn {
		display: block;
	}
	#logo {
		z-index: 99999;
	}
	#top-bar {
		position: fixed;
		background: #ffecc0;
		z-index: 99999;
	}
	#top-bar #logo img {
		max-width: 80px;
	}
	#navigation {
		position: absolute;
		width: 100%;
		height: 100vh;
		left: 0;
		top: 0;
		z-index: -9999;
		padding-top: 100px;
		background: #f5f0e7;
		transform: translateY(100%);
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-o-transform: translateY(100%);
		opacity: 0;
		transition: 1s;
		text-align: center;
	}
	#nav-btn div {
		transform-origin: center;
		width:30px;
		height:2px;
		background:#000;
		transition: .5s ease-out;
		
	}
	#nav-btn div + div{
		margin-top:7px;
	}
	#nav-btn.opened div:nth-child(1) {
		transform: translateY(9px) rotate(-45deg);
		-webkit-transform: translateY(9px) rotate(-45deg);
		-moz-transform: translateY(9px) rotate(-45deg);
		-o-transform: translateY(9px) rotate(-45deg);
		-ms-transform: translateY(9px) rotate(-45deg);
	}
	#nav-btn.opened div:nth-child(3) {
		transform: translateY(-9px) rotate(45deg);
		-webkit-transform: translateY(-9px) rotate(45deg);
		-moz-transform: translateY(-9px) rotate(45deg);
		-o-transform: translateY(-9px) rotate(45deg);
		-ms-transform: translateY(-9px) rotate(45deg);
	}
	#nav-btn.opened div:nth-child(2) {
		opacity: 0;
	}
	#navigation a {
		display: block;
		padding: 20px 0;
		font-size: 18px;
	}
	#navigation.menu-on {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	#despre-noi h2:after,
	#mai-departe h2:after {
		content: '';
		width: 50px;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background: #fff;
		text-align: center;
		margin: auto;
		z-index: 999;
	}
	#despre-noi h2,
	#mai-departe h2 {
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	@keyframes scrollDown {
		100%,
		0% {
			bottom: 15px;
		}
		50% {
			bottom: 25px;
		}
	}
	@-webkit-keyframes scrollDown {
		100%,
		0% {
			bottom: 15px;
		}
		50% {
			bottom: 25px;
		}
	}
	#scroll-btn img {
		max-width: 20px;
	}
	.btn-download {
		font-size: 12px;
		padding: 10px 10px;
	}
	.col-half {
		display: block;
		width: 100%;
		text-align: center;
	}
	#despre-noi .content {
		text-align: center;
		padding: 0;
	}
	#despre-noi img {
		padding: 0;
		max-width: 100%;
		margin-top: 60px;
	}
	.step:nth-child(1) .step-icon:after,
	.step:nth-child(2) .step-icon:after {
		position: absolute;
		width: 0px;
		height: 0px;
		content: '';
		bottom: 0;
	}
	.step:nth-child(1) {
		padding-bottom: 20px;
	}
	.step:nth-child(2) {
		padding: 30px 0 10px 0;
	}
	.step:nth-child(3) {
		padding-top: 10px;
	}
	.step,
	.step-text {
		text-align: center;
	}
	.steps {
		max-width: 100%;
		text-align: center;
		padding: 25px 0 10px 0;
	}
	.step-icon {
		margin: 0;
	}
	#mai-departe {
		padding-bottom: 80px;
	}
	#mai-departe img {
		max-width: 100%;
		margin-bottom: 40px;
	}
	#mai-departe ul {
		text-align: center;
	}
	#mai-departe li svg {
		width: 50px;
		height: 50px;
		float: none;
		display: block;
		margin: 0 auto 15px auto;
	}
	#contact p {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	#backtotop:hover {
		background: #33312b;
	}
}

@media screen and (max-width:480px) {
	#scroll-btn {
		display: none;
	}
	#header-overlay {
		width: 100%;
		height: 100vh;
		background-size: 200%;
		position: relative;
	}
	#header-text {
		text-align: center;
		font-family: "Medium";
		padding-top: 30%;
	}
}