@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Services
7. Testimonials (takeout)
8. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #000000;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 2;
	font-weight: 600;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;	
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: rgba(255,174,0,0.75);
	color: #FFFFFF;
}
p::selection
{
	
}
h1{font-size: 38px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	line-height: 1.2;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
img
{
	max-width: 100%;
}
button:active
{
	outline: none;
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 300px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.nopadding
{
	padding: 0px !important;
}
.section_title h1
{
	font-size: 40px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}
.section_title_container p
{
	font-size: 24px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.5;
	margin-top: 0px;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 100;
}
.header.scrolled
{
	background: rgba(0,0,0,0.85);
}
.header_content
{
	width: 100%;
	height: 88px;
}
.header.scrolled .header_content
{
	height: 75px;
}
.logo
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 17px;
}
.logo a
{
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.logo a > div:first-child
{
	font-size: 48px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 1.3;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.logo a > div:first-child span
{
	font-weight: 700;
	color: #ffbb00;
}
.header.scrolled .logo a > div:first-child
{
	font-size: 36px;
}
.logo a > div:last-child
{
	font-size: 9px;
	font-weight: 400;
	color: #ffbb00;
	text-transform: uppercase;
	letter-spacing: 0.75em;
	margin-right: -0.75em;
	line-height: 0.75;
	text-align: right;
	padding-right: 11px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.header.scrolled .logo a > div:last-child
{
	font-size: 8px;
}
.logo a:hover > div:first-child
{
	color: #ffbb00;
}
.logo a:hover > div:first-child span
{
	color: #FFFFFF;
}
.logo a:hover > div:last-child
{
	color: #FFFFFF;
}
.hamburger
{
	display: none;
	vertical-align: middle;
	padding-left: 15px;
	cursor: pointer;
	width: 34px;
	height: 26px;
	padding: 2px;
	margin-left: 7px;
	margin-top: 1px;
}
.header.scrolled .hamburger
{
	width: 26px;
	height: 20px;
}
.hamburger > div
{
	position: absolute;
	left: 2px;
	width: calc(100% - 4px);
	height: 2px;
	background: #FFFFFF;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.hamburger:hover > div
{
	background: #ffbb00;
	transform-origin: center center;
}
.hamburger > div:first-child
{
	top: 2px;
}
.hamburger > div:nth-child(2)
{
	top: 12px;
}
.header.scrolled .hamburger > div:nth-child(2)
{
	top: 9px;
}
.hamburger > div:nth-child(3)
{
	bottom: 2px;
}
.hamburger.active > div:first-child
{
	-webkit-transform: rotate(-45deg) translate(-10px, 5px);
	-moz-transform: rotate(-45deg) translate(-10px, 5px);
	-ms-transform: rotate(-45deg) translate(-10px, 5px);
	-o-transform: rotate(-45deg) translate(-10px, 5px);
	transform: rotate(-45deg) translate(-10px, 5px);
}
.header.scrolled .hamburger.active > div:first-child
{
	-webkit-transform: rotate(-45deg) translate(-5px, 4px);
	-moz-transform: rotate(-45deg) translate(-5px, 4px);
	-ms-transform: rotate(-45deg) translate(-5px, 4px);
	-o-transform: rotate(-45deg) translate(-5px, 4px);
	transform: rotate(-45deg) translate(-5px, 4px);
}
.hamburger.active > div:nth-child(2)
{
	-webkit-transform: rotate(45deg) translate(-3px, 4px);
	-moz-transform: rotate(45deg) translate(-3px, 4px);
	-ms-transform: rotate(45deg) translate(-3px, 4px);
	-o-transform: rotate(45deg) translate(-3px, 4px);
	transform: rotate(45deg) translate(-3px, 4px);
	opacity: 0;
	visibility: hidden;
}
.hamburger.active > div:nth-child(3)
{
	-webkit-transform: rotate(45deg) translate(-10px, -4px);
	-moz-transform: rotate(45deg) translate(-10px, -4px);
	-ms-transform: rotate(45deg) translate(-10px, -4px);
	-o-transform: rotate(45deg) translate(-10px, -4px);
	transform: rotate(45deg) translate(-10px, -4px);
}
.header.scrolled .hamburger.active > div:nth-child(3)
{
	-webkit-transform: rotate(45deg) translate(-5px, -5px);
	-moz-transform: rotate(45deg) translate(-5px, -5px);
	-ms-transform: rotate(45deg) translate(-5px, -5px);
	-o-transform: rotate(45deg) translate(-5px, -5px);
	transform: rotate(45deg) translate(-5px, -5px);
}
.header.scrolled .hamburger i
{
	font-size: 20px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
.main_nav
{
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
}
.main_nav ul li:not(:last-of-type)
{
	margin-right: 58px;
}
.main_nav ul li a
{
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: 550;
	color: #FFFFFF;
	padding-bottom: 12px;
}
.main_nav ul li a:hover,
.main_nav ul li.active a
{
	color: #ffbb00;
}
.main_nav ul li a > div
{
	position: absolute;
	left: 2px;
	bottom: 0;
	width: calc(100% - 3px);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
}
.main_nav ul li.active a > div
{
	visibility: visible;
	opacity: 1;
}
.main_nav ul li a > div > div:first-child,
.main_nav ul li a > div > div:nth-child(3)
{
	width: calc((100% - 10px) / 2);
	height: 2px;
	background: #ffbb00;
}
.main_nav ul li a > div > div:nth-child(2)
{
	width: 10px;
	height: 10px;
	border: solid 2px #ffbb00;
	border-radius: 50%;
}
.app
{
	position: absolute;
	top: 0;
	right: 0;
	width: 281px;
	padding-right: 1px;
	z-index: 1;
}
.app.active
{
	width: 411px;
	background: rgba(0,0,0,0.5);
}
.app.active::after
{
	display: block;
	position: right;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #3e3e3e;
	opacity: 0.1;
	content: '';
}
.header.scrolled .app_content.active
{
	background: rgba(0,0,0,0.95);
}
.app_button_container
{
	float:right;
	height: 74px;
}
.app_button
{
	width: 58%;
	height: 58px;
	cursor: pointer;
	overflow: hidden;
	padding-left: 43px;
}
.app.active .app_button
{
	height: 74px;
	background: transparent;
	cursor: default;
	padding-left: 48px;
}
.app_button_icon
{
	position: absolute;
	top: 85%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0px;
	width: 56px;
	height: 76px;
}
.app_button_icon img
{
	max-height: 100%;
}
.app_button > div:last-child
{
	font-size: 18px;
	font-weight: 400;
	color: #FFFFFF;
}
.app_button_close
{
	position: absolute;
	top: 63%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 45px;
	font-size: 19px;
	color: #ffbb00;
	font-weight: 850;
	text-transform: uppercase;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all 400ms 200ms ease;
	-moz-transition: all 400ms 200ms ease;
	-ms-transition: all 400ms 200ms ease;
	-o-transition: all 400ms 200ms ease;
	transition: all 400ms 200ms ease;
}
.app.active .app_button_close
{
	visibility: visible;
	opacity: 1;
}
.app_content
{
	position: fixed;
	top: 0;
	right: 0;
	width: 281px;
	height: 100vh;
	padding-top: 122px;
	padding-bottom: 60px;
	padding-left: 25px;
	padding-right: 24px;
	visibility: hidden;
	opacity: 0.8;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.app_content.active
{
	visibility: visible;
	opacity: 1;
	width: 411px;
	background: rgba(0,0,0,0.7);
}
.app_form_container
{
	width: 100%;
}
.app_form
{
	width: 100%;
}
.app_input
{
	width: 100%;
	height: 49px;
	background: transparent;
	border: none;
	border-bottom: solid 2px #737373;
	outline: none;
	font-size: 14px;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.app_input:hover,
.app_input:focus
{
	border-color: #ffbb00;
}
.app_input:not(:last-child)
{
	margin-bottom: 11px;
}
.app_input::-webkit-input-placeholder
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
}
.app_input:-moz-placeholder
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
}
.app_input::-moz-placeholder
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
} 
.app_input:-ms-input-placeholder
{ 
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
}
.app_input::input-placeholder
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
}
.app_select
{
	-webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    border: none;
    border-bottom: solid 2px #737373;
    outline: none;
    font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #838383 !important;
	background-image: url(../images/down.png);
    background-position: center right;
    background-repeat: no-repeat;
    cursor: pointer;
}

.app_form_button
{
	width: 100px;
	height: 46px;
	background: #ffbb00;
	font-size: 14px;
	font-weight: 700;
	color: #2a2a2a;
	border: none;
	outline: none;
	text-transform: uppercase;
	cursor: pointer;
	margin-top: 34px;
}

/*********************************
4. Menu
*********************************/

.menu
{
	position: fixed;
	top: -353px;
	left: 0;
	width: 100vw;
	height: 353px;
	background: rgba(0,0,0,0.85);
	visibility: hidden;
	opacity: 0;
	z-index: 99;
	padding-left: 47px;
	padding-top: 122px;
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}
.menu.active
{
	visibility: visible;
	opacity: 1;
	top: 0;
}
.menu_nav ul li
{
	display: inline-block;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translate3d(-30px,0,0);
	transform: translate3d(-30px,0,0);
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 800ms ease;
}
.menu_nav ul li:nth-child(2)
{
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}
.menu_nav ul li:nth-child(3)
{
	-webkit-transition-delay: 450ms;
	transition-delay: 450ms;
}
.menu_nav ul li:nth-child(4)
{
	-webkit-transition-delay: 600ms;
	transition-delay: 600ms;
}
.menu_nav ul li:nth-child(5)
{
	-webkit-transition-delay: 750ms;
	transition-delay: 750ms;
}
.menu_nav ul li:nth-child(6)
{
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}
.menu_nav ul li:nth-child(7)
{
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}
.menu_nav ul li:nth-child(8)
{
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}
.menu_nav ul li:nth-child(9)
{
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}
.menu.active .menu_nav ul li
{
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate3d(0px,0,0);
	transform: translate3d(0px,0,0);
}
.menu_nav ul li:not(:last-of-type)
{
	margin-bottom: 4px;
}
.menu_nav ul li a
{
	display: block;
	position: relative;
	font-size: 17px;
	font-weight: 400;
	color: #FFFFFF;
	text-decoration:none;
}
.menu_nav ul li a:hover
{
	color: #ffbb00;
	text-decoration:none;
}
.menu_nav ul li a::after
{
	display: block;
	position: absolute;
	top: 13px;
	left: 0;
}
.menu_nav ul li a:hover::after
{
	width: 100%;
	text-decoration:none;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.home_slider_container
{
	width: 100%;
	height: 100%;
}
.home_slide
{
	width: 100%;
	height: 100%;
}
.scroll_down
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 59px;
	z-index: 99;
}
.scroll_icon
{
	width: 24px;
    height: 46px;
    border: solid 2px #ffae00;
    border-radius: 12px;
    cursor: pointer;
}
.scroll_down > div:last-child
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.75;
	margin-top: 29px;
}
.scroll_icon::after
{
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 5px;
    height: 5px;
    border: solid 2px #ffae00;
    border-radius: 50%;
    background: #FFFFFF;
    content: '';
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(23px);
		-moz-transform: translateY(23px);
		-ms-transform: translateY(23px);
		-o-transform: translateY(23px);
		transform: translateY(23px);
	}
}
@keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(23px);
		-moz-transform: translateY(23px);
		-ms-transform: translateY(23px);
		-o-transform: translateY(23px);
		transform: translateY(23px);
	}
}
.slide_progress
{
	position: absolute;
	left: 58px;
	bottom: 136px;
	z-index: 1;
}
.slide_num
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.75;
	margin-bottom: 14px;
}
.slide_bar
{
	width: 329px;
	height: 4px;
	background: #747474;
}
.slide_bar > div
{
	width: 0%;
	height: 100%;
	background: #ffae00;
}
.slide_text
{
	position: absolute;
	left: 58px;
	bottom: 59px;
}
.slide_title
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
}
.slide_subtitle
{
	font-size: 12px;
	font-weight: 400;
	color: rgba(255,255,255,0.49);
	margin-top: 8px;
}
.fadeIn
{
	-webkit-animation-delay: 1200ms !important;
	animation-delay: 1200ms !important;
}
.fadeInRight
{
	-webkit-animation-delay: 800ms !important;
	animation-delay: 800ms !important;
	-webkit-animation-duration: 2000ms !important;
	animation-duration: 2000ms !important;
}
.fadeOut
{
	-webkit-animation-duration: 600ms !important;
	animation-duration: 600ms !important;
}
.slide_container
{
	position: absolute;
	left: 0;
	top: 34.1%;
	width: 100%;
}
.home_title h1
{
	font-size: 40px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 0.91;
}
.home_title h1 span
{
	color: #ffae00;
}
.home_text
{
	max-width: 656px;
	margin-top: 28px;
}
.home_text p
{
	font-size: 18px;
	color: rgba(255,255,255,0.49);
	line-height: 1.7;
}
.home_link
{
	margin-top: 32px;
}
.home_link a
{
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 400;
	color: #ffae00;
	padding-bottom: 5px;
}
.home_link a::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #ffbb00;
	content: '';
}

