/* ========================================================
   General
======================================================== */
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,500i,700,900&display=swap');

/* Common Styles */
html, body {
    overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	font-family:'Roboto', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background: #fff;
}

/* Links */
a {
	color: #000;
	transition: all 0.4s ease;
}
a:hover {
	color: #fbaf34;
	text-decoration: underline;
}

/* Media */
img {
	max-width: 100%;
	width: auto\9;
	height: auto;
}
embed,
iframe,
object,
video {
	max-width: 100%;
	vertical-align: middle;
}

/* Strong */
b, strong {
	font-weight: 700;
}

/* Typography */
h1, h2, h3 {
	/*font-family: 'Roboto Condensed', sans-serif;*/
	font-family:'Roboto', Arial, sans-serif;
	font-weight: 300;
	margin: 0;
}
p {
	margin-bottom: 15px;
}

/* Preloader */
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.07);
    border-right: 4px solid rgba(0, 0, 0, 0.07);
    border-bottom: 4px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid #A31C49;
    border-radius: 50%;
    -webkit-animation: spinner 800ms infinite linear;
    animation: spinner 800ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Icons */
@font-face {
	font-family: 'icomoon';
  	src: url('../fonts/icomoon.eot?tjp2j5');
  	src: url('../fonts/icomoon.eot?tjp2j5#iefix') format('embedded-opentype'),
    	 url('../fonts/icomoon.ttf?tjp2j5') format('truetype'),
    	 url('../fonts/icomoon.woff?tjp2j5') format('woff'),
    	 url('../fonts/icomoon.svg?tjp2j5#icomoon') format('svg');
  	font-weight: normal;
  	font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
  	font-family: 'icomoon' !important;
  	speak: none;
  	font-style: normal;
  	font-weight: normal;
  	font-variant: normal;
  	text-transform: none;
  	line-height: 1;
  	/* Better Font Rendering =========== */
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
.icon-instagram:before {
	content: "\e90c";
}
.icon-linkedin-logo:before {
	content: "\e906";
}
.icon-youtube-play-button:before {
	content: "\e907";
}
.icon-twitter-logo-silhouette:before {
	content: "\e909";
}
.icon-facebook:before {
	content: "\e90a";
}

/* ========================================================
   Buttons
======================================================== */
.btn {
	background: #77787b url(../images/line.png) repeat;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 15px;
	font-weight: 700;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
	padding: 12px 10px 10px;
	max-width: 240px;
	width: 100%;
	letter-spacing: 0.5px;
	transition: all 0.4s ease;
}
.btn:hover {
	background-color: #fbaf34;
	color: #fff;
}

/* ========================================================
   Header
======================================================== */
.header {
	position: relative;
	background: #d87b0c url(../images/header-bg.jpg) no-repeat top center;
	background-size: cover;
}
.header .container {
	position: relative;
}

/* Topbar */
.topbar {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.9);
	width: 100%;
	padding: 12px 0;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
	z-index: 20;
}
.topbar img {
	height: 55px;
}

