* {
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    background-color: #F5F5F5;
    font-family: "Nunito Sans", sans-serif;
    color:#246D76;
}

header {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 25px 0;
    display: flex;
    justify-content: space-between;
}
.logo-header {
    z-index: 1002;
    position: relative;
    
}

header nav {
    width: 70%;
    font-size: 16px;
    margin: 4px 0 0 0;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}
header nav ul li {
    display:inline-block;
}
header nav ul li a {
    color:#246D76;
    text-decoration: none;
}
header nav ul li a:after {
    display: block;
    content: "";
    height: 1px; 
    width: 0%; 
    background-color: #131313;
    transition: width 0.5s ease-in-out; 
}

header nav ul li a:hover {
    color:#12383C;
}
header nav ul li a:hover:after {
    width: 100%;
}
header nav.active ~ .search-btn,
header nav.active ~ .search-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
/*Стили для поиска*/
#search {
    font-size: 23px;
}
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(-20px);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);

}
.search-header {
    display: flex;
    align-items: center;
    width: 82%;
    max-width: 1200px;
    margin-left: 190px;
    padding: 23px 0 0 0;
    position: relative;
    gap: 10px;
}

.search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-icon {
    position: absolute;
    left: 15px;
    width: 18px;
    height: 18px;
    z-index: 1;
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: 10px 50px 10px 45px;
    font-size: 14px;
    border-radius: 10px;
    outline: none;
    color: #000000;
    box-sizing: border-box;
    background-color: #D9D9D9;
    text-indent: 0;
}

.search-input::placeholder {
    color: #A0A0A0;
}

.search-close {
    background: none;
    border: none;
    font-size: 30px;
    color: #246D76;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1015;
    position: relative;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index:999;
    display: none;
}

.overlay.active {
    display: block;
}
.search-btn {
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    gap:5px;
    align-items: center;
    position: relative;
    z-index: 1000;
}
.search-btn img {
    position: relative;
    top:1px;
}
.search-btn .search-text{
    transition: all 0.1s ease;
}
.search-modal.active ~ .search-btn .search-icon,
.search-modal.active ~ .search-btn .search-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    background: none;
    transform: translateY(-50%);
    border: 1px solid #246D76;
    border-radius: 5px;
    width: 55px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.search-submit:hover {
    background: #12383C;
}


