@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  outline: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  letter-spacing: 0.05vw;
  box-sizing: border-box;
  text-decoration: none;
  
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  background-size: cover;
}



body {
    background-size: cover;
    padding-top: 2vw; 
    
}




::-webkit-scrollbar {
    width: 0vw;
  }

  input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0vw 100vw rgb(0, 0, 0);
    -webkit-text-fill-color: rgb(70, 70, 70);
    }

    input:-moz-autofill {
        color: #000000;
    }

    input:-ms-autofill {
        color: #000000;
    }

    input:-ms-input-placeholder {
        color: #000000;
    }

    input {
    caret-color: rgb(0, 0, 0) !important;
    }

    ::selection {
        background-color: rgb(58, 110, 140); /* Zmeň farbu pozadia na zelenú */
        color: rgb(255, 255, 255); /* Zmeň farbu textu na bielu */
      }
      







/* NAVIGACIA */

nav {
    position: relative;
    top: -0.5vw;
    left: 0;
    width: 90%;
    height: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw 2.5vw;
    transition: background-color 0.15s, backdrop-filter 0.15s;
    z-index: 1000;
    backdrop-filter: blur(0.5vw);
    background-size: cover;
    border-radius: 1vw;
    width: 95vw;
    margin: 0 auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='520' height='50' preserveAspectRatio='none' viewBox='0 0 520 50'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1190%26quot%3b)' fill='none'%3e%3crect width='520' height='50' x='0' y='0' fill='url(%26quot%3b%23SvgjsRadialGradient1191%26quot%3b)'%3e%3c/rect%3e%3cpath d='M520 0L439.77 0L520 0z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M439.77 0L520 0L520 7.45L279.9 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M279.9 0L520 7.45L520 27.84L189.09999999999997 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M189.09999999999997 0L520 27.84L520 43.53L179.87999999999997 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 50L53.07 50L0 46.45z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 46.45L53.07 50L298.18 50L0 45.730000000000004z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 45.730000000000004L298.18 50L336.06 50L0 20.700000000000003z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 20.7L336.06 50L456.52 50L0 9.79z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1190'%3e%3crect width='520' height='50' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient cx='0%25' cy='0%25' r='522.4' gradientUnits='userSpaceOnUse' id='SvgjsRadialGradient1191'%3e%3cstop stop-color='rgba(230%2c 230%2c 230%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(234%2c 234%2c 234%2c 1)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.15);
  }

  .nav-left {
    color: rgb(255, 255, 255);
    font-weight: 800;
    top: 0;
    left: 0;
    position: absolute;
  }

  .nav-links {
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    align-items: right;
    justify-content: right;
  }
  
  .arrow {
    display: inline-block;
    margin-left: 0vw;
    transition: transform 0.25s ease;
  }
  
  .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    position: absolute;
    top: 100%;
    transform: translateX(-4vw);
    background-color: rgb(228, 228, 228);
    border-radius: 0.5vw;
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.15);
    z-index: 1000;
    text-align: right;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 1vw 1.15vw;
    color: black;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 1.35vw;
  }
  
  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
  }
  
  .dropdown.open .arrow {
    transform: rotate(90deg);
  }
  
  

  .nav-link {
    font-size: 1vw;
    color: rgb(52, 52, 52);
    font-weight: 500;
    margin-left: 1vw;
    border-radius: 0.15vw;
    transition: color 0.2s ease;
  }

  .nav-link:hover {
    color: rgb(0, 0, 0);
  }

  .nav-link-active {
    font-size: 1vw;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-right: 1vw;
    border-radius: 0.15vw;

  }


  .nav-right {
    font-size: 1vw;
    text-decoration: none;
    font-weight: 600;
    top: 0;
    right: 0;
    margin-left: 1.25vw;
  }

  .nav-right-btn {
    color: rgb(27, 74, 103);
    background-color: rgba(27, 74, 103, 0);
    border: 0.15vw solid rgb(27, 74, 103);

    padding: 0.5vw 1vw;
    border-radius: 5vw;
    transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease;
  }

  .nav-right-btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(27, 74, 103);
    border: 0.15vw solid rgb(27, 74, 103);
  }

.mobilenav {
    display: none;
}

