body {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #424242;
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
    }
}

/* Utility */

.none {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
    display: block;
    margin-left: -10000px;
    background: transparent;
    font-size: 0;
}


/* Grid */

.container {
    width: 1400px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1399px) {
    .container {
        width: 100%;
}
}


.container-wide {
    width: 1536px;
}

@media (max-width: 1535px) {
    .container-wide {
        width: 100%;
    }
}

.no-scroll {
    overflow: hidden;
}