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

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5;
	font-size: 1rem;
    font-weight: 400;
}

h1 {
    font-size: 2.5rem;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 24px;
}
h4 {
    font-size: 20px;
    line-height: 30px;
}
h5 {
    font-size: 18px;
    line-height: 26px;
}
h6 {
    color: #c7c4c4;
    line-height: 24px;
    font-size: 1rem;
    font-weight: normal;
}

p {
    font-size: 14px;
    line-height: 24px;
}

.container {
	width: 100%;
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1400px;
	}
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
/*::-webkit-scrollbar-thumb {
  background: #f33030;
}*/

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* END SCROLLBAR */