
/*first-screen*/
section.first-screen{
	background-image: url(/app/images/bg-first.jpg);
	min-height: calc(95vh - 100px);
	display: inline-block;
	width: 100%;
	background-size: 100%;
	background-position: 50%;
	display: table;
	position: relative;
}

section.first-screen .words{
	font-size: 50px;
	display: table-cell;
	vertical-align: middle;
	padding-left: 60px;
}
section.first-screen .words .with-bg{
	background-color: #fff;
	margin-bottom: 15px;
	display: inline-block;
	padding: 5px 15px;
}

section.first-screen .learn-now-button,
.button,
form input[type="submit"]{
	color: #fff;
	text-decoration: none;
	background-color: #c50000;
	font-size: 42px;
	padding: 15px;
	border-bottom: 3px solid #980000;
	border-radius: 5px;
	display: inline-block;
	transition: background-color 0.2s;
	outline: none;
	border: none;
	cursor: pointer;
}
section.first-screen .learn-now-button:hover,
.button:hover,
form input[type="submit"]:hover{
	background-color: #980000;
}
section.first-screen .learn-now{
	position: absolute;
	bottom: 120px;
	right: 220px;
}

section.first-screen .learn-now-button{
-webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.61);
-moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.61);
box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.61);
}

@media(max-width: 1650px){
	section.first-screen .learn-now-button{
		font-size: 26px;
		padding: 10px;
	}
	section.first-screen .words .with-bg{
		padding: 5px 15px;
		font-size: 40px;

	}
	section.first-screen .learn-now{
		bottom: 60px;
		right: 60px;
	}
	section.first-screen{
		background-size: auto 100%;
		background-position: 50%;
	}
}

@media(max-width: 1650px){
	section.first-screen .words .with-bg{
		font-size: 29px;
	}
}

@media(max-width: 760px){
	section.first-screen .words .with-bg{
		font-size: 25px;
	}
	section.first-screen .words{
		padding: 30px;
	}
	section.first-screen{
		min-height: calc(92vh - 100px);
	}
	section.first-screen .learn-now-button{
		font-size: 17px;
	}

}


@media (max-width: 550px){
	section.first-screen .words .with-bg{
		margin-bottom: 5px;
		display: block;
		font-size:23px;
	}
	section.first-screen .words{
		vertical-align: top;
	}
	section.first-screen {
		min-height: calc(101vh - 160px);
	}
	section.first-screen .words br{
		display: none;
	}
	section.first-screen .learn-now{
		bottom: 10px;
		/* right: 60px; */
		width: 100%;
		right: 0;
		padding: 15px;
		text-align: center;
	}
	section.first-screen .learn-now-button{
		font-size: 23px;
	}

}

@media (max-width: 360px){
	section.first-screen .words .with-bg{
		font-size: 24px;
	}
	section.first-screen {
		min-height: calc(106vh - 320px);
	}
	section.first-screen .learn-now-button{
		font-size: 18px;
	}
}

/*first-screen*/