@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    font-display: fallback;
    src: url(../fonts/Montserrat-ExtraLight.woff2) format('woff2'), url(../fonts/Montserrat-ExtraLight.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: fallback;
    src: url(../fonts/Montserrat-Light.woff2) format('woff2'), url(../fonts/Montserrat-Light.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal; /*400*/
    font-display: fallback;
    src: url(../fonts/Montserrat-Regular.woff2) format('woff2'), url(../fonts/Montserrat-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/Montserrat-Bold.woff2) format('woff2'), url(../fonts/Montserrat-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: fallback;
    src: url(../fonts/Montserrat-ExtraBold.woff2) format('woff2'), url(../fonts/Montserrat-ExtraBold.woff) format('woff');
}
@font-face {
    font-family: 'Radikal-Bold';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/Radikal-Bold.woff2) format('woff2'), url(../fonts/Radikal-Bold.woff) format('woff');
}
body {
    color: #3e3e3e;
    background: #fff;
    font-family: Montserrat, "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6em;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    /*overflow-anchor: none;*/
}
@media (max-width: 991px) {
    body {
        font-size: 14px;
    }
}

a{
    color: #8f7200;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover, a:focus{
    color: #000;
    text-decoration: none;
}

.checkbox input[type="checkbox"]:focus-visible+label:before,
input:focus-visible,
button:focus-visible,
a:focus-visible{
    outline: 3px solid #000!important;
    outline-offset: 4px!important;
}
p {
    margin: 0 0 30px;
}
ul, ol {
    margin-bottom: 30px;
}
table{
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    p {
        margin: 0 0 15px;
    }
    ul, ol {
        margin-bottom: 15px;
    }
    table{
        margin-bottom: 15px;
    }
}
h3, .h3 {
    font-size: 24px;
    font-weight: 400;
}
h4, .h4 {
    font-size: 20px;
    font-weight: 400;
}
@media (max-width: 991px) {
    h3, .h3 {
        font-size: 22px;
    }
    h4, .h4 {
        font-size: 18px;
    }
}


.text-line-through{
    text-decoration: none;
    position: relative;
}
.text-line-through:before{
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    right: -4px;
    border-top: 1px solid;
    border-color: inherit;
    transform: rotate(-6deg);
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inline-block{
    display: inline-block;
}
.relative{
    position: relative;
}


/* LOADING */
.loading {
    display: none;
    background-color: rgba(255,255,255,0.5);
    background-image: url(../design/loading-spinner.gif);
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1005;
}
.loading-2 {
    display: none;
    border: 0px;
    background: url(../design/loading-spinner.gif) no-repeat center;
    width: 36px;
    height: 36px;
    margin: 0 auto;
}
.loading-3 {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.loading-3 div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-3.white div {
    background: #fff;
}
.loading-3.color div {
    background: #175760;
}
.loading-3 div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}
.loading-3 div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}
.loading-3 div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}
.loading-3 div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}
/* LOADING END */

/* NOSCRIPT */
#noscript {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    z-index: 1000;
    background: #fff;
}
#noscript .box{
    width: 100%;
    margin: 0px;
    text-align: left;
    background: #fff;
    border: 1px solid #8f7200;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 10px 15px;
    color: #333;
}
#noscript .btn{
    margin-top: 10px;
}
@media (max-width: 991px) {
    #noscript .box {
        left: 30px;
        right: 30px;
        width: auto;
        margin: 0px;
    }
}
/* NOSCRIPT END */
/* OBSOLETE BROWSER */
#obsolete_browser{
    width: 600px;
    max-width: 100%;
    margin: 100px auto 100px;
    text-align: center;
    background: #fff;
    border: 1px solid #F44336;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 10px 15px;
    color: #333;
}
/* OBSOLETE BROWSER END */

/* COOKIE BAR */
#cookie_policy_container{
    display: none;
    position: fixed;
    bottom: 20px;
    width: 400px;
    background: #fff;
    border: 1px solid #efebe7;
    color: #000;
    z-index: 2;
    padding: 10px 15px;
    transform: translate3d(0,0,0);
}
#cookie_policy_container.left{
    left: 20px;
}
#cookie_policy_container.right{
    right: 20px;
}
#cookie_policy_container.center{
    left: 50%;
    margin-left: -200px;
}
#cookie_policy_container .txt{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
#cookie_policy_container .button{
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #8f7200;
    background: none;
    border: 0px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    padding: 5px 0px;
    margin: 0px;
    transition: color 0.3s ease;
}
#cookie_policy_container .button:focus,
#cookie_policy_container .button:hover{
    text-decoration: none;
    color: #000;
    background: none;
}
#cookie_policy_container .button.left{
    float: left;
}
#cookie_policy_container .button.right{
    float: right;
}
@media (max-width: 991px) {
    #cookie_policy_container{
        bottom: 15px;
        width: auto;
    }
    #cookie_policy_container.left{
        left: 15px;
        right: 15px;
    }
    #cookie_policy_container.right{
        left: 15px;
        right: 15px;
    }
    #cookie_policy_container.center{
        left: 15px;
        right: 15px;
        margin-left: 0;
    }
}
@media (max-width: 480px) {	
    #cookie_policy_container .txt{
        font-size: 12px;
        line-height: 18px;
    }
    #cookie_policy_container .button {
        font-size: 12px;
        line-height: 15px;
    }
}
/* COOKIE BAR END */

/* SZECHENYI2020 */
.szechenyi2020-fix-box{
    position: fixed;
    bottom: 0px;
    z-index: 2;
    width: 214px; 
    height: 150px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 100%;
    visibility: hidden;
    opacity: 0;
    margin-bottom: -30px;
    -webkit-transition: opacity 0.6s ease, margin-bottom 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, margin-bottom 0.6s ease, visibility 0.6s ease;
}
.szechenyi2020-fix-box.left{
    left: 0px;
}
.szechenyi2020-fix-box.right{
    right: 0px;
}

.szechenyi2020-fix-box.esba.left.hu{
    background-image:url(../design/szechenyi2020/esba-left-hu.png);
}
.szechenyi2020-fix-box.esba.right.hu{
    background-image:url(../design/szechenyi2020/esba-right-hu.png);
}
.szechenyi2020-fix-box.esba.left.en{
    background-image:url(../design/szechenyi2020/esba-left-en.png);
}
.szechenyi2020-fix-box.esba.right.en{
    background-image:url(../design/szechenyi2020/esba-right-en.png);
}

