@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #222831;
    color: #eeeeee;
}





/* menu bar styles */


.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #222831, #393e46); /* Gradient színezés */
    /* background-color: #333;*/
    border: 1px solid #222831; /* Sötétebb keret hozzáadása */
    border-radius: 5px; /* Kerekítés */
    color: #eeeeee;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Biztosítja, hogy a menü legfelül legyen */
    transition: top 0.3s; /* Animáció a top tulajdonságon */
}


.menu ul li a {
    font-size: 20px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 10px;
}

.menu a {
    text-decoration: none;
    color: #eeeeee;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #00adb5;
}

.logo {
    max-width: 150px; /* kicsinyített szélesség */
    max-height: 50px; 
    height: auto;
    order: 2; /* A jobb oldalra rendezés */
    margin-right: 10px; /* 10px távolság a jobb széltől */
}

.logo img {
    max-width: 100%;
    height: auto;
}
.menuspaceholder { /*rakunk egy inverz fixed lógó stílust a másik oldalra a menü sávra, hogy középen legyenek a menü elemek*/
    width: 150px;
    height: 50px; 
    height: auto;
    order: 1; /* balra rendezés */
    margin-right: 10px; 
}

/* video block styles */

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

/* Info block styles */

.info-block {
    padding: 20px;
    color: #fff;

}

.info-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.info-column {
    flex: 1 1 40%;
    display: flex; /* Flexbox a középre igazításhoz */
    justify-content: center; /* Vízszintesen középre */
    align-items: center; /* Felülről igazítja a tartalmat */
    flex-direction: column; /* Függőleges elrendezés */ 
}


.max-height {
    height: max-content;
}

.info-column img {
    max-width: 90%;
    height: auto; /* Megtartja az eredeti képarányt */
    box-sizing: border-box; /* Padding belekalkulálása a szélességbe */
    align-items: center; /* Felülről igazítja a tartalmat */
    border: 2px solid #eeeeee; /* Szürke szegély 2px vastagsággal */
    border-radius: 8px; /* Kerekített sarkok */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Árnyék */
    transition: transform 0.3s ease; /* Animáció hover esetén */
}

.info-column img:hover {
    transform: scale(1.02); /* Kicsit nagyobb méret hover esetén */
}


.info-column + .info-column {
    margin-left: 100px; /* Bal oldali térköz */
}



.info-column h2 {
    text-align: center;
    justify-content: center;
}

.info-list {
    list-style-type: none;
    padding: 0;
    align-items: center;
    text-align: left;
}

.info-list h1 {
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.info-list h2 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
.info-block h3 {
    text-align: center;
    margin-top: 40px;

}

.info-list p a {
    color: #00adb5;;
    transition: background-color 0.3s ease;
    text-decoration: none;
    padding: 2px 2px;
    border-radius: 5px;
}

.info-list p a:hover {
    background-color: #00adb5;
    color: #eeeeee;
}
.info-list ul {
    list-style-type: none; /* Eltávolítja az alapértelmezett lista stílust */
    align-items: flex-start;
    padding: 0;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 20px;
    align-items: center;
}

.info-list li i {
    font-size: 18px; /* Kérdőjel ikon mérete */
    color: #00adb5; /* Kérdőjel ikon színe */
}

.info-list li span {
    margin-right: 10px; /* Térköz a kérdőjel ikon és a szöveg között */
}

.info-block h3 a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid;
    border-color:#eeeeee;
    box-shadow: 0 0px 10px rgba(255, 255, 255, 0.2); /* Árnyék */
    border-radius: 5px;
    font-size: 16px;
    color: #eeeeee;
    transition: background-color 0.3s ease;
    max-width: 90%;
}

.info-block h3 a:hover {
    background-color: #00adb5;
    color: #eeeeee;
}

.icon-text-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Térköz az elemek között */
}
.icon-text-container-center {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Térköz az elemek között */
    text-align: center;
    justify-content: center;
}

.icon-text-container i, .icon-text-container-center i {
    font-size: 24px;
    margin-right: 14px;
    vertical-align: middle;
    color: #00adb5; /* Példa szerinti szín */
}

.icon-text-container p, .icon-text-container-center p {
    margin: 0;
    font-size: 16px;
    color: #eeeeee;
    flex: 1; /* Az összes rendelkezésre álló helyet kitölti a szöveg középre igazításához */
}

/* Contact Link */
.contact-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #eeeeee;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #00adb5;
    color: #eeeeee;
}

