/* Общие стили */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

:root {
 --color1: #006aa5;
 --color2: #24baa6;
 --color3: #e3eaf4;
 --color4: #62666b;
 
 --transition: 0.3s ease-in-out;
}

html {
 font-size: 15px;
}

body {
 font-family: 'Noto Sans', serif;
 color: var(--color1);
 background-color: white;
 hyphens: auto;
 hyphenate-limit-chars: 4 3 3;
 hyphenate-limit-lines: 2;
 hyphenate-limit-last: always;
 -webkit-hyphens: auto;
 -moz-hyphens: auto;
 -ms-hyphens: auto;
}

.moder-block {
 position: fixed;
 top: 110px;
 right: 0;
 z-index: 2000px!important;
}

h1 {
 font-family: 'Geologica', sans-serif;
 color: var(--color1);
 text-transform: uppercase;
 font-size: 1.6rem;
 padding: 15px 0 10px;
}

h2 {
 font-family: 'Geologica', sans-serif;
 color: var(--color1);
 font-size: 1.4rem;
 font-weight: 500;
 padding: 15px 0 10px;
 letter-spacing: -0.3px;
}

h3 {
 font-family: 'Geologica', sans-serif;
 color: var(--color1);
 font-size: 1.1rem;
 font-weight: 500;
 padding: 15px 0 10px;
 letter-spacing: -0.3px;
}

p {
 font-family: 'Noto Sans', serif;
 font-size: 1rem;
 padding: 0 0 10px;
 text-align: justify;
}

a {
 font-size: 1rem;
 text-decoration: none;
 transition: color 0.3s ease;
 color: var(--color2);
}

a:visited {
 color: var(--color2);
}

a:hover {
 color: #24baa6;
 text-decoration: none;
}

b, strong {
 font-weight: 600;
}

sup {
 color: #24baa6;
 font-weight: 600;
 font-size: 75%; /* Уменьшаем размер шрифта */
 line-height: 0; /* Обнуляем высоту строки для подстрочного элемента */
 position: relative; /* Для позиционирования */
 vertical-align: baseline; /* Выравнивание по базовой линии */
 top: -0.5em; /* Сдвигаем вниз */
 left: 2px;
 right: 2px;
}

iframe {
 width: 100%;
}

img {
 border-radius: 15px;
}

ul {
 list-style-type: none;
 margin: 0 0 10px 6px;
 text-align: left;
}

ol {
 margin-left: 0px;
 padding-left: 2px;
}

ul > li {
 padding-left: 10px;
 margin: 0 0 5px;
}

ul > li::marker {
 content: "›";
 font-weight: 700;
 color: var(--color1);
}

ul > li:last-of-type {
 margin-bottom: 10px;
}

.form-fields li::marker{
 content: "";
}

.uComForm-inner li::marker{
 content: "";
}

hr {
 border: 0;
 border-bottom: 1px solid #e8f6ff;
 margin: 10px 0;
}

button {
 display: inline-block;
 padding: 6px 10px;
 color: #fff;
 font-size: 1rem;
 background-color: var(--color1);
 border: none;
 border-radius: 10px;
 cursor: pointer;
 transition: background-color 0.3s ease;
 text-decoration: none;
}

button:hover {
 background-color: #24baa6;
}

button.active {
 background-color: #24baa6;
}

.a-but {
 display: inline-block;
 background-color: var(--color1);
 border: none;
 border-radius: 15px;
 cursor: pointer;
 transition: background-color 0.3s ease;
 text-decoration: none!important;
 font-family: 'Geologica', sans-serif; 
 color: #fff!important; 
 font-weight: bold; 
 text-transform: uppercase; 
 text-decoration: none; 
 font-size: 1rem; 
 padding: 10px 20px;
 margin: 15px 0;
}

.a-but:hover {
 background-color: #24baa6;
}

.a-but.active {
 background-color: #24baa6;
}

iframe {
 border: 0;
}

.iframe-mask {
 width: 100%;
 height: 400px; /* высота видимой области */
 overflow: hidden; /* обрезаем всё лишнее */
 position: relative;
}

.iframe-mask iframe {
 width: 100%;
 height: 1200px;
 border: none;
 position: absolute;
 top: -525px;
 left: 0;
}

.content {
 display: flex;
 flex-direction: column;
 width: 100%;
 max-width: 1600px;
 margin-left: auto;
 margin-right: auto;
}

.content-container {
 padding: 10px 10%;
}

section {
 display: flex;
 flex-direction: column;
 padding: 24px 0;
}

section:first-of-type {
 padding: 0 0 24px; 
}

article {
 display: flex;
 justify-content: space-between;
 flex-direction: row;
 margin-top: 2rem;
}

article h1 {
 padding-top: 0;
}

