*{
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    scroll-behavior: smooth;
    width: 100%;
}

header{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 2;
}

nav{
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.836);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.836);
    background: rgba(92, 95, 98, 1);
    width: 100%;
    height: 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav.animate, .nav-animation{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    background: #da251c;
    position: fixed;
    width: 100%;
    opacity: 1;
}

.logo img{
    height: 50px;
    min-width: 70px;
    margin-left: 10px;
    position: relative;
}

.nav-links{
    font-size: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 100px;
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}
.nav-links li ul{
    display: none;
    position: absolute;
    background-color: #da251c;
    opacity: 0.8;
    border-radius: 0px 0px 4px 4px;
    padding: 7px;
    margin-left: 5px;
    margin-right: 5px;
}
.nav-links li:hover ul{
    display: block;
}

.nav-links ul img{
    width: 25px;
}

.burger{
    display: none; /** csak mobil verziónál kell **/
    cursor: pointer;
    margin-right: 10px;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.language{
    height: 35px;
    width: 35px;
    margin: auto;
    margin-right: 10px;
    justify-items: center;
    margin-top: 1.5vh;
    opacity: 0.8;
}

.bubble{
    position: absolute;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    background: -webkit-gradient(linear, left bottom, right top, from(#fff), to(#fff));
    background: linear-gradient(to right top, #fff, #fff);
    opacity: 0.5;
    margin-top: 20px;
    max-height: 3px;
}

#topBtn{
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 90px;
    right: 15px;
    color: rgba(92, 95, 98, 0.8);
    border: none;
    cursor: pointer;
    display: none;
    background-color: transparent;
    z-index: 999999;
    opacity: 0.8;
    -webkit-animation: slideInUp 1s;
    animation: slideInUp 1s;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}


/* FŐ LAPOK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
aside{
    visibility: visible;
}

main{
    width: 100%; 
    margin: auto;
}

section{
    min-height: 90vh;
    width: 95%;
    margin: auto;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
}

section h2{
    padding-top: 10vh;  
    padding-bottom: 3vh;  
    font-size: 30px;
}

.kezdolap{
    min-height: 90vh;
    width: 100%;
    padding: 0px;
    position: relative;
    opacity: 0.75;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*fixed = parallax
      scroll = normal */
    background-image: url(./img/bg2.jpg);
    color: #fff;
    letter-spacing: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: hidden;
    text-transform: uppercase;
}

.kezdolap h1{
    font-size: 60px;
    padding: 100px 0px 20px;
    margin-top: 60px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
.kezdolap h2{
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    padding: 20px;
}

.button-all{
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: auto;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
}

.button{
    border: 4px solid #da251c;
    width: 240px;
    height: 100%;
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    background: #da251c;
    opacity: 1;
    margin: 30px;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-animation: pulse 0.7s infinite;
    animation: pulse 0.7s infinite;
    display: flex;
}

.button a{
    margin: auto;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px; 
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: initial;
    letter-spacing: 2px;
}

.button:hover{
    background: rgba(92, 95, 98, 1);
    opacity: 0.9;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-animation: none;
    animation: none;
}

.button img{
    position: relative;
    width: 40px;
    height: 35px;
    padding: 0px 15px 0px 10px;
    float: left;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    transform: scale(2);
    -webkit-transform: scale(2);
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.mega-akcio{
    background-color: #da251c;
    position: fixed;
    top: 45%;
    transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    right: 0px;
    z-index: 25;
    cursor: pointer;
    padding: 10px;
    border-radius: 20px 0px 0px 20px;
    -webkit-animation: bounce infinite 3s;
    animation: bounce infinite 3s;
    width: 200px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    margin-right: -150px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    visibility: visible; /*~~black friday felugró~~~~~*/
}

.mega-akcio-animation{
    display: block;
}

.mega-akcio a{
    margin: auto;
    position: absolute;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 0px;
}

.mega-akcio img{
    height: 33px;
    width: 33px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    padding: 2px;
    margin-right: 10px;
}

.mega-akcio:hover{
    -webkit-animation: none;
    animation: none;
    margin-right: 0px;
}

main#blur.active{
    -webkit-filter: blur(20px);
    filter: blur(20px);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    overflow: hidden;
}

.popup{
    position: fixed;
    top: 70%;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    width: auto;
    height: auto;
    padding: 36px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    text-align: center;
}

.popup2{
   visibility: hidden;
    opacity: 1; /*~~black friday felugró~~~~~*/
}

.popup2.active {
    visibility: visible; /*~~black friday felugró~~~~~*/
    opacity: 1; /*~~black friday felugró~~~~~*/
}

#popup.active{
    visibility: visible; /*~~black friday felugró~~~~~*/
    opacity: 1; /*~~black friday felugró~~~~~*/
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.mega_close, .csuk{
    color: #363636;
    font-size: 2.5em;
    position: absolute;
    top: 5px;
    right: 15px;
    text-decoration: none;
    cursor: pointer;
}

.popup h2{
    color: #da251c;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}

#popup_img{
    margin: auto;
    height: 250px;
    width: auto;
    padding-bottom: 15px;
}

.popup b{
    color: #da251c;
    font-size: 14px;
}

.popup .termek-btn{
    margin: 5px 5px 0px 5px;
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.ceg{
    margin-left: 45px;
    margin-right: 45px;
}

.ceg .container{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 0.8fr));
    grid-column-gap: 90px;
    grid-row-gap: 25px;
    width: 90%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card{
    position: relative;
    min-height: 435px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content{
    position: absolute;
    right: 0;
    width: calc(100% - 75px);  /*kis doboz méretét vonjuk le*/
    height: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
}

.content h3{
    font-size: 18px;
    padding-bottom: 15px;
    padding-top: 10px;
}

.content p{
    font-size: 14px;
    text-align: justify;
}

.content h4{
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #da251c;
}

.imgBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #da251c;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.card:hover .imgBox{   /*oldalra menő (kép+)doboz*/
    width: 150px;
    height: 150px;
    left: -75px;
    top: calc(50% - 75px);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    background: #da251c;
    font-size: 0em;
}

.card .imgBox:before{
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.342);
    font-weight: bold;
}

.imgBox img{   /*nagy kép mérete*/
    max-width: 150px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.card:hover .imgBox img{    /*kicsi kép mérete oldalt*/
    max-width: 75px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.termek h3{
    padding-bottom: 20px;
    font-weight: normal;
}

.termek-all{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 0.8fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.termek-all p{
    padding: 10px 0px;
}

.termek-logo{
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
    width: 100%;
    height: 340px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
}

.termek-logo img{
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 210px;
    max-height: 100px;
    padding-top: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.termek-logo:hover img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.carbidex-img #carbidex{
    max-height: 30px;
    width: auto;
    padding: 0;
}

.termek-logo p{
    grid-row: 2/4;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.termek-logo-extra{
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
    width: 100%;
    height: 340px;
    padding: 15px;
}

.termek-logo-extra h3{
    padding: 15px 20px 5px 20px;
}

.termek-logo-extra ul{
    grid-column: 1/2;
    grid-row: 2/5;
    text-align: left;
    width: 95%;
    padding: 10px 10px 10px 10px;
    margin-left: 20px;
}

.termek-logo-extra li{
    padding: 5px;
}

.termek-logo-extra-2{
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
    width: 100%;
    height: 340px;
    padding: 15px;
    display: grid;
    grid-template-rows: 1fr 0.5fr 0.5fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.termek-logo-extra-2 img{
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 228.8px;
    height: 100px;
}

.termek-btn{
    grid-row: 4/5;
    display: inline-block;
    padding: 15px;
    width: 160px;
    border-radius: 4px;
    margin: auto;
    border: 2px solid #da251c;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

.termek-btn a{
    text-decoration: none;
    color: #000;
}

.termek-btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.termek-btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.termek-btn:hover{
    background-color: #da251c;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.termek-btn:hover a{
    color: #fff;
}

.termek-btn:hover span {  /*szöveg eltolása a nyíl miatt*/
    padding-right: 25px;
}

.termek-btn:hover span:after {
    opacity: 1;
    right: 0;
    color: #fff;
}

.email-btn{
    width: 200px;
    margin-bottom: 15px;
}

/**************************************************************************/
.akcio{
    margin-left: 45px;
    margin-right: 45px;
}

.akcio2{
    margin-bottom: 50px;
}

.akcio h3{
    padding-top: 20px;
    font-weight: normal;
}
.akcio-container{
    display: flex;
    margin: auto;
    justify-content: space-evenly;
}

.akcio-elemek{
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
    padding: 15px;
    margin: 10px;
    height: auto;
}

.akcio-elemek h3{
    font-size: 18px;
    padding-bottom: 15px;
    padding-top: 10px;
    font-weight: bold;
}

.akcio-elemek p{
    padding: 2px;
}

.akcio-elemek b{
    color: #da251c;
}

.akcio-elemek img{
    margin: auto;
    align-items: center;
    width: 280px;
    max-height: 150px;
    padding: 10px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.akcio-elemek:hover img{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.download-btn-akcio{
    width: 220px;
    height: 53.2px;
    margin: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.akcio-termek-btn{
    width: auto;
    margin: 10px;
}

.email-btn-akcio{
    width: 220px;
    height: 53.2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.download-btn-akcio img{
    display: flex;
    margin: auto;
    float: left;
    top: -15px;
    position: relative;
    height: 50px;
    width: 50px;
    padding: 5px;
    padding-right: 10px;

}

/**********************************************************************************/
.collapsible {
    cursor: pointer;
    padding: 18px;
    outline: none;
    font-weight: bold;
    margin-top: 10px;
}

.collapsible.active, .collapsible:hover {
    background-color: #da251c;
    color: #fff;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px 4px 0 0;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.collapsible.active:after {
    content: "\2212";
}

.promcontent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    border-radius: 0 0 4px 4px;
    text-align: center;
}

.prom-szoveg{
    padding: 10px;
}

.prom-img{
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 5px;
    padding-right: 10px;
}

.prom-szoveg p{
    padding: 10px 0;
}

.prom-szoveg ul{
    list-style: none;
    text-align: center;
    padding: 10px 0;
    line-height: 50px;
}

.prom-szoveg img{
    align-items: center;
    max-width: 70%;
    height: auto;
}

table {
    border-spacing: 1px;
    text-align: left;
    font-weight: lighter;
    margin: auto;
}
.prom-szoveg b{
    color: #da251c;
}

.prom-szoveg .p4{
    font-size: 10px;
}
#wez-img{
    width: 310px;
    height: auto;
}

/**********************************************************************************/
.elerhetoseg-page{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 450px));
    -webkit-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px;
}

.elerhetoseg h3{
   padding: 10px;
}

.elerhetoseg p{
    padding: 5px;
}

.map-page div{
    padding: 10px;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: center;
}

.map-page p{
    cursor: default;
}

.map-page img{
    height: 30px;
    padding: 0px 10px;
}

.map iframe{
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: 0;
    width: 90%;
}

.wrapper{
    position: relative;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 20px;
    width: 90%;
}

form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    background: rgba(92, 95, 98, 0.897);
    padding: 30px 30px 15px 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    color: #fff;
}

form ::-webkit-input-placeholder{
    color: #fff;
}

form :-ms-input-placeholder{
    color: #fff;
}

form ::placeholder{
    color: #fff;
}

form input, textarea{
    margin: 15px 0;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #fff;
    padding: 10px;
    color: #fff;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

form textarea{
    height: 80px;
    margin-bottom: 20px;
}

.form-error{
    color: #fff;
    background-color: #da251c;
    padding: 5px;
    margin-top: auto;
    border-radius: 5px;
    width: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.form-success{
    color:#fff;
    background-color: green;
    padding: 5px;
    margin: auto;
    border-radius: 5px;
    width: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.input-error {
    -webkit-box-shadow: 0 0 5px red;
    box-shadow: 0 0 5px red;
}

#mail-submit{
    border: 2px solid #da251c;
    background-color: transparent;
    padding: 7px;
    margin: auto;
    color: #fff;
    border-radius: 5px;
    width: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    animation: none;
    z-index: 1;
}

#mail-submit:hover{
    background-color: #da251c;
}

/************************************************************************/
.cookie-container{
    background: rgba(92, 95, 98, 1);
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #f5f6fa;
    font-size: 14px;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 50;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 3s;
    transition: all 3s;
    -webkit-box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.63);
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.63);
    border-radius: 10px 10px 0px 0px;
}

.cookie-container a{
    color: #f5f6fa;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-btn{
    border: 2px solid #da251c;
    width: 100px;
    height: 100%;
    padding: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    background: rgba(92, 95, 98, 1);
    color: #fff;
    margin: auto;
    margin-left: 15px;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cookie-btn a{
    margin: auto;
    text-decoration: none;
    padding: 8px; 
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cookie-btn:hover{
    background: #da251c;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cookie-btn-beall{
    animation: none;
    width: 110px;
    height: 100%;
    padding: 5px;
    border: 0.5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    background: rgba(92, 95, 98, 1);
    color: #fff;
    text-align: center;
    margin: auto;
    margin-left: 15px;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cookie-btn-beall:hover{
    background: #da251c3f;
}

.cookie-btn-beall a{
    text-decoration: none;
}

.beall{
    display: grid;
    grid-template-columns: 1fr 0.15fr;
    max-height: 500px;
    width: auto;
    position: fixed;
    top: 70%;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    margin: auto;
    background: rgba(92, 95, 98, 1);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.63);
    color: #fff;
    text-align: justify;
    border-radius: 5px;
    padding: 0 10px 10px 10px;
    font-size: 14px;
    z-index: 49;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#beall.active{
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 14px;
}

.close{
    font-size: 2.5em;
    position: fixed;
    top: 5px;
    right: 15px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.beall .check{
    grid-column: 2/3;
    margin: auto;
    top: 50%;
}

.beall h4, .beall p{
    grid-column: 1/2;
}

.beall p{
    padding-bottom: 14px;
    margin-left: 10px;
}

.beall h4{
    padding: 10px 0;
    font-size: 16px;
}

input[type="checkbox"] {
    position: relative;
    width: 30px;
    height: 15px;
    -webkit-appearance: none;
    background: rgba(92, 95, 98);
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    transform: scale(1.4);
}

input:checked[type="checkbox"]{
    background: #da251c;
}

input[type="checkbox"]::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: 0;
    left: 0;
    background:rgb(231, 231, 231);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    transition: 0.5s;
}

input:checked[type="checkbox"]::before{
    left: 15px;
}

#must{
    cursor: not-allowed;
}

/************************************************************/
footer{
    min-height: 10vh;
    width: 100%;
    position: relative;
    bottom: 0px;
    z-index: 2;
    -webkit-box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.836);
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.836);
    background: rgba(92, 95, 98, 1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
}

.foot_logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 10px;
    margin: auto;
}

.foot_logo img{
    height: 55px;
    width: auto;
    margin: auto;
}

.foot_links{
    padding: 15px 0px;
    color: #fff;
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 158px));
    row-gap: 10px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
}

.foot_links li{
    list-style: none;
}

.foot_links a{
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
}

.foot_info{
    padding: 10px 0px 0px;
    color: #fff;
    font-size: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: grid;
    line-height: 18px;
}

.foot_info p{
    margin: auto;
}

.foot_adat{
    margin: auto;
    margin-bottom: 10px;
}

.foot_adat a{
    text-decoration: none;
    color: #fff;
}

/**************************************************/
.adat{
    margin: auto;
    padding: 20px;
}
.adatvedelem h2{
    padding: 4vh;
}

.adatvedelem h3{
    padding: 2vh 0;
    text-align: left;
}

.adatvedelem p{
    text-align: justify;
    padding: 0 0 1vh 1vh;
}

.adatvedelem ul{
    text-align: justify;
    padding: 0 0 1vh 7vh;
}

.adatvedelem #adatextra{
    padding: 4vh 0;
}


/* MÉRETEK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*menü*/
@media screen and (max-width: 888px){
    nav{
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        background: #da251c;
        height: 90vh;
        width: 100%;
        top: 10vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        clip-path: circle(100px at 90% -20%);
        -webkit-clip-path: circle(100px at 90% -20%);
        pointer-events: none;
        -webkit-transition: all 1s ease-out;
        transition: all 1s ease-out;
        border-radius: 0px 0px 10px 10px;
        padding-top: 20px;
        padding-right: 80px;
        }

    .nav-links.open{
        clip-path: circle(1500px at 90% -20%);
        -webkit-clip-path: circle(1500px at 90% -20%);
        pointer-events: all;
    }

    .nav-links li{
        opacity: 1;
    }

    .nav-links .language{
        display: none;
    }

    .nav-links li ul{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: relative;
    }

    .nav-links li:hover ul{
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    
    .nav-links ul img{
        margin: 10px;
        margin-bottom: 20px;
    }

    li.fade{
        opacity: 1;
    }

/*    @keyframes navLinkFade{
        from{
            opacity: 0;
            transform: translateX(50px);
            -webkit-transform: translateX(50px);
        }
        to{
            opacity: 1;
            transform: translateX(0px);
            -webkit-transform: translateX(0px);
        }
    }

    @-webkit-keyframes navLinkFade{
        from{
            opacity: 0;
            transform: translateX(50px);
            -webkit-transform: translateX(50px);
        }
        to{
            opacity: 1;
            transform: translateX(0px);
            -webkit-transform: translateX(0px);
        }
    }
*/
    .logo{
        margin: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .burger{
        display: block;
    }
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px,6px);
        -webkit-transform: rotate(-45deg) translate(-5px,6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px,-6px);
        -webkit-transform: rotate(45deg) translate(-5px,-6px);
    }

    .bubble{
        display: none;
    }
    .akcio-container{
        display: flex;
        flex-direction: column;
    }
}

/*tablet -cég design, akció menü */
@media screen and (max-width: 768px){
    /*CÉGNÉL MEGVÁLTOZIK A DIZÁJN*/
    .nav-links {
        clip-path: circle(100px at 90% -25%);
        -webkit-clip-path: circle(100px at 90% -25%);
    }

    #topBtn{
        height: 30px;
        width: 30px;
        right: 5px;
    }
    
    .button{
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        font-size: 20px;
        padding: 5px;
    }

    .popup{
        position: fixed;
        top: 25%;
        left: 50%;
        -webkit-transform: translate(-50%, -25%);
        transform: translate(-50%, -25%);
        width: 80%;
        height: auto;
        padding: 26px;
    }

    .mega_close, .csuk{
        top: 0px;
        right: 10px;
    }

    .popup h2{
        margin-top: 5px;
    }

    #popup_img{
        width: auto;
        height: 200px;
    }

    section h2{
        padding-top: 8vh;  
    }

    section h3{
        padding-bottom: 10px;
    }

    .kezdolap{
        min-height: 60vh;
    }

    .kezdolap h1{
        padding-top: 50px;
        margin-top: 20px;
    }

    .ceg{
        margin: auto;
    }

    .card{
        min-width: 280px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        margin: auto;
        margin-bottom: 30px;
    }
    .imgBox{
        position: relative;
    }

    .card .imgBox,
    .card:hover .imgBox{
        width: 100%;
        height: 200px;
        left: 0;
        top: 0;
    }

    .card .imgBox img,
    .card:hover .imgBox img{
        max-width: 100px;
    }

    .content{
        position: relative;
        width: 100%;
    }
    .card .imgBox:before{
        font-size: 0em;
    }

    .akcio-menu{
        display: block;
    }

    .termek-logo img{
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

/*régiben nem volt nincs ellenőrizve!!!!!!!!!*/
@media  screen and (max-width: 560px){
    .button{
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        min-width: 120px;
        border: 2px solid #da251c;
        padding: 5px;
        margin-top: 10px;
    }

    .button a{
        font-size: 16px;  
        letter-spacing: 1px;      
    }

    .button img{
        padding: 0px 10px 0px 5px;
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        float: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .button-all{
        margin: auto;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        left: 50%;
        position: initial;
    }

    .button-all a{
        font-size: 16px;
    }

    .popup{
        padding: 20px;
    }

    .mega_close, .csuk{
        top: 0px;
        right: 10px;
    }

    .popup h2{
        margin-top: 5px;
    }

    #popup_img{
        width: auto;
        height: 200px;
    }

    #dormer-akcio.akcio-container {
        max-height: 730px;
    }
    
}
/*másik borítókép*/
@media screen and (max-width: 500px){
    .kezdolap{
        min-height: 50vh;
        width: 100%;
        /*background-image: url(./img/bg_small2.jpg);*/
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        overflow-y: hidden;
        overflow-x: hidden;
        letter-spacing: 3px;
    }

    .kezdolap h1{
        font-size: 40px;
        padding: 20px 0px;
        margin-top: 5px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    }
    .kezdolap h2{
       font-size: 24px;
       padding: 5px;
    }

    .button-all{
        display: block;
        margin: auto;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        -webkit-transform: translate(-50%);
    }
    #dormer-akcio.akcio-container {
        max-height: 800px;
    }
}

