@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* korean */
/* {
font-family: "Noto Sans KR", serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
} */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", serif;
    font-size: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-height: 100vh;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

main {
    display: flex;
    max-width: 100%;
    margin-bottom: 50px;
}

.logo:hover {
    transform: scale(1.5);
}

.lk {
    width: 54px;
    height: 54px;
}

.lk:hover {
    transform: scale(1.5);
    border-radius: 100px solid rgb(49, 36, 105);
}

header .container {
    max-width: 100%;
    font-family: "Montserrat", serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c8ba8d;
    padding: 20px 110px;
    margin-bottom: 50px;
    flex-direction: row;
}

.nav-header {
    display: flex;
    align-items: center;
}

.ul-header {
    display: flex;
    list-style: none;
    gap: 45px;
}

.li-header {
    display: flex;
}

.a-header {
    color: hsla(47, 18%, 20%, 0.814);
    text-decoration: none;
    font-size: 18px;
}

.a-header:hover {
    color: rgb(4, 1, 48);
}

h1:hover {
    color: rgb(4, 1, 48);
}

footer {
    background-color: #c8ba8d;
}

.footer *p {
    color: hsla(47, 18%, 20%, 0.814);
}

.footer p:hover {
    color: rgb(4, 1, 48);
    font-size: 18px;
}

.footer1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mail,
.tel,
.footer-icon,
.copyright {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tel img {
    width: 10px;
    height: 10px;
}

.footer-icon img {
    width: 36px;
    height: 36px;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer2 {
    display: flex;
    gap: 20px;
}

.nav1-footer ul {
    display: flex;
    list-style: none;
    padding: 10px;
    flex-direction: column;
}

.a-footer:hover {
    color: rgb(4, 1, 48);
}

.a-footer {
    color: hsla(47, 18%, 20%, 0.814);
    text-decoration: none;
    font-size: 12px;
}

.copyright {
    gap: 3px;
    font-size: 14px;
}

#copyright {
    height: 20px;
    width: 20px;
}

.perehod img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 1px solid rgb(49, 36, 105);
}

.perehod>a:hover {
    transform: scale(1.5);
}

.perehod {
    display: flex;
    justify-content: space-between;
    padding: 0 120px;
    margin-bottom: 20px;
}

.container {
    max-width: 1288px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 20px;
    margin-bottom: 40px;
}

.text {
    display: flex;
    gap: 20px;
    width: 100%;
}

.left-panel,
.right-panel {
    flex: 1;
    border: 2px solid #041c35;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.left-panel{
    font-family: "Noto Sans KR", serif;
font-weight: 600;
    font-size: 18px;
}

article {
    text-align: center;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.player img {
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.nextButton,
.beforeButton {
    position: absolute;
    bottom: 20px;
}

.nextButton {
    right: 20px;
}

.beforeButton {
    left: 20px;
}

.nextButton button,
.beforeButton button {
    background: none;
    border: none;
    cursor: pointer;
}

.nextButton img,
.beforeButton img {
    width: 30px;
    height: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #f0f0f0;
}

table td {
    cursor: pointer;
}

table td.highlight {
    background-color: #ffeb3b;
}

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #333;
}

.nav-burger {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    width: 25%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-burger .ul-header {
    flex-direction: column;
    gap: 10px;
}

/* Адаптация для экранов меньше 1100px */
@media (max-width: 1100px) {
    .text {
        flex-direction: column;
        gap: 50px;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        max-width: 800px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-header {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    header .container {
        padding: 20px;
    }

    .logo {
        margin: 0 auto;
    }

    .lk {
        margin-left: auto;
    }
}

/* Адаптация для экранов меньше 1000px */
@media (max-width: 1000px) {
    .left-panel,
    .right-panel {
        max-width: 100%;
    }
}