* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Text', Arial, Helvetica, sans-serif;
    font-weight: 400;
    background: #f5f5f5;
    color: #111;
}

a,
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

img,
svg {
    vertical-align: middle;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 99999;
    transition: visibility 0.5s, opacity 0.5s;
}

.loading.loading-hidden {
    opacity: 0;
    visibility: hidden;
}

.arrow {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.arrow-up {
    background-image: url('/assets/images/icons/chevron-up.svg');
}

.arrow-down {
    background-image: url('/assets/images/icons/chevron-down.svg');
}

.arrow-left {
    background-image: url('/assets/images/icons/chevron-left.svg');
}

.arrow-right {
    background-image: url('/assets/images/icons/chevron-right.svg');
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 22px;
}

@media screen and (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (min-width: 1140px) {
    .container {
        padding: 0 90px;
    }
}