details {
 background: #fff;
 border: 1px solid #e3eaf4;
 border-radius: 15px;
 overflow: hidden;
 margin: 5px 0;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

summary {
 list-style: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 
 padding: 1rem 1.25rem;
 font-family: 'Geologica', sans-serif;
 font-size: 1.1rem;
 font-weight: 500;
 color: var(--color-text-1);
 background: none;
 
 transition: background var(--transition);
}

summary:hover {
 background: #e3eaf4;
}

summary::-webkit-details-marker {
 display: none;
}

summary::after {
 content: '';
 width: 10px;
 height: 10px;
 flex-shrink: 0;
 
 background-image: url('/img/logo/check.png');
 background-size: contain;
 background-repeat: no-repeat;
 
 transition: transform var(--transition);
}

details[open] > summary::after {
 transform: rotate(180deg);
}

details[open] > summary {
 background: #e3eaf4;
}


details > div {
 display: grid;
 grid-template-rows: 0fr;
 transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
 opacity: 0;
}

details > div > * {
 overflow: hidden;
}

details[open] > div {
 grid-template-rows: 1fr;
 opacity: 1;
 padding: 1rem 1.25rem;
 border-top: 1px solid #e3eaf4;
}

blockquote {
 border-left: 3px solid #24baa6;
 padding: 15px 40px;
 margin: 15px 0;
 font-style: italic;
 line-height: 1.3;
 position: relative;
}

blockquote::before {
 content: '“';
 font-family: 'Geologica', sans-serif;
 background-color: #fff;
 font-style: normal;
 font-weight: bold;
 font-size: 2rem;
 line-height: 1;
 position: absolute;
 top: 0;
 left: 15px;
 margin: 0;
 color: #24baa6;
}

blockquote::after {
 content: '„';
 font-family: 'Geologica', sans-serif;
 background-color: #fff;
 font-style: normal;
 font-weight: bold;
 font-size: 2rem;
 position: absolute;
 bottom: 0;
 right: 15px;
 margin: 0;
 color: #24baa6;
}

blockquote p {
 margin-bottom: 0;
}

blockquote footer {
 position: relative;
 text-align: left;
 font-weight: normal;
 font-size: 0.8em;
 color: #666;
 margin-bottom: 2.5px;
 padding: 5px 15px 0;
}

blockquote footer::before {
 content: '—';
 position: absolute;
 left: 0;
}

.more {
 display: inline-flex;
 align-items: center;
 width: max-content;
 padding: 0.5rem 1rem;
 margin-left: auto;
 margin-bottom: auto;
 color: var(--color1);
 font-size: 0.8rem;
 font-weight: 500;
 border: 1px solid var(--color3);
 border-radius: 10px;
 box-sizing: border-box;
 cursor: pointer;
 transition: all var(--transition);
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.more::after {
 content: '';
 width: 8px;
 height: 8px;
 flex-shrink: 0;
 
 margin-left: 5px;
 
 background-image: url('/img/logo/check.png');
 background-size: contain;
 background-repeat: no-repeat;
 transform: rotate(-90deg);
 
 transition: transform var(--transition);
}

.more:visited {
 color: var(--color1);
}

.more:hover {
 border: 1px solid #24baa6;
 color: var(--color2);
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.more:hover::after {
 background-image: url('/img/logo/check1.png');
 transition: transform var(--transition);
}

table {
 width: 100%;
 border-collapse: collapse;
 border: none;
 font-size: 0.9rem;
 text-align: left;
 margin: 10px 0;
}

table p {
 font-size: 0.9rem;
 padding-bottom: 5px;
 text-align: center;
}

table p:last-of-type {
 padding-bottom: 0;
}

thead {
 font-size: 0.8rem;
 z-index: 1;
 border-bottom: 2px solid #e3eaf4;
 color: var(--color2);
}

th {
 font-weight: 600;
 padding: 5px;
 vertical-align: middle;
 text-align: center;
}


tr {
 border-bottom: 1px solid #f3f6fb;
}


tr:last-of-type {
 border-bottom: 0;
}

tbody > tr:hover {
 background-color: #f3f6fb;
 transition: background-color 0.5s ease-in-out;
}

.hover {
 background-color: #f3f6fb;
 border-radius: none!important;
 text-align: center!important;
 font-weight: 600;
}

td {
 font-size: 0.9rem;
 border: none;
 padding: 0.7rem 1rem;
 vertical-align: middle;
}

td > .more {
 margin: 0;
}

.catsTableI tr {
 background-color: #fff!important;
}

.eBlock tr {
 background-color: #fff!important;
}

.eMessage > p {
 text-align: start!important;
}

.mobile {
 display: none;
}

.desktop {
 display: block;
}

.rotate-box {
 position: relative;
 width: 70%;
 margin-left: auto;
 margin-right: auto;
 align-items: center;
}

.rotate-box p {
 font-size: 0.8rem;
 text-align: center;
 padding: 10px 0;
}

.rotate-img {
 position: relative;
 margin-left: auto;
 margin-right: auto;
 width: 45px;
 height: 45px;
 background-image: url('/img/logo/rotate.png');
 background-size: cover;
 animation: rotate 2s infinite;
}

@keyframes rotate {
 0% { transform: rotate(0deg); }
 50% { transform: rotate(-45deg); }
 100% { transform: rotate(0deg); }
}

#uhvb.in-body.left-bottom, #uhvb.in-body.left-top {
 display: none!important;
}

/* Меню */
.mobile-menu {
 display: none;
}

.upper {
 position: relative;
 width: 100%;
 height: 50px;
 background-color: #fff;
 z-index: 1000;
}

.upper-container {
 max-width: 1600px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

.phone-container {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 padding: 10px 10% 0px 40%;
}

.phone {
 font-size: 1rem;
 line-height: 1.2;
}

.phone:nth-child(1) {
 text-align: left;
}

.phone:nth-child(2) {
 text-align: center;
}

.phone:nth-child(3) {
 text-align: right;
}

.phone a {
 font-family: 'Geologica', sans-serif;
 color: var(--color1);
 font-weight: bold;
 font-size: 1rem;
 text-decoration: none;
}

.phone a:hover {
 color: #24baa6;
 text-decoration: none;
}

.phone > a::before {
 content: '';
 background-image: url('/img/bar/phone.png');
 background-size: contain;
 background-repeat: no-repeat;
 width: 11px;
 height: 11px;
 margin-right: 3px;
 display: inline-block;
 transition: background-image 0.3s ease;
}

.phone > a:hover::before {
 background-image: url('/img/bar/phone2.png');
 transition: background-image 0.3s ease;
}

.lower {
 position: sticky;
 top: 0;
 height: 60px;
 background-color: #fff;
 -webkit-box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 -moz-box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 z-index: 1001;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.lower-container {
 max-width: 1600px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

.menu-container {
 position: relative;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.logo-container-desktop {
 position: absolute;
 top: -60px;
 padding-left: 10%;
 z-index: 1010;
 transition: all 0.1s ease;
}

.logo-desktop {
 display: block;
 margin-right: auto;
 height: 98px;
 object-fit: contain;
 transition: all 0.1s ease;
}

.logo-desktop img {
 width: auto;
}

.menu {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 padding: 0 10% 0 40%;
}

.navigation {
 margin-bottom: auto;
 margin-top: auto;
}

.navigation ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 display: flex;
}

.navigation > ul > li {
 position: relative;
 display: inline-block;
 margin: 0 15px 0 0;
 padding: 0;
}

.navigation > ul > li::before {
 content: "";
 position: absolute;
 left: -15px;
}

.navigation a {
 color: var(--color1);
 text-decoration: none;
 font-size: 1rem;
 transition: all .3s ease-in-out;
}

.navigation a:hover {
 color: #24baa6;
}

.navigation a::after {
 content: '';
 display: block;
 left: 50%;
 top: -1px;
 height: 1px;
 width: 0; 
 background-color: #24baa6;
 transform: translateX(0%); 
 transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1);
}

.navigation a:hover::after,
.navigation:focus::after {
 width: 100%;
}

.submenu {
 display: flex;
 opacity: 0;
 visibility: hidden;
 transform: translateY(-10px);
 transition: all .3s ease-in-out;
 position: absolute;
 top: calc(100% + 10px);
 left: -20px;
 background: linear-gradient(to top, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 1));
 border-radius: 0 0 5px 5px;
 min-width: auto;
 padding: 0;
 z-index: 999;
 flex-direction: column;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

.navigation > ul > li:hover .submenu {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}

.submenu li {
 margin: 0 0 5px 0;
 padding: 0;
}

.submenu li:last-of-type {
 margin: 0 0 15px 0;
}

.submenu a {
 display: inline-block;
 padding: 10px 20px 0;
 transition: all .3s ease-in-out;
}

.submenu a:hover {
 color: #24baa6; 
}

.submenu a::after {
 content: '';
 display: block;
 height: 0;
} 

.icon {
 display: flex;
 flex-direction: row;
}

.icon a {
 margin-top: auto;
 margin-bottom: auto;
}

.icon-1 {
 content: '';
 background-image: url('/img/bar/search.png');
 background-size: contain;
 background-repeat: no-repeat;
 width: 20px;
 height: 20px;
 margin-right: 20px;
 margin-top: auto;
 margin-bottom: -3px;
 display: inline-block;
 transition: background-image 0.3s ease;
}

.icon-1:hover {
 background-image: url('/img/bar/search2.png');
 transition: background-image 0.3s ease;
}

.icon-2 {
 content: '';
 background-image: url('/img/bar/user.png');
 background-size: contain;
 background-repeat: no-repeat;
 width: 20px;
 height: 20px;
 margin-right: 20px;
 margin-top: auto;
 margin-bottom: -3px;
 display: inline-block;
 transition: background-image 0.3s ease;
}

.icon-2:hover {
 background-image: url('/img/bar/user2.png');
 transition: background-image 0.3s ease;
}

.overlay-menu {
 display: none;
}

.overlay-record {
 display: none;
}

/* Всплывающее окно записи */
.popup-container {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.5);
 justify-content: center;
 align-items: center;
 z-index: 3000;
}

.popup-box {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 background-color: white;
 width: 60%;
 max-width: 750px;
 padding: 20px;
 border-radius: 15px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popup-box h2 {
 margin-top: -20px;
 padding: 0 0 20px;
}

.popup-box h3 {
 font-size: 1rem;
 color: var(--color1);
 padding: 0 0 5px;
}

.btn-popup {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 flex-wrap: wrap;
}

.btn-popup a {
 width: calc((100% / 2) - 5px);
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 flex-wrap: wrap;
 text-decoration: none;
}

.btn-popup button {
 font-size: 0.9rem;
 color: var(--color1);
 width: 100%;
 padding: 20px 10px 20px;
 margin-bottom: 10px;
 border-radius: 15px;
 background: #fff;
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.btn-popup button:hover {
 background: #e3eaf4;
 transition: background var(--transition);
}

.btn-popup button:nth-of-type(3),
.btn-popup button:nth-of-type(4) {
 margin-bottom: 0;
}

.close-btn {
 position: relative;
 margin-left: auto;
 width: 15px;
 height: 15px;
 cursor: pointer;
 transform: translate(-10px, 13px);
}

.close-btn::before,
.close-btn::after {
 content: '';
 position: absolute;
 width: 3px;
 height: 20px;
 background-color: var(--color1);
 margin-right: 0;
 transition: background-color 0.3s ease;
}

.close-btn::before {
 transform: rotate(45deg);
}

.close-btn::after {
 transform: rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
 background-color: #24baa6;
 transition: background-color 0.3s ease;
}

.max-banner {
 height: 300px;
 content: '';
 background-image: url('/img/other/max.png');
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 border-radius: 15px;
}

/* Согласие кукисы */
.cookie-message {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 background-color: #252d37;
 color: white;
 padding: 10px 10%;
 text-align: center;
 display: none;
 z-index: 1002;
}

.cookie-message p {
 font-size: 1rem;
}

/* Футер */
.footer {
 width: 100%;
 background-color: #252d37;
 color: #6a7889;
}

.footer-container {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 width: 100%;
 max-width: 1600px;
 padding: 10px 10% 0px;
 align-items: top;
 margin-left: auto;
 margin-right: auto;
}

.footer h1 {
 color: white;
 text-transform: uppercase;
 font-size: 1rem;
 margin-bottom: 5px;
}

.footer p {
 color: #9EADBF;
 font-size: 0.8rem;
 text-align: left;
}

.footer a {
 color: #9EADBF;
 font-size: 0.8rem;
}

.footer a:hover {
 color: #24baa6;
}

.map {
 position: relative;
 width: 60%;
}

.footer-main {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 40%;
}

.contact {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 color: white;
}

.copy {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 width: 100%;
 padding: 10px 0 15px;
}

/* Баннеры */
.banner-slider {
 position: relative;
 width: 100%;
 overflow: hidden;
}

.slider-window {
 overflow: hidden;
}

.slider-track {
 display: grid;
 grid-auto-flow: column;
 grid-auto-columns: calc(100% / var(--visible));
 transition: transform 0.5s ease;
}

.banner-slider {
 --visible: 4;
}

.banner {
 height: 150px;
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 24px;
 border-radius: 10px;
 margin: 5px;
 
 background-size: 100% auto;
 background-position: center;
 background-repeat: no-repeat;
 filter: grayscale(1);
 transition: all 0.5s ease;
}

.banner:hover {
 filter: grayscale(0);
}

/* Кнопки */
.nav-ban {
 display: flex;
}

.prev-ban,
.next-ban {
 height: 33px;
 padding: 0.5rem 1rem;
 border: 1px solid var(--color3);
 border-radius: 10px;
 box-sizing: border-box;
 cursor: pointer;
 background-color: transparent;
 transition: color var(--transition), border-color var(--transition);
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.prev-ban:hover,
.next-ban:hover {
 border: 1px solid #24baa6;
 color: #24baa6;
 background-color: transparent;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.prev-ban {
 margin-right: 10px;
}

.prev-ban::after {
 content: '';
 width: 8px;
 height: 8px;
 flex-shrink: 0;
 margin: auto;
 
 background-image: url('/img/logo/check.png');
 background-size: contain;
 background-repeat: no-repeat;
 transform: rotate(90deg);
 
 transition: all var(--transition);
}

.prev-ban:hover::after {
 background-image: url('/img/logo/check1.png');
}

.next-ban::after {
 content: '';
 width: 8px;
 height: 8px;
 flex-shrink: 0;
 margin: auto;
 
 background-image: url('/img/logo/check.png');
 background-size: contain;
 background-repeat: no-repeat;
 transform: rotate(-90deg);
 
 transition: all var(--transition);
}

.next-ban:hover::after {
 background-image: url('/img/logo/check1.png');
}

/* Кнопки наверх и включение высококонтрастного режима */
.buttons-wrapper {
 position: fixed;
 bottom: 20px;
 right: 20px;
 z-index: 1001;
}

.top-button {
 width: 45px;
 height: 45px;
 border-radius: 50%;
 background-color: var(--color1);
 color: white;
 border: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background-color 0.3s ease, opacity 0.3s ease;
 margin-bottom: 10px;
 opacity: 0; 
 pointer-events: none;
 box-shadow: 0 2px 3px rgba(0,0,0,.1);
}

.contrast-button {
 width: 45px;
 height: 45px;
 border-radius: 50%;
 background-color: var(--color1);
 color: white;
 border: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background-color 0.3s ease, opacity 0.3s ease;
 margin-bottom: 10px;
 box-shadow: 0 2px 3px rgba(0,0,0,.1);
}

.top-button.visible {
 opacity: 1; 
 pointer-events: auto; 
}

.top-button img,
.contrast-button img {
 width: 25px;
 height: 25px;
}

.top-button:hover,
.contrast-button:hover {
 background-color: #24baa6;
}

.contrast-mode {
 filter: grayscale(100%); 
}



/* Слайдер */
.slider-container {
 position: relative;
 width: 100%;
 height: calc(100vh - 110px);
 max-height: 700px;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #fff;
 overflow: hidden;
}

.slide {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 z-index: 1;
 background-size: cover;
 background-position: center;
}

.active-slide {
 opacity: 1;
 z-index: 2;
}

.overlay-icon {
 position: absolute;
 bottom: 0;
 left: 10%;
 height: 100%;
 opacity: 0;
 transform: translateX(-100%);
 border-radius: 0;
 transition: all 2s cubic-bezier(.7,-0.3,.29,1.56), opacity 1s linear 1s;
 z-index: 3;
}

.active-slide .overlay-icon {
 opacity: 1;
 transform: none;
}

.arrow-left, .arrow-right {
 position: absolute;
 top: 50%;
 width: 40px;
 height: 40px;
 cursor: pointer;
 z-index: 5;
 transition: transform 0.3s ease;
}

.arrow-left::before, .arrow-right::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 15px;
 height: 15px;
 border-top: 4px solid var(--color1);
 border-right: 4px solid var(--color1);
 transform: rotate(-135deg);
 transition: border-color 0.3s ease;
}

.arrow-right::before {
 transform: rotate(45deg);
}

.arrow-left {
 left: 10%;
 transform: translate(0%, -50%);
}

.arrow-right {
 right: 10%;
 transform: translate(-50%, -50%);
}

.arrow-left:hover::before, .arrow-right:hover::before {
 border-color: #24baa6; 
}

.slide-title-container {
 position: absolute;
 width: 100%;
 height: 100%;
 max-width: 1600px;
 left: 50%; 
 transform: translateX(-50%);
}

.slide-title {
 padding: 20px 10% 0 50%;
 text-align: right;
 text-shadow: #b4e2f8 0 0 30px;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 z-index: 4;
}

.slide-title h1 {
 color: var(--color1);
 text-transform: uppercase;
}

.slide-title p {
 color: var(--color1);
 text-align: right;
 font-family: 'Noto Sans', serif;
 margin-bottom: 5px;
}

.slide-title a {
 margin-left: auto;
 width: max-content;
 color: var(--color1);
 border: 1px solid var(--color1);
 border-radius: 5px;
 font-size: 0.8rem;
 padding: 4px 10px 6px;
 cursor: pointer;
 transition: background-color 0.3s ease;
}

.slide-title a:hover {
 border: 1px solid #24baa6;
 color: #24baa6;
}

.active-slide .slide-title {
 opacity: 1;
}

/* Слайдер контакты */
.contact-slide {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 420px;
 margin: 10px 0;
 padding: 20px 60px;
 text-align: left;
 transition: opacity 1s ease-in-out;
 z-index: 4;
 background-color: #fff;
 border-radius: 15px;
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}


.contact-slide:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.contact-block {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 position: relative;
 width: 100%;
 padding: 0;
 margin: 0 0 10px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 15px;
 border: 1px solid #e3eaf4;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.contact-block:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.contact-block-img {
 width: 30%;
 background-size: auto 100%;
 background-position: center;
 background-repeat: no-repeat;
 border-radius: 15px 0 0 15px;
 transition: background-size 0.3s ease-in-out;
}

.contact-block:hover .contact-block-img {
 background-size: auto 110%;
}

.contact-block-container {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 padding: 15px 30px;
 width: 70%;
}

.contact-block-container h2 {
 padding-top: 0;
}

.contact-block-container p:last-of-type{
 padding-bottom: 0;
}

.contact-block-container a {
 text-decoration: none;
}

/* Важные объявления */
.important {
 position: relative;
 width: 100%;
 background-color: #24baa6;
 color: #fff;
}

.important h1 {
 color: #fff;
 padding: 10px 0;
}

.important-container {
 max-width: 1600px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
}

.important-main {
 width: 100%;
 overflow: hidden;
 padding: 10px 10% 25px;
}

.important-block {
 display: none;
 width: 100%;
 transition: opacity 1s ease; 
 opacity: 0;
}

.important-block.active {
 display: block;
 opacity: 1;
}

/* Информер */

.inf1 {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 flex-wrap: wrap;
}

.inf1-block {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: relative;
 width: calc((100% / 4) - 5px);
 margin-bottom: 5px;
 padding: 0;
 background-color: #fff;
 color: var(--color1);
 border-radius: 5px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.inf1-block:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}


/* Информационные блоки */

.blocks {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
}

.block {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: relative;
 padding: 0;
 margin-bottom: 15px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 10px;
 border: 1px solid #e3eaf4;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.block:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.block-img {
 height: 150px;
 background-size: auto 100%;
 background-position: center;
 background-repeat: no-repeat;
 border-radius: 10px 10px 0 0;
 transition: background-size 0.3s ease-in-out;
}

.block:hover .block-img {
 background-size: auto 110%;
}

.block a {
 text-decoration: none;
}

.block-container {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 padding: 15px;
}

.block-container h3 {
 text-transform: uppercase;
 padding: 0 0 5px;
 font-size: 0.98rem;
}

.block-container p {
 padding: 0 0 5px;
}

.block-container p:last-of-type {
 padding: 0;
}

.block-container a {
 color: var(--color1);
}

.block-container .more {
 color: var(--color1);
 border: 1px solid var(--color1);
 font-size: 0.8rem;
 margin-top: -8px;
}

.block-container .more:hover {
 color: #24baa6;
 border: 1px solid #24baa6;
}



/* Новости */
.add-container {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

.add-block {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 padding: 15px;
 gap: 15px;
}

.add-block div:nth-child(1) {
 width: 20%;
}

.add-block div:nth-child(2) {
 width: 80%;
}

.add-block div:nth-child(3) {
 width: 100%;
}


.news #allEntries {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
}

.news #allEntries > div:first-of-type {
 grid-row: span 2;
 grid-column: span 2;
 display: flex;
 height: 410px;
 flex-direction: column;
 justify-content: space-between;
 color: var(--color1);
 border-radius: 10px;
}

.news #allEntries > div {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 200px;
 padding: 15px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 10px;
 border: 1px solid #e3eaf4;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.news #allEntries > div:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.news #allEntries > div:first-of-type .new-img {
 position: absolute;
 margin: -15px;
 width: 100%;
 height: 100%;
 background-size: auto 100%;
 background-position: top;
 transition: all 0.3s ease-in-out;
 z-index: 0;
}

.news #allEntries > div:first-of-type .new-img::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
 to left,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.9) 60%
 );
 transition: all 0.3s ease-in-out;
}

.news #allEntries > div .new-img {
 position: absolute;
 margin: -15px;
 width: 100%;
 height: 110px;
 background-size: 100% auto;
 background-position: top;
 filter: grayscale(0.3);
 transition: all 0.3s ease-in-out;
 z-index: 0;
}

