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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.banner-height {
    height: 500px;
}

@media (max-width: 640px) {
    .banner-height {
        height: 24rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, 
a {
    transition: all 0.3s ease;
}

input, 
textarea, 
select {
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-menu-dropdown {
    position: fixed;
    top: 80px;
    right: 1rem;
    width: 280px;
    z-index: 50;
}