:root {
    --color-white-100: #fff;
    --color-white-200: #e4e6e7;
    --color-white-300: #c9cccf;
    --color-white-400: #a1a6aa;
    --color-white-500: #798086;
    --color-black-100: #1f252e;
    --color-black-200: #181e26;
    --color-black-300: #12161c;
    --color-black-400: #0c0f13;
    --color-black-500: #060709;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    /*color: var(--color-white-100);*/
    color: var(--color-black-500);
}

main {
    overflow: hidden;
}
a, button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}
img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
.section {
    margin-inline: auto;
    padding-block: 4rem 2rem;
}


.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}
.btn-default {
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}
.btn-darker {
    color: var(--color-white-100);
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
}
.header {
    width: 100%;
    height: auto;
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
}

@media screen and (min-width: 48rem) {
    .navbar {
        grid-template-columns: 20% 60% 20%;
   }
}

.brand {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-white-100);
}
.wrapper {
    display: flex;
    justify-self: end;
    align-items: center;
    column-gap: 1.5rem;
    padding-block: 1rem;
}
@media screen and (min-width: 48rem) {
    .wrapper {
        order: 1;
   }
}
.menu {
    display: flex;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.2s linear;
}
.menu.is-visible {
    height: 13rem;
    margin-top: 1rem;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0px;
}
.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-white-100);
    transition: all 0.25s ease;
}

.menu-link:hover {
   color: #e67e22;
}

@media screen and (min-width: 48rem) {
    .menu {
        height: auto;
        align-items: center;
        justify-content: center;
        overflow: inherit;
   }
    .menu-inner {
        flex-direction: row;
        gap: 1.5rem;
   }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.6rem;
    height: 1rem;
    visibility: visible;
}
@media screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
   }
}
.burger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2.1px;
    transform: rotate(0deg);
    background-color: var(--color-white-100);
    transition: all 0.2s ease;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}
