/*
Theme Name: ASSEMBLY SHOP (responsive)
Theme URI: https://assembly.hu
Description: Developer Theme 
Author: Assembly
Author URI: https://assembly.hu
Version: 2016.01
*/

body{
    color: #333;
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    background-color: #f6f6f6;
}

input, textarea, button, body {
font-family: "Poppins", sans-serif;
}

li {
    margin-bottom: 10px;
}

/* Alap konténer flexbox-szal, ami alapból stretch-re rakja a gyermekeket */
.cikcak-blokk {
    display: flex;
    align-items: stretch; /* Ez biztosítja, hogy a kép és a szöveg egyforma magas legyen */
    margin-bottom: 50px;
    gap: 40px; /* Távolság a kép és a szöveg között */
    padding:0 10%;
}

/* Az oszlopok szélessége fele-fele (vagy ízlés szerint arányosítva) */
.cikcak-szoveg, 
.cikcak-kep {
    flex: 1;
    width: 50%;
}

/* Opcionális: a szöveges rész függőlegesen középre igazítása, ha a kép lenne a magasabb */
.cikcak-szoveg {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* A kép formázása, hogy kitöltse a magasságot torzulás nélkül */
.cikcak-kep img {
    width: 100%;
    height: 100% !important;
    object-fit: cover; /* Levágja a kilógó részeket torzítás helyett, mint a background-size: cover */
    display: block;
}

/* AUTOMATIKUS MEGFORDÍTÁS: Minden második (.cikcak-blokk) elemet megfordítunk */
.cikcak-blokk:nth-child(even) {
    flex-direction: row-reverse;
}

/* RESPONSIVE: Mobilon egymás alá rakjuk őket, és fix magasságot adunk a képnek, hogy ne tűnjön el */
@media (max-width: 768px) {
    .cikcak-blokk,
    .cikcak-blokk:nth-child(even) {
        flex-direction: column; /* Mobilon mindegyik normál fentről lefelé sorrendbe áll */
        gap: 20px;
    }
    
    .cikcak-szoveg, 
    .cikcak-kep {
        width: 100%;
    }
    
    .cikcak-kep img {
        height: 300px; /* Mobilon ne a szöveg magasságát vegye fel, hanem legyen egy szép fix magassága */
    }
}

.velemenyek-carousel-holder {
    margin: 40px 0;
    padding: 20px 0;
    position: relative;
}

.velemeny-carousel-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.velemeny-carousel-toggle:hover {
    background: #f6f6f6;
}

.velemeny-toggle-play {
    display: none;
}

.velemeny-carousel-toggle.is-paused .velemeny-toggle-pause {
    display: none;
}

.velemeny-carousel-toggle.is-paused .velemeny-toggle-play {
    display: inline;
}
.velemeny-item {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
        font-style: italic;
    font-size: 14px;
}
.velemeny-avatar img {
    width: 80px !important;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}
.velemeny-szoveg {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}
.velemeny-szerzo {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.kapcsolatlink {
    padding: 2% 5% 4% 5%;
    margin-bottom: 50px;
    text-align: center;
    border-radius: 16px;
    position: relative;
    color: black;
    clear: both;
    margin-top: 40px;
    border: 1px solid #aaa;
}

.kapcsolatlink img {
    width: 100%;
    height: 100% !important;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: grayscale(1);
    margin: 0;
}

.kapcsolatlink h2 {
font-weight:400;
text-transform:uppercase;
}

#reflist {
    background-color: white;
    padding: 20px;
    text-align: center;
    padding-bottom: 50px;
}    

#bigbacktm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(10px);
    opacity: .3;
}

#hirlevelform {
    position: relative;
    padding: 60px 0;
    background-color: #000000;
    clear: both;
}

.page-template-page-hirlevel-feliratkozas #hirlevelform {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.page-template-page-hirlevel-feliratkozas #hirlevelform > .wrapper {
    width: 100%;
}

#hirlevelform .hirlevel-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

#hirlevelform .hirlevel-text {
    flex: 1;
    width: 50%;
    color: #fff;
}

#hirlevelform .hirlevel-form {
    flex: 1;
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#hirlevelform .ml-embedded {
    position: relative;
    z-index: 10;
    box-shadow: 10px 10px 50px;
    display: inline-block;
}

@media (max-width: 768px) {
    #hirlevelform .hirlevel-inner {
        flex-direction: column;
    }

    #hirlevelform .hirlevel-text,
    #hirlevelform .hirlevel-form {
        width: 100%;
    }

    #hirlevelform .hirlevel-form {
        justify-content: center;
    }
}

#hirlevelback {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    left: 0;
    filter: grayscale(1) brightness(0.55);
    opacity: 0.85;
}

.bevezeto, .kiemelt, .nagykepes {
    background-color: #00000088;
    padding: 2% 5%;
    margin-bottom: 50px;
    text-align: left;
    border-radius: 16px;
    position: relative;
    color: white;
    clear:both;
    line-height:1.5em;
}

