@charset "UTF-8";.reglament {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px auto;
            max-width: 1200px;
            padding: 0 15px;
            flex-direction: row;
        }
        
        .item-button {
            flex: 1;
            min-width: 150px;
            width: 100%;
            max-width: 300px;
            background: #d9dedf;
            background: radial-gradient(circle at top center, #808080, #000000);
            /* background: linear-gradient(to bottom, #01101c 25%, #8ce3ff 50%, #01101c 75%); */
            border-radius: 8px;
            padding: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            /* transition: all 0.7s; */
        }    

        
        .item-button h2 {
            font-size: 18px;
            margin-top: 0;
            color: gold;
            text-align: center;
        }
        
        .item-button input[type="button"] {
            background: transparent;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            width: 100%;
            transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
            box-shadow: none;
        }
        
        .item-button input[type="button"]:hover {
            background: transparent;
            color:#ffe200;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: linear-gradient(to bottom, #8ce3ff, #01101c 50%, #8ce3ff);            
        }
        
        /* Стили для аккордеонов */
        .services-spec {
            display: none;
            position: fixed;
            top: 15%;
            left: 0;
            right: 0;
            bottom: 0;
            background: #f2f2f2;
            background: url(/fon/fon_doc.webp) center no-repeat;
            background-size: cover;
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            height: 80vh;
            width: 80vw;
            border: 8px solid black;
        }
        .accordion-container h2 {
            margin: 10px 0;
            padding:0;
            font: bold 20px / 24px Roboto;
}
        
        .accordion-container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            height: auto;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            /* border: 1px solid #e0e0e0; */
            /* border-radius: 8px; */
            overflow: hidden;
            /* box-shadow: 5px 9px 6px 2px rgb(128 128 128 / 56%); */
        }
        
        .accordion-header {
            width: 50%;
            height: 60px;
            margin: 0 auto;
            padding: 15px 20px;
            text-align: left;
            background-color: black;
            color: gold;
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .accordion-header:hover {
             color:silver
        }
        
        .accordion-header::after {
            content: '+';
            font-size: 24px;
            transition: transform 0.3s;
        }
        
        .accordion-header.active::after {
            content: '-';
        }
        .close-accordion .accordion-header {
             width:150px;
             font-size:14px;
             line-height: 28px;
             height: auto;
             padding: 4px;
             justify-content: space-evenly;
             flex-direction: row;
        }
        .close-accordion .accordion-header::after {
            content: 'X';
            font-size:16px
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.8s ease-out;
            padding: 0 20px;
            background: rgb(192 192 192 / 38%);
            background: url(/webp/grey.webp) center;
        }
        .accordion-content p {
            text-align:left;
            padding: 5px;
            font:normal 18px / normal IstokWeb;
        }
        .accordion-content-inner {
            padding: 20px 0;
        }
        
        /* Стили для контента аккордеона */
        .accordion-content h3 {
            color: #2c3e50;
            margin: 20px 0 0;
            padding: 4px;
            line-height: 24px;
            background: black;
            color: white;
            text-align: center;
        }
        
        .accordion-content h4, .accordion-content h5 {
            color: #34495e;
            margin: 10px 0;
        }
        
        .accordion-content ul {
            padding-left: 20px;
        }
        
        .accordion-content li {
            margin-bottom: 8px;
        }
        
        .accordion-content a {
            color: #3498db;
            text-decoration: none;
            font: normal 16px / normal Comfortaa;
        }
        
        .accordion-content a:hover {
            text-decoration: underline;
        }
        
        /* Кнопка закрытия */
        .close-btn {
            text-align: center;
            margin-top: 30px;
        }
        
        .close-btn input[type="button"] {
            background: black;
            color: gold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
            width: auto;
            margin: 0 auto;
        }
        
        .close-btn input[type="button"]:hover {
             color:silver
        }
        
        /* Анимации 
        [data-animated] {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease-out;
        }
        
        [data-animated].animated {
            opacity: 1;
            transform: translateY(0);
        }*/
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .reglament {
                flex-direction: column;
            }
            
            .item-button {
                margin: 0 auto;
                text-align: center;
            }
            .accordion-header {
                font: bold 18px / normal Arimo;
                width: 100%;
            }
        }
.fixed-class, .body-fixed {
    overflow: hidden!important;
    position: fixed;
    width: 100%;
    height: 100%;
}