
@font-face {
    font-family: 'Twofont';
    src: url('fonts/Archivo_Black/ArchivoBlack-Regular.ttf') format('woff2'),
}
@font-face {
    font-family: 'Threefont';
    src: url('fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('woff2'),
}
@font-face {
    font-family: 'Fourfont';
    src: url('fonts/Comfortaa/Comfortaa-VariableFont_wght.ttf') format('woff2'),
}
@font-face {
    font-family: 'Sevenfont';
    src: url('fonts/Outfit/Outfit-VariableFont_wght.ttf') format('woff2'),
}
@font-face {
    font-family: 'Elevenfont';
    src: url('fonts/Syne/Syne-VariableFont_wght.ttf') format('woff2'),
}
/* width */
::-webkit-scrollbar {
    width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}  
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
    overscroll-behavior: none;
}
body{
    background: #101010;
    color: white;

}
.overlay{
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    display: flex;
    justify-content: space-between; /* Elemek széthúzása a konténer teljes szélességében */
    align-items: center; /* Elemek függőleges középre igazítása */
}
.bar{
    width: 10vw;
    height: 105vh;
    background: #1a1a1a;
}
.counter{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1000001;
    color: lightcyan;
    padding: 0.2em 0.4em;
    font-size: 9vw;
    font-family: Twofont;
}
@media (max-width: 512px) {
    .bar{
        padding: 0;
        margin: 0;
        width: 11vw;
        margin-right: -2px; /* Állítsd be a megfelelő értéket */
    }
    .counter{
        justify-content: center;
        align-items: center;
        font-size: 12vw;
    }
}
/*MENU*/
.container{
    z-index: 1000;
}
.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}
.logo {
    width: 140px;
    padding-left: 20px;
}
.menu-open, .menu-close {
    cursor: pointer;
}
.menu-close{
    background: white;
    padding: 20px 25px;
    color: black;
    margin-right: -34px;
    margin-top: -32px;
    font-family: sans-serif;
    border-radius: 0 0 0 8px; /* Csak a bal alsó sarokra */

}
.menu-open {
    background: #fff;
    padding: 20px 25px;
    margin-left: auto;
    align-self: flex-start;
    color: black;
    font-family: sans-serif;
    border-radius: 0 0 0 8px; /* Csak a bal alsó sarokra */
}
.menu-open:hover, .menu-close:hover{
    background: lightcoral;
}
.menu {
    position: fixed;
    top: 0;
    padding: 1.5em;
    width: 100vw;
    height: 100vh;
    background: #101010;
    color: #fff;
    display: flex;
    gap: 1.5em;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    overflow: hidden;
    z-index: 10000;                                                     /*-----------------!!!!!!!!!!*/
    pointer-events: none;
}
.menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.menu-img {
    position: relative;
    flex: 3;
    overflow: hidden;
}
.menu-items {
    position: relative;
    top: 0px;
    flex: 1;
    padding: 3em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: -1;
}
.menu-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#img-1 {
    opacity: 0.9;
}
#img-2 {
    opacity: 0.7;
}
#img-3 {
    opacity: 0.5;
} 
#img-4 {
    opacity: 0.3;
} 
.menu-logo {
    width: 300px;
}
.menu-link p{
    position: relative;
    font-family: Twofont;
    font-size: 32px;
    margin-top: 10px;
    font-weight: lighter;
}
.menu-link a:hover{
    color: lightcyan;
}
.menu-link a {
    text-decoration: none;
    color: #fff;
}
.menu-footer {
    width: 100%;
    display: flex;
}
.menu-sub-col {
    flex: 1;
}
.menu-sub-item a {
    color: white;
    text-decoration: none;
    position: relative;
}
.menu-link,
.menu-sub-item {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 900px) {
    .menu-img {
      display: none;
    }
} 
.landingpage{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.side_video{
    width: 600px;
    height: 100vh;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}
.side_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landingtitle{
    text-align: center;
}
.landingtitle h1 {
    font-family: sans-serif;
    font-size: 10rem;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    text-align: left;
    line-height: 130px;

}
.landingtitle p{
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 20px;
    color: white;
    font-family: Fourfont;
    line-height: 30px;
}
.landingtitle p:nth-child(1){
    margin-bottom: 20px;
}
.landingtitle i {
    color: lightcyan;
    margin-top: 40px;
    border: 1px solid lightcyan;
    padding: 10px 15px;
    border-radius: 50%;  
}
.landinglinks {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-around;
    bottom: 80px;
}
.landinglinks a{
    color: #000;
    background: #fff;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 40px;
    padding: 20px 35px;
    font-family: Fourfont;
}
.landinglinks a:nth-child(2){
    background: none;
    color: lightcyan;
    border: 1px solid lightcyan;
}
.landingsocial{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 40px;
    bottom: 120px;
}
.landingsocial i {
    color: lightcyan;
    padding: 20px;
    font-size: 20px;  
}
/*video*/
.promovideo{
    width: 100%;
    display: flex;
    justify-content: center;
}
.video-container {
    position: relative;
    width: 240px;
    transition: width 0.8s, top 0.8s;
    position: relative;
}
.video-container video {
    width: 100%;
    border-radius: 40px;
    position: relative;
    top: -120px;
}
.top{
    height: 250px;
    display: flex;
    align-items:flex-start;
    justify-content: center;
}
.top h4{
    font-size: 22px;
    max-width: 1200px;
    text-align: center;
    font-family: Fourfont;
    line-height: 30px;
    font-weight: lighter;
}
.title1 h2, .title2 h2{
  font-size: 11rem;
  padding: 0 5%;
  text-transform: uppercase;
  line-height: 140px;
  letter-spacing: 100px;
}
.title1:nth-child(6) {
    margin-top: 180px;
}
span{
  opacity: .1;
  color: lightcyan;
  font-family: Threefont;
  letter-spacing: -2px;
}

.portfolio{

    width: 100vw;
    height: 100%;
    background: white;
}
.portfoliocim{
    width: 100%;
    text-align: center;
    font-family: Threefont;
    letter-spacing: 2px;
    font-size: 8rem;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 40px;
    margin-bottom: 60px;
    border-bottom: 2px solid #101010;

}
.portfoliocim h3{
    color: #101010;
    font-size: 38px;
    font-weight: lighter;
    font-family: sans-serif;


}
.portfoliocim span{
    color: #101010;
}
.portfolioitems .item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px;
    color: #101010;
    border-bottom: 2px solid #101010;
}
/*
.portfolioitems .item:nth-child(1){
    background: #000;
    color: white;

}
.portfolioitems .item:nth-child(2){
    background: #fff;
    color: black;

}
.portfolioitems .item:nth-child(3){
    background: #000;
    color: white;

}*/
.portfolioitems h4{
    font-size: 30px;
    max-width: 400px;
    font-family: sans-serif;
    color: #101010;
}
.portfolioleiras{
    max-width: 400px;
}
.portfolioleiras p{
    padding: 20px;
    font-family: sans-serif;
    font-size: 22px;
}
.portfolioitems video{
    max-width: 700px;
}
.portfolioitems img{
    max-width: 500px;
}