.nophone {
    display: block;
}





  @media (max-width: 768px) {

nav {
    display: none;
}


.mobilenav {
    display: flex;
    background-color: rgb(224, 224, 224);
    width: 95vw;
    height: 13vw;
    top: -1.5vw;
    position: relative;
    margin: 3.2vw auto 0;
    border-radius: 3vw;
}

.nophone {
    display: none;
}

.menu-toggle {
    position: absolute;
    top: 2vw;
    right: 6vw;
    font-size: 8vw;
    color: rgb(0, 0, 0);
    cursor: pointer;
    z-index: 998;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 997; 
}

.side-menu {
    position: fixed;
    top: 50%;
    left: -100vw;
    width: 90%;
    height: 95%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(1vw);
    border-radius: 5vw;
    transition: left 0.5s;
    z-index: 999;
    transform: translateY(-50%);
    border: 0.25vw solid white
}

.side-menu.show {
    left: 5vw;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    font-size: 18vw;
    color: rgb(255, 255, 255);
    text-align: right;
    padding: 2vw 5vw;
    cursor: pointer;
}

.menu-items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item {
    width: 90%;
    padding: 3vw;
    background-color: transparent;
    color: rgb(255, 255, 255);
    font-size: 5vw;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 2vw 0;
}


}
















  /* TOP BANNER */

  .top-bnr {
    background-image: url("/assets/images/top-bg.png");    background-size: cover;
    width: 95vw;
    height: 32vw;
    margin: 0 auto;
    border-radius: 2vw 2vw;
    position: absolute;
    left: 50%;
    margin-top: 17vw;
    transform: translate(-50%, -50%);
  }
  

  .top-banner {
    width: 40vw;
    height: 18vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25vw;
    margin-top: 2.5vw;
    margin-left: 6vw;
    color: rgb(255, 255, 255);
    overflow: hidden;
    padding: 2vw;
  }

  @media (max-width: 768px) {
    .top-banner {
        width: 95vw;
        height: 50vw;
        border-radius: 5vw;
        text-align: center;
        top: 2vw;
        margin-left: 0vw;
        margin: 0 auto;
  }

  .top-bnr {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='520' height='200' preserveAspectRatio='none' viewBox='0 0 520 200'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1006%26quot%3b)' fill='none'%3e%3crect width='520' height='200' x='0' y='0' fill='url(%26quot%3b%23SvgjsRadialGradient1007%26quot%3b)'%3e%3c/rect%3e%3cpath d='M520 0L334.8 0L520 85.58z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M334.8 0L520 85.58L520 114.5L233.37 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M233.37 0L520 114.5L520 153.81L142.54000000000002 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M142.54000000000002 0L520 153.81L520 154.85L90.20000000000002 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 200L138.25 200L0 190.26z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 190.26L138.25 200L282.88 200L0 113.16z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 113.16000000000001L282.88 200L391.03999999999996 200L0 44.370000000000005z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 44.370000000000005L391.03999999999996 200L448.10999999999996 200L0 24.660000000000004z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1006'%3e%3crect width='520' height='200' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient cx='0%25' cy='0%25' r='557.14' gradientUnits='userSpaceOnUse' id='SvgjsRadialGradient1007'%3e%3cstop stop-color='rgba(0%2c 64%2c 84%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(9%2c 103%2c 133%2c 1)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");

  }
}

  

  .top-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex;
    width: 100%;
    text-align: left;
    z-index: 1;
  }

  .top-banner-content h1 {
    font-size: 6vw;
    margin: 0vw 0;
    font-weight: 800;
    font-variant: small-caps;
    letter-spacing: 0.15vw;
  }

  .top-banner-content h5 {
    font-size: 2vw;
    text-align: left;
    margin: 0;
    margin-bottom: 1.5vw;
    font-weight: 300;
  }

  @media (max-width: 768px) {
    .top-banner-content {
      text-align: center;
    }
    .top-banner-content h1 {
        font-size: 10vw;
        text-align: center;
        margin-top: -20vw;
      text-align: center;
    }
    
      .top-banner-content h5 {
        font-size: 4vw;
        margin-bottom: 0vw;
      text-align: center;
    }
    }

  .top-banner-buttons {
    display: flex;
    gap: 1vw;
    text-align: left;
    margin-bottom: 1.5vw;
    position: absolute;
    margin-top: -16vw;
    margin-left: 18vw;
  }

  .top-banner-buttons .contact-button {
    background-color: rgb(27, 74, 103);
    color: rgb(255, 255, 255);
    padding: 0.65vw 5vw;
    font-size: 1.25vw;
    cursor: pointer;
    border-radius: 5vw;
    font-weight: 500;
    border: 0.15vw solid rgb(27, 74, 103);
    transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
  }

  .top-banner-buttons .about-button {
    background-color: transparent;
    color: rgb(27, 74, 103);
    padding: 0.65vw 5vw;
    font-size: 1.15vw;
    cursor: pointer;
    border-radius: 5vw;
    font-weight: 500;
    border: 0.15vw solid rgb(27, 74, 103);
    transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
  }

  .contact-button:hover {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(27, 74, 103);
    border: 0.15vw solid rgb(27, 74, 103);
  }

  .about-button:hover {
    background-color: rgb(27, 74, 103);
    color: rgb(255, 255, 255);
    border: 0.15vw solid rgb(27, 74, 103);
  }


  .top-right img {
    width: 95vw;
    height: 32vw;
    margin: 0 auto;
    border-radius: 2vw;
    position: absolute;
    left: 50%;
    margin-top: 17vw;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter:brightness(0.75);
  }


  @media (max-width: 768px) {
    .top-banner-buttons .contact-button {
        padding: 0.65vw 3vw;
        font-size: 5vw;
        cursor: pointer;
        border-radius: 5vw;
        font-weight: 700;
        margin-top: 1vw;
      }
    
      .top-banner-buttons .about-button {
        padding: 0.65vw 3vw;
        font-size: 5vw;
        cursor: pointer;
        border-radius: 5vw;
        font-weight: 700;
        margin-top: 1vw;
      }

      .top-banner-buttons {
        gap: 2vw;
      }
    }