.bevezeto img, .kiemelt img, .nagykepes img {
    width: 100%;
    height: 100% !important;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: grayscale(1);
    margin: 0;
}

.nagykepes {
    background-color: transparent !important;
    min-height: 360px;
}

.nagykepes img {
    filter: grayscale(0);
}

.bevezeto h2, .kiemelt h2, .nagykepes h2 {
font-weight:400;
text-transform:uppercase;
}

.nagykepes h2 {
text-align: left;
    float: right;
    font-size: 28px;
}

#desc {
padding-top: 20px;
    background-color: white;
}

#desc h2 {
    font-size: 52px;
    text-align: center;
    color: #bda88a;
}


.desc {
    position: relative;
    overflow: hidden;
    color: #333;
    text-decoration: none;
        margin-bottom: 70px;
}

.desc .descimage img {
    width: 50%;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    height: 100%;
    z-index: 1;
    filter: grayscale(1);
    box-shadow: 0 0 0 50px #ffffff;
      transition:         all 500ms ease;
}

.desc:hover > .descimage img {
    filter: grayscale(0);
        box-shadow: 0 0 0 0px #ffffff;
        transform:scale(1.1);
}

.desc:hover > .wrapper .padding .desctex {
    transform: translateX(30px);
        box-shadow: 10px 10px 30px rgba(0, 0, 0, .1);
}

.desc:nth-child(odd):hover > .wrapper .padding .desctex {
    transform: translateX(-30px);
}

.desc:hover > .descback {
    background-color: #bda88a;
}

.desc .desctex {
    width: 43%;
    padding: 3% 5%;
    line-height: 1.5em;
    margin: 8% 0;
    background-color: white;
    position: relative;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0);
          transition:         all 1000ms ease;
}

.desctex h1 {
    font-size: 44px;
    font-weight: 600;
    margin: 0.2em 0;
    color: #bda88a;
}  

.desctex h2, .desctex h3 {
    font-size: 25px;
    margin: 0;
}  

.desc:nth-child(odd) .desctex {
    float: right;
}

.desc:nth-child(even) .desctex {
    float: left;
}

.desc:nth-child(odd) .descimage img {
    left: 0;
}

.desc:nth-child(even) .descimage img {
    right: 0;
}

.descback {
    background-color: #ededed;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
          transition:         all 1000ms ease;
}

.descback img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    opacity: .05;
    filter: grayscale(1) contrast(5);
    object-position: left;
    z-index: 0;
}

#backblack {
    background-color: black;
    height: 190px;
        background-image: url(images/backblack.jpg);
        filter: brightness(1.5);
}

#valtozas .post {
    text-align: center;
    max-width: 1200px;
    margin: 60px auto 60px;
}

#valtozas h2 {
    color: #bda88a;
    font-size: 54px;
}

.hirlevel-intro {
    margin-bottom: 0;
}

.hirlevel-intro .post {
    margin-bottom: 20px;
}

.productlist {
text-align:center;
}

.productlist li {
    float: none !important;
    display: inline-block;
    margin-right: 0 !important;
}

a.searchbtn {
    font-size: 30px;
    color: #c6b08c;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
}

a.kosarbtn {
    font-size: 30px;
    color: #c6b08c;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.kosar-count {
    position: absolute;
    bottom: 11px;
    right: 6px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* A "Kosár" szöveg eltüntetése és a link formázása */
a.added_to_cart.wc-forward {
    font-size: 0 !important; /* Eltünteti az eredeti szöveget */
    display: inline-block;
    text-decoration: none;
    margin-left: 10px; /* Távolság a gombtól, ha szükséges */
    vertical-align: middle;
}

/* A FontAwesome ikon beillesztése */
a.added_to_cart.wc-forward::before {
    content: "\f07a"; /* A 'shopping-cart' ikon Unicode kódja */
    font-family: "Font Awesome 6 Free"; /* Ellenőrizd, melyik verziót használja a sablonod (pl. 6 Free, 5 Pro stb.) */
    font-weight: 900; /* Solid ikonokhoz általában szükséges */
    font-size: 20px; /* Az ikon mérete (mivel a szülő 0px) */
    color: #cbb495; /* A képen látható barnás árnyalat (igazítsd a designhoz) */
    line-height: 1;
}

/* Opcionális: Hover effekt */
a.added_to_cart.wc-forward:hover::before {
    opacity: 0.8;
}

select.orderby {
    padding: 10px;
    border-radius: 5px;
    border-color: #ccc;
}

.woocommerce-notices-wrapper {
    padding: 30px 0;
}

.woocommerce ul.products li.product .price {
    color: black !important;
    font-size: 16px !important;
}

#gallery-1 img {
    border: 2px solid #fff !important;
    border-radius:8px;
}

dl.gallery-item {
    margin: 6px 0 !important;
    line-height: 0;
    font-size: 0;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background-color: #bda88a !important;
    color: white !important;
    padding: 20px 30px;
    font-weight: normal;
}