.news #allEntries > div .new-img::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
 to top left,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.5) 50%
 );
 transition: all 0.3s ease-in-out;
}

.news #allEntries > div:first-of-type:hover .new-img {
 background-size: auto 110%;
 filter: grayscale(0);
}

.news #allEntries > div:hover .new-img {
 background-size: 110% auto;
 filter: grayscale(0);
}

.news #allEntries > div:hover .new-img::before {
 opacity: 0;
}

.news #allEntries > div:first-of-type:hover .new-img::before {
 opacity: 1;
}

.news #allEntries > div:first-of-type .new-container {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 50%;
}

.news #allEntries > div .new-container {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 65px;
}

.news #allEntries > div .cat-small {
 display: inline-flex;
 padding: 0.15rem 0.65rem;
 margin: 0;
 width: max-content;
 font-family: 'Geologica', sans-serif;
 font-size: 0.8rem;
 font-weight: 300;
 background-color: var(--color3);
 color: var(--color1);
 text-align: center;
 border-radius: 8px;
 border: 1px solid var(--color3);
 overflow: hidden;
 position: relative;
}

.news #allEntries > div:first-of-type h2 {
 font-size: 1.5rem;
 width: 60%;
 display: -webkit-box;
 -webkit-line-clamp: 3; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.news #allEntries > div h2 {
 position: relative;
 padding: 0;
 font-size: 1rem;
 display: -webkit-box;
 -webkit-line-clamp: 2; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.news #allEntries > div:first-of-type .non-display {
 display: inline-flex;
 position: relative;
 margin-right: auto;
}

