/*
 Table Of Contents 
 1.) Typography
 2.) Default Styles

 3.)  Home page
 3.1) Header
 3.2) Section - 1
 3.3) Section - 2
 3.4) Section - 3
 3.5) Cont - Txt
 3.6) Footer

===============================================*/

/*
 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: 'Bitter', serif; 
	font-weight:400;
	font-size:22px;
	color:#666666; 
	line-height:26px;
	background:#efefef;
}

@media only screen and (max-width:1023px) {
body {
	font-size:18px;
	line-height:22px;
}
}

@media only screen and (max-width:767px) {
body {
	font-size:16px;
	line-height:20px;
}
}

/* #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:#000000;
	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; 
	line-height:1em;
	margin-bottom:37px; 
	padding:0;  
}

h1, h2, h3 { 
	font-size:30px; 
}

h1 span, h2 span, h3 span {	
	border-bottom:2px solid #000000; 
}

h4 {
	font-size:24px;	
}

p {
	padding:0 0 30px 0;
}

em {
	font-style:italic;
}

strong {
	font-family: 'Bitter', serif; 
	font-weight:700;
}

.bold { 
	font-family: 'Bitter', serif; 
	font-weight:700;
}

.upper {
	text-transform:uppercase
}

@media only screen and (max-width:1023px) {
h1, h2, h3, h4, h5, h6 {
	margin-bottom:30px; 
}

h1, h2, h3 { 
	font-size:26px; 
}

h4 {
	font-size:22px;	
}

p {
	padding:0 0 25px 0;
}
}

@media only screen and (max-width:767px) {
h1, h2, h3, h4, h5, h6 {
	margin-bottom:25px; 	
	line-height:1.2em;
}

h1, h2, h3 { 
	font-size:20px; 
}

h4 {
	font-size:18px;	
}
}

/* #Order and Unorder Styles
================================================= */
ul, li, ol {
	list-style: disc;
}

ul { 
	width:100%; 
	float:left;
	padding:0 0 26px 50px;
}

ul:last-child { 
	padding-bottom:0;
}

li {
	line-height:1.2em;
	padding:0; 
	position:relative;
}

li:last-child { 
	padding-bottom:0;
}

li a { 
	font-size:25px; 
	color:#253f73;
}

li a:hover { 
	color:#253f73;
}

@media only screen and (max-width:1023px) {
ul { 
	padding:0 0 26px 50px;
}

li a { 
	font-size:20px; 
}
}

@media only screen and (max-width: 767px) {
ul { 
	padding:0 0 25px 30px;
}

li a { 
	font-size:18px; 
}
}

/* #Buttons
================================================= */
.btn { 
	height:49px;
	float:none;
	display:inline-block; 
	vertical-align:top;
	font-size:24px;
	color:#ffffff;
	letter-spacing:normal;
	line-height:52px;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	background:#859abd;
	border:none;
	border-radius:25px; 
	box-shadow:none;
	cursor:pointer; 
	position:relative;
	padding:0 20px;
	margin:0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active:focus {
	color:#ffffff;
	text-decoration: none;
	background:#4d6996;
}

.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:48px; 
}
}

/* #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
}
}


/*
 3.) Home page
 ----------------------------------------*/
.container-main {
	width:100%; 
	float:left; 
	position:relative;
}

.container {
	width:100%;
	max-width:1205px;
	margin:0 auto;
	padding:0 30px;
}

.container-box {
	width:100%;
	float:left;
	background:#ffffff;
	box-shadow:0px 0px 10px #999999;
	padding:0 28px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width:100%;
	padding:0 3.125%;
}

.container-box {
	width:100%;
	float:left;
	background:#ffffff;
	box-shadow:0px 0px 10px #949594;
	padding:0 20px;
}
}

/*
 Heading - Bg
----------------------------------------*/
 
.heading-bg {
	width:100%;
	float:left;
	background:#3366cc;
	text-align:center;
	border-radius:15px;
	margin-bottom:30px;
	padding:24px 10px 23px 10px;
}

