/* HELP
100	Thin
200	Extra-light (Ultra-light)
300	Light
400	Normal (Regular)
500	Medium
600	Semi-bold (Demi-bold)
700	Bold
800	Extra-bold (Ultra-bold)
900	Black (Heavy)
*/
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-display: fallback;
    src: url(../fonts/Ubuntu-Light.woff2) format('woff2'), url(../fonts/Ubuntu-Light.woff) format('woff');
}
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: normal; /*400*/
    font-display: fallback;
    src: url(../fonts/Ubuntu-Regular.woff2) format('woff2'), url(../fonts/Ubuntu-Regular.woff) format('woff');
}
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    font-display: fallback;
    src: url(../fonts/Ubuntu-Bold.woff2) format('woff2'), url(../fonts/Ubuntu-Bold.woff) format('woff');
}

body {
    color: #231f20;
    background: #fff;
    font-family: Ubuntu, "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    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: 16px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

/*  
body{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
img{
    pointer-events: none;
}
*/
/*
::-moz-selection {background: #ff0000;color: #000; }
::selection {background: #ff0000;color: #000; }
*/

a{
    color: #231f20;
    text-decoration: underline;
    transition: color 0.3s ease;
}
a:hover, a:focus{
    color: #daee02;
    text-decoration: underline;
}

p {
    margin: 0 0 30px;
}
p:last-child {
    margin-bottom: 0px;
}
ul, ol {
    margin-bottom: 30px;
}
ul:last-child, ol:last-child {
    margin-bottom: 0px;
}
table, .table, .table-responsive{
    margin-bottom: 30px;
}
table:last-child, .table:last-child, .table-responsive:last-child {
    margin-bottom: 0px;
}
@media (max-width: 991px) {
    p {
        margin: 0 0 15px;
    }
    ul, ol {
        margin-bottom: 15px;
    }
    table, .table, .table-responsive{
        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;
    }
}

/* LOADING */
.loading {
    display: none;
    background-color: rgba(255,255,255,0.5);
    background-image: url(../design/loading-spinner-black.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-black.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: #daee02;
}
.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 #231f20;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 10px 15px;
    color: #231f20;
}
#noscript .btn{
    margin-top: 10px;
}
@media (max-width: 991px) {
    #noscript .box {
        left: 30px;
        right: 30px;
        width: auto;
        margin: 0px;
    }
}
/* NOSCRIPT END */
/* main error message */
.main-error-message-box{
    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;
}
/* main error message END */

/* COOKIE BAR */
#cookie_policy_container{
    display: none;
    position: fixed;
    bottom: 20px;
    width: 400px;
    background: #fff;
    border: 1px solid #efebe7;
    color: #231f20;
    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: #231f20;
    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: #daee02;
    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: 40px;
        right: 40px;
    }
    #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: 200px; 
    height: 140px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 100%;
    visibility: hidden;
    opacity: 0;
    margin-bottom: 0px;
    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: 128px; 
        height: 90px;
    }
}
/* SZECHENYI2020 END */

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

/* JQUERY UI WIDGET */
/* autocomplete */
.ui-autocomplete-holder{ /* sajat osztaly */
    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;
}
.ui-autocomplete.ui-widget-content {
    border: 0;
    border: 1px solid #c9c9c9;
    background: #fff;
    box-shadow: 0px 0px 5px #c9c9c9;
}
.ui-autocomplete.ui-menu .ui-menu-item{
    color: #231f20;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 0px;
}
.ui-autocomplete.ui-menu .ui-menu-item-wrapper{
    padding: 4px 15px 4px 15px;
}
.ui-autocomplete.ui-widget-content .ui-state-active,
.ui-autocomplete.ui-widget-content .ui-state-hover,
.ui-autocomplete.ui-widget-content .ui-state-focus {
    border: 0px;
    background: #f6f6f6;
    font-weight: 400;
    color: #231f20;
}
.ui-autocomplete.ui-menu .ui-state-active, 
.ui-autocomplete.ui-menu .ui-state-focus, 
.ui-autocomplete.ui-menu .ui-state-active{
    margin: 0px;
}
/* autocomplete end */
/* datepicker */
.ui-datepicker{
    border: 0;
    background: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
    width: 280px;
    z-index: 2;
    font-size: 14px;
    line-height: 1.6em;
}
.ui-datepicker th{
    padding: 3px 0px;
}
.ui-datepicker td span, 
.ui-datepicker td a{
    text-align: center;
}
.ui-datepicker .ui-state-highlight {
    border: 1px solid #baecde;
    background: #c9f1e5;
    color: #000000;
}
.ui-datepicker .ui-state-active {
    border: 1px solid #98cebe;
    background: #daee02;
    font-weight: normal;
    color: #fff;
}
@media (max-width: 767px){
    .ui-datepicker{
        width: 220px;
        width: calc(100% - 30px);
    }
}
/* datepicker end */

/* slider */
.ui-slider.ui-widget-content{
    background: #e6e7e8;
    border: 0;
    height: 15px;
    margin: 7px 0px 0px;
    border-radius: 8px;
}
.ui-slider .ui-slider-range {
    background: #daee02;
    border: 0;
    border-radius: 8px;
}
.ui-slider .ui-slider-handle{
    z-index: 1;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid #daee02;
    background: #fff;
    border-radius: 15px;
    box-shadow: none;
    top: -8px;
    margin-left: -15px;
}
/* slider end */
/* JQUERY UI WIDGET END */

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

/** MAIN FIXED SIDEBAR **/
#main_fixed_sidebar{
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 3;
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    width: 24px;
}
#main_fixed_sidebar.left{
    left: 45px;
    right: auto;
}
#main_fixed_sidebar.right{
    left: auto;
    right: 45px;
}
#main_fixed_sidebar .box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}
#main_fixed_sidebar .box.white{
    z-index: 2;
    height: 100%;
}
#main_fixed_sidebar .box.black{
    z-index: 1;
}
#main_fixed_sidebar .box .align{
    position: relative;
    width: 100%;
    display: block;
    margin-top: 150px;
}
#main_fixed_sidebar .icon-separator{
    display: block;
    margin: 30px 0px;
    background: #bfbfbf;
    width: 100%;
    height: 1px;
}
#main_fixed_sidebar .box a{
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    width: 24px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.035em;
}
#main_fixed_sidebar .box .fa{
    font-size: 18px;
    height: 40px;
    line-height: 40px;
}
#main_fixed_sidebar .box.black a{
    color: #535353;
}
#main_fixed_sidebar .box.white a.active,
#main_fixed_sidebar .box.white a:focus,
#main_fixed_sidebar .box.white a:hover,
#main_fixed_sidebar .box.black a.active,
#main_fixed_sidebar .box.black a:focus,
#main_fixed_sidebar .box.black a:hover{
    color: #daee02;
    text-decoration: none;
}
/** MAIN FIXED SIDEBAR END **/

/** CONTENT **/

#main_content{}
#main_sidebar{}
#main_sidebar::before{
    display: table;
    content: " ";
}