.woocommerce ul.products li.product a img {
    height: 280px !important;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

h2.woocommerce-loop-category__title {
    line-height: 1.4em;
    min-height: 2.8em;
    padding: 10px 15px !important;
}

h2.woocommerce-loop-product__title {
    min-height: 4em;
    padding: 10px 15px !important;
    color:black;
}

.woocommerce-message::before {
    color: #c6b08c !important;
}

.woocommerce-message {
    border-top-color: #c6b08c !important;
}

mark.count {
    background-color: transparent;
    font-weight: normal;
    font-size: 13px;
}

div#gallery-1 {
    clear: both;
    margin-bottom: 30px;
}

a {
    color: #c6b08c;
    text-decoration: none;
}

.wcfile {
display:none;
}

i.fas.fa-shopping-cart {
    font-size: 22px;
}

input#coupon_code {
    width: 170px;
}

nav.woocommerce-breadcrumb {
    margin: 20px 0 40px !important;
    font-size: 14px !important;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #c5af8e !important;
    padding: 19px !important;
}

a.wc-block-grid__product-link, .wc-block-grid__product-add-to-cart button, a.added_to_cart.wc-forward {
    color: #888888 !important
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #000000 !important;
}

li.product, li.product-category {
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    text-align: center;
    padding-bottom: 20px !important;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
}

.price ins {
    text-decoration: none;
}

a, .fast {
  -webkit-transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:         all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.anim {
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:         all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 600ms ease;
	-o-transition: all 600ms ease;
}

.slow {
  -webkit-transition: all 1200ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition:         all 1200ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 1200ms ease;
	-o-transition: all 1200ms ease;
}

.displaynone {
display:none;
}

.hide {
opacity:0 !important;
}

.breadcrumb {
font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.4em;
    padding: 0;
    text-align: center;
        margin-bottom: 60px;
}

.breadcrumb .padding {
padding:0px;
}

.breadcrumb ul {
padding:0;
}

.breadcrumb li {
    display: inline-block;
    color: #fff;    
}

.breadcrumb a {
  text-decoration: none;
    color: #c6b18d;
}

.parent::after {
  display: inline-block;
  font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f054";
  margin: 0 13px;
}

h1,h2,h3,h4,h5,h6 {
    line-height: 1.4em;
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin: 2em 0 1em;
}

h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 2em 0 1em;
}

h4 {
    font-size: 22px;
    text-transform: uppercase;
    margin: 2em 0 1em;
}

.wrapper{
	margin: 0 auto;
	max-width:1600px;
  position:relative;
padding:0;
z-index:10;
}

.button {
    cursor: pointer;
    background-color: #c6b08c !important;
    color: white !important;
}

.wc-block-cart__submit-container {
    border: 1px solid #c6b08c !important;
}

input#submit {
    background-color: #888888;
    color: white;
    padding: 16px 23px;
}

.btn {
padding: 18px 28px;
    text-transform: uppercase;
    font-size: 16px;
    background-color: #bda88a;
    color: #FFF !important;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-appearance: none;
    text-decoration: none;
    display: inline-block;
        font-family: "Playfair Display", serif;
        border-radius:4px;
        margin:30px 0;
}

.btn:hover {
background-color:#111;
}

.delete {
    background-color: red;
}

.cancel {
background-color:#DE716E;
}

.message {
text-align: center;
    padding: 20px;
    margin: 20px 0 30px;
    font-weight: bold;
    font-size: 18px;
    background-color: #444;
    color: white;
}

.error {
background-color: #F44336;
    color: #fff;
}

.layout {
padding:5% 0;
position: relative;
overflow: hidden;
}

.entry {
position:relative;
z-index:100;
line-height:1.5em;
}

.entry img {
border-radius:10px;
}

.entry iframe {
    max-width: 100%;
}

.layoutimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax {
    text-align: center;
background-color:black;
    color: white;
}

.parallax .entry {
    max-width: 640px;
    margin: 0 auto 2em;
}

.parallax .layoutimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    opacity:.5;
}

.formline {
    margin-bottom: 20px;
}

img#prepic {
    height: 58px;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    margin-top: 0;
    display:none;
}

#loading {
    height: 58px;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    margin-top: -2px;
    display:none;
}

.formline label {
display:block;
font-weight:normal;
}

#fieldboxes {
}

.fieldbox {
width: 33%;
    display: inline-block;
    margin-bottom: 20px;
}

.field {
    padding: 16px 13px;
    font-size: 16px;
    display: inline-block;
    width: calc(100% - 22px);
}

.fieldbox .field {
       width: calc(100% - 42px);
}

.dropdown {
width: calc(100% - 110px);
  padding: 5px;
  border-radius: 0px;
  border: 1px solid #BBB;
}

#cim {
    font-size: 20px;
    font-weight: bold;

}

#contactform textarea {
    width: calc(100% - 50px);
    padding: 7px 10px;
    font-size: 16px;
    min-height: 150px;
    display: inline-block;
    border: 1px solid #BBB;
    max-width: calc(100% - 22px);
}

