@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
    font-family: 'Roboto Mono', monospace;
    padding: 0;
    margin: 0;
    color: #7c838aff;
    font-weight: bolder;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -ms-user-select: none;
    user-select: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #3b3b3b;
    overflow-x: hidden;
}

.NarV {
    display: none !important;
}

#Logo {
    cursor: pointer;
}

.errsucc {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    background-color: #00000080;
}

.errsucc .card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vw;
    background-color: white;
    border-radius: 2.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    -webkit-box-shadow: 0 0 3vh 1vh rgba(124,131,13,0.75); 
    box-shadow: 0 0 3vh 1vh rgba(0,0,0,0.75);
}

.succes .card {
    width: 25vw;
}

.error .card i {
    color: red;
    font-size: 5vw;
    margin: 2.5vh 0;
}

.succes .card i {
    color: lightgreen;
    font-size: 5vw;
    margin: 2.5vh 0;
}

.errsucc .card h1 {
    font-size: 2.5vw;
    margin-bottom: 1.25vh;
}

.succes .card h1 {
    font-size: 1.25vw;
    margin-bottom: 2.5vw;
}

.errsucc .card p {
    font-size: 1.25vw;
    margin-bottom: 2.5vh;
}

/*#region Navbar*/
.navbar {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100vw;
    height: 10vh;
    background-color: black;
    -webkit-box-shadow: 0 1vh 2vh 1vh #000000; 
    box-shadow: 0 1vh 2vh 1vh #000000;
}

.navbar #Logo {
    height: 9.5vh;
    float: right;
}

.navbar ul {
    display: inline-flex;
    list-style-type: none;
    text-align: center;
    vertical-align: top;
    align-items: center;
    height: 100%;
    width: 82.5vw;
}

.navbar ul {
    justify-content: left;
}

.navbar ul li {
    cursor: pointer;
    width: 12.5vw;
    font-size: 1vw;
}
/*#endregion*/

/*#region Fejlec*/

.header {
    position: relative;
    z-index: 0;
    height: 90vh;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../../img/logo/Header-BG.jpg');
    background-size: cover;
}

.header .card {
    display: inline-flex;
    margin-left: 5vw;
    height: 75vh;
    width: 25vw;
    border-radius: 2.5vh;
    -webkit-box-shadow: 0 0 3vh 1vh rgba(124,131,13,0.75); 
    box-shadow: 0 0 3vh 1vh rgba(0,0,0,0.75);
    background-color: #42c1c6ff;
}

.header img {
    margin-right: 5vw;
    width: 50vw;
    height: 40vh;
    border-radius: 2.5vh;
    opacity: 0.75;
}

/*#endregion*/

/*#region Szolgaltatasok*/

.services {
    position: relative;
    background-color: #42c1c6ff;
    height: 100vh;
    -webkit-box-shadow: 0 0 3vh 1vh #000000; 
    box-shadow: 0 0 3vh 1vh #000000;
}

.services .swiper-wrapper {
    display: flex;
    align-items: center;
}

.services .card {
    padding: 1.5vh 1.5vw;
    margin-left: 4vw;
    height: 75vh;
    min-width: 25vw;
    max-width: 25vw;
    border-radius: 2.5vh;
    -webkit-box-shadow: 0 0 3vh 1vh rgba(124,131,13,0.75); 
    box-shadow: 0 0 3vh 1vh rgba(0,0,0,0.75);
    background-color: white;
    overflow: hidden;
}

.services .card .s-title {
    text-align: center;
    font-size: xx-large;
}

.services .card .s-price {
    text-align: center;
    font-size: large;
    margin-bottom: 1vh;
}

.services .card .s-price:after {
    content: ' Ft';
}

.services .card .s-desc {
    margin-top: 2.5vh;
    height: 87.5%;
    width: 100%;
    border: none;
    resize: none;
    cursor: default;
    overflow: auto;
}

.services .swiper-pagination {
    margin-bottom: 2.5vh;
}

/*#endregion*/

/*#region Foglalas*/

.booking {
    width: 100vw;
    height: 100vh;
}

/*#endregion*/

/*#region Footer*/

.footer {
    position: relative;
    z-index: 1;
    height: 25vh;
    width: 100vw;
    background-color: black;
    -webkit-box-shadow: 0 -1vh 2vh 1vh #000000; 
    box-shadow: 0 -1vh 2vh 1vh #000000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer #Logo {
    height: 100%;
}

.footer p {
    width: 15vw;
    text-align: center;
    cursor: pointer;
}

.footer i {
    color: #42c1c6ff;
}

.footer p:hover i {
    color: white;
    transition: 0.5s;
}

/*#endregion*/