/* breadcrumb */
.breadcrumb-container{
    background: #ebebeb;
    padding: 20px 0px 20px;
    margin: 0px 0px 0px;
}
.breadcrumb{
    padding: 0px;
    margin: 0px;
    background: none;
    border-radius: 0;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
}
.breadcrumb>li {
    display: inline-block;
    float: left;
    font-size: 14px;
    line-height: 30px;
    position: relative;
    white-space: break-spaces;
}
.breadcrumb>li+li {
    padding-left: 20px;
}
.breadcrumb>li+li::before {
    /*content: "/\00a0";content: "\002F";*/
    font-family: beeicon;
    font-weight: normal;
    content: "\f105";
    padding: 0;
    margin: 0;
    color: #ccc;
    font-size: 14px;
    line-height: 30px;
    width: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    
    /*content: "";
    padding: 0;
    margin: 0;
    
    color: #daee02;
    position: absolute;
    top: 50%;
    left: 8px;
    margin-top: -4px;
    
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px 0px 4px 4px;
    border-color: transparent transparent transparent #daee02;*/
}
.breadcrumb a{
    display: inline-block;
    color: #1B1919;
    text-decoration: none;
}
.breadcrumb a:not(:first-child){
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
}
.breadcrumb a:not(:first-child)::before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 1px;
    height: 10px;
    background: #daee02;
}
.breadcrumb a:focus,
.breadcrumb a:hover,
.breadcrumb>.active a:focus,
.breadcrumb>.active a:hover{
    color: #9E9E9E;
    text-decoration: none;
}
.breadcrumb>.active,
.breadcrumb>.active a{
    color: #9E9E9E;
}
@media (max-width: 991px){
    .breadcrumb>li {
        font-size: 12px;
        line-height: 24px;
    }
    .breadcrumb>li+li::before {
        font-size: 12px;
        line-height: 24px;
    }
    /*.breadcrumb>li+li {
        padding-left: 20px;
    }
    .breadcrumb>li+li::before {
        left: 8px;
    }*/
}
/* breadcrumb end */

.nav-label-2{
    margin: 60px 0px 30px;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
}
.nav-label-2:first-child{
    margin-top: 0px;
}
.nav-label-2:last-child{
    margin-bottom: 0px;
}
.nav-label-3{
    margin: 45px 0px 30px;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
}
.nav-label-3:first-child{
    margin-top: 0px;
}
.nav-label-3:last-child{
    margin-bottom: 0px;
}
a.nav-label-2,
.nav-label-2 a,
a.nav-label-3,
.nav-label-3 a{
    color: #231f20;
    text-decoration: none;
}
a.nav-label-2:hover,
a.nav-label-2:focus,
.nav-label-2 a:hover,
.nav-label-2 a:focus,
a.nav-label-3:hover,
a.nav-label-3:focus,
.nav-label-3 a:hover,
.nav-label-3 a:focus{
    color: #daee02;
    text-decoration: none;
}
@media (max-width: 991px){
    .nav-label-2{
        margin: 45px 0px 15px;
        font-size: 24px;
        line-height: 28px;
    }
    .nav-label-2:first-child{
        margin-top: 0px;
    }
    .nav-label-2:last-child{
        margin-bottom: 0px;
    }
    .nav-label-3{
        margin: 30px 0px 15px;
        font-size: 22px;
        line-height: 25px;
    }
    .nav-label-3:first-child{
        margin-top: 0px;
    }
    .nav-label-3:last-child{
        margin-bottom: 0px;
    }
}
@media (max-width: 767px){
    .nav-label-2{
        font-size: 20px;
        line-height: 24px;
    }
    .nav-label-3{
        font-size: 18px;
        line-height: 20px;
    }
}

/* filter */
.filter-container{
    margin-bottom: 40px;
}
.filter-container.absolute{
    position: absolute;
    top: -110px;
    right: 0px;
    z-index: 1;
    margin: 0;
}
.filter-container .filter-box{
    float: left;
    margin: 0px 0px 0px 0px;
    width: 200px;
}
.filter-container .filter-box:not(:first-child){
    margin-left: 10px;
}
@media (max-width: 991px){
    .filter-container{
        margin-bottom: 30px;
    }
    .filter-container.absolute{
        position: static;
        margin-bottom: 30px;
    }
    .filter-container .filter-box{
        float: none;
        margin: 0px 0px 0px;
        width: 100%;
    }
    .filter-container .filter-box:not(:first-child){
        margin-left: 0px;
        margin-top: 10px;
    }
}
.filter-container .filter-box .form-control {
    height: 46px;
    padding: 10px 24px 10px 16px;
    font-size: 16px;
    line-height: 24px;
    background-color: #fff;
    border-color: #ccc;
    color: #231f20;
}
.filter-container .filter-box .form-control:focus {
    border-color: #ccc;
}
/* filter end */

/* content */
/*.content-container:first-child{
    margin-top: 40px;
}*/
.content-container:not(:last-child){
    margin-bottom: 60px;
}
.content-container .description:not(:last-child){
    margin-bottom: 45px;
}
@media (max-width: 991px){
    /*.content-container:first-child{
        margin-top: 30px;
    }*/
    .content-container:not(:last-child){
        margin-bottom: 30px;
    }
    .content-container .description:not(:last-child){
        margin-bottom: 30px;
    }
}

.media-embed-container{
    max-width: 80%;
    background: #ffffff;
    margin: 0px auto 30px;
    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: 991px){
    .media-embed-container{
        margin-bottom: 15px;
    }
}
@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{
    display: block !important;
    max-width: 100%;
    background: #e5e5e5;
    margin: 0px auto 0px;
}
.content-container .description .embed-responsive:not(:last-child),
.content-container .description img:not(:last-child),
.show-description .embed-responsive:not(:last-child),
.show-description img:not(:last-child){
    margin-bottom: 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: 991px){
    .content-container .description .embed-responsive:not(:last-child),
    .content-container .description img:not(:last-child),
    .show-description .embed-responsive:not(:last-child),
    .show-description img:not(:last-child){
        margin-bottom: 15px;
    }
}
@media (max-width: 767px){
}
/*@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%;
    }
}*/

.price-container:not(:last-child){
    margin-bottom: 60px;
}
.price-container .box:not(:last-child){
    margin-bottom: 20px;
}
.price-container .name{
    font-weight: 700;
    margin: 0px;
}
.price-container .info{
}
.price-container .price{
    margin-top: 5px;
    font-weight: 700;
}
@media (max-width: 991px){
    .price-container:not(:last-child){
        margin-bottom: 30px;
    }
}

.accordion-container:not(:first-child){
    margin-top: -10px;
}
.accordion-container:not(:last-child){
    margin-bottom: 30px;
}
.accordion-container .panel-group{
    margin-bottom: 0px;
    border-top: 1px solid #231f20;
}
.accordion-container .panel-group .panel{
    margin-bottom: 0px;
    background: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0px;
    border-bottom: 1px solid #231f20;
}
.accordion-container .panel-group .panel+.panel {
    margin-top: 0px;
}
.accordion-container .panel-group{
    border-top: 0;
}
.accordion-container .panel-group .panel:last-child{
    /*border-bottom: 0;*/
}
.accordion-container .panel-heading{
    color: #141414;
    background: none;
    border: 0;
    padding: 0px;
}
.accordion-container .panel-title {
    font-size: inherit;
}
.accordion-container .panel-title > a{
    display: block;
    padding: 25px 50px 25px 0px;
    position: relative;
}
.accordion-container .panel-title > a:focus,
.accordion-container .panel-title > a{
    text-decoration: none;
    color: #231f20;
}
.accordion-container .panel-title > a:hover{
    text-decoration: none;
    color: #daee02;
}
.accordion-container .panel-title > a .name{
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.02em;
}
.accordion-container .panel-title > a .icon{
    width: 30px;
    height: 30px;
    font-size: 0px;
    line-height: 0px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -15px;
    transition: transform .2s ease-in-out;
}
.accordion-container .panel-title > a .icon::before,
.accordion-container .panel-title > a .icon::after{
    content: '';
    background: #daee02;
    position: absolute;
}
.accordion-container .panel-title > a .icon::before{
    width: 30px;
    height: 2px;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.accordion-container .panel-title > a .icon::after{
    width: 2px;
    height: 30px;
    top: 0;
    left: 50%;
    margin-left: -1px;
}
.accordion-container .panel-title > a:not(.collapsed) .icon {
    transform: rotate(45deg);
}
.accordion-container .panel-title > a .bi{
    position: absolute;
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    transition: transform .2s ease-in-out;
}
.accordion-container .panel-title > a:not(.collapsed) .bi {
    transform: rotate(180deg);
}
.accordion-container .panel-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    padding: 0px 0px 40px;
}
.accordion-container .panel-group .panel-heading+.panel-collapse>.panel-body, 
.accordion-container .panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: 0px;
}
.accordion-container .panel-body p:last-child{
    margin-bottom: 0px;
}
@media (max-width: 991px){
    .accordion-container:not(:first-child){
        margin-top: -5px;
    }
    .accordion-container:not(:last-child){
        margin-bottom: 30px;
    }
    .accordion-container .panel-title > a{
        padding: 15px 30px 15px 0px;
    }
    .accordion-container .panel-title > a .bi {
        right: 0px;
    }
    .accordion-container .panel-title > a .name{
        font-size: 18px;
        line-height: 30px;
    }
    .accordion-container .panel-body{
        font-size: 14px;
        padding-bottom: 30px;
    }
}