.header .caption {
	width: 610px;
	text-align: center;
	padding: 150px 0 80px;
}
.header .caption h1 {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 60px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 2px;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.header .caption .social a {
	display: inline-block;
	background: #fff;
	width: 30px;
	height: 32px;
	font-size: 20px;
	line-height: 36px;
	text-align: center;
	margin: 0 6px;
}

/* Header Img */
.headerimg {
	position: absolute;
	top: -90px;
	right: -520px;
	width: 800px;
	height: 100%;
	z-index: 10;
}
.headerimg .img1,
.headerimg .img1-img,
.headerimg .img2,
.headerimg .img3,
.headerimg .img4 {
	position: absolute;
	top: 0;
	right: 0;
	width: 800px;
	height: 800px;
}
.headerimg .img1 {
	background: url(../images/header-img01.png) no-repeat center;
	background-size: cover;
	top: 0;
	right: 0;
	opacity: 0.7;
	z-index: 20;
}
.headerimg .img1-img {
	background: url(../images/header-img04.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}
.headerimg .img2 {
	background: url(../images/header-img03.png) no-repeat center;
	background-size: cover;
	left: 125px;
    width: 745px;
    height: 745px;
	z-index: 30;
}
.headerimg .img3 {
	background: url(../images/header-img03.png) no-repeat center;
	background-size: cover;
	top: -30px;
	left: 415px;
    width: 700px;
    height: 700px;
	z-index: 30;
}
.headerimg .img4 {
	background: url(../images/header-img03.png) no-repeat center;
	background-size: cover;
	top: -40px;
	left: 450px;
    width: 700px;
    height: 700px;
	z-index: 30;
}
.header-mobile {
	position: absolute;
	right: 0;
	top: 0;
	display: none;
}
.header-mobile img {
	height: 345px;
}

/* ========================================================
   Content Area / Sections
======================================================== */
.section {
	padding: 55px 0 45px;
}
.mb-30 {
	margin-bottom: 30px;
}
.gutters-8 {
	margin-right: -8px;
	margin-left: -8px;
}
.gutters-8 > .col,
.gutters-8 > [class*="col-"] {
	padding-right: 8px;
	padding-left: 8px;
}

/* Title */
.page-title {
	line-height: 1.35;
	letter-spacing: 1px;
	margin-bottom: 40px;
}

/* Row 1 */
.row1, .row2 {
	color: #68737a;
}
.row1 h2.page-title,
.row2 h2.page-title {
	font-size: 1.65rem;
	color: #333;
	letter-spacing: normal;
}
.row1 h6 {
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
	color: #333;
}
.row1 ul li {
	font-size: 17px;
	font-weight: 500;
	font-style: italic;
	line-height: 1.2;
	color: #f47920;
	border-bottom: 2px solid #fee7c2;
	padding: 12px 25px 12px 0;
}
.row1 ul li:last-child {
	border-bottom: none;
}

/* Row 2 */
.row2 {
	background: #edf0f1;
	background-size: cover;
}
.card {
	background: rgba(255,255,255,0.5);
	border: 0;
	border-radius: 0;
	padding: 20px 25px 25px;
	transition: all 0.3s ease;
}
.card h3 {
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.card img {
	margin-bottom: 25px;
}
.card img.img1 {
	height: 140px;
	margin-bottom: 20px;
}
.card .card-body {
	padding: 0;
}
.card p {
	line-height: normal;
}
.card:hover {
	background: rgba(255,255,255,0.85);
	box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

/* Row 3 */
.row3 {
	background: #191d1f url(../images/row3-bg.jpg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	box-shadow: inset 0 0 25px #000;
	color: #fff;
}
.row3 h2.page-title {
	color: #fbaf34;
}
.testimonials .testimonial {
	margin-bottom: 35px;
}
.testimonials .testimonial .desc {
	font-weight: 300;
	border-bottom: 7px solid #6d562c;
	padding-bottom: 20px;
}
.testimonials .testimonial .author-img > img {
	width: 140px;
}
.testimonials .testimonial .author-info {
	padding-left: 20px;
}
.testimonials .testimonial .author-info span {
	position: relative;
	display: block;
}

/* ========================================================
   Footer
======================================================== */
.footer {
	color: #000;
	border-top: 40px solid #000;
    padding: 24px 0 20px;
}
.footer p.copyright a {
	margin-left: 10px;
	font-weight: 900;
}

/* Social */
.social a {
	font-size: 24px;
	line-height: 1;
    color: #6a747c;
    margin-left: 15px;
    text-decoration: none;
}
.social a:hover {
	color: #fbaf34;
}

/* ========================================================
   Media Queries
======================================================== */
@media (min-width: 768px) {	
	/* Title */
	.page-title {
		font-size: 2.4rem;
		letter-spacing: 2px;
	}

	/* Row 1 */
	.row1 h2.page-title {
		max-width: 550px;
	}
	.info-horizontal {
		border-bottom: 1px solid transparent;
	}

	/* Row 2 */
	.card-n {
		padding: 20px 25px 25px;
	}
	.card-n h3,
	.card-n .card-body {
		text-align: left;
	}
	.card img.img1 {
		height: auto;
	}
	.card .card-body {
		min-height: 184px;
	}

	/* Row 3 */
	.row3 h2.page-title {
		font-size: 2rem;
		letter-spacing: 4px;
	}
	.testimonials .testimonial .author-info span {
		display: inline-block;
		padding-right: 16px;
	}
	.testimonials .testimonial .author-info span:after {
		content: 'l';
		position: absolute;
		top: 0;
		right: 4px;
	}
}

@media (min-width: 992px) {
	/* Row 1 */
	.row1 h2.page-title {
		max-width: 650px;
	}

	/* Row 2 */
	.row2 h2.page-title {
		margin-left: 150px;
		margin-right: 150px;
	}
	.card {
		padding: 20px 118px 25px;
	}
	.card-n {
		padding: 20px 40px 25px;
	}
	.card-n .card-body {
		padding-top: 10px;
	}
	.card img.img1 {
		height: 140px;
	}
	.card .card-body {
		min-height: 164px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1024px;
	}
}

@media (max-width: 1200px) {
	/* Header Img */
	.headerimg {
		width: 700px;
		top: -70px;
		right: -380px;
	}
	.headerimg .img1,
	.headerimg .img1-img {
		width: 700px;
		height: 700px;
	}
	.headerimg .img2,
	.headerimg .img3,
	.headerimg .img4 {
		width: 650px;
		height: 650px;
	}
	.headerimg .img3 {
		left: 355px;
	}
	.headerimg .img4 {
		left: 385px;
	}
}

@media (max-width: 992px) {
	/* Header */
	.header .caption {
		width: 440px;
	}
	.header .caption h1 {
		font-size: 42px;
	}
	.headerimg {
		right: -420px;
	}
}

@media (max-width: 768px) {
	/* Topbar */
	.topbar img {
		height: 38px;
	}

	/* Header */
	.header .caption {
		width: 310px;
		padding: 95px 0 35px;
	}
	.header .caption h1 {
		font-size: 32px;
	}
	.header .caption p {
		font-size: 26px;
	}
	.header-deskop {
		display: none;
		visibility: hidden;
		opacity: 0;
	}
	.header-mobile {
		display: block;
	}

	/* Row 3 */
	.testimonials .testimonial .author-img > img {
		width: 100px;
	}
	.testimonials .testimonial .author-info {
		width: calc(100% - 100px);
	}
}

@media (max-width: 620px) {
	/* Header */
	.header .caption {
		width: 270px;
	}
	.header .caption h1 {
		font-size: 28px;
	}
}

@media (max-width: 576px) {
	/* Header */
	.header .caption {
		width: 232px;
	}
	.header .caption h1 {
		font-size: 24px;
	}
	.header-mobile img {
		height: 330px;
	}

	/* Row */
	.row1 h2.page-title, .row2 h2.page-title {
		font-size: 1.35rem;
	}
	.row3 h2.page-title {
		font-size: 1.45rem;
	}
}

@media (max-width: 480px) {
	.topbar img {
		height: 28px;
	}
	.header .caption {
		width: 180px;
		padding: 80px 0 30px;
	}
	.header .caption h1 {
		font-size: 22px;
	}
	.header-mobile {
		right: -25px;
	}
	.header-mobile img {
		height: 310px;
	}
}

@media (max-width: 400px) {
	/* Header */
	.header-mobile img {
		height: 275px;
	}
	.header .caption {
		width: 174px;
	}

	/* Footer */
	.footer {
		font-size: 14px;
	}
	.social a {
		font-size: 20px;
		margin-left: 10px;
	}
}

@media (max-width: 320px) {
	/* Header */
	.header-mobile {
		right: -50px;
	}
	.header-mobile img {
		height: 270px;
	}
	.header .caption {
		width: 145px;
	}
	.header .caption h1 {
		font-size: 18px;
	}
}