
/*
 Table Of Contents 
 1.) Default Styles

 2.)  Home page
 2.1) Header
 2.2) Top - Section
 2.3) Content - Main
 2.3.1) Section - 1
 2.3.2) Section - 2
 2.4) Footer
 
 3.)  Inner - Page
 
===============================================*/


/*
 1.) Typography
 ----------------------------------------*/

@font-face {
    font-family: 'fira_sanslight';
    src: url('../fonts/firasans-light.eot');
    src: url('../fonts/firasans-light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/firasans-light.woff2') format('woff2'),
         url('../fonts/firasans-light.woff') format('woff'),
         url('../fonts/firasans-light.ttf') format('truetype'),
         url('../fonts/firasans-light.svg#fira_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fira_sansmedium';
    src: url('../fonts/firasans-medium.eot');
    src: url('../fonts/firasans-medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/firasans-medium.woff2') format('woff2'),
         url('firasans-medium.woff') format('woff'),
         url('../fonts/firasans-medium.ttf') format('truetype'),
         url('../fonts/firasans-medium.svg#fira_sansmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'fira_sansbold';
    src: url('../fonts/firasans-bold-webfont.eot');
    src: url('../fonts/firasans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/firasans-bold-webfont.woff2') format('woff2'),
         url('../fonts/firasans-bold-webfont.woff') format('woff'),
         url('../fonts/firasans-bold-webfont.ttf') format('truetype'),
         url('../fonts/firasans-bold-webfont.svg#fira_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;

}


/*
 1.) Default Styles
 ----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size:20px;
}

sub {
	bottom: -0.25em;
}

img {
	width:auto;
	height:auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height:.5em;
}

/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}

/* #Basic Styles
================================================== */

body {
	font-family:"fira_sanslight", Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:48px;
	color:#000000; 
	background:#000000;
}

@media only screen and (max-width:1023px) {
body {
	font-size:20px;
	line-height:40px;
}
}

@media only screen and (max-width:1023px) {
body {
	font-size:18px;
	line-height:36px;
}
}

@media only screen and (max-width:767px) {
body {
	font-size:16px;
	line-height:30px;
}
}


/* #Links
================================================== */

a {
	color:#000000;
	outline:0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor:pointer;
	text-decoration:none;
}

a:hover {
	color:#0024ff;
	text-decoration:underline;
	outline:0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

a:focus, a:active, a:visited {
	outline:0;
	text-decoration:none;
}

a.body:link {
    color:#0024ff;text-decoration:none;
    }

a.body:hover {
    color:#0024ff;text-decoration:underline;
    }
        
a.body:visited {
    color:#0024ff;text-decoration:none;
    }

/* #Typography
================================================== */

h1, h2, h3, h4, h5, h6 {
	font-weight:normal; 
	font-family:"fira_sansmedium", Arial, Helvetica, sans-serif;
	line-height:1.1em;
	padding:0 0 60px 0;
	margin:0;
}

h1 { 
	font-family:"fira_sansbold", Arial, Helvetica, sans-serif;
	font-size:60px; 
	color:#ffffff;
}

h2 {
	font-size:60px;
}

h3 {
	font-size:45px;
}

h4 {
	font-size:30px;	
}

p {
	padding:0 0 45px 0;
}

em {
	font-style:italic;
}

strong {
	font-weight:normal;
	font-family:"fira_sansbold", Arial, Helvetica, sans-serif;
}

.bold {
	font-family:"fira_sansbold", Arial, Helvetica, sans-serif;
}

.upper {
	text-transform:uppercase
}


@media only screen and (max-width:1089px) {
h1, h2, h3, h4, h5, h6 {
	padding:0 0 50px 0;
}

h1 { 
	font-size:50px; 
}

h2 {
	font-size:50px;
}

h3 {
	font-size:37px;
}

h4 {
	font-size:28px;	
}

p {
	padding:0 0 35px 0;
}
}


@media only screen and (max-width:1023px) {
h1, h2, h3, h4, h5, h6 {
	padding:0 0 40px 0;
}

h1 { 
	font-size:45px; 
}

h2 {
	font-size:45px;
}

h3 {
	font-size:28px;
}

h4 {
	font-size:20px;	
}

p {
	padding:0 0 30px 0;
}
}

@media only screen and (max-width:767px) {
h1, h2, h3, h4, h5, h6 {
	padding:0 0 30px 0;
}

h1 { 
	font-size:30px; 
}

h2 {
	font-size:30px;
}

h3 {
	font-size:24px;
}

p {
	padding:0 0 25px 0;
}
}



/* #Order and Unorder Styles
================================================= */

ul, li, ol {
	list-style:none;
}


/* #Show-Hide Responsive Options
================================================== */

.show_mobile {
	display:none;
}

.hide_mobile {
	display:block;
}

.show_both {
	display:none;
}

.hide_both {
	display:block;
}


@media only screen and (max-width: 979px) {
.show_both {
	display:block;
}

.hide_both {
	display:none;
}
}

@media only screen and (max-width: 767px) {
.show_mobile {
	display:block
}
.hide_mobile {
	display:none
}
}


/*
 2.) Home page
 ----------------------------------------*/
.container-main {
	width:100%; 
	float:left; 
	position:relative;
}

.container {
	width:100%;
	max-width:1150px;
	margin:0 auto;
	padding:0 30px;
}

.outer-bg {
	width:100%;
	height:100%;
	float:none;
	display:table;
	margin:0 auto
}

.inner-bg {
	width:100%;
	height:100%;
	float:none;
	display:table-cell;
	vertical-align:middle;
}

@media only screen and (max-width: 767px) {
.container {
	max-width:100%;
	padding:0 5%;
}
}


/*
 2.1) Header
 ----------------------------------------*/

.header-main {
	width:100%;
	float:left;
	background:#ffffff;
	border-bottom:1px solid #000000;
	padding:40px 40px;
}

.logo {
	float:left;
	font-family:"fira_sansbold", Arial, Helvetica, sans-serif;
	font-size:48px;
	color:#000000;
}

.logo a {
	color:#000000;
}

.logo a:hover {
	color:#000000;
	text-decoration:none;
}

.logo img {
	margin:-25px 0 0 5px;
}

.menu-btn {
	width:57px;
	height:57px;
	float:right;
	background:#000000;
	border-radius:30px;
	padding:12px 10px;
}

.menu-btn span {
	width:100%;
	height:5px;
	float:left;
	background:#ffffff;
	border-radius:3px;
	margin:3px 0;
}

.menu-btn.active {
	background:#000000 url(../images/icon-close-01.png) no-repeat center center;
	transition:none;
}

.menu-btn.active span {
	display:none;
}

.nav-bar {
	width:100%;
	height:100%;
	float:left;
	display:none;
	background:#ffffff;
	position:relative;
	z-index:20;
	position:absolute;
	top:138px;
	left:0;
}

.nav-bar ul {
	width:100%;
	float:left;
	padding:35px 0;
}

.nav-bar ul li {
	width:100%;
	float:left;
	font-size:45px;
	color:#000000;
	border-bottom:1px solid #000000;
	margin-bottom:35px;
	padding:0 40px 35px 40px;
}

.nav-bar ul li:last-child {
	border-bottom:none;
	margin-bottom:0;
	padding-bottom:0;
}

.nav-bar ul li a {
	color:#000000;
	background:url(../images/icon-arrow-01.png) no-repeat left center;
	padding:0 0 0 35px;
}

.nav-bar ul li a:hover {
	color:#000000;
	text-decoration:none;
}

.nav-bar ul li a.active {
	color:#000000;
	text-decoration:none;
}

@media only screen and (max-width:1089px) {
.header-main {
	padding:30px 40px;
}

.logo {
	font-size:40px;
}

.logo img {
	max-width:60px;
}

.menu-btn {
	width:50px;
	height:50px;
	padding:10px 10px;
}

.menu-btn span {
	height:4px;
}

.menu-btn.active {
	background-size:25px auto;
}

.nav-bar {
	top:111px;
	left:0;
}

.nav-bar ul {
	width:100%;
	float:left;
	padding:25px 0;
}

.nav-bar ul li {
	font-size:37px;
	margin-bottom:25px;
	padding:0 40px 25px 40px;
}
}

@media only screen and (max-width: 1023px) {
.header-main {
	padding:25px 30px;
}

.logo {
	font-size:30px;
}

.logo img {
	max-width:50px;
	margin:-18px 0 0 5px;
}

.menu-btn {
	width:45px;
	height:45px;
	padding:7px 9px;
}

.menu-btn.active {
	background-size:22px auto;
}

.nav-bar {
	top:96px;
	left:0;
}

.nav-bar ul {
	padding:20px 0;
}

.nav-bar ul li {
	font-size:27px;
	margin-bottom:20px;
	padding:0 30px 20px 30px;
}

.nav-bar ul li a {
	padding:0 0 0 25px;
}
}

@media only screen and (max-width: 767px) {
.header-main {
	padding:15px 5% 15px 5%;
}

.logo {
	font-size:20px;
}

.logo img {
	max-width:30px;
	margin:-12px 0 0 3px;
}

.menu-btn {
	width:35px;
	height:35px;
	padding:7px 7px;
}

.menu-btn span {
	width:100%;
	height:3px;
	margin:2px 0;
}

.menu-btn.active {
	background-size:16px auto;
}

.nav-bar {
	top:66px;
}

.nav-bar ul {
	padding:8px 0;
}

.nav-bar ul li {
	font-size:18px;
	margin-bottom:8px;
	padding:0 5% 8px 5%;
}

.nav-bar ul li a {
	background-size:7px auto;
	padding:0 0 0 20px;
}
}


/*
 2.2) Top - Section
 ----------------------------------------*/

.top-section {
	width:100%;
	float:left;
	text-align:center;
	padding:60px 0;
}

.top-section h1 {
	width:100%;
	float:left;
	border-bottom:1px solid #666666;
	margin-bottom:50px;
}

.top-section p {
	font-size:25px;
	color:#FFFFFF;
}

.top-section p:last-child {
	padding-bottom:0;
}

.top-section aside {
	width:100%;
	float:left;
}

@media only screen and (max-width:1089px) {
.top-section {
	padding:50px 0;
}

.top-section h1 {
	margin-bottom:40px;
}

.top-section p {
	font-size:23px;
}
}

@media only screen and (max-width:1023px) {
.top-section {
	padding:40px 0;
}

.top-section h1 {
	margin-bottom:30px;
}

.top-section p {
	font-size:20px;
}
}

@media only screen and (max-width:767px) {
.top-section {
	padding:35px 0;
}

.top-section h1 {
	margin-bottom:25px;
}

.top-section p {
	font-size:18px;
}
}


/*
 2.3) Content - Main
 ----------------------------------------*/
 
.content-main {
	width:100%;
	float:left;
	background:#ffffff;
	padding:50px 0;
}

.content-main h2 {
	text-align:center;
}

.content-main p:last-child {
	padding-bottom:0;
}
 
 
@media only screen and (max-width:1023px) {
.content-main {
	padding:40px 0;
}
}
 
@media only screen and (max-width:767px) {
.content-main {
	padding:35px 0;
}
}


 /*
 2.3.1) Section - 1
 ----------------------------------------*/

.section-1 {
	width:100%;
	float:left;
	text-align:center;
	padding:0 0 60px 0;
}

.section-1 h3 {
	color:#0024ff;
	padding-bottom:0;
}

.section-1 article {
	width:30.3%;
	height:225px;
	float:none;
	display:inline-block;
	vertical-align:top;
	background:#f2f2f2;
	margin:0 2.50% 50px 0;
	position:relative;
}

.section-1 article a {
	width:100%;
	height:100%;
	float:left;
}

.section-1 article a:hover h3 {
	text-decoration:underline;
}

.section-1 article .inner-bg {
	padding:0 20px;
}

.section-1 .article-bg {
	width:102.50%;
	float:left;
	margin:0 -2.50% -50px 0;
}

@media only screen and (max-width:1089px) {
.section-1 {
	padding:0 0 50px 0;
}
}

@media only screen and (max-width:1023px) {
.section-1 {
	padding:0 0 40px 0;
}

.section-1 article {
	height:200px;
	margin:0 2.50% 40px 0;
}

.section-1 .article-bg {
	width:102.50%;
	float:left;
	margin:0 -2.50% -40px 0;
}
}

@media only screen and (max-width:767px) {
.section-1 article {
	width:100%;
	height:180px;
	max-width:190px;
	margin:0 10px 30px 10px;
}

.section-1 .article-bg {
	width:100%;
	margin:0 0 -30px 0;
}
}

@media only screen and (max-width:479px) {
.section-1 article {
	height:200px;
	max-width:100%;
	margin:0 0 30px 0;
}
}


 /*
 2.3.2) Section - 2
 ----------------------------------------*/

.section-2 {
	width:100%;
	float:left;
}

.section-2 h2 {
	text-align:center;
}

.section-2 p:last-child {
	padding-bottom:0;
}
 

 /*
 2.4) Footer
 ----------------------------------------*/

.footer-main {
	width:100%;
	float:left;
	padding:30px 0;
}

.footer-links {
	width:100%;
	float:left;
	border-bottom:1px solid #666666;
	margin-bottom:45px;
	padding-bottom:45px;
}

.footer-links p {
	float:right;
	color:#666666;
	padding:3px 0 0 0;
}

.footer-links p a {
	color:#666666;
}

.footer-links p a:hover {
	color:#ffffff;
}

.footer-links .foot-logo {
	width:344px;
	float:left;
}

.copy-right {
	width:100%;
	float:left;
	text-align:center;
}

.copy-right p {
	color:#666666;
	padding:0;
}

.copy-right p a {
	color:#666666;
}

.copy-right p a:hover {
	color:#FFFFFF;
}

@media only screen and (max-width:1023px) {
.footer-links {
	margin-bottom:25px;
	padding-bottom:25px;
}

.footer-links p {
	padding:10px 0 0 0;
}

.footer-links p a {
	color:#666666;
}

.footer-links .foot-logo {
	width:280px;
	float:left;
}
}

@media only screen and (max-width:767px) {
.footer-links {
	text-align:center;
	margin-bottom:20px;
	padding-bottom:20px;
}

.footer-links p {
	width:100%;
	padding:0;
}

.footer-links .foot-logo {
	width:100%;
	margin-bottom:20px
}

.footer-links .foot-logo img {
	max-width:250px;
}
}