/* content end */

/* market */
.app-side-wrap{
    margin-top: 0px;
}
.app-side-wrap .nav-pills>li.active>a, 
.app-side-wrap .nav-pills>li.active>a:hover, 
.app-side-wrap .nav-pills>li.active>a:focus,
.app-side-wrap .nav-pills>li>a:hover, 
.app-side-wrap .nav-pills>li>a:focus {
    color: #daee02;
    background: none;
    border-right: 2px solid #daee02;
    text-decoration: none;
}
.app-side-wrap .nav-pills>li>a{
    color: #231f20;
    text-decoration: none;
    border-right: 2px solid #e5e5e5;
    padding-left: 0px;
    font-size: 18px;
    line-height: 25px;
}
/* market end */

/* post-list-item */
.post-list-item{
    display: block;
    font-size: 0px;
    line-height: 0px;
}
.post-list-item-container-mb-1 .post-list-item{
    margin-bottom: 30px;
}
.post-list-item-container-mb-2 .post-list-item{
    margin-bottom: 60px;
}
.post-list-item-container-mb-3 .post-list-item{
    margin-bottom: 90px;
}
.post-list-item-container-mb-1 .post-list-item-corrector{
    margin-top: -30px;
}
.post-list-item-container-mb-2 .post-list-item-corrector{
    margin-top: -60px;
}
.post-list-item-container-mb-3 .post-list-item-corrector{
    margin-top: -90px;
}
.post-list-item .img-box{
    display: block;
    position: relative;
}
.post-list-item.landscape .img-box{
    margin-bottom: 0px;
}
.post-list-item.portrait .img-box{
    margin-bottom: 20px;
}
.post-list-item .img-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f5f5f5;
}
.post-list-item .img-box .label-one{
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #daee02;
    color: #231f20;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    text-align: left;
    white-space: normal;
    border-radius: 0px;
}
.post-list-item .img-box .label-two{
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #daee02;
    color: #231f20;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    white-space: normal;
    border-radius: 0px;
}
.post-list-item .img-box .label-two.type-1{
    background: #0047bd;
    color: #fff;
}
.post-list-item .img-box .label-two.type-2{
    background: #ffb300;
    color: #fff;
}
.post-list-item .img-box .label-two.type-3{
    background: #ea0034;
    color: #fff;
}
.post-list-item .img-box .label-two.type-4{
    background: #8200ac;
    color: #fff;
}
.post-list-item .img-box .label-two.type-5{
    background: #009543;
    color: #fff;
}
.post-list-item .img-box .label-isover{
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #d9534f;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    white-space: normal;
    border-radius: 0px;
}
a.post-list-item,
a.post-list-item:hover,
a.post-list-item:focus{
    color: #231f20;
    text-decoration: none;
}
.post-list-item .holder-box{
    padding-left: 10px;
}
a.post-list-item .txt-box,
.post-list-item a.txt-box{
    display: block;
    color: #231f20;
    text-decoration: none;
    transition: color 0.3s ease;
}
a.post-list-item .txt-box:hover,
a.post-list-item .txt-box:focus,
.post-list-item a.txt-box:hover,
.post-list-item a.txt-box:focus{
    color: #daee02;
    text-decoration: none;
}
.post-list-item .txt-box .date{
    margin: 10px 0px 0px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #231f20;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}
.post-list-item .txt-box .info-text{
    margin: 15px 0px 0px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #231f20;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.post-list-item .txt-box .name{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #231f20;
    margin: 0px;
    transition: color 0.3s ease;
}
.post-list-item .txt-box .intro{
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #231f20;
    margin: 15px 0px 0px;
    transition: color 0.3s ease;
}
a.post-list-item .txt-box:hover .name,
a.post-list-item .txt-box:focus .name,
.post-list-item a.txt-box:hover .name,
.post-list-item a.txt-box:focus .name,
a.post-list-item .txt-box:hover .intro,
a.post-list-item .txt-box:focus .intro,
.post-list-item a.txt-box:hover .intro,
.post-list-item a.txt-box:focus .intro,
a.post-list-item .txt-box:hover .date,
a.post-list-item .txt-box:focus .date,
.post-list-item a.txt-box:hover .date,
.post-list-item a.txt-box:focus .date,
a.post-list-item .txt-box:hover .info-text,
a.post-list-item .txt-box:focus .info-text,
.post-list-item a.txt-box:hover .info-text,
.post-list-item a.txt-box:focus .info-text{
    color: #daee02;
}
.post-list-item .btn-box{
    margin-top: 20px;
}
@media (max-width: 991px){
    .post-list-item-container-mb-1 .post-list-item{
        margin-bottom: 15px;
    }
    .post-list-item-container-mb-2 .post-list-item{
        margin-bottom: 30px;
    }
    .post-list-item-container-mb-3 .post-list-item{
        margin-bottom: 60px;
    }
    .post-list-item-container-mb-1 .post-list-item-corrector{
        margin-top: -15px;
    }
    .post-list-item-container-mb-2 .post-list-item-corrector{
        margin-top: -30px;
    }
    .post-list-item-container-mb-3 .post-list-item-corrector{
        margin-top: -60px;
    }
    .post-list-item.landscape .img-box{
        margin-bottom: 15px;
    }
    .post-list-item.portrait .img-box{
        margin-bottom: 15px;
    }
    .post-list-item .holder-box{
        padding-left: 0px;
    }
    .post-list-item .txt-box .date{
        margin: 10px 0px 0px;
    }
    .post-list-item .txt-box .info-text{
        margin: 0px 0px 10px;
    }
    .post-list-item .txt-box .name{
        font-size: 22px;
        line-height: 30px;
    }
    .post-list-item .txt-box .intro{
        font-size: 14px;
        line-height: 20px;
        margin: 10px 0px 0px;
    }
}
@media (max-width: 767px){
    .post-list-item .txt-box{
    }
    .post-list-item-container-mb-3 .post-list-item{
        margin-bottom: 30px;
    }
    .post-list-item-container-mb-3 .post-list-item-corrector{
        margin-top: -30px;
    }
    .post-list-item.landscape .img-box{
        margin-bottom: 10px;
    }
    .post-list-item.portrait .img-box{
        margin-bottom: 10px;
    }
    .post-list-item .txt-box .date{
    }
    .post-list-item .txt-box .name{
        font-size: 18px;
        line-height: 24px;
        word-break: break-word;
    }
    .post-list-item .txt-box .intro{
    }
}
.post-list-item .info-wrap{
    font-size: 0px;
    line-height: 0px;
    margin: 15px 0px 0px;
}
.post-list-item .info-wrap .info-box{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #231f20;
    float: left;
}
.post-list-item .info-wrap .info-box:not(:first-child){
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}
.post-list-item .info-wrap .info-box:not(:first-child)::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    background: #ccc;
}
.post-list-item .info-wrap .info-box.author{
}
.post-list-item .info-wrap .info-box.author .text{
}
.post-list-item .info-wrap .info-box.author .name{
}
.post-list-item .info-wrap .info-box.date{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    padding-top: 2px;
}
.post-list-item .info-wrap .info-box.tags{
}
.post-list-item .info-wrap .info-box.tags a{
    text-decoration: none;
    color: #231f20;
}
.post-list-item .info-wrap .info-box.tags a:focus,
.post-list-item .info-wrap .info-box.tags a:hover{
    text-decoration: none;
    color: #daee02;
}
@media (max-width: 991px){
    .post-list-item .info-wrap{
        margin: 15px 0px 0px;
    }
}
@media (max-width: 767px){
    .post-list-item .info-wrap .info-box{
        float: none;
        display: block;
    }
    .post-list-item .info-wrap .info-box:not(:first-child) {
        padding-left: 0px;
        margin-left: 0px;
        margin-top: 5px;
    }
    .post-list-item .info-wrap .info-box:not(:first-child)::before{
        display: none;
    }
}
/* post-list-item end */

