/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=latin-ext');

@font-face {
    font-family: 'KG Life Is Messy';
    src: url('../font/KGLifeisMessy.eot');
    src: url('../font/KGLifeisMessy.eot?#iefix') format('embedded-opentype'),
    url('../font/KGLifeisMessy.woff') format('woff'),
    url('../font/KGLifeisMessy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'KG Shadow';
    src: url('../font/kgshadowoftheday-webfont.woff2') format('woff2'),
    url('../font/kgshadowoftheday-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Athelas Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Athelas Regular'), url('../font/Athelas-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Athelas Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Athelas Italic'), url('../font/Athelas-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Athelas Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Athelas Bold'), url('../font/Athelas-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Athelas Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Athelas Bold Italic'), url('../font/Athelas-BoldItalic.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Medium.woff2') format('woff2'),
    url('../font/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.woff2') format('woff2'),
    url('../font/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Black.woff2') format('woff2'),
    url('../font/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.woff2') format('woff2'),
    url('../font/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root{
    --red: #912a28;
    --yellow: #fff91e;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    overflow-x: hidden;
    /* font-size: 1.8vw; */
    font-size: 30px;
}

body {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.625;
    background: url("../image/2025/bg-body.jpg") no-repeat center top;
    /*background-size: cover;*/
}

* {
    margin: 20px 0;
    box-sizing: border-box;
}

h1, h2, h3, h4 {
    /*font-family: 'KG Life Is Messy';*/
}

#content-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    /*margin: 0 auto;*/
    /*padding: 90px 30px 0;*/
    padding-top: 90px;
}

#content-wrapper .container{
    position: relative;
    max-width: 100%;
    width: 1680px;
    margin: 0 auto;
    padding: 0 30px 0;
}

#content-wrapper img{
    max-width: 100%;
    height: auto;
}

#content-wrapper hr{
    display: inline-block;
    border: 1px solid #333;
    width: 30px;
}

#content-wrapper #content .text-white {
    color: #fff;
}

#content-wrapper #content .text-red {
    color: var(--red);
}
#content-wrapper #content .text-yellow {
    color: var(--yellow);
}

#content-wrapper a {
    text-decoration: none;
    color: var(--red);
}

#content-wrapper a:hover {
    color: var(--yellow);
}

#content-wrapper p {
    font-size: 0.73rem;
}



#content-wrapper header{
    margin-bottom: 150px;
}

#content-wrapper header nav{
    display: flex;
    align-items: center;
}

#content-wrapper header nav .navigation{
    display: flex;
    margin: 0 0 0 auto;
}

#content-wrapper header nav .navigation li{
    padding: 12px 12px;
    line-height: 1;
    border-radius: 17px;
    background: #fff;
    margin-right: 20px;
    display: flex;
    text-align: center;
    align-items: center;
    transition: all 250ms ease-in-out;
}

#content-wrapper header nav .navigation li a{
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    transition: all 250ms ease-in-out;
}


#content-wrapper header nav .navigation li:hover{
    background: var(--yellow);
}
#content-wrapper header nav .navigation li:hover a{
    color: var(--red);
}


#content-wrapper header nav #ejf-logo{
    content: '';
    display: inline-block;
    width: 120px;
    height: 120px;
    margin: 0 0 0 auto;
    background: url("../image/2021/logos/logo-header-ejf.png") no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    font-size: 0;
}


#content-wrapper header #menu-toggle{
    position: absolute;
    top: 15px;
    right: 15px;
    content: '';
    width: 60px;
    height: 60px;
    background: var(--red) url("../image/2021/icons/icon-menu.png") no-repeat center;
    cursor: pointer;
    display: none;
}



#content #main-title {
    text-align: center;
    max-width: 60vw;
    margin: 0 auto 60px;
}

#content #main-title h2 {
    margin-bottom: 10px;
    font-size: 60px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}

#content #main-title h3 {
    font-size: 24px;
    color: var(--yellow);
}

#content #main-title p {
    margin: 45px auto 0;
    line-height: 1.25;
    font-size: 24px;
    text-align: center;
    padding: 0 15px;
}