.infotext {
  font-size: 12px;
  text-align: right;
  opacity: 0.7;
}

.center {
position:absolute;
left:50%;
top:50%;
transform:translateX(-50%) translateY(-50%);
-webkit-transform:translateX(-50%) translateY(-50%);
-moz-transform:translateX(-50%) translateY(-50%);
-ms-transform:translateX(-50%) translateY(-50%);
-o-transform:translateX(-50%) translateY(-50%);
}

.hcenter {
position:absolute;
left:50%;
transform:translateX(-50%);
-webkit-transform:translateX(-50%);
-moz-transform:translateX(-50%);
-ms-transform:translateX(-50%);
-o-transform:translateX(-50%);
}

.vcenter {
position:absolute;
top:50%;
transform:translateY(-50%);
-webkit-transform:translateY(-50%);
-moz-transform:translateY(-50%);
-ms-transform:translateY(-50%);
-o-transform:translateY(-50%);
}

#statusbar {
    position: relative;
    padding: 8px 0 0;
    color: rgb(0 0 0 / 50%);
    font-size: 12px;
    overflow: hidden;
}

.headon #statusbar {
    padding: 0;
    height: 0;
}

#statusbar .padding {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 27px;
    padding-bottom: 7px;
}

#icons {
    line-height: 1;
}

div#language {
    display: inline-block;
}

#lang {
    display: inline-block;
    color: white;
    padding: 0 10px;
    font-size: 13px;
    vertical-align: middle;
}

#icons a {
    display: inline-block;
    color: #c6b08c;
    padding: 0 8px;
    text-align: center;
    font-size: 12px;
    vertical-align: middle;
}

.headon {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
}

.headon #logo {
padding:10px 0;
}

.headon #logo img {
width: 200px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header a, h3 a {
}

#logo {
    position: relative;
    padding: 3% 0px;
    display: inline-block;
    line-height: 0;
}

#logo img {
width: 300px;
    height: auto;
}

#topmenu {
	position:absolute;
right:60px;
}

#hamburger {
  display: none;
}

#hambi div {
    background-color: #c6b08c;
    height: 2px;
    margin: 4px auto;
    border-radius: 1px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.hambitox #x1 {
  transform: rotateZ(45deg) translateY(4px) translateX(4px);
  -webkit-transform: rotateZ(45deg) translateY(4px) translateX(4px);
  -moz-transform: rotateZ(45deg) translateY(4px) translateX(4px);
  -ms-transform: rotateZ(45deg) translateY(4px) translateX(4px);
  -o-transform: rotateZ(45deg) translateY(4px) translateX(4px);
}

.hambitox #x2 {
  transform: rotateY(90deg);
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  -o-transform: rotateY(90deg);
}

.hambitox #x3 {
  transform:rotateZ(-45deg) translateY(-4.5px) translateX(4.5px);
  -webkit-transform:rotateZ(-45deg) translateY(-4.5px) translateX(4.5px);
  -moz-transform:rotateZ(-45deg) translateY(-4.5px) translateX(4.5px);
  -ms-transform:rotateZ(-45deg) translateY(-4.5px) translateX(4.5px);
  -o-transform:rotateZ(-45deg) translateY(-4.5px) translateX(4.5px);
}

#fullmenu {
    background-color: #222;
    box-shadow: 0 10px 15px rgb(0 0 0 / 0%), 0 20px 40px -20px rgb(0 0 0 / 50%) inset;
}

.nav {
	list-style:none;
  padding:0;
  margin:0;
  font-size:0;
}

.nav li{
	display:inline-block;
	position:relative;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.nav li:last-child {
border-right: none;
}

.nav li a{
    display: block;
    text-decoration: none;
    color: #bda88a;
    padding: 15px 20px;
    font-size: 18px;
    text-transform: uppercase;
    /* font-family: "Playfair Display", serif; */
    letter-spacing: 0.5px;
}

.nav ul {
background-color: #fff;
position: absolute;
top: 100%;
left: 0;
float: left;
z-index: 99999;
padding: 0;
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.5);
visibility:hidden;
opacity:0;
transition:visibility 0s linear 0.3s,opacity 0.3s linear;
}

.nav li:hover > ul{
  visibility:visible;
  opacity:1;
  transition-delay:0s;
}

.nav ul ul{
	top: 30%;
	left:100%;
	background: #343434;
}

.nav ul li {
border-top:0px solid #eee;
width: 100%;
}

.nav ul a{
height: auto;
line-height: 1em;
padding: 15px 20px;
border-left: none;
border-right: none;
width: initial;
white-space: nowrap;
color:black;
font-size:16px;
}

.nav li:hover > a {
}

.nav li:active, .nav li:focus, .clicked{
box-shadow:0 0 0 50px rgba(0,0,0,0.03) inset;
}

.menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f107";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    margin-left: 10px;
}

.current-menu-item {
       
}