/* product-list-item */
.product-list-item{
    display: block;
    margin: 0px 0px 30px;
    padding: 0px;
    position: relative;
    text-align: center;
}
.product-list-item .img-box{
    display: block;
    position: relative;
    margin-bottom: 20px;
}
.product-list-item .img-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
.product-list-item .name{
    display: block;
    margin: 0px 0px 10px;
    padding: 0px;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}
.product-list-item a.name{
    display: block;
    color: #3c3c3c;
    text-decoration: none;
}
.product-list-item a.name:hover,
.product-list-item a.name:focus{
    color: #daee02;
    text-decoration: none;
}
@media (max-width: 991px){
    .product-list-item .name{
    }
}

.product-list-item .price-box{
    font-size: 16px;
    line-height: 20px;
}
.product-list-item .price-box .previous{
    display: block;
    font-weight: 400;
    color: #bfbfbf;
}
.product-list-item .price-box .current{
    display: block;
    font-weight: 700;
    color: #daee02;
}
@media (max-width: 991px){
    .product-list-item .price-box{
    }
    .product-list-item .price-box .previous{
    }
    .product-list-item .price-box .current{
    }
}

.product-list-item .btn-container{
    margin-top: 15px;
    position: relative;
}
.product-list-item .btn-container .product-add{
    text-transform: uppercase;
    margin: 0px 0px 0px;
}

@media (max-width: 991px){
    .product-list-item .btn-container{
    }
}
/* product-list-item end */

/* vertical-list-separator */
.vertical-list-separator{
    width: 100%;
    height: 1px;
    background: #e1e8e9;
}
.vertical-list-separator.mb{
    margin-bottom: 30px;
}
@media (min-width: 1440px){
    .space-xl .vertical-list-separator.mb{
        margin-bottom: 45px;
    }
}

.post-list-item-container-mb-1 .vertical-list-separator{
    margin-bottom: 30px;
}
.post-list-item-container-mb-2 .vertical-list-separator{
    margin-bottom: 60px;
}
.post-list-item-container-mb-3 .vertical-list-separator{
    margin-bottom: 90px;
}
@media (max-width: 991px){
    .post-list-item-container-mb-1 .vertical-list-separator{
        margin-bottom: 15px;
    }
    .post-list-item-container-mb-2 .vertical-list-separator{
        margin-bottom: 30px;
    }
    .post-list-item-container-mb-3 .vertical-list-separator{
        margin-bottom: 60px;
    }
}
/* vertical-list-separator end */

/* place-list-item */
.place-list-item{
    display: block;
    font-size: 0px;
    line-height: 0px;
}
.place-list-item-container .place-list-item{
    margin-bottom: 90px;
}
.place-list-item-container .place-list-item-corrector{
    margin-top: -90px;
}
.place-list-item .img-box{
    display: block;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}
