html {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden; /* Отключает горизонтальный скролл */
}

* {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    min-height: 100%;
}

@font-face {
    src: local("Inter"),
        url(./Inter.ttf) format("truetype");
    font-family: "Inter";
}


.h1 {
    font-family: "Inter", sans-serif;
    font-size: 6.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #1A1A1A;
    margin: 0;
}

.white {
    color: white;
}

.h2 {
    font-family: "Inter", sans-serif;
    font-size: 4vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #1A1A1A;
    margin: 0;
}

.h3 {
    font-family: "Inter", sans-serif;
    font-size: 1.2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A;
    max-width: 30vw;
    text-transform: uppercase;
}

.t1 {
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A;
    max-width: 30vw;
    margin: 0;
}

.t2 {
    font-family: "Inter", sans-serif;
    font-size: 0.7vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A;
    max-width: 30vw;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}



.gr {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2000;
    gap: 0;
}



.menu {
    width: 100%;
    height: 5vh;
    background-color: white;
    z-index: 1000;
    margin: 0;
    padding: 0 40px;
    border-bottom: 1px solid #1A1A1A;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 10px;
}

.menu-main {
    display: flex;
    justify-content: center;
    gap: 1vw;
    list-style: none;
    font-size: 0;
    padding: 0;
    margin: 0;
    min-height: 3vh;
}

.menu-main a {
    position: relative;
    text-decoration: none;
    color: rgba(26, 26, 26, 0.8);
    font-size: 12px;
    padding-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.menu-main a.active {
    color: #1A1A1A;
    font-weight: 700;
    text-decoration: underline;
}


.menu-main li {
    display: flex;
    margin: 0;
    padding: 0;
}


.dropbtn {
    background: none;
    padding: 8px;
    border-radius: 100px;
    font-size: 1vw;
    width: max-content;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 5vh;
}

.menu.white .dropbtn {
    color: #1A1A1A;
    background-color: white;
}

.menu.dark .dropbtn {
    color: white;
    background-color: #1A1A1A;
}


.dropbtn:hover, .dropbtn:focus {
    background-color: #1A1A1A;
    color: white;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: white;
}

.dropdown-content {
    display: none;
    position: fixed;
    width: 100px;
    height: 100px;
    margin-top: 20px;
    top: 20px;
    left: 50%;
    background-color: white;
    font-size: 12px;
    padding: 10px 6px;
    border: 1px #1A1A1A solid;
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dropdown-content.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important; 
    z-index: 11000;
}


.dropdown-content a {
    position: relative;
    color: #1A1A1A;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #1A1A1A; /* Цвет линии */
}

.dropdown-content a:hover {
    text-decoration: underline;
}

.menu-main a.active {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Толщина линии */
    text-underline-offset: 4px; /* Отступ от текста */
    text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
}


.burger {
    display: none;
    flex-direction: column;
    gap: 9px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    z-index: 110;
    overflow: hidden;
}

.burger span {
    display: block;
    width: 40px;
    height: 4px;
    background: #1A1A1A;
    transition: 0.3s ease-in-out;
}


.burger.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}


.link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}


.link-accent {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.7vw;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    color: #1A1A1A; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}



.screen {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 100vh;
    width: 100vw;
    padding: 10vh 80px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    background-color: #000;
    overflow: hidden;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 2vh;
    z-index: 10;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 6vh;
    gap: 4vh;
}

footer {
    position: relative;
    left: 0;
    bottom: 0;
    background-color: #1A1A1A;
    color: white;
    padding: 4vh 40px;
    text-align: left;
}

.footer-container {
    width: 100%;
    margin: 0;
}

.footer-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1vw;
    text-align: left;
    font-size: 12px;
    margin-bottom: 30px;
    pointer-events: auto;
}

.footer-menu div {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    flex-grow: 1;
    margin-left: 40px;
}

.footer-menu a {
    position: relative;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    z-index: 10;
}

.accent {
    position: relative;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    z-index: 10;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-form {
    display: flex;
    justify-content: center;
    font-size: 12px;
    gap: 160px;
    margin: 80px 0;
    padding: 0 40px 0;
    height: 40px;
}

.footer-form input {
    display: flex;
    align-items: center;
    padding: 16px;
    width: 40%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 12px;
    line-height: 1;
}

.footer-form input::placeholder {
    color: gray;
    font-size: 12px;
}

.footer-button {
    background: white;
    color: #1A1A1A;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
    max-width: 20vw;
    font-size: 12px;
}

.footer-bottom {
    width: 100%;
    font-size: 12px;
    border-top: 2px solid white;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-bottom div {
    flex-grow: 1;
    text-align: center;
    margin-top: 40px;
}

.firma {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-wrap: nowrap;
}

.grid-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 200px;
}


.screen2 {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100vw;
    padding: 10vh 80px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    background-color: white;
    overflow-x: hidden;
}

.header2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 0;
    gap: 4vh;
}