#content #main-title p.text-red {
    font-weight: 600;
    font-size: 30px;
}

#content #main-title p:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 57px;
    height: 104px;
    opacity: 0;
    background: url("../image/main-title-arrow.png") no-repeat center top;
    margin-right: 30px;
    -webkit-animation: bounce 1.7s infinite;
    animation: bounce 1.7s infinite;
}

@-webkit-keyframes scrolldown {
    0% {
        -webkit-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        transform: translate(0, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 20px);
        -ms-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0;
    }
}

@keyframes scrolldown {
    0% {
        -webkit-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        transform: translate(0, 0px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 20px);
        -ms-transform: translate(0, 20px);
        transform: translate(0, 20px);
        opacity: 0;
    }
}


#content #intro-video{
    margin: 160px 0 120px;
    overflow: hidden;
}

#content #intro-video iframe{
    width: 100%;
    height: 42vw;
    border-radius: 36px;
}

#content .separator-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 160px 0;
}

#content .separator-wrapper .icon{
    content: '';
    display: block;
    width: 98px;
    height: 99px;
    background: url("../image/2025/icon-shape-1.png") no-repeat center;
    background-size: contain;
}

#content .separator-wrapper.separator-2{
    margin: 0 0 120px;
}

#content .separator-wrapper.separator-2 .icon{
    background: url("../image/2025/icon-shape-4.png") no-repeat center;
    background-size: contain;
}


#informations {
    margin-top: 20px;
    /*padding-bottom: 60px;*/
}

#informations{
    display: flex;
    flex-wrap: wrap;
}

#informations .info-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


#informations .image-box{
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 34%;
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

#informations .image-box.ejf-epulet{
    margin-left: auto;
    margin-bottom: -6vw;
    padding-bottom: 34%;
    width: 1173px;
    background: url("../image/2024/img-ejf-epulet.jpg") no-repeat center;
    background-size: cover;
}

#informations .image-box.bajai-elmenyek{
    margin-top: -6vw;
    margin-bottom: auto;
    padding-bottom: 38%;
    width: 755px;
    background: url("../image/2024/img-bajai-elmenyek.jpg") no-repeat center;
    background-size: cover;
}

#informations .image-box.pedagoguskepzes{
    margin-top: 30px;
    margin-bottom: auto;
    padding-bottom: 38%;
    width: 755px;
    background: url("../image/2024/img-pedagoguskepzes.jpg") no-repeat center;
    background-size: cover;
}

#informations .image-box.nyilt-napok{
    margin-top: 120px;
    margin-bottom: auto;
    margin-left: 45px;
    padding-bottom: 38%;
    width: 782px;
    background: url("../image/2024/img-nyilt-napok.jpg") no-repeat center;
    background-size: cover;
}

#informations .info-row .info-section:nth-of-type(2) {
    margin-left: 45px;
}

#informations .info-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 30px 30px;
    margin-bottom: 60px;
    margin-left: auto;
    background: #fff;
    border-radius: 40px;
    max-width: 1200px;

    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

#informations .info-section.slider-box{
    background: var(--yellow);
    margin: 150px 0 auto 90px;
    width: 680px;
    overflow: hidden;
}

#informations .info-section.slider-box .slider-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    /*padding: 0 60px;*/
}

#informations .info-section.slider-box .swiper{
    /*width: 100%;*/
    width: 520px;
    max-width: 100%;
    height: auto;
    /*height: 200px;*/
    margin-top: 20px;
}

#informations .info-section.slider-box .swiper .swiper-slide{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*min-width: 140px;*/
    width: auto;
}

#informations .swiper-button-next,
#informations .swiper-button-prev{
    top: 33%;
}

#informations .swiper-button-next:after,
#informations .swiper-button-prev:after{
    color: var(--red);
    font-weight: bold;
    font-size: 40px;
}


#informations .slider-box .coffee{
    margin: 30px auto 15px;
    font-size: 18px;
    text-align: center;
    background: #fff;
    color: #303030;
    line-height: 1.25;
    padding: 7px 20px;
    border-radius: 30px;
}