.szechenyi2020-fix-box.erfa.left.hu{
    background-image:url(../design/szechenyi2020/erfa-left-hu.png);
}
.szechenyi2020-fix-box.erfa.right.hu{
    background-image:url(../design/szechenyi2020/erfa-right-hu.png);
}
.szechenyi2020-fix-box.erfa.left.en{
    background-image:url(../design/szechenyi2020/erfa-left-en.png);
}
.szechenyi2020-fix-box.erfa.right.en{
    background-image:url(../design/szechenyi2020/erfa-right-en.png);
}

.szechenyi2020-fix-box.esza.left.hu{
    background-image:url(../design/szechenyi2020/esza-left-hu.png);
}
.szechenyi2020-fix-box.esza.right.hu{
    background-image:url(../design/szechenyi2020/esza-right-hu.png);
}
.szechenyi2020-fix-box.esza.left.en{
    background-image:url(../design/szechenyi2020/esza-left-en.png);
}
.szechenyi2020-fix-box.esza.right.en{
    background-image:url(../design/szechenyi2020/esza-right-en.png);
}

.szechenyi2020-fix-box.ka.left.hu{
    background-image:url(../design/szechenyi2020/ka-left-hu.png);
}
.szechenyi2020-fix-box.ka.right.hu{
    background-image:url(../design/szechenyi2020/ka-right-hu.png);
}
.szechenyi2020-fix-box.ka.left.en{
    background-image:url(../design/szechenyi2020/ka-left-en.png);
}
.szechenyi2020-fix-box.ka.right.en{
    background-image:url(../design/szechenyi2020/ka-right-en.png);
}

.szechenyi2020-fix-box.active{
    visibility: visible;
    opacity: 1;
    margin-bottom: 0px;
}
@media (max-width: 991px){
    .szechenyi2020-fix-box{
        width: 114px; 
        height: 80px;
    }
}
/* SZECHENYI2020 END */

/* PREVIEW */
#preview_message_container{
    background: #d9534f;
    border: 1px solid #d43f3a;
    color: #fff;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 20px;
    margin: 50px 0px;
    text-align: center;
}
@media (max-width: 767px) {
    #preview_message_container{
        left: 30px;
        right: 30px;
        bottom: 10px;
        transform: translateX(0);
    }
}
/* PREVIEW END */

/* JQUERY UI WIDGET */
.ui-widget-content {
    border: 0;
    border-top: 1px solid #c9c9c9;
    border-left: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    background: #f6f6f6;
    box-shadow: 2px 1px 0px #c9c9c9;
}
.ui-menu .ui-menu-item{
    color: #3c3c3c;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 15px 3px 15px;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, 
.ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    border: 0px;
    background: #fff;
    font-weight: 400;
    color: #000;
}
.ui-menu .ui-state-focus, 
.ui-menu .ui-state-active{
    margin: 0px;
}

.ui-autocomplete-holder{ /* saját osztály */
    position: relative;
}
.ui-autocomplete-loading { 
    background: url('../design/loader-16x16.gif') no-repeat right 5px center;
}
.ui-autocomplete {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* JQUERY UI WIDGET END */

/** WRAP **/
#wrap{
    position: relative;
}
.header-fixed #wrap{
    padding-top: 90px;
}
@media (max-width: 1199px){
    .header-fixed #wrap{
        padding-top: 70px;
    }
}
/*#wrap{
    position: relative;
    left: 0px;
    transition: left 0.4s ease;
}
@media (min-width: 768px){
    body.navbar-open #wrap{
        left: -440px;
    }
}*/
/** WRAP END **/

/** HEADER **/
#header{
    background: #fff;
    margin: 0px;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid #dcddde;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}
.header-fixed #header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
#header:before,
#header:after{
    content: " ";
    display: table;
    clear: both;
}
#header .header-container{
    padding: 0px 50px;
}
@media (max-width: 1199px){
    #header .header-container{
        padding: 0px 30px;
    }
}
@media (max-width: 767px){
    #header .header-container{
        padding: 0px 15px;
    }
}

#header .jump-link{
    font-size: 16px;
    line-height: 20px;
    padding: 20px 10px;
    position: absolute;
    top: -40px;
    left: 0px;
    color: #fff;
    background: #ae8b00;
    z-index: 100;
    opacity: 0;
}
#header .jump-link:focus-visible{
    top: 14px;
    opacity: 1;
}

#header .logo{
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    line-height: 0px;
    font-weight: normal;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
}
#header .logo > a{
    display: inline-block;
    padding: 15px 15px 14px;
}
.header-fixed #header .logo > a{
    transition: padding 0.3s ease;
}
#header .logo > a > img{
    height: 60px;
}
.header-fixed #header .logo > a > img{
    transition: height 0.3s ease;
}
.header-fixed #header.small .logo > a{
    padding: 10px 0px;
}
.header-fixed #header.small .logo > a > img {
    height: 50px;
}
@media (max-width: 1199px){
    #header .logo > a{
        padding: 5px 0px;
    }
    #header .logo > a > img{
        height: 60px;
    }
}
@media (max-width: 991px){
    #header .logo > a{
        padding: 20px 0px;
    }
    #header .logo > a > img{
        height: 30px;
    }
}
@media (max-width: 767px){
    #header .logo > a{
        padding: 23px 0px;
    }
    #header .logo > a > img{
        height: 24px;
    }
}

/*@media (min-width: 768px){
    .navbar-box-backdrop{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        background-color: rgba(0,0,0,0.5);
        transition: opacity .15s linear;
        opacity: 0;
        visibility: hidden;
    }
    body.navbar-open .navbar-box-backdrop{
        opacity: 1;
        visibility: visible;
    }
}*/
#header .navbar-box{
    margin: 0;
    padding: 0;
    line-height: 0px;
    font-size: 0px;
    display: block;
    float: none;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transition-property: visibility, opacity;
    transition-duration: 0.4s;
    transition-delay: 0s;
    transition-timing-function: ease;
}
body.navbar-open #header .navbar-box::before{
    content: '';
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    height: 90px;
    background: #ffffff;
}
@media (max-width: 1199px){
    body.navbar-open #header .navbar-box::before{
        height: 70px;
    } 
}
#header .holder-box {
    position: relative;
    padding: 100px 0px 50px;
    min-height: 100%;
}
@media (max-width: 991px){
    #header .holder-box {
        padding: 90px 0px;
    }
}
@media (min-height: 650px){
    #header .holder-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
#header .navbar-box ul.large-menu-box{
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
#header .navbar-box ul.large-menu-box > li {
    width: auto;
    float: none;
    padding: 10px 0px;
}
#header .navbar-box ul.large-menu-box > li > a{
    position: relative;
    display: inline-block;
    padding: 0px;
    text-decoration: none;
    color: #535353;
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    transition: color 0.3s ease;
}
#header .navbar-box ul.large-menu-box > li.main > a{
    padding-right: 20px;
}
#header .navbar-box ul.large-menu-box > li.main > a::after{
    font-family: beeicon;
    font-weight: normal;
    content: "\f105";
    display: inline-block;
    font-size: 20px;
    color: #ae8b00;
    position: absolute;
    top: 50%;
    right: 0px;
    width: 10px;
    height: 20px;
    margin-top: -10px;
    line-height: 18px;
    text-align: right;
}
#header .navbar-box ul.large-menu-box > li.active > a,
#header .navbar-box ul.large-menu-box > li > a:hover{
    text-decoration: none;
    color: #ae8b00;
}
@media (max-height: 700px){
    #header .navbar-box ul.large-menu-box > li > a{
        font-size: 28px;
        line-height: 35px;
    }
}
@media (max-width: 1199px){
    #header .navbar-box ul.large-menu-box > li > a{
        font-size: 30px;
    }
}
@media (max-width: 991px){
    #header .navbar-box ul.large-menu-box > li {
        padding: 10px 0px;
    }
    #header .navbar-box ul.large-menu-box > li > a{
        font-size: 26px;
        line-height: 40px;
    }
}
@media (max-width: 767px){
    #header .navbar-box ul.large-menu-box > li > a {
        font-size: 20px;
        line-height: 30px;
    }
}