.place-list-item .img-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
.place-list-item .txt-box{
    display: block;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 10px 20px;
    height: 80px;
}
.place-list-item.bigger .txt-box{
    padding: 15px 20px 15px 20px;
    height: 90px;
}
a.place-list-item .txt-box,
.place-list-item a.txt-box{
    color: #231f20;
    text-decoration: none;
    transition: color 0.3s ease;
}
a.place-list-item .txt-box:hover,
a.place-list-item .txt-box:focus,
.place-list-item a.txt-box:hover,
.place-list-item a.txt-box:focus{
    color: #231f20;
    text-decoration: none;
}
.place-list-item .txt-box .name{
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.035em;
    margin: 0px;
    display: block;
    overflow: hidden;
}
.place-list-item.bigger .txt-box .name{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

@media (max-width: 1439px){
    .place-list-item-container .place-list-item{
        margin-bottom: 30px;
    }
    .place-list-item-container .place-list-item-corrector{
        margin-top: -30px;
    }
}
@media (max-width: 991px){
    .place-list-item-container .place-list-item{
        margin-bottom: 30px;
    }
    .place-list-item-container .place-list-item-corrector{
        margin-top: -30px;
    }
    .place-list-item .txt-box{
        padding: 10px 10px 10px 20px;
        height: 80px;
    }
    .place-list-item.bigger .txt-box{
        padding: 10px 10px 10px 20px;
        height: 80px;
    }
    .place-list-item .txt-box .name{
        font-size: 20px;
        line-height: 30px;
    }
    .place-list-item.bigger .txt-box .name{
        font-size: 20px;
        line-height: 30px;
    }
}
@media (max-width: 767px){
    .place-list-item-container .place-list-item{
        margin-bottom: 15px;
    }
    .place-list-item-container .place-list-item-corrector{
        margin-top: -15px;
    }
    .place-list-item .img-box{
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .place-list-item .txt-box{
        padding: 5px 5px 5px 15px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        height: 50px;
    }
    .place-list-item.bigger .txt-box{
        padding: 5px 5px 5px 15px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        height: 50px;
    }
    .place-list-item .txt-box .name{
        font-size: 14px;
        line-height: 20px;
    }
    .place-list-item.bigger .txt-box .name{
        font-size: 14px;
        line-height: 20px;
    }
}
/* place-list-item end */


/* img-hover-anim-box */
@media (min-width: 992px){
    .img-hover-anim-box{
        display: block;
        overflow: hidden;
    }
    .img-hover-anim-box img{
        transition: transform 0.8s ease;
        transform: none;
        will-change: transform;
    }
    a .img-hover-anim-box:hover img,
    a.img-hover-anim-box:hover img{
        transform: scale(1.08);
    }
    
    /*.img-hover-anim-box{
        overflow: hidden;
    }
    .img-hover-anim-box img{
        transition: transform-origin 0.6s ease;
        will-change: transform;
        transform: scale(1.05);
        transform-origin: 0% 0%;
    }
    a .img-hover-anim-box:hover img,
    a.img-hover-anim-box:hover img{
        transform-origin: 100% 100%;
    }*/
}
/* img-hover-anim-box end */

/* list-message-container */
.list-message-container{}
.post-list-item-container-mb-1 .list-message-container{
    margin-bottom: 30px;
}
.post-list-item-container-mb-2 .list-message-container{
    margin-bottom: 60px;
}
.post-list-item-container-mb-3 .list-message-container{
    margin-bottom: 90px;
}
@media (max-width: 991px){
    .post-list-item-container-mb-1 .list-message-container{
        margin-bottom: 15px;
    }
    .post-list-item-container-mb-2 .list-message-container{
        margin-bottom: 30px;
    }
    .post-list-item-container-mb-3 .list-message-container{
        margin-bottom: 60px;
    }
}
/* list-message-container end */

/* show media box */
.show-media-box{
    display: block;
    margin-bottom: 30px;
}
.show-media-box,
a.show-media-box:focus,
a.show-media-box:hover{
    text-decoration: none;
    color: #231f20;
}
.show-media-box .title{
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin: 10px 0px 0px;
}
.show-media-box .image-box{
    position: relative;
    display: block;
}
.show-media-box .image-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
.show-media-box .image-box .bi{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 60px;
    margin-top: -40px;
    margin-left: -40px;
    color: #d2d2d2;
    color: rgba(255,255,255,0.8);
}
.show-media-box .subtitle{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
@media (max-width: 991px){
    .show-media-box .title{
        font-size: 12px;
        line-height: 15px;
        margin: 5px 0px 0px;
    }
    .show-media-box .subtitle{
        font-size: 12px;
        line-height: 16px;
        padding: 8px 10px;
    }
}
@media (max-width: 767px) {
    .show-media-container.space-xs{
        margin-bottom: -14px;
    }
    .space-xs > .row .show-media-box{
        margin-bottom: 14px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .show-media-container.space-sm{
        margin-bottom: -20px;
    }
    .space-sm > .row .show-media-box{
        margin-bottom: 20px;
    }
}
@media (min-width: 1200px) and (max-width: 1439px) {
    .show-media-container.space-lg{
        margin-bottom: -30px;
    }
    .space-lg > .row .show-media-box{
        margin-bottom: 30px;
    }
}
@media (min-width: 1440px){
    .show-media-container.space-xl{
        margin-bottom: -90px;
    }
    .space-xl > .row .show-media-box{
        margin-bottom: 90px;
    }
}
/* show media box end */

/* show image intro description */
.show-image-box{
    display: block;
    text-align: center;
    margin-bottom: 30px;
}
.show-image-box img{
    display: inline-block;
    max-width: 100%;
    background: #e5e5e5;
    margin: 0px auto 0px;
}
.show-image-box.right-portrait{
    margin: 0px;
}
.show-image-box.right-portrait img {
    display: block;
    width: 100%;
    max-width: 100%;
    background: #fff;
    margin: 0;
    border-top: 0;
}
@media (max-width: 991px){
    .show-image-box.right-portrait{
        margin-top: 30px;
    }
}
.show-intro{
    font-weight: 700;
}
.show-intro,
.show-description{
    margin: 0;
    word-break: break-word;
}
.show-intro:not(:last-child),
.show-description:not(:last-child){
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .show-intro:not(:last-child),
    .show-description:not(:last-child){
        margin-bottom: 15px;
    }
}
/* show image intro description end */


/* UL */
.content-container ul,
.show-description ul{
    list-style: none;
    padding-left: 0px;
}
.content-container ul:not(:first-child),
.show-description ul:not(:first-child){
    margin-top: 5px;
}
.content-container ul li,
.show-description ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 4px;
}
.content-container ul li::before,
.show-description ul li::before{
    display: inline-block;
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #daee02;
    width: 6px;
    height: 6px;
    border-radius: 6px;
}
@media (max-width: 991px) {
    .content-container ul li,
    .show-description ul li{
        padding-left: 20px;
    }
    .content-container ul li::before,
    .show-description ul li::before{
        top: 8px;
        left: 4px;
    }
}
/* UL END */

/* CKEDITOR */
.text-colored{
    color: #daee02;
}
.bg-colored{
    display: block;
    background: #daee02;
    color: #231f20;
    margin: 0 0 30px;
    padding: 15px 20px;
}
.bg-colored .nav-label-3:not(:last-child){
    margin-bottom: 15px;
}
.bg-colored p:not(:last-child),
.bg-colored ul:not(:last-child), 
.bg-colored ol:not(:last-child),
.bg-colored table:not(:last-child), 
.bg-colored .table:not(:last-child), 
.bg-colored .table-responsive:not(:last-child) {
    margin-bottom: 15px;
}
.content-container .bg-colored ul li::before,
.show-description .bg-colored ul li::before{
    background: #000;
    left: 5px;
}
.content-container .bg-colored ul li, 
.show-description .bg-colored ul li {
    padding-left: 20px;
}
.content-container .description .img-align-left,
.show-description .img-align-left,
.content-container .description .img-align-right,
.show-description .img-align-right{
    max-width: 50%;
    margin-bottom: 30px;
}
.content-container .description .img-align-left,
.show-description .img-align-left{
    float: left;
    margin-right: 30px;
}
.content-container .description .img-align-right,
.show-description .img-align-right{
    float: right;
    margin-left: 30px;
}
@media (max-width: 991px) {
    .bg-colored{
        padding: 10px 15px;
        margin: 0 0 15px;
    }
    .content-container .description .img-align-left,
    .show-description .img-align-left,
    .content-container .description .img-align-right,
    .show-description .img-align-right{
        margin-bottom: 15px;
    }
    .content-container .description .img-align-left,
    .show-description .img-align-left{
        margin-right: 15px;
    }
    .content-container .description .img-align-right,
    .show-description .img-align-right{
        margin-left: 15px;
    }
}

.formatted-media-subtitle-text{
    text-align: center;
    font-size: 90%;
    line-height: 1em;
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .formatted-media-subtitle-text{
        margin-top: -7px;
        margin-bottom: 15px;
    }
}

.formatted-text{
    display: block;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    position: relative;
    letter-spacing: 0.05em;
    text-align: left;
    margin: 50px 0px 30px;
}
.formatted-text:first-child{
    margin-top: 0px;
}
span.formatted-text{
    display: inline-block;
    margin: 0px;
}
.formatted-text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: #daee02;
    height: 10px;
    width: 130px;
}
@media (max-width: 991px) {
    .formatted-text{
        font-size: 22px;
        line-height: 25px;
        letter-spacing: 0.02em;
    }
    .formatted-text::before{
        height: 8px;
        width: 60px;
    }
}
@media (max-width: 767px) {
    .formatted-text{
        font-size: 18px;
        line-height: 20px;
    }
}
/* CKEDITOR END */

/* back */
.back{
    display: none;
}
/* back end */

/* show back */
.show-back-box{
    margin: 60px 0px 0px;
    overflow: hidden;
}
.show-back-box a{
    display: inline-block;
    padding-left: 20px;
    position: relative;
    font-weight: 400;
    line-height: 30px;
    color: #231f20;
    text-decoration: none;
}
.show-back-box a:hover, 
.show-back-box a:focus{
    color: #daee02;
    text-decoration: none;
}
.show-back-box a .bi{
    width: 20px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    color: #daee02;
}
/* show back END */

/* files container */
.show-more-files-container{
    margin: 0px 0px 0px;
}
.show-more-files-container:not(:last-child){
    margin-bottom: 60px;
}
.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 */

/* show map container */
.show-map-container:not(:last-child){
    margin: 0px 0px 60px;
}
@media (max-width: 991px){
    .show-map-container:not(:last-child){
        margin: 0px 0px 30px;
    }
}
/* show map container end */

/* show images */
.show-images-wrap:not(:last-child){
    margin: 0px 0px 60px;
}
@media (max-width: 991px){
    .show-images-wrap:not(:last-child){
        margin: 0px 0px 30px;
    }
}
/* show images end */

/* more images container */
.show-more-images-container{
    margin-bottom: -30px;
    font-size: 0;
    line-height: 0;
}
.show-more-images-box{
    margin-bottom: 30px;
}
.show-more-images-box .img-box{
    display: block;
    position: relative;
}
.show-more-images-box .img-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
@media (max-width: 767px) {
    .show-more-images-container.space-xs{
        margin-bottom: -14px;
    }
    .space-xs > .row .show-more-images-box{
        margin-bottom: 14px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .show-more-images-container.space-sm{
        margin-bottom: -20px;
    }
    .space-sm > .row .show-more-images-box{
        margin-bottom: 20px;
    }
}
@media (min-width: 1200px) and (max-width: 1439px) {
    .show-more-images-container.space-lg{
        margin-bottom: -30px;
    }
    .space-lg > .row .show-more-images-box{
        margin-bottom: 30px;
    }
}
@media (min-width: 1440px){
    .show-more-images-container.space-xl{
        margin-bottom: -90px;
    }
    .space-xl > .row .show-more-images-box{
        margin-bottom: 90px;
    }
}
/* more images container end */

/* one image container */
.show-one-image-container:not(:last-child){
    margin: 0px 0px 60px;
}
@media (max-width: 991px){
    .show-one-image-container:not(:last-child){
        margin: 0px 0px 30px;
    }
}
.show-one-image-container .img-box{
    display: block;
    overflow: hidden;
    position: relative;
}
.show-one-image-container .img-box::before,
.show-one-image-container .img-box::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.show-one-image-container .img-box::before{
    background-color: rgba(0,0,0,0.25);
    opacity: 1;
    transition: opacity 0.8s ease;
}
.show-one-image-container .img-box::after{
    background-image: url(../design/icon-gallery.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 170px;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: none;
    will-change: transform;
}
.show-one-image-container .img-box img{
    background: #f7f7f7;
    width: 100%;
}
@media (min-width: 992px){
    .show-one-image-container a .img-hover-anim-box:hover::before,
    .show-one-image-container a.img-hover-anim-box:hover::before{
        opacity: 0.5;
    }
    .show-one-image-container a .img-hover-anim-box:hover::after,
    .show-one-image-container a.img-hover-anim-box:hover::after{
        opacity: 0.5;
        transform: scale(0.8);
    }
}
@media (max-width: 991px){
    .show-one-image-container .img-box::after {
        background-size: 120px;
    }
}
@media (max-width: 767px){
    .show-one-image-container .img-box::after {
        background-size: 100px;
    }
}
.show-one-image-wrap{
    margin: 0px;
}
.show-one-image-wrap:not(:last-child){
    margin-bottom: 60px;
}
.show-one-image-wrap .show-one-image-container{
    position: relative;
}
.show-one-image-wrap .show-one-image-container .img-box{
}
.show-one-image-wrap .show-one-image-container .btn-box{
}
@media (max-width: 991px){
    .show-one-image-wrap {
        margin-top: 160px;
        padding-bottom: 30px;
    }
    .show-one-image-wrap:not(:last-child){
        margin-bottom: 50px;
    }
}
/* one image container end */

/* youtube container */
.show-more-youtube-videos-wrap{
    margin: 0px;
}
.show-more-youtube-videos-wrap:not(:last-child){
    margin-bottom: 60px;
}
@media (max-width: 991px){
    .show-more-youtube-videos-wrap:not(:last-child){
        margin-bottom: 30px;
    }
}
.show-more-youtube-videos-box{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
}
.show-more-youtube-videos-box:not(:last-child){
    margin-bottom: 60px;
}
@media (max-width: 991px){
    .show-more-youtube-videos-box:not(:last-child){
        margin-bottom: 30px;
    }
}
@media (max-width: 767px){
    .show-more-youtube-videos-box{
        width: 100%;
    }
}
.show-more-youtube-videos-box .txt-box .btn-box{
}
.show-more-youtube-videos-box .img-box{
    display: block;
    cursor: pointer;
    position: relative;
}
.show-more-youtube-videos-box .img-box .bi {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 100px;
    color: #fff;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: none;
    will-change: transform;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box{
    display: block;
    overflow: hidden;
    position: relative;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::before,
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.show-more-youtube-videos-box .img-box img{
    background: #f7f7f7;
    width: 100%;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box .bi {
    display: none;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::before{
    background-color: rgba(0,0,0,0.25);
    opacity: 1;
    transition: opacity 0.8s ease;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::after{
    background-image: url(../design/icon-video.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 170px;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: none;
    will-change: transform;
}
.show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box img{
    background: #f7f7f7;
    width: 100%;
}
@media (min-width: 992px){
    .show-more-youtube-videos-wrap a .img-hover-anim-box:hover::before,
    .show-more-youtube-videos-wrap a.img-hover-anim-box:hover::before{
        opacity: 0.5;
    }
    .show-more-youtube-videos-wrap a .img-hover-anim-box:hover::after,
    .show-more-youtube-videos-wrap a.img-hover-anim-box:hover::after{
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.show-more-youtube-videos-box .subtitle{
    text-align: left;
    font-size: 90%;
    line-height: 1em;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0px;
}
@media (max-width: 991px){
    .show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::after {
        background-size: 120px;
    }
}
@media (max-width: 767px){
    .show-more-youtube-videos-wrap .show-more-youtube-videos-box .img-box::after {
        background-size: 100px;
    }
}
/* youtube container end */

/* show-more-videos */
.show-more-videos-container{
    font-size: 0;
    line-height: 0;
}
.show-more-videos-container .video-box:not(:last-child){
    margin: 0px 0px 30px;
}
@media (max-width: 991px){
    .show-more-videos-container .video-box:not(:last-child){
        margin: 0px 0px 15px;
    }
}
.show-more-videos-container .subtitle{
    text-align: left;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0px;
}
/* show-more-videos end */

/* show-more-audios */
.show-more-audios-container{
    font-size: 0;
    line-height: 0;
}
.show-more-audios-container:not(:last-child){
    margin: 0px 0px 60px;
}
@media (max-width: 991px){
    .show-more-audios-container:not(:last-child){
        margin: 0px 0px 30px;
    }
}
.show-more-audios-container .audio-box:not(:last-child){
    margin: 0px 0px 15px;
}
.show-more-audios-container .subtitle{
    text-align: left;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}
/* show-more-audios end */

/* show-soundcloud-container */
.show-soundcloud-container{
    font-size: 0;
    line-height: 0;
    position: relative;
}
.show-soundcloud-container:not(:last-child){
    margin: 0px 0px 60px;
}
.show-soundcloud-container iframe{
    width: 100%;
    height: 166px;
    border: 0;
    overflow:hidden;
}
@media (max-width: 991px){
    .show-soundcloud-container:not(:last-child){
        margin: 0px 0px 30px;
    }
}
/* show-soundcloud-container end */

/*  */
.show-info-wrap{
    font-size: 0px;
    line-height: 0px;
    min-height: 20px;
    margin: 0px 0px 30px;
    padding: 0px 0px 30px;
    border-bottom: 1px solid #e5e5e5;
}
.show-info-wrap .si-box{
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #000;
    position: relative;
    margin-left: 0px;
    float: left;
}
.show-info-wrap .si-box:not(:first-child){
    margin-left: 25px;
}
.show-info-wrap .si-box.with-separator:not(:first-child){
    margin-left: 20px;
    padding-left: 20px;
}
.show-info-wrap .si-box.with-separator:not(:first-child)::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 1px;
    height: 18px;
    margin-top: -9px;
    background: #e5e5e5;
}
.show-info-wrap .si-box .bi{
    margin-right: 6px;
    float: left;
    font-size: 18px;
    line-height: 20px;
    height: 20px;
}
.show-info-wrap .si-box .txt{
    display: inline-block;
}
.show-info-wrap .si-box a,
.show-info-wrap a.si-box{
    text-decoration: none;
    color: #231f20;
    transition: color 0.3s ease;
}
.show-info-wrap .si-box a:focus,
.show-info-wrap .si-box a:hover,
.show-info-wrap a.si-box:focus,
.show-info-wrap a.si-box:hover{
    text-decoration: none;
    color: #daee02;
}
.show-info-wrap .si-box.category{
    font-size: 0;
    line-height: 0;
}
.show-info-wrap .si-box.category a{
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    padding: 3px 7px 3px;
    background: none;
    color: #231f20;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    border: 1px solid #231f20;
    transition: background 0.3s ease, color 0.3s ease;
}
.show-info-wrap .si-box.category a:hover,
.show-info-wrap .si-box.category a:focus{
    background: #231f20;
    color: #fff;
}
.show-info-wrap .si-box.date{}
.show-info-wrap .si-box.read{}

@media (max-width: 991px){
    .show-info-wrap .si-box{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
    .show-info-wrap .si-box:not(:first-child){
        margin-left: 18px;
    }
    .show-info-wrap .si-box.with-separator:not(:first-child){
        margin-left: 10px;
        padding-left: 10px;
    }
}
@media (max-width: 767px){
}
/*  end */


/* Load More Item */
.button-load-more-container{
    margin: 0px;
    text-align: center;
    line-height: 0;
    font-size: 18px;
}
.post-list-item-container-mb-1 .button-load-more-container{
    margin-bottom: 30px;
}
.post-list-item-container-mb-2 .button-load-more-container{
    margin-bottom: 60px;
}
.post-list-item-container-mb-3 .button-load-more-container{
    margin-bottom: 90px;
}
.button-load-more-container .pagination{
    margin: 0px;
}
.button-load-more-container .pagination>li:not(.active)>a{
    cursor: pointer;
}
.button-load-more-container .pagination>li>a,
.button-load-more-container .pagination>li>span{
    background: none;
    border: 0px;
    font-weight: 400;
    font-size: 90%;
    line-height: 30px;
    padding: 0px 12px;
    color: #171724;
}
.button-load-more-container .pagination>li > .prev{}
.button-load-more-container .pagination>li > .next{}

.button-load-more-container .pagination > li > a:hover,
.button-load-more-container .pagination > li > span:hover,
.button-load-more-container .pagination > li > a:focus,
.button-load-more-container .pagination > li > span:focus {
    color: #daee02;
    background: none;
}
.button-load-more-container .pagination > li > .inactive{
    pointer-events: none;
}
.button-load-more-container .pagination > .active > a,
.button-load-more-container .pagination > .active > span,
.button-load-more-container .pagination > .active > a:hover,
.button-load-more-container .pagination > .active > span:hover,
.button-load-more-container .pagination > .active > a:focus,
.button-load-more-container .pagination > .active > span:focus {
    color: #daee02;
    background: none;
    font-size: 120%;
    position: relative;
    z-index: 0;
}


.button-load-more-container .button{}
.button-load-more-container .loader img{
    height: 36px;
    margin: 5px 0px;
}

@media (max-width: 991px){
    .post-list-item-container-mb-1 .button-load-more-container{
        margin-bottom: 15px;
    }
    .post-list-item-container-mb-2 .button-load-more-container{
        margin-bottom: 30px;
    }
    .post-list-item-container-mb-3 .button-load-more-container{
        margin-bottom: 60px;
    }
}
/* Load More Item END */

/* show source */
.show-source-box{
    margin: 30px 0px 40px;
    overflow: hidden;
}
.show-source-box .text{
    display: inline-block;
    float: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}
.show-source-box a{
    float: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-left: 10px;
}
/* show source END */

/* SHOW TAGS */
.show-tags{
}
.show-tags:not(:last-child) {
    margin-bottom: 45px;
}
.show-tags .box{
    background: #daee02;
    color: #231f20;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.035em;
    padding: 6px 20px;
    border: 1px solid #daee02;
    border-radius: 17px;
    float: left;
    margin: 0px 15px 15px 0px;
}
.show-tags a.box{
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.show-tags a.box:hover,
.show-tags a.box:focus{
    text-decoration: none;
    background-color: #231f20;
    border-color: #231f20;
    color: #fff;
}
@media (max-width: 991px){
    .show-tags:not(:last-child) {
        margin-bottom: 15px;
    }
}
@media (max-width: 767px){
    .show-tags .box{
        font-size: 12px;
        line-height: 20px;
        padding: 6px 15px;
        margin: 0px 10px 10px 0px;
    }
}
/* SHOW TAGS END */

/* SHOW LAST MODIFICATION */
.show-last-modification{
    margin: 0px;
    font-weight: 700;
}
.show-last-modification:not(:last-child) {
    margin-bottom: 60px;
}
.show-last-modification .text{
    margin-right: 10px;
}
@media (max-width: 767px){
    .show-last-modification{
        line-height: 24px;
    }
    .show-last-modification .text{
        display: block;
        margin-right: 0px;
    }
    .show-last-modification .date{
        display: block;
    }
}
@media (max-width: 991px){
    .show-last-modification:not(:last-child) {
        margin-bottom: 30px;
    }
}
/* SHOW LAST MODIFICATION END */

/* show footer */
.show-footer{
    margin-top: 60px;
}
/* show footer end */

/* show author */
.show-author-box{
    display: inline-block;
    float: left;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #231f20;
    text-decoration: none;
}
a.show-author-box:focus,
a.show-author-box:hover{
    color: #daee02;
    text-decoration: none;
}
.show-author-box img{
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 30px;
    border-radius: 30px;
    background: #f5f5f5;
}
.show-author-box .text{
    float: left;
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}
.show-author-box .text::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 20px;
    background: #231f20;
}
.show-author-box .name{
    float: left;
    margin-top: 20px;
    margin-left: 5px;
}
@media (max-width: 767px){
    .show-author-box {
    }
    .show-author-box img {
        margin-right: 15px;
        width: 40px;
        height: 40px;
    }
    .show-author-box .text {
        padding-left: 15px;
        margin-top: 10px;
    }
    .show-author-box .name{
        margin-top: 10px;
    }
}
/* show author end */

/* show share */
.show-share-box{
    font-size: 0px;
    line-height: 0px;
    margin: 0px 0px 0px;
}
.show-footer.with-author .show-share-box{
    float: right;
    margin-left: 30px;
    margin-top: 16px;
    margin-bottom: 16px;
}
.show-share-box .text{
    display: block;
    float: left;
    font-size: 16px;
    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: #231f20;
    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: #231f20;
    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;
}
@media (max-width: 1199px){
    .anchor-container .anchor{
        top: -80px;
    }
}
/* anchor end */

/* right side */
.right-side-wrap{}
.right-side-container{}
.right-side-pack{
}
.right-side-pack:not(:last-child){
    margin: 0px 0px 50px;
}
.right-side-pack.social .icon-box{
    font-size: 0;
    line-height: 0;
}
.right-side-pack.social .icon-box .icon{
    display: inline-block;
    padding: 0px;
    text-decoration: none;
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #daee02;
    color: #231f20;
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}
.right-side-pack.social .icon-box .icon:not(:last-child) {
    margin-right: 5px;
}
.right-side-pack.social .icon-box a.icon:focus,
.right-side-pack.social .icon-box a.icon:hover{
    text-decoration: none;
    background: #231f20;
    color: #fff;
}

.right-side-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0px;
    border-bottom: 0px solid transparent;
    margin-bottom: 30px;
}
.right-side-box{
    padding: 0px;
}
.right-side-box .box{
    display: block;
    text-decoration: none;
}
.right-side-box .box:not(:last-child){
    margin-bottom: 30px;
}
.right-side-box .box .img-box{
    margin-bottom: 10px;
    border-radius: 0px;
    overflow: hidden;
}
.right-side-box .box .img-box img{
    display: block;
    width: 100%;
    max-width: 100%;
    background: #f7f7f7;
}
.right-side-box .box .name{
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: #231f20;
    transition: color 0.3s ease;
}
.right-side-box a.box:hover .name{
    color: #daee02;
    text-decoration: none;
}

.right-side-box .label-box{
    font-size: 0;
    line-height: 0;
    margin-top: -5px;
}
.right-side-box .label-box .label{
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    padding: 3px 7px 3px;
    margin-top: 5px;
    margin-right: 5px;
    border: 1px solid transparent;
    text-decoration: none;
}
.right-side-box .label-box .label.label-default{
    border: 1px solid #231f20;
    background: none;
    color: #231f20;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}
.right-side-box .label-box .label.label-default:hover,
.right-side-box .label-box .label.label-default:focus,
.right-side-box .label-box .label.label-default.active{
    background: #231f20;
    color: #fff;
    text-decoration: none;
}
.right-side-search-form{
    position: relative;
    margin-bottom: 30px;
}
.right-side-search-form .form-control{
    width: 100%;
    height: auto;
    line-height: 28px;
    padding: 15px 60px 15px 20px;
    border-radius: 0px;
}
.right-side-search-form .btn{
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border-radius: 0px;
}
.right-side-search-form .article-search-delete{
    position: absolute;
    top: 15px;
    right: 60px;
    z-index: 1;
    color: #9d9d9d;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.right-side-search-form .article-search-delete::after,
.right-side-search-form .article-search-delete::before{
    content: '';
    background: #9d9d9d;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0px 0px -8px;
}
.right-side-search-form .article-search-delete::before {
    transform: rotate(45deg);
}
.right-side-search-form .article-search-delete::after {
    transform: rotate(-45deg);
}
/* right side end */

/* submenu list */
.submenu-list{
    
}
.submenu-list .link-box{
    padding: 10px 0px 10px 40px;
    position: relative;
    margin: 0px;
    font-size: 0;
    line-height: 0;
}
.submenu-list .link-box.indent-1{
    margin-left: 50px;
}
.submenu-list .link-box.indent-2{
    margin-left: 100px;
}
.submenu-list .link-box.indent-3{
    margin-left: 150px;
}
.submenu-list .link-box .bi{
    width: 30px;
    height: 50px;
    font-size: 40px;
    line-height: 50px;
    position: absolute;
    top: 10px;
    left: 0px;
    color: #daee02;
}
.submenu-list .link-box a{
    text-decoration: none;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: #5E5C5C;
    letter-spacing: 0.02em;
    display: inline-block;
}
.submenu-list .link-box a:focus,
.submenu-list .link-box a:hover{
    text-decoration: none;
    color: #daee02;
}
@media (max-width: 991px){
    .submenu-list .link-box{
        padding-left: 30px;
    }
    .submenu-list .link-box.indent-1{
        margin-left: 40px;
    }
    .submenu-list .link-box.indent-2{
        margin-left: 80px;
    }
    .submenu-list .link-box.indent-3{
        margin-left: 120px;
    }
    .submenu-list .link-box .bi{
        width: 30px;
        height: 30px;
        font-size: 30px;
        line-height: 30px;
    }
    .submenu-list .link-box a {
        font-size: 26px;
        line-height: 30px;
    }
}
@media (max-width: 767px){
    .submenu-list .link-box {
        padding-left: 25px;
    }
    .submenu-list .link-box.indent-1{
        margin-left: 30px;
    }
    .submenu-list .link-box.indent-2{
        margin-left: 60px;
    }
    .submenu-list .link-box.indent-3{
        margin-left: 90px;
    }
    .submenu-list .link-box .bi{
        width: 24px;
        height: 24px;
        font-size: 24px;
        line-height: 24px;
    }
    .submenu-list .link-box a {
        font-size: 20px;
        line-height: 24px;
    }
}
/* submenu list end */

/* SHOW HIDDEN CONTENT */
.show-hidden-content{
    display: block;
}
.show-hidden-content::after {
    content: " ";
    display: table;
    clear: both;
}
.show-hidden-content .help-text,
.show-hidden-content a{
    display: inline-block;
    word-wrap: normal;
}
.show-hidden-content .help-text{
    float: left;
    width: 40px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.show-hidden-content .help-text::before{
    content: '';
    width: 20px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: none;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.show-hidden-content .help-button{
    cursor: pointer;
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    background-color: #daee02;
    margin-left: 10px;
}
/* SHOW HIDDEN CONTENT END */

/* SERVICE */
.service-container{}
.service-container .box{
    position: relative;
    display: block;
    text-decoration: none;
}
.service-container .box:not(:first-child){
    margin-top: 90px;
}
.service-container .img-box{
    position: relative;
}
.service-container .box.landscape .img-box{
    margin-bottom: 0px;
}
.service-container .box.portrait .img-box {
    margin-bottom: 20px;
}
.service-container .img-box img{
    width: 100%;
    max-width: 100%;
    background: #f5f5f5;
}
.service-container .txt-cont{
    
}
.service-container .txt-box{
}
.service-container .txt-box .name{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #231f20;
    margin: 0px;
    transition: color 0.3s ease;
}
.service-container a.box .txt-box:hover .name, 
.service-container a.box .txt-box:focus .name{
    color: #daee02;
}
.service-container .txt-box .intro{
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #231f20;
    margin: 15px 0px 0px;
    transition: color 0.3s ease;
}
.service-container .txt-box .btn-box{
    margin-top: 20px;
}
@media (max-width: 991px){
    .service-container .box:not(:first-child){
        margin-top: 60px;
    }
    .service-container .box.landscape .img-box {
        margin-bottom: 15px;
    }
    .service-container .box.portrait .img-box {
        margin-bottom: 15px;
    }
    .service-container .txt-box{
    }
    .service-container .txt-box .name{
        font-size: 22px;
        line-height: 30px;
    }
    .service-container .txt-box .intro{
        font-size: 14px;
        line-height: 20px;
        margin: 10px 0px 0px;
    }
    .service-container .txt-box .btn-box{
        margin-top: 15px;
    }
}
@media (max-width: 767px){
    .service-container .box:not(:first-child){
        margin-top: 30px;
    }
    .service-container .box.landscape .img-box {
        margin-bottom: 10px;
    }
    .service-container .box.portrait .img-box {
        margin-bottom: 10px;
    }
    .service-container .txt-box .name{
        font-size: 18px;
        line-height: 24px;
        word-break: break-word;
    }
    .service-container .txt-box .intro{
    }
    .service-container .txt-box .btn-box{
        margin-top: 10px;
    }
}
/* SERVICE END */

/* worker-list-item */
.worker-list-container{
    overflow: hidden;
    margin-bottom: -50px;
}
.worker-list-item {
    margin-bottom: 50px;
}
.worker-list-item .img-box {
    margin-bottom: 10px
}
.worker-list-item .img-box img {
    display: block;
    width: 100%;
    max-width: 100%;
    background: #e5e5e5;
}
.worker-list-item .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.worker-list-item .position {
    font-style: italic;
    text-transform: lowercase;
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
}
@media (max-width: 991px) {
    .worker-list-container{
        margin-bottom: -30px;
    }
    .worker-list-item {
        margin-bottom: 30px;
    }
    .worker-list-item .name {
        font-size: 15px;
        line-height: 20px;
    }
    .worker-list-item .position {
        font-size: 12px;
        line-height: 16px;
    }
}
/* worker-list-item END */

/* partner logo */
.partner-logo-container{
    font-size: 0;
    line-height: 0;
    margin: -10px 0 50px;
    text-align: center;
}
.partner-logo-container .box{
    display: inline-block;
    margin: 15px 30px;
}
.partner-logo-container .box img{
    height: 48px;
    background: none;
}
@media (max-width: 767px){
    .partner-logo-container .box{
        margin: 10px 10px;
    }
    .partner-logo-container .box img{
        height: auto;
        max-height: 25px;
    }
}
/* partner logo end */

/** CONTENT END **/