* { word-break: break-word; }

/*----------------------------------------------------------------------------*/
/*#FONTS*/
/*----------------------------------------------------------------------------*/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans/OpenSans-SemiBold.eot');
    src: url('../fonts/opensans/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/opensans/OpenSans-SemiBold.woff2') format('woff2'),
        url('../fonts/opensans/OpenSans-SemiBold.woff') format('woff'),
        url('../fonts/opensans/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans/OpenSans-Bold.eot');
    src: url('../fonts/opensans/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/opensans/OpenSans-Bold.woff2') format('woff2'),
        url('../fonts/opensans/OpenSans-Bold.woff') format('woff'),
        url('../fonts/opensans/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans/OpenSans-Regular.eot');
    src: url('../fonts/opensans/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/opensans/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/opensans/OpenSans-Regular.woff') format('woff'),
        url('../fonts/opensans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline      { text-decoration: overline; }
.txt--linethrough   { text-decoration: line-through; }
.txt--underline     { text-decoration: underline; }
.txt--none:hover    { text-decoration: none; }
/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }
.overflow-x--hidden { overflow-x: hidden; }

/*--------position---------------------------------*/
.p--relative { position: relative; }

/*--------height---------------------------------*/
.height--100 { height: 100%; }
/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
    width: 100%;
    padding-left:  20px;
    padding-right: 20px;
    margin-left:  auto;
    margin-right: auto;
}
/*max-width = width of container + padding-left + padding-right*/
.container-full { max-width: 100%; }
.container      { max-width: 1020px; }
.container--lg  {}
.container--md  {}
.container--sm  {}
.container--xs  {}

.row.gutters-md {
    margin-left:  -20px;
    margin-right: -20px;
}

.row.gutters-md [class*='col'] {
    padding-left:  20px;
    padding-right: 20px;
}
/*----------------------------------------------------------------------------*/
/*#VIDEO*/
/*----------------------------------------------------------------------------*/

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px; /* if needed */
    height: 0;
}

