/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px){
	html{
		font-size: 55%;
	}
}
@media (max-width: 991.98px) {
	html{
		font-size: 59%;
	}
	
}

/*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: 2.2vw;
	}
	.container{
		padding-left: 2.2rem;
		padding-right: 2.2rem;
	}
	footer .container{
		flex-direction: column-reverse;
	}
	footer,
	.why_box {
	    font-size: 1.7rem;
	}
	footer p{
		margin-top: 2rem;
	}
	h1 {
	    font-size: 5rem;
	}
	h2{
		font-size: 3.5rem;
	}
	.logo_big {
	    width: 25rem;
	}
	.home_area p {
	    font-size: 2.2rem;
	}
	.home_area {
    	padding: 4rem 0 6rem;
	}
	.menu>ul>li>a {
	    font-size: 1.8rem;
	}
	.newst_content{
		padding: 3rem;
	}
	.newst_content h6{
		font-size: 2.4rem;
	}
	h2 br{
		display: none;
	}
}