/* YEAR */

.year-container {
    width: 95vw;
    height: auto;
    padding: 1vw;
    background-color: #05475b;
    border-radius: 2vw;
    margin: 0 auto;
    margin-top: -8vw;
    justify-content: center;
    align-items: center;
}
.year-content {
    color: white;
    font-size: 2.5vw;
    text-align: center;
    padding: 1vw;
    font-weight: 600;
}

@media (max-width: 768px) {
    .year-content {
        color: white;
        font-size: 4.5vw;
        text-align: center;
        padding: 2.5vw;
        font-weight: 500;
    }
    .year-container {
        border-radius: 3vw;
    }
}





/* SERVICES */

  .services-container {
    display: flex;
    flex-wrap: wrap;
    width: 95vw;
    gap: 1vw;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    margin-top: -7vw;
}

.services-card {
    background-size: cover;
    height: 11vw;
    width: calc((96.5% / 4) - (0vw / 3)); 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1vw;
    color: rgb(0, 0, 0);
    border-radius: 2vw 0vw;

    background-color: rgb(237, 237, 237);
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.15);
    transform: scale(1);
    transition: transform 0.2s ease;
  }

.services-card:hover {
  transform: scale(1.01);
}

.services-title {
    color: rgb(27, 74, 103);
    font-size: 2vw;
    font-weight: 600;
    text-align: center;
    margin-bottom: -1vw;
}

.services-content {
    color: rgb(0, 0, 0);
    font-size: 1vw;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0-.5vw;
}

.services-button {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    font-weight: 600;
    padding: 0.5vw;
    font-size: 1vw;
    border-radius: 5vw;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    border: 0.15vw solid rgb(27, 74, 103);
    color: rgb(27, 74, 103);
    box-shadow: 0.2vw 0.2vw 0.35vw 0vw rgba(255, 255, 255, 0.5);

}

.services-button:hover {
    background-color: rgb(27, 74, 103);
    color: rgb(255, 255, 255);
    border: 0.15vw solid rgb(27, 74, 103);
    box-shadow: 0vw 0vw 0vw 0vw white;
}


@media (max-width: 768px) {
    .services-container {
        width: 95vw;
        margin-top: -1vw;
        gap: 2.25vw;
    }
    
    .services-card {
        height: 23vw;
        width: calc((95% / 2) - (0vw / 3)); 
        padding: 2vw;
        border-radius: 3vw;
    }

    .services-title {
        font-size: 5vw;
        font-weight: 700;
        text-align: center;
        margin-bottom: -1vw;
    }
    
    .services-content {
        color: rgb(0, 0, 0);
        font-size: 2.2vw;
        font-weight: 300;
        text-align: center;
    }

    .services-button {
        font-weight: 500;
        font-size: 3vw;
        box-shadow: 0.2vw 0.2vw 0.35vw 0vw rgba(255, 255, 255, 0.5);
    }
}




/* ABOUT */

.about-container {
    width: 82vw;
    height: auto;
    padding: 1vw;
    background-color: rgb(237, 237, 237);
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.15);
    border-radius: 2vw 0vw;
    margin: 0 auto;
    margin-top: 4vw;
    justify-content: center;
    align-items: center;
}