#header .navbar-box .small-menu-container{
    margin: 50px 0px 0px;
}
#header .navbar-box ul.small-menu-box{
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
#header .navbar-box ul.small-menu-box > li {
    width: auto;
    float: none;
    padding: 1px 0px;
}
#header .navbar-box ul.small-menu-box > li > a{
    position: relative;
    display: inline-block;
    padding: 0px;
    text-decoration: none;
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s ease;
}
#header .navbar-box ul.small-menu-box > li.active > a,
#header .navbar-box ul.small-menu-box > li > a:hover,
#header .navbar-box ul.small-menu-box > li > a:focus{
    text-decoration: none;
    color: #ae8b00;
}
@media (max-height: 700px){
    #header .navbar-box .small-menu-container{
        margin-top: 30px;
    }
}
@media (max-width: 991px){
    #header .navbar-box .small-menu-container{
        margin-top: 30px;
    }
    #header .navbar-box ul.small-menu-box > li {
        padding: 4px 0px;
    }
    #header .navbar-box ul.small-menu-box > li > a{
        font-size: 14px;
        line-height: 20px;
    }
}

body.navbar-open{
    overflow: hidden;
}
body.navbar-open #header .navbar-box{
    visibility: visible;
    opacity: 1;
}


#header .navbar-box .title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin: 0px 0px 10px;
}

/* NEWSLETTER BOX */
#header .newsletter-box{
    margin: 0px;
    padding: 25px 25px;
}
#header .newsletter-box form{
    position: relative;
}
#header .newsletter-box .form-control{
    border-width: 1px;
    border-color: #000;
    background: #f1f2f2;
    color: #9d9fa2;
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
}
#header .newsletter-box .form-control::-webkit-input-placeholder {
    color: #9d9fa2;
}
#header .newsletter-box .form-control::-moz-placeholder{
    color: #9d9fa2;
}
#header .newsletter-box .form-control:-ms-input-placeholder{
    color: #9d9fa2;
}
#header .newsletter-box .form-control:-moz-placeholder {
    color: #9d9fa2;
}
#header .newsletter-box .form-control::placeholder {
    color: #9d9fa2;
}
#header .newsletter-box .button{
    display: inline-block;
    cursor: pointer;
    background: none;
    border: 1px solid #000;
    border-radius: 0;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    width: 44px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #000;
    color: #fff;
    transition: color 0.3s ease, background 0.3s ease;
}
#header .newsletter-box .button:focus,
#header .newsletter-box .button:hover{
    color: #000;
    background: #d1d3d4;
}
/* NEWSLETTER BOX END */

/* PARTS CONTAINER */
#header .parts-left-container{
    float: left;
    margin: 25px 0px 24px;
    transition: margin-top 0.3s ease;
    position: relative;
    z-index: 4;
}
.header-fixed #header.small .parts-left-container{
    margin: 15px 0px;
}
@media (max-width: 1199px){
    #header .parts-left-container{
        margin: 15px 0px;
    }
}
@media (max-width: 767px){
    #header .parts-left-container{
        float: right;
        margin-right: 50px;
    }
}

#header .parts-container{
    float: right;
    margin-right: 160px;
    margin-top: 25px;
    transition: margin-top 0.3s ease;
    position: relative;
    z-index: 4;
}
.header-fixed #header.small .parts-container{
    margin-top: 15px;
}
@media (max-width: 1199px){
    #header .parts-container{
        margin-top: 15px;
        margin-right: 145px;
    }
}
@media (max-width: 991px){
    #header .parts-container{
        margin-right: 80px;
    }
}
@media (max-width: 767px){
    #header .parts-container{
        margin-right: 0px;
        float: left;
    }
}
/* PARTS CONTAINER END */

/* SOCIAL BOX */
#header .social-box{
    float: left;
    padding-right: 50px;
    margin-right: 50px;
    position: relative;
}
#header .social-box::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    width: 1px;
    height: 20px;
    background: #ed7423;
    margin-top: -10px;
}
#header .social-box a{
    display: inline-block;
    padding: 10px 0px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    width: 25px;
    text-align: center;
}
#header .social-box a:not(:last-child){
    margin-right: 20px;
}
#header .social-box a:hover,
#header .social-box a:focus{
    text-decoration: none;
    color: #8f7200;
}
@media (max-width: 767px){
    #header .social-box{
        padding-right: 30px;
        margin-right: 30px;
    }
    #header .social-box a:not(:last-child){
        margin-right: 10px;
    }
}
/* SOCIAL BOX END */

/* SEARCH BOX */
#header .search-box{
    float: left;
    margin: 0px;
}
#header .search-box a{
    display: inline-block;
    padding: 10px 10px;
    text-decoration: none;
    color: #000000;
    font-size: 0px;
    line-height: 0px;
}
#header .search-box a:hover,
#header .search-box a:focus{
    text-decoration: none;
    color: #8f7200;
}
#header .search-box a .txt{
    display: inline-block;
    float: left;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-right: 10px;
}
#header .search-box a .bi{
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
}
/* SEARCH BOX END */

