* {
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

body {
    max-width: 1300px;
    margin: 0 auto;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    background-color: #1e1d1b;
    color: #d9c89b;
    padding-top: 120px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #12110f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    text-align: center;
}

.header_container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.header_logo img {
    height: 41px;
    width: 100%;
    object-fit: contain;
}

.navigation {
    position: fixed;
    top: 60px; /* Под header */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 10px 0;
}

.nav_container {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #f9dd0e;
}

.nav-link.active {
    background-color: #4c440f;
    color: #f9dd0e;
    border-color: #f9dd0e;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }

    .nav_container {
        gap: 10px;
        padding: 10px;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.btn {
    border: 1px solid #f9dd0e;
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9dd0e;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #f9dd0e;
    }
    50% {
        box-shadow: 0 0 20px #f9dd0e;
    }
    100% {
        box-shadow: 0 0 5px #f9dd0e;
    }
}

.glowing {
    animation: glow 1.5s infinite alternate;
}

.button_1 {
    background-color: #f9dd0e;
}

.button_2 {
    background-color: transparent;
}

.button_2:hover {
    background-color: #f9dd0e;
}

h1 {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 30px;
    font-weight: bold;
}

@media (max-width: 768px) {
    h2 {
        font-size: 26px;
        margin-top: 10px;
    }
}

.main_container {
    position: relative;
    margin-top: 40px;
}

.main_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.photo {
    margin: 0 auto;
    width: 70%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .photo {
        width: 100%;
        margin-bottom: 20px;
    }
}

.main h1 {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .main h1 {
        margin-bottom: 20px;
    }
}

.block_txt {
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.block_txt span {
    font-size: 35px;
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .block_txt span {
        font-size: 24px;
    }
}

.block_txt p {
    color: #ffffff;
    font-size: 18px;
}

@media (max-width: 768px) {
    .block_txt p {
        font-size: 14px;
    }
}

.block_btn {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .block_btn {
        font-size: 14px;
    }
}

h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: left;
}

th {
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.header__aside--unauthorized {
    font-size: 12px;
    text-align: center;
    display: flex;
}

.form-button.yellow {
    background-color: #4c440f;
    border: 1px solid #f9dd0e;
    color: #f9dd0e;
    text-shadow: 1px 1px 0 #000;
}

.form-button {
    background-color: #1d4643;
    border: 1px solid #3ee6e0;
    border-radius: 4px;
    color: #3ee6e0;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: .05em;
    padding: 10px 30px;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 0 #000;
    text-transform: uppercase;
    transition: all .3s ease;
}

.sign__in {
    margin-left: 10px;
    margin-right: 26px;
}

.sign__login-button {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 16px 16px;
    font-size: 13px;
}

.form-button.yellow .form-button__border-icon {
    border: 1px solid #f9dd0e;
}

.form-button.yellow .form-button__border-icon:before {
    background-color: #f9dd0e;
}

.form-button__border-icon {
    background-color: #000;
    border: 1px solid #3ee6e0;
    border-radius: 50%;
    height: 13px;
    left: -7px;
    position: absolute;
    top: calc(50% - 7px);
    width: 13px;
    z-index: 1;
}

.form-button__border-icon:before {
    background-color: #3ee6e0;
    border-radius: 100% 0 0 100%/50% 0 0 50%;
    content: "";
    height: 7px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 4px;
    z-index: 2;
}

.form-button__border-icon--transparent {
    left: auto;
    right: -8px;
}

.form-button__border-icon--transparent:before {
    border-radius: 0 100% 100% 0/0 50% 50% 0;
    left: auto;
    right: 2px;
}

.footer--list {
    display: flex;
    flex-direction: column;
    gap: 16px 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 180px;
    flex-wrap: wrap;
}
.footer--link {
    color: #888887;
    font-size: 16px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.footer--partners__wrapper.secure-link {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 41px;
    justify-content: flex-start;
    margin: 30px 0;
}

footer .container {
    display: block;
}

@media (max-width: 768px) {
    .footer--list {
        text-align: center;
        margin: auto;
        max-height: none;
    }
    .footer--partners__wrapper.secure-link {
        justify-content: center;
        gap: 13px;
    }
}