/* CONTENTS */
/* ------------------
1. General
2. Navbar
3. Header
-------------------- */

/* 1. GENERAL */
* {
	-webkit-font-smoothing: antialiased;
	-moz-os-font-smoothing: grayscale;
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	padding: 0;
	margin: 0;
}
body {
	font-family: 'Montserrat', sans-serif;
	padding: 0;
	margin: 0;
	background-color: #fff;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	font-size: 1em;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}
.padding-0{
	padding: 0 !important;
}
.wrapper{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#home, #features, #partners, #blogs, #reviews, #contact{
	display: block;
	position: relative;
	top: -70px!important;
	visibility: hidden;	
}
button:focus{
	outline: none !important;
}
.subtitle{
	font-size: 14px;
	font-weight: 700;
	color: #000;
	margin-bottom: 5px;
	opacity: 0.5;
}
.title{
	font-size: 42px;
	font-weight: 700;
	color: #404040;
	margin-bottom: 20px;
	line-height: 1;
}
.title-details{
	font-size: 18px;
	line-height: 1.4;
	color: #8A8A8A;
	margin-bottom: 10px;
}
@keyframes float {
	0%{
		transform: translatey(0px);
	}
	50%{
		transform: translatey(-20px);
	}
	100%{
		transform: translatey(0px);
	}
}

/* 2. NAVBAR */ 
.header-scrolled{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: #0984E3!important;
	-webkit-box-shadow: 0 4px 6px 0 rgba(12,0,46,.06);
	box-shadow: 0 4px 6px 0 rgba(12,0,46,.06);
}
.header-scrolled .nav-link-menu{
	color: #fff;
}
.navbar{
	background-color: transparent;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}
.navbar-nav{
	align-items: center;
}    
.navbar-brand{
	display: flex;
	align-items: center;
}
.navbar-brand-menu{
	margin-right: 40px;
}
.menu-navbar-nav{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.nav-item{
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid;
	border-bottom: 2px solid transparent;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	border-image: linear-gradient(to right, rgba(0,0,0,0,0), rgba(0,0,0,0,0)) 1 stretch;
}
.nav-item .nav-link{
	text-align: center;
}
.nav-item:hover{
	border-image: linear-gradient(to right, #0984E3, #EC41FF) 1 stretch;
	transition: ease-in-out 1sec;
}
.nav-link-menu{
	font-family: Montserrat;
	font-weight: 500;
	font-size: 16px;
	color: #404040;
	line-height: 1;
}
.navbar-toggler-icon{
	background-image: url("../images/menu.png");
}
.header-scrolled .navbar-toggler-icon{
	background-image: url("../images/menu_white.png");
}
@media screen and (max-width: 767.98px){
	.navbar-collapse{
		background-color: #0984E3;
		color: #fff;
		margin-top: 10px;
		padding-bottom: 20px;
		padding-top: 20px;
	}		
	.header-scrolled .navbar-collapse{  
		background-color: #0984E3!important;
	}
	.navbar{
		padding: 14px 0;
		height: 70px;
	}
	.navbar-container{
		max-width: 100%;
	}
	.navbar-brand{
		padding-left: 20px;
	}
	.navbar-toggler{
		padding-right: 20px;
	}
	.nav-link-menu{
		color: #fff;
	}
}

/* 3. HEADER */ 
.header-bg-section{
	position: absolute;
	width: 100%;
	padding-top: 100%;
	top: 40%;
	left: -40%;
	transform: translateY(-50%);
	z-index: 1
}
.header-bg-section::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background-image: url(../images/header-bg.svg);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
.header-section{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 150px 0 100px 0;
	z-index: 2;
}
.header-container{
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: row;
}
.header-title-section{
	padding: 0;
	position: absolute;
	transform: translateY(-1rem);
	z-index: 2;
}   
.header-title{
	font-size: 56px;
	font-weight: 550;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 20px;
	max-width: 570px;
}
.header-details{
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
	max-width: 400px;
	margin-bottom: 15px;/*
	transform: translateY(-2rem);*/
}
/*
.header-subtitle{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 40px;
}*/
.header-img-div img{
	width: 100%;
	z-index: 2;
	position: relative;
	margin-bottom: 4rem;
	margin-left: 7rem;
	animation: float 5s ease-in-out infinite;
}
@media screen and (max-width: 1499.98px){
	.header-bg-section{
		top: 35%;
	}
}
@media screen and (max-width: 1199.98px){
	.header-bg-section{
		width: 120%;
		padding-top: 120%;
		top: 30%;
		left: -50%;
	}
}
@media screen and (max-width: 991.98px){
	.header-container{
		flex-direction: column-reverse;
	}
	.header-title-section{
		position: relative;
		text-align: center;
		max-width: 400px;
	}
	.header-title{
		color: #404040;
		max-width: 100%;
	}
	.header-details{
		color: #404040;
		max-width: 100%;   
	}
	.header-subtitle{
		color: #404040;
	}
	.header-social-section{
		justify-content: center;
	}
	.header-img-section{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767.98px){
	.header-img-div img{
		left: -30%;
	}

	.header-bg-section{
		width: 200%;
		padding-top: 200%;
		left: -110%;
	}
}
@media screen and (max-width: 575.98px){
	.header-title{
		font-size: 50px;
	}
}