/* LANG BOX */
#header .lang-box{
    float: left;
    margin: 0px;
    padding-right: 40px;
    position: relative;
}
#header .lang-box::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    width: 1px;
    height: 20px;
    background: #ed7423;
    margin-top: -10px;
}
#header .lang-box .txt{
    display: inline-block;
    padding: 10px 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
}
#header .lang-box .txt.active,
#header .lang-box .txt:hover,
#header .lang-box .txt:focus{
    text-decoration: none;
    color: #8f7200;
}

@media (max-width: 1199px){
	#header .lang-box{
		padding-right: 20px;
	}
}
@media (max-width: 991px){
    #header .lang-box {
        padding-right: 0px;
    }
    #header .lang-box::before{
        display: none;
    }
}
@media (max-width: 767px){
    #header .lang-box .txt{
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }
}
/* LANG BOX END */

/*toggle*/
.navbar-toggle {
    position: absolute;
    top: 0px;
    right: 50px;
    z-index: 4;
    display: block;
    border: 0px;
    margin: 30px 0px 0px 0px;
    padding: 0px;
    padding-left: 0px;
    padding-right: 50px;
    background: none;
    border-radius: 0px;
    width: auto;
    height: 30px;
    line-height: 0px;
    transition: color 0.3s ease, background 0.3s ease, margin-top 0.3s ease;
    cursor: pointer;
}
.header-fixed #header.small .navbar-toggle {
    margin-top: 20px;
}
@media (max-width: 1199px){
    .navbar-toggle {
        margin-top: 20px;
        right: 30px;
    }
}
@media (max-width: 767px){
    .navbar-toggle {
        right: 15px;
    }
}

.navbar-toggle .icon-txt {
    float: left;
    line-height: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
}
.navbar-toggle .icon-txt .two{
    display: none;
}
.navbar-toggle.navbar-close .icon-txt .one{
    display: none;
}
.navbar-toggle.navbar-close .icon-txt .two{
    display: block;
}

.navbar-toggle .icon-bar {
    background: #000;
    width: 32px;
    height: 3px;
    border-radius: 0px;
    transition: all 0.3s ease;
}
.navbar-toggle .icon-bar+.icon-bar {

}
.navbar-toggle .icon-bar.first,
.navbar-toggle .icon-bar.center,
.navbar-toggle .icon-bar.last{
    position: absolute;
    top: 50%;
    right: 0px;
    margin: -1px 0px 0px 0px;
}
.navbar-toggle .icon-bar.first{
    margin-top: -10px;
}
.navbar-toggle .icon-bar.center{
    top: 50%;
    margin-top: -1px;
}
.navbar-toggle .icon-bar.last{
    margin-top: 8px;
}
.navbar-toggle.navbar-close .icon-bar.center {
    width: 0%;
    opacity: 0;
}
.navbar-toggle.navbar-close:hover .icon-bar.first,
.navbar-toggle.navbar-close .icon-bar.first {
    width: 32px;
    transform: rotate(45deg);
    top: 50%;
    margin: -1px 0px 0px -13px;
}
.navbar-toggle.navbar-close:hover .icon-bar.last,
.navbar-toggle.navbar-close .icon-bar.last{
    width: 32px;
    transform: rotate(-45deg);
    top: 50%;
    margin: -1px 0px 0px -13px;
}
.navbar-toggle:hover .icon-bar.center{
    width: 0px;
}
.navbar-toggle:hover .icon-bar.last{
    width: 32px;
}
/* toggle end */

/** HEADER END **/


/** CONTENT **/

.nav-label-2{
    margin: 60px 0px 30px;
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}
.nav-label-2:first-child{
    margin-top: 0px;
}
.nav-label-3{
    margin: 60px 0px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #4d4d4f;
}
.nav-label-3:first-child{
    margin-top: 0px;
}
@media (max-width: 991px){
    .nav-label-2{
        font-size: 24px;
        line-height: 30px;
        margin: 30px 0px 15px;
    }
    .nav-label-2:first-child{
        margin-top: 0px;
    }
    .nav-label-3{
        font-size: 16px;
        line-height: 20px;
        margin: 30px 0px 15px;
    }
    .nav-label-3:first-child{
        margin-top: 0px;
    }
}
@media (max-width: 767px){
    .nav-label-2{
        font-size: 20px;
        line-height: 24px;
    }
    .nav-label-3{
        font-size: 14px;
        line-height: 18px;
    }
}

/* content */
.content-container{
    margin-bottom: 60px;
}
.content-container:last-child{
    margin-bottom: 0px;
}
.content-container .description{
    margin-bottom: 30px;
}
.content-container .description:last-child,
.content-container .description p:last-child{
    margin-bottom: 0px;
}
@media (max-width: 991px){
    .content-container{
        margin-bottom: 30px;
    }
}

