/* Переменные */
:root {
    --fz-label: 117px;
    --fz-heading: 78px;
    --fz-heading-2: 55px;
    --fz-heading-3: 24px;
    --fz-heading-4: 18px;
    --fz-heading-5: 16px;

    --color-black: #000;
    --color-white: #fff;

    --width-container: 360px;
    --gutter: 20px;
}

@media screen and (min-width: 768px) {
    :root {
        --width-container: 768px;
        --gutter: 40px;
    }
}

@media screen and (min-width: 1440px) {
    :root {
        --width-container: 1440px;
    }
}

/* Базовая разметка */
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/roboto/roboto-regular.woff2") format("woff2");
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    height: 100%;
}

body {
    position: relative;

    min-width: var(--width-container);
    min-height: 100%;

    color: var(--color-black);
    font-family: "Roboto", Arial, sans-serif;
    font-size: var(--fz-heading-5);
    line-height: 1.5;

    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    border: 0;

    clip: rect(0,0,0,0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
}

.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.notice {
    margin: 0;
    padding: 10px;

    color: white;
    text-align: center;

    background-color: black;
}

.notice a {
    color: yellow;
}

.notice a:hover,
.notice a:focus {
    text-decoration: none;
}

/* Шапка сайта */
nav {
            background-color: #0056b3;
            padding: 10px 0;
            position: relative;
	    min-height:60px;
        }
        .menu {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .menu li {
            margin: 5px 10px;
        }
        .menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        .menu a:hover {
            text-decoration: underline;
        }
        h1 {
            text-align: center;
            color: #0056b3;
            margin-top: 20px;
        }
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .contact-item {
            flex: 1 1 calc(50% - 20px);
            background-color: #fff;
            padding: 20px;
            margin: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .contact-item h2 {
            color: #0056b3;
        }
        .contact-item p {
            margin: 10px 0;
        }
        .map {
            margin: 20px 0;
            text-align: center;
        }
        .map iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .contact-item a {
            color: #0056b3;
            text-decoration: none;
        }
        .contact-item a:hover {
            text-decoration: underline;
        }

        /* Стили для футера */
        footer {
            background-color: #0056b3;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: auto;
        }
        footer p {
            margin: 0;
            font-size: 14px;
        }
        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }
        footer a:hover {
            text-decoration: underline;
        }

        /* Скрываем меню на мобильных устройствах */
        .menu {
            flex-direction: row;
            align-items: center;
        }
        .burger {
            display: none;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 15px;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Оптимизация для мобильных устройств */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .menu {
                display: none;
            }
            .menu.active {
                display: flex;
            }
	 .menu {
            flex-direction: column;
            align-items: center;
        }
        }

        @media (max-width: 480px) {
            .container {
                width: 100%;
                padding: 10px;
            }
            .menu a {
                font-size: 14px;
            }
            .contact-item {
                padding: 15px;
            }
            .map iframe {
                height: 300px;
            }
            footer p {
                font-size: 12px;
            }
        }
 .vacancy-list {
            margin: 20px 0;
        }
        .vacancy-item {
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        .vacancy-item h2 {
            color: #0056b3;
        }
        .vacancy-item p {
            margin-bottom: 10px;
        }
        .apply-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0056b3;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .apply-btn:hover {
            background-color: #003f82;
        }