body {
    padding: 80px 0 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    color: #000;
    background: #fcfcfc;
}
* {
	box-sizing: border-box;
	outline: none;
}
a {
    text-decoration: none;
    color: #000;
}
.hidden {
    display: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
.row {
    padding: 0 15px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
    flex-wrap: wrap;
}
.grid {
    display: grid;
    gap: 20px;
}
.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4col {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

.mtop-20 {
    margin: 20px 0 0;
}

.mbot-20 {
    margin: 0 0 20px;
}

.a-center {
    text-align: center;
}
.a-left {
    text-align: left;
}
.a-right {
    text-align: right;
}