.media-embed-container{
    max-width: 80%;
    background: #ffffff;
    margin: 0px auto 15px;
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.media-embed-container .iframely-embed{
    max-width: 100% !important;
}
.media-embed-container iframe{
    margin: 0px !important;
    max-width: 100% !important;
    display: inline-block !important;
}
@media (max-width: 767px){
    .media-embed-container{
        max-width: none;
        margin: 0px -15px 15px;
    }
    .media-embed-container iframe{
        max-width: 100% !important;
    }
}

.content-container .description .embed-responsive,
.content-container .description img,
.show-description .embed-responsive,
.show-description img{
    max-width: 100%;
    background: #e5e5e5;
    margin: 0px auto 30px;
}
.content-container .description .embed-responsive-5by5,
.show-description .embed-responsive-5by5 {
    width: 100%;
    padding-bottom: 100%;
}
.content-container .description .embed-responsive-16by9,
.show-description .embed-responsive-16by9 {
    width: 100%;
    padding-bottom: 56.25%;
}
.content-container .description .embed-responsive-4by3,
.show-description .embed-responsive-4by3 {
    width: 100%;
    padding-bottom: 75%;
}
.content-container .embed-responsive-facebook-portrait,
.show-description .embed-responsive-facebook-portrait {
    width: 100%;
    padding-bottom: 178.6%;
}
.content-container .embed-responsive-facebook-post,
.show-description .embed-responsive-facebook-post {
    width: 100%;
    padding-bottom: 66.57%;
}
@media (max-width: 767px){
    .content-container .description .embed-responsive,
    .content-container .description img,
    .show-description .embed-responsive,
    .show-description img{
        max-width: 100%;
    }
}
@media (min-width: 768px){
    .content-container .description .embed-responsive-5by5,
    .show-description .embed-responsive-5by5 {
        width: 80%;
        padding-bottom: 80%;
    }
    .content-container .description .embed-responsive-16by9,
    .show-description .embed-responsive-16by9 {
        width: 80%;
        padding-bottom: 45%;
    }
    .content-container .description .embed-responsive-4by3,
    .show-description .embed-responsive-4by3 {
        width: 80%;
        padding-bottom: 60%;
    }
    .content-container .embed-responsive-facebook-portrait,
    .show-description .embed-responsive-facebook-portrait {
        width: 50%;
        padding-bottom: 89%;
    }
    .content-container .embed-responsive-facebook-post,
    .show-description .embed-responsive-facebook-post {
        width: 80%;
        padding-bottom: 53.26%;
    }
}

.content-container .carousel-box{
    margin-top: 60px;
}
.content-container .carousel-content .carousel-indicators{
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: auto;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    text-align: left;
    line-height:0;
    font-size:0;
    overflow:hidden;
    width: auto;
    padding: 10px 0px;
    max-width: 100%;
}
.content-container .carousel-content .carousel-indicators li{
    display: inline-block;
    padding: 0px;
    margin: 0px 9px 10px;
    border: 0px;
    width: 20px;
    height: 20px;
    background: #fff;
    position: relative;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.content-container .carousel-content .carousel-indicators li.active{
    margin: 0px 9px 10px;
    width: 20px;
    height: 20px;
    background: #f7bd87;
}
/* content end */

/* news-list-item */
.news-list-item{
    border: 1px solid #dcddde;
    padding: 10px;
}
.news-list-item.with-mb{
    margin-bottom: 60px;
}
@media (min-width: 992px){
    .news-list-item.dist-left{
        margin-left: 35px;
        margin-bottom: 100px;
    }
    .news-list-item.dist-right{
        margin-right: 35px;
        margin-bottom: 100px;
    }
}
a.news-list-item{
    display: block;
    color: #4d4d4f;
    text-decoration: none;
}
a.news-list-item:hover,
a.news-list-item:focus{
    color: #4d4d4f;
    text-decoration: none;
}
.news-list-item .box .img-box{
    display: block;
    position: relative;
    margin-bottom: 25px;
}
.news-list-item .box .img-box img{
    display: block;
    width: 100%;
    background: #f5f5f5;
}
.news-list-item .box .img-box::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    width: 30px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 30px auto;
}
.news-list-item .box .img-box.icon-1::after{
    background-image: url(../design/icon-1.svg);
}
.news-list-item .box .img-box.icon-2::after{
    background-image: url(../design/icon-2.svg);
}
.news-list-item .box .img-box.icon-3::after{
    background-image: url(../design/icon-3.svg);
}
.news-list-item .box .img-box.icon-4::after{
    background-image: url(../design/icon-4.svg);
}
.news-list-item .box .img-box.icon-5::after{
    background-image: url(../design/icon-5.svg);
}
@media (min-width: 992px){
    a.news-list-item .img-box{
        overflow: hidden;
    }
    a.news-list-item .img-box img{
        transition: transform-origin 0.3s ease;
        transform: scale(1.06);
        transform-origin: 0% 0%;
    }
    a.news-list-item .img-box:hover img{
        transform-origin: 100% 100%;
    }
}
.news-list-item .box .date{
    display: inline-block;
    margin-bottom: 20px;
    background: #e6e7e8;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: -0.025em;
    line-height: 30px;
    padding: 0px 15px;
    border-radius: 15px;
}

.news-list-item .box .txt-box{
    overflow: hidden;
}
.news-list-item .box .txt-box.for-one{
    height: 140px;
}
.news-list-item .box .txt-box.for-two{
    height: 130px;
}
.news-list-item .box .txt-box.for-three{
    height: 190px;
}
.news-list-item .box .name{
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    margin: 0px;
    max-height: 70px;
    overflow: hidden;
}
.news-list-item .box .txt-box.for-one .name{
    max-height: 140px;
}
.news-list-item .box .intro{
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    margin: 10px 0px 0px;
    max-height: 50px;
    overflow: hidden;
}
.news-list-item .box .txt-box.for-one .intro{
    display: none;
}
.news-list-item .box .pa{
    margin: 10px 0px 0px;
}
.news-list-item .box .pa i{
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 10px;
    line-height: 22px;
    color: #8f7200;
    float: left;
    margin-right: 10px;
    padding-top: 3px;
}
.news-list-item .box .pa .txt{
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    max-height: 50px;
    overflow: hidden;
}
.news-list-item .box .btn-box{
    margin-top: 30px;
    font-size: 0;
    line-height: 0;
}
@media (max-width: 1199px){
    .news-list-item .box .date {
        font-size: 16px;
    }
}
@media (max-width: 991px){
    .news-list-item .box .txt-box.for-one{
        height: 100px;
    }
    .news-list-item .box .txt-box.for-two{
        height: 100px;
    }
    .news-list-item .box .txt-box.for-three{
        height: 160px;
    }
    .news-list-item .box .name{
        font-size: 20px;
        line-height: 25px;
        max-height: 50px;
    }
    .news-list-item .box .txt-box.for-one .name{
        max-height: 100px;
    }
    .news-list-item .box .intro{
        font-size: 14px;
        line-height: 20px;
        max-height: 40px;
    }
}
@media (max-width: 767px){
    .news-list-item .box .img-box{
        margin-bottom: 15px;
    }
    .news-list-item .box .date {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .news-list-item .box .txt-box.for-one,
    .news-list-item .box .txt-box.for-two,
    .news-list-item .box .txt-box.for-three{
        height: auto;
    }
    .news-list-item .box .name{
        font-size: 18px;
        line-height: 24px;
        max-height: none;
    }
    .news-list-item .box .intro{
        font-size: 12px;
        line-height: 16px;
        max-height: none;
    }
    .news-list-item .box .txt-box.for-one .intro{
        display: block;
    }
    .news-list-item .box .btn-box{
        margin-top: 15px;
    }
}
/* news-list-item end */

/* UL 
.content-container ul{
    list-style: none;
    padding-left: 0px;
}
.content-container ul li{
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 25px;
}
.content-container ul li:before{
    display: inline-block;
    content: "";
    position: absolute;
    top: 8px;
    left: 14px;
    background: #8f7200;
    width: 8px;
    height: 8px;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .content-container ul li{
        padding-left: 20px;
    }
    .content-container ul li:before{
        top: 9px;
        width: 6px;
        height: 6px;
        border-radius: 6px;
    }
}
/* UL END */

/* CKEDITOR */
.text-colored{
    color: #8f7200;
}
.formatted-img-subtitle-text{
    text-align: center;
    font-size: 90%;
    font-weight: 700;
    margin-top: -10px;
}
/* CKEDITOR END */

/* files container */
.show-more-files-container{
    margin: 0px 0px 30px;
}
.show-more-files-container .file-box{
    overflow: hidden;
}
.show-more-files-container .file-box .icon{
    float: left;
    font-size: 1.2em;
    width: 20px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}
.show-more-files-container .file-box .icon.bi-file-word-o{ color: #248bd0; }
.show-more-files-container .file-box .icon.bi-file-excel-o{ color: #3aa595; }
.show-more-files-container .file-box .icon.bi-file-pdf-o{ color: #eb3d3e; }
.show-more-files-container .file-box .icon.bi-file-archive-o{ color: #1695c0; }
.show-more-files-container .file-box .icon.bi-file-text-o{ color: #248bd0; }
.show-more-files-container .file-box .icon.bi-file-powerpoint-o{ color: #eb3d3e; }
.show-more-files-container .file-box .icon.bi-file-image-o{ color: #8c5fd6; }
.show-more-files-container .file-box .icon.bi-file-movie-o{ color: #8c5fd6; }
.show-more-files-container .file-box .text{
    line-height: 30px;
    overflow: hidden;
    display: block;
}
/* files container end */

/* images container */
.show-more-images-container{
    margin-top: -15px;
    margin-bottom: -15px;
}
.show-more-images-box{
    margin: 15px auto 15px;
}
/* images container end */

/* youtube container */
.show-more-youtube-videos-box{
    margin: 0px auto 30px;
    width: 100%;
}
@media (max-width: 767px){
    .show-more-youtube-videos-box{
        width: 100%;
    }
}
.show-more-youtube-videos-box .img-box{
    position: relative;
    cursor: pointer;
    display: block;
}
.show-more-youtube-videos-box .img-box .bi {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 80px;
    color: #ff0000;
    margin-top: -40px;
    margin-left: -40px;
}
.show-more-youtube-videos-box .img-box img{
    width: 100%;
    background: #eaeaea;
}
.show-more-youtube-videos-box .subtitle{
    font-size: 90%;
    margin: 5px 0px 0px;
}
/* youtube container end */


/* Load More Item */
.button-load-more-container{
    margin: 60px 0px 0px;
}
.button-load-more-container .button{}
.button-load-more-container .loader img{
    height: 36px;
    margin: 2px 0px;
}
/* Load More Item END */

/* show share */
.show-share-box{
    font-size: 0px;
    line-height: 0px;
    margin: 60px 0px 0px;
}
.show-share-box .text{
    display: block;
    float: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-right: 10px;
    margin-top: 2px;
}
.show-share-box .icons{
    display: inline-block;
    float: left;
}
.show-share-box .icons a{
    float: left;
    margin-right: 15px;
    color: #505050;
    text-decoration: none;
}
.show-share-box .icons .bi{
    width: 28px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    float: left;
    border-radius: 15px;
    background: #000;
    color: #fff;
}
.show-share-box .icons .bi-facebook{
    background: #3b5999;
}
.show-share-box .icons .bi-twitter{
    background: #55acee;
}
.show-share-box .icons .bi-pinterest{
    background: #bd081c;
}
.show-share-box .icons .bi-linkedin{
    background: #0077b5;
}
/* show share end */

/* anchor */
.anchor-container{
    position: relative;
}
.anchor-container .anchor{
    position: absolute;
    top: -100px;
    left: 0px;
    z-index: -1;
}
/* anchor end */


/* right side */
@media (max-width: 991px){
    .right-side-container{
        margin-top: 80px;
    }
}
.right-side-label{
    font-weight: 200;
    font-size: 28px;
    line-height: 30px;
    color: #3e3e3e;
    text-transform: uppercase;
    margin: 0px 0px 10px;
}
.right-side-label:not(:first-child){
    margin-top: 80px;
}
@media (max-width: 991px){
    .right-side-label:not(:first-child){
        margin-top: 60px;
    }
}
.right-side-wrap{
    padding: 10px;
    border: 1px solid #dcddde;
    margin: 0px 0px 40px;
}
.right-side-wrap:last-child{
    margin-bottom: 0;
}

.right-side-wrap.exhibition .img-box{
    display: block;
    margin-bottom: 10px;
}
.right-side-wrap.exhibition .img-box img{
    display: block;
    width: 100%;
    background: #f5f5f5;
}
@media (min-width: 992px){
    .right-side-wrap.exhibition a.img-box{
        overflow: hidden;
    }
    .right-side-wrap.exhibition a.img-box img{
        transition: transform-origin 0.3s ease;
        transform: scale(1.06);
        transform-origin: 0% 0%;
    }
    .right-side-wrap.exhibition a.img-box:hover img{
        transform-origin: 100% 100%;
    }
}
.right-side-wrap.exhibition .box{
    padding: 5px 5px 0px;
}
.right-side-wrap.exhibition .box .name{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 0px 0px 15px;
}
.right-side-wrap.exhibition .box .name a{
    display: inline-block;
    color: #4d4d4f;
    text-decoration: none;
}
.right-side-wrap.exhibition .box .name a:focus, 
.right-side-wrap.exhibition .box .name a:hover {
    color: #8f7200;
    text-decoration: none;
}
.right-side-wrap.exhibition .box .icon-box{
    padding-left: 35px;
    position: relative;
}
.right-side-wrap.exhibition .box .icon-box::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    width: 25px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 25px auto;
}
.right-side-wrap.exhibition .box .icon-box.icon-1::after{
    background-image: url(../design/icon-1.svg);
}
.right-side-wrap.exhibition .box .icon-box.icon-2::after{
    background-image: url(../design/icon-2.svg);
}
.right-side-wrap.exhibition .box .icon-box.icon-3::after{
    background-image: url(../design/icon-3.svg);
}
.right-side-wrap.exhibition .box .icon-box.icon-4::after{
    background-image: url(../design/icon-4.svg);
}
.right-side-wrap.exhibition .box .icon-box.icon-5::after{
    background-image: url(../design/icon-5.svg);
}
.right-side-wrap.exhibition .box .place{
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    padding-top: 5px;
}
.right-side-wrap.exhibition .box .date{
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    color: #4d4d4f;
    padding-top: 5px;
    white-space: nowrap;
    letter-spacing: -0.03em;
}
.right-side-wrap.exhibition .btn-box{
    font-size: 0;
    line-height: 0;
    margin-top: 20px;
}
@media (max-width: 1199px){
    .right-side-wrap.exhibition .box .name{
        font-size: 20px;
        line-height: 25px;
    }
    .right-side-wrap.exhibition .box .date{
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .right-side-wrap.exhibition .box .name{
        font-size: 18px;
        line-height: 22px;
    }
    .right-side-wrap.exhibition .box .place {
        font-size: 14px;
        line-height: 20px;
    }
    .right-side-wrap.exhibition .box .date {
        font-size: 14px;
        line-height: 14px;
    }
}


.right-side-wrap.program{
    background: #f1f2f2;
    padding: 15px 20px;
}
.right-side-wrap.program .box{
}
.right-side-wrap.program .box:not(:first-child){
    margin-top: 30px;
}
.right-side-wrap.program .box .date{
    display: inline-block;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    padding: 0px 14px;
    border-radius: 15px;
    background: #fff;
    color: #4d4d4f;
    letter-spacing: -0.03em;
    border: 1px solid #d1d3d4;
    margin-bottom: 10px;
}
.right-side-wrap.program .box .name{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 0px;
}
.right-side-wrap.program .box .name a{
    display: inline-block;
    color: #4d4d4f;
    text-decoration: none;
}
.right-side-wrap.program .box .name a:focus, 
.right-side-wrap.program .box .name a:hover {
    color: #8f7200;
    text-decoration: none;
}
.right-side-wrap.program .box .name a .bi{
    display: inline;
    color: #8f7200;
    margin-left: 5px;
}
.right-side-wrap.program .box .name.icon a::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    float: left;
    margin-top: 7px;
    margin-right: 10px;
}
.right-side-wrap.program .box .name.icon-1 a::before{
    background: #f07c0b;
}
.right-side-wrap.program .box .name.icon-2 a::before{
    background: #5dbfbc;
}
.right-side-wrap.program .box .name.icon-3 a::before{
    background: #4bb3d9;
}
.right-side-wrap.program .box .name.icon-4 a::before{
    background: #e2ac07;
}
.right-side-wrap.program .box .name.icon-5 a::before{
    background: #adb2b8;
}
.right-side-wrap.program .box .place{
    margin-top: 5px;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
}
.right-side-wrap.program .btn-box{
    font-size: 0;
    line-height: 0;
    margin-top: 30px;
}
@media (max-width: 1199px){
    .right-side-wrap.program .box .name{
        font-size: 20px;
        line-height: 25px;
    }
}
@media (max-width: 767px){
    .right-side-wrap.program {
        padding: 10px 15px;
    }
    .right-side-wrap.program .box .date {
        font-size: 14px;
        line-height: 25px;
        padding: 0px 10px;
    }
    .right-side-wrap.program .box .name{
        font-size: 18px;
        line-height: 22px;
    }
    .right-side-wrap.program .box .name.icon a::before {
        width: 14px;
        height: 14px;
        margin-top: 3px;
    }
    .right-side-wrap.program .box .place {
        font-size: 14px;
        line-height: 20px;
    }
}

.right-side-wrap.info{
    padding: 10px 15px;
}
.right-side-wrap.info .title{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    padding: 10px 0px 10px 50%;
    background-repeat: no-repeat;
    background-size: 120px auto;
    background-position: left center;
    background-image: url(../design/home-i-i.svg);
}
.right-side-wrap.info .btn-box{
    font-size: 0;
    line-height: 0;
    margin-top: 20px;
}
@media (max-width: 1199px){
    .right-side-wrap.info .title{
        font-size: 20px;
        line-height: 25px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
@media (max-width: 991px){
    .right-side-wrap.info .title{
        font-size: 18px;
        line-height: 20px;
        background-size: 100px auto;
        min-height: 70px;
    }
}


.right-side-wrap.social{
    padding: 10px 15px;
}
.right-side-wrap.social .txt-1,
.right-side-wrap.social .txt-2{
    font-size: 22px;
    line-height: 25px;
}
.right-side-wrap.social .txt-1{
    font-weight: 300;
}
.right-side-wrap.social .txt-2{
    font-weight: 700;
    margin-top: 10px;
}
.right-side-wrap.social .icon-box{
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dcddde;
}
.right-side-wrap.social .icon-box a{
    float: left;
    width: 50%;
    text-decoration: none;
    color: #4d4d4f;
}
.right-side-wrap.social .icon-box a:focus,
.right-side-wrap.social .icon-box a:hover{
    text-decoration: none;
    color: #8f7200;
}
.right-side-wrap.social .icon-box a .txt{
    float: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    text-transform: lowercase;
}
.right-side-wrap.social .icon-box a img{
    height: 40px;
    margin-left: 10px;
}
@media (max-width: 1199px){
    .right-side-wrap.social .txt-1,
    .right-side-wrap.social .txt-2{
        font-size: 20px;
        line-height: 24px;
    }
}
@media (max-width: 767px){
    .right-side-wrap.social .txt-1, 
    .right-side-wrap.social .txt-2 {
        font-size: 16px;
        line-height: 20px;
    }
    .right-side-wrap.social .txt-2 {
        font-size: 14px;
    }
    .right-side-wrap.social .icon-box a{
        text-align: center;
    }
    .right-side-wrap.social .icon-box a .txt{
        display: none;
    }
    .right-side-wrap.social .icon-box a img {
        margin-left: 0px;
    }
}

/* right side end */

/* affix */
.right-side-container.affix{
    top: 100px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.right-side-container.affix-bottom {
    position: relative;
}
@media (max-width: 991px){
    .right-side-container.affix {
        position: static;
        width: auto;
        top: 0;
    }
}
/* affix end */


/** CONTENT END **/

/** FOOTER */

/* footer legalul 
html,body {
    height: 100%;
}
#wrap {
    min-height: 100%;
    height: auto;
    margin: 0px auto -1405px;
    padding-bottom: 1405px;
}
#footer {
    height: 1285px;
}
@media (max-width: 1199px){
    #wrap {
        min-height: 0;
        margin: 0 auto 0px;
        padding-bottom: 0px;
    }
    #footer {
        height: auto;
    }
}
/* footer legalul end*/

#footer{
    background: #f2f2f2;
    color: #231f20;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: 120px;
    position: relative;
    padding-top: 130px;
}
#footer a{
    color: #231f20;
    text-decoration: none;
    transition: color 0.3s ease;
}
#footer a:focus,
#footer a:hover{
    color: #856a00;
    text-decoration: none;
}

#footer .title{
    text-transform: uppercase;
    color: #856a00;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    margin: 0px 0px 20px;
}
@media (max-width: 991px){
    #footer{
        margin-top: 50px;
        padding-top: 70px;
    }
    #footer .title{
        margin: 0px 0px 10px;
    }
}

#footer .logo-box{
    font-size: 0px;
    line-height: 0px;
    margin-bottom: 100px;
}
#footer .logo-box a{
    display: inline-block;
    float: left;
}
#footer .logo-box .logo-ldm{
    margin-bottom: 60px;
}
#footer .logo-box .logo-ldm img{
    height: 50px;
}
#footer .logo-box .logo-nka{
    margin-top: 30px;
}
#footer .logo-box .logo-nka img{
    height: 60px;
}
#footer .logo-box .logo-2023{
    margin-left: 16px;
}
#footer .logo-box .logo-2023 img{
    height: 90px;
}
#footer .logo-box .logo-mma{
    margin-top: 30px;
    margin-left: 16px;
}
#footer .logo-box .logo-mma img{
    height: 60px;
}
@media (max-width: 1199px){
    #footer .logo-box .logo-2023{
        margin-left: 15px;
    }
    #footer .logo-box .logo-mma{
        margin-left: 15px;
    }
}
@media (max-width: 991px){
    #footer .logo-box{
        text-align: center;
    }
    #footer .logo-box a{
        display: inline-block;
        float: none;
    }
    #footer .logo-box .logo-nka,
    #footer .logo-box .logo-2023,
    #footer .logo-box .logo-mma{
        margin: 0px 15px;
    }
}
@media (max-width: 767px){
    #footer .logo-box .logo-nka,
    #footer .logo-box .logo-2023,
    #footer .logo-box .logo-mma{
        margin: 10px 15px;
    }
    #footer .logo-box .logo-nka img{
        height: 40px;
    }
    #footer .logo-box .logo-2023 img{
        height: 60px;
    }
    #footer .logo-box .logo-mma img{
        height: 40px;
    }
}

