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

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

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Buttons
	6.1 Buttons
	6.2 Accordions
	6.3 Tabs
	6.4 Loaders
	6.5 Milestones
	6.6 Icon Boxes
7. 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: 18px;
	line-height: 1.58;
	font-weight: 400;
	color: #969696;
	-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;
	-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: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: 48px;}
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
{
	
}
h2{	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;}
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: 400px;
    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: 110px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}
.section_title h1 span
{
	color: #ffae00;
}
.section_title_container p
{
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.875;
	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: 400;
	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: 11px;
	z-index: 1;
}
.app.active
{
	width: 411px;
	background: rgba(0,0,0,0.5);
}
.app.active::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #3e3e3e;
	opacity: 0.5;
	content: '';
}
.header.scrolled .app_content.active
{
	background: rgba(0,0,0,0.85);
}
.app_button_container
{
	width: 100%;
	height: 74px;
}
.app_button
{
	width: 100%;
	height: 53px;
	background: #ffae00;
	cursor: pointer;
	overflow: hidden;
	padding-left: 53px;
}
.app.active .app_button
{
	height: 74px;
	background: transparent;
	cursor: default;
	padding-left: 48px;
}
.app_button_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: -30px;
	width: 66px;
	height: 66px;
}
.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: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 24px;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: 500;
	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: 152px;
	padding-bottom: 60px;
	padding-left: 25px;
	padding-right: 24px;
	visibility: hidden;
	opacity: 0;
	-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.85);
}
.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: 18px;
	font-weight: 500;
	color: #FFFFFF;
}
.menu_nav ul li a:hover
{
	color: #ffbb00;
}
.menu_nav ul li a::after
{
	display: block;
	position: absolute;
	top: 13px;
	left: 0;
	width: 0%;
	height: 2px;
	background: #ffbb00;
	content: '';
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.menu_nav ul li a:hover::after
{
	width: 100%;
}

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

.home
{
	width: 100%;
	height: 130vh;
	overflow: hidden;
}
.home_container
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding-bottom: 143px;
}
.home .section_title h1
{
	font-size: 60px;
	color: #FFFFFF;
	line-height: 1;
}

/*********************************
6. Elements
*********************************/

.elements
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 99px;
	padding-bottom: 88px;
}
.elements_title h1
{
	font-size: 72px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 0.75;
}

/*********************************
6.1 Buttons
*********************************/

.buttons
{

}
.buttons_container
{
	margin-top: 81px;
}
.button
{
	width: 203px;
	height: 62px;
	margin-bottom: 15px;
	text-align: center;
}
.button:not(:last-child)
{
	margin-right: 26px;
}
.button a
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 62px;
}
.button_1
{
	background: #ffae00;
}
.button_1:hover
{
	background: #2a2a2a;
}
.button_1 a
{
	color: #2a2a2a;
}
.button_1:hover a
{
	color: #ffae00;
}
.button_2
{
	background: #2a2a2a;
}
.button_2:hover
{
	background: #ffae00;
}
.button_2 a
{
	color: #ffae00;
}
.button_2:hover a
{
	color: #2a2a2a;
}
.button_3
{
	background: transparent;
	border: solid 2px #ffae00;
}
.button_3 a
{
	line-height: 58px;
	color: #2a2a2a;
}
.button_3:hover
{
	background: #ffae00;
}

/*********************************
6.2 Accordions
*********************************/

