*{
   margin: 0;
   padding: 0;
   font-family: 'Poppins', sans-serif;
   box-sizing: border-box;
}
.header{
    min-height: 10vh;
    width: 100%;
    background-image: linear-gradient(rgba(168,8,8,0.9),rgba(168,8,8,0.9)),url(images/labor1.png)
    ;
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: center;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

nav .fa{
    display: none;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #b41112;
    background: #b41112;
    transition: 1s;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    
    .nav-links{
        position: absolute;
        background: #db3439;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

/*----- course -----*/

.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.course-col{
    flex-basis: 31%;
    background: #b41112;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.9);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*--------- Munkatársak -------*/

.munkatars{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 10px;
}

.munkatars-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.munkatars-col img{
    width: 100%;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;

}

.layer:hover{
    background: rgba(226,0,0,0.7);
}


h4{
    text-align: center;
    font-weight: 600;
    margin-top: 0px;
}

/*------------- Referencák ---------------*/

.referencia{
    height: 100vh;
    width: 50%;
    margin: auto;
    text-align: center;
    padding: 0;
    margin-bottom: -150px;
}

.img-slider{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    margin: 10px;
   

}

.img-slider .slide{
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active{
   clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}

.img-slider .slide img{
    position: center;
    z-index: 1;
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

.img-slider .slide .info{
   position: absolute;
    top: 0;
    padding: 15px 30px;
}

.img-slider .slide .info h6{
   color: #fff;
   font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.img-slider .slide .info p2{
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    font-size: 16px;
    width: 60%;
    padding: 10px;
    border-radius: 10px;
}

.img-slider .navigation{
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.img-slider .navigation .btn{
   background: rgba(226,0,0,0.5);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.img-slider .navigation .btn.active{
    background: #b41112;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 820px){
    .img-slider{
        width: 600px;
        height: 375px;
    }

.img-slider .slide .info{
  padding: 10px 25px;  
}

.img-slider .slide .info h6{
    font-size: 35px;
}

.img-slider .slide .info p2{
   width: 70%;
    font-size: 15px;
}

.img-slider .navigation{
    bottom: 25px;
}

.img-slider .navigation .btn{
    width: 10px;
    height: 10px;
    margin: 8px;
 }
}

@media (max-width: 620px){
    .img-slider{
        width: 400px;
        height: 250px;
    }

.img-slider .slide .info{
  padding: 10px 20px;  
}

.img-slider .slide .info h6{
    font-size: 30px;
}

.img-slider .slide .info p2{
   width: 80%;
    font-size: 13px;
}

.img-slider .navigation{
    bottom: 15px;
}

.img-slider .navigation .btn{
    width: 8px;
    height: 8px;
    margin: 6px;
 }
}

@media (max-width: 420px){
    .img-slider{
        width: 320px;
        height: 200px;
    }

.img-slider .slide .info{
  padding: 5px 10px;  
}

.img-slider .slide .info h6{
    font-size: 25px;
}

.img-slider .slide .info p2{
   width: 90%;
    font-size: 11px;
}

.img-slider .navigation{
    bottom: 10px;
}
}
/*-------------Vélemények---------------*/

.velemenyek{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}

.velemenyek-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #b41112;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.velemenyek-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.velemenyek-col p{
    padding: 0;
}

.velemenyek-col h3{
    margin-top: 15px;
    text-align: left;
}

@media (max-width: 700px){
    .velemenyek-col img{
    margin-left: 0px;
    margin-right: 15px;
   }
}
/*-------------Kapcsolat---------------*/

.kapcsolat{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/labor1.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.kapcsolat h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .kapcsolat h1{
        font-size: 24px;
    }
}


/*-------------Rólunk---------------*/


p1{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 0;
   
}


/*-------------Red slice---------------*/

.red-slice{
    background-image: url(images/background.jpg);
    background-size: 100% 100%;
    background-color: #212121;
    display: flex;
    background-position: center;
    transition: all .7s ease;
    overflow: hidden;
}

.red-slice a{
    text-decoration: none!important;
    color: #fff!important;
}

.red-slice:hover{
    background-size: 130% 180%;
    transition: all .7s ease;
}

.rdslc-head-text{
    display: block;
    width: 100%;
    margin-top: calc(.7em + 5vw);
    margin-bottom: calc(1em + 5vw);
    line-height: 1;
    text-align: center;
}


.rdslc-head-text-inner{
    display: block;
    position: relative;
    color: #f8f8f8;
    text-shadow: -4px 3px 0 #121212;
    font-family: 0swald, sans-serif;
    font-size: calc (1em + 5vw);
    transition: all .5s ease;
    background: 0 0;
    margin-top: 0!important;
    margin-bottom: 0!important;
    line-height: 1;
    font-weight: 400;
}

.rdslc-head-sub-text-inner{
    display: inline-block;
    background-color: #141414;
    color: #fff;
    padding: 2px;
    font-style: italic;
    font-family: 0swald, sans-serif;
    font-size: calc(.2em + 1.5vw);
    transition: all .5s ease;
    transform: skew(20deg);
}

.rdslc-border-bottom{
    display: inline-block;
    width: 200px;
    max-width: 60%;
    margin-top: 10px;
    height: 6px;
    background: linear-gradient(#0000 10%, #b51a1c 33%, #b51a1c 66%, #0000 95%);
    transition: all .5s ease;
    border-radius: 50%;
    transition: all .5s ease;
}

.rdslc-head-text:hover .rdslc-border-bottom{
    width: 300px;
    max-width: 50%;
    transform: rotate(3deg);
    transition: all .5s ease;
}

.rdslc-head-text:hover .rdslc-head-sub-text-inner{
    transition: all .5s ease;
    transform: rotate(3deg);
}

.rdslc-head-text-inner:hover{
    text-shadow: none;
    color: #b51a1c;
}



/*-------------Térkép---------------*/

.terkep{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
 
iframe{
    width: 80%;
    height: 500px;
    border-radius: 10px;
}

h5{
 margin-bottom: 60px;
 font-weight: 600;
 font-size: 36px;
}

/*-------------Lábjegyzet---------------*/


.impresszum{
    width: 100%;
    background: linear-gradient(to right, #b41112, #2d0b00);
    background-position: center;
    background-size: cover;
    padding: 70px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.impresszum2{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.sor{
    flex-basis: 25%;
    padding: 10px;
}

.sor:nth-child(2), .sor:nth-child(3){
    flex-basis: 15%;
}

.logo{
  width: 150px;
  margin-bottom: 15px;
}

.sor2{
    margin-top: 40px;
}

 .sor2 h7{
    width: fit-content;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.sor2 p3{
    width: fit-content;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: relative;  
}

.sor2 h8{
   width: fit-content;
   font-size: 16px;
   font-weight: 600;
   color: #fff;
   
   
}

.sor2 email-id{
    width: fit-content;
    
}


.sor2 ul li{
    list-style: none;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    
}

.sor2 ul li a{
    font-size: 16px;
    font-weight: 600;
    text-decoration:none;
    color: #fff;
}



.sor2 ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.sor2 ul li::after{
    content: '';
    width: 0%;
    height: 0.5px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.sor2 ul li:hover::after{
    width: 100%;
}



.sor2 .ikon2 .fa{
    margin-top: 50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
}

@media(max-width: 700px){
    impresszum{
        bottom: unset;
    }
    .sor{
        flex-basis: 100%;
   }

.sor:nth-child(2), .sor:nth-child(3){
    flex-basis: 100%;
  }
}







































