﻿@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	text-align: center;
	color: #fff;
	line-height: 1.52;
	letter-spacing: 0.1px;
}

html,body {
	background: #343D98;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 17px;
	overflow: hidden;
}

/* Global Variables */

:root {
	--cutout: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJhIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0NDAiIGhlaWdodD0iMjUwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB2aWV3Qm94PSIwIDAgNDQwIDI1MCI+PHBhdGggZD0iTTAsMEg0NDBWNC4wOWMtMS42NCwyMC4xNy0xOS42OCwzNy4zOC0zOS45NywzNy42Ny02OC43LS4wMi0xMzcuNCwwLTIwNi4xLS4wMS0xMy40Ny0uMTUtMjYuOTEsNi41NS0zNC41OCwxNy42OC0zNy4xMiw1Ny4yMi03NC4wNSwxMTQuNTctMTExLjE2LDE3MS44LTYuNzksMTAuNTgtMTguNjMsMTcuNjQtMzEuMTQsMTguNzdIMFYwWiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==") no-repeat;;
}

/* Section */

.section {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

/* Header */

#header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 15px 30px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2px;
	z-index: 1000000;
}

#header:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 0, 0, 0.65)), to(rgba(63, 63, 206, 0.00)));
	background: -o-linear-gradient(top, rgba(18, 0, 0, 0.65) 0%, rgba(63, 63, 206, 0.00) 100%);
	background: linear-gradient(180deg, rgba(18, 0, 0, 0.65) 0%, rgba(63, 63, 206, 0.00) 100%);
	z-index: -1;
}

#header .logo {
	width: 248px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header #navigation {
	margin-left: auto;
}

#header #navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#header #navigation ul li {
	margin: 0 0 0 31px;
	padding: 0;
	list-style: none;
	color: #fff;
	text-transform: uppercase;
}

#header #navigation ul li a {
	position: relative;
	display: inline-block;
	color: #FFF;
}


#header #navigation>ul>li a:after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -4px;
	opacity: 0;
	height: 2px;
	background: #f26321;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#header #navigation>ul>li.active a:after,
#header #navigation>ul>li:hover a:after {
	left: 0;
	right: 0;
	opacity: 1;
}

#header #navigation ul li:last-child a {
	border: 1px solid #fff;
	min-width: 144px;
	padding: 12px 0;
	text-align: center;
	border-radius: 50px;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#header #navigation ul li:last-child a:hover,
#header #navigation ul li.active:last-child a {
	background: #F26322;
}

#header #navigation ul li:last-child a:after {
	display: none;
}

/* Slider */

#slider {
	background: #202068;
}

#slider .swiper-slide {
	position: relative;
	height: 660px;
}

#slider .swiper-slide img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
	opacity: 0.8;
}

#slider .swiper-slide .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#slider .swiper-slide .overlay .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#slider .swiper-slide .overlay .text {
	max-width: 850px;
	color: #fff;
}

#slider .swiper-slide .overlay .text>:last-child {
	margin-bottom: 0;
}

#slider .swiper-slide .overlay .text .linkBtn {
	margin-top: 12px;
}

/* Banner */

#banner {
	position: relative;
	background: #202068;
	z-index: 1;
}

#banner .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: static;
	min-height: 420px;
	padding: 115px 15px 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#banner .image {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
	z-index: -1;
}

#banner .ico {
	display: block;
	height: 50px;
	margin-bottom: 8px;
}

/* Intro */

#intro {
	background: #202068;
	color: #fff;
	text-align: center;
}

#intro .section>:last-child {
	margin-bottom: 0;
}

#intro .ico {
	display: block;
	margin: 0 auto 25px;
	height: 50px;
}

#intro h3 {
	max-width: 826px;
	margin: 0 auto;
}

/* Content */

#content .section>:last-child {
	margin-bottom: 0;
}

#content .innerText {
	max-width: 710px;
	margin: 0 auto;
}

#content.narrow .section {
	padding-bottom: 0;
}

/* Single Post */

#singlePost .section {
	padding-top: 155px;
}

/* Back Btn */

.backBtn {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 600;
	padding-left: 33px;
	letter-spacing: 0.2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.backBtn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 25px;
	height: 20px;
	background: url(../images/back-arrow.svg) no-repeat;
}

/* White Box */

.whiteBox {
	position: relative;
	background: #fff;
	padding: 40px 40px 0;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin-bottom: 90px;
	color: #202068;
	-webkit-filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.35));
	        filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.35))
}

/* Post Intro */

.postIntro {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 392px;
	margin-top: -30px;
	margin-bottom: 35px;
}