.acc_tabs
{
	margin-top: 85px;
}
.acc_tabs_row
{
	margin-top: 82px;
}
.accordion_container:not(:last-child)
{
	margin-bottom: 22px;
}
.accordion
{
	height: 62px;
	width: 100%;
	background: #ffae00;
	padding-left: 36px;
	cursor: pointer;
	color: #2a2a2a;
	font-size: 16px;
	font-weight: 700;
	line-height: 62px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion.active
{
	background: #000000;
	color: #ffae00;
}
.accordion div
{
	max-width: 90%;
	overflow: hidden;
	white-space: nowrap;
}
.accordion::after
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 22px;
	height: 100%;
	content: '+';
	font-size: 16px;
	color: #2a2a2a;
	font-weight: 700;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.accordion.active::after
{
	content: '-';
	color: #ffae00;
}
.accordion_panel
{
	padding-right: 8px;
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.accordion_panel > div
{
	padding-bottom: 20px;
}
.accordion_panel p
{
	font-size: 14px;
	line-height: 2.1428;
	font-weight: 500;
	padding-top: 28px;
}

/*********************************
6.3 Tabs
*********************************/

.tabs
{
	width: 100%;
	background: #FFFFFF;
}
.tabs_container
{
	width: 100%;
}
.tab
{
	height: 62px;
	background: #ffae00;
	font-size: 16px;
	color: #2a2a2a;
	font-weight: 700;
	line-height: 62px;
	flex-grow: 1;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	margin-bottom: 9px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.tab:not(:last-child)
{
	margin-right: 2px;
}
.tab.active
{
	background: #020b1f;
	color: #FFFFFF;
}
.tab_panels
{
	padding-left: 2px;
	padding-right: 2px;
	padding-top: 25px;
	padding-bottom: 32px;
}
.tab_panel
{
	display: none !important;
	width: 100%;
	height: 100%;
	-webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
.tab_panel.active
{
	display: block !important;
}
.tab_panel_content p:last-of-type
{
	margin-bottom: 0;
}
.tab_text
{
	margin-top: -2px;
}
.tab_text p
{
	font-size: 14px;
	line-height: 2.1428;
	font-weight: 500;
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}
.tab_image
{
	width: 100%;
}
.tab_image img
{
	max-width: 100%;
}

/*********************************
6.4 Loaders
*********************************/

.loaders
{
	margin-top: 72px;
}
.loaders_row
{
	margin-top: 82px;
}
.loader_container
{
	height: 251px;
}
.loader
{
	width: 251px;
	height: 251px;
	margin: 0 auto;
	background: transparent;
}
.loader_content
{
	position: absolute;
	left: 50%;
	bottom: 98px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 18px;
	font-weight: 500;
	color: #232323;
	white-space: nowrap;
	text-align: center;
}
.loader_title
{
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.0;
	white-space: nowrap;
	top: 40px;
}
.progressbar-text
{
	top: 40.5% !important;
	font-size: 60px !important;
	font-weight: 700 !important;
	color: #ffae00 !important;
	line-height: 0.75 !important;
}

/*********************************
6.5 Milestones
*********************************/

.milestones
{
	margin-top: 99px;
}
.milestones_row
{
	margin-top: 86px;
}
.milestone
{
	width: 100%;
	padding-right: 30px;
}
.milestone_counter
{
	font-size: 110px;
	font-weight: 700;
	color: #ffae00;
	line-height: 0.75;
}
.milestone_title
{
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
	margin-top: 12px;
}
.milestone_text
{
	margin-top: 17px;
}
.milestone_text p
{
	font-size: 14px;
	font-weight: 500;
	color: #9a9a9a;
	line-height: 2.14285;
}

/*********************************
6.6 Icon Boxes
*********************************/

.icon_boxes
{
	margin-top: 90px;
}
.icon_boxes_row
{
	margin-top: 79px;
}
.service
{
	width: 100%;
	background: transparent;
}
.service:not(:last-child)
{
	margin-bottom: 80px;
}
.service_icon > div
{
	width: 64px;
	height: 64px;
}
.service_icon > div > svg
{
	max-width: 100%;
	height: auto;
}
.service_icon > div > img
{
	max-height: 100%;
}
.service_icon_flip
{
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}
.service_content
{
	padding-left: 20px;
}
.service_title
{
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}
.service:hover .service_title
{
	color: #ffae00;
}
.service_text
{
	margin-top: 10px;
}
.service_text p
{
	font-size: 14px;
	font-weight: 500;
	color: #6c6c6c;
	line-height: 2;
}
.svg path, .svg rect, .svg polygon
{
    fill: #ffae00;
}

/*********************************
7. Footer
*********************************/

.footer
{
	display: block;
	position: relative;
	width: 100%;
}
.footer_bar
{
	width: 100%;
	height: 91px;
	padding-left: 60px;
}
.copyright
{
	font-size: 12px;
	font-weight: 500;
	color: #454545;
}