/*********************************
6. Services
*********************************/

.services
{
	padding-top: 72px;
	padding-bottom: 62px;
}
.services_row
{
	margin-top: 91px;
}
.section_expander
{
	width: calc(100% + 245px);
	left: -126px;
}
.service
{
	width: 100%;
	height: 239px;
	background: rgba(255,174,0,0.86);
	padding-left: 94px;
	padding-right: 30px;
	overflow: hidden;
	margin-bottom: 35px;
}
.service_icon
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -80px;
}
.service_icon_2
{
	left: -65px;
}
.service_icon_3
{
	left: -88px;
}
.service_icon > div
{
	width: 150px;
	height: 164px;
}
.service_icon > div > svg
{
	max-width: 100%;
	height: auto;
}
.service_icon_flip
{
	-webkit-transform: translateY(-50%) scaleX(-1);
	-moz-transform: translateY(-50%) scaleX(-1);
	-ms-transform: translateY(-50%) scaleX(-1);
	-o-transform: translateY(-50%) scaleX(-1);
	transform: translateY(-50%) scaleX(-1);
}
.service_title
{
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}
.service_text
{
	margin-top: 10px;
}
.service_text p
{
	color: #000000;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service:hover
{
	background: rgba(0,0,0,0.86);
}
.service:hover .service_title
{
	color: #ffae00;
}
.service:hover .service_text p
{
	color: #FFFFFF;
}
.svg path, .svg rect, .svg polygon
{
    fill: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.service:hover .svg path,
.service:hover .svg rect,
.service:hover .svg polygon
{
	fill: #ffae00;
}

.services_more
{
	margin-top: 27px;
}
.services_more_button
{
	width: 203px;
    height: 62px;
    border: solid 2px #FFFFFF;
    text-align: center;
    background: transparent;
}
.services_more_button a
{
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 58px;
    text-transform: uppercase;
}
.services_more_button:hover
{
	background: #FFFFFF;
}
.services_more_button:hover a
{
	color: #ffae00;
}


/*********************************
7. Gallery
*********************************/

.gallery
{
	width: 100%;
	height: 386px;
	background: #000000;
}
.gallery_slider_container
{
	width: 100%;
	height: 100%;
}
.gallery_item a
{
	display: block;
	width: 100%;
	height: 100%;
}
.gallery_overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(14,14,14,0.76);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.gallery_item:hover .gallery_overlay
{
	visibility: visible;
	opacity: 1;
}
.gallery_overlay > div
{
	width: 63px;
	height: 63px;
	background: #ffae00;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 63px;
	color: #FFFFFF;
}

/*********************************
8. Footer
*********************************/

.footer
{
	display: block;
	position: relative;
	width: 100%;
	padding-top: 25px;
}
.footer_container
{
	padding-bottom: 17px;
}
.footer .section_title h1
{
	color: #FFFFFF;
}
.footer .section_title_container p
{
	color: rgba(255,255,255,0.49);
	font-weight: 400;
}
.footer_row
{
	margin-top: 5px;
}
.footer_title
{
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
}
.contact_info_list
{
	margin-top: 51px;
	padding-right: 70px;
}
.contact_info_list ul li:not(:last-of-type)
{
	margin-bottom: 17px;
}
.contact_info_icon
{
	width: 18px;
	height: 18px;
}
.contact_info_icon img
{
	max-width: 100%;
	max-height: 100%;
}
.contact_info_list ul li:first-child .contact_info_icon
{
	margin-top: 7px;
}
.contact_info_content
{
	padding-left: 12px;
	font-size: 15px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 2;
}
.footer .social
{
	margin-top: 39px;
}
.social ul li
{
	width: 32px;
	height: 32px;
	overflow: hidden;
	border-radius: 50%;
	background: #ffae00;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.social ul li:not(:last-of-type)
{
	margin-right: 13px;
}
.social ul li a
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
}
.social ul li a i
{
	font-size: 14px;
	color: #FFFFFF;
	line-height: 32px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.social ul li:hover a i
{
	color: #1a1a1a;
}
.social ul li:hover
{
	background: #FFFFFF;
}
.contact_form_container
{
	margin-top: 0px;
	margin-bottom: 15px;
}
.contact_form > div:not(:last-child)
{
	margin-bottom: 15px;
}
.contact_input
{
	width: 100%;
	height: 46px;
	background: transparent;
	border: none;
	border-bottom: solid 2px #767271;
	outline: none;
	color: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.contact_textarea
{
	height: 123px;
	padding-top: 15px;
	margin-top: 5px;
}
.contact_input:focus,
.contact_input:hover
{
	border-color: #ffae00;
}
.contact_input::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #767271 !important;
}
.contact_input:-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #767271 !important;
}
.contact_input::-moz-placeholder
{
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #767271 !important;
} 
.contact_input:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #767271 !important;
}
.contact_input::input-placeholder
{
	font-size: 12px !important;
	font-weight: 500 !important;
	font-style: italic;
	color: #767271 !important;
}
.contact_form_button
{
	width: 203px;
	height: 62px;
	background: #ffae00;
	font-size: 16px;
	font-weight: 700;
	color: #2a2a2a;
	text-transform: uppercase;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 44px;
}
.footer_bar
{
	width: 100%;
	height: 71px;
	padding-left: 60px;
	border-top:1px solid #EBEAEA;
}
.copyright
{
	font-size: 14px;
	font-weight: 400;
	color: #F3F3F3;
}
.error {
        font-size: 0.9em;
        color: #FAF9A0;
        line-height: 1em;
        }
.error2 {
        font-size: 0.9em;
        color: red;
        line-height: 1.1em;
        }
.ok {
        font-size: 1.1em;
        color: #FAF9A0;
		font-weight:500;
        line-height: 1.5em;
        }
.ok2 {
        font-size: 1.1em;
        color: green;
		font-weight:500;
        line-height: 1.5em;
        }
/*********************************
11. Articles
*********************************/

.articles
{
	background: #FFFFFF;
	padding-top: 26px;
	padding-bottom: 26px;

}
.articles .section_title h1
{
	font-size: 40px;
	line-height: 1.2;
}
.articles .section_subtitle
{
	font-size: 18px;
	font-weight: 500;
	color: rgba(150,150,150,0.49);
	line-height: 1.2;
	margin-top: -5px;
	padding-left: 5px;
}
.articles_container_row
{
	margin-top: 45px;
}
.article
{
	width: calc((100% - 60px) / 3);
	height:100%;
	vertical-align:middle;
	margin-bottom:40px;
}
.article_date a
{
	font-size: 12px;
	font-weight: 500;
	color: #969696;
	line-height: 0.75;
	text-transform: uppercase;
}
.article_title
{
	margin-top: 5px;
}
.article_title a
{
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
	color: #2a2a2a;
}
.article_date a:hover,
.article_title a:hover,
.article_author a:hover
{
	color: #ffae00;
}
.article_author
{
	margin-top: 11px;
}
.article_author a
{
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
	color: #969696;
}
.article_text
{
	margin-top: 26px;
}
.article_link
{
	margin-top: 18px;
}
.article_link a
{
	position: relative;
	font-size: 16px;
    text-transform: uppercase;
    color: #2a2a2a;
    font-weight: 800;
    padding-bottom: 2px;
}
.article_link a:hover
{
	color: #ffae00;
}
.article_link a::after
{
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ffae00;
	content: '';
}
.load_more_button
{
	width: 156px;
	height: 62px;
	background: #ffae00;
	text-align: center;
	margin-top: -21px;
}
.load_more_button a
{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 62px;
	font-size: 16px;
	font-weight: 800;
	color: #2a2a2a;
	text-transform: uppercase;
}
 
 