.news #allEntries > div .non-display {
 display: none;
}

.news #allEntries > div:first-of-type .more {
 border: 1px solid var(--color1);
}

.news #allEntries > div:first-of-type .more:hover {
 border: 1px solid var(--color2);
}

.news #allEntries > div:first-of-type .date {
 width: 60%;
}

.news #allEntries > div .date {
 position: relative;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 font-size: 0.8rem;
 line-height: 1;
}

.news #allEntries > div:last-of-type {
 grid-column: span 4;
 display: flex;
 flex-direction: row;
 height: 1.2rem;
 padding: 0;
 margin: 0 45%;
 border-radius: 0;
 border: none;
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 box-shadow: none;
}

.cat-container {
 display: flex;
 flex-direction: row;
 width: 100%;
 margin: 15px 0;
}

.cat {
 display: inline-flex;
 padding: 0.25rem 0.75rem;
 font-family: 'Geologica', sans-serif;
 font-size: 0.9rem;
 font-weight: 300;
 background-color: #fff;
 color: var(--color1);
 text-align: center;
 border-radius: 10px;
 border: 1px solid var(--color3);
 overflow: hidden;
 margin: 0 10px 0 0;
 cursor: pointer;
 transition: color var(--transition), border-color var(--transition);
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.cat-active {
 display: inline-flex;
 padding: 0.25rem 0.75rem;
 font-family: 'Geologica', sans-serif;
 font-size: 0.9rem;
 font-weight: 400;
 background-color: var(--color1);
 color: #fff;
 text-align: center;
 border-radius: 10px;
 border: 1px solid var(--color1);
 overflow: hidden;
 margin: 0 10px 0 0;
 cursor: pointer;
 transition: color var(--transition), background-color var(--transition), border-color var(--transition);
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.cat:hover {
 border: 1px solid #24baa6;
 color: #24baa6;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.cat-active:hover {
 border: 1px solid #24baa6;
 background-color: var(--color2);
 color: #fff;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.new-title {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 width: 100%;
}

.new-title h1 {
 padding: 0 0 10px;
}

.new-header {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 width: 100%;
 margin-bottom: 10px;
}

.new-header > div {
 font-size: 0.9rem;
 color: var(--color4);
}

.new-header > div::before {
 content: "";
 display: inline-block;
 width: 12px;
 height: 12px;
 background-size: cover;
 margin-right: 5px;
 vertical-align: -1px;
}

.new-header > div:nth-child(1)::before {
 background-image: url('/img/logo/time2.png');
}

.new-header > div:nth-child(2)::before {
 background-image: url('/img/logo/calendar1.png');
}

.new-header > div:nth-child(3)::before {
 background-image: url('/img/logo/eye.png');
}

.new-header > div:nth-child(4) {
 display: inline-flex;
}

.new-message {
 position: relative;
 width: 100%;
}

.new-message img {
 max-width: 100%;
 height: auto!important;
 border-radius: 15px;
}

.share1 {
 background-image: url('/img/logo/vk.png');
 background-size: cover;
 width: 20px;
 height: 20px;
 margin-left: 10px;
 vertical-align: -5px;
 border-radius: 0;
 cursor: pointer;
 transition: all 0.3s ease-in-out;
}

.share1:hover {
 background-image: url('/img/logo/vk1.png');
}

.share2 {
 background-image: url('/img/logo/max.png');
 background-size: cover;
 width: 20px;
 height: 20px;
 margin-left: 10px;
 vertical-align: -5px;
 border-radius: 0;
 cursor: pointer;
 transition: all 0.3s ease-in-out;
}

.share2:hover {
 background-image: url('/img/logo/max1.png');
}

/* Статьи пациентам */
.searchForm > form {
 display: inline-flex;
 margin: 15px 0 0;
 border: 1px solid var(--color3);
 border-radius: 10px;
 padding: 2px;
 height: 31px;
}

.schQuery {
 padding: 0;
}

.queryField {
 width: 200px;
 color: var(--color1);
 border: 0;
 font-size: 0.9rem;
 margin: 5px 0.25rem;
 line-height: 1;
}

.queryField:focus,
.queryField:active {
 border: 0;
}

.schBtn {
 position: relative;
 margin: 0;
}

.searchSbmFl {
 position: relative;
 background-image: url(/img/bar/search.png);
 background-color: var(--color3);
 background-size: 15px;
 background-repeat: no-repeat;
 background-position: center;
 color: var(--color3);
 width: 25px;
 height: 25px;
 border: 0;
 border-radius: 10px;
 padding: 0.25rem;
 font-size: 1rem;
 cursor: pointer;
}

.searchSbmFl:hover {
 background-image: url(/img/bar/search2.png);
}

.arti #allEntries {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
}

.arti #allEntries > div:first-of-type {
 grid-row: span 2;
 grid-column: span 2;
 display: flex;
 height: 410px;
 flex-direction: column;
 justify-content: space-between;
 color: var(--color1);
 border-radius: 10px;
}

.arti #allEntries > div {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 200px;
 padding: 15px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 10px;
 border: 1px solid #e3eaf4;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.arti #allEntries > div:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.arti #allEntries > div:first-of-type .new-img {
 position: absolute;
 margin: -15px;
 width: 100%;
 height: 100%;
 background-size: auto 100%;
 background-position: top;
 transition: all 0.3s ease-in-out;
 z-index: 0;
}

.arti #allEntries > div:first-of-type .new-img::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
 to left,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.8) 60%
 );
 transition: all 0.3s ease-in-out;
}

.arti #allEntries > div .new-img {
 position: absolute;
 margin: -15px;
 width: 100%;
 height: 110px;
 background-size: 100% auto;
 background-position: center;
 filter: grayscale(0.3);
 transition: all 0.3s ease-in-out;
 z-index: 0;
}

.arti #allEntries > div .new-img::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
 to top left,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.5) 50%
 );
 transition: all 0.3s ease-in-out;
}

.arti #allEntries > div:first-of-type:hover .new-img {
 background-size: auto 110%;
 filter: grayscale(0);
}

.arti #allEntries > div:hover .new-img {
 background-size: 110% auto;
 filter: grayscale(0);
}

.arti #allEntries > div:hover .new-img::before {
 opacity: 0;
}

.arti #allEntries > div:first-of-type:hover .new-img::before {
 opacity: 1;
}

.arti #allEntries > div:first-of-type .new-container {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 50%;
}

.arti #allEntries > div .new-container {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 65px;
}

.arti #allEntries > div .cat-small {
 display: inline-flex;
 padding: 0.15rem 0.65rem;
 margin-bottom: 65px;
 width: max-content;
 font-family: 'Geologica', sans-serif;
 font-size: 0.8rem;
 font-weight: 300;
 background-color: var(--color3);
 color: var(--color1);
 text-align: center;
 border-radius: 8px;
 border: 1px solid var(--color3);
 overflow: hidden;
 position: relative;
}

.arti #allEntries > div:first-of-type .cat-small {
 margin-bottom: 0;
}

.arti #allEntries > div:first-of-type .school-arti {
 font-family: 'XPLOR', serif; 
 font-size: 4rem; 
 line-height: 1; 
 margin: 0 0 0 5px; 
 transform: rotate(-1deg);
 width: 60%;
 display: -webkit-box;
 -webkit-line-clamp: 3; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.arti #allEntries > div:first-of-type h2 {
 font-size: 1.5rem;
 width: 60%;
 display: -webkit-box;
 -webkit-line-clamp: 3; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.arti #allEntries > div h2 {
 position: relative;
 padding: 0;
 font-size: 1rem;
 display: -webkit-box;
 -webkit-line-clamp: 2; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.arti #allEntries > div:first-of-type .arti-text {
 display: inline-flex;
 position: relative;
 width: 70%;
 
 font-size: 0.9rem;
}

.arti #allEntries > div .arti-text {
 display: none;
}

.arti #allEntries > div:first-of-type .more:hover {
 border: 1px solid var(--color2);
}

.arti #allEntries > div .non-display {
 display: none;
}

.arti #allEntries > div:first-of-type .date {
 width: 60%;
}

.arti #allEntries > div .date {
 position: relative;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 font-size: 0.8rem;
 line-height: 1;
}

.arti-footer {
 width: 100%;
 border-radius: 10px;
 box-sizing: border-box;
 overflow: hidden;
 background-color: var(--color1);
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.arti-footer p, 
.arti-footer h2 {
 padding: 0 0 10px!important;
}

.arti-footer p {
 font-size: 0.9rem!important;
}

.arti-footer > div {
 position: relative;
 padding: 15px 15px 15px 20%;
 background-size: auto 120%;
 background-repeat: no-repeat;
 background-color: var(--color1);
 background-position-x: 0px;
 overflow: hidden;
 transition: background-size 0.3s ease-in-out, background-position 0.3s ease-in-out;
}

.arti-footer > div:hover {
 background-size: auto 130%;
 background-position-x: -10px;
}

.arti-footer-box {
 position: relative;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-auto-rows: auto;
 gap: 0px;
 width: 100%;
 height: 100%;
 background-color: #fff;
 padding: 15px 0;
 font-size: 0.9rem;
 border-radius: 10px;
}

.arti-footer-box > div {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 padding: 0 15px;
}

.arti-footer-box > div:nth-child(2) {
 border-right: 1px solid var(--color3);
 border-left: 1px solid var(--color3);
}

/* Статьи врачам */
.arti-other #allEntries {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
}