.contact-link .fa-phone, .contact-link .fa-envelope {
    margin-right: 10px;
    font-size: 20px;
}

.contact-link i {
    margin-right: 10px; /* távolság beállítása az ikon és a szöveg között */
}


/*Price list*/

.price-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    color: white !important;
    box-shadow: 0 0px 10px rgba(255, 255, 255, 0.2); /* Árnyék */
    margin: 0 auto;
    width: 80%;
    padding: 20px;
}

.price-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.price-column {
    flex: 1;
    align-items: center;
    text-align: center;
    margin: 5px;
}

.price-column h2 {
    margin-bottom: 30px;
}


#contact-block {
    display: flex;
    justify-content: center; /* Középre igazítás */
}

.contact-container {
    display: flex;
    gap: 20%; /* Térköz a kontakt lista és a Facebook oldal között */
}

.contact-column {
    flex: 1 1 50%; /* Az oszlopok automatikus szélesség beállítása, hogy kitöltsék a rendelkezésre álló helyet */
    max-width: 100%; /* Maximális szélesség 100% */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Tartalmak vízszintes középre igazítása */
    align-items: center; /* Tartalmak függőleges középre igazítása */
}

.contact-list {
    list-style-type: none; /* Felsorolásjel eltüntetése */
    padding: 10px; /* Alapértelmezett padding eltávolítása */
    text-align: center; /* Szövegek középre igazítása */
}

.fb-page-container {
    flex: 1 1 50%; /* Az oszlopok automatikus szélesség beállítása, hogy kitöltsék a rendelkezésre álló helyet */
    max-width: 100%; /* Maximális szélesség 100% */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Tartalmak vízszintes középre igazítása */
    align-items: center; /* Tartalmak függőleges középre igazítása */
}

.fb-page {
    display: flex;
    border: 2px solid #eeeeee; /* Szürke szegély 2px vastagsággal */
    border-radius: 8px; /* Kerekített sarkok */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Árnyék */
    width:max-content;


}

.g-recaptcha {
    margin-top: 16px;
}

/* separator styles*/

#separator {
    height: 20px;
    background-color: #EEEEEE;
}

#separator-menu {
    width: 1px;
    height: 70px; /* milyen széles legyen - 50 a menü, 70el pont akkora a felső szegély, mint az alsó*/
    margin: 0 auto;
    opacity: 0; /* Láthatatlanná teszi az elemet */
}

.separator-text {
    display: flex;
    align-items: center; /* Függőleges középre igazítás */
    justify-content: center; /* Vízszintes középre igazítás */
    height: 100%; /* A szöveg konténer magasságának kihasználása */
}

/* bottom info bar styles */

#info_bar {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 20px;
    background-color: #a7a6a6;
}

.info_bar-text {
    display: flex;
    font-size:x-small;
    align-items: center; /* Függőleges középre igazítás */
    justify-content: center; /* Vízszintes középre igazítás */
    height: 100%; /* A szöveg konténer magasságának kihasználása */
}

/* javascript animation*/

.animate-on-load-welcome {
    opacity: 0;
    transform: translateY(20px) translateX(-50%); /* Egyéb eltolás */
    text-align: center;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    background-color: rgba(0, 0, 0, 0);   /* átlátszó háttér, a body háttere az irányadó */
}

.animate-on-load-generic {
    opacity: 0;
    transform: translateY(20px); /* Egyéb eltolás */
    text-align: center;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    background-color: rgba(0, 0, 0, 0);   /* átlátszó háttér, a body háttere az irányadó */
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0);
}

.animate-on-load-welcome.show {
    opacity: 1;
    transform: translateY(0) translateX(-50%); /* Középre igazítás */
    background-color: rgba(0, 0, 0, 0);
}

.animate-on-load-generic.show {
    opacity: 1;
    transform: translateY(0); /* Középre igazítás */
    background-color: rgba(0, 0, 0, 0);
}



.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0);
}



/* Mirror block styles*/

#mirror-block {
    padding: 50px 0;
    text-align: center;
}

