﻿
:root {
    --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);
    --color: #c7232f;
    --color2: #161d27;
    --color2-dark: #0f131a;
}

*,
*::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 {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    transition: 0.35s;
}

    body.darkmode {
        color: #fff;
        background-color: var(--color2-dark);
    }

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.section {
    margin: 0 auto;
    padding: 6rem 0 2rem;
}

.container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.header {
    /* position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: transparent;
    /*box-shadow: var(--shadow-medium);*/
}

.darkmode .header {
    background-color: var(--color2);
}


.navbar .navbar__left {
    display: flex;
    align-items: center;
    flex: 0 0 17%;
}

@media (max-width: 766px) {
    .navbar .navbar__left {
        flex: 0 0 auto;
    }
}

.navbar .navbar__center {
    display: flex;
}

@media (max-width: 766px) {
    .navbar .navbar__center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
    }
}

.navbar .navbar__right {
    display: flex;
    flex: 0 0 17%;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

@media (max-width: 766px) {
    .navbar .navbar__right {
        flex: 0 0 auto;
        align-items: center;
    }
}

.brand {
    display: flex;
    align-items: center;
    order: 1;
}

    .brand svg {
        width: 60px;
        height: 60px;
    }

@media (max-width: 766px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 350px;
        max-width: 85%;
        height: 100%;
        z-index: 100;
        overflow: hidden;
        background-color: #fff;
        transform: translate(-100%);
        transition: all 0.4s ease-in-out;
    }

        .menu.is-active {
            transform: translate(0%);
        }

    .darkmode .menu {
        background-color: rgba(0, 0, 0, 0.6);
    }
}

.menu .menu__header {
    display: none;
    box-shadow: var(--shadow-medium);
}

@media (max-width: 766px) {
    .menu .menu__header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        /*background: transparent;*/
    }

        .menu .menu__header.is-active {
            visibility: visible;
            background-color: #fff;
        }

            .menu .menu__header.is-active > .menu__arrow {
                display: flex;
            }

    .darkmode .menu .menu__header.is-active {
        background-color: var(--color2);
    }
}

@media (max-width: 766px) {
    .menu .menu__header .menu__arrow {
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 3rem;
    }

        .menu .menu__header .menu__arrow:hover i {
            color: var(--color);
        }

        .menu .menu__header .menu__arrow > i {
            font-size: 1.5rem;
            color: #000;
            transition: all 0.25s ease;
        }

    .darkmode .menu .menu__header .menu__arrow > i {
        color: #fff;
    }
}

@media (max-width: 766px) {
    .menu .menu__header .menu__title {
        cursor: pointer;
        font-weight: 500;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease;
    }

        .menu .menu__header .menu__title:hover {
            color: var(--color);
        }

    .darkmode .menu .menu__header .menu__title {
        color: #fff;
    }
}

@media (max-width: 766px) {
    .menu .menu__inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.menu .menu__inner .menu__item {
    position: static;
    display: inline-block;
    padding-right: 20px;
    padding: 15px 20px 15px 0;
}

    .menu .menu__inner .menu__item:last-child {
        padding-right: 0;
    }

    .menu .menu__inner .menu__item:hover > .menu__link {
        color: #ff9f43;
    }

.darkmode .menu .menu__inner .menu__item:hover > .menu__link {
    color: #ff9f43;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item {
        display: block;
        padding: 0;
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item:hover > .menu__link i {
        transform: rotate(-90deg);
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
        opacity: 1;
        visibility: visible;
        top: 95%;
    }
}

.menu .menu__inner .menu__item .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
    /* color:  white !important;*/
    text-transform: capitalize;
    transition: all 0.25s ease;
    font-style: normal;
    font-size: 17px;
    line-height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item .menu__link {
        justify-content: space-between;
        padding: 10px;
        color: black;
    }
}

.menu .menu__inner .menu__item .menu__link > i {
    margin-left: 5px;
    font-size: 1.35rem;
    transform: rotate(90deg);
    transition: 0.35s;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item .menu__link > i {
        margin-left: 10px;
        transform: rotate(0deg);
    }
}

.darkmode .menu .menu__inner .menu__item .menu__link {
    color: #fff !important;
}

.menu .menu__inner .menu__item .menu__link {
    color: #000 !important;
}


.submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-radius: 0.25rem;
    border-top: 2px solid #ff9f43;
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);
}

.darkmode .submenu {
    border-top: 2px solid #ff9f43;
    background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 766px) {
    .darkmode .submenu {
        border-top: 2px solid #ff9f43;
        background-color: rgba(0, 0, 0, 1);
    }
}