.arti-other #allEntries > div {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 200px;
 padding: 15px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 10px;
 border: 1px solid #e3eaf4;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.arti-other #allEntries > div:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.arti-other #allEntries > div .new-img {
 position: absolute;
 margin: -15px;
 width: 100%;
 height: 110px;
 background-size: 100% auto;
 background-position: center;
 filter: grayscale(0.3);
 transition: all 0.3s ease-in-out;
 z-index: 0;
}

.arti-other #allEntries > div .new-img::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background-image: linear-gradient(
 to top left,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.5) 50%
 );
 transition: all 0.3s ease-in-out;
}

.arti-other #allEntries > div:hover .new-img {
 background-size: 110% auto;
 filter: grayscale(0);
}

.arti-other #allEntries > div:hover .new-img::before {
 opacity: 0;
}

.arti-other #allEntries > div .new-container {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 height: 65px;
}

.arti-other #allEntries > div .cat-small {
 display: inline-flex;
 padding: 0.15rem 0.65rem;
 margin-bottom: 65px;
 width: max-content;
 font-family: 'Geologica', sans-serif;
 font-size: 0.8rem;
 font-weight: 300;
 background-color: var(--color3);
 color: var(--color1);
 text-align: center;
 border-radius: 8px;
 border: 1px solid var(--color3);
 overflow: hidden;
 position: relative;
}

.arti-other #allEntries > div h2 {
 position: relative;
 padding: 0;
 font-size: 1rem;
 display: -webkit-box;
 -webkit-line-clamp: 2; /* Здесь задаем количество строк */
 -webkit-box-orient: vertical; 
 overflow: hidden;
 text-overflow: ellipsis;
}

.arti-other #allEntries > div .arti-text {
 display: none;
}

.arti-other #allEntries > div .non-display {
 display: none;
}

.arti-other #allEntries > div .date {
 position: relative;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 font-size: 0.8rem;
 line-height: 1;
}


/* Отзывы */
.reviews #allEntries {
 display: flex;
 flex-direction: column;
}

.reviews #allEntries > div {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 
 padding: 1rem 1.25rem;
 margin-bottom: 10px;
 background-color: #fff;
 border: 1px solid #e3eaf4;
 border-radius: 10px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.reviews #allEntries > div:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.review-head {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 margin-bottom: 1rem;
}

.review-head-img {
 width: 40px;
 height: 40px;
 padding: 8px;
 background-color: #e3eaf4;
 background-position: center;
 border-radius: 10px;
 margin-right: 1.25rem;
}

.review-head-img img {
 border-radius: 0;
}

.review-head h3 {
 padding: 0;
}

.review-footer {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.review-send {
 display: grid;
 grid-template-columns: 110px 1fr; 
 grid-auto-rows: auto;
 gap: 10px;
 width: 600px;
 margin: 30px auto;
}

.reviews #newEntryT {
 display: flex;
 flex-direction: column;
}

.reviews #newEntryT > div {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 
 padding: 1rem 1.25rem;
 margin-bottom: 10px;
 background-color: #fff;
 border: 1px solid #e3eaf4;
 border-radius: 10px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.reviews #newEntryT > div:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.commFl, .captcha-answer {
 width: 100%;
 padding: 0.25rem 0.5rem;
 border: 1px solid #e3eaf4;
 border-radius: 10px;
}

.captcha-block {
 display: inline-block!important;
 margin: 0!important;
}

.captcha-question, .captcha-renew {
 height: 1rem!important;
}

.captcha-answer {
 box-sizing: border-box;
 height: auto!important;
 padding: 0.25rem 0.5rem!important;
 text-align: left!important;
 width: 90px;
}

#gbsbm {
 display: inline-block;
 padding: 6px 10px;
 margin: 0 auto;
 color: #fff;
 font-size: 1rem;
 background-color: var(--color1);
 border: none;
 border-radius: 10px;
 cursor: pointer;
 transition: background-color 0.3s ease;
 text-decoration: none;
}

/* Администрация */
.admin-blocks {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
 max-width: 1100px;
 margin-left: auto;
 margin-right: auto;
}