.video iframe {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--white { color: #fff; }
.txt--black { color: #000; }
.txt--grey { color: #5f6d79; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/
.bg--white { background-color: #fff; }

.bg--properties {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

img { height: auto; }

/*----------------------------------------------------------------------------*/
/*#PADDING STYLE*/
/*----------------------------------------------------------------------------*/

/*padding top/left/right/bottom --> { p-- } */
.p--0 { padding: 0!important; }

/*padding top/left/right/bottom --> { pt-- / pl-- / pr-- / pb-- } */
.pb--0 { padding-bottom: 0; }

/*padding left-right/top-bottom --> { p-lr-- / p-tb-- } */
.py--0 {
    padding-top:    0;
    padding-bottom: 0;
}

/*----------------------------------------------------------------------------*/
/*#MARGIN STYLE*/
/*----------------------------------------------------------------------------*/

/*margin top/left/right/bottom --> { m-- } */
.m--0 { margin: 0!important; }
.m--auto {
    margin-left:  auto;
    margin-right: auto;
}

/*margin top/left/right/bottom --> { mt-- / ml-- / mr-- / mb-- } */
.mb--0  { margin-bottom: 0; }
.mb--10 { margin-bottom: 10px; }
.mb--20 { margin-bottom: 20px; }
.mb--40 { margin-bottom: 40px; }
.mt--15 { margin-top: 15px; }

/*margin left-right/top-bottom --> { m-lr-- / m-tb-- } */
.my--0 {
    margin-top:    0;
    margin-bottom: 0;
}

/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/

.btn {
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;
}

.btn {
    border: 1px solid #b2b2b2;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.btn:hover {
    background-color: #b2b2b2;
    color: #fff;
}

/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/

body { 
    font-family: 'Open Sans', sans-serif; 
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5, 
h6 { margin-bottom: 20px; }

h1 { font-size: 34px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

ul, ol {
    font-size: 0;
    line-height: 0;
}

p,
ul li,
ol li {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 30px;
}

p { line-height: 1.6; }

a { 
    color: #000;
    transition: .3s ease-in-out;
}

a:hover { color: #666666; }

/*small { font-size: 0.75rem; }*/

strong,
b { font-weight: 600; }
/*----------------------------------------------------------------------------*/
/*#FONT SIZE*/
/*----------------------------------------------------------------------------*/

.txt--xs {}
.txt--sm { font-size: 12px; }
.txt--md {}
.txt--lg { font-size: 26px; }
.txt--xl {}

.site-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-inner { flex: 1; }
/*----------------------------------------------------------------------------*/
/*#TOP BAR*/
/*----------------------------------------------------------------------------*/
.top-bar { 
    background-color: #fff;
    padding-top: 30px; 
    position: relative;
    z-index: 9999;
    margin-bottom: -20px;
}

.top-ba__language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 10px;
}

.top-bar li { 
    position: relative;
    font-size: 12px;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 2px 4px;
    margin-right: 6px;
}

.top-bar .wpml-ls-legacy-list-horizontal {
    border: none;
    padding: 0;
    margin-right: 20px;
    min-width: 70px;
}

.top-bar .wpml-ls-legacy-list-horizontal > ul { display: flex; }

.top-bar .wpml-ls-item a { 
    position: relative; 
    padding: 5px 10px 6px;
}

.top-bar .wpml-ls-item a::after { 
    content: "|";
    position: absolute;
    right: -3px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}

.top-bar .wpml-ls-item:last-child a::after { content: none; }

/*----------------------------------------------------------------------------*/
/*#HEADER AND MENU*/
/*----------------------------------------------------------------------------*/
.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;    
    transition: .3s ease-in-out;
}

.site-header.active { box-shadow: 0px 2px 5px rgb(0 0 0 / 10%); }

.admin-bar .site-header { top: 32px; }

.site-header > .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1020px;
    margin: auto;
    margin-top: 0;
    padding: 35px 20px;
    transition: .3s ease-in-out;
}

.site-header .menu-primary {
    display: flex;
    align-items: center;
    margin-right: -8px;
}

.site-header .menu-primary li { 
    font-size: 14px; 
    text-transform: uppercase;
    margin-bottom: 0;
}

.site-header .menu-primary li a { 
    display: block;
    margin-bottom: 0; 
    padding: 0 8px;
    color: #000;
    transition: .3s ease-in-out;
}

.site-header .menu-primary > li { margin-bottom: -20px; }

.site-header .menu-primary li > a { padding: 20px 8px; }

.site-header .menu-primary .current-menu-item > a,
.site-header .menu-primary li a:hover,
.site-header .menu-primary li a:focus,
.top-bar-menu li.current a,
.top-bar-menu li a:hover,
.top-bar-menu li a:focus { color: #eca021; }

.title-area { max-width: 180px; }

.title-area a {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

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

.genesis-nav-menu .sub-menu {
    background: rgba(245, 244, 245, 0.9);
    border: 1px solid #eee;
    position: absolute;
    display: block;
    opacity: 0;
    width: 220px;
    pointer-events: none;
    transition: .3s ease-in-out;
}

.menu-primary .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

.genesis-nav-menu .sub-menu:after {
    content: "";
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #f6f5f6;
    position: absolute;
    top: -7px;
    left: 12px;
    pointer-events: none;
    transition: .3s ease-in-out;
}

.genesis-nav-menu .sub-menu li a { 
    padding: 4px 12px; 
    letter-spacing: 2px;
    font-size: 12px;
    line-height: 18px;
    border-bottom: 1px solid #eee;
}

.sub-menu li a:hover,
.sub-menu li a:focus,
.sub-menu li.current-menu-item a,
.sub-menu li.current-category_en_speakers-ancestor a { 
    background-color: #808080; 
    color: #fff !important;
}

.sub-menu .bg--yellow a:hover,
.sub-menu .bg--yellow a:focus,
.sub-menu .bg--yellow.current-menu-item a,
.sub-menu .bg--yellow.current-category_en_speakers-ancestor a { background-color: #fac800; }

.sub-menu .bg--orange a:hover,
.sub-menu .bg--orange a:focus,
.sub-menu .bg--orange.current-menu-item a,
.sub-menu .bg--orange.current-category_en_speakers-ancestor a { background-color: #fb9120; }

.sub-menu .bg--red a:hover,
.sub-menu .bg--red a:focus,
.sub-menu .bg--red.current-menu-item a,
.sub-menu .bg--red.current-category_en_speakers-ancestor a { background-color: #d7051b; }

.sub-menu .bg--pink a:hover,
.sub-menu .bg--pink a:focus,
.sub-menu .bg--pink.current-menu-item a,
.sub-menu .bg--pink.current-category_en_speakers-ancestor a { background-color: #cf007e; }

.sub-menu .bg--purple a:hover,
.sub-menu .bg--purple a:focus,
.sub-menu .bg--purple.current-menu-item a,
.sub-menu .bg--purple.current-category_en_speakers-ancestor a { background-color: #7800a0; }

.sub-menu .bg--blue a:hover,
.sub-menu .bg--blue a:focus,
.sub-menu .bg--blue.current-menu-item a,
.sub-menu .bg--blue.current-category_en_speakers-ancestor a { background-color: #004684; }

.sub-menu .bg--light-blue a:hover,
.sub-menu .bg--light-blue a:focus,
.sub-menu .bg--light-blue.current-menu-item a,
.sub-menu .bg--light-blue.current-category_en_speakers-ancestor a { background-color: #00aad7; }

.sub-menu .bg--turquoise a:hover,
.sub-menu .bg--turquoise a:focus,
.sub-menu .bg--turquoise.current-menu-item a,
.sub-menu .bg--turquoise.current-category_en_speakers-ancestor a { background-color: #00d2b4; }

.sub-menu .bg--green a:hover,
.sub-menu .bg--green a:focus,
.sub-menu .bg--green.current-menu-item a,
.sub-menu .bg--green.current-category_en_speakers-ancestor a { background-color: #0fa046; }

.sub-menu .bg--light-green a:hover,
.sub-menu .bg--light-green a:focus,
.sub-menu .bg--light-green.current-menu-item a,
.sub-menu .bg--light-green.current-category_en_speakers-ancestor a { background-color: #bccf00; }

.mobile-top-bar,
.mobile-link { display: none; }
/*----------------------------------------------------------------------------*/
/*#HOMEPAGE HERO SLIDER*/
/*----------------------------------------------------------------------------*/

.hero-slider__item {
    min-height: 400px;
    height: 31.25vw;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    right: 50px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .3s ease-in-out;
}

.hero-slider:hover .owl-nav { opacity: 1; }

.hero-slider .owl-nav button { margin: 0 !important; }

.hero-slider .owl-nav button:hover { background: transparent !important; }

.hero-slider .owl-nav button span { display: none; }

.hero-slider .owl-nav button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 50px;
    color: #fff;
    transition: .3s ease-in-out;
}

.hero-slider .owl-nav button:hover::before { opacity: .6; }

.hero-slider .owl-prev::before { content: "\f053"; }

.hero-slider .owl-next::before { content: "\f054"; }
/*----------------------------------------------------------------------------*/
/*#FOOTER WIDGETS*/
/*----------------------------------------------------------------------------*/
.footer-widgets {
    background-color: #c7c7c7;
    color: #000;
}

.footer-widgets > .wrap {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 840px;
    margin: auto;
    padding: 50px 20px;
}

.footer-widgets p,
.footer-widgets a { font-size: 11px; }

.footer-widgets p:last-child { margin-bottom: 0; }

.footer-widgets .menu li { margin-bottom: 0; }

.footer-widgets .menu a { text-transform: uppercase; }

.footer-widgets .menu a:hover,
.current-menu-item a { color: #eca021; }

/*----------------------------------------------------------------------------*/
/*#FOOTER WIDGETS*/
/*----------------------------------------------------------------------------*/
.footer-copyright {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-copyright p,
.footer-copyright a {
    font-size: 12px;
    color: #000;
}
/*----------------------------------------------------------------------------------------------------------------------------------
#BACK TO TOP BUTTON
----------------------------------------------------------------------------------------------------------------------------------*/
.back-to-top {
    background-color: #f7f7f7;
    color: #898989;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 9;
    width: 41px;
    height: 41px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    border: 3px solid #fff;
    transition: .3s ease-in-out;
    pointer-events: none;
}

.back-to-top.active { 
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    color: #fff;
    background: #eca021;
    border-color: transparent;
}

/*----------------------------------------------------------------------------*/
/*#ENTRY CONTENT CSS*/
/*----------------------------------------------------------------------------*/
.entry ol {
    list-style: decimal;
    margin-left: 30px;
}

.sidebar-content .content-sidebar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 44px;
}

.sidebar-content .content-sidebar-wrap main.content { 
    order: 1;
    width: 100%;
    max-width: 74%;
}

.sidebar-content .content-sidebar-wrap .sidebar { 
    width: 100%;
    max-width: 26%; 
}

.content-sidebar-wrap {
    width: 100%;
    max-width: 1020px;
    margin: 40px auto;
    padding-left: 20px;
    padding-right: 20px;
}

.entry-title { font-size: 26px; }

.wp-block-column p:last-child { margin-bottom: 0; }

.sidebar.sidebar-primary.widget-area {
    position: sticky;
    top: 200px;
    left: 0;
}
/*----------------------------------------------------------------------------*/
/*#HOMEPAGE NEWS SECTION*/
/*----------------------------------------------------------------------------*/
.produkt-news__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.produkt-news__box {
    width: calc(50% - 10px);
    border: 1px solid #b2b2b2;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.produkt-news__img { max-width: 85px; }

.produkt-news__img img { transition: .3s ease-in-out; }

.produkt-news__img:hover img { opacity: .8; }
/*----------------------------------------------------------------------------*/
/*#LATEST POST SIDEBAR SHORTCODE*/
/*----------------------------------------------------------------------------*/
.latest-post::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f15c";
    font-weight: 100;
    font-size: 14px;
    color: #999;
    margin-right: 10px;
    transition: .3s ease-in-out;
}

.latest-post:hover { text-decoration: underline; }
/*----------------------------------------------------------------------------*/
/*#PRODUKTE NEWS PAGE*/
/*----------------------------------------------------------------------------*/
.produkt-news__box--xl {
    width: 100%;
    border: 1px solid #b2b2b2;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.produkt-news__content { max-width: 100%; }

.produkt-news__box--xl .produkt-news__img { max-width: 200px; }

.produkt-news__content a:hover { color: #eca021; }
/*----------------------------------------------------------------------------*/
/*#PAGINATION*/
/*----------------------------------------------------------------------------*/
.pagination {
    clear: both;
    margin: 10px 0 25px;
    width: 100%;
}

.pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 3px;
    row-gap: 3px;
}

.pagination ul li { margin: 0; }

.pagination li a, 
.pagination li .current,
.pagination li .dots {
    color: #000;
    cursor: pointer;
    font-size: 12px;
    padding: 3px;
    text-decoration: none;
    transition: .3s ease-in-out;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.pagination li .dots { cursor: auto; }

.pagination li a:focus, 
.pagination li a:hover, 
.pagination li .current {
    color: #000;
    background: #f7f7f7;
}
/*----------------------------------------------------------------------------*/
/*#CUSTOM RADIO BUTTONS*/
/*----------------------------------------------------------------------------*/
.radio-input {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 20px;
}

.radio-input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #eca021;
    border-radius: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-input input:checked ~ .checkmark:after { display: block; }

.radio-input .checkmark:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eca021;
}

.product-file {
    position: relative;
    display: block;
    border: 1px solid #dbdbdb;
    padding: 7px 7px 7px 40px;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-file::before {
    content: "\f354";
    font-family: "Font Awesome 5 Pro";
    color: #dbdbdb;
    font-weight: 600;
    font-size: 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
}

.product-file:hover { color: #eca021; }

.product-file:hover::before { color: #eca021; }
/*----------------------------------------------------------------------------*/
/*#CUSTOM GUTENBERG TABS*/
/*----------------------------------------------------------------------------*/
.tab_drawer_heading { display: none; }

.tab_content { 
    display: none;
    padding: 14px 20px;
    border: 1px solid #e3e3e3;
    min-height: 200px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.tab_content.active { display: block; }

.tabs li { 
    cursor: pointer;
    display: block;
    padding: 14px 20px;     
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #fff;
    margin-bottom: -1px;
    border-bottom: 1px solid #e3e3e3;
}

.tabs li.active { 
    border: 1px solid #e3e3e3; 
    border-bottom: 1px solid #fff;
}

.tab_content p { margin-bottom: 20px; }

.tab_content p:last-child { margin-bottom: 0; }


.category-single {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-left: -10px;
}

.category-single li { margin: 0 10px 5px; }

.category-single li a:hover { color: #eca021; }

.mobile-category { display: none; }
/*----------------------------------------------------------------------------*/
/*#ERROR 404 PAGE*/
/*----------------------------------------------------------------------------*/
.error-loop__box { text-align: center; }

.error-loop__box h1 { 
    font-size: 200px; 
    margin-bottom: 0;
}
/*----------------------------------------------------------------------------*/
/*#SEARCH PAGE*/
/*----------------------------------------------------------------------------*/
.search-subtitle {
    font-size: 14px;
    color: #999;
}