.grid-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 100px 80px 80px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.grid-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 0 80px;
}

.grid-3 svg {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

.grid-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 150px;
    padding: 40px 80px 80px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 100px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
}

.tc4 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img2 {
    max-width: 100%;
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
}

.tc5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
}

.img4 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.img5 {
    max-width: 100%;
    grid-column: 4 / 7;
    grid-row: 2 / 4;
    overflow: hidden;
    position: relative;
}

.tc6 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    overflow: hidden;
    position: relative;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 80px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
}

.tc7 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img7 {
    max-width: 100%;
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img8 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.tc8 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    max-width: 100%;
    grid-column: 4 / 7;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img10 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img11 {
    max-width: 100%;
    grid-column: 3 / 6;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.grid-7 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 40px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px 40px 0;
}

.tc9 {
    max-width: 100%;
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img12 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img13 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img14 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img15 {
    max-width: 100%;
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.grid-8 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 40px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0 40px 40px;
}

.tc10 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img16 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img17 {
    max-width: 100%;
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img18 {
    max-width: 100%;
    grid-column: 6 / 7;
    grid-row: 3 / 3;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img19 {
    max-width: 100%;
    grid-column: 4 / 6;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.img20 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 4 / 5;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.tc11 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-top: 80px; 
}

.grid-9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 80px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 20px 40px 100px;
}

.tc-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-100 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px 40px;
    position: relative;
    top: -80px;
}

.grid-102 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 80px;
    background-image: url('/photo/audiovusal/entrelazos/img31.jpg');
}


.my-table {
    width: 80%;
    border-collapse: collapse;
    background-color: #1A1A1A;
    margin-top: 80px;
    border: 1px solid #1A1A1A;
}

.my-table th, .my-table td {
    border: 1px solid white;
    padding: 20px;
    text-align: center;
    width: auto;
}

.my-table th:first-child,
.my-table td:first-child {
    width: 20%;
}

.my-table th {
    background-color: white;
    font-weight: bold;
}

.my-table td {
    color: white;
}

.grid-19 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 20px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 100px 40px 0;
}

.tc12 {
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
}

.img32 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img33 {
    max-width: 100%;
    grid-column: 11 / 13;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
}

.img34 {
    max-width: 100%;
    grid-column: 2 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative; 
}

.tc13 {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    grid-column: 8 / 10;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
}

.img35 {
    max-width: 100%;
    grid-column: 6 / 8;
    grid-row: 2 / 4;
    overflow: hidden;
    position: relative;  
}



.grid-21 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4,1fr);
    gap: 20px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.img36 {
    max-width: 100%;
    grid-column: 11 / 12;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img41 {
    max-width: 100%;
    grid-column: 2 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.tc13 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    grid-column: 8 / 10;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;
}

.tc14 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    grid-column: 6 / 8;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative; 
}

.img42 {
    max-width: 100%;
    grid-column: 6 / 7;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.grid-20 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
    grid-column: 1 / 5;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
}

.grid-20 img {
    max-height: 500px;
}