.about-title {
    color: #05475b;
    font-size: 2vw;
    text-align: center;
    font-weight: 600;
    margin-top: -0.5vw;
    margin-bottom: -2.25vw;
    padding: 1vw;
    letter-spacing: 0.2vw;
}


.about-content {
    color: rgb(0, 0, 0);
    font-size: 1.15vw;
    text-align: center;
    font-weight: 300;
    width: 95%;
    margin: 0 auto;
    padding: 2vw;
    margin-bottom: -1vw;
}

.about-phone-container {
    display: none;

}



@media (max-width: 768px) {
    .about-title {
        font-size: 4.5vw;
        text-align: center;
        padding: 2vw;
        font-weight: 500;
    }
    .about-title-container {
        border-radius: 3vw 0vw;
    }

    .about-container {
        width: 95vw;
        border-radius: 3vw 0vw;
    }
    
    .about-content {
        font-size: 2.5vw;
        font-weight: 200;
    }
}






/* CONTACT */

.contact-title-container {
    width: 95vw;
    height: auto;
    padding: 1vw;
    background-color: black;
    border-radius: 2vw;
    margin: 0 auto;
    margin-top: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-title {
    color: white;
    font-size: 2.5vw;
    text-align: center;
    font-weight: 600;
    padding: 1vw;
}


.contact-container {
    width: 100%;
    height: auto;
    background-color: rgb(205, 205, 205);
    border-radius: 0vw;
    margin: 0 auto;
    margin-top: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vw;
}

#contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
}

#contactForm .form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1vw;
}

#contactForm .form-row > div {
    width: 49.15%;
}

#contactForm input,
#contactForm select {
    width: 100%;
    padding: 0.5vw;
    font-size: 1.2vw;
    border-radius: 0.5vw;
    background-color: rgb(237, 237, 237);
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.075);
    border: none;
    color: rgb(98, 98, 98);
    text-align: center;
    transition: transform 0.2s ease;
    transform: scale(1);
  }

#contactForm input:focus {
  transform: scale(1.0075);
}



#contactForm textarea {
    width: 100%;
    height: 10vw;
    resize: none;
    padding: 0.5vw;
    font-size: 1.2vw;
    border-radius: 0.5vw;
    color: rgb(0, 0, 0);
    margin-bottom: 1vw;
    background-color: rgb(237, 237, 237);
    box-shadow: 0vw 0vw 0.5vw 0.25vw rgba(13, 13, 13, 0.075);
    border: none;
    transition: transform 0.2s ease;
    transform: scale(1);
  }

#contactForm textarea:focus {
  transform: scale(1.0075);
}



#submitBtn {
    padding: 0.75vw 3vw;
    font-size: 1.25vw;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: rgb(38, 38, 38);
    border: none;
    border-radius: 5vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    border: 0.15vw solid rgb(38, 38, 38);
}

#submitBtn:disabled {
    background-color: rgba(255, 255, 255, 0);
    border: 0.15vw solid rgb(38, 38, 38);
    color: rgb(38, 38, 38);
    cursor: not-allowed;
}

#submitBtn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(0, 0, 0);
}

#category {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 0.15vw solid rgb(27, 74, 103);
    border-radius: 1vw;
    padding: 0.5vw;
    font-size: 1.2vw;
    appearance: none;
    cursor: pointer;
}

#category option {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    cursor: pointer;
}


@media (max-width: 768px) {
    .contact-title-container {
        border-radius: 3vw;
        padding: 2vw;
    }
    
    .contact-title {
        font-size: 4.5vw;
        text-align: center;
        padding: 1vw;
        font-weight: 500;
    }
    
    
    .contact-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5vw 0vw;
        margin-top: 6vw;
    }
    
    #contactForm {
        width: 90%;
    }

    
    #contactForm input,
    #contactForm select {
        font-size: 3vw;
        border-radius: 1vw;
        border: 0.15vw solid white;
    }
    
    
    
    #contactForm textarea {
        height: 20vw;
        padding: 1vw;
        font-size: 3vw;
        border-radius: 1vw;
        margin-top: 1vw;
        margin-bottom: 2vw;
    }
    
    #submitBtn {
        font-size: 4vw;
    }
}







/* FOOTER */

