
/*
 Table Of Contents 
 1.) Typography
 2.) Default Styles

 3.)  Home page
 3.1) Header
 3.2) Content - Main
 3.2.1) Section - Top
 3.2.2) Section - Article
 3.2.3)  Cont - Txt
 3.3) Footer

 4.)  Inner - Page
 4.1)  Heading - Txt
 4.2)  Content - Inner
 
===============================================*/

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

/* Google fonts attached */


/*
 2.) 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: 'Lora', Arial, Helvetica, sans-serif;
	font-size:22px;
	color:#666666; 
	line-height:40px;
	background:#000000;
}

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

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


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

a {
	color:#666666;
	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:underline;
}

a:hover {
	color:#663399;
	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;
}


/* #Video
================================================== */

.video-container {
	width:100%; 
	float:left;
	position: relative;
	padding-bottom:63.7%;
	height: 0;
	overflow: hidden;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


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

h1, h2, h3, h4, h5, h6 {
	color:#000000; 
	text-align:center; 
	line-height:1.1em; 
	padding:0 0 52px 0; 
}

h1 { 
	font-family: 'Lora', Arial, Helvetica, sans-serif;
	font-weight:700;
	font-size:60px; 
	color:#dfdfdf;
}

h2 {
	font-size:48px;
}

h3 {
	font-size:30px;
}

h4 {
	font-size:24px;	
}

p {
	padding:0 0 38px 0;
}

em {
	font-style:italic;
}

strong {
	font-family: 'Lora', Arial, Helvetica, sans-serif;
	font-weight:700;
}

.bold { 
	font-family: 'Lora', Arial, Helvetica, sans-serif;
	font-weight:700;
}

.upper {
	text-transform:uppercase
}


@media only screen and (max-width:1144px) {
h1 { 
	font-size:50px; 
}

h2 {
	font-size:42px;
}

h3 {
	font-size:26px;
}

h4 {
	font-size:22px;	
}
}


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

h1 { 
	font-size:40px; 
}

h2 {
	font-size:36px;
}

h3 {
	font-size:24px;
}

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 28px 0; 
}

h1 { 
	font-size:28px; 
}

h2 {
	font-size:26px;
}

h3 {
	font-size:22px;
}

h4 {
	font-size:20px;	
}

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



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

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


/* #Buttons
================================================= */

.btn { 
	height:49px;
	float:none;
	display:inline-block; 
	vertical-align:top;
	font-size:24px;
	color:#ffffff;
	letter-spacing:normal;
	line-height:49px;
	text-align:center;
	text-decoration:none;
	text-transform:none;
	background:#336699;
	border:none;
	border-radius:none; 
	box-shadow:none;
	cursor:pointer; 
	position:relative;
	padding:0 30px;
	margin:0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active:focus {
	color:#ffffff;
	text-decoration: none;
	background:#1b436a;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	pointer-events: none;
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}


@media only screen and (max-width:767px) {
.btn { 
	height:45px;
	font-size:20px;
	line-height:45px; 
	padding:0 24px;
}
}

/* #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:1205px;
	margin:0 auto;
	padding:0 30px;
}

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


/*
 3.1) Header
 ----------------------------------------*/

.header-main {
	width:100%;
	height:213px;
	float:left;
	text-align:center;
	line-height:213px;
	padding:0 60px;
	position:relative;
}

.header-main h1 {
	float:none;
	display:inline-block;
	vertical-align:middle;
	padding:0;
}

.header-main h1 a {
	color:#dfdfdf;
	text-decoration:none;
}

.header-main h1 a:hover {
	color:#dfdfdf;
	text-decoration:underline;
}

.header-main .photo {
	width:163px;
	height:213px;
	float:left;
}

.header-main .photo img {
	width:100%;
	max-width:100%;
	vertical-align:bottom;
}

.header-main .home {
	width:61px;
	float:right;
}

.header-main .home img {
	width:100%;
}

@media only screen and (max-width:1023px) {

.header-main {
	height:120px;
	line-height:120px;
	padding:0 30px;
}

.header-main .photo {
	width:90px;
	height:120px;
}

.header-main .home {
	width:50px;
}
}

@media only screen and (max-width:767px) {
.header-main {
	height:85px;
	line-height:85px;
	padding:0 3.125%;
	position:relative;
}

.header-main h1 {
	font-size:26px;
}

.header-main .photo {
	width:65px;
	height:85px;
}

.header-main .home {
	width:35px;
}
}

@media only screen and (max-width:479px) {
.header-main {
	height:75px;
	line-height:75px;
	padding:0 3.125%;
	position:relative;
}

.header-main h1 {
	font-size:20px;
}

.header-main .photo {
	width:50px;
	height:75px;
}

.header-main .home {
	width:28px;
}
}


/*
 3.2) Content - Main
 ----------------------------------------*/

.content-main {
	width:100%;
	float:left;
	background:#ffffff;
	padding:72px 0;
}

@media only screen and (max-width:1023px) {
.content-main {
	padding:55px 0;
}
}

@media only screen and (max-width:767px) {
.content-main {
	padding:46px 0;
}
}


/*
 3.2.1) Section - Top
 ----------------------------------------*/

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

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

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

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

.section-top p {
	font-size:21px;
}
} 
 
