/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1920px) { 
	.container{
		max-width: 1700px;
	}
}
@media (min-width: 1600px) and (max-width: 1919.98px){
	html{
		font-size: 55%;
	}
	.container{
		max-width: 1500px;
	}
}
@media (min-width: 1366px) and (max-width: 1599.98px){
	html{
		font-size: 48%;
	}
	.container{
		max-width: 1290px;
	}
}
@media (min-width: 1200px) and (max-width: 1365.99px){
	html{
		font-size: 43%;
	}
	.container{
		max-width: 1140px;
	}
}
@media (min-width: 992px) and (max-width: 1199.98px){
	html{
		font-size: 35%;
	}
	.container{
		max-width: 970px;
	}
}
@media (max-width: 991.98px) {
	html{
		font-size: 55%;
	}
	.home_content {
		max-width: 70rem;
	}
	.home_left {
		justify-content: center;
	}
	.home_right{
		justify-content: center;
	}
	.home_right div{
		text-align: center;
		margin-top: 4rem;
	}
}
/*Medium devices (tablets, 767px and down)*/
@media (max-width: 767.98px) {
	html{
		font-size: 43%;
	}
}

/*Small devices (landscape phones, 575px and down)*/
@media (max-width: 575.98px) {
	html{
		font-size: 1.88vw;
	}
	body{
		font-size: 2rem;
	}
	.container{
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.home_right h2 {
		font-size: 6rem;
	}
	.home_right h1 {
		font-size: 7rem;
	}
	h1 {
	    font-size: 5rem;
	}
	h2{
		font-size: 4rem;
	}
	.terms_content ul li {
		font-size: 2.4rem;
	}
	.cta_content h2 {
		font-size: 3rem;
	}
	.service_area ul li {
		font-size: 2.2rem;
	}
	.fifth_area img {
    border-radius: 1rem;
    width: 100%;
}
}