.burger-btn {
    position: relative;
    width: 15px;
    height: 15px;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
.burger-btn span {
    position: absolute;
    width: 15px;
    height: 1.81px;
    background-color: #246D76;
    right: 0.2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.burger-btn span:nth-child(1){
    top: 0;
}.burger-btn span:nth-child(2){
    top: 7px;
}
.burger-btn span:nth-child(3){
    top:14px;
}
.burger-btn.active span:nth-child(1){
    transform: rotate(45deg) translate(0.4px,0.4px);
    top:7px;
}
.burger-btn.active span:nth-child(2){
    opacity: 0;
    transform: scale(0);
}
.burger-btn.active span:nth-child(3){
    transform: rotate(-45deg) translate(0.4px, -0.4px);
    top:8px;
}
#trainersTable tbody tr.highlighted {
    background-color: #e6f7ff !important;
    border-left: 3px solid #246D76;
    animation: pulseHighlight 2s ease-in-out;
}

@keyframes pulseHighlight {
    0% { background-color: #e6f7ff; }
    50% { background-color: #b3e0ff; }
    100% { background-color: #e6f7ff; }
}
main {
    border-top: 1px solid #246D76;
    border-bottom: 1px solid #246D76;
    width: 100%;
    box-sizing: border-box;
}

.content-container {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}

.page-header {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    flex-wrap: nowrap;
}

.page-header h1 {
    font-family: "Lora", serif;
    font-weight: bold;
    font-size: 30px;
    color: rgba(36, 109, 118, 1);
    margin-right: 5px;
}
.page-header img {
    width: 36px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.subtitle {
    font-family: "Lora", serif;
    font-size: 40px;
    color: #246D76;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


.top-content-block {
    display: flex;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 50px;
    margin-left: auto; 
    margin-right: auto; 
    width: 90%; 
    max-width: 1300px;

}

.text-content-top {
    flex: 2;
}

.intro-text {
    margin-top: 69px;
    font-size: 25px;
    line-height: 1.6;
    color: #0c3236;
}
.word{
    color: #246D76;
}

.image-content-top {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.image-content-top img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-divider {
    height: 1px;
    background-color:#14484e;
    opacity: 0.5;
    margin-bottom: 40px;
    width: 100%;
}

.bottom-content-block {
    margin-top: 40px;
}
.info {
    background: #CAEDF1;
    width: 80%;
    color: black;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 20px;
}
.fieldset_title {
    margin: auto;
    margin-top: 2%;
    background-color: rgb(36, 109, 118, 0.35);
    width: 42%;
    height: 10%;
    text-align: center;
    padding: 2% 4%;
    border-radius: 30px;
    font-size: 30px;
    font-family: 'Lora', serif;
}
.fieldset_info {
    margin: auto;
    text-align: center;
    width: 70%;
    padding-top: 2%;
    font-size: 25px;
    line-height: 1.4;
}
.list {
    margin: auto;
    margin-top: 3%;
    margin-bottom: 2%;
    width: 80%;
    background-color: #BCD4D7;
    padding: 2% 6%;
    font-size: 25px;
    text-decoration: black;
    border-radius: 15px;
    line-height: 1.4;
}
.trainers::marker{
    color: black;
}
li::marker {
    color: #246D76;
}
.container {
  border-radius: 20px;
  padding: 20px 40px;
  margin-left: auto; 
  margin-right: auto; 
  width: 90%; 
  max-width: 1300px;
}

.title-table {
  font-weight:normal;
  font-family:'Lora', serif;
  font-size: 40px;
  color: #246d76;
  margin-bottom: 8px;
}

.subtitle-table {
  font-family: 'Lora', serif;
  font-size: 20px;
  margin-bottom: 20px;
  margin-left:2px ;
  color: #000000;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  margin-left: 2px;
}

label {
  font-weight: 500;
  color: #004b59;
}

select {
  font-family: '';
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #004b59;
  font-size: 14px;
  cursor: pointer;
}
.controls select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #004b59;
  background: white;
  color: #246d76;
  cursor: pointer;
  min-width: 200px;
}

.city-header {
  font-weight: bold;
  color: #246d76;
  font-size: clamp(20px, 3vw, 28px);
  padding-bottom: 10px;
}
.table-container {
  background-color: #bcd4d7;
  padding: 20px;
  border-radius: 20px;
  padding-top: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  background-color: #f9fcfc;
}
.table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

thead {
  background-color: #246d76;
  color: #f3f9f9;
}

th,
td {
  border: 1px solid #c3d8da;
  padding: 12px 15px;
  text-align: center;
  vertical-align: middle;
}

th {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #eef6f7;
}

tbody tr:hover {
  background-color: #dbeef0;
  transition: 0.3s;
}

td a {
  color: #12545a;
  text-decoration: none;
  font-weight: 700;
}

td a:hover {
  color: #0c2f33;
  text-decoration: underline;
}

table td {
  max-width: 200px;
}

.socials {
  line-height: 1.6;
}
.updated {
  font-weight: normal;
  color: #246D76;
  background-color: transparent; 
  padding: 12px 15px; 
}

tbody td {
  word-break: break-word;
}

.found-organization {
    width: 87%;
    height: auto;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    margin-bottom: 32px;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid #246D76;
    background-color: #CAEDF1;
}
.search-results-container {
    width: 90%;
    max-width: 800px;
    margin: 40px 20px 0 0;
    padding: 20px;
}
.search-results-title {
    font-size: 30px;
    font-family: "Lora", serif;
    color: #12383C;
    margin-bottom: 20px;
    font-weight: normal;
}

.organizations-list {
    margin-left: 18px;
}

.organization-item {
    margin-bottom: 10px;
}

.organization-item:last-child {
    border-bottom: none;
}

.org-link {
    display: block;
    text-decoration: none;
    color: #246D76;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.org-link:hover {
    color: #12383C;
}


.no-results {
    padding: 0;
    color: #246D76;
}
.no-results p {
    margin-bottom: 10px;
    margin-left: 1px;
    font-size: 20px;
}
.no-results ul {
    margin-left: 18px;
    font-size: 20px;
}
.navigation-icon {
    width: 87%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.nav-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.icon-img {
    width: min(198px, 15vw);
    height: min(198px, 15vw);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.zavod-icon { background-image: url('images/zav-icon-light.svg'); }
.dres-icon { background-image: url('images/dres-icon-light.svg'); }
.priut-icon { background-image: url('images/priut-icon-light.svg'); }
.zoo-icon { background-image: url('images/zoo-icon-light.svg'); }
.klinik-icon { background-image: url('images/veterinary-icon-light.svg'); }

.nav-icon:hover .zavod-icon { background-image: url('images/zavod-icon-dark.svg'); }
.nav-icon:hover .dres-icon { background-image: url('images/dres-icon-dark.svg'); }
.nav-icon:hover .priut-icon { background-image: url('images/priut-icon-dark.svg'); }
.nav-icon:hover .zoo-icon { background-image: url('images/zoo-icon-dark.svg'); }
.nav-icon:hover .klinik-icon { background-image: url('images/veterinary-icon-dark.svg'); }

.back-to-search {
    display: inline-block;
    color: #246D76;
    text-decoration: none;
    border: 1px solid #246D76;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.back-to-search:hover {
    background: #246D76;
    color: white;
}
.footer-tel {
    display: none;
}
.footer-tel {
    display: none;
}
footer {
    width: 90%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 30px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    
}
.left-text {
    flex:1;
    font-size: 14px;
    max-width: 45%;
    margin-bottom:20px;
    padding-right: 15px;

}
.left-text img {
    margin-bottom: 8px;
}
.left-text h3 {
    font-weight: 100;
    font-size: 20px;
    margin-bottom: 8px;
}
.right-text {
    flex:1;
    font-size: 14px;
    margin-top: 25px;
    max-width: 35%;
    padding-left: 15px;

}
.right-text a{
    color:#246D76;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;

}
.right-text p {
    margin-top: 8px;
}
.right-text img {
    vertical-align: middle;
}
@media (max-width: 820px) {
    header {
        position: relative;
        align-items: center;
    }

    header nav {
            position: fixed;
            background-color: #D9D9D9;
            padding: 80px 40px 40px 30px;
            margin: 0;
            width: 200px;
            height: 100vh;
            right:-400px;
            top: 0px;
            z-index: 999;
            transition: right 0.3s ease;
    }
    header nav.active {
        right: 0;
    }
    header nav ul {
            display: flex;
            flex-direction: column;
            gap:10px;
    }
      header nav ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    header nav ul li a:hover {
        color: #246D76;
        text-decoration: none;
    }
    header nav ul li a:focus {
        color: #12383C; 
    }
    header nav ul li a:after {
    display: none; 
    }
    header nav.active ~ .search-btn {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    .burger-btn {
        display: block;
        order: 3;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .burger-btn.active {
        background-color: #D9D9D9;
    }
    .logo-header {
        order: 1;
        flex-grow: 1;
    }


    #search span {
        display: none;
    }
    #search img {
        width: 18px;
        height: 18px;
    }
    #search {
        float: none;
        order: 2;
        margin-right: 20px;
        margin-left: auto;
        display: flex;
        align-items: center;
    }
    .search-header {
        width: 75%;
        margin-left: 150px;
        padding: 20px 0 0 0;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .search-input {
        padding: 12px 50px 12px 45px;
        font-size: 16px;
    }
    
    .search-input-icon {
        width: 20px;
        height: 20px;
        left: 12px;
    }
    
    .search-close {
        position: static;
        font-size: 28px;
        width: 28px;
        height: 28px;
        z-index: 1010;
        background: none;
        border: none;
        color: #246D76;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        order: 2;
    }
    
    .search-submit {
        width: 50px;
        height: 30px;
        right: 8px;
    }
    
    .search-submit svg {
        width: 24px;
        height: 16px;
    }
    .search-modal.active ~ header nav.active{
        display: none;
    }
    .search-modal.active ~ header .burger-btn,
    .search-modal.active + header .burger-btn {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .search-modal {
        z-index: 1005;
    }
    .search-input-container {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
        order: 1;
    }

    .search-modal.active ~ .overlay {
        z-index: 1004;
    }


    .no-results p {
        font-size: 18px;
    }
    .no-results ul {
        font-size: 18px;
    }
    .navigation-icon {
        gap: 8px;
        margin-bottom: 24px;
    }
    .icon-img {
        width: min(120px, 15vw);
        height: min(120px, 15vw);
    }
    .nav-icon:hover .zavod-icon { background-image: url('images/zav-icon-light.svg'); }
    .nav-icon:hover .dres-icon { background-image: url('images/dres-icon-light.svg'); }
    .nav-icon:hover .priut-icon { background-image: url('images/priut-icon-light.svg'); }
    .nav-icon:hover .zoo-icon { background-image: url('images/zoo-icon-light.svg'); }
    .nav-icon:hover .klinik-icon { background-image: url('images/veterinary-icon-light.svg'); }

    
    .nav-icon:active .zavod-icon { background-image: url('images/zavod-icon-dark.svg'); }
    .nav-icon:active .dres-icon { background-image: url('images/dres-icon-dark.svg'); }
    .nav-icon:active .priut-icon { background-image: url('images/priut-icon-dark.svg'); }
    .nav-icon:active .zoo-icon { background-image: url('images/zoo-icon-dark.svg'); }
    .nav-icon:active .klinik-icon { background-image: url('images/veterinary-icon-dark.svg'); }

    .top-content-block {
        flex-direction: column; 
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    
    .text-content-top {
        order: 1;
        width: 100%;
    }
    .content-container {
        width: 95%;
        padding: 20px 0;
        box-sizing: border-box;
    }
    .image-content-top {
        order: 2; 
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
    
    .image-content-top img {
        max-width: 80%;
        height: auto;
    }
    .page-header {
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }
    .page-header h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 30px;
    }
    .intro-text {
        font-size: 20px;
        margin-top: 30px; 
        text-align: left; 
    }
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats {
        gap: 20px;
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .feature-title {
        min-width: auto;
    }
    .fieldset_title {
        font-size: 25px;
    }
    .list {
        font-size: 20px;
    }
    #trainersTable.mobile-table {
    min-width: 800px;
    font-size: 14px;
    }

#trainersTable.mobile-table th,
#trainersTable.mobile-table td {
    padding: 8px 6px;
    white-space: nowrap;
}

#trainersTable.mobile-table .name {
    min-width: 150px;
}

#trainersTable.mobile-table .socials {
    min-width: 120px;
}

#trainersTable.mobile-table .updated {
    min-width: 100px;
}
    footer {
        width: 90%;
        max-width: none;
        padding: 20px 0 0 0;
    }
    .left-text {
        font-size: 12px;

    }
    .left-text img {
        margin-bottom: 4px;
    }
    .left-text h3 {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .right-text {
        width: 100%;
        font-size: 12px;
        margin-top: 15px;
    }
    .right-text a{
        color:#246D76;
        font-size: 14px;
        margin-top: 10px;
    }
    .right-text p {
        margin-top: 4px;
        line-height: 1.4;
    }
    .right-text img {
        width: 18px;
        height: 18px;

    }
}
@media (max-width: 480px) {
    header {
        position: relative;
        align-items: center;
    }

    header nav {
            position: fixed;
            background-color: #D9D9D9;
            padding: 80px 40px 40px 30px;
            margin: 0;
            width: 148px;
            height: 100vh;
            right:-296px;
            top: 0px;
            z-index: 999;
            transition: right 0.3s ease;
    }
    header nav.active {
        right: 0;
    }
    header nav ul {
            display: flex;
            flex-direction: column;
            gap:10px;
    }
      header nav ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    header nav ul li a:hover {
        color: #246D76;
        text-decoration: none;
    }
    header nav ul li a:focus {
        color: #12383C; 
    }
    .burger-btn {
        display: block;
        order: 3;
    }
    .burger-btn.active {
        background-color: #D9D9D9;
    }
    .logo-header {
        order: 1;
        flex-grow: 1;
    }
    .logo-header img {
        width: 80px;
        height: 15px;
    }
    #search span {
        display: none;
    }
    #search img {
        width: 16px;
        height: 16px;
    }
    #search {
        float: none;
        order: 2;
        margin-right: 20px;
        display: flex;
        align-items: center;
    }
    .search-header {
        width: 67%;
        margin-left: 110px;
        margin-top: 5px;
        padding: 15px 0 0 0;
        gap: 8px;
    }
    
    .search-input {
        padding: 10px 45px 10px 40px;
        font-size: 16px; 
        border-radius: 8px;
    }
    
    .search-input-icon {
        width: 16px;
        height: 16px;
        left: 10px;
    }
    
    .search-close {
        font-size: 24px;
        width: 24px;
        height: 24px;
        z-index: 1010;
    }
    
    .search-submit {
        width: 40px;
        height: 25px;
        right: 6px;
        border-radius: 4px;
    }
    
    .search-submit svg {
        width: 20px;
        height: 14px;
    }
     .search-modal.active ~ header nav.active {
        display: none;
    }

    .search-modal {
        z-index: 1005;
    }

    .search-modal.active ~ .overlay {
        z-index: 1004;
    }
    .search-results-title {
        font-size: 19px;
        margin-bottom: 7px;
    }
    .top-content-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .text-content-top {
        order: 1;
        width: 100%;
    }
    .subtitle {
        order: 1;
        width: 100%;
        text-align: center;
        font-size: 30px;
    }

    .image-content-top {
        order: 2;
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .intro-text {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 0;
    }
    .page-header {
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 15px;
    }
    .fieldset_title {
        font-size: 19px;
    }
    .fieldset_info {
        font-size: 15px ;
    }
    .trainers {
        font-size: 15px;
    }
    .container {
        width: 80%;
    }
    .title-table {
        text-align: center;
        font-size: 20px;
    }
    .subtitle-table {
        text-align: center;
        font-size: 18px;
    }
    .found-organization {
        width: 70%;
    }
    .org-link {
        font-size: 12px;
    }

    .organizations-list {
        margin-left: 15px;
    }

    .organization-item {
        margin-bottom: 5px;
    }
    .no-results p {
        font-size: 12px;
    }
    .no-results ul {
        font-size: 12px;
    }
    .nav-icon:hover .zavod-icon { background-image: url('images/zav-icon-light.svg'); }
    .nav-icon:hover .dres-icon { background-image: url('images/dres-icon-light.svg'); }
    .nav-icon:hover .priut-icon { background-image: url('images/priut-icon-light.svg'); }
    .nav-icon:hover .zoo-icon { background-image: url('images/zoo-icon-light.svg'); }
    .nav-icon:hover .klinik-icon { background-image: url('images/veterinary-icon-light.svg'); }
    
    .nav-icon:active .zavod-icon { background-image: url('images/zavod-icon-dark.svg'); }
    .nav-icon:active .dres-icon { background-image: url('images/dres-icon-dark.svg'); }
    .nav-icon:active .priut-icon { background-image: url('images/priut-icon-dark.svg'); }
    .nav-icon:active .zoo-icon { background-image: url('images/zoo-icon-dark.svg'); }
    .nav-icon:active .klinik-icon { background-image: url('images/veterinary-icon-dark.svg'); }
footer {
        display: none;
    }
    .footer-tel {
        display: flex !important;
        width: 90%;
        margin: 0 auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 4px;
    }
    .left-text-tel {
        font-size: 6px;
    }
    .left-text-tel img {
        margin-bottom: 4px;
        width: 75px;
    }
    .left-text-tel h3 {
        font-weight: 100;
        font-size: 9px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .right-text-tel {
        font-size: 8px;
    }
    .right-text-tel a{
        color:#246D76;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 8px;
        margin-top: 4px;
    }
    .right-text-tel p {
        font-size: 8px;
        line-height: 1.3;
    }
    .right-text-tel img {
        width: 10.82px;
        height: 7.8px;
    }
}