/*SLIDER*/
.works {
    background: #101010;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carda-slider {
    width: 80%;
    height: 80%;
    background: #101010;
    position: relative;
}

.nav .next, .nav .prev {
    position: absolute;
    height: 2rem;
    width: 2rem;
    stroke: #fff;
    cursor: pointer;
    z-index: 10;  /* Magasabb z-index, hogy ne takarja el semmi */
}

.nav .next {
    bottom: 4rem;
    right: 4rem;
    transform: scale(2) rotate(180deg);
}

.nav .prev {
    top: 4rem;
    left: 4rem;
    transform: scale(2);
}

.carda-slider .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.carda-slider .item.is-active {
    pointer-events: auto;
}

.carda {
    height: 800px;
    width: 600px;
    position: relative;
}

.carda img {
    width: 100%;
    object-fit: contain;
    opacity: 1;
}

.carda .carda-bg {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);
}

.carda.is-active .carda-bg {
    transform: scale(1);
}

/* Thumbnails Section */
.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
    z-index: 5; /* Biztosítja, hogy ne takarja el a nyíl */
}

.thumb {
    width: 100px;
    height: 80px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.is-active {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 990px) {
    .carda-slider .item {
        /* Kisebb képernyőkön nagyobb távolság */
        transform: scale(1.1);
    }
}
p.fact{
    font-size: 24px;
    margin-left: 110px;
    max-width: 300px;
    margin-top: 40px;
    font-family: Elevenfont;   
}
.reszlet {
    margin-top: 80px;
    padding: 40px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.reszlet strong{
    color: lightcyan;
    font-size: 28px;
}
.reszletright {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    padding: 40px 20px;
}
.reszletmostright{
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
    justify-content: center;
    align-items: center;
}

.reszlet p{
    max-width: 600px;
    font-family: Elevenfont;
    font-size: 20px;
}
.reszlet h4{
    font-family: sevenfont;
    font-size: 40px;
}
a.getintouch{
    color: lightcyan;
    border: 1px solid lightcyan;
    padding: 15px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    font-family: Elevenfont;
}
.facts {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 110px;
}
.facts i{
    color: black;
    font-size: 24px;
    border: 1px solid lightcyan;
    border-radius: 50%;
    padding: 12px 20px;
    margin-top: 30px;
    background: lightcyan;
}
.facts div{
    border: 1px solid lightcyan;
    border-radius: 8px;
    margin: 10px;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

.facts a{
    text-decoration: none;
    color: #fff;
    transition: all .5s ease;
}
.facts a:hover{
    background: lightcyan;
    color: black;
    border-radius: 8px;
}
.facts h3{
    font-size: 24px;
    font-family: Sevenfont;
    text-align: center;
    width: 400px;
    height: 70px;
}
.madewith {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin-bottom: 140px;
  }
  .madewith video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    z-index: -1;
  }
.plusvideo{
    display: none;
}
.plusvideo video{
    width: 120%;
}
  .leiras {
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-left: 110px;
  }
.sum{
    height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.leiras h3{
    color: #000;
    font-family: Elevenfont;
    font-size: 42px;
    padding: 10px;
}
.leiras p{
    max-width: 400px;
    color: #000;
    font-family: Fourfont;
    padding: 15px;
    font-size: 18px;
}
.info{
    margin-left: 80px;
}
.info h3{
    padding-top: 50px;
    font-size: 32px;
    text-transform: uppercase;
    font-family: Sevenfont;
}
.info p{
    font-size: 18px;
    max-width: 1200px;
    text-align: left;
    font-family: Fourfont;
    line-height: 24px;
    font-weight: lighter;
    padding-top: 20px;
}
/*email rendszer*/
.contact{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-top: 80px;
}
.contactflex{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    max-width: 700px;
}
input, textarea{
    margin: 4px 0;
    padding: 8px;
    width: 700px;
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: #1d1c1c;
    font-family: Fourfont;
    opacity: 1;
    font-size: 16px;
    color: #fafafa;
}
input::placeholder{
    opacity: .8;
    font-size: 16px;
    color: #fafafa;
}
textarea::placeholder {
    opacity: .8;
    font-size: 16px;
    color: #fafafa;
}
textarea{
    height: 160px;
}
.contact button{
    border-radius: 25px;
    width: 220px;
    height: 50px;
    border: 0px;
    color: lightcyan;
    font-size: 20px;
    font-family: Elevenfont;
    background-color: #101010;
    border: 1px solid lightcyan;
    cursor: pointer;
}
#modelType, #environmentType {
    margin: 10px 0;
    color: #fafafa;
    font-family: Fourfont;
    font-size: 16px;
}

#modelType p, #environmentType p {
    margin-bottom: 15px;
    font-family: Fourfont;
    font-size: 16px;
    color: #fafafa;
}

#modelType label , #environmentType label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
    
}

