body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
@media screen and (max-width: 1100px) {
    .pageWidth {
    	padding: 0 10px;
    }
}

/* INTRO =============================================================== */
#intro {
    min-height: 680px;
    display: flex;
    justify-content: flex-end;
    margin-top: 89px;
    position: relative;
}

#intro .texture{
    background: url("../../resources/texture_go_bottom_left.svg") no-repeat right bottom;
    background-size: 100% auto;
    width: 44%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}


#intro .solution {
    padding: 50px 0 50px 60px;
    font-weight: 300;
    box-sizing: border-box;
    display: flex;
    width: 60%;
    flex-direction: column;
    justify-content: center;
}


#intro .solution h1 {
    font-weight: 200;
    font-size: 60px;
    color: #273347;
    margin-bottom: 15px;
}

#intro .solution span{
	display: block;
	text-transform: uppercase;
	font-size: 48px;
}

#intro .solution h3 {
    font-weight: 200;
    font-size: 45px;
    color: #fd9a00;
    margin: 0 0 30px 0;
}

#intro .solution p{
    font-weight: 200;
    font-size: 34px;
    /* line-height: 40px; */
    margin: 0 0 50px 4px;
    color: #49505B;
}

#intro .solution .actions a{
    font-weight: 300;
    font-size: 20px;
    display: inline-block;
    color: #FFFFFF;
    background-color: #37C597;
    padding: 15px 25px;
    border-radius: 6px;
    transition: all .2s;
}

#intro .solution .actions a:hover{
    background-color: #299b76;
}



#intro .pageWidth {
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
}


#intro .photo {
    width: 44%;
    background: url(intro.svg) no-repeat right center;
    background-size: auto 100%;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    z-index: 1;
}





@media screen and (max-width: 1100px) {
	#intro .solution h1{
		display: flex;
		flex-direction: column;
	}

	#intro .solution h1 strong{
		margin-bottom: 0;
		line-height: 91px;
	}

	#intro .solution h1 span{
		margin-left: 4px;
		line-height: 44px;
		margin-bottom: 15px;
	}

}


@media screen and (max-width: 1010px) {
	#intro {
		min-height: 550px;
	}

	#intro .solution {
		padding: 30px 10px 30px 60px;
	}
	
	#intro .solution h1 {
		font-size: 48px;
		margin-bottom: 12px;
	}

	#intro .solution h3 {
		font-size: 40px;
		margin-bottom: 20px;
	}

	#intro .solution p {
		margin-bottom: 30px;
		font-size: 30px;
		/* line-height: 40px; */
	}
}



@media screen and (max-width: 800px) {
	#intro {
		margin-top: 0px;
		/* display: block; */
		flex-direction: column-reverse;
		min-height: auto;
	}
	#intro .photo {
		height: 0;
		padding-top: 55%;
		width: 100%;
		position: relative;
		margin-bottom: 30px;
		top: 0;
		background-position: center bottom;
		background-size: contain;
	}

	#intro .solution {
		display: block;
		width: 100%;
		padding: 60px 30px 30px 30px;
	}
	#intro .texture{
		width: 50%;
	}
}


@media screen and (max-width: 750px) {
	#intro .photo {
		padding-top: 65%;
	}
}



@media screen and (max-width: 600px) {
	#intro .solution {
		padding: 50px 20px 20px 20px;
	}
	#intro .solution h1 {
		font-size: 42px;
		margin-bottom: 12px;
	}
	#intro .solution h3{
		font-size: 32px;
		margin: 0 0 15px 0;
	}
	#intro .solution p {
		font-size: 26px;
	}
	#intro .pageWidth {
		display: block;
		margin-bottom: 10px;
	}
}




@media screen and (max-width: 450px) {
	#intro .solution {
		padding: 40px 0 15px 0;
	}
	#intro .photo {
		padding-top: 65%;
	}
	#intro .solution h1 {
		font-size: 36px;
	}
	#intro .solution h3{
		font-size: 30px;
	}
	#intro .solution p {
		font-size: 23px;
	}
	#intro .solution .actions a{
        font-size: 18px;
        padding: 11px 18px;
    }
}

@media screen and (max-width: 380px) {
	#intro .pageWidth {
		display: block;
		margin-bottom: 20px;
	}
	#intro .photo {
		padding-top: 100%;
	}
	#intro .solution h1 {
		font-size: 29px;
	}
	#intro .solution h3{
		font-size: 25px;
	}
	#intro .solution p {
		font-size: 21px;
	}
}









/* FEATURES =============================================================== */
#features {
	background-color: #f8f8f9;
	padding: 140px 0;
	position: relative;
	/* margin-top: 242px; */
}
#features p {
	font-size: 28px;
	line-height: 38px;
	margin-bottom: 60px;
	color: #49505b;
	font-weight: 200;
	text-align: center;
}

#features h3{
    margin: 0 auto 50px auto;
    color: #4f4da7;
    font-weight: 200;
    font-size: 46px;
    text-align: center;
}

#features .texture{
	background: url("../../resources/texture_go_top_left.svg") no-repeat right 0;
    background-size: 100% auto;
    width: 44%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

@media screen and (max-width: 1100px) {
	#features .pageWidth {
		padding: 0 20px;
	}
}







/* QUALIFY ======================================================== */
#qualify {
/* 	background-color: #eff0f1; */
	padding: 120px 0;
}

#qualify h2 {
	color: #4f4da7;
	font-weight: 200;
	font-size: 52px;
	margin-bottom: 50px;
	text-align: center;
}


#qualify p{
	font-size: 23px;
	line-height: 37px;
	font-weight: 300;
	box-sizing: border-box;
	margin: 0 auto 60px auto;
	color: #898E95;
}

#qualify h3{
	font-size: 23px;
	line-height: 37px;
	font-weight: 300;
	box-sizing: border-box;
	margin: 0 auto 30px auto;
	color: #1b2432;
}

#qualify li{
	font-size: 18px;
	line-height: 22px;
	font-weight: 200;
	box-sizing: border-box;
	margin: 0 auto 15px auto;
	color: #1b2432;
	position: relative;
	padding-left: 22px;
}

#qualify li i{
	color: #E63B3B;
	position: absolute;
	top: 2px;
	left: 0;
}




#contact .wrapper h2{
	font-size: 50px !important;
	color: #273347;
}