.mirror-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.mirror-column {
    flex: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Scroll-down arrow styles */

.scroll-down {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-down a div {
    animation: pulse 2s infinite alternate;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white; /* Lehet fehér is, attól függően milyen színűt szeretnél */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.scroll-down:hover {
    opacity: 1;
}




/* Contact form styles */

#email-form {
    padding: 50px 0;
    text-align: center;

}

.email-container {
    max-width: 60%;
    margin: 0 auto;
}

.email-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.email-container p {
    color: #fff;
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.email-form-group label {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.email-form-group label a {
    display: inline;
    color: #007bff; /* Kék szín */
    text-decoration: underline; /* Aláhúzás */
    margin-right: 10px; /* Távolság a gomboktól */
}

.email-form-group label a:hover {
    color: #0056b3; /* Sötétebb kék szín hover állapotban */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 150px;
}

input[type="submit"] {
    background-color: #393E46;
    color: #EEEEEE;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #00ADB5;
}



/* additional block styles */

#additional-block {
    position: relative;
    background-color: #ccc;
    color:#222831;
    padding: 50px 0;
    text-align: center;
    z-index: 998;
}

.additional-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-column {
    flex: 1;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}



.additional-column ul {
        align-items: center;
        text-align: center;
    list-style-type: none;
    padding: 0;
}

.additional-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
}


.additional-column li a {
    color: #222831;
    text-decoration: none;
}

.additional-column li a:hover {
    color: #00adb5;
}


/*Contacts - cookies*/

.form-group label {
    display: inline-block;
}

.form-group label a {
    color: #007bff; /* Kék szín */
    text-decoration: underline; /* Aláhúzás */
    margin-right: 10px; /* Távolság a gomboktól */
}

.form-group label a:hover {
    color: #0056b3; /* Sötétebb kék szín hover állapotban */
}



/*Services page - image gallery*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 50%;
  position: relative;
  margin: auto;
  padding-top: 20px; /* added padding */
  padding-bottom: 20px; /* added padding */
}

.slideshow-container h1{
text-align: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
  border: 2px solid #eeeeee; /* Szürke szegély 2px vastagsággal */
  border-radius: 8px; /* Kerekített sarkok */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Árnyék */
  align-items: center;
  justify-content: center;
}

.mySlides img {
    object-fit: contain;
    width: 100%;
    height: 530px;
    overflow: hidden;
}

.mySlides_video {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Kezdés a felső szélénél */
    width: auto;
    height: 10%; /* Kitölti a teljes magasságot */
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev {
    left: 0;
    border-radius: 0 3px 3px 0;
  }
  

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;

  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    padding: 10px 20px;
  color: #f2f2f2;
  font-size: 12px;
  text-align: center;
  position:relative;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    bottom: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    align-items: center;
    transition: background-color 0.6s ease;
  }

/* Vertically center the dots */
.dot-container {
    text-align: center;
    margin-bottom: 10px; /* adjusted margin */
  }

/* Full-width container for dots */
.dot-container.full-width {
    margin-top: 20px; /* adjusted margin */
  }

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*sütiformák :) */

#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 15%;
    right: 15%;
    background: #222;
    color: #fff;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
#cookieConsent .cookie-content {
    display: flex;
    align-items: center;
    text-align: center;
}

#cookieConsent .cookie-content a {
    color: #007bff; /* Kék szín */
    text-decoration: underline; /* Aláhúzás */
    margin-right: 10px; /* Távolság a gomboktól */
}

#cookieConsent .cookie-content a:hover {
    color: #0056b3; /* Sötétebb kék szín hover állapotban */
}

#cookieConsent button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
#acceptCookies {
    background: #28a745;
    color: #fff;
}
#declineCookies {
    background: #dc3545;
    color: #fff;
}

#acceptCookies:hover, #declineCookies:hover {
    filter: brightness(85%);
 }




@media screen and (max-width: 768px) {

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #222831, #393e46);  /* Gradient színezés */
        /* background-color: #333;*/
        border: 0; /* mobil nézetben ne legyen kerekítés, mert nem ér össze a lenyíló menüvel */
        border-radius: 0px; /* mobil nézetben ne legyen kerekítés, mert nem ér össze a lenyíló menüvel */
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000; /* Biztosítja, hogy a menü legfelül legyen */
        transition: top 0.3s; /* Animáció a top tulajdonságon */
    }
 

