body {
	font-family: 'SuisseIntl-Regular', sans-serif;
	font-size: 16px;
	color: #78B6E3;
	background: #111438;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body.fixed {
	padding-top: 80px;
}

.wow {
	visibility: hidden;
}

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 1.2;
}

h1 { font-size: 26px; }
h2 { font-size: 18px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 30px; }
	h2 { font-size: 30px; }
	h3 { font-size: 22px; }
	h4 { font-size: 20px; }
	h5 { font-size: 18px; }
	h6 { font-size: 18px; }
}

/* Framework */

.main {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: #111438;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container {
		max-width: 1440px;
		padding: 0 70px;
	}
}

/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* */
.section{
	position: relative;
	padding: 30px 0 40px;
}

@media screen and (min-width: 992px){
	.section{
		padding: 30px 0 60px;
	}
}

/* Forms */

label{
    font-size: 15px;
}
.form-control{
    min-height: 56px;
    background: transparent;
    font-size: 15px;
    border-radius: 0;
    border-color: #000;
    appearance: none;
    -webkit-appearance: none;
    margin-left: 5px;
}
.form-control:disabled,
.form-control[readonly]{
    background: rgba(92,136,31,0.20);
}
.form-control:focus{
    box-shadow: none !important;
}

select.form-control{
    background: url('assets/img/icons/icon-arrow-down-select.svg') no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 12px;
}

@media screen and (min-width: 992px){
    .form-control-lg{
        min-height: 56px;
    }
}

.input-file-wrapper{
    position: relative;
    display: block;
    padding: 8px 16px;
    text-align: center;
    background: #F4F6F9;
    border: 1px dashed #13404d;
    cursor: pointer;
}
.input-file-wrapper input{
    opacity: 0;
    width: 0;
}
.input-file-wrapper .files{
    font-size: 10px;
    max-height: 100px;
    overflow: auto;
}
.input-file-wrapper .files span{
    display: block;
    color: #AB67AA;
}
.input-file-wrapper:hover{
    background: #fff;
    border-color: #AB67AA;
}

.required-asterisk {
	position: absolute;
	color: red;
	left: 5px;
}

/* Buttons */

.btn{
	min-width: 142px;
	padding: 0 25px;
	font-size: 19px;
	line-height: 45px;
    border-width: 1px;
	border-radius: 26px;
}
.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus{
	box-shadow: none !important;
}

.btn-primary{
    background: #78B6E3 !important;
    border-color: #78B6E3 !important;
    color: #111438 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active {
	color: #78B6E3 !important;
	background: transparent !important;
}


/* Header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 120px;
	background: transparent;
	transition: 0.5s all;
	z-index: 999;
}

.header .container{
	position: relative;
	display: block;
}
.header .logo{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 132px;
	margin: 30px 0;
}
.header.fixed{
	position: fixed;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

@media screen and (min-width: 992px){
	.header .logo{
		margin: 50px 0;
	}
}


/* Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1{
	font-size: 30px;
}


.description .readmore[aria-expanded="true"] {
	display: none;
}

@media screen and (min-width: 992px){
	
	.title h1{
		font-size: 42px;
	}
	.title p{
		margin-top: 32px;

	}
}


.presentation {	
	min-height: calc(100vh - 120px);
	margin-top: 100px;
	display: flex;
	align-items: center;
}

.presentation .title {
	max-width: 1085px;
}

.presentation .title h1 {
	font-size: 42px;
	line-height: 46px;
	letter-spacing: -0.02em;	
	margin-bottom: 50px;
}

.presentation .title span {
	display: inline-block;
    text-align: center;
	background: #78B6E3;
	color: #111438;
	padding: 8px 21px;
	border-radius: 26px;
	min-width: 140px;
}

.presentation .table {
	color: #78B6E3 ;
}

.table td {
	border: none;
	width: 50%;
	padding: 15px 0;
}

.table a:hover{
	text-decoration: underline;
}

@media screen and (min-width: 992px){
	.presentation .title h1 {
		font-size: 95px;
		line-height: 106px;
	}

	.presentation {	
		margin-top: 120px;
	}
}