.heading-bg h1,
.heading-bg h2,
.heading-bg h3 {
	width:100%;
	float:left;
	font-size:32px;
	color:#fffefe;
	margin:0;
}

@media only screen and (max-width: 1023px) {
.heading-bg {
	border-radius:12px;
	padding:18px 10px 17px 10px;
}

.heading-bg h1,
.heading-bg h2,
.heading-bg h3 {
	font-size:28px;
}
}

@media only screen and (max-width: 767px) {
.heading-bg {
	border-radius:10px;
	margin-bottom:25px;
	padding:15px 10px 14px 10px;
}

.heading-bg h1,
.heading-bg h2,
.heading-bg h3 {
	font-size:22px;
}
}


/*
 3.1) Header
----------------------------------------*/
 
.header-main {
	width:100%;
	height:170px;
	float:left;
	text-align:center;
	padding:48px 0;
}

.header-main h1 {
	font-family: 'Bitter', serif; 
	font-weight: 700;
	font-size:65px;
	text-shadow:#ccc 0 0 8px, #ccc 0 0 8px, #ccc 0 0 8px, #ccc 0 0 8px;
	margin-bottom:0;
}

.header-main h1 a {
	color:#253f73;
	text-decoration:none;
}

@media only screen and (max-width: 1023px) {
.header-main {
	height:130px;
	padding:37px 0;
}

.header-main h1 {
	font-size:50px;
}
}

@media only screen and (max-width: 767px) {
.header-main {
	height:80px;
	padding:24px 0;
}

.header-main h1 {
	font-size:28px;
}
}


/*
 3.2) Section - 1
----------------------------------------*/

.section-1 {
	width:100%;
	float:left;
	padding-bottom:40px;
}

.section-1 p:last-child {
	padding-bottom:0;
}

@media only screen and (max-width: 767px) {
.section-1 {
	padding-bottom:30px;
}
}


/*
 3.3) Section - 2
----------------------------------------*/

.section-2 {
	width:100%;
	float:left;
	padding-bottom:40px;
}

.section-2 ul {
	width:102.80%;
	float:left;
	margin:0 -2.80% -30px 0;
	padding:0;
}

.section-2 ul li {
	width:46.80%;
	float:none;
	display:inline-block;
	vertical-align:top;
	background:#859abd;
	border-radius:14px;
	list-style:none;
	margin:0 2.80% 30px 0;
	padding:0;
}

.section-2 ul li a {
	width:100%;
	float:left;
	font-size:32px;
	color:#ffffff;
	text-decoration:none;
	line-height:1.1em;
	padding:30px 50px 30px 80px;
	position:relative;
}

.section-2 ul li a:before {
	content:"";
	width:23px;
	height:100%;
	float:left;
	background:url(../images/arrow-01.png) no-repeat center center;
	position:absolute;
	top:0;
	right:20px;
}

.section-2 ul li:hover {
	background:#4d6996;
	text-decoration:none;
}

.section-2 ul li.active {
	background:#4d6996;
	text-decoration:none;
}

.section-2 ul li .icon {
	width:80px;
	float:left;
	text-align:center;
	margin:-27px 0 0 0;
	position:absolute;
	top:45%;
	left:0;
}

.section-2 ul li .icon img {
	max-width:100%;
}

@media only screen and (max-width: 1199px) {
.section-2 ul li a {
	font-size:27px;
}
}

@media only screen and (max-width: 1023px) {
.section-2 ul li a {
	font-size:24px;
	padding:20px 40px 20px 70px;
}

.section-2 ul li a:before {
	content:"";
	width:18px;
	background-size:18px auto;
	top:0;
	right:15px;
}

.section-2 ul li .icon {
	width:60px;
	margin:-18px 0 0 0;
}

.section-2 ul li .icon img {
	max-width:40px;
}
}

