body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

/*#0f6177 azul oscuro
#1797a9 azul claro
#363939 gris oscuro
#0f1216 negro
#676b6b gris medio
#919394 gris claro

extra light
regular 
bold*/


/*Fonts*/
.poppins{
	font-family: 'Poppins', sans-serif;
}

/*Fonts-size*/

.fs-16{font-size: 16px;}
.fs-17{font-size: 17px;}
.fs-18{font-size: 18px;}
.fs-19{font-size: 19px;}
.fs-20{font-size: 20px;}
.fs-21{font-size: 21px;}
.fs-22{font-size: 22px;}
.fs-23{font-size: 23px;}
.fs-24{font-size: 24px;}
.fs-25{font-size: 25px;}
.fs-26{font-size: 26px;}
.fs-27{font-size: 27px;}
.fs-28{font-size: 28px;}
.fs-29{font-size: 29px;}
.fs-30{font-size: 30px;}
.fs-31{font-size: 31px;}
.fs-32{font-size: 32px;}
.fs-33{font-size: 33px;}
.fs-34{font-size: 34px;}
.fs-35{font-size: 35px;}
.fs-36{font-size: 36px;}
.fs-37{font-size: 37px;}
.fs-38{font-size: 38px;}
.fs-39{font-size: 39px;}
.fs-40{font-size: 40px;}
.fs-41{font-size: 41px;}
.fs-42{font-size: 42px;}
.fs-43{font-size: 43px;}
.fs-44{font-size: 44px;}
.fs-45{font-size: 45px;}
.fs-46{font-size: 46px;}
.fs-47{font-size: 47px;}


/*Font-weight*/
.w-300{font-weight: 300;}
.w-400{font-weight: 400;}
.w-500{font-weight: 500;}
.w-600{font-weight: 600;}

/*Margins*/
.m-b0{margin-bottom: 0px;}
.m-b10{margin-bottom: 10px;}
.m-b20{margin-bottom: 20px;}
.m-b30{margin-bottom: 30px;}
.m-b40{margin-bottom: 40px;}
.m-b50{margin-bottom: 50px;}
.m-b60{margin-bottom: 60px;}

.m-t0{margin-top: 0px;}
.m-t10{margin-top: 10px;}
.m-t20{margin-top: 20px;}
.m-t30{margin-top: 30px;}
.m-t40{margin-top: 40px;}
.m-t50{margin-top: 50px;}
.m-t60{margin-top: 60px;}

/*White space*/
.w-space-pre{white-space: pre-line;}
.w-space-normal{white-space: normal;}

/*Customs*/
.justi-p{
	justify-content: center;
}

.l-blanca{
	color: #fff;
}

/*Welcome section and login*/
.welcome{
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(../images/home/sales-website.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box-home{
	position: relative;
	text-align: center;
}

.box-home img{
	position: relative;
	display: block;
	text-align: center;
	margin: 0 auto;
	width: 140px;
	height: auto;
}

.box-home p{
	text-align: center;
	margin: 40px 0;
	color: #fff;
	font-weight: 300;
	font-size: 45px;
	line-height: 45px;
}

.box-login{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.form-login{
	width: 740px;
	height: auto;
	border: 1px solid #fff;
	padding: 40px 20px;
	margin: 0 auto;
}

.form-login .form-group{
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-login .form-group label{
	color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-align: right;
    margin-bottom: 0;
    width: 15%;
} 

.form-login .form-group input[type=text], .form-login .form-group input[type=password]{
	background: rgba(255,255,255,0.75);
    outline: none;
    border: 1px solid #fff;
    min-width: 250px;
    width: 80%;
}
.form-login .form-group input[type=checkbox]{
	background: rgba(255,255,255,0.75);
    outline: none;
    border: 1px solid #fff;
}

.form-login .form-group .flex{
	display: flex;
	align-items: center;
}

.btn-refresh{
	width: 80%;
	text-align: left;
	margin-left: 15.5%;
}

.btn-refresh:hover{
	text-decoration: none;
}

.btn-refresh span:first-child{
	padding: 0px;
	width: 10px;
	height: 10px;
	margin-right: 5px;
	background: #1797a9;
	outline: none;
	border: 1px solid #1797a9;
	display: inline-block;
}

.btn-refresh span:last-child{
	color: #fff;
	font-size: 18px;
	font-weight: 300;
}

.btn-login{
	background: #0f6177;
	padding: 8px 40px;
	color: #fff;
	border: 1px solid #0f6177;
	outline: none;
	position: relative;
}

.btn-login:before{
}

.btn-login:hover:before{

}
/*end*/


/*Section who we are*/
.bckgd-who-we-are{
	background: url(https://placehold.it/1920x1080); 
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat; 
	width: 100%; 
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content:center;
}

/*end*/

/*Responsive*/
@media (max-width: 600px;){
	.w-space-normal-sm{white-space: normal;}
}