/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ALAP */
@font-face {
    font-family: 'Myriad Pro';
    src: url('../../assets/css/MyriadPro-Light.woff2') format('woff2'),
        url('../../assets/css/MyriadPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Myriad Pro';
    color: #1a171b;
}




/* ================= */
/* HERO */
/* ================= */

.site-wrapper {
    width: 1202px;
    margin: 0 auto;
    background: #fff;
}

.hero {
    position: relative;
	margin: 0;
	padding:0;
    background: url('../../assets/img/header.jpg') top no-repeat;
	background-size: 1202px 604px;
	min-height: 680px;

}

/* overlay */
.hero-overlay { /*
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
	*/
}

/* tartalom */
.hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 40px;
}

/* LOGO */
.logo {
    width: 259px;
}

/* MENÜK */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
	margin-top:170px;	
}

/* GOMB */
.btn {
    width: 259px;
    height: 45px;

    background: #bed99d;
    border: 1px solid #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #1a171b;
    text-decoration: none;
	padding-top: 5px;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.btn:hover{
	background: rgba(190, 217, 157, 0.8);
    /*transform: translateY(-2px); *//*nemi mozgas*/
}

.btn-active {
    width: 259px;
    height: 45px;

    background: #bed99d;
    border: 1px solid #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #1a171b;
    text-decoration: none;
	padding-top: 5px;
	transition: all 0.3s ease;
	text-transform: uppercase;	
}

.btn-active:hover{
	background: rgba(190, 217, 157, 0.8);
    /*transform: translateY(-2px); *//*nemi mozgas*/
}


/* ================= */
/* CIKK-CIKK (CSS) */
/* ================= */

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;

    clip-path: polygon(0 100%, 10% 0, 30% 100%, 50% 0, 70% 100%, 90% 0, 100% 100%);
}

/* ================= */
/* CONTENT */
/* ================= */

.container {
    width: 1050px;
	min-height:350px;
    max-width: 100%;
    margin: 0 auto;
}

.content {
    padding: 0px 0;
	
margin-top: -40px;
  z-index: 3;
  position: relative;	
	
}

/* CÍM */
.content h1 {
    font-size: 28px;
    margin-bottom: 24px;
}


/* CÍM */
.content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.content h3 {
    font-size: 24px;
    margin-bottom: 7px;
}

/* SZÖVEG */
.content p {
    font-size: 18px;
    margin-bottom: 15px;
	line-height: 1.3;
}

/* ================= */
/* FOOTER */
/* ================= */

.footer {
    background: url('../../assets/img/footer.jpg') center no-repeat;
	
	
    height: 69px;
    background-size: 1202px 69px;
	
	
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: #1a171b;
}

/* ================= */
/* RESZPONZÍV */
/* ================= */

@media (max-width: 1202px) {

    .site-wrapper {
        width: 100%;
    }

    .hero {
        height: auto;
        padding-bottom: 40px;

    background: url('../../assets/img/header-tablet.jpg') top no-repeat;
	background-size: 1202px 496px;

	min-height: 580px;
		
		
    }

.hero-content {
    padding-top: 10px;
}
	
	
.logo {
    width: 210px;
}
	
.hero-buttons {
	margin-top:130px;	
}
	
	
.btn {
    width: 210px;
    height: 36px;

    font-size: 25px;
	padding-top: 5px;
}
	
.btn-active {
    width: 210px;
    height: 36px;

    font-size: 25px;
	padding-top: 5px;
}	
	
/* CÍM */
.content h1 {
    font-size: 25px;
}
	
.content h2 {
    font-size: 22px;

}
	
.content h3 {
    font-size: 22px;

}	
	
.container {
  width: 960px;
}	
	
	
}


@media (max-width: 960px) {

    .site-wrapper {
        width: 100%;
    }

    .hero {
        height: auto;
        padding-bottom: 40px;


	background: url('../../assets/img/header-mobile.jpg') top no-repeat;
	background-size: 960px 363px;
	min-height: 450px;
		
		
    }
	
.logo {
    width: 180px;
}
	
.hero-buttons {
	margin-top:50px;	
}
	
	
	
.btn {
    width: 180px;
    height: 31px;

    font-size: 22px;
	padding-top: 5px;
}

.btn-active {
    width: 180px;
    height: 31px;

    font-size: 22px;
	padding-top: 5px;
}	
	
/* CÍM */
.content h1 {
    font-size: 22px;
}
	
.content h2 {
    font-size: 20px;

}
.content h3 {
    font-size: 20px;

}		
	
	
.container {
  width: 768px;
	min-height:500px;
	
}	
	
	
	
}



.mobile-menu-toggle {
    display: none;
}

/* mobil */
@media (max-width: 768px) {

    .site-wrapper {
        width: 100%;
    }

    .hero {
        height: auto;
        padding-bottom: 40px;
    }

    .mobile-menu-toggle {
      /*
		display: block;
        width: 180px;
        margin: 20px auto;

        background: #bed99d;
        border: 1px solid #fff;
        text-align: center;
        padding: 10px;
        cursor: pointer;
	*/	
		
	display: block;
    width: 100%;
    margin: 40px auto 5px auto;
    text-align: center;
    padding: 7px 3px 2px 3px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;	
	transition: all 0.3s ease;	
		
    }

.mobile-menu-toggle {
    background: #bed99d;
    border: 1px solid #fff;
}
	
.mobile-menu-toggle.active {
   /* background: transparent; */
	    background: #bed99d;
	opacity: 66%;
    border: 1px solid #1a171b;
}	
	
	
	
	
	
    .hero-buttons {
        display: none;
		margin-top:0px;	
		gap:5px;
    }

    .hero-buttons.active {
        display: flex;
    }
	

.logo {
    width: 180px;
}
	
	
	
.container {
  width: 90%;
}	
	
	
}