.owl-buttons {
position: absolute;
top: 0;
width: 100%;
height: 100%;
overflow:hidden;
font-weight:300;
}

.owl-prev, .owl-next {
position: absolute;
top: 0;
color: #FFF;
font-size: 140px;
line-height: 350px;
width: 45%;
height: 100%;
opacity: 0;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-o-transition: all 300ms ease;
vertical-align: middle;
}

.owl-prev {
left:0;
padding-left:5%;
}

.owl-next {
right:0;
text-align:right;
padding-right:5%;
}

.owl-prev:hover, .owl-next:hover {
opacity:0.5;
}

#slider .slide {
height: 400px;
background-size: cover;
background-position: center center;
}

article {
 float: left;
    width: calc(97% - 320px);
    position: relative;

}

.padding {
margin:0 3%;
position:relative;
}

#tophead {
    position: relative;
    padding: 0px 0 0;
    background-color: #000;
    overflow: hidden;
    background-size: cover;
}

#tophead img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .4;
    width: auto;
    height: auto;
}

#tophead h1 {
    font-size: 54px;
    font-weight: 400;
    color: #fdfdfd;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 5% 0 10px;
    line-height: 1.2em;
}

.editpostlink {
position: absolute;
    right: 0px;
    top: 5px;
}

ul.boxes {
    padding: 0;
}

.box {
    display: inline-block;
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
    width: calc(50% - 60px);
    vertical-align: top;
    margin-right: 50px;
}

.box img {
    float: left;
    margin-right: 30px;
    width:150px;
}

.box h3 {
    font-size: 28px;
    margin-top: 5px;
    color: #c6b08c;
}

.box .excerpt {
    color: black;
    font-size: 15px;
    line-height: 1.4em;
}

ul.sideblog {
    list-style: none;
    padding: 0;
}

li.sblog {
    margin-bottom: 20px;
    display: block;
    position:relative;
    font-size:0;
    line-height:0;
}

.sblog img {
width:100%;
height:auto;
border-radius:8px;
}

.sblog h3 {
font-size: 18px;
    margin-top: 0.5em;
    color: #c6b08c;
}

.subpages {
    font-size: 0;
    line-height: 0;
    list-style: none;
    text-align: center;
    padding: 0;

}

.subpage {
    position: relative;
    display: inline-block;
    margin: 1%;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    width: 23%;
    aspect-ratio: 1 / 1;
}

.subpage h4 {
    position: absolute;
    border-radius: 8px 0 0 0;
    font-size: 16px;
    bottom: 0;
    right: 0;
    color: black;
    padding: 15px 15px;
    margin: 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-weight: normal;
    color: white;
}

.subpage img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    opacity: 1;
        opacity: .7;
}

#newcat {
    border-width: 1px;
    display: inline-block;
    margin: 5px 0;
    padding: 3px 12px;
    border-color: #888;
    border-style: outset;
    border-radius: 4px;
    background-color: #eee;
    cursor: pointer;
    font-size: 13px;
}


.short {
max-width:340px;
}

.wp-caption-text {
    text-align: center;
    letter-spacing: 1px;
    font-size: 14px;
}

table {
    width: 100%;
    text-align: center;
    background-color: #214e78;
}

th {
    color: #ffffff;
    background-color: #2f5e8a;
}    

tr:nth-child(even) {background: #f0f0f0}
tr:nth-child(odd) {background: #FFF}

th, td {
    padding: 10px 10px;
}

#searchfull {
    display:none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 36, 52, .8);
}

#searchform {
color: white;
    width: 94%;
    max-width: 600px;
    font-size: 0;
    margin: 0;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    z-index: 999;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f8f8;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    box-shadow: 5px 9px 8px -4px rgb(0 0 0 / 10%) inset;
}

#searchform h3 {
margin-top:0;
}

#searchform label {
    text-align: center;
    margin-bottom: 14px;
}

.searchon {
    margin-top:0px !important;

    opacity:1 !important;
}

input#search {
    border: none;
    padding: 15px 70px 15px 25px;
    width: 100%;
    -webkit-appearance: none;
    border-radius: 50px;
    outline: none;
    box-sizing: border-box;
    background-color: transparent;
}

#searchsubmit {
    position: absolute;
    font-size: 20px;
    color: white;
    right: 0;
    bottom: 0;
    padding: 12px 21px;
    cursor: pointer;
    background-color: #c6b08c;
    box-shadow: 0px -20px 30px -10px rgb(0 0 0 / 10%) inset;
}

div#searchexit {
    position: absolute;
    width: 100%;
    height: 100%;
}

div#searchexit i{
    position: absolute;
    right: 3%;
    top: 3%;
    color: white;
    font-size: 25px;
        cursor: pointer;
}

#result {
    padding: 0;
}

#result li {
    color: #ccc;
    border-bottom: 1px solid #ddd;
    padding-top: 8px;
    list-style: none;
    margin: 0;
}

#result a {
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}