.img43 {
    max-width: 100%;
    grid-column: 8 / 12;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.grid-22 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 40px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.img44 {
    max-width: 100%;
    grid-column: 4 / 6;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.tc15 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative; 
}

.img45 {
    max-width: 100%;
    grid-column: 2 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.tc16 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    grid-column: 7 / 9;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative; 
}

.img46 {
    max-width: 100%;
    grid-column: 7 / 8;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;  
}

.img47 {
    max-width: 100%;
    grid-column: 10 / 11;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img48 {
    max-width: 100%;
    grid-column: 8 / 9;
    grid-row: 1 / 4;
    overflow: hidden;
    position: relative;  
}

.img49 {
    max-width: 100%;
    grid-column: 11 / 12;
    grid-row: 1 / 4;
    overflow: hidden;
    position: relative;  
}

.grid-23 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 40px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0 40px 200px;
}

.img51 {
    max-width: 100%;
    grid-column: 5 / 8;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img52 {
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;  
}

.img53 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img54 {
    max-width: 100%;
    grid-column: 5 / 6;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img55 {
    max-width: 100%;
    grid-column: 6 / 7;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img56 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 1 / 4;
    overflow: hidden;
    position: relative;  
}

.tc17 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 3 / 3;
    overflow: hidden;
    position: relative;  
}

.tc18 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    grid-column: 9 / 11;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img57 {
    max-width: 100%;
    grid-column: 9 / 11;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img61 {
    max-width: 100%;
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.grid-24 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 40px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 0 40px 200px;
}

.img60 {
    max-width: 100%;
    grid-column: 7 / 10;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img62 {
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;  
}

.img59 {
    max-width: 100%;
    grid-column: 5 / 7;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.tc19 {
    max-width: 100%;
    grid-column: 4 / 6;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;  
}


.img63 {
    max-width: 100%;
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.tc20 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img61 {
    max-width: 100%;
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img64 {
    max-width: 100%;
    grid-column: 9 / 12;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img65 {
    max-width: 100%;
    grid-column: 10 / 12;
    grid-row: 1 / 3;
    overflow: hidden;
    position: relative;  
}

.tc21 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
}

.grid-25 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 100px;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 100px;
}

.tc22 {
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px; 
}

.img67 {
    max-width: 100%;
    grid-column: 4 / 6;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.tc23 {
    max-width: 100%;
    grid-column: 7 / 12;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img69 {
    max-width: 100%;
    grid-column: 2 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img70 {
    max-width: 100%;
    grid-column: 7 / 11;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.grid-26 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    padding: 100px 100px 100px;
}

.grid-26 img {
    width: 60%;
}



.swiper {
    position: relative;
    width: 70%;
    max-width: 2500px;
    height: auto;
    overflow: visible;
    margin: 60px 0 100px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1A1A1A;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100px;
    height: 100px;
    background-color: transparent;
    padding: 50px;
}

.swiper-button-next {
    left: 20%;
}

.swiper-button-prev {
    left: -200px;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: bold;
}

.tc23 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
    margin-top: 80px;
}

.grid-27 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4,1fr);
    gap: 40px;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 40px 80px 160px;
}

.img73 {
    max-width: 100%;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img74 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img75 {
    max-width: 100%;
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img76 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img77 {
    max-width: 100%;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img78 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img79 {
    max-width: 100%;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img80 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img81 {
    max-width: 100%;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img82 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img83 {
    max-width: 100%;
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.img84 {
    max-width: 100%;
    grid-column: 4 / 5;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}


.img85 {
    max-width: 100%;
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    overflow: hidden;
    position: relative;  
}

.img86 {
    max-width: 100%;
    grid-column: 3 / 4;
    grid-row: 4 / 5;
    overflow: hidden;
    position: relative;  
}

.grid-28 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3,1fr);
    gap: 100px;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 40px 0 160px; 
}

.grid-29 {
    padding: 40px 200px 120px;
}


.img87 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img88 {
    max-width: 100%;
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    overflow: hidden;
    position: relative;  
}

.img89 {
    max-width: 100%;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img90 {
    max-width: 100%;
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    overflow: hidden;
    position: relative;  
}

.img91 {
    max-width: 100%;
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    overflow: hidden;
    position: relative;  
}

.tc24 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 80px 0 100px;
    width: 80%;
}

.bttn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vid-com {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    border: none;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 30px;
    background-color: #1A1A1A;
    cursor: pointer;
    color: white;
}

@media (hover: hover) {
    .dropbtn:hover, .dropbtn:focus {
        background-color: #1A1A1A;
        color: white;
    }
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    body {
        padding: 0;
        margin: 0;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .h1 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 12vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
        color: #1A1A1A;
        margin: 1vh 0;
    }

    .white {
        color: white;
    }

    .h3 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 5vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center !important;
        color: #1A1A1A;
        margin: 1vh 0;
        min-width: 100%;
    }

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 3vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #1A1A1A;
        min-width: 100%;
    }

    .t2 {
        font-family: "Inter", sans-serif;
        font-size: 3vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #1A1A1A;
        min-width: 100%;
    }

    .ttt {
        display: none;
        visibility: none;
        opacity: 0;
    }

    .fff {
        text-transform: uppercase;
        text-align: center;
    }

    nav {
        height: 12%;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: 10%;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px;
        z-index: 1000;
        background: white; 
    }


    .menu-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 100;
        padding: 10px;
        justify-content: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        font-size: 4px !important;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .menu-main.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .link {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 12px;
        font-style: normal;
        text-decoration: none;
        font-weight: 400;
        line-height: normal;
        color: #1A1A1A; 
        padding: 0;
        letter-spacing: 0;
        text-align: center;
    }
    
    .accent {
        display: block;
        font-family: "Inter", sans-serif;
        font-style: normal;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 700;
        line-height: normal;
        color: #1A1A1A; 
        padding: 0;
        letter-spacing: 0;
        text-align: center;
    }

    .dropbtn {
        position: absolute;
        top: 30%;
        right: 20px;
        background: none;
        color: #1A1A1A;
        padding: 4px;
        width: 56px;
        height: 56px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .lang-icon {
        width: 52px;
        height: 52px;
    }
    .dropbtn:focus {
        background-color: #1A1A1A;
        color: white;
    }
    
    .dropdown {
        position: absolute;
        top: 10%;
        transform: translateY(-10%);
    }
    
    .dropdown-content {
        position: absolute;
        width: 160px;
        height: 150px;
        margin-top: 20px;
        top: 100%;
        left: 55%;
        background-color: white;
        font-size: 4vw;
        padding: 10px;
        border: 1px #1A1A1A solid;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .dropdown-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        color: #1A1A1A;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    .dropdown-content a:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #1A1A1A; /* Цвет линии */
    }
    
    .dropdown-content a:hover {
        text-decoration: underline;
    }
    
    .menu-main a.active {
        text-decoration: underline;
        text-decoration-thickness: 4px; /* Толщина линии */
        text-underline-offset: 10px; /* Отступ от текста */
        text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
    }
    

    .burger {
        display: flex;
        position: absolute;
        top: 30%;
        left: 32px;
        margin-bottom: 20px;
    }


    
    .screen {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        padding: 80px 20px;
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        background-color: #000;
        overflow: visible;
    }

    .screen2 {
        width: 100vw;
        max-width: 100vw;
        height: 100%;
        padding: 80px 20px; 
        overflow-x: hidden;
    }

    .white-bg {
        background-color: white;
    }

    .content {
        width: 335px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 10;
    }

    .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        position: relative;
        top: 0;
        width: 100%;
        text-align: center;
        padding: 4vh 20px 0;
        z-index: 100;
    }

    .grid-1 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 80px 20px;
    }

    .header2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .grid-2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        padding: 20px 0;
    }
    
    .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 0 40px;
    }

    .j {
       display: none;
        visibility: hidden;
        opacity: 0; 
    }

    .grid-3 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    
    
    .tc1 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
    }
    
    .tc2 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
    }

    
    .tc3 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
    }

    .grid-4 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
        padding: 20px 0 80px;
    }

    .grid-5 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
    }
    
    .tc4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img2 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 4;
        overflow: hidden;
        position: relative;
    }
    
    .tc5 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
    }

    .img3 {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    .img4 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
    }
    
    .img5 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;
    }
    
    .tc6 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;
    }

    .grid-6 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
    }
    
    .tc7 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img7 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img8 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .tc8 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        max-width: 100%;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img10 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img11 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }

    .grid-7 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
    }
    
    .tc9 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img12 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img13 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img14 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img15 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }

    .grid-8 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0 80px;
    }
    
    .tc10 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
    }
    
    .img16 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img17 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img18 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img19 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img20 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .tc11 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }

    .grid-9 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2,1fr);
        gap: 40px;
        width: auto;
        height: auto;
        padding: 20px 20px 80px;
    }
    
    .tc-small {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .grid-10 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 20px 20px 40px;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-10 p {
        max-width: 250px;
    }
    
    .tc-xs-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tc-xs-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tc-xs-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tc-xs-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tc-xs-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .tc-xs-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .grid-100 {
        display: none;
        visibility: none;
        opacity: 0;
    }

    .grid-102 {
        display: none;
        visibility: none;
        opacity: 0;
    }
    
    .grid-11 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        gap: 40px;
        visibility: visible;
        opacity: 1;
    }
    
    .line-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .line {
        display: none;
        visibility: none;
        opacity: 0;
    }
    
    
    .tc-circle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 40px;
        border: 1px solid black;
        border-radius: 60%;
        max-width: 290px;
        margin-top: 40px;
    }
    
    .tc-circle p {
        max-width: 250px;
    }

    .grid-13 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-13 img {
        max-width: 80%;
    }

    .img29 {
        display: block;
        max-width: 6%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        margin: 0;
        padding: 0; 
    }

    .img30 {
        display: block;
        max-width: 60%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;
        margin-left: 80px; 
    }

    .grid-14 {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-15 {
        position: relative;
        left: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border: 1px solid white;
        border-radius: 60%;
        margin: 0;
        width: 185px;
        height: 185px;
        gap: 10px;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-16 {
        position: relative;
        left: -30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border: 1px solid white;
        border-radius: 60%;
        margin: 0;
        width: 185px;
        height: 185px;
        gap: 10px;
        visibility: visible;
        opacity: 1;
    }
    
    
    
    .tc-xs-7 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tc-xs-7 p {
        text-align: center;
        width: 100%;
        color: white;
    }
    
    .tc-xs-8 p {
        text-align: center;
        width: 100px;
        color: white;
    }
    
    .tc-xs-8 {
        position: relative;
        left: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0;
    }
    
    .tc-xs-9 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tc-xs-9 p {
        text-align: center;
        min-width: 100px;
        color: white;
    }

    .grid-17 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,1fr);
        gap: 40px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 40px 10px;
        background-image: url('/photo/audiovusal/entrelazos/img31.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: repeat;
        color: white;
        visibility: visible;
        opacity: 1;
    }
    
    .grid-18 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        visibility: visible;
        opacity: 1;
    }
    
    .tc-xs-10 {
        position: relative;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tc-xs-10 p {
        text-align: center;
        min-width: 100%;
        color: white;
    }

    .my-table,
    .my-table thead,
    .my-table tbody,
    .my-table th,
    .my-table td,
    .my-table tr {
        display: block;
        width: 100%;
    }

    .my-table thead {
        display: none;
    }
    
    .my-table tr {
        margin-bottom: 30px;
        border: none;
        padding: 10px;
    }
    
    .my-table td {
        text-align: left;
        padding: 10px 20px;
        position: relative;
        padding-left: 50%;
        white-space: pre-wrap;
    }

    .my-table td::before {
        position: absolute;
        top: 10px;
        left: 20px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #ccc;
        content: attr(data-label);
    }

    .grid-19 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    
    .tc12 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
    }
    
    .img32 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img33 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
    }
    
    .img34 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative; 
    }
    
    .tc13 {
        display: flex;
        flex-direction: column;
        max-width: 80%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
    }
    
    .img35 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-21 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    
    .img36 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img41 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc133 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
    }
    
    .tc14 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative; 
    }
    
    .img42 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-20 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
    }
    
    .grid-20 img {
        max-height: 120px;
    }
    
    .img43 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-22 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    
    .img44 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc15 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative; 
    }
    
    .img45 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .tc16 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative; 
    }
    
    .img46 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img47 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img48 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img49 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }

    .grid-23 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
    }
    
    .img51 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img52 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img53 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img54 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img55 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img56 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc17 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .tc18 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img57 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img61 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }

    .grid-24 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    
    .img60 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img62 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img59 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .tc19 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img63 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .tc20 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img64 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img65 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .tc21 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 200px;
    }

    .tc21 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 0 40px;
    }
    
    .grid-25 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 0;
    }
    
    .tc22 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px; 
    }
    
    .img67 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .tc23 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img69 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img70 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }

    .grid-26 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 80px;
        padding: 40px 0 100px;
    }
    
    .grid-26 img {
        width: 100%;
    }

    .swiper {
        width: 100%;
        margin: 20px 0 80px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 20%;
        transform: translateY(-20%);
        z-index: 10;
        width: 8px;
        height: 8px;
        background-color: transparent;
        padding: 0;
    }

    .swiper-button-next {
        right: 10px;
        left: auto;
    }

    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 6px;
        color: #1A1A1A;
    }

    .tcc23 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        max-width: 100%;
        margin: 40px 0 0;
        padding: 0;
    }

    .grid-27 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7,1fr);
        gap: 20px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0 80px;
    }
    
    .img73 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img74 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img75 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img76 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img77 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img78 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img79 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img80 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img81 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img82 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img83 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    .img84 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img85 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;  
    }
    
    .img86 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-28 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3,1fr);
        gap: 20px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0 80px; 
    }
    
    .img87 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img88 {
        max-width: 100%;
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img89 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img90 {
        max-width: 100%;
        grid-column: 3 / 5;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img91 {
        max-width: 100%;
        grid-column: 2 / 4;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc24 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        min-width: 100%;
        margin: 40px 0 80px;
        padding: 0;
    }

    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 8vh 20px;
        text-align: left;
        font-size: 18px;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        text-align: left;
        font-size: 18px;
        margin-bottom: 10vh;
        pointer-events: auto;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 18px;
        z-index: 10;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
        gap: 40px;
        margin: 120px 0;
        padding: 0 40px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 10px;
        width: 100%;
        height: 50px;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 18px;
        line-height: 1;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 18px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        min-width: 100%;
        font-size: 18px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 10px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 20px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .bttn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .vid-com {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        border: none;
        height: 40px;
        font-family: "Inter", sans-serif;
        font-size: 3vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 30px;
        background-color: #1A1A1A;
        cursor: pointer;
        color: white;
    }

    

}

@media screen and (min-width: 481px) and (max-width: 768px) and (hover: none) {
    body {
        overflow-x: hidden;
    }

    .overlay-text {
        display: none;
        visibility: none;
        opacity: 0;
    }

    .h1 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 12vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
        color: #1A1A1A;
        margin: 1vh 0;
    }

    .white {
        color: white;
    }

    .h2 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 5vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center !important;
        color: #1A1A1A;
        margin: 0;
        min-width: 100%;
    }

    .h3 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 3vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        text-align: center !important;
        color: #1A1A1A;
        margin: 0;
        min-width: 100%;
    }

    .t1 {
        font-size: 3vw;
        text-align: center;
        min-width: 100%;
    }

    .t2 {
        font-family: "Inter", sans-serif;
        font-size: 2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #1A1A1A;
        min-width: 100%;
    }

    .t1-outmargin {
        font-size: 3vw;
        text-align: center;
        min-width: 100%;
    }

    nav {
        height: 100px;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px;
        z-index: 1000;
        background: white; 
    }


    .menu-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 100;
        padding: 10px;
        justify-content: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        font-size: 4px !important;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .menu-main.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .dropbtn {
        position: absolute;
        top: 30%;
        right: 20px;
        background: none;
        color: #1A1A1A;
        padding: 4px;
        width: 56px;
        height: 56px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .lang-icon {
        width: 52px;
        height: 52px;
    }
    .dropbtn:focus {
        background-color: #1A1A1A;
        color: white;
    }
    
    .dropdown {
        position: absolute;
        top: 10%;
        transform: translateY(-10%);
    }
    
    .dropdown-content {
        position: absolute;
        width: 160px;
        height: 150px;
        margin-top: 20px;
        top: 100%;
        left: 55%;
        background-color: white;
        font-size: 4vw;
        padding: 10px;
        border: 1px #1A1A1A solid;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .dropdown-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        color: #1A1A1A;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    .dropdown-content a:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #1A1A1A; /* Цвет линии */
    }
    
    .dropdown-content a:hover {
        text-decoration: underline;
    }
    
    .menu-main a.active {
        text-decoration: underline;
        text-decoration-thickness: 4px; /* Толщина линии */
        text-underline-offset: 10px; /* Отступ от текста */
        text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
    }
    

    .burger {
        display: flex;
        position: absolute;
        top: 30%;
        left: 32px;
        margin-bottom: 20px;
    }

    
    .screen {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100vw;
        height: 100%;
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        background-color: white;
        overflow: visible;
    }

    .content {
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 10;
        padding-bottom: 80px;
    }

    .screen {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100vw;
        height: 100%;
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        background-color: #000;
        overflow: visible;
    }

    .content {
        width: 100vw;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 10;
        padding-bottom: 80px;
        pointer-events: none;
    }

    .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        position: relative;
        top: 100px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 4vh 40px 2vh;
        z-index: 1000;
    }

    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 8vh 20px;
        text-align: left;
        font-size: 18px;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        padding: 80px 0 0;
        max-width: 100%;
        overflow: hidden;
        font-size: 18px;
        margin-bottom: 10vh;
        pointer-events: auto;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 18px;
        z-index: 10;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
        gap: 40px;
        margin: 0 0 80px;
        padding: 0 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 10px;
        width: 100%;
        height: 50px;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 18px;
        line-height: 1;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 18px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        min-width: 100%;
        font-size: 18px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 10px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 20px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .grid-1 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 80px 40px;
    }

    .header2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 100px 0;
    }
    
    .grid-2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
        padding: 20px 100px 100px;
    }
    
    .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 0 40px;
    }

    .j {
       display: none;
        visibility: hidden;
        opacity: 0; 
    }

    .grid-3 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    
    
    .tc1 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
    }
    
    .tc2 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
        text-align: center;
    }

    
    .tc3 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
        padding: 0 40px;
    }

    .grid-4 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
        padding: 20px 100px 80px;
    }

    .grid-5 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        padding: 20px 100px 80px;
    }
    
    .tc4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin-top: 80px; 
    }
    
    .img2 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
    }
    
    .tc5 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        text-align: left;
    }

    .tc5 p {
        text-align: left;
        max-width: 100%;
    }

    .img3 {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    .img4 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
    }
    
    .img5 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
    }
    
    .tc6 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        text-align: left;
    }

    .tc6 p {
        text-align: left;
        max-width: 100%;
    }

    .grid-6 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        padding: 20px 100px 80px;
    }
    
    .tc7 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }

    .tc7 p {
        text-align: left;
        max-width: 100%;
    }
    
    .img7 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .img8 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .tc8 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }

    .tc8 p {
        text-align: left;
        max-width: 100%;
    }
    
    .img10 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    
    .img11 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }

    .grid-7 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        padding: 20px 100px 80px;
    }
    
    .tc9 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .img12 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .img13 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .img14 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;  
    }
    
    .img15 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }

    .grid-8 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        padding: 20px 100px 80px;
    }
    
    .tc10 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .img16 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    
    .img17 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0; 
    }
    
    .img18 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    
    .img19 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    
    .img20 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
    
    .tc11 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / -1;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .grid-9 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 40px;
        width: auto;
        height: auto;
        padding: 20px 80px 80px;
    }

    .grid-9 .text-container {
        max-width: 100%;
    }
    
    .tc-small {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .grid-10 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 20px 100px 40px;
    }
    
    .grid-10 p {
        max-width: 120px;
        text-align: center;
        margin: auto;
    }
    
    .tc-xs-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .tc-xs-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .tc-xs-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .tc-xs-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .tc-xs-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .tc-xs-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .grid-11 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
    }
    
    .grid-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        gap: 40px;
    }
    
    .line-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .line {
        display: none;
        visibility: none;
        opacity: 0;
    }
    
    
    .tc-circle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 40px;
        border: 1px solid black;
        border-radius: 60%;
        max-width: 290px;
        margin-top: 40px;
    }
    
    .tc-circle p {
        max-width: 250px;
    }

    .grid-13 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        padding: 20px 40px 80px;
    }
    
    .grid-13 img {
        max-width: 80%;
    }

    .img29 {
        display: block;
        max-width: 6%;
        height: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
        padding: 0; 
    }

    .img30 {
        display: block;
        max-width: 60%;
        height: auto;
        overflow: hidden;
        position: relative;
        margin-left: 80px; 
    }

    .grid-14 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .grid-15 {
        position: relative;
        left: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        border: 1px solid white;
        border-radius: 60%;
        margin: 0;
        width: 350px;
        height: 350px;
        gap: 10px;
    }
    
    .grid-16 {
        position: relative;
        left: -80px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border: 1px solid white;
        border-radius: 60%;
        margin: 0;
        width: 350px;
        height: 350px;
        gap: 10px;
    }
    
    
    
    .tc-xs-7 {
        position: relative;
        left: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tc-xs-7 p {
        text-align: center;
        width: 100%;
        color: white;
    }
    
    .tc-xs-8 p {
        text-align: center;
        width: 100px;
        color: white;
    }
    
    .tc-xs-8 {
        position: relative;
        left: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0;
    }
    
    .tc-xs-9 {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        margin: 0;
        max-width: 80px !important;
    }
    
    .tc-xs-9 p {
        text-align: center;
        min-width: 120px !important;
        max-width: 140px !important;
        color: white;
    }

    .grid-17 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,1fr);
        gap: 40px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 40px 10px;
        background-image: url('/photo/audiovusal/entrelazos/img31.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: repeat;
        color: white;
    }
    
    .grid-18 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .tc-xs-10 {
        position: relative;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .tc-xs-10 p {
        text-align: center;
        min-width: 100%;
        color: white;
    }

    .my-table {
        width: 90%;
        border-collapse: collapse;
        background-color: #1A1A1A;
        margin-top: 80px;
        border: 1px solid #1A1A1A;
    }
    
    .my-table th, .my-table td {
        border: 1px solid white;
        padding: 10px;
        text-align: center;
        width: auto;
    }
    
    .my-table th:first-child,
    .my-table td:first-child {
        width: 20%;
    }
    
    .my-table th {
        background-color: white;
        font-weight: bold;
    }
    
    .my-table td {
        color: white;
    }

    .grid-19 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }
    
    .tc12 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
    }
    
    .img32 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img33 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;
    }
    
    .img34 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative; 
    }
    
    .tc13 {
        display: flex;
        flex-direction: column;
        max-width: 80%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;
    }
    
    .img35 {
        display: block;
        max-width: 100%;
        height: auto;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-21 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 80px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 100px;
    }
    
    .img36 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: auto;
        overflow: hidden;
        position: relative;  
    }
    
    .img41 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: auto;
        overflow: hidden;
        position: relative;  
    }
    
    .tc133 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: auto;
        overflow: hidden;
        position: relative;
    }
    
    .tc14 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: auto;
        overflow: hidden;
        position: relative;
        padding-top: 80px; 
    }
    
    .img42 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: auto;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-20 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;
    }
    
    .grid-20 img {
        max-height: 120px;
    }
    
    .img43 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-22 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        width: auto;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 100px;
    }
    
    .img44 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc15 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative; 
    }
    
    .img45 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .tc16 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative; 
    }
    
    .img46 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img47 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img48 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img49 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }

    .grid-23 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 100px;
    }
    
    .img51 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img52 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img53 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img54 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img55 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .img56 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc17 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .tc18 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img57 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img61 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }

    .grid-24 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 100px;
    }
    
    .img60 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img62 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img59 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .tc19 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img63 {
        display: none;
        visibility: none;
        opacity: 0;  
    }
    
    .tc20 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img64 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img65 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }


    .tc21 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 0 100px;
    }
    
    .grid-25 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4,1fr);
        gap: 20px;
        width: auto;
        height: auto;
        padding: 20px 100px;
    }
    
    .tc22 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px; 
    }
    
    .img67 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .tc23 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img69 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img70 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }

    .grid-26 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 80px;
        padding: 40px 100px 100px;
    }
    
    .grid-26 img {
        width: 100%;
    }

    .swiper {
        width: 80%;
        margin: 20px 0 80px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 20%;
        transform: translateY(-20%);
        z-index: 10;
        width: 8px;
        height: 8px;
        background-color: transparent;
        padding: 0;
    }

    .swiper-button-next {
        right: 10px;
        left: auto;
    }

    .swiper-button-prev {
        left: 10px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 6px;
        color: #1A1A1A;
    }

    .tcc23 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        max-width: 100%;
        margin: 40px 0;
        padding: 0;
        padding: 0 100px;
    }

    .grid-27 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7,1fr);
        gap: 20px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 100px 80px;
    }
    
    .img73 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img74 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img75 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img76 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img77 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img78 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .img79 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img80 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        overflow: hidden;
        position: relative;  
    }
    
    .img81 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img82 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 5 / 6;
        overflow: hidden;
        position: relative;  
    }
    
    .img83 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    .img84 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 6 / 7;
        overflow: hidden;
        position: relative;  
    }
    
    
    .img85 {
        max-width: 100%;
        grid-column: 1 / 2;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;  
    }
    
    .img86 {
        max-width: 100%;
        grid-column: 2 / 3;
        grid-row: 7 / 8;
        overflow: hidden;
        position: relative;  
    }
    
    .grid-28 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3,1fr);
        gap: 20px;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        padding: 20px 100px 80px; 
    }
    
    .img87 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img88 {
        max-width: 100%;
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        overflow: hidden;
        position: relative;  
    }
    
    .img89 {
        max-width: 100%;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img90 {
        max-width: 100%;
        grid-column: 3 / 5;
        grid-row: 2 / 3;
        overflow: hidden;
        position: relative;  
    }
    
    .img91 {
        max-width: 100%;
        grid-column: 2 / 4;
        grid-row: 3 / 4;
        overflow: hidden;
        position: relative;  
    }
    
    .tc24 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        min-width: 100%;
        margin: 40px 0 80px;
        padding: 0 100px;
    }

    .bttn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .vid-com {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        border: none;
        height: 40px;
        font-family: "Inter", sans-serif;
        font-size: 3vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 30px;
        background-color: #1A1A1A;
        cursor: pointer;
        color: white;
    }

    

}

