#cover-heading {
	font-size: 60px;
}

#cover {
	background: url("cover img.png");
}

#cover-content {
	color: #fff;
	text-align: right;
	width: 500px;
	transform: translateX(-85px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;

}

#cover-content p {
	font-size: 30px;
}

#cover-line {
	width: 60%;
	height: 10px;
	margin: 5px 0 5px 0;
	background: #fff;
	border-radius: 15px;
}

#years, #adds {
    height: auto;
    padding: 20px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

#AS3 {
	background: #9923EB;
}

#AS2 {
	background: #DB4E23;
}

#AS1 {
	background: #F29C1B;
}

.years {
	width: 32%;
	height: 225px;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	align-items: center;
	justify-content: space-evenly;
	padding: 15px;
	margin-bottom: 20px;
}

.years-icons {
	width: 80px;
	margin: 0 0 0 10px;
}

.years-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.years-texts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	color: #fff;
}

.years-texts h2 {
	font-size: 28px;
}

.years-lines {
	width: 75%;
	height: 4px;
	margin: 6px 0 6px 0;
	background: #fff;
	border-radius: 15px;
	margin: 8px 0 5px 0;
}

.years-cta {
	padding: 6px 18px;
	border: none;
	border-radius: 25px;
	
	cursor: pointer;
	font-size: 16px;
}

.add {
	width: 32%;
	height: 225px;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	align-items: center;
	justify-content: space-evenly;
	padding: 15px;
	margin-bottom: 20px;
}

.add-icons {
	width: 80px;
	margin: 0 0 0 10px;
}

.add-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.add-texts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	color: #fff;
}

.add-texts h2 {
	font-size: 22px;
}

.add-lines {
	width: 75%;
	height: 4px;
	margin: 6px 0 6px 0;
	background: #fff;
	border-radius: 15px;
	margin: 8px 0 5px 0;
}

.add-cta {
	padding: 9px 25px;
	border: none;
	border-radius: 50px;
	
	cursor: pointer;
	font-size: 16px;
}

#AS3-cta {
	color: #9923EB;
	background: #D9D9D9;
	transition: 150ms all ease-in-out;
}

#AS3-cta:hover {
	border: 1px solid #D9D9D9;
	background: #9923EB;
	color: #D9D9D9;
}

#AS2-cta {
	color: #DB4E23;
	background: #D9D9D9;
	transition: 150ms all ease-in-out;
}

#AS2-cta:hover {
	border: 1px solid #D9D9D9;
	background: #DB4E23;
	color: #D9D9D9;
}

#AS1-cta {
	color: #F29C1B;
	background: #D9D9D9;
	transition: 150ms all ease-in-out;
}

#AS1-cta:hover {
	border: 1px solid #D9D9D9;
	background: #F29C1B;
	color: #D9D9D9;
}

#who-us {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 450px;
	background: url("who-us-cover.png");
}

#who-us-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#who-us-text {
	width: 700px;
	transform: translateX(-125px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: #fff;
	text-align: right;
	padding: 10px 0 10px 0;
}

#who-us-text h1 {
	font-size: 50px;
}

#who-us-text p {
	font-size: 25px;
	line-height: 50px;
}

#who-us-text hr {
	width: 40%;
	height: 10px;
	margin: 15px 0 15px 0;
	background: #fff;
	border-radius: 15px;
}

#who-us-img {
	width: 350px;
	height: 350px;
}

@media (max-width: 768px) and (min-width: 320px){
	#cover {
		background: url("cover_img_phone.png");
	}

	#cover-heading {
		font-size: 32px;
	}

	#cover-line {
		width: 44%;
		height: 5px;
	}

	#cover-content {
		transform: translateX(-15px);
		width: 330px;
	}

	#cover-content p {
		font-size: 14px;
	}

	.years-texts h2, .add-texts h2 {
		font-size: 14px;
	}

	.years-texts p,.add-texts p {
		font-size: 10px;
	}

	.years-lines, .add-lines {
		width: 70%;
	}

	.years, .add {
		width: 95%;
		height: 150px;
	}

	.years-icons, .add-icons {
		height: auto;
		width: 20%;
	}

	.years-cta, .add-cta {
	    padding: 4px 10px;
	    font-size: 12px;
	}

	#adds, #years {
		height: auto;
		flex-direction: column-reverse;
	}

	#AS1-cta:hover {
    	transform: translateY(-3px);
		border: 2px solid #D9D9D9;
    }

    #AS2-cta:hover {
    	transform: translateY(-3px);
		border: 2px solid #D9D9D9;
    }

    #AS3-cta:hover {
    	transform: translateY(-3px);
		border: 2px solid #D9D9D9;
    }

	#who-us {
		height: 144px;
		background: url("who-us-cover_25.png");
	}

	#who-us-text p {
		font-size: 8px;
	    line-height: 16px;
	}

	#who-us-text h1 {
    	font-size: 18px;
	}

	#who-us-text hr {
	    width: 35%;
	    height: 3px;
	    margin: 5px 0 5px 0;
	}

	#who-us-img {
	    width: 80px;
	    height: 80px;
	}

	#who-us-text {
	    width: 220px;
	    transform: translateX(-5px);
	}
}

@media (min-width: 1000px) and (max-width: 1024px) {

	#who-us-text p {
	    font-size: 20px;
	    line-height: 40px;
	}

	#who-us-text {
	    width: 560px;
	    transform: translateX(-50px);
	}

	#who-us-img {
	    width: 300px;
	    height: 300px;
	}

	.years-cta {
    	padding: 6px 20px;
	}

	.years {
	    width: 30%;
	    height: 192px;
	}

	.years-texts h2 {
    	font-size: 22px;
	}
	.years-texts p {
    	font-size: 14px;
	}

	.years-icons {
    	width: 60px;
    	height: auto;
	}

	.years-lines {
    	width: 88%;
	}

	#AS1-cta:hover {
		border: 3px solid #D9D9D9;
		transform: translateY(-3px);
    }

    #AS2-cta:hover {
		border: 3px solid #D9D9D9;
		transform: translateY(-3px);
    }

    #AS3-cta:hover {
		border: 3px solid #D9D9D9;
		transform: translateY(-3px);
    }

    #cover-content p {
	    line-height: 50px;
	}
	




}