#result .date {
    font-size: 12px;
    font-weight: normal;
    margin: 0 5px 4px 0;
    display: block;
    line-height: 1em;
}

#closebtn img {
width:15px;
display:inline-block;
margin-right:5px;
vertical-align:middle;
}

.post {
    padding: 2% 4%;
    position: relative;
    margin: 60px 0 60px;
    background-color: white;
    border-radius: 10px;
}

.entry img {
max-width: 100%;
height: auto;
}

.alignright {
  float: right;
  margin: 0 0 2% 3%;
}

.alignleft {
  float: left;
margin: 0 3% 2% 0;
}

.alignleft, .alignright {
width:30%;
  font-size: 0;
    line-height: 0;
}

.alignleft img, .alignright img {
width:100%;
height:100%;
}

.wp-caption-text {
    background-color: white;
    font-size: 15px;
    margin: 0;
    padding: 6px 10px;
    line-height: 1.4em;
}

.ui-sortable-handle {
float:left;
  width: auto;
  height: 80px;
position:relative;
margin:0 10px 10px 0;
border:1px solid #ccc;
}

.ui-sortable-handle:first-child::after { 
content: "kiemelt kép";
  position: absolute;
  left: 50%;
  background-color: #FFF;
  font-size: 13px;
  bottom: -5px;
  transform: translateX(-50%);
  padding: 0 3px;
  border-radius: 4px;
  opacity: 0.9;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}


.ui-sortable-handle label {
  width: auto;
  padding: 0;
}

.ui-sortable-handle img {
  width: auto;
  height: 80px;
}

.ui-sortable-placeholder {
}

.torles {
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: #FFF;
  border: 3px solid #D64642;
  color: #D64642;
  text-decoration: none;
  width: 15px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.plus {
cursor:pointer;
}

aside {
    float: right;
    width: 280px;
    list-style: none;
    background-color: #ffffff;
    padding: 50px 30px;
    color: black;
    font-size: 15px;
    margin:60px 0 0;
        border-radius: 10px;
}

aside h3 {
    border-bottom:2px solid #c6b08c;
    padding-bottom: 20px;
    margin-top: 0;
}

aside h4 {
    font-size: 19px;
}

#facebook {
overflow:hidden;
}

footer img {
max-width:90%;
}

img#footerlogo {
    height: 40px;
    opacity: 1;
    margin-bottom: 19px;
    /* filter: grayscale(1); */
    float: left;
    margin-right: 4%;
    border-right: 2px solid #c7c7c7;
    padding-right: 4%;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 60%;
    opacity: 1;
}

footer{
    position: relative;
    clear: both;
    text-align: left;
    padding: 30px 30px 60px;
    background-color: #000;
    color: #ffffffaa;
    font-size: 13px;
    z-index: 5;
}


#footertop {
}

footer a {
color:#bda88a;
text-decoration:none;
font-weight:normal;
}

footer a:hover {
color:#fff;
}

footer span {
display:inline-block;
}

.footer-nav-container ul {
list-style:none;
    margin: 0;
    padding: 0;
}

.footer-nav-container li {
    display: inline-block;
    margin-right: 20px;
    border-right: 1px solid #494949;
    padding-right: 20px;
    margin-bottom: 10px;
}

.footer-nav-container li:last-child {
    border-right: none;
}

.footer-nav-container .sub-menu {
display:none;
}

.footer-nav-container .menu-item-has-children > a::after {
display:none;
}

.clear {
clear:both;
}

@media screen and (max-width: 1400px) {
.nav li a {
    padding: 15px 15px;
    font-size: 13px;
}

#logo img {
    width: 200px;
} 

.woocommerce ul.products li.product a img {
    height: 240px !important;   
}

}

@media screen and (max-width: 1200px) {
.nav li a {
    padding: 15px 10px;
}
}

@media screen and (max-width: 1000px) {
#valtozas h2, #desc h2 {
    font-size: 34px;
}

#tophead {
    min-height: 140px;
}

#tophead h1 {
    font-size: 36px;
    margin: 24px 0 10px;
    padding: 0 10px;
    line-height: 1.15;
}

.breadcrumb {
    letter-spacing: 2px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.breadcrumb li {
    word-break: break-word;
}

#backblack {
    height: 135px;
}

#valtozas .post {
    margin: 40px auto;
}

.bevezeto, .kiemelt, .nagykepes {
    padding: 24px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
}

.nagykepes {
    min-height: 240px;
}

.nagykepes h2 {
    font-size: 16px;
    text-align: left;
}

.bevezeto h2, .kiemelt h2 {
    font-size: 22px;
}

#logo {
    padding: 15px 0;
}

#logo img {
    width: 180px;
}

.post {
    padding: 20px 16px;
    margin: 30px 0;
}

.kapcsolatlink {
    padding: 24px 20px 32px;
    margin: 30px 0;
}

.velemeny-item {
    padding: 20px 16px;
}

.program-month {
    font-size: 22px;
}

.program-item-text h3 {
    font-size: 18px;
}