#informations .info-section.box-wide{
    width: 1100px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
}

#informations .info-section .title {
    /*width: 100%;*/
    /*padding-right: 70px;*/
    position: relative;
}

#informations .info-section .title h2 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.25;
    font-weight: 600;
    color: var(--red) !important;
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0 15px;
}

#informations .info-section .description {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
    /*padding-right: 60px;*/
}


#informations .info-section .description ul {
    width: 50%;
    /*flex: 1 0 0;*/
}

#informations .info-section .description ul li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 20px;
}

#informations .info-section .description ul li span {
    font-size: 14px;
    display: block;
    color: #303030;
    font-weight: 300;
    line-height: 1.2;
}

#informations .info-section .description ul li span.highlighted-text {
    color: var(--red);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.25;
}

#informations .info-section .description .button{
    max-width: 100%;
    width: 420px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    border-radius: 35px;
    background: var(--red);
    padding: 5px 10px;
    margin: 15px auto 0;
    text-align: center;
    transition: all 250ms ease-in-out;
}

#informations .info-section .description .button:hover{
    color: #fff;
    background: var(--yellow);
}


#informations .info-section .description > div{
    width: 50%;
    display: inline-block;
    margin: 15px 0
}


#informations .info-section.box-left {
    /*margin-left: 0;*/
}

#informations .info-section.box-left .description{
    /*padding-left: 0;*/
    /*padding-right: 90px;*/
}

#informations .info-section.box-left .title{
    /*text-align: left;*/
}


@media (max-width: 720px){
    #informations .info-section .description > div{
        width: 100%;
    }
}

#informations .info-circle{
    display: flex;
    align-items: center;
}

#informations .info-circle.circle-2{
    position: absolute;
    top: 100%;
}

#informations .info-circle.circle-3{
    position: absolute;
    top: 100%;
}

#informations .info-circle img{
    margin: auto
}


#informations #miert-az-ejf{
    flex:1;
    margin-bottom: auto;
}


#informations #bajai-elmenyek{
    position: relative;
    margin-top: 280px;
}

#informations #bajai-elmenyek:before{
    content: '';
    position: absolute;
    top: 0;
    right: -250px;
    width: 101px;
    height: 101px;
    background: url("../image/2025/icon-shape-3.png") no-repeat center;
}

#informations #bajai-elmenyek ul{
    width: 33%;
}

#informations #kepzeseink:before{
    content: '';
    position: absolute;
    top: -200px;
    right: -20px;
    width: 256px;
    height: 262px;
    background: url('../image/2024/img-info-circle-2024.png') no-repeat center;
    background-size: contain;
    z-index: 1;
}

#informations #kepzeseink.info-section{
    flex: 1;
    margin-left: -60px;
    margin-bottom: 12vw;
    margin-top: 70px;
}

#informations #pedagoguskepzes{
    margin-bottom: auto;
}

#informations #pedagoguskepzes:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 30px;
    margin-bottom: auto;
    padding-bottom: 37%;
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
    background: url("../image/2024/img-pedagoguskepzes.jpg") no-repeat center;
    background-size: cover;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

#informations #gazdasagi-kepzes{
    margin-top: 0;
}
#informations #gazdasagi-kepzes .description{
    width: 360px;
    max-width: 100%;
}
#informations #gazdasagi-kepzes .description ul{
    width: 100%;
}

.squares-top:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 83px;
    background: url("../image/2025/img-squares-white.png") repeat-x center;
    transform: translateY(-50%);
}

.squares-top.bottom:before{
    top: auto;
    bottom: 0;
    transform: translateY(50%);
}

#content .light-background{
    position: relative;
    width: 100%;
    margin-top: 290px;
    padding-bottom: 380px;
    background: #fff url("../image/2025/bg-building.jpg") no-repeat center bottom -1px;
    background-size: auto;
}