.postIntro .text {
	width: 520px;
	padding-top: 40px;
}

.postIntro .text .code {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
}

.postIntro .text>:last-child {
	margin-bottom: 0;
}

.postIntro .image {
	position: relative;
	margin-left: auto;
	width: 588px;
	margin-right: -30px;
}

.postIntro .image img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

/* Heading */

.heading {
	text-align: center;
	margin-bottom: 59px;
}

.heading img {
	display: block;
	margin: 0 auto 17px;
	height: 50px;
}

/* Total Items */

.totalItems {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 1.33;
	margin-left: 11px;
}

/* Courses */

.courses {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -17px 42px;
	padding: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.courses li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 89px;
	padding: 0 17px;
	list-style: none;
	width: 33.33333333333333%;
}

.courses li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	color: #fff;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.courses li a:after {
	content: "";
	position: absolute;
	right: 8px;
	bottom: -59px;
	width: 49px;
	height: 38px;
	background: url(../images/course-arrow.svg) no-repeat;
	background-size: 100%;
}

.courses li .inner {
	position: relative;
	background: #fff;
	padding: 10px;
	width: 100%;
	border-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	color: #202068;
	min-height: 401px;
	-webkit-filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.35));
	        filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.35))
}

.courses li .inner:last-child {
	margin-bottom: 0;
}

.courses li .inner:before,
.whiteBox:before {
	content: "";
	position: absolute;
	left: 0;
	right: 103px;
	height: 58px;
	bottom: -56px;
	background: #fff;
	border-bottom-left-radius: 10px;
}

.courses li .inner:after,
.whiteBox:after {
	content: "";
	position: absolute;
	right: 0;
	height: 58px;
	bottom: -56px;
	width: 105px;
	background: var(--cutout);
	background-size: 100% 100%;
}

.courses li .inner>:last-child {
	margin-bottom: 0;
}

.courses li .image {
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 15px;
}

.courses li .image img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1.5s;
	transition: -webkit-transform 1.5s;
	-o-transition: transform 1.5s;
	transition: transform 1.5s;
	transition: transform 1.5s, -webkit-transform 1.5s;
}

.courses li .codeID {
	margin-left: 10px;
}

.codeID {
	display: inline-block;
	background: #202068;
	color: #fff;
	padding: 6.2px 15px;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
	border-radius: 30px;
}

.courses li h3 {
	padding: 0 12px;
}

.courses li a:hover {
	-webkit-transform: scale(1.03);
	    -ms-transform: scale(1.03);
	        transform: scale(1.03);
}

.courses li a:hover .image img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

/* Features */

.features {
	margin: 0 -37px 47px;
	padding: 0 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.features li {
	margin: 0;
	padding: 0 37px;
	list-style: none;
	width: 33.33333333333333%;
}

.features li>:last-child {
	margin-bottom: 0;
}

.features img {
	display: block;
	height: 50px;
	margin: 0 auto 16px;
}

.features h4 {
	text-align: center;
}

/* Image Text */

.imageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 100px 0;
}

.imageText .image {
	width: 588px;
}

.imageText .image img {
	display: block;
	width: 100%;
	border-radius: 5px;
}

.imageText .text {
	width: 534px;
	margin-left: auto;
}

.imageText .text>:last-child {
	margin-bottom: 0;
}

.imageText .text .linkBtn {
	margin-top: 45px;
}

.imageText.alt .text {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-left: 0;
}

.imageText.alt .image {
	margin-left: auto;
}

/* Two Cols */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.twoCols .col {
	width: 534px;
}

/* Feedback */

.feedback blockquote {
	max-width: 666px;
	margin: 0 auto;
	padding: 59px 0 0;
	font-style: normal;
	text-align: center;
	letter-spacing: 0.2px;
	background: url(../images/quote-ico.svg) no-repeat center top;
}

.feedback blockquote h3 {
	margin: 0 0 22px;
}

.feedback blockquote cite {
	margin: 0;
	padding: 0;
	font-style: normal;
	letter-spacing: 0.1px;
}

.feedback blockquote cite span {
	display: block;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 4px;
}

/* Logos Slider */

.logosSlider {
	text-align: center;
}

.logosSlider .swiper img {
	display: block;
	height: 150px;
	margin: 0 auto;
	opacity: 0.35;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.logosSlider .swiper a:hover img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	opacity: 1;
}

.logosSlider .arrows .prevArrow,
.logosSlider .arrows .nextArrow {
	position: absolute;
	width: 17px;
	height: 32px;
	left: 0;
	top: 50%;
	margin-top: -16px;
	background: url(../images/slider-arrow.svg) no-repeat;
	cursor: pointer;
	pointer-events: auto;
	outline: none;
	z-index: 1;
}