.assembly-purchased-video-section {
    padding: 16px;
    margin: 24px 0;
}

#hirlevelform {
    padding: 40px 0;
}

#desc {
    padding-top: 10px;
}

#desc h2 {
    margin: 0 0 30px;
    padding: 0 3%;
    line-height: 1.2;
}

.desc {
    margin-bottom: 40px;
}

.desc .descimage {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.desc .descimage img {
    position: relative;
    left: auto !important;
    right: auto !important;
    width: 100%;
    height: 100%;
    box-shadow: none;
    filter: grayscale(1);
    transform: scale(1.08);
    transition: filter 900ms ease, transform 900ms ease;
}

.desc.is-inview .descimage img {
    filter: grayscale(0);
    transform: scale(1);
}

.desc .desctex {
    width: auto;
    float: none !important;
    margin: 0;
    padding: 24px 0 10px;
    box-shadow: none;
    transform: translateY(18px) !important;
    opacity: 0;
    transition: opacity 700ms ease 150ms, transform 700ms ease 150ms;
}

.desc.is-inview .desctex {
    transform: translateY(0) !important;
    opacity: 1;
}

.desc:nth-child(odd) .desctex,
.desc:nth-child(even) .desctex {
    float: none;
}

.desctex h1 {
    font-size: 30px;
    line-height: 1.2;
}

.desctex h2,
.desctex h3 {
    font-size: 20px;
}

.desc .descback {
    display: none;
}

.desc:hover > .descimage img,
.desc:hover > .wrapper .padding .desctex,
.desc:nth-child(odd):hover > .wrapper .padding .desctex {
    transform: none;
    filter: grayscale(0);
    box-shadow: none;
}

.desc .desctex .btn {
    margin: 20px 0 0;
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    .desc .descimage img,
    .desc .desctex {
        transition: none;
    }

    .desc .descimage img {
        filter: grayscale(0);
        transform: none;
    }

    .desc .desctex {
        opacity: 1;
        transform: none !important;
    }
}

.box {
    width: 100%;
    margin-right: 0;
}

.subpage {
    width: 47%;
}

footer {
    padding: 24px 16px 40px;
}

footer{
    text-align: center;
}    

#footerlogo {
    float: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 0 30px !important;
    height: auto !important;
}

#slider .slide {
height: 300px;
}

.owl-prev, .owl-next {
line-height: 270px;
}

article {
width:100%;}

aside {
width: calc(100% - 60px);
margin:0 0 30px;
}

#hamburger {
    display: inline-block;
    position: absolute;
    right: 3%;
    width: 40px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

a.kosarbtn {
    right: 100px;
}


#fullmenu {
position:absolute;
}

#topmenu {
        height: auto;
        width: 100%;
        transition: all 300ms ease;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        z-index: 300;
        top: 100% !important;
        transform: translateY(10%);
        right: 0 !important;
        background-color: rgba(0, 0, 0, 0.82);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
}

.nav ul li {
text-align:center;
background-color:#fff;
}

.nav li {
    display: block;
    position: static;
    text-align: center;
    width: 100%;
}

.nav ul,
.nav ul ul {
    position: static;
    float: none;
    top: auto;
    left: auto;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.06);
    transition: max-height 0.35s ease;
}

.nav li.submenu-open > ul {
    max-height: 600px;
}

.nav li:hover > ul {
    visibility: visible;
    opacity: 1;
    max-height: 0;
}

.nav li.submenu-open:hover > ul {
    max-height: 600px;
}

.nav ul li {
    background-color: transparent;
}

.nav ul a {
    color: #fff;
    white-space: normal;
    padding: 12px 20px 12px 28px;
    font-size: 11px;
    border-bottom: 1px solid #ffffff18;
}

.menu-item-has-children > a::after {
    transition: transform 0.3s ease;
}

.menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
} 

.menuon {
	transform:translateY(0%) !important;
	-webkit-transform:translateY(0%) !important;
	-moz-transform:translateY(0%) !important;
	-ms-transform:translateY(0%) !important;
	-o-transform:translateY(0%) !important;
	opacity:1 !important;
	visibility:visible !important;
}

.nav  {
padding:0;
}

.nav ul {
width:100%;
}

.nav ul li a {
border-top:none;
font-size: 12px;
}

.nav li {
    display: block;
    position: static;
    text-align: center;
    width: 100%;
}

.nav li:last-child, .nav li:first-child {
border-left:none;
border-right:none;
}

.nav li a {
border-left: 0px solid;
border-bottom: 1px solid #ffffff22;
}

.nav li:last-child {
border-right: 0px;
}

}

@media screen and (max-width: 600px) {
    a.kosarbtn {
        right: 80px;
    }

#logo {
    padding: 14px 0 10px;
}

header > .wrapper > .padding {
    padding-top: 4px;
    padding-bottom: 6px;
}

#tophead h1 {
    font-size: 28px;
    margin: 0 0 8px;
}

#tophead {
    min-height: 130px;
    padding-top: 16px;
}