.floating-icon{
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.floating-icon.icon-1{
    background-image: url("../image/2021/icons/icon-floating-1.png");
    /*width: 496px;*/
    width: 21vw;
    padding-bottom: 27%;
    top: 360px;
    left: -4.6vw;
    background-position: left center;
}

.floating-icon.icon-2{
    background-image: url("../image/2021/icons/icon-floating-2.png");
    width: 224px;
    height: 173px;
    top: -17%;
    left: -215px;
    /*z-index: -1;*/
}

.floating-icon.icon-3{
    background-image: url("../image/2021/icons/icon-floating-3.png");
    width: 104px;
    height: 155px;
    top: 40%;
    right: -43px;
}

/*.floating-icon.icon-4,*/
/*#pedagoguskepzes:after{
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../image/2021/icons/icon-floating-4.png");
    width: 87px;
    height: 88px;
    top: -40px;
    right: -20px;
}*/

.floating-icon.icon-5{
    background-image: url("../image/2021/img-info-circle-2.png");
    width: 567px;
    height: 567px;
    top: -490px;
    left: -256px;
}

.floating-icon.icon-6{
    background-image: url("../image/2021/icons/icon-floating-6.png");
    width: 262px;
    height: 203px;

    top: -160px;
    left: -160px;
}

.floating-icon.icon-7{
    background-image: url("../image/2021/img-info-circle-3.png");
    width: 610px;
    height: 610px;
    top: -270px;
    right: -310px;
}

#content .red-background{
    position: relative;
    width: 100%;
    padding-bottom: 200px;
    background: var(--red) url("../image/2025/bg-nyiltnap-2.jpg") no-repeat center top;
    background-size: cover;
}

#nyilt-napok{
    margin: 120px 0 60px;
    align-items: flex-end;
}

#nyilt-napok .box-left{
    width: 50%;
    margin-left: 0;
    margin-bottom: 0;
}

#nyilt-napok .title{
    text-align: center;
    margin-bottom: 30px;
}

#nyilt-napok .title h2{
    margin-bottom: 0 !important;
}

#nyilt-napok .title p{
    font-size: 24px;
}

#nyilt-napok .dates p{
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
}

#nyilt-napok .button{
    max-width: 100%;
    width: 420px;
    padding: 5px 10px;
    margin: 30px auto 30px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    border-radius: 35px;
    background: var(--red);
    text-align: center;
    transition: all 250ms ease-in-out;
}

#nyilt-napok .button:hover{
    background: var(--yellow);
    color: var(--red);
}


#footer {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    /*padding: 0 30px;*/
    width: 100%;
    background: #fff url("../image/2025/bg-footer.jpg") no-repeat bottom center;
    background-size: auto;
    z-index: 1;
}

#footer .footer-content{
    padding: 120px 0 90px;
    text-align: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

#footer .footer-content > .container{
    position: relative;
    max-width: 100%;
    width: 890px;
    margin: 0 auto;
}

/*#footer > div {
    !*max-width: 960px;*!
    margin: 0 auto;
    font-size: 0.6rem;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}*/

#footer h3 {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.25;
    /*text-transform: uppercase;*/
}

#footer .links-wrapper{
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .links-wrapper a{
    content: '';
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 10px 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: grayscale(1) brightness(0.1);
}


#footer .links-wrapper a.link-1{background-image: url("../image/2021/icons/icon-footer-link-1.png") }
#footer .links-wrapper a.link-2{background-image: url("../image/2021/icons/icon-footer-link-2.png") }
#footer .links-wrapper a.link-3{background-image: url("../image/2021/icons/icon-footer-link-3.png") }


#footer .contact-data {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 18px;
}

#footer .contact-data > div {
    margin-right: 30px;
    margin-bottom: 15px;
}

#footer .contact-data > div span {
    display: block;
    text-align: center;
    color: #222222;
    font-weight: bold;
    line-height: 1.25;
}

#footer .contact-data > div span:nth-of-type(2) {
    font-weight: 100;
    text-transform: uppercase;
}

#footer .contact-data a {
    color: #222222;
    text-decoration: none;
}