.logosSlider .arrows .nextArrow {
	right: 0;
	left: auto;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.logosSlider .swiper-button-lock {
	display: block;
}

/* Contact */

#contact {
	background: #202068;
}

#contact .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#contact .left {
	width: 585px;
}

#contact .left h2 span {
	text-wrap: nowrap;
}

#contact .left .reach {
	margin: 0 0 60px;
	padding: 0;
}

#contact .left .reach li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#contact .left .reach li h4 {
	margin: 0 0 5px;
	color: #F26322;
}

#contact .right {
	width: 585px;
	margin-left: auto;
}

#contact .right>:last-child {
	margin-bottom: 0;
}

#contact .left .ico {
	display: block;
	height: 50px;
	margin-bottom: 15px;
	margin-left: 2px;
}

#contact .right .fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -15px;
}

#contact .right .fields .field {
	width: 100%;
	padding: 0 15px;
	margin-bottom: 13px;
}

#contact .right .fields .field.half {
	width: 50%;
}

#contact .right .fields .field label {
	display: block;
	margin: 0 0 0 6px;
	padding: 0 0 3px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}

#contact .right .fields .field .textbox,
#contact .right .fields .field select,
#contact .right .fields .field textarea {
	display: block;
	margin: 0;
	padding: 13px 17px;
	width: 100%;
	height: 44px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: rgba(255,255,255,1);
	letter-spacing: 0.1px;
	border: 0;
	outline: none;
	border-radius: 25px;
	background: #343d98 no-repeat 17px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#contact .right .fields .field select {
	padding-left: 46px;
	text-transform: uppercase;
	background-image: url(../images/arrow-down.svg);
	cursor: pointer;
	color: rgba(255,255,255,0.35);
	transition: color 0.3s;
}

#contact .right .fields .field select option:checked {
	color:#fff;
}

#contact .right .fields .field select.active {
	color: #fff;
}

#contact .right .fields .field textarea {
	overflow: auto;
	resize: none;
	height: 153px;
}

#contact .right .submitBtn {
	margin: 10px 0;
}

/* Footer */

#footer .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#footer h4 {
	margin-bottom: 7px;
}

#footer .info {
	margin-right: 68px;
}

#footer .options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#footer .options .links {
	margin-right: 65px;
}

#footer ul {
	margin: 0;
	padding: 0;
}

#footer ul li {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

#footer ul li p {
	margin-bottom: 18px;
}

#footer ul li a:hover {
	text-decoration: underline;
}

#footer .moreInfo {
	margin-left: auto;
}

#footer .moreInfo .logo {
	display: block;
	width: 248px;
	margin-top: 45px;
}

#footer .moreInfo .logo img {
	display: block;
	width: 100%;
}

/* Table */

table,
table tr,
table th,
table td {
	margin: 0;
	padding: 0;
	text-align: left;
	font-weight: normal;
}

table {
	border-collapse: none;
	border-spacing: 0;
	width: 100%;
	margin: 35px 0;
	border-bottom: 1px solid rgba(52, 61, 152, 0.5);
}

table th,
table td {
	padding: 20px 0;
	border-top: 1px solid rgba(52, 61, 152, 0.5);
}

table th {
	vertical-align: top;
	width: 240px;
	padding-right: 15px;
}

table th>:last-child,
table td>:last-child {
	margin-bottom: 0;
}


/* Hamburger */

.hamburger {
	display: none;
	position: absolute;
	top: 13px;
	right: 18px;
	overflow: visible;
	margin-top: 5px;
	margin-left: 5px;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	text-transform: none;
	color: inherit;
	border: 0;
	background-color: transparent;
}

.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #fff;
}