#footer .menu-container {
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 40px;
    background: #e6e7e9;
}
#footer .menu-box .link-box a{
    font-size: 14px;
    line-height: 30px;
    line-height: 20px;
    padding: 5px 0px;
    color: #231f20;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}
#footer .menu-box .link-box.active a,
#footer .menu-box .link-box a:focus,
#footer .menu-box .link-box a:hover{
    color: #856a00;
    text-decoration: none;
}
@media (max-width: 767px){
    #footer .menu-container {
        margin-top: 20px;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    #footer .menu-box .link-box{
        text-align: center;
    }
}

#footer .newsletter-box{
    margin: 0px 0px 80px;
}
#footer .newsletter-box .form-control{
    background: none;
    border: 0;
    border-bottom: 1px solid #4d4d4f;
    font-size: 14px;
    color: #231f20;
    margin: 40px 0px 40px;
    padding-left: 30px;
    padding-right: 30px;
}
#footer .newsletter-box .form-control::-webkit-input-placeholder {
    color: #231f20;
}
#footer .newsletter-box .form-control::-moz-placeholder{
    color: #231f20;
}
#footer .newsletter-box .form-control:-ms-input-placeholder{
    color: #231f20;
}
#footer .newsletter-box .form-control:-moz-placeholder {
    color: #231f20;
}
#footer .newsletter-box .form-control::placeholder {
    color: #231f20;
}
@media (max-width: 991px){
    #footer .newsletter-box{
        text-align: center;
        margin: 0px 0px 40px;
    }
    #footer .newsletter-box .form-control{
        margin: 10px auto 0px;
        width: 60%;
        text-align: center;
    }
}
@media (max-width: 767px){
    #footer .newsletter-box .form-control{
        width: 80%;
    }
}