@media only screen and (max-width:767px) {
.section-top {
	padding:0 15px 28px 15px;
}

.section-top p {
	font-size:18px;
}
} 
 
/*
 3.2.2) Section - Article
 ----------------------------------------*/

.section-article {
	width:100%;
	float:left;
	text-align:center;
	padding:0 28px 90px 28px;
}

.section-article h3 {
	font-size:48px;
	padding-bottom:80px;
}

.section-article p {
	font-size:18px;
	color:#999999;
	line-height:23px;
}

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

.section-article p span {
	color:#666666;
}

.section-article figure {
	width:100%;
	float:left;
	margin-bottom:30px;
}

.section-article figure img {
	width:100%;
}

.section-article aside {
	width:100%;
	min-height:155px;
	float:left;
	padding:0 0 20px 0;
}

.section-article article {
	width:30.40%;
	float:none;
	display:inline-block;
	vertical-align:top;
	border:1px solid #000000;
	margin:0 2.50% 35px 0;
	padding:45px 35px 25px 35px;
	position:relative;
}

.section-article article h4 {
	font-size:30px;
	padding-bottom:18px;
}

.section-article article h4 a {
	color:#000000;
	text-decoration:none;
}

.section-article article h4 a:hover {
	color:#000000;
	text-decoration:underline;
}

.section-article .num {
	width:53px;
	height:53px;
	float:left;
	font-size:30px;
	color:#000000;
	background:#d9d9d9;
	text-align:center;
	line-height:53px;
	position:absolute;
	top:0;
	left:0;
}

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

@media only screen and (max-width:1144px) {
.section-article h3 {
	font-size:42px;
}

.section-article p {
	font-size:16px;
}

.section-article article {
	padding:35px 30px 20px 30px;
}

.section-article article h4 {
	font-size:25px;
}
}

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

.section-article h3 {
	font-size:36px;
	padding-bottom:55px;
}

.section-article aside {
	min-height:140px;
}

.section-article article {
	width:47%;
	padding:30px 25px 20px 25px;
}

.section-article article h4 {
	font-size:24px;
}

.section-article .num {
	width:45px;
	height:45px;
	font-size:22px;
	line-height:45px;
}
}

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

.section-article h3 {
	font-size:26px;
	padding-bottom:40px;
}

.section-article figure {
	margin-bottom:20px;
}

.section-article aside {
	min-height:120px;
}

.section-article article {
	width:100%;
	max-width:260px;
	margin:0 10px 30px 10px;
	padding:25px 15px 25px 15px;
}

.section-article article h4 {
	font-size:22px;
	padding-bottom:12px;
}

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

.section-article .num {
	width:40px;
	height:40px;
	font-size:18px;
	line-height:40px;
}

.section-article .num sup {
	font-size:15px;
}
}

@media only screen and (max-width:639px) {
.section-article article {
	max-width:350px;
	margin:0 0 30px 0;
	padding:30px 20px 30px 20px;
}
}
 
/*
 3.2.3) Cont - Txt
 ----------------------------------------*/

.cont-txt {
	width:100%;
	float:left;
	text-align:center;
	padding:0 28px;
}

.cont-txt h3 {
	font-size:48px;
}

.cont-txt p {
	font-size:24px;
	padding-bottom:54px;
}

.cont-txt p:last-child {
	padding-bottom:0;
}

@media only screen and (max-width:1144px) {
.cont-txt h3 {
	font-size:42px;
}
} 

@media only screen and (max-width:1023px) {
.cont-txt {
	padding:0 20px;
}

.cont-txt h3 {
	font-size:36px;
}

.cont-txt p {
	font-size:21px;
	padding-bottom:35px;
}
}

@media only screen and (max-width:1023px) {
.cont-txt {
	padding:0 15px;
}

.cont-txt h3 {
	font-size:26px;
}

.cont-txt p {
	font-size:18px;
	padding-bottom:25px;
}
}

