* {
    margin: 0;
    padding: 0;
    /* list-style-type: none; */
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

.container {
    margin: 0 auto;
    padding: 0px 30px;
}

.header {
    top: 0;
    width: 100%;
    z-index: 1111;
    position: sticky;
    padding: 20px 0px;
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
}

.footer {
    padding: 20px 0px;
    border-top: 1px solid #e6e6e6;
}

.header .header__row {
    display: flex;
    justify-content: space-between;
}

.menu .menu-list__link {
    display: block;
    color: black;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.menu .menu-list__item {
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

.menu-list__item:after {
    content: '';
    width: 100%;
    left: -100%;
    bottom: 0px;
    height: 1.5px;
    display: block;
    position: absolute;
    background-color: #000000;
    transition: left 0.2s linear;
}

.menu-list__item:hover:after {
    left: 0;
}

.accordion .accordion-item {
    border-bottom: 1px solid #000000;
}

.accordion button {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 25px 30px;
    font-weight: 400;
    font-size: 22px;
    text-align: left;
}

.accordion .accordion-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    stroke: #000000;
    transition: transform 0.2s linear;
}

.accordion .accordion-content {
    padding: 0px 30px;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button[aria-expanded='true'] .accordion-icon {
    transform: rotate(180deg);
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 60em;
    padding-bottom: 25px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    will-change: opacity, max-height;
    transition: opacity 200ms linear, max-height 200ms linear;
}

.overflow-hidden {
    overflow: hidden !important;
}

.burger-button {
    display: none;
}

.burger-checkbox {
    position: absolute;
    visibility: hidden;
}

.burger-button {
    height: 26px;
}

.burger {
    cursor: pointer;
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 40px;
    height: 100%;
}

.burger::before,
.burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #000;
}

.burger::before {
    top: 0;
    box-shadow: 0 11px 0 #000;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}

.burger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
}

.burger-checkbox:checked+.burger::before {
    top: 12px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
}

.burger-checkbox:checked+.burger::after {
    bottom: 11px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}

@media (max-width: 768px) {

    .burger-button {
        display: block;
    }

    .container {
        padding: 0px 15px;
    }

    .accordion button {
        padding: 15px 0;
        font-size: 18px;
    }

    .accordion .accordion-content {
        padding: 0px 0px;
    }

    .menu {
        top: 68px;
        width: 100%;
        right: -100%;
        height: 100%;
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        transition: right 0.2s linear;
    }

    .menu.menu--active {
        right: 0;
    }

    .menu ul {
        gap: 0;
        display: flex;
        margin-top: -100px;
        flex-direction: column;
    }

    .menu ul li {
        padding: 10px 0px;
    }
}