/* Главный врач */
.admin-block-main {
 grid-row: span 1;
 grid-column: span 3;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 border-radius: 10px;
 padding: 0;
 background-color: #fff;
 border: 1px solid #e3eaf4;
 border-radius: 15px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.admin-block-main:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.admin-block-main h3 {
 font-weight: normal;
}

.admin-img-main {
 width: calc((100% / 3) - 7.5px);
 max-width: 350px;
 background-size: 100% auto;
 background-position: top;
 background-repeat: no-repeat;
 border-radius: 15px 0 0 15px;
 transition: background-size 0.3s ease-in-out;
}

.admin-block-main:hover .admin-img-main {
 background-size: 110% auto;
}

.admin-block-container-main {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: calc((100% / 3) * 2 - 7.5px);
 padding: 10px 25px 10px 0;
 overflow: hidden;
}

.admin-block-container-main h3 {
 text-transform: uppercase;
 padding: 0 0 10px;
}

.admin-block-container-main p:last-of-type {
 padding: 0;
}

.admin-block-container-main a {
 color: var(--color1);
}

/* Карточки администрации */

.admin-block {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: relative;
 padding: 0;
 background-color: #fff;
 color: var(--color1);
 border: 1px solid #e3eaf4;
 border-radius: 15px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 overflow: hidden;
}

.admin-block:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.admin-img {
 height: 300px;
 background-size: 100% auto;
 background-position: top;
 background-repeat: no-repeat;
 border-radius: 15px 15px 0 0;
 transition: background-size 0.3s ease-in-out;
}

.admin-block:hover .admin-img {
 background-size: 110% auto;
}

.admin-block-container {
 display: flex;
 height: 180px;
 flex-direction: column;
 justify-content: space-between;
 padding: 10px 15px;
}

.admin-block-container h3 {
 text-transform: uppercase;
 font-weight: 400;
 font-size: 0.95rem;
 padding: 0 0 10px;
}

.admin-block-container p {
 font-size: 0.9rem;
}

.admin-block-container p:last-of-type {
 padding-bottom: 0;
}

.admin-block-container a {
 color: var(--color1);
 font-size: 0.9rem;
}

.captcha-question, .captcha-renew {
 height: 50px!important;
} 

.admin td {
 text-align: center;
}

.admin colgroup {
 display: table-column-group; /* Группировка колонок */
}

.admin colgroup > col:nth-child(1) { width: 15%; } /* Колонка Фото */
.admin colgroup > col:nth-child(2) { width: 20%; } /* ФИО */
.admin colgroup > col:nth-child(3) { width: 15%; } /* Должность */
.admin colgroup > col:nth-child(4) { width: 30%; } /* Организация */
.admin colgroup > col:nth-child(5) { width: 15%; } /* Специальность/квалификация */
.admin colgroup > col:nth-child(6) { width: 5%; } /* Аккредитация */

/* Подразделения */
.dept {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.dept-iframe {
 height: 500px;
}

.dept-main-1 {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: calc((100% / 2) - 30px);
 padding: 10px 0;
}

.dept-main-1 > h1 {
 padding: 0 0 10px;
}

.dept-h3 {
 width: max-content;
 background-color: var(--color3);
 padding: 0.25rem 0.75rem;
 font-family: 'Geologica', sans-serif;
 font-size: 0.9rem;
 font-weight: 400;
 color: var(--color4);
 text-align: center;
 border-radius: 10px;
 overflow: hidden;
 margin: 0 0 10px;
}

.dept-button-1 {
 display: inline-flex;
 align-items: center;
 padding: 0.5rem 1rem;
 color: #fff!important;
 font-size: 1rem;
 background-color: var(--color1);
 border-radius: 10px;
 margin: 0;
 cursor: pointer;
 transition: background-color 0.3s ease;
 text-decoration: none;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.dept-button-1:hover {
 background-color: #24baa6;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.dept-button-2 {
 display: inline-flex;
 align-items: center;
 padding: 0.5rem 1rem;
 color: var(--color1);
 font-size: 1rem;
 box-sizing: border-box;
 border-radius: 10px;
 margin: 0;
 cursor: pointer;
 transition: background-color 0.3s ease;
 text-decoration: none;
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.dept-button-2:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.dept-button-1 a {
 color: #fff!important;
}

.dept-button-2 a {
 color: var(--color1);
}

.dept-button-1 img,
.dept-button-2 img{
 border-radius: 0;
 margin: -3px 10px 0 0;
 width: 15px;
}

.dept-contact {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 grid-auto-rows: auto;
 gap: 20px 10px;
 width: 100%;
}

.dept-contact-block {
 display: flex;
 flex-direction: row;
 font-size: 0.9rem!important;
 line-height: 1.3;
}

.dept-contact-block a {
 font-size: 0.9rem
}

.dept-contact-img {
 width: 30px;
 height: 30px;
 padding: 7px;
 margin: auto 10px auto 0;
 background-color: #e3eaf4;
 background-position: center;
 border-radius: 15px;
}

.dept-contact-img img {
 border-radius: 0;
}

.dept-main-2 {
 position: relative;
 width: calc(100% / 2);
 height: 350px;
 padding: 15px 15px 15px 200px;
 background-image: 
 linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 106, 165, 1) 50%),
 var(--bg-image);
 
 background-color: var(--color1);
 
 background-size: 100% 100%, auto 100%;
 background-position: left top, left top;
 background-repeat: no-repeat;
 border-radius: 15px;
 overflow: hidden;
 transition: background-size 0.3s ease-in-out, background-position 0.3s ease-in-out;
}

.dept-main-2:hover {
 background-size: 100% 100%, auto 110%;
 background-position: left top, -30px top;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.dept-main-2:hover > img {
 height: 120%;
}

.dept-main-2-box {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 100%;
 height: 100%;
 background-color: #fff;
 padding: 15px;
 color: var(--color1);
 font-size: 1rem;
 box-sizing: border-box;
 border-radius: 15px;
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.dept-main-2-box-h3 {
 width: max-content;
 background-color: var(--color3);
 padding: 0.25rem 0.75rem;
 font-family: 'Geologica', sans-serif;
 font-size: 0.9rem;
 font-weight: 400;
 color: var(--color1);
 text-align: center;
 border-radius: 10px;
 overflow: hidden;
 margin: 0 0 5px;
}

.dept-main-2-box h2 {
 padding: 0 0 5px;
}


/* Ресепшен */
.btn-group {
 display: flex;
 flex-direction: row;
 margin-top: 10px;
 gap: 10px;
}

.iframe-button {
 width: max-content; /* Вычитаем пространство между кнопками */
 background-color: transparent;
 padding: 0.5rem 1rem;
 font-family: 'Geologica', sans-serif;
 font-size: 1rem;
 font-weight: 500;
 color: var(--color-text-1);
 text-align: center;
 
 border: 2px solid #e3eaf4;
 border-radius: 20px;
 overflow: hidden;
 
 margin: 5px 0 10px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 transition: border 0.3s ease-in-out, color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

.iframe-button.active,
.iframe-button:hover {
 background-color: transparent;
 border: 2px solid #24baa6;
 color: #24baa6;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.iframe-button.active {
 color: #24baa6;
}

.iframe-container {
 position: relative;
 margin: 0;
 width: 100%;
 height: 100%;
 background: none;
 border: 0;
}

.iframe-section {
 display: none;
 position: relative;
 width: 100%;
 background-color: white;
 transition: 1s ease-in-out;
}

.iframe-reception {
 width: 100%;
 position: relative;
 height: 400px;
 padding: 1rem;
 margin-bottom: 10px;
 border: 1px solid #e3eaf4;
 border-radius: 15px;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.iframe-rec {
 position: relative;
 width: 100%;
 height: 100%;
 border-radius: 15px;
 overflow: hidden;
}

.iframe-rec iframe {
 position: relative;
 width: calc(100% + 35px);
 height: calc(100% + 140px);
 top: -140px;
 left: -10px;
}

.table-responsive {
 overflow-x: auto;
}

.table-reception {
 position: relative;
 padding: 0 10px;
}

.iframe-section.active {
 display: block;
}

.reception td, th {
 font-size: 0.9rem;
 border: none;
 padding: 10px;
 vertical-align: middle;
 text-align: center;
}

.reception colgroup {
 display: table-column-group;
}

.reception colgroup > col:nth-child(1) { width: 25%; }
.reception colgroup > col:nth-child(2) { width: 25%; }
.reception colgroup > col:nth-child(3) { width: 50%; }

/* Формы, диспансеризация */
.p-form {
 width: 68%;
}

.forms {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 background-color: var(--color1);
 color: #fff;
 border-radius: 15px;
 padding: 30px;
 margin-bottom: 20px;
}

.forms > h1 {
 color: #fff;
}

.forms > p {
 margin-bottom: 15px;
}

.forms > img {
 position: absolute;
 width: 430px;
 top: -330px;
 right: 0;
 z-index: 500;
}

.form-container {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 width: 100%;
}

.form {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: calc((100% / 3) - 10px);
 padding: 15px;
 font-size: 0.95rem;
 color: #fff!important;
 border-radius: 15px;
 border: 2px solid #24baa6;
}

.form h3 {
 color: #fff;
 padding-top: 0;
}

.form a {
 color: #fff;
 text-align: center;
}

.form p:last-of-type {
 padding-bottom: 0;
}

.form-container input[type="number"], .form-container select, .form-container button {
 width: calc((100% / 4) - 10px);
 padding: 10px;
 border-radius: 15px;
 border: 1px solid transparent;
 color: var(--color1);
 font-size: 0.95rem;
 z-index: 501;
}

input:focus {
 border: 1px solid #24baa6;
}

input::placeholder {
 color: var(--color3);
}

.form-container button:hover {
 background-color: #24baa6;
}

.form-container select:focus {
 border: 1px solid #24baa6;
}

option {
 padding: 15px;
 background-color: #fff;
 color: #333;
}

.hidden {
 display: none;
}

#resultBlock {
 padding: 0;
 margin: 0;
 border: 0;
}

#resultBlock h2 {
 padding: 15px 0 0;
 margin: 0;
}

#resultBlock ul {
 list-style-type: "– ";
}

#resultBlock li {
 position: relative;
 margin-right: 15px;
 margin-top: 10px;
 margin-bottom: 0;
}

#resultBlock img {
 position: relative;
 margin-right: 15px;
 margin-top: auto;
 margin-bottom: auto;
 width: 1rem;
 height: 1rem;
}

/* Вакцинация */
.forms-vac {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.forms-vac > img {
 position: absolute;
 width: 350px;
 top: 100px;
 left: 62%;
 z-index: 500;
}

.forms-vac a {
 width: calc((100% / 3) - 15px);
 color: #fff;
}

.forms-vac button {
 width: 100%;
 padding: 10px;
 border-radius: 15px;
 border: 2px solid transparent;
 color: #fff;
 font-size: 0.95rem;
 z-index: 501;
}

.forms-vac button {
 border: 0;
 color: #fff;
 background-color: transparent;
 font-family: 'Geologica', sans-serif;
 font-weight: bold;
}

.forms-vac button:hover {
 background-color: #24baa6;
 color: #fff;
}

.vac table {
 width: 100%;
 border-collapse: separate;
 border: none;
 font-size: 0.9rem;
 margin-bottom: 15px;
}

.vac tbody td th {
 font-size: 0.9rem;
 border: none;
 padding: 5px;
 vertical-align: middle;
 text-align: left!important;
}

.vac thead {
 font-size: 0.9rem;
 background-color: #ddd;
 position: sticky;
 top: 60px;
 z-index: 1;
 vertical-align: middle;
 text-align: center;
}

.vac thead tr th:first-child {
 border-radius: 5px 0 0 5px;
}

.vac thead tr th:last-child {
 border-radius: 0 5px 5px 0;
}

.vac tbody tr:nth-child(even) {
 background-color: #f9f9f9;
}

.vac tbody tr td {
 padding: 5px 0;
 vertical-align: middle;
 text-align: center;
}

.vac1 p{
 text-align: left!important;
}

.vac colgroup {
 display: table-column-group;
}

.vac colgroup > col:nth-child(2) { width: 20px; }
.vac colgroup > col:nth-child(3) { width: 20px; }
.vac colgroup > col:nth-child(4) { width: 20px; }
.vac colgroup > col:nth-child(5) { width: 20px; }
.vac colgroup > col:nth-child(6) { width: 20px; }
.vac colgroup > col:nth-child(7) { width: 20px; }
.vac colgroup > col:nth-child(8) { width: 20px; }
.vac colgroup > col:nth-child(9) { width: 20px; }
.vac colgroup > col:nth-child(10) { width: 20px; }
.vac colgroup > col:nth-child(11) { width: 20px; }
.vac colgroup > col:nth-child(12) { width: 20px; }
.vac colgroup > col:nth-child(13) { width: 20px; }
.vac colgroup > col:nth-child(14) { width: 20px; }

.vac colgroup > col:nth-child(n+15) { width: 20px; }

.v0 {
 width: 20px;
 height: 20px;
 border: 1px solid #8b8b8b;
 border-radius: 6px;
}

.v1 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #fe0000;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.v2 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #ff5c01;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.v3 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #ffb288;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.rv1 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: var(--color1);
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.rv2 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #0082ca;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.rv3 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #129eec;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

.rv4 {
 padding: 2px 0 0 0;
 width: 20px;
 height: 20px;
 border: 1px solid transparent;
 border-radius: 6px;
 background-color: #3dbaff;
 font-weight: bold;
 font-size: 0.7rem;
 text-align: center;
 color: #fff;
 cursor: pointer;
}

/* Платные услуги */
.pay-blocks {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-auto-rows: auto;
 gap: 10px;
 width: 100%;
}

.pay-block {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 text-align: left;
 padding: 1.25rem;
 border: 1px solid #e3eaf4;
 border-radius: 15px;
 overflow: hidden;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.pay-block:hover {
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.pay-block p {
 text-align: left;
 color: var(--color1);
}

pay-block li {
 text-align: left;
}

.pay-block-img {
 width: 55px;
 height: 55px;
 padding: 10px;
 margin-bottom: 10px;
 background-color: #e3eaf4;
 background-position: center;
 border-radius: 15px;
}

.pay-block-img img {
 border-radius: 0px;
}

.pay-block h3 {
 text-transform: none; 
 color: var(--color1);
 padding: 0 0 10px;
}

.pay-block ul {
 padding: 0;
}

.pay-block ul > li:first-of-type {
 margin-top: 0;
}

.pay-block ul > li {
 margin: 5px 0 0;
}

.pay-doctor {
 position: relative;
 padding: 15px 15px 15px 230px;
 background-size: auto 120%;
 background-repeat: no-repeat;
 background-color: var(--color1);
 background-position-x: -10px;
 border-radius: 10px;
 overflow: hidden;
 transition: background-size 0.3s ease-in-out, background-position 0.3s ease-in-out;
}

.pay-doctor:hover {
 background-size: auto 130%;
 background-position-x: -20px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
}

.pay-doctor-box {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 100%;
 height: 100%;
 background-color: #fff;
 padding: 15px;
 color: var(--color1);
 font-size: 1rem;
 box-sizing: border-box;
 border-radius: 10px;
 border: 1px solid #e3eaf4;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.pay-doctor:hover > img {
 height: 120%;
}

.pay-doctor-box-h3 {
 width: max-content;
 background-color: var(--color3);
 padding: 0.25rem 0.75rem;
 font-family: 'Geologica', sans-serif;
 font-size: 0.8rem;
 font-weight: 400;
 color: var(--color1);
 text-align: center;
 border-radius: 10px;
 overflow: hidden;
 margin: 0 0 5px;
}

.pay-doctor-box h2 {
 font-size: 1.2rem;
 padding: 0 0 5px;
}

.pay-doctor-box p {
 text-align: left;
}

.pay-1 {
 display: flex;
 justify-content: center;
 height: calc(100vh / 3 - 110px);
 min-height: 500px;
 background-image: 
 linear-gradient(
 to bottom right,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.8) 50%
 ),
 url('/img/other/pattern.png');
 background-repeat: repeat;
 background-size: cover, 200px 200px;
}

.pay-1-1 {
 margin: auto auto;
 text-align: center;
 width: 50%;
 max-width: 600px;
}

.pay-1 h1 {
 font-size: 2rem;
 text-align: center;
}

.pay-1 p {
 text-align: center;
}

.pay-1-1-1 {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 margin: 30px 0 30px;
 padding: 0;
}

.pay-1-1-1 > div {
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding: 0 1.25rem;
 width: calc(100% / 3);
 text-align: center;
}

.pay-1-1-1 > h2 {
 text-align: center;
}

.pay-1-1-2 {
 position: relative;
 animation: moveUpDown 2s infinite ease-in-out;
}

@keyframes moveUpDown {
 0% {
 transform: translateY(0);
 }
 50% {
 transform: translateY(-5px);
 }
 100% {
 transform: translateY(0);
 }
}

.pay-button {
 width: 150px;
 background-color: transparent;
 padding: 0.5rem 1rem;
 font-family: 'Geologica', sans-serif;
 font-size: 1rem;
 font-weight: 500;
 color: var(--color1);
 text-align: center;
 
 border: 2px solid var(--color1);
 border-radius: 20px;
 overflow: hidden;
 
 margin: 5px 0 10px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 transition: border 0.3s ease-in-out, color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

.pay-button.active,
.pay-button:hover {
 background-color: transparent;
 border: 2px solid #24baa6;
 color: #24baa6;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
}

.pay-button.active {
 color: #24baa6;
}

.pay td:first-of-type,
.pay th:first-of-type{
 text-align: left;
}

.pay td {
 text-align: center;
}


/* Школа пациентов */
@font-face {
 font-family: 'XPLOR';
 src: url('/img/school/Lady_Marmalade.otf') format('OpenType');
}

.desk {
 background-image: 
 linear-gradient(
 to bottom right,
 rgba(227, 234, 244, 0) 0%,
 rgba(227, 234, 244, 0.8) 50%
 ),
 url('/img/other/pattern1.png');
 background-repeat: repeat;
 background-size: cover, 20px 20px;
 height: calc(100vh - 110px);
 max-height: 580px;
 color: var(--color1)!important;
}

.desk-container {
 width: 100%;
 max-width: 1600px;
 margin-left: auto;
 margin-right: auto;
}

.desk-title-container {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 margin-top: 40px;
}

.desk-title {
 font-family: 'XPLOR', serif;
 font-size: 4.5rem;
 transform: rotate(-2deg);
 margin-bottom: 40px;
}

.desk-suptitle {
 text-align: right;
 padding: 10px 15px 0;
 width: 50%;
}

.school-container {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.school-container a {
 color: var(--color1);
 text-decoration: none;
}

.school {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 250px;
 height: 250px;
 padding: 40px 30px;
 position: relative;
}

.school::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: url('/img/school/chalk.png');
 background-size: 90% 100%;
 background-position: center;
 background-repeat: no-repeat;
 opacity: 0;
 transition: opacity 0.5s ease-in-out;
}

.school:hover::before {
 opacity: 1;
}

.school h1 {
 font-family: 'XPLOR', serif;
 font-size: 2.3rem;
 font-weight: 500;
 text-align: center;
 color: var(--color1);
 line-height: 1;
 padding: 0 0 15px;
 transform: rotate(-1.5deg);
}

.school p {
 text-align: center;
 padding: 0;
}




/* Стили для ноутбуков, настольных компьютеров, планшетов */
@media only screen and (min-width: 450px) and (max-width: 1200px) {
 .mobile {
 display: block;
 }
 
 .desktop {
 display: none;
 }
 
 .content-container {
 padding: 10px 5%;
 }
 
 section {
 padding: 10px 0;
 }
 
 /* Меню */
 .phone-container {
 padding: 10px 5% 0px 40%;
 }
 
 .logo-container-desktop {
 padding-left: 5%;
 }
 
 .menu {
 padding: 0 5% 0 40%;
 }
 
 /* Футер */
 .footer-container {
 padding: 10px 5% 0px;
 }
 
 /* Слайдер */
 .overlay-icon {
 bottom: -5%;
 left: 3%;
 }
 
 .slide-title {
 top: 20px;
 right: 5%;
 left: 50%;
 }
 
 /* Важные объявления */
 .important-main {
 padding: 10px 5% 25px;
 }
}

/* Стили для мобильных телефонов */
@media only screen and (orientation: portrait) and (max-width: 450px) { 
 body {
 padding-top: constant(safe-area-inset-top); /* Для Safari до версии 11.1 */
 padding-bottom: constant(safe-area-inset-bottom);
 padding-left: constant(safe-area-inset-left);
 padding-right: constant(safe-area-inset-right);
 
 padding-top: env(safe-area-inset-top); /* Современные браузеры */
 padding-bottom: env(safe-area-inset-bottom);
 padding-left: env(safe-area-inset-left);
 padding-right: env(safe-area-inset-right);
 
 max-width: 100vw;
 overflow: hidden;
 }
 
 .mobile {
 display: block;
 }
 
 .desktop {
 display: none;
 }
 
 .content-container {
 padding: 10px 3%;
 }
 
 section {
 display: flex;
 flex-direction: column;
 padding: 10px 0;
 }
 
 /* Мобильное меню */
 .upper {
 position: sticky;
 top: 0;
 height: 50px;
 background-color: #fff;
 -webkit-box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 -moz-box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 box-shadow: 0px 9px 16px -7px rgba(0, 106, 165, 0.1);
 }
 
 .phone-container {
 padding: 5px 3% 5px 3%;
 }
 
 .lower {
 display: none;
 }
 
 .mobile-menu {
 position: fixed;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 bottom: 0;
 left: 0;
 padding: 5px 5% 5px;
 width: 100%;
 height: 65px;
 background-color: #fff;
 z-index: 1001;
 -webkit-box-shadow: 0px -9px 16px -7px rgba(0, 106, 165, 0.1);
 -moz-box-shadow: 0px -9px 16px -7px rgba(0, 106, 165, 0.1);
 box-shadow: 0px -9px 16px -7px rgba(0, 106, 165, 0.1);
 font-size: 1rem;
 }
 
 .mobile-menu-block {
 text-align: center;
 line-height: 1;
 }
 
 .mobile-menu-block:first-of-type {
 justify-content: flex-start;
 }
 
 .mobile-menu-block:last-of-type {
 justify-content: flex-end;
 }
 
 .mobile-menu-icon {
 width: 100%;
 align-items: center;
 }
 
 .mobile-menu-icon img {
 width: 50px;
 }
 
 .mobile-menu-icon a {
 color: var(--color1);
 font-size: 1rem;
 }
 
 .overlay-menu {
 display: flex;
 position: fixed;
 width: 100%;
 height: 100%;
 background-color: rgba(255, 255, 255, 0.95);
 z-index: 500;
 transform: translateX(100%);
 transition: transform 0.5s ease-in-out;
 padding: 20px 10px 75px 10px;
 }
 
 .overlay-menu-show {
 transform: translateX(0);
 }
 
 .mobile-nav {
 list-style: none;
 padding: 0;
 margin: 0;
 width: 100%;
 text-align: left;
 }
 
 .mobile-nav ul {
 list-style: none;
 padding: 0;
 margin: 0;
 }
 
 .mobile-nav a {
 display: block;
 padding: 5px 20px;
 color: var(--color1);
 text-decoration: none;
 transition: border-left 0.3s ease-in-out;
 }
 
 .mobile-nav a:hover {
 border-left: 2px solid #24baa6;
 padding-left: 18px;
 background-color: transparent;
 font-family: 'Geologica', sans-serif;
 color: #24baa6;
 font-weight: bold;
 }
 
 .mobile-submenu {
 background-color: transparent;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-in-out;
 }
 
 .mobile-submenu li {
 list-style: '-' outside;
 margin-left: 25px;
 padding-left: 0;
 }
 
 .mobile-submenu.active {
 max-height: 500px;
 }
 
 .overlay-record {
 display: flex;
 position: fixed;
 width: 100%;
 height: 100%;
 background-color: rgba(255, 255, 255, 0.95);
 z-index: 500;
 transform: translateX(-100%);
 transition: transform 0.5s ease-in-out;
 padding: 20px 35px 200px 35px;
 }
 
 .overlay-record-show {
 transform: translateX(0);
 }
 
 .mobile-record {
 display: flex;
 flex-direction: column;
 }
 
 .mobile-record-block {
 display: block;
 width: 100%;
 padding: 0 15px 15px;
 margin-bottom: 10px;
 background-color: #fff;
 color: var(--color1);
 border-radius: 5px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.05);
 }
 
 .mobile-record-block a {
 text-decoration: none;
 color: var(--color1);
 }
 
 .mobile-record-block p:last-child {
 padding-bottom: 0;
 }
 
 /* Футер */
 .footer-container {
 flex-direction: column;
 padding: 10px 3% 0px;
 }
 
 .footer h1 {
 color: white;
 text-transform: uppercase;
 font-size: 1.6rem;
 margin-bottom: 5px;
 }
 
 .footer p {
 color: #9EADBF;
 font-size: 1rem;
 }
 
 .footer a {
 color: #9EADBF;
 font-size: 1rem;
 }
 
 .map {
 width: 100%;
 }
 
 .footer-main {
 width: 100%;
 }
 
 .copy {
 flex-direction: column;
 margin-bottom: 60px;
 }
 
 .copy p {
 font-size: 0.8rem;
 line-height: 1.5;
 }
 
 .copy a {
 font-size: 0.8rem;
 }
 
 /* Согласие кукисы */
 .cookie-message {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 background-color: #252d37;
 color: white;
 padding: 10px 3%;
 text-align: center;
 display: none;
 z-index: 1002;
 }
 
 .cookie-message p {
 font-size: 1rem;
 }
 
 /* Баннеры */
 .carousel-slide {
 width: calc((100% / 2) - 20px);
 }
 
 /* Кнопки вверх и контрастность */
 .buttons-wrapper {
 bottom: 70px;
 right: 5%;
 z-index: 1001;
 }
 
 /* Слайдер */
 .slider-container {
 width: 100%;
 height: calc(100vh - 110px);
 max-height: 700px;
 }
 
 .overlay-icon {
 bottom: 10%;
 left: -15%;
 height: 70%;
 }
 
 .arrow-left {
 left: 3%;
 }
 
 .arrow-right {
 right: 3%;
 }
 
 .slide-title-container {
 left: 0;
 transform: translateX(0);
 }
 
 .slide-title {
 padding: 30px 3% 0;
 }
 
 /* Важные объявления */
 .important-main {
 width: 100%;
 overflow: hidden;
 padding: 10px 3% 25px;
 }
 
 /* Информационные блоки */
 .p-form {
 width: 100%;
 }
 
 .blocks {
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 flex-wrap: wrap;
 }
 
 .block {
 width: 100%;
 margin-bottom: 10px;
 -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 -moz-box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);
 box-shadow: 0px 0px 10px 0px rgba(0, 106, 165, 0.2);;
 }
 
 /* Новости */
 .news-container {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 }
 
 .news-img {
 width: 100%;
 height: 150px;
 margin-right: 0;
 padding-right: 0;
 }
 
 .news-img img{
 width: 100%;
 height: 100%;
 object-fit: cover;
 margin-bottom: 15px;
 }
 
 .news-message {
 width: 100%;
 margin-top: 15px;
 }
 
 .news-footer {
 width: 100%;
 }
 
 .news-footer img {
 vertical-align: middle;
 width: 16px;
 height: 16px;
 }
 
 /* Формы */ 
 .p-form {
 width: 100%;
 }
 
 .forms {
 padding: 15px;
 }
 
 .forms > img {
 display: none;
 }
 
 .form-container {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 width: 100%;
 }
 
 .form {
 width: 100%;
 margin-bottom: 15px;
 }
 
 .form-container input[type="number"], .form-container select, .form-container button {
 width: 100%;
 padding: 10px;
 margin-bottom: 5px;
 }
 
 
 /* Администрация */ 
 .admin-block {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: relative;
 width: 100%;
 padding: 0;
 background-color: #fff;
 color: var(--color1);
 border-radius: 5px;
 margin-bottom: 15px;
 }
 
 .admin-img {
 height: 300px;
 background-size: 100% auto;
 background-position: top;
 background-repeat: no-repeat;
 border-radius: 5px 5px 0 0;
 transition: background-size 0.3s ease-in-out;
 }
 
 /* Подразделения */ 
 .dept-block-1 {
 width: 100%;
 margin-bottom: 15px;
 }
 
 .dept-block-2 {
 display: none;
 }
 
 .dept-img-1 {
 height: 350px;
 background-size: 100% auto;
 background-position: top;
 background-repeat: no-repeat;
 border-radius: 5px 5px 0 0;
 transition: background-size 0.3s ease-in-out;
 }
}

/* Стили для альбомной ориентации на мобильных устройствах */
@media only screen and (orientation: landscape) and (max-device-width : 450px) {
 body {
 font-size: 15px !important;
 }
 
 .mobile {
 display: none;
 }
 
 .desktop {
 display: block;
 }
 
 section {
 padding: 10px 3%;
 }
 
 /* Мобильное меню */
 .phone-container {
 padding: 10px 15px 0px 315px;
 }
 
 .logo-container-desktop {
 max-width: 315px;
 top: -42px;
 padding-left: 15px;
 }
 
 .logo-container-desktop {
 max-width: 315px;
 top: -60px;
 padding-left: 15px;
 }
 
 .logo-desktop {
 width: 100%;
 }
 
 .menu {
 padding: 0 15px 0 315px;
 }
 
 .icon img {
 margin-right: 10px;
 }
 
 /* Футер */
 .footer-container {
 padding: 10px 3% 0px;
 }
 
 /* Слайдер */
 .slider-container {
 position: relative;
 width: 100%;
 height: calc(100vh - 110px);
 max-height: 700px;
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #fff;
 overflow: hidden;
 }
 
 .slide {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 z-index: 1;
 background-size: cover;
 background-position: center;
 }
 
 .active-slide {
 opacity: 1;
 z-index: 2;
 }
 
 .overlay-icon {
 position: absolute;
 bottom: 0;
 left: 5%;
 height: 100%;
 opacity: 0;
 transform: translateX(-100%);
 transition: all 2s cubic-bezier(.7,-0.3,.29,1.56), opacity 1s linear 1s;
 z-index: 3;
 }
 
 .active-slide .overlay-icon {
 opacity: 1;
 transform: none;
 }
 
 .arrow-left, .arrow-right {
 position: absolute;
 top: 50%;
 width: 40px;
 height: 40px;
 cursor: pointer;
 z-index: 5;
 transition: transform 0.3s ease;
 }
 
 .arrow-left::before, .arrow-right::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 20px;
 height: 20px;
 border-top: 4px solid var(--color1);
 border-right: 4px solid var(--color1);
 transform: rotate(-135deg);
 transition: border-color 0.3s ease;
 }
 
 .arrow-right::before {
 transform: rotate(45deg);
 }
 
 .arrow-left {
 left: 3%;
 transform: translate(0%, -50%);
 }
 
 .arrow-right {
 right: 3%;
 transform: translate(-50%, -50%);
 }
 
 .arrow-left:hover::before, .arrow-right:hover::before {
 border-color: #24baa6; 
 }
 
 .slide-title-container {
 position: absolute;
 width: 100%;
 height: 100%;
 max-width: 1600px;
 left: 50%; 
 transform: translateX(-50%);
 }
 
 .slide-title {
 padding: 20px 10% 0 40%;
 text-align: right;
 text-shadow: #b4e2f8 0 0 30px;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 z-index: 4;
 }
 
 .slide-title h1 {
 color: var(--color1);
 text-transform: uppercase;
 }
 
 .slide-title p {
 color: var(--color1);
 text-align: right;
 font-family: 'Noto Sans', serif;
 margin-bottom: 5px;
 }
 
 .slide-title a {
 margin-left: auto;
 width: max-content;
 color: var(--color1);
 border: 1px solid var(--color1);
 border-radius: 5px;
 font-size: 0.8rem;
 padding: 4px 10px 6px;
 cursor: pointer;
 transition: background-color 0.3s ease;
 }
 
 .slide-title a:hover {
 border: 1px solid #24baa6;
 color: #24baa6;
 }
 
 .active-slide .slide-title {
 opacity: 1;
 }
 
 /* Важные объявления */
 .important {
 position: relative;
 width: 100%;
 background-color: #24baa6;
 color: #fff;
 }
 
 .important h1 {
 color: #fff;
 padding: 10px 0;
 }
 
 .important-container {
 max-width: 1600px;
 width: 100%;
 margin-left: auto;
 margin-right: auto;
 }
 
 .important-main {
 width: 100%;
 overflow: hidden;
 padding: 10px 3% 25px;
 font-size: 15px;
 }
}