@media only screen and (max-width: 1440px) {

}

/* Large devices (laptops / desktops) */
@media only screen and (max-width: 1200px) {
	
}

/* Medium devices (landscape tablets) */
@media only screen and (max-width: 768px) {
	
	html, body {
		font-size: 14px;
	}
	
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	
}


/* Extra small devices (phones, 600px) */
@media only screen and (max-width: 600px) {
	
	html, body {
		font-size: 12px;
	}
	
    /* Footer */
    footer .footer-sitemap .row .col {
        padding: 0;
    }
    footer .footer-sitemap .sitemap-logo {
        max-width: 100px;
    }
    footer .footer-copyright .copyright-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
	
	/* Cookie Policy */
	.policy-btn .policy-btn-accept {
		width: 100%;
	}
}


@media only screen and (min-width: 601px) {
	
	
}