@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;
}

.WidV {
    display: none !important;
}

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

.error,.succes .card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30vw;
    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);
}

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

.error,.succes .card h1 {
    font-size: 5vw;
    margin-bottom: 1.25vh;
}

.error,.succes .card p {
    font-size: 2.5vw;
    margin-bottom: 2.5vh;
}

/*#region Navbar*/

.navbar {
    width: 100vw;
    height: 7.5vh;
    background-color: black;
    -webkit-box-shadow: 0 1vh 2vh 1vh #000000; 
    box-shadow: 0 1vh 2vh 1vh #000000;
}

.navbar #Logo {
    height: 7vh;
    margin-right: 2.5vw;
    float: right;
}

.navbar div {
    height: 100%;
    width: 10vw;
    display: inline-flex;
}

.menu-btn_ul{
    margin-left: 10vw;
    float: left;
    list-style: none;
    height: 100%;
    width: 20vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-btn {
    display: inline-block;
    font-size: x-large;
}

#menu-btn:hover .menu-content{
    display: block;
}

.menu-content {
    display: none;
    position: absolute;
    padding: 0 2.5vw;
    background-color: black;
    border-radius: 1.5vw;
    z-index: 1;
}

.menu-btn:hover .menu-content {
    display: block;
}

.menu-content li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: small;
    width: 100%;
    border-bottom: 0.1vh solid #7c838aff;
    color: #7c838aff;
    height: 5vh;
}

.menu-content li:nth-last-child(1) {
    border: none;
}

/*#endregion*/

/*#region Fejléc*/

.header {
    width: 100vw;
    height: 92.6vh;
    text-align: center;
}

.header .card {
    display: inline-flex;
    margin-top: 10vh;
    height: 75vh;
    width: 75vw;
    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;
}

/*#endregion*/

/*#region Szolgáltatások*/

.services {
    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;
    height: 75vh;
    margin-left: 12.5vw;
    min-width: 75vw;
    max-width: 75vw;
    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:nth-child(1) {
    margin-left: 12.5vw;
}

.services .card:nth-last-child(1) {
    margin-right: 12.5vw;
}

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

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

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

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

/*#endregion*/

/*#region Footer*/

.footer {
    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: 75%;
}

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

.footer i {
    color: #42c1c6ff;
}

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

.footer p {
    text-align: center;
    cursor: pointer;
    margin: 0 4vw;
}
/*#endregion*/