footer {
    width: 95vw;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='920' height='100' preserveAspectRatio='none' viewBox='0 0 920 100'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1074%26quot%3b)' fill='none'%3e%3crect width='920' height='100' x='0' y='0' fill='url(%26quot%3b%23SvgjsRadialGradient1075%26quot%3b)'%3e%3c/rect%3e%3cpath d='M920 0L616.99 0L920 15.22z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M616.99 0L920 15.22L920 32.35L495.91 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M495.91 0L920 32.35L920 73.17L350.03000000000003 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M350.03 0L920 73.17L920 89.83L221.16999999999996 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 100L307.75 100L0 51.72z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 51.72L307.75 100L558.6 100L0 45.22z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 45.22L558.6 100L608.9300000000001 100L0 24.59z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 24.590000000000003L608.9300000000001 100L743.6100000000001 100L0 19.610000000000003z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1074'%3e%3crect width='920' height='100' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cradialGradient cx='0%25' cy='0%25' r='925.42' gradientUnits='userSpaceOnUse' id='SvgjsRadialGradient1075'%3e%3cstop stop-color='rgba(0%2c 64%2c 84%2c 1)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(9%2c 103%2c 133%2c 1)' offset='1'%3e%3c/stop%3e%3c/radialGradient%3e%3c/defs%3e%3c/svg%3e");    background-size: cover;
    border-radius: 2vw;
    backdrop-filter: brightness(0.35);
    margin: 4vw auto 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 4vw;
  }

  .footer-space {
    height: 1vw;
  }
  
  .social-media,
  .links {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
  }
  

  .links a {
    margin-right: 0.5vw;
    margin-bottom: 0vw;
    margin-top: 1.5vw;
    color: #fff;
    font-size: 1.3vw;
    text-decoration: none;
    transition: color 0.2s;
  }

  .links a:hover {
    color: #d3d3d3;
  }

  .social-media a {
    margin-right: 1vw;
    color: #fff;
    font-size: 2vw;
    text-decoration: none;
    transition: color 0.2s, margin-top 0.2s ease;
  }
  
  .social-media a:hover {
    color: #ddd;
    margin-top: -0.5vw;
  }
  
  .footer-text {
    margin-top: 0.75vw;
    margin-bottom: -0.1vw;
    font-size: 1vw;
    text-align: left;
    color: #fff;
  }

  .footer-text-link {
    color: #d5d5d5;
    transition: color 0.2s ease;
  }
  .footer-text-link:hover {
    color: #9d9d9d;
  }



  .footer-contact-container {

    position: absolute;
    right: 4vw;
    text-align: right;
    display: block;
    flex-wrap: wrap;
    justify-content: left;
  }
  
  .footer-contact-container h1 {
  
    color: white;
    font-size: 2vw;
    margin-top: -0vw;
    margin-bottom: 0.5vw;
  }
  
  .footer-contact-container a {
  
    color: white;
    font-size: 1vw;
    transition: margin-right 0.2s ease;
    position: relative;
    margin-bottom: 0.3vw;
  }
  
  .footer-contact-container a:hover {
    margin-right: 0.25vw;
  }
  



  @media (max-width: 768px) {

    .footer-contact-container {
      display: none;
    }




    footer {
      align-items: center;
      padding: 4vw;
      border-radius: 3vw;
    }
  
    .social-media,
    .links {
      justify-content: center;
    }
  
    .footer-text {
      text-align: center;
    }


    .social-media a {
      margin: 0vw 3vw;
      font-size: 8vw;
    }

    .footer-text {
      margin-top: 0.75vw;
      margin-bottom: -0.1vw;
      font-size: 3vw;
    }
    .links a {
      margin: 1vw 2vw;
      margin-bottom: 0vw;
      margin-top: 1.5vw;
      font-size: 3vw;
      text-decoration: none;
      transition: color 0.2s;
    }

  }
  









  .video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-overlay.active {
    display: flex;
    opacity: 1;
}

.video-overlay video {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    opacity: 0;
    border-radius: 2vw;
    box-shadow: 0vw 0vw 1vw 0vw black;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-overlay.active video {
    transform: scale(1);
    opacity: 1;
    border-radius: 2vw;
    box-shadow: 0vw 0vw 1vw 0vw black;
}

.close-button {
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-size: 3vw;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001; /* Vyššie ako video */
    transform: scale(1);
    transition: transform 0.2s ease;
}

.close-button:hover {
    transform: scale(1.1);
}

body.no-scroll {
    overflow: hidden;
}



@media (max-width: 768px) {

  .close-button {
    position: absolute;
    top: 4vw;
    right: 4vw;
    font-size: 8vw;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001; /* Vyššie ako video */
    transform: scale(1);
    transition: transform 0.2s ease;
}

}