#footer .conservator-box{
    
}
#footer .conservator-box .logo-veszprem{
    display: inline-block;
}
#footer .conservator-box .logo-veszprem img{
    height: 70px;
}
@media (max-width: 991px){
    #footer .conservator-box{
        text-align: center;
        margin: 0px 0px 40px;
    }
}

#footer .contact-box:not(.last){
    margin-bottom: 30px;
}
#footer .contact-box .name{
    font-weight: 700;
}
#footer .contact-box .intro{
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}
#footer .contact-box .datas{
    margin-top: 5px;
}
#footer .contact-box .datas .left{
    float: left;
    width: 70px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 25px;
    color: #4d4d4f;
}
#footer .contact-box .datas .right{
    font-size: 14px;
    line-height: 25px;
    overflow: hidden;
}
#footer .contact-box .datas .right a{
    color: #231f20;
    text-decoration: none;
    transition: color 0.3s ease;
}
#footer .contact-box .datas .right a:focus,
#footer .contact-box .datas .right a:hover{
    color: #856a00;
    text-decoration: none;
}
#footer .contact-box .datas .right .openinghours{
    
}
#footer .contact-box .datas .right .openinghours .c-one{
    float: left;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
#footer .contact-box .datas .right .openinghours .c-one::before{
    content: '';
    position: absolute;
    top: 5px;
    right: 0px;
    bottom: 5px;
    background: #4d4d4f;
    width: 1px;
}
#footer .contact-box .datas .right .openinghours .c-two{
    overflow: hidden;
}
#footer .contact-box .datas .right .openinghours .c-two i{
    font-style: normal;
    white-space: nowrap;
    display: inline-block;
    margin-right: 5px;
}
@media (max-width: 991px){
    #footer .contact-container{
        text-align: center;
    }
    #footer .contact-box{
        display: inline-block;
        text-align: left;
        width: 80%;
    }
}


