@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;
}

p{
	font-size:1rem;
	color:#555;
}

/*

	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:20px 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:#fff;
	background-image:url('../img/header2.jpg');
	display: flex;
    align-items: center;
	padding:1rem;
	position:relative;
}
.header .logo{
	width:200px;
	display:block;
	position: absolute;
	top:1rem;
	left:1rem;
}
.header .logo img{
	max-width:100%;
}
.header h1{
	padding:5rem 0 1rem 0;
	color:#fff;
	margin:0;
	font-weight:bold;
	font-size:2rem;
}
.header h1 span{
	display:block;
	font-size:1rem;
	font-weight:normal;
	margin:0 0 5px 0;
}
.virus-background {
  position: absolute;
  width: 100%;
  top: 0;
  right:0;
  bottom:0;
  left:0; /* adjust as needed */
  background: transparent;
  overflow: hidden;
}

/* base style for particles */
.virus {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 150, 200, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -60px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@media(min-width:768px){
	.header h1{
		font-size:3rem;
	}
}
@media(min-width:992px){
	.header .logo{
		top:2rem;
		left:2rem;
		width:250px;
	}
}
@media(min-width:1200px){
	.header .logo{
		top:2rem;
		left:2rem;
	}
	.header h1{
		font-size:4rem;
		line-height:1.1;
		padding:6rem 0 4rem 0;
	}
	.header h1 span{
		font-size:1.5rem;
	}
}

.intro{
	padding:2rem 1rem;
}
.intro p{
	font-size:1.5rem;
	line-height: 1.4;
}
@media(min-width:768px){
	.intro{
		padding:2rem 2rem;
	}
}
@media(min-width:1200px){
	.intro{
		padding:3rem 0 6rem 0;
	}
}

.blocks{
	background-color:#0fc7c3;
	padding:2rem 1rem;
}
.blocks h2{
	color:#fff;
	font-size:1.5rem;
	font-weight:bold;
	margin:0 0 30px 0;
}
.block-single{
	background-color:rgb(47,108,169,0.8);
	padding: 1rem;
	color:#fff;
	border-radius:10px;
	margin:0 0 15px 0;
}
.block-single .title{
	font-weight:bold;
	font-size:1.8rem;
	line-height:1.2;
	margin:0 0 15px 0;
}
.block-single p{
	color:rgba(255,255,255,0.7);
}
.block-single .btn-block{
	display:inline-block;
	margin:15px 0 0 0;
	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);
	color:#fff;
	padding:1rem 2rem;
	border-radius:50px;
	text-decoration:none;
	font-weight:bold;
	font-size:1.2rem;
}
.block-single .btn-block:hover{
	-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);
}
.block-single .btn-block i{
	margin:0 0 0 5px;
}
.block-single .btn-block-2{
	background-color:#2f6ba8;
	color:#fff;
}
.block-single .btn-block:hover{
	background-color:#2f6ba8;
	color:#fff;
}
@media(min-width:768px){
	.blocks{
		padding:4rem 1rem;
	}
	.blocks h2{
		font-size:2rem;
	}
	.block-single{
		min-height:300px;
		position:relative;
	}
	.btn-block{
		position: absolute;
		bottom:1rem;
		left:1rem;
	}
}
@media(min-width:1200px){
	.blocks{
		padding:6rem 0;
	}
	.blocks h2{
		font-size:2.5rem;
		margin-bottom:45px;
	}
	.block-single{
		padding:2rem;
	}
	.btn-block{
		left:2rem;
		bottom:2rem;
	}
}

.quote-container{
	padding:2rem 1rem;
}
.quote-container .fa-quote-left{
	color:#0091e0;
	font-size:3rem;
}
.quote-container .quote{
	font-size:1.5rem;
	line-height:1.3;
	font-style:italic;
}
.quote-container .author{
	font-size:1rem;
	margin-top:15px;
}
@media(min-width:768px){
	.quote-container{
		padding:3rem 1rem 0 1rem;
	}
	.quote-container .fa-quote-left{
		font-size:5rem;
	}
	.quote-container .quote{
		font-size:1.8rem;
	}
}
@media(min-width:1200px){
	.quote-container{
		padding:4rem 0 0 0;
	}
	.quote-container .fa-quote-left{
		font-size:4rem;
	}
	.quote-container .author{
		font-size:1.2rem;
	}
}

.section{
	padding:2rem 1rem;
}
.row-highlight{
	padding:2rem 0 0 0;
}
.section .row-highlight h2{
	color:#0fc7c3;
}
.section h2{
	color:#2f6ba8;
	font-size:1.5rem;
	font-weight:bold;
}
.section-pic{
	height:240px;
	border-radius:0 50px 50px 50px;
}
@media(min-width:768px){
	.section{
		padding:4rem 1rem 4rem 1rem;
	}
	.section h2{
		font-size:1.8rem;
	}
	.row-highlight{
		padding:3rem 0 0 0;
	}
}
@media(min-width:1200px){
	.section-pic{
		height:300px;
	}
}

/*

	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;
}
.intro h2{
	color:#2f6ba8;
	font-size:2rem;
	font-weight:bold;
	margin-top:1rem;
}

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

@media(min-width:768px){
	.block-1{
	}
	.intro h2{
		font-size:2rem;
		margin-top:2rem;
		margin-bottom:-2rem;
	}

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

}
@media(min-width:1200px){
	.block-1{
	}
	.intro h2{
		font-size:2.5rem;
		margin-top:3rem;
		margin-bottom:-3rem;
	}
}
@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;
	font-size:2rem;
	font-weight: bold;
}
.block-2 h2 span{
	display:block;
	font-size:1.5rem;
	font-weight: normal;
	margin-top:15px;
}
@media(min-width:768px){
	.block-2{
		padding:4rem 1rem;
	}
}
@media(min-width:992px){
	.block-2{
		padding:4rem 1rem;
	}
	.block-2 h2{
		font-size:2.2rem;
	}
	.block-2 h2 span{
		font-size:1.8rem;
	}
}
@media(min-width:1200px){
	.block-2{
		padding:6rem 1rem;
	}
}

/*

	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;
}

.block-a{
	padding:2rem 1rem;
}
.figure-1{
	border-radius:10px;
}
@media(min-width:768px){
	.block-a{
		padding:4rem 1rem;
	}
}













