@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap');

/* General */
*,*:before,*:after {box-sizing: border-box;}
body{
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	margin:0;
	padding:0;
	position: relative;
	color:#333;
	min-height: 100vh;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{font-weight: normal;margin:0;padding:0;}
a,a:hover,a:focus{color: inherit;text-decoration: none;cursor: pointer;}
p{margin: 0;padding: 0;}
img {max-width: 100%;height: auto;}
button{background-color: transparent;border:none;cursor:pointer;box-shadow: none!important;outline: none!important;}

/*Landing*/
.container{
	width:100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.container h2{
	/*width: 100%;*/
	font-family: 'Roboto';
    font-weight: 300;
    font-size: 32px;
	text-align: left;
	margin-bottom: 30px;
	position: relative;
	margin-top: 50px;
}
.container h2 span{
	font-weight: 900;
}

.container h2:before {
    position: absolute;
    top: -10px;
    left: 0;
    width: 140px;
    height: 5px;
    background-color: red;
    content: "";
    border-radius: 15px;
}
.container--steps .container h2{font-weight: 900;}

.container .wrap{
	width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.col-lg-12{width: 100%;float: left;}
.col-lg-8{width: 75%;float: left;}
.col-lg-6{width: 50%;float: left;}
.col-lg-4{width: 33%;float: left;}

.hero{
	width: 100%;
    height: 50vh;
    position: relative;
    background-image: url(../images/16.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: rgba(0, 173, 239,0.2);
    background-color: rgba(233, 243, 235,0.2);*/
    background-color: rgba(55, 55, 55, 0.8);
    z-index: 1;
}
.hero h1{
	font-family: 'Roboto';
	font-weight: 900;
	color: #FFF;
	font-size: 3em;
}
.hero p{
	font-size: 20px;
	font-family: 'Roboto';
	font-weight: 300;
	color: #FFF;
	margin-top: 15px;
}

.cta,
#play{
	background-color: #f82e56;
	padding: 15px 45px;
	color: #FFF;
	border-radius: 5px;
	margin-top: 30px;
	font-size: 16px;
}

.overlay{
	width: 500px;
	height: 300px;
	position: absolute;
	top: 50%;
	right: 15%;
	background-image: url(../images/17.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 3;
}
figure{
	margin: 0;
	height: 350px;
	float: left;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

picture{
	float: left;
	width: 80%;
	transition: all 250ms linear;
}
picture:hover{
	width: 90%;
}
.description{
	background-color: rgba(233, 234, 235,.3);
	height: 200px;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.description h3{
	font-weight: 900;
	margin-bottom: 5px;
}
.price{
	margin-top: 15px;
}
.price span{
	font-weight: normal;
}
.container--steps{margin-top: 50px;max-width: unset;padding: 0px 50px 50px 50px;background-color: rgba(233, 234, 235,.3);}

.container--steps .image{
	display: flex;
	justify-content: center;
}
.container--steps figure{
	height: auto;
/*    margin-top: 30px;
    margin-bottom: 15px;*/
}
.container--steps figure picture{
	width: 40px;
}

.container--steps .description--how {
    height: auto;
    background: transparent;
    padding: 10px;
    text-align: center;
}

footer{
    width: 100%;
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.free{
	font-size: 12px; 
}

@media (max-width: 767px) {
	.hero{height: auto;}
	.hero h1{font-size: 32px;}
	.container{
		width:100%;
		margin: 0 auto;
		padding: 30px;
		display: flex;
		flex-wrap: wrap;
	}
	.col-xs-12{width: 100%;}
	figure,.description{height: auto;}
	figure{order: 1;padding: 20px;}
	.description{order: 2;}
	
	.container--steps{margin-top: 0px;padding: 0px;}
	.container h2{margin-top: 10px;font-size: 2em;}
	footer{margin: 0px auto 25px auto;}
}