@media (max-width: 766px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 100px 15px 0 15px;
        border-radius: 0;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
    }

        .submenu.is-active {
            display: block;
        }
}

@media (min-width: 767px) {
    .submenu {
        -webkit-animation: none !important;
        animation: none !important;
    }
}

@media (min-width: 767px) {
    .submenu.megamenu__normal {
        left: 65%;
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

@media (min-width: 767px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        display: flex;
        flex-wrap: wrap;
        max-width: 95%;
        height: auto;
        margin: 0 auto;
    }
}

@media (min-width: 975px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        max-width: 1225px;
    }
}

.submenu.megamenu__image .submenu__inner a {
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media (max-width: 766px) {
    .submenu.megamenu__image .submenu__inner a {
        flex-flow: row;
        align-items: center;
        padding-bottom: 20px;
    }
}

.submenu.megamenu__image .submenu__inner a img {
    display: block;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 766px) {
    .submenu.megamenu__image .submenu__inner a img {
        width: 30%;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

.submenu .submenu__inner {
    width: 25%;
    padding: 0 15px;
}

@media (max-width: 766px) {
    .submenu .submenu__inner {
        width: 100%;
        padding: 0;
    }
}

.submenu .submenu__inner .submenu__title {
    font-size: 16px;
    font-weight: 500;
    color: #ff9f43;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.darkmode .submenu .submenu__inner .submenu__title {
    color: #ff9f43;
}

@media (max-width: 766px) {
    .submenu .submenu__list {
        margin-bottom: 20px;
    }
}

.submenu .submenu__list li {
    display: block;
    line-height: 1;
    margin: 0 auto;
    font-weight: 400;
}

    .submenu .submenu__list li a {
        width: 100%;
        display: inline-block;
        padding: 10px 0;
        color: #000;
        transition: all 0.25s ease-in-out;
        font-size: 15px;
    }

        .submenu .submenu__list li a:hover {
            color: #ff9f43;
            background: rgb(255 159 67 / 10%);
        }

@media (max-width: 766px) {
    .submenu .submenu__list li a {
        display: block;
    }
}

.darkmode .submenu .submenu__list li a {
    color: #fff;
}

    .darkmode .submenu .submenu__list li a:hover {
        background: rgba(0, 0, 0, 0.6);
    }

.switch {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 10px;
}

    .switch .switch__light,
    .switch .switch__dark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease-in;
    }

    .switch .switch__light {
        font-size: 20px;
        visibility: visible;
        color: #000;
    }

.darkmode .switch .switch__light {
    font-size: 0;
    visibility: hidden;
}

.switch .switch__dark {
    font-size: 0;
    visibility: hidden;
    color: #fff;
}

.darkmode .switch .switch__dark {
    font-size: 20px;
    visibility: visible;
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}

@media (max-width: 766px) {
    .overlay {
        cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
        pointer-events: visible;
    }

        .overlay.is-active {
            opacity: 1;
            visibility: visible;
        }
}

/*.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 15px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}
*/
@media (max-width: 766px) {
    .burger {
        opacity: 1;
        visibility: visible;
    }
}

.burger .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: #fff;
}

.darkmode .burger .burger-line {
    background: #000;
}

.burger .burger-line:nth-child(1) {
    top: 0px;
}

.burger .burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}

.burger .burger-line:nth-child(3) {
    top: 16px;
}

:root {
    --color-white-100: hsl(0, 0%, 100%);
    --color-white-200: hsl(0, 0%, 95%);
    --color-white-300: hsl(0, 0%, 85%);
    --color-white-400: hsl(0, 0%, 75%);
    --color-white-500: hsl(0, 0%, 65%);
    --color-white-600: hsl(0, 0%, 55%);
    --color-black-100: hsl(210, 17%, 12%);
    --color-black-200: hsl(210, 17%, 10%);
    --color-black-300: hsl(210, 16%, 8%);
    --color-black-400: hsl(210, 16%, 6%);
    --color-black-500: hsl(210, 15%, 4%);
    --color-black-600: hsl(210, 15%, 2%);
    --color-blue-100: hsl(212, 96%, 60%);
    --color-blue-200: hsl(213, 94%, 55%);
    --color-blue-300: hsl(217, 91%, 50%);
    --color-blue-400: hsl(221, 83%, 45%);
    --color-blue-500: hsl(224, 76%, 40%);
    --color-blue-600: hsl(226, 71%, 35%);
    --text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
    --text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
    --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
    --text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
    --text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
    --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;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    font-style: normal;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: 'Be Vietnam Pro';
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
}