@media screen and (min-width: 1441px) and (max-width: 2560px) {
    .menu {
        width: 100%;
        height: 5vh;
        background-color: white;
        z-index: 1000;
        margin: 0;
        padding: 0 40px;
        border-bottom: 1px solid #1A1A1A;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: 10px;
    }
    
    .menu-main {
        display: flex;
        justify-content: center;
        gap: 1vw;
        list-style: none;
        font-size: 0;
        padding: 0;
        margin: 0;
        min-height: 3vh;
    }
    
    .menu-main a {
        position: relative;
        text-decoration: none;
        color: rgba(26, 26, 26, 0.8);
        font-size: 20px;
        padding-bottom: 10px;
        transition: color 0.3s ease-in-out;
    }
    
    .menu-main a.active {
        color: #1A1A1A;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    .menu-main li {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .dropbtn {
        background: none;
        padding: 8px;
        border-radius: 100px;
        font-size: 1vw;
        width: max-content;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 5vh;
    }
    
    

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        line-height: 1.2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 30vw;
        margin: 20px 0;
    }


    .dropbtn svg {
        width: 30px;
        height: 30px;
    }

    .dropdown-content {
        display: none;
        position: fixed;
        width: 160px;
        height: 160px;
        margin-top: 40px;
        top: 20px;
        left: 50%;
        font-size: 20px;
        padding: 10px 6px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .dropdown-content.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    


    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 4vh 80px;
        text-align: left;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
        pointer-events: auto;
    }

    .footer-menu .link {
        font-size: 18px;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        flex-grow: 1;
        margin-left: 20px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
    }
    
    .accent {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        justify-content: center;
        font-size: 16px;
        gap: 160px;
        margin: 80px 0;
        padding: 0 40px 0;
        height: 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 16px;
        width: 40%;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 12px;
        line-height: 1;
        height: 60px;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 20px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        max-width: 20vw;
        font-size: 20px;
        height: 60px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 18px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 40px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }
    
    
}

    
    
    

    
 


    