.hamburger-box {
	display: inline-block;
	width: 32px;
	height: 24px;
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -4px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 32px;
	height: 4px;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 4px;
	background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger .hamburger-inner {
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	     -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	-webkit-transition-duration: .22s;
	     -o-transition-duration: .22s;
	        transition-duration: .22s
}

.hamburger .hamburger-inner:before {
	-webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
	-o-transition: top .1s ease-in .25s, opacity .1s ease-in;
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.hamburger .hamburger-inner:after {
	-webkit-transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	-o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger.is-active .hamburger-inner {
	-webkit-transition-delay: .12s;
	     -o-transition-delay: .12s;
	        transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	     -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner:before {
	top: 0;
	-webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
	-o-transition: top .1s ease-out, opacity .1s ease-out .12s;
	transition: top .1s ease-out, opacity .1s ease-out .12s;
	opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
	bottom: 0;
	-webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg)
}

.mm-panel {
	background: #343d98;
	font-weight: 600;
	text-transform: uppercase;
}

.mm-navbar>* {
	min-height: 40px;
	background: #f26223;
}

.mm-navbar__title>span {
	color: #fff;
	padding-left: 10px;
}

.mm-listitem.active, 
.mm-listitem .active {
	background-color: #26338c;
}

/* Miscelleneous */

p {
	margin: 0 0 10px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	margin: 0 0 19px;
	line-height: 1.23;
	letter-spacing: 0.2px;
}

h1 {
	font-size: 72px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.34;
	letter-spacing: 0.3px;
}

h2 {
	font-size: 52px;
	font-weight: bold;
	margin-bottom: 11px;
}

h3 {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 36px;
}

h4 {
	font-size: 20px;
	margin-bottom: 26px;
	line-height: 1.30;
	text-transform: uppercase;
}

h5 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 11px;
	line-height: 1.52;
	letter-spacing: 0.1px;
}

h6 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.50;
	color: #F26322;
	letter-spacing: 0.1px;
	text-transform: uppercase;
}

ul,
ol {
	padding: 0 0 0 30px;
	margin-top: 0;
	margin-bottom: 9px;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;

}

hr {
	margin: 100px 0;
	padding: 0;
	border: 0;
	height: 1px;
	background: #202068
}

.linkBtn {
	position: relative;
	display: table;
	color: #fff;
	line-height: 1;
	min-width: 9.55em;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.0142857142857143em;
	margin: 1.428571428571429em 1.428571428571429em 1.428571428571429em 0;
	background: #F26322;
	padding: 1.142857142857143em 2.857142857142857em;
	border: 1px solid #F26322;
	border-radius: 2.142857142857143em;
	cursor: pointer;
	text-transform: uppercase;
	text-align: center;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
	-webkit-box-shadow: 0px 0.5714285714285714em 1.142857142857143em 0px rgba(0, 0, 0, 0.25);
	        box-shadow: 0px 0.5714285714285714em 1.142857142857143em 0px rgba(0, 0, 0, 0.25);
}

.linkBtn:hover {
	background-color: #ff7230;
	color: #fff;
}

.linkBtn.linkBtnWhite {
	background-color: transparent;
	color: #F26322;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.linkBtn.linkBtnWhite:hover {
	background-color: #ff7230;
	color: #fff;
}

.linkBtn.linkBtnCentered {
	margin-left: auto;
	margin-right: auto;
}

.linkBtns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}


form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

strong {
	font-weight: 700;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: inherit;
	opacity: 1;
}

/* Media Queries */