main,
section {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    border: none;
    outline: none;
    color: inherit;
    background: none;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.15;
    text-wrap: auto;
    word-wrap: break-word;
}

/*p {
    max-width: 50ch;
}*/

p,
li {
    text-wrap: pretty;
    line-height: inherit;
    word-wrap: break-word;
}

img,
svg,
picture,
video {
    font-style: italic;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    shape-margin: 1rem;
    vertical-align: middle;
}

img,
svg {
    background-size: cover;
    background-repeat: no-repeat;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.section {
    margin-inline: auto;
    margin-block: 5rem 2rem;
}

.container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-tiny {
    font-size: var(--text-tiny);
}

.text-small {
    font-size: var(--text-small);
}

.text-base {
    font-size: var(--text-base);
}

.text-medium {
    font-size: var(--text-medium);
}

.text-large {
    font-size: var(--text-large);
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semi {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.btn {
    display: inline-flex;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    align-items: center;
    justify-content: center;
    vertical-align: baseline;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    white-space: nowrap;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.25s ease;
}

.btn-default {
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.btn-darken {
    color: var(--color-white-100);
    background-color: var(--color-black-500);
    box-shadow: var(--shadow-medium);
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-blue-300);
}

.navbar {
    width: 100%;
    margin-inline: auto;
}

.navbar-inner {
    display: flex;
    align-items: center;
/*    justify-content: space-between;*/
    max-width: 100%;
    height: 100%;
}

.navbar-block {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: var(--color-white-100);
    transition: opacity 0.4s ease;
}

    .navbar-block.is-active {
        opacity: 1;
        pointer-events: initial;
    }

@media screen and (min-width: 62rem) {
    .navbar {
        display: flex;
        align-content: flex-start;
    }

    .navbar-block {
        position: initial;
        height: initial;
        opacity: 1;
        overflow: auto;
        pointer-events: visible;
        background: none;
        transition: none;
    }
}

.menu {
    padding-block: 1rem;
    padding-inline: auto;
}

.menu-link {
    font-size: var(--text-base);
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: var(--color-black-500);
    transition: color 0.3s ease;
}

@media screen and (min-width: 62rem) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        height: 100%;
        padding: unset;
    }

    .menu-item {
        display: flex;
        cursor: pointer;
        padding-inline: 0.5rem;
    }

    .menu-link {
        padding: unset;
    }
}

.pointer {
    cursor: pointer;
}
.dropdown-toggle {
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .dropdown-toggle i.bx {
        font-size: 1.5rem;
        line-height: inherit;
        transition: rotate 0.4s ease;
    }

.dropdown-content {
    height: 0;
    overflow: hidden;
    background-color: var(--color-white-100);
    transition: height 0.5s ease;
}

    .dropdown-content .active {
        background: #ff9f43;
    }

    .dropdown-column, .dropdown-group, .dropdown-items {
        display: grid;
    }

.dropdown-group {
    padding-bottom: 1rem;
    padding-inline: 1.5rem;
}

.dropdown-title {
    display: flex;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    align-items: center;
    padding-inline: 1rem;
}

.dropdown-icon i.bx {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-blue-300);
}

.dropdown-items {
    row-gap: 0.5rem;
    padding-inline: 3.5rem;
    padding-top: 0.35rem;
}

.dropdown-link {
    font-size: var(--text-base);
    font-weight: 400;
    line-height: inherit;
    color: var(--color-black-500);
    transition: color 0.3s ease;
}

.dropdown-show > .dropdown-toggle i.bx {
    rotate: 180deg;
}

.dropdown-block {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-inline: 1rem;
}


.dropdown-toggle {
    -moz-column-gap: 0.35rem;
    column-gap: 0.35rem;
    pointer-events: none;
}

.dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--color-white-100);
    border-top: 2px solid var(--color-white-200);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
}

.dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
}

.dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 4rem;
}

    .dropdown-group:first-child, .dropdown-group:last-child {
        margin: unset;
    }

.dropdown-items {
    padding-top: unset;
}

.dropdown-block {
    padding-top: unset;
    padding-inline: unset;
}

.dropdown:hover > .dropdown-content {
    cursor: initial;
    top: 2.25rem;
    opacity: 1;
    pointer-events: initial;
}

.dropdown:hover > .dropdown-toggle i.bx {
    rotate: 180deg;
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-right: 10px;
    visibility: visible;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.15px;
    opacity: 1;
    rotate: 0deg;
    border-radius: 0.15rem;
    background-color: var(--color-black-500);
    transition: all 0.3s 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;
    rotate: 135deg;
}

.burger.is-active > .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.is-active > .burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

@media screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }
}
