* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    /*outline: 1px solid red !important;*/
}

*:before, 
*:after 
{
    box-sizing: border-box;
}

html {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    line-height: 1.85;
}

a {
    color: unset;
    text-decoration: none;
    outline: none;
}

.grey-bg {
    background: #f1f1f7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

section {
    padding: 100px 0;
}

.slick-prev:before, 
.slick-next:before
{
    content: '';
}

.container {
    width: 95%;
    margin: 0 auto;
    max-width: 1920px;
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .container {
		width:98%;
		/* width: 540px; */
    }
}

@media (min-width: 768px) {
    .container {
		width:98%;
        /* width: 720px; */
    }
}

@media (min-width: 992px) {
    .container {
		width:90%;
        /* width: 960px; */
    }
}

@media (min-width: 1200px) {
    .container {
		width: 90%;
	    max-width: 1600px;
        /* width: 1140px; */
    }
}