  /* COOKIE-BAR */
#cookie-bar {
    background-color: rgba(0, 0, 0, 0.85);
    height: auto;
    color: white;
    padding: 10px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#cookie-bar p {
    text-align: left;
    padding: 0px 30px;
}

#cookie-bar img {
    width: 300px;
    margin-bottom: 40px;
}

#cookie-bar .cookie {
    line-height: 70px;
    padding-bottom: 30px;
    font-size: 58px;
    color: white;
}

#cookie-bar .cookie-link {
    text-decoration: underline;
    display: inline-block;
}


/* <<-- Háttér -->> */
.site-bg {
    left: 0px;
    top: 0px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    z-index: -999999;
    position: fixed;
}

.site-bg img,
.site-bg video,
.site-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#site-bg-portrait {
    display: none;
}



/*  LOADER  */
.loader_hatter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.2);
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes reverseSpin {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes reverseSpin {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}



/* <<-- Általános tulajdonságok -->> */
.hide-on-mobile {
    display: inline-block;
}

html {
    scroll-behavior: smooth;
}


body {
    background-image: url(arculat/logo%CC%81%20400x400.png);
    background-blend-mode: hard-light;
    background-size: 500px;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    color: #717278;
    font-size: 18px;
    line-height: 2;



}

.bg-black {
    background-color: #0d0d0d;
}

.lang-hu .angol {
    display: none;
}

.lang-hu .magyar {
    display: block;
}

.lang-en .angol {
    display: block;
}

.lang-en .magyar {
    display: none;
}

.padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

a {
    color: #e8e8e8;
    cursor: pointer;
}

a:hover {
    color: #b4b4b4;
}

h1 span {
    background-color: #717278;
    padding: 5px 20px;
    color: black;
    font-family: 'Great Vibes', cursive;

}



h1 {
    border-bottom: 3px #717278 solid;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 3em;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(189, 124, 67, 0.7);
    animation-name: slideInRight;
    animation-duration: 1s;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -webkit-opacity: 0.1;
        opacity: 0.1;
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-opacity: 1;
        opacity: 1;
        visibility: visible;
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.rendeles{
    position: relative;
    right:10px;
    top:100px;
    z-index:100000;
    padding:5px;
    border:1px solid white;
    color:white;
    background-color: black;
    width:200px;
    height:50px;
}


h2 {
    font-size: 2em;
    font-family: 'Great Vibes', cursive;
}

h3 {
    font-size: 3em;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
}

.bg-landscape h3 {
    font-size: 9vw;
    line-height: .8;
    color: rgb(25, 25, 25);
}

h2 span {
    color: black;
    background-color: #717278;
    padding: 10px 40px;

}



.bg-lighter {
    background-color: #717278;
    color: black;
}

.bg-lighter a {
    color: #0d0d0d;
}

.bg-lighter .button {
    color: black;
    border: 1px solid black;
    background-color: #717278;

}

.bg-lighter .button:hover {
    color: #717278;
    border: 1px solid #717278;
    background-color: black;

}


.bg-lighter h2 span {
    color: #c6c6c6;
    background-color: #313131;


}

p {
    text-align: justify;
    margin-top: 40px;
}

p::first-letter {
    font-size: 1.5em
}

.button {
    font-size: .8em;
    font-weight: 700;
    padding: 1em 2em;
    color: inherit;
    border: 2px solid #717278;
    background-color: #0d0d0d;
    text-transform: uppercase;
    transition: .5s;
    box-shadow: 5px 5px 5px black;
    max-width:300px;
    margin:auto;
}



.button:hover {
    color: #0d0d0d;
    background-color: #717278;
    text-decoration: none;
    box-shadow: none;
}


form {
    width: 100%;


}

input,
select,
option,
textarea {
    margin: 20px auto;
    padding: 10px;
    border: none;
    border-bottom: 3px solid rgba(51, 51, 51, 1);
    width: 80%;
    background-color: rgba(51, 51, 51, 0.5);
    color: #717278;

}

input:focus,
select:focus,
textarea:focus {
    background-color: rgba(255, 255, 255, 0.7);
}

.submit {
    background-color: #0d0d0d;
}

li {
    list-style-type: none;
}


/* <<==--   RESPONSIVE   --==>> */
/* Fekvő nézet */
@media (orientation: landscape) {}

/* Álló nézet */
@media (orientation: portrait) {
    #site-bg-landscape {
        display: none;
    }

    #site-bg-portrait {
        display: block;
    }
}


/* 1680 px (1670 - 1919px)*/
@media only screen and (max-width: 1900px) {}

/* 1440 px (1430 - 1669px)*/
@media only screen and (max-width: 1669px) {}

/* 1366 px (1356 - 1429px)*/
@media only screen and (max-width: 1429px) {}

/* 1280 px (1270 - 1355px)*/
@media only screen and (max-width: 1355px) {}

/* 1024 px, Tablet fekvő (1014 - 1269px)*/
@media only screen and (max-width: 1269px) {
    body {
        font-size: 16px;
    }
}

/* 768 px, Tablet álló (768 - 1013px) */
@media only screen and (max-width: 1013px) {}

/* 576 px, Telefon fekvő (576 - 767px) */
@media only screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }

    h3 {
        font-size: 4vw;
        line-height: 1.2;
        text-align: center;

    }

    .padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    span {
        display: block
    }
}

/* 300 px, Telefon álló (300 - 575px) */
@media only screen and (max-width: 575px) {
    body {
        font-size: 12px;
        background-size: 300px;
    }

    .padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    p {
        margin-top: 20px;
        padding-right: 0
    }

    .bg-landscape h3 {
        font-size: 9vw;
        line-height: 1;

    }

}
