@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-regularit.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-black.otf') format('opentype');
    font-weight: 900; /* Assuming black is the heaviest */
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-blackit.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-bold.otf') format('opentype');
    font-weight: bold; /* Bold is typically 700 */
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-boldit.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

/*

	GENERAL

----------- */
html{
	height:100%;
}
body{
	height:100%;
	font-family: 'Proxima Nova';
}
.bg-center{
	background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-left{
	background-position: left center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-top{
	background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-bottom{
	background-position: bottom center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-contain{
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    background-repeat:no-repeat;
}
a, button{
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
a:hover{
	color: #000;
}
.animo{
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

::-webkit-input-placeholder {
	color:#8baed0;
}
:-ms-input-placeholder {
	color:#8baed0;
}
::placeholder {
	color:#8baed0;
}

#wrapper{
	width:100%;
	overflow-x: hidden;
}

/*

	MESSAGE

----------- */
.message-container{
	position:fixed;
	background-color:rgba(0,0,0,0.3);
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:998;
	backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.message{
	position:absolute;
	top:45px;
	width:280px;
	left:50%;
	margin-left:-140px;
	padding:30px;
	text-align:center;
	color:#000;
	background-color:#fff;
	border-radius:5px;
	font-size:20px;
	line-height: 1.1;
	font-weight:300;
}
.btn-close-message{
	color:#fff;
	background-color:#0fc7c3;
	border-radius:50%;
	position:absolute;
	font-size:22px;
	top:-20px;
	right:-20px;
	width:40px;
	height:40px;
	line-height:46px;
	text-align:center;
}
.btn-close-message:hover{
	color:#fff;
	background-color:#333;
}
@media(min-width:768px){
	.message{
		width:500px;
		margin-left:-250px;
		top:60px;
	}
}
@media(min-width:992px){
	.message{
		width:800px;
		margin-left:-400px;
		padding:45px;
		font-size:22px;
	}
}

/*

	ALERT

--------- */
.alert-container{
	position:fixed;
	background-color:rgba(0,0,0,0.3);
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:998;
	backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.alert{
	position: fixed;
	width:300px;
	left:50%;
	margin-left:-150px;
	top:45px;
	border-radius: 10px;
	background-color:#fddddd;
	color:#111;
	padding:30px;
	text-align:center;
	z-index: 999;
	font-size:24px;
	line-height: 1.2;
}
.alert .btn-alert-ok{
	display: inline-block;
	border:solid 2px #111;
	color:#111;
	border-radius: 25px;
	padding:10px 30px;
	text-decoration: none;
	margin-top:15px;
}
@media(min-width:768px){
	.alert{
		width:500px;
		margin-left:-250px;
		top:60px;
	}
}
@media(min-width:992px){
	.alert{
		width:800px;
		margin-left:-400px;
		padding:45px;
		font-size:26px;
	}
}

.btn-default{
	background: rgb(46,114,176);
	background: -moz-linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	background: -webkit-linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	background: linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e72b0",endColorstr="#0fcca9",GradientType=1);
	display: inline-block;
	padding:15px 30px;
	border-radius: 30px;
	font-size:1rem;
	font-weight: bold;
	color:#fff;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}
.btn-default:hover{
	color:#fff;
	-webkit-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.10);
}

.line{
	width:6px;
	background-color:#0fc7c3;
	position: absolute;
	left:50%;
	margin-left:-3px;
	bottom:0;
	z-index: 1;
}
.line .dot{
	position: absolute;
	width:14px;
	height:14px;
	border-radius: 50%;
	left:50%;
	margin-left:-7px;
	background-color:#0fc7c3;
	top:38px;
}

/*

	HEADER

---------- */
.header{
	background-color:#0fc7c3;
	background-image:url('../img/header.png');
	height:400px;
	display: flex;
    align-items: center;
	padding:1rem;
}
.header .logo{
	width:200px;
	display:block;
	position: absolute;
	top:1rem;
	left:1rem;
}
.header .logo img{
	max-width:100%;
}
.header h1{
	padding:5rem 0 2rem 0;
	color:#2f6ca9;
	margin:0;
}
@media(min-width:992px){
	.header{
		height:400px;
	}
	.header h1{
		font-size:3rem;
		padding:0;
	}
	.header .logo{
		top:2rem;
		left:2rem;
		width:250px;
	}
}

/*

	BLOCK 1

----------- */
.block-1{
	padding:2rem 1rem 4rem 1rem;
	position: relative;
}
.intro .title{
	font-size:20px;
	line-height: 1.2;
	color:#0091e0;
}
.intro .text{
	font-size:16px;
	line-height: 1.3;
}
.intro .btn-more{
	display: block;
	margin-top:15px;
	padding:15px;
	color:#0fc7c3;
	text-transform: uppercase;
	text-decoration: none;
	font-weight:bold;
	font-size: 16px;
	line-height: 1;
}

.block-1 img{
	max-width:100%;
}

@media(min-width:768px){
	.block-1{
	}
}
@media(min-width:992px){
	.block-1{
		padding:4rem 1rem;
	}
	.t1, .t2{
		width:75%;
	}
	.t2{
		margin-left:20%;
	}

}
@media(min-width:1200px){
	.block-1{
	}
}
@media(min-width:1300px){
	.block-1{
	}
}
@media(min-width:1400px){
}

/*

	BLOCK 2

----------- */
.block-2{
	padding:2rem 1rem;
	background-color:#f2fafd
}
.block-2 h2{
	color:#009fe3;
	margin:0 0 2rem 0;
}
.block-2 h2 span{
	display:block;
	font-size:2.1rem;
}
@media(min-width:768px){
	.block-2 h2 span{
		font-size:3.5rem;
	}
}
@media(min-width:992px){
	.block-2{
		padding:4rem 1rem;
	}
	.block-2 h2{
		font-size:2.2rem;
	}
	.block-2 h2 span{
		font-size:4rem;
	}
}
@media(min-width:1200px){
	.block-2 h2{
		font-size:2.5rem;
	}
	.block-2 h2 span{
		font-size:5rem;
	}
}

/*

	BLOCK 3

----------- */
.block-3{
	background-image:url('../img/highlightimage.png');
	height:580px;
	display: flex;
    align-items: center;
	padding:1rem;
}
.block-3 h2{
	color:#fff;
	text-transform: uppercase;
	font-size:2rem;
	margin:0 0 2rem 0;
}
.block-3 .text{
	color:#fff;
	text-align:center;
	font-size:1.2rem;
}
@media(min-width:768px){
	.block-3 h2{
		font-size:3rem;
		line-height:1.8;
	}
}
@media(min-width:992px){
	.block-3{
		height:660px;
	}
	.block-3 .text{
		font-size:1.5rem;
	}
}

/*

	NEWSLETTER

-------------- */
.newsletter{
	background-color:#f2fafe;
	padding:45px 15px;
}
.newsletter .title{
	text-align:center;
	font-size:32px;
	font-weight:900;
	line-height: 1.2;
	color:#2f6ba8;
	margin:0 0 30px 0;
}
.newsletter .title span{
	display:inline-block;
	color:#0fc7c3;
}
form .form-title{
	font-size:22px;
	font-weight:900;
	line-height: 1.2;
	color:#009fe3;
	margin:0 0 10px 0;
}
form .info{
	font-size:16px;
	line-height: 1.3;
}
form .info span{
	display:block;
	font-size:20px;
	color:#883de6;
}
.form{
	margin-top:15px;
}
.form input{
	background-color:#e6f1f9;
	border:none;
	border-radius: 0;
	padding:10px;
	font-size:16px;
	line-height: 1;
	margin:0 0 5px 0;
	width: 100%;
	outline-color: #8baed0;
}
.form input.error{
	border:solid 1px red;
}
.form .btn-default{
	border:none;
	margin-top:15px;
}
@media(min-width:768px){
	.newsletter{
		padding:90px 15px;
	}
	.newsletter .title{
		margin:0 0 60px 0;
	}
	.form{
		margin:0;
	}
	form .form-title{
		font-size:26px;
		margin:0;
	}
}

/*

	FOOTER

---------- */
.footer{
	padding:30px 15px;
	background: rgb(46,114,176);
	background: -moz-linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	background: -webkit-linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	background: linear-gradient(54deg, rgba(46,114,176,1) 0%, rgba(35,177,216,1) 55%, rgba(15,204,169,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e72b0",endColorstr="#0fcca9",GradientType=1);
}
.footer .logo{
	text-align:center;
}
.footer .logo img{
	width:280px;
}
.footer .title{
	font-weight:bold;
	color:#fff;
	font-size:18px;
	line-height: 1.2;
	margin:30px 0 15px 0;
}
.footer .title a{
	text-decoration: none;
	color:#fff;
	display:inline-block;
}
.footer .text{
	font-size:16px;
	line-height: 1.3;
	color:#fff;
}
.footer .text a{
	color:#fff;
	text-decoration: none;
}
.footer .socials a{
	display: inline-block;
	background-color:#fff;
	width:32px;
	height:32px;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	color:#35b8b1;
	font-size:14px;
	margin:0 5px 0 0;
}
.footer .socials a:hover{
	background-color:#009fe3;
	color:#fff;
}
@media(min-width:768px){
	.footer{
		padding:60px 15px;
	}
	.footer .logo img{
		width:400px;
	}
}
@media(min-width:992px){
	.footer .title{
		margin-top:60px;
	}
}

.notification{
	font-size:14px;
	line-height: 1;
	padding:0 0 10px 0;
	color:red;
	display: none;
}


















