.header-navigation {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.responsive-navigation {
    display: none;
    padding: 10px 0;
}

.responsive-navigation .logo {
    height: 60px;
}

.responsive-navigation .logo img {
    max-height: 100%;
}

.responsive-navigation .btn-menu {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    padding-top: 20px;
    width: 40px;
    cursor: pointer;
}

.responsive-navigation .btn-menu span:nth-child(1),
.responsive-navigation .btn-menu span:nth-child(2),
.responsive-navigation .btn-menu span:nth-child(3) {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--color-grey);
    position: absolute;
    left: 0;
    transition: .3s linear;
}
.responsive-navigation .btn-menu span:nth-child(4){
    color:var(--color-grey);
}

.responsive-navigation .btn-menu span:nth-child(1) {
    top: 0;
}

.responsive-navigation .btn-menu span:nth-child(2) {
    top: 7px;
}

.responsive-navigation .btn-menu span:nth-child(3) {
    top: 14px;
}

.responsive-navigation .btn-menu:hover span:nth-child(1),
.responsive-navigation .btn-menu:hover span:nth-child(2),
.responsive-navigation .btn-menu:hover span:nth-child(3) {
    background: var(--color-red);
}

.responsive-navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-responsive {
    display: none;
    opacity: 0;
    z-index: -1;
    transition: ease-in-out .15s;
    pointer-events: none;
}

.panel-responsive.open {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .8);
    height: 100%;
    width: 100%;
    pointer-events: initial;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 950;

}

.panel-responsive .panel-container {
    height: 100%;
    width: 100%;
    max-width: 410px;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-white);
    transform: translateX(75px);
    opacity: 0;
    transition: ease-in-out .15s;
}

.panel-responsive.open .panel-header {
    height: 80px;
}

.panel-responsive.open .panel-container {
    transform: translateX(0);
    opacity: 1;

}

.panel-responsive .panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 25px 0 0;
}

.panel-responsive .panel-header .btn-menu--close {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    padding-top: 20px;
    width: 40px;
    cursor: pointer;
}

.panel-responsive .panel-header .btn-menu--close span:nth-child(1),
.panel-responsive .panel-header .btn-menu--close span:nth-child(2) {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--color-grey);
    position: absolute;
    left: 0;
    transition: .3s linear;
}

.panel-responsive .panel-header .btn-menu--close span:nth-child(1) {
    top: 0;
    transform: rotate(45deg);
    transform-origin: center center;
}

.panel-responsive .panel-header .btn-menu--close span:nth-child(2) {
    top: 0;
    transform: rotate(-45deg);
    transform-origin: center center;
}

.panel-responsive .panel-header .btn-menu--close span:nth-child(3) {
    font-size: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color:var(--color-grey);
}

.panel-responsive .panel-content {
    height: calc(100% - 80px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding: 0 25px;
}

.panel-responsive .panel-content .mobile-navigation {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap:8px;
}
.panel-responsive .panel-content .mobile-navigation li {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}
.panel-responsive .panel-content .mobile-navigation a {
    font-size: 24px;
    line-height: 32px;
    text-decoration: none;
    color: var(--color-grey);
    width: 100%;
    text-align: right;

}

.panel-responsive .panel-content .mobile-navigation .sub-menu {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap:8px;
    margin: 8px 0;
}
.panel-responsive .panel-content .mobile-navigation .sub-menu a {
    font-size:20px;
}
.panel-responsive .networks {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 32px 0 0 0;
}

.panel-responsive .networks .btn-network {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out .15s;
}

.panel-responsive .networks .btn-network:hover {
    background: var(--color-red);
}

.panel-responsive .networks .btn-network svg {
    width: 14px;
}

.panel-responsive .networks .btn-network svg * {
    fill: var(--color-red);
    transition: ease-in-out .15s;
}

.panel-responsive .networks .btn-network:hover svg * {
    fill: var(--color-white);
}

.panel-responsive .networks .btn-facebook svg {
    width: 10px;
}

.panel-responsive .networks .btn-instagram svg {
    width: 15px;
}

.panel-responsive .networks .btn-linkedin svg {
    width: 14px;
}

@media all and (max-width: 750px) {
    .main-navigation {
        display: none;
    }

    .responsive-navigation {
        display: block;
    }

}