#modelType input[type="checkbox"], #environmentType input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 20px; /* Méret növelése */
    height: 20px; /* Méret növelése */
    border: 1px solid lightcyan; /* Piros szegély */
    appearance: none; /* Az alapértelmezett stílus eltávolítása */
    outline: none;
    background-color: #1d1c1c; /* Háttér színe */
}

#modelType input[type="checkbox"]:checked, #environmentType input[type="checkbox"]:checked{
    background-color: lightcyan; /* Kitöltött állapot háttérszíne */
    border-color: lightcyan;
}
#modelOtherInput, #environmentOtherInput {
    margin-top: 5px;
    width: 280px;
    padding: 8px;
    border: 1px solid #fff;
    background-color: #1d1c1c;
    color: #fafafa;
    font-size: 16px;
    font-family: Fourfont;
}


.landingtitle i:hover, .landinglinks a:hover, .reszlet a:hover, .contact button:hover{
    background: white;
    color: black;
    border: 1px solid white;
}
.landingsocial i:hover{
    color: lightcoral;
}

footer{
    margin-top: 80px;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;

}
.lablec{
    position: relative;
    padding-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.lablec > div{
    padding-left: 20px;
}
.lablec ul{
    list-style-type: none;
    margin: 20px;
    font-size: 14px;
    font-family: Fourfont;
}
.lablec ul li{
    padding: 8px;
}
.lablec p{
    font-size: 16px;
    font-family: Twofont;
}
.lablec img{
    margin-top: -90px;
    width: 360px;
}
.soclinkek ul{
    display: flex;
    flex-direction: row;
}
.lablec i{
    color: #fff;
    font-size: 26px;
    margin: 10px;
}
.lablec i:hover{
    color: lightcyan;
}
.copyright{
    margin-top: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.linkek a{
    text-decoration: none;
    color: white;
}
.linkek a:hover{
    text-decoration: underline;
}
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: lightcyan;
    color: white;
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}
@media (max-height: 950px) {
    #scrollToTopBtn {
        bottom: 60px;
        right: 40px;
    }
}