@media only screen and (max-width: 767px) {
.section-2 {
	padding-bottom:30px;
}

.section-2 ul {
	width:100%;
	margin:0 0 -20px 0;
	padding:0;
}

.section-2 ul li {
	width:100%;
	height:auto!important;
	border-radius:10px;
	margin:0 0 20px 0;
}

.section-2 ul li a {
	font-size:20px;
	padding:20px 35px 20px 70px;
}

.section-2 ul li a:before {
	width:14px;
	background-size:14px auto;
}
}


/*
 3.4) Section - 3
----------------------------------------*/

.section-3 {
	width:100%;
	float:left;
	text-align:center;
	padding-bottom:40px;
}

.section-3 article {
	width:30.10%;
	float:none;
	display:inline-block;
	vertical-align:top;
	background:#eceff3;
	border-radius:14px;
	text-align:center;
	padding:20px 30px;
	margin:0 2.80% 30px 0;
}

.section-3 .logo-bg {
	width:100%;
	height:98px;
	float:left;
	line-height:98px;
	margin-bottom:13px;
}

.section-3 .logo-bg img {
	max-width:100%;
}

.section-3 .prize-bg {
	width:100%;
	float:left;
	font-size:36px;
	color:#253f73;
	padding-bottom:20px;
}

.section-3 .prize-bg a {
	width:100%;
	float:left;
	color:#253f73;
	border:1px dashed #999999;
	padding:17px 10px;
}

.section-3 .prize-bg a:hover {
	color:#000000;
}

.section-3 .btn {
	margin-bottom:13px;
}

.section-3 .more {
	width:100%;
	float:left;
}

.section-3 .article-bg {
	width:102.80%;
	float:left;
	margin:0 -2.80% -30px 0
}

@media only screen and (max-width: 1144px) {
.section-3 .prize-bg {
	font-size:32px;
}
}

@media only screen and (max-width: 1023px) {
.section-3 article {
	width:46.80%;
	margin:0 2.80% 30px 0;
}

.section-3 .prize-bg {
	font-size:30px;
}
}

@media only screen and (max-width: 767px) {
.section-3 {
	padding-bottom:30px;
}

.section-3 article {
	width:100%;
	max-width:280px;
	margin:0 14px 20px 14px;
}

.section-3 .prize-bg {
	font-size:28px;
}

.section-3 .article-bg {
	width:100%;
	margin:0 0 -20px 0
}
}

@media only screen and (max-width: 479px) {
.section-3 article {
	width:100%;
	max-width:280px;
	margin:0 0 20px 0;
}
}


/*
 3.5) Cont - Txt
----------------------------------------*/

.cont-txt {
	width:100%;
	float:left;
	padding:0 0 40px 0;
}

.cont-txt p:last-child {
	padding-bottom:0;
}
 
@media only screen and (max-width: 1023px) {
.cont-txt {
	padding:0 0 40px 0;
}
}

@media only screen and (max-width: 767px) {
.cont-txt {
	padding:0 0 30px 0;
}
}


/*
 3.6) Footer
----------------------------------------*/

.footer-main {
	width:100%;
	float:left;
	border-top:1px solid #3366cc;
	padding:55px 0
}

.footer-main p {
	float:left;
	padding-bottom:0;
}

.footer-main p a {
	color:#253f73;
	text-decoration:none;
}

.footer-main p a:hover {
	color:#253f73;
	text-decoration:underline;
}

.footer-main p.right {
	float:right;
}

.footer-main p.right a {
	color:#666666;
}

.footer-main p.right a:hover {
	color:#253f73;
}

@media only screen and (max-width: 1023px) {
.footer-main {
	padding:40px 0
}
}

@media only screen and (max-width: 767px) {
.footer-main {
	padding:30px 0;
}

.footer-main p {
	width:100%;
	text-align:center;
	padding-bottom:20px;
}

.footer-main p.right {
	float:none;
	padding:0;
}
}