/*mobil*/
@media screen and (max-width: 426px){
    section{
        padding-top: 7vh;
    }

    section h2{
        padding-top: 2vh;  
        padding-bottom: 2vh;  
        font-size: 25px;
    }

    #topBtn{
        height: 30px;
        width: 30px;
        bottom: 78px;
        right: 5px;   
    }

    .popup{
        width: 95%;
    }

    #popup_img{
        width: auto;
        height: 150px;
    }

    .ceg .container{
        grid-template-columns: repeat(auto-fit, minmax(180px, 300px));
    }

    .termek-all{
        grid-template-columns: repeat(auto-fit, minmax(180px, 300px));
        grid-row-gap: 10px;
    }

    .termek-logo{
        max-height: 250px;
        grid-template-rows: 1fr 0.5fr 0.5fr 1fr;
    }

    .termek-logo img{
        width: 200px;
        height: 80px;
        padding-top: 5px;
    }

    .termek-logo-extra{
        height: 265px;
    }

    .termek-logo-extra h3{
        padding: 5px 10px;
    }

    .termek-logo-extra ul{
        padding: 5px 10px 5px 10px;
    }

    .termek-logo-extra-2{
        height: 260px;
    }

    .termek-logo-extra-2 img{
        margin: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 200px;
        height: 75px;
    }

    .termek-logo-extra-2 p{
        padding: 0px;
    }

    .termek-btn{
        padding: 15px;
    }

    .termek-btn a{
        text-decoration: none;
        color: #000;
    }

    .akcio h3{
        padding-bottom: 10px;
    }

    .akcio-all{
        grid-template-columns: repeat(auto-fit, minmax(180px, 300px));
    }

    .akcio-container{
        min-height: 900px; 
        grid-template-rows: 1fr 2fr 2fr 1fr 2fr 1.5fr 1.5fr 2fr;
        font-size: 14px;      
    }

    .akcio-container p{
        padding-top: 10px;
    }

    .akcio-container ul li{
        height: 55px;
    }

    .elerhetoseg-page{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 300px));
        -webkit-column-gap: 15px;
        column-gap: 15px;
        row-gap: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    #mail-submit{
       width: 70%;
    }
}

@media screen and (max-width: 320px){
    .button-all .button{
        margin: 10px 20px;
    }
}

/*méretek
2560 - 4k
1444
1024
768 - tablet
425 - mobil
375 - mobil
320 - mobil
*/

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to{
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}