.header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 80px;
    width: calc(100% - 40px);
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

.header--inner.header {
    position: relative;
    background: #1A1A1A;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 14px;
    box-sizing: border-box;
    margin: 0 auto;
    width: calc(100% - 65px);
    left: unset;
    transform: unset;
    max-width: 100%
}


.footer {
    background: #1A1A1A;
    color: var(--color-white);
    padding: 40px 191px 30px;
}

.breadcrumbs {
    padding: 20px 0px 0px 20px;
}

.footer__nav {
    flex-wrap: wrap;
}

.modal__form-submit:hover {
    color: white;
}

@media (max-width: 768px) {
    .header--inner.header {
        width: calc(100% - 30px)!important;
  }
}

@media (max-width: 420px) {
    .header--inner.header {
        width: calc(100% - 20px)!important;
    }

    .breadcrumbs {
        padding: 0px 0px 0px 20px;
        margin-top: unset!important;
     }
}