.menu ul {
    overflow: hidden; /* Túlcsordulás elrejtése */
    max-height: 0; /* Kezdetben rejtett */
    flex-direction: column;
    position: absolute;
    top: 70px; /* Menü alatt legyen */
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #222831, #393e46); /* Gradient színezés */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    align-items: center;
    opacity: 0; /* Kezdetben átlátható */
    transition: height 0.5s ease, opacity 0.5s ease; /* Állítsd be az animáció sebességét itt */
  }
  
  .menu ul.open {
    max-height: 500px; /* Ha nyitva van a menü, állítsuk be a magasságát */
    opacity: 1; /* Átláthatóság bekapcsolása */
  }
  
    /* Ha a menü megnyílik, akkor az opciók is megjelennek egyenként */
    .menu ul.open li {
        opacity: 1;
        transform: translateY(0);
      }

  .menu li {
    margin: 10px 0;
    opacity: 0; /* Kezdetben átláthatók */
    transform: translateY(-20px); /* Kezdetben fent vannak */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Animáció a megjelenésükhöz */
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    top: 25%; /* Középen */
    left: 10px;
    cursor: pointer;
    z-index: 1500;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #eeeeee;
    margin: 5px 0;
    transition: background-color 0.3s;
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .logo {
    max-width: 150px; /* kicsinyített szélesség */
    max-height: 50px; 
    height: auto;
    order: 2; /* A jobb oldalra rendezés */
    margin-left: auto; /* Balra és jobbra egyaránt kitolás, hogy középre kerüljön */
    margin-right: auto;
  }
  .price-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    color: white !important;
    margin: 0 auto;
    width: 90%;
}
#contact-form {
    padding: 50px 0;
    text-align: center;
    margin: 0 auto; /* középre igazítás */
    width: 80%;
}

 .contact-container {
        flex-direction: column; /* Oszlopok egymás alá rendezése mobil nézetben */
    }

    .contact-column,
    .fb-page-container {
        flex: auto; /* Automatikus szélesség beállítása, hogy a teljes szélességet kitöltsék */
        max-width: none; /* Maximális szélesség eltávolítása mobil nézetben */
    }

#cookieConsent .cookie-content {
    display: block; /* Blokkba rendezés */
}

#cookieConsent button {
    margin: 10px auto 0; /* Felső margó, majd középre igazítás */
    display: block; /* Blokkba rendezés */

}
.email-form-group {
    text-align: center; /* Középre igazítás mobil nézetben */
}
.g-recaptcha {
    display: inline-block; /* Inline blokk, hogy középre igazíthassuk */
    margin-top: 1rem; /* Távolság a checkbox és a captcha között */
}

.email-form-group label {
    display: inline-block; /* Blokkba rendezés */
    margin-top: 10px; /* Távolság a checkboxtól */
}

.email-form-group label a {
    color: #007bff; /* Kék szín */
    text-decoration: underline; /* Aláhúzás */
}

.email-form-group label a:hover {
    color: #0056b3; /* Sötétebb kék szín hover állapotban */
}
.email-container {
    max-width: 90%;
    margin: 0 auto;
}

.info-container {
    display: flex;
    flex-direction: column;
}

.info-column {
    flex: 1;
    margin-bottom: 20px; /* Távolság az oszlopok között */

}

.info-column + .info-column {
    margin-left: 0px;
}

.info-list h1 {
    text-align: center;
}

.map-container {
    position: relative;
    align-items: center;
    width: 100%;
    padding-top: 50%; /* méret állítása - függőleges */
}


.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    color: #fff;
}
.slideshow-container {
    max-width: 80%;
    position: relative;
    margin: auto;
    padding-top: 20px; /* added padding */
    padding-bottom: 20px; /* added padding */
  }


  .additional-container {
    display: flex;
    justify-content: center;
    padding: 10px;
}

  .additional-column {
    flex: 1;
    padding: 0 5px;
    text-align: center;
    box-sizing: border-box;
}
  #additional-block h2 {
    font-size: 14px; /* Csökkentett méret mobilra */
}

#additional-block a {
    font-size: 10px; /* Csökkentett méret mobilra */
}

#additional-block .icon-text-container-center span {
    font-size: 10px; /* Csökkentett méret mobilra */
}

.mySlides {
    display: none;
    border: 2px solid #eeeeee; /* Szürke szegély 2px vastagsággal */
    border-radius: 8px; /* Kerekített sarkok */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Árnyék */
    height: 300px;
    align-items: center;
    justify-content: center;
  }
  .mySlides img {
    position: relative;
    padding-top: 10px;
    object-fit: contain;
    width: 100%;
    height: 290px;
    justify-content: center;
}

.mySlides_video {
    position: relative;
    padding-top: 10px;
    object-fit: contain;
    width: 100%;
    height: 290px;
    justify-content: center;
    overflow: hidden;
}
}