/* Large Screens */

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	.section {
		max-width: 970px;
	}	

	.courses {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.courses li {
		padding-left: 10px;
		padding-right: 10px;
	}

	.courses li .inner {
		min-height: 370px;
	}

	.whiteBox {
		padding: 20px;
	}

	.postIntro {
		margin-top: -10px;
	}
	
	.postIntro .text {
		width: 473px;
	}

	.postIntro .image {
		width: 446px;
		margin-right: -10px;
	}

	.features {
		margin-left: -20px;
		margin-right: -20px;
	}

	.features li {
		padding-left: 20px;
		padding-right: 20px;
	}

	.imageText .image {
		width: 483px;
	}

	.imageText .text,
	.twoCols .col {
		width: 448px;
	}

	.logosSlider .swiper img {
		height: 130px;
	}

	#contact .left {
		width: 546px;
	}

	#contact .right {
		width: 400px;
		margin-left: auto;
	}

	#footer .info,
	#footer .options .links {
		margin-right: 40px;
	}
		
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	#header {
		padding-left: 15px;
		padding-right: 15px;
	}

	#header #navigation ul li {
		margin-left: 23px;
	}

	#slider .swiper-slide {
		height: 520px;
	}

	#slider .swiper-slide .overlay .text {
		max-width: 650px;
	}

	#banner .section {
		min-height: 330px;
	}

	.courses li {
		margin-bottom: 68px;
	}

	.courses li .inner {
		padding: 7px;
		min-height: 290px;
	}

	.courses li .inner:before,
	.courses li .inner:after,
	.whiteBox:before,
	.whiteBox:after {
		height: 40px;
		bottom: -38px;
	}

	.courses li .inner:after,
	.whiteBox:after {
		width: 74px;
	}

	.courses li .inner:before,
	.whiteBox:before {
		right: 71px;
	}

	.whiteBox {
		margin-bottom: 65px;
	}

	.courses li a:after {
		bottom: -41px;
		width: 35px;
		height: 28px;
	}

	#singlePost .section {
		padding-top: 140px;
	}

	.postIntro {
		min-height: 320px;
	}

	.postIntro .text {
		width: 337px;
	}

	.postIntro .image {
		width: 332px;
	}

	table th {
		width: 200px;
	}

	.features {
		margin-left: -15px;
		margin-right: -15px;
	}

	.features li {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.imageText {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	
	.imageText .image {
		width: 358px;
	}

	.imageText .text,
	.twoCols .col {
		width: 337px;
	}
	
	.logosSlider .swiper img {
		height: 97px;
	}

	.heading {
		margin-bottom: 45px;
	}

	#contact .left {
		width: 375px;
	}

	#contact .right {
		width: 320px;
	}

	#contact .right .fields .field.half {
		width: 100%;
	}

	#footer .section {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	#footer .moreInfo {
		margin-left: 0;
		margin-top: 30px;
	}

	#footer .options {
		margin-left: auto;
	}
	
	hr {
		margin: 80px 0;
	}

	h1 {
		font-size: 52px;
	}
	
	h2 {
		font-size: 35px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	.section {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	#header {
		height: 65px;
	}

	#header #navigation {
		display: none;
	}

	#header .logo {
		width: 162px;
	}

	#slider .swiper-slide {
		height: auto;
	}

	#slider .image {
		position: relative;
		height: 82vw;
	}

	#slider .swiper-slide .overlay {
		position: static;
		background: #343D98;
	}

	#slider .swiper-slide .overlay .section {
		padding-top: 35px;
		padding-bottom: 70px;
	}

	#banner .section {
		padding-top: 80px;
		min-height: 250px;
	}

	.totalItems {
		margin-bottom: 15px;
	}

	.courses {
		margin-bottom: 110px;
	}

	.features {
		display: block;
		text-align: center;
	}

	.features li {
		width: auto;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 50px;
	}

	.features li:last-child {
		margin-bottom: 0;
	}

	.whiteBox {
		padding: 10px;
	}

	#singlePost .section {
		padding-top: 95px;
	}

	table,
	table tr,
	table th,
	table td {
		display: block;
		padding: 0;
		width: 100%;
		border: 0;
	}

	table tr {
		margin-bottom: 20px;
	}

	table tr:last-child {
		margin-bottom: 0;
	}

	table th {
		margin-bottom: 10px;
		padding-bottom: 5px;
		border-bottom: 1px solid #343D98;
	}

	.totalItems {
		text-align: center;
		margin-left: 0;
	}
	
	.courses {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.courses li {
		width: 100%;
	}

	.courses li a {
		width: 100%;
	}

	.imageText {
		display: block;
		margin-top: 70px;
		margin-bottom: 70px;
	}

	.imageText .image {
		width: 100%;
		margin-bottom: 35px;
	}

	.imageText .text {
		margin-left: 0;
		width: auto;
	}

	.imageText .text .linkBtn,
	#contact .right .submitBtn {
		margin-left: auto;
		margin-right: auto;
	}
	
	.postIntro {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-top: 0;
	}

	.postIntro .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		width: 100%;
		margin-right: 0;
		padding-bottom: 66.66666666666667%;
	}

	.postIntro .text {
		width: auto;
		padding-top: 20px;
	}

	.postIntro .text h2 {
		font-size: 29px;
	}

	.twoCols {
		display: block;
	}

	.twoCols .col {
		width: auto;
	}

	#contact .section {
		display: block;
	}

	#contact .left,
	#contact .right {
		width: 100%;
	}

	#contact .left {
		text-align: center;
	}

	#contact .left .ico {
		margin-left: auto;
		margin-right: auto;
	}
	
	.logosSlider .swiper img {
		height: 150px;
	}

	#footer .options {
		margin-left: 0;
	}

	#footer .info {
		margin-bottom: 35px;
	}

	#footer .info, #footer .options .links {
		margin-right: 0;
	}
	
	#footer .options .links {
		margin-right: 20px;
	}

	#footer .moreInfo {
		margin-top: 25px;
	}

	#footer .moreInfo .logo {
		width: 200px;
	}

	.linkBtn {
		display: table;
		font-size: 12px;
	}

	.linkBtns .linkBtn {
		margin-bottom: 20px;
		margin-top: 0;
	}

	hr {
		margin-top: 70px;
		margin-bottom: 70px;
	}

	h1 {
		line-height: 1.05;
	}
}

@media only screen and (max-width : 479px) {
	#footer .options {
		display: block;
	}

	#footer .options .links {
		margin-right: 0;
		margin-bottom: 35px;
	}

	#footer .moreInfo {
		margin-top: 0;
	}
}