#tophead .wrapper > .padding {
    padding-top: 8px;
}

#valtozas h2 {
    font-size: 26px;
}

#backblack {
    height: 145px;
}

.subpage {
    width: calc(50% - 8px);
    margin: 4px 0;
}

.box h3 {
    font-size: 22px;
}

.box img {
    float: none;
    margin: 0 0 15px;
    width: 100%;
    max-width: 180px;
    display: block;
}

.btn {
    padding: 14px 22px;
    font-size: 14px;
    margin: 20px 0;
}

#desc h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.desc {
    margin-bottom: 32px;
}

.desc .descimage {
    height: 220px;
}

.desctex h1 {
    font-size: 26px;
}

.desctex h2,
.desctex h3 {
    font-size: 18px;
}

.desc .desctex {
    padding: 20px 0 8px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-nav-container li {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #494949;
    padding-right: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    border-right:none;
}
}

@media screen and (max-width: 500px) {
.subpage {
    width: 100%;
    margin: 10px 0;
}

#tophead h1 {
    font-size: 24px;
    margin: 16px 0 6px;
}

.breadcrumb {
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 10px;
}

h1 {
    font-size: 28px !important;
}   

h2 {
    font-size: 24px;
}    


h3 {
    font-size: 24px;
}

.woocommerce ul.products li.product a img {
    height: 180px !important;
}

h2.woocommerce-loop-product__title, h2.woocommerce-loop-category__title {
    min-height: 5em;
    padding: 10px 10px !important;
    font-size: 13px !important;
}

.fieldbox {
    width: 100%;
    display: block;
}

.fieldbox .field {
    width: calc(100% - 28px);
}

#contactform textarea {
    width: calc(100% - 28px);
}    

}

@media screen and (max-width: 400px) {
#tophead h1 {
    font-size: 22px;
}

#tophead {
    min-height: 120px;
    padding-top: 12px;
}

#backblack {
    height: 130px;
}

#valtozas h2, #desc h2 {
    font-size: 24px;
}

.program-month {
    font-size: 20px;
}

.box img {
    float: none;
    margin-right: 0;
    width: 100%;
}

#statusbar .padding {
    min-height: 24px;
    padding-bottom: 6px;
}

#icons a {
    font-size: 11px;
    padding: 0 6px;
}

#cim {
    font-size: 18px;
}

#logo img {
width:160px;
}

.headon #logo img {
width: 150px;
}

label {
display:block;
width:auto;
padding-bottom: 0;
}

.field, textarea {
width: calc(100% - 28px);
max-width: calc(100% - 28px);
}

.short {
    max-width: 250px !important;
}    

.alignright, .alignleft {
  float: none;
  margin: 0;
    width:100%;
}

.alignright img, .alignleft img {
  width:100%;
}


}

.assembly-purchased-video-section {
    clear: both;
    margin: 40px 0;
    padding: 25px;
    background: #fdfdfd;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.assembly-purchased-video-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #222;
    font-size: 22px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.assembly-course-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.assembly-course-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.assembly-course-item h3 {
    margin: 0 0 15px;
    color: #222;
    font-size: 18px;
}

.assembly-course-video {
    margin-bottom: 15px;
}

.assembly-course-workbook {
    margin: 0;
}

body.assembly-video-only-product .product .woocommerce-product-gallery,
body.assembly-video-only-product .product .entry-summary,
body.assembly-video-only-product .woocommerce-tabs,
body.assembly-video-only-product .related.products,
body.assembly-video-only-product .upsells.products {
    display: none !important;
}

body.assembly-video-only-product .assembly-purchased-video-section {
    margin-top: 0;
}

#programok {
    margin-top: 40px;
}

.program-month-group {
    margin-bottom: 45px;
}

.program-month {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c6b08c;
    color: #222;
    font-size: 28px;
}

.program-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.program-item {
    margin-bottom: 20px;
    position: relative;
}

.program-item a {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(198, 176, 140, 0.25);
    touch-action: manipulation;
    -webkit-touch-callout: none;
}

.program-item a,
.program-item a:link,
.program-item a:visited,
.program-item a:hover,
.program-item a:active {
    color: inherit;
    text-decoration: none;
}

.program-item a > * {
    pointer-events: none;
}

.program-item-future a {
    background: #fafafa;
    border-style: dashed;
}

.program-item-badge {
    margin: 0 0 10px;
    color: #c6b08c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-item a:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.program-item img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    flex-shrink: 0;
}

.program-item-text h3 {
    margin: 0 0 8px;
    color: #c6b08c;
    font-size: 22px;
}

.program-item-text time {
    display: block;
    margin-bottom: 10px;
    color: #888;
    font-size: 14px;
}

.program-item-text p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .program-item a {
        flex-direction: column;
    }

    .program-item img {
        width: 100%;
    }

    .velemeny-carousel-toggle {
        top: -8px;
        right: 4px;
        width: 36px;
        height: 36px;
    }
}