/*
 3.3) Footer
 ----------------------------------------*/

.footer-main {
	width:100%;
	float:left;
	text-align:center;
	padding:70px 0 67px 0;
}

.footer-main p {
	font-size:25px;
	color:#ffffff;
	padding-bottom:0;
}

.footer-main p a {
	color:#ffffff;
	text-decoration:none;
}

.footer-main p a:hover {
	color:#ffffff;
	text-decoration:underline;
}

@media only screen and (max-width:1023px) {
.footer-main {
	padding:47px 0 45px 0;
}

.footer-main p {
	font-size:22px;
}
}

@media only screen and (max-width:767px) {
.footer-main {
	padding:37px 0;
}

.footer-main p {
	font-size:19px;
}
}



/*
 4) Inner - Page
 ----------------------------------------*/


/*
 4.1) Heading - Txt
 ----------------------------------------*/

.heading-txt {
	width:100%;
	float:left;
}

.heading-txt h2 {
	width:100%;
	float:left;
	border-bottom:1px solid #000000;
	margin-bottom:62px;
	padding-bottom:36px;
}

@media only screen and (max-width:1023px) {
.heading-txt h2 {
	margin-bottom:50px;
	padding-bottom:27px;
}
}

@media only screen and (max-width:767px) {
.heading-txt h2 {
	margin-bottom:40px;
	padding-bottom:19px;
}
}

/*
 4.2) Content - Inner
 ----------------------------------------*/

.content-inner {
	width:100%;
	float:left;
	padding:0 28px;
}

.left-col {
	width:345px;
	float:left;
	margin-right:-345px;
	position:relative;
	z-index:20;
}

.col-box1 {
	width:100%;
	float:left;
	border:1px solid #000000;
	padding:45px 0 0 0;
}

.col-box1 h3 {
	text-align:left;
	padding-bottom:18px;
}

.col-box1 h3 a {
	color:#000000;
	text-decoration:none;
}

.col-box1 h3 a:hover {
	color:#000000;
	text-decoration:underline;
}

.col-box1 p {
	font-size:18px;
	color:#999999;
	line-height:23px;
}

.col-box1 p span {
	color:#666666;
}

.col-box1 p:last-child {
	padding-bottom:0;
}

.col-box1 ul {
	width:100%;
	float:left;
	background:#ececec;
}

.col-box1 ul li {
	width:100%;
	float:left;
	font-size:16px;
	line-height:20px;
}

.col-box1 ul li a {
	width:100%;
	float:left;
	color:#000000;
	text-decoration:none;
	padding:15px 35px;
}

.col-box1 ul li a:hover {
	color:#336699;
}
.col-box1 ul li:nth-child(even) a {
	background:#ffffff;
}

.col-box1 article {
	width:100%;
	float:left;
	padding:0 35px 20px 35px;
}

.col-box1 figure {
	width:100%;
	float:left;
	margin-bottom:30px;
}

.col-box1 figure img {
	width:100%;
}

.col-box1 aside {
	width:100%;
	float:left;
}

.col-box1 aside h4 {
	width:100%;
	float:left;
	color:#ffffff;
	background:#000000;
	text-align:left;
	padding:15px 35px;
}

.right-col {
	width:100%;
	float:left; 
	margin:-10px 0 0 0;
	padding:0 0 0 385px;
}

.right-col p:last-child {
	padding-bottom:0;
}

@media only screen and (max-width:1023px) {
.content-inner {
	width:100%;
	float:left;
	padding:0 20px;
}

.left-col {
	width:280px;
}

.col-box1 {
	padding:35px 0 0 0;
}

.col-box1 p {
	font-size:16px;
}

.col-box1 ul li {
	font-size:15px;
	line-height:20px;
}

.col-box1 ul li a {
	padding:12px 20px;
}

.col-box1 article {
	padding:0 20px 20px 20px;
}

.col-box1 aside h4 {
	padding:12px 20px;
}

.right-col {
	width:100%;
	float:left;
	margin:-8px 0 0 0;
	padding:0 0 0 310px;
}
}

@media only screen and (max-width:767px) {
.content-inner {
	padding:0 15px;
}

.left-col {
	width:100%;
	text-align:center;
	margin:0;
	padding:0 0 35px 0;
}

.col-box1 {
	max-width:350px;
	float:none;
	display:inline-block;
	vertical-align:top;
	text-align:left;
}

.col-box1 h3 {
	padding-bottom:12px;
}

.col-box1 figure {
	margin-bottom:20px;
}

.right-col {
	margin:0;
	padding:0;
}
}