#footer .create-box{
    background: #e6e7e9;
    text-align: center;
    font-size: 0px;
    line-height: 0px;
    padding: 10px 0px 10px;
}
#footer .create-box .iw-logo{ /* colorful */
    position: relative;
    display: inline-block;
    width: 136px; 
    height: 20px;
    margin: 0px;
    border: 0px; 
    background-image:url(../design/iwlogo.svg);
    background-repeat: no-repeat;
    background-position: right -40px;
    z-index: 1;
}
#footer .create-box .iw-logo:after, /* gray */
#footer .create-box .iw-logo:before{ /* black */
    content: '';
    position: absolute;
    right: 0px;
    display: inline-block;
    width: 136px; 
    height: 20px;
    margin: 0px;
    border: 0px;
    background-image:url(../design/iwlogo.svg);
    background-repeat: no-repeat;
    background-color: #e6e7e9;
}
#footer .create-box .iw-logo:before{ /* black */
    z-index: 2;
    top: 0px;
    background-position: right -20px;
    transition: width 0.3s 0.4s ease-out;
}
#footer .create-box .iw-logo:after{ /* gray */
    z-index: 3;
    top: 0px;
    background-position: right 0px;
    transition: width 0.3s 0s ease-in;
}
@media (min-width:992px){
    #footer .create-box .iw-logo:hover:before, /* black */
    #footer .create-box .iw-logo:hover:after { /* gray */
        width: 0px;
    }
}
@media (min-width:992px) and (max-width: 1199px){
    #footer .create-box{
        padding-bottom: 60px;
    }
}
@media (max-width: 480px){
    #footer .create-box{
        text-align: center;
        padding-bottom: 20px;
    }
}