#scrollToTopBtn:hover {
    background-color: lightcoral;
}

#scrollToTopBtn span {
    font-size: 32px;
    line-height: 1;
    color: black;
}
/*info.html*/
.informations{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.informations h1{
    width: 700px;
    font-size: 3em;
    color: lightcyan;
    font-family: Twofont;
    margin-bottom: 20px;
}
.informations p{
    text-align: justify;
    max-width: 900px;
    color: #fff;
    font-family: Fourfont;
    padding: 22px;
    font-size: 18px;
    line-height: 28px;
}
.informations mark{
    padding: 5px;
    font-weight: bolder;
    background: white;
}
.informations > div{
    margin-top: 60px;
}
.backlink{
    width: 100%;
    height: 100px;
    margin-left: 80px;
    padding-top: 80px;
}
.backlink a{
    color: lightcyan;
    text-decoration: none;
    border: 1px solid lightcyan;
    border-radius: 40px;
    padding: 20px 35px;
    font-family: Fourfont;
}
.backlink a:hover{
    background: white;
    color: black;
    border: 1px solid white;
}


/*GALLERY*/

.gallery-container {
    margin-top: 80px;

    padding: 16px;
    box-sizing: border-box;
  }
  

  .gallery {
    column-count: 3;       
    column-gap: 8px;       
  }
  .gallery-item {
    display: inline-block; 
    width: 100%;
    margin-bottom: 8px; 
    box-sizing: border-box;
    overflow: hidden;      
    border-radius: 6px;   
    background: #f7f7f7;  
  }
  .gallery-item img,
  .gallery-item video {
    display: block;
    width: 100%;
    height: auto;        
    object-fit: cover;    
  }
  
  @media (max-width: 900px) {
    .gallery {
      column-count: 2;     
    }
  }
  
  @media (max-width: 600px) {
    .gallery {
      column-count: 1;    
    }
  }
  





@media (max-width: 1702px) {
    .portfolioitems .item{
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    .portfolioitems video, .portfolioitems img{
        padding: 16px;
    }
    .portfolioitems h4{
        text-align: center;
        font-size: 24px;
        max-width: 700px;
        padding-top: 20px;
    }
    .portfolioleiras{
        max-width: 700px;
    }
}
@media (max-width: 1520px) {
    .portfoliocim{
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
    }
}
@media (max-width: 1252px) {
    .side_video{
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
    }
    .facts{
        flex-direction: column;
    }
    .landingtitle h1{
        font-size: 7rem;
        line-height: 96px;
    }
    .top{
        margin-top: 20px;
        padding: 15px;
    }
}
@media (max-width: 900px) {
    .landinglinks{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .video-container video {
        top: 170px;
    }
    .top{
        height: 540px;
        margin-top: 200px;
    }
    .portfoliocim h2 {
        font-size: 6rem;
    }
    .madewith video{
        display: none;
    }
    .madewith{
        background: #fff;
        justify-content: center;
        height: 600px;
        margin-bottom: 0px;
    }
    .leiras{
        margin-left: 0;
        border-radius: 0;
    }
    .leiras p{
        font-size: 20px;
        max-width: 100%;
    }
    .leiras h3{
        font-size: 42px;
    }
    .plusvideo{
        display: block;
        margin-bottom: 80px;
    }
    .informations p{
        max-width: 600px;
    }
}
@media (max-width: 790px) {
    .landingtitle {
        margin-top: 40px;
    }
    .landingtitle h1{
        font-size: 4rem;
        line-height: 80px;
    }
    .reszlet {
        justify-content: center;
        align-items: center;
    }
    .reszletright {
        max-width: 400px;
    }
    .reszlet p{
        max-width: 300px;
    }
    .arajanlat{
        padding: 30px;
        width: 100%;
    }
    .info{
        margin-left: 0px;
    }
    .informations p{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 600px) {
    .landinglinks {
        margin-bottom: -20px;
    }
    .video-container video {
        top: 120px;
    } 
    .portfoliocim h2 {
        font-size: 4rem;
    }
    .top{
        height: 540px;
        margin-top: 200px;
    }
    .top h4{
        max-width: 320px;
    }
    .title1 h2, .title2 h2{
        margin-top: 20px;
        font-size: 6rem;
        line-height: 80px;
    }
    .title1:nth-child(6) {
          margin-top: 180px;
    }
    p.fact{
        margin-left: 0px;
        margin-top: 120px;  
    }
    .facts{
        height: 550px;
        flex-direction: column;
        margin-top: 40px;
    }
    .madewith{
        margin-top: 0px;
    }
    .leftfact, .rightfact{
        width: 100%;
        padding: 40px;
    }
    .rightfact{
        padding-top: 0;
        margin-top: -40px;
    }
    .blender video{
        width: 400px;
        height: 300px;
    }
    input, textarea{
        width: 350px;
    }
    textarea{
        height: 240px;
    }
    .landingtitle p{
        font-size: 14px;
        margin-top: 40px;
    }
    .landingtitle h1{
        margin-top: 40px;
    }
}
@media (max-width: 512px) {
    .menu-items {
        padding: 0;
        margin-left: -10px;
    }
    .works{
        margin-top: -60px;
    }
    .landingtitle {
        margin-top: 10px;
    }
    .landingtitle h1{
        font-size: 3.2rem;
        line-height: 50px;
        margin-left: 10px;
    }
    .landingtitle p {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    .landinglinks{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        bottom: 40px;
    }
    .landinglinks a{
        padding: 15px 20px;

    }
    .landingsocial{
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        right: 10px;
        bottom: 40px;
    }
    .video-container video {
        top: 150px;
    } 
    .thumbnails {
        margin-top: 0;
        gap: 15px;
    }
    .thumb {
        width: 70px;
        height: 50px;
    }
    .reszlet .title1 h2, .reszlet .title2 h2{
        margin-top: -90px;
        line-height: 180px;
        font-size: 6rem;
        margin-left: -40px;
    }
    .title1 h2, .title2 h2{
        font-size: 5rem;
        line-height: 70px;
    }
    .facts{
        height: 650px;
        padding: 20px;
    }
    .facts div{
        height: 200px;
        width: 280px;
        margin-top: 14px;
    }
    .facts h3{
        font-size: 22px;
        width: 250px;
    }
    .facts i{
        font-size: 20px;
        padding: 7px 15px;
    }
    .info h3{
        margin-top: -20px;
    }
    .contactflex{
        display: flex;
        flex-direction: column;
    }
    .lablec > div{
        padding-left: 0px;
        margin: 10px;
    }
    .lablec ul li{
        text-align: center;
        font-size: 18px;
    }
    .lablec p {
        text-align: center;
    }
    .informations p{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
        text-align: left;
    }
    .informations h1{
        font-size: 1.9em;
        margin-left: 25px;
        width: 300px;
    }
}


