body{
    overflow-x: hidden;
    background-color: #f2f2f2;
}

a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

/* top bar css */
header .top-bar {
    width: 100vw;
    height: 100px;
    /* background: rgba(243, 178, 2, .5);*/
	 background: rgb(213 178 0);
    position: relative;
}

header .top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /* background-image: url("../images/shutterstock_459168040.jpeg");*/
}

/* logo css */
header .top-bar .logo {
    position: absolute;
    top: 10px;
}

header .top-bar .logo > img {
    width: 260px;
    height: auto;
}

/* search css */
header .navbar .search {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("../png/search.png");
    position: relative;
}
header .navbar .search:hover{
    background-image: url("../png/search-hover.png");
}
header .navbar .search.close{
    background-image: url("../png/close.png");
}

header .search-form{
    display: none;
    padding: 10px;
    position: absolute;
    top: 145px;
    right: 45px;
    z-index: 9999;
    background: #000;
}
header .search-form.show{
    display: flex;
}

header .search-form input {
    border: none;
    color: #1b1e21;
    font-size: 16px;
    outline: none;
}

header .search-form button {
    border: none;
    width:55px;
    height:35px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #ffCB05;
    background-size: 25px 25px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../png/search.png");
}

/* navbar css */
header .navbar {
    padding:0;
    background-color: #1d1c17 !important;
}

header .navbar .nav-item{
    margin-right:10px;
}
header .navbar .nav-item.active{
    background: rgba(253,208,0,.3);
}

header .navbar .nav-link {
    color: #fff !important;
}

header .navbar .nav-link:hover {
    color: #ffCB05 !important;
}

header .navbar .dropdown-menu {
    top:auto !important;
    background-color: #1d1c17 !important;
}
header .navbar .nav-item:hover .dropdown-menu{
    display: block !important;
}

header .navbar .dropdown-item {
    color: #fff !important;
    cursor: pointer;
}

header .navbar .dropdown-item:hover {
    color: #ffCB05 !important;
    background-color: transparent !important;
}


main > section {
    margin: 30px 0;
}

/* page */
.wp-pagenavi{
    width:100%;
    text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
    margin:0 5px;
    text-align: center;
    width:35px;
    height:35px;
    border: 1px solid #dee2e6;
    justify-content: center;
    align-items: center;
    display: inline-block;
    color:#000;
    line-height: 35px;
    background-color: #e2e2e2;
}
.wp-pagenavi span{
    border:none;
    color:#fff;
    background:#000 !important;
}
.wp-pagenavi a:hover{
    color:#ffCB05 !important;
    background:#000 !important;
    border:none;
}


/* breadcrumb css */
.breadcrumb {
    padding-left: 0;
    background-color: transparent;
}
.breadcrumb-item{
    color:#1b1e21;
}
.breadcrumb-item a{
    color:#1b1e21;
    text-decoration: none;
}
.breadcrumb-item a:hover{
    text-decoration: none;
}

/* image item */
.image-item .content{
    position: absolute;
    width: calc(100% - 30px);
    left:15px;
    padding-top: 20px;
    bottom:0;
    background:rgba(0,0,0,.5);
}
.image-item-height{
    height: 260px;
}
.image-item .content h3{
    font-size:24px;
}

/* list css */
.list-group-item{
    padding: 10px !important;
    border:none !important;
    display: flex;
}

.list-group-item.first-item{
    padding: 0 !important;
}
.list-group-item .img{
    flex:1;
	display:flex;
	align-content:center;
	justify-content:center;
}
.list-group-item .img>img{
    width:100%;
/*     height:100%; */
}
.list-group-item .content{
    flex:3;
    margin-left:20px;
}
.list-group-item .content a{
    color:#121416;
    cursor: pointer;
}
.list-group-item .content a:hover {
    color:#ffCB05;
    text-decoration: none;
}

#category .list-group-item{
    cursor:pointer;
    border-bottom:1px solid #eee !important;
}
#category .list-group-item a{
    color:#121416;
    text-decoration: none;
}
#category .list-group-item:hover {
    text-decoration: none;
    margin-bottom: 5px;
    box-shadow: 1px 3px 2px #bbb;
}
#category .list-group-item a:hover{
    color:#ffCB05;
}

/* tip-btn */
.tip-btn{
    cursor:pointer;
    padding:8px 10px;
    color:#fff;
    font-size:12px;
    margin-right:5px;
    background:#1d1c17;
    display: inline-block;
}
.tip-btn a{
    color:#fff !important;
    text-decoration: none !important;
}
.tip-btn a:hover{
    color:#ffCB05 !important;
    text-decoration: none !important;
}
.tip-btn:hover{
    color:#ffCB05;
}
.tip-btn.sim{
    padding:2px 1px;
    font-size:10px;
}

/* title */
.title{
    cursor:pointer;
    margin-bottom: 30px;
}
.title a{
    color:#1b1e21;
    text-decoration: none;
}
.title a:hover{
    color:#ffCB05;
}

/* footer css */
footer{
    margin-top: 60px;
    padding-top:60px;
    background:#fff;
    padding-bottom:80px;
}
footer .experience{
    background-repeat: no-repeat;
    padding-left:30px;
    background-image: url("../%c3%a5%c2%9b%c2%be%c3%a5%c2%b1%c2%82%20279.html");
}
footer .links{
    margin-top:30px;
}
footer .links .link-item{
    width:120px;
    height:30px;
    margin:0 5px;
    background-color: #000;
}
footer .language{
    width: 90%;
    margin-left:5%;
    flex-wrap: wrap;
    justify-content: center;
}
footer .language li{
    list-style: none;
    padding-right:20px;
    margin-left:20px;
    margin-bottom: 5px;
    border-right:1px solid #bbb;
}
footer .language li:first-child{
    margin-left: 0;
}
footer .language li:last-child{
    border-right: none;
    padding-right: 0;
}
footer .language li a{
    color:#bbb;
    text-decoration: none;
}
footer .language li a:hover{
    text-decoration: none;
}
footer .universal{
    color:#bbb;
}

.com-a{
    color:#fff;
    text-decoration: none;
}
.com-a:hover{
    color:#ffCB05;
    text-decoration: none;
}

.item-a{
    color:#121416;
    text-decoration: none;
}
.item-a:hover{
    color:#ffCB05;
    text-decoration: none;
}

.icons .addtoany_list{
    padding-bottom: 0;
}
.icons .addtoany_list a{
    width:30px;
    height:30px;
}
.addtoany_list{
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}
.addtoany_list a{
    display: inline-block;
    width:40px;
    height:40px;
    margin:0 5px;
}
.a2a_button_facebook{
    background-color: #3c508d;
    background-image: url("../svg/facebook.svg");
}
.a2a_button_twitter{
    background-color: #51a2e9;
    background-image: url("../svg/twitter.svg");
}
.a2a_button_whatsapp{
    background-color: #4e941d;
    background-image: url("../svg/whatsapp.svg");
}
.a2a_button_reddit{
    background-color: #de4017;
    background-image: url("../svg/reddit.svg");
}
.a2a_button_linkedin{
    background-color: #3468a6;
    background-image: url("../svg/linkedin.svg");
}
.a2a_button_pinterest{
    background-color: #c31425;
    background-image: url("../svg/pinterest.svg");
}
.a2a_button_facebook_messenger{
    background-color: #5d4ffb;
    background-image: url("../svg/facebook_messenger.svg");
}
.a2a_button_flipboard{
    background-color: #aa1211;
    background-image: url("../svg/flipboard.svg");
}

.tag-a{
    color:#fff;
}
.tag-a:hover{
    color:#fff;
}

@media screen and (max-width: 1400px) {

    .tip-btn{
        padding:4px 3px;
    }
    .com-a{
        font-size:16px;
    }

    .image-item-height{
        height: 160px;
    }
}

@media screen and (max-width: 468px){

    .swiper .image-item .content{
        width:100%;
        left:0;
    }

    header .navbar .nav-item .dropdown-toggle::after{
        position: absolute;
        right: 5px;
        top: 15px;
    }

    header .search-form {
        top:57px;
        right:0;
        width:100vw;
    }
    header .search-form input{
        width:90%;
    }
    .title{
        font-size:22px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    #navbarSupportedContent{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.3);
        z-index: 999;
    }
    #navbarSupportedContent .close{
        color: #fff;
        position: absolute;
        top: 20px;
        font-size: 2em;
        z-index: 999;
        right: 25%;
        outline: none;
    }

    #swiper-banner{
        height:260px;
    }
    #swiper-banner .swiper-slide .content h3 {
        font-size: 18px;
    }
    #swiper-banner .swiper-slide .content .context{
        width:auto;
        font-size:10px;
        margin-bottom: 0 !important;
    }

    #navbarSupportedContent .nav-link{
        width:160px;
    }

    .navbar-dark .navbar-toggler{
        color:#fff !important;
        border-color:transparent;
    }
    .navbar-toggler-icon{
        width:35px;
        height:30px;
        display: inline-block;
        background-image: url("../png/menu.png");
    }
    .navbar-nav{
        width: 80%;
        height:100%;
        padding-top:70px;
        background-color: #1b1e21;
    }
    .nav-logo{
        width:120px !important;
    }
    .nav-logo .hover-logo{
        display: none;
    }
    .nav-logo:hover .logo{
        display: none;
    }
    .nav-logo:hover .hover-logo{
        display: block;
    }
    .nav-item{
        padding-left: 15px;
        border-bottom: 1px solid #333;
    }
    header .navbar .dropdown-menu{
        margin-left:-25px;
        background-color:#000 !important;
    }

    .icons .addtoany_list a{
        width:25px;
        height:25px;
    }

    .swiper .image-item .content h3{
        font-size:20px;
    }
    .image-item .content h3{
        font-size:22px;
    }

    footer{
        padding-top:10px;
        padding-bottom: 10px;
    }
    footer .language{
        width:100%;
        margin-left: 0;
        padding-left:0 !important;
    }
    footer .language li{
        margin-right: 5px;
        margin-left: 0;
        padding-right:5px !important;
    }
    footer .language li a{
        font-size:14px;
    }
    footer .copyright{
        font-size:10px;
    }
}
.footer {
    width: 100%;
    background-color: #f9f9f9;
}

.footer-inner {
    padding: 20px 0 50px;
    text-align: center;
}

.footer-icon {
    display: inline-block;
    height: 41px;
}
.footer-inner li{background: url(../png/banklog3b8f.png) no-repeat;display: inline-block;height: 31px;margin: 0 7px;vertical-align: middle;}
.footer-inner .master {background-position: -281px -13px;width: 40px;}
.footer-inner .visa {background-position: -330px -13px;width: 52px;}
.footer-inner .ae {background-position: -391px -13px;width: 45px;}
.footer-inner .mb {background-position: -75px -14px;width: 26px;}
.footer-inner .hipercard {background-position: -113px -14px;width: 70px;}
.footer-inner .elo {background-position: -194px -14px;width: 76px;}
.footer-inner .boleto {background-position: -17px -14px;width: 47px}
.footer-inner .oxxo {background-position: -343px -54px;width: 55px;}
.footer-inner .bancontact {background-position: -555px -55px;width: 52px;}
.footer-inner .ebanx {background-position: -408px -54px;width: 77px;}
.footer-inner .spe {background-position: -495px -54px;width: 51px;}
.footer-inner .webmoney {background-position: -619px -55px;width: 125px;}
.footer-inner .qiwi {background-position: -755px -55px;width: 69px;}
.footer-inner .mnp {background-position: -835px -55px;width: 57px;}
.footer-inner .bc {background-position: -17px -97px;width: 51px;}
.footer-inner .ysk {background-position: -70px -97px;width: 79px;}
.footer-inner .maestro {background-position: -157px -98px;width: 50px;}
.footer-inner .peal {background-position: -547px -13px;width: 36px;}
.footer-inner .sofort {background-position: -100px -52px;  width: 54px;  height: 36px;}
.footer-inner .discover {  background-position: -446px -13px;  width: 91px;}
.footer-inner .sepa {  background-position: -162px -54px;  width: 70px;}
.footer-inner .giropay{  background-position: -17px -54px;  width: 73px;}
.footer-inner .trustly{  background-position: -240px -54px;  width: 92px;}
.footer-inner .western {  background-position: -127px -87px;  width: 84px}
.footer-inner .ver {  background-position: -593px -13px;  height: 32px;  width: 73px;}
.footer-inner .ver a {  display: block;  height: 41px;  width: 73px}
.footer-inner .pci {  background-position: -674px -13px;  height: 32px;  width: 106px;}
.footer-inner .pci a {  display: block;  height: 41px;  width: 75px}
.footer-inner .square {  background-position: -787px -13px;  width: 60px;  height: 26px;}
.footer-inner .square a {  display: block;  width: 52px;  height: 26px}
.footer-inner .bamart {  background-position: -61px -162px;  width: 83px}
.footer-inner .easylisting {  background-position: 0 -553px;  width: 135px}
.footer-inner .sqcialshops {  background-position: 0 -585px;  width: 146px}
.footer-inner .sqcialshops a {  width: 146px;  display: block;  height: 31px}
.foot-website .foot-icon  .bank,.foot-website .foot-icon .master2,.foot-website .foot-icon .unionpay,.foot-website .foot-icon .eps,.footer-inner  .bank,.footer-inner .master2,.footer-inner .unionpay,.footer-inner .eps{background:url(../png/head-footfb1d.png) no-repeat;display:inline-block;height:31px;margin:0 7px; vertical-align: middle;}
.foot-website .foot-icon  .bank{background-position:-75px -87px;width:51px}
.foot-website .foot-icon .master2 {background-position: -122px -54px; width: 31px}
.foot-website .foot-icon .unionpay{width:48px;height:31px;background-position:0 -651px}
.foot-website .foot-icon .eps {background-position: 0 -355px;width: 71px}
.foot-website .foot-icon .shopify {  background-position: 0 -420px;  width: 81px;  height: 26px}
.foot-website .foot-icon .shopify a {  display: block;  width: 81px;  height: 26px}
.footer-inner .shopify {  background-position: 0 -420px;  width: 81px;  height: 26px}
.footer-inner .shopify a {  display: block;  width: 81px;  height: 26px}
.footer-inner .unionpay {width: 48px;height: 31px;background-position: 0 -651px}
.footer-inner .eps {background-position: 0 -355px;width: 71px}
.footer-inner .bank {  background-position: -75px -87px;  width: 51px}
.footer-inner .master2 {background-position: -122px -54px; width: 31px}


.footer-site {
    margin-top: 10px;
    color: #ddd;
}

.footer-site a {
    padding: 0 5px;
    color: #333;
}

.footer-site a:hover {
    color: #e71;
}

.footer-copyright {
    margin-top: 7px;
    color: #999;
}



.foot-website{padding-top:15px;padding-bottom:15px;border-top:solid 1px #e9e9e9}
.foot-ques{padding-left:25px;height:20px;line-height:20px;background:url(../png/head-footdef4.png) no-repeat -205px -213px}
.foot-ques a{color:#36c}
.foot-icon{margin-top:40px;text-align:center}
.foot-icon ul{display:inline-block;height:41px}
.foot-icon li {background: url(../png/banklog3b8f.png) no-repeat;display: inline-block;height: 31px;margin: 0 7px;vertical-align: middle;}
.foot-icon .master {background-position: -281px -13px;width: 40px;}
.foot-icon .visa {background-position: -330px -13px;width: 52px;}
.foot-icon .ae {background-position: -391px -13px;width: 45px;}
.foot-icon .mb {background-position: -75px -14px;width: 26px;}
.foot-icon .hipercard {background-position: -113px -14px;width: 70px;}
.foot-icon .elo {background-position: -194px -14px;width: 76px;}
.foot-icon .boleto {background-position: -17px -14px;width: 47px}
.foot-icon .oxxo {background-position: -343px -54px;width: 55px;}
.foot-icon .bancontact {background-position: -555px -55px;width: 52px;}
.foot-icon .ebanx {background-position: -408px -54px;width: 77px;}
.foot-icon .spe {background-position: -495px -54px;width: 51px;}
.foot-icon .webmoney {background-position: -619px -55px;width: 125px;}
.foot-icon .qiwi {background-position: -755px -55px;width: 69px;}
.foot-icon .mnp {background-position: -835px -55px;width: 57px;}
.foot-icon .bc {background-position: -17px -97px;width: 51px;}
.foot-icon .ysk {background-position: -70px -97px;width: 79px;}
.foot-icon .unionpay {width: 48px;height: 31px;background-position: 0 -651px}
.foot-icon .maestro {background-position: -157px -98px;width: 50px;}
.foot-icon .master2 {background-position: -122px -54px; width: 31px}
.foot-icon .peal {background-position: -547px -13px;width: 36px;}
.foot-icon .eps {background-position: 0 -355px;width: 71px}
.foot-icon .sofort {background-position: -100px -52px;  width: 54px;  height: 36px;}
.foot-icon .discover {  background-position: -446px -13px;  width: 91px;}
.foot-icon .sepa {  background-position: -162px -54px;  width: 70px;}
.foot-icon .giropay{  background-position: -17px -54px;  width: 73px;}
.foot-icon .trustly{  background-position: -240px -54px;  width: 92px;}
.foot-icon .western {  background-position: -127px -87px;  width: 84px}
.foot-icon .bank {  background-position: -75px -87px;  width: 51px}
.foot-icon .ver {  background-position: -593px -13px;  height: 32px;  width: 73px;}
.foot-icon .ver a {  display: block;  height: 41px;  width: 73px}
.foot-icon .pci {  background-position: -674px -13px;  height: 32px;  width: 106px;}
.foot-icon .pci a {  display: block;  height: 41px;  width: 75px}
.foot-icon .shopify {  background-position: 0 -420px;  width: 81px;  height: 26px}
.foot-icon .shopify a {  display: block;  width: 81px;  height: 26px}
.foot-icon .square {  background-position: -787px -13px;  width: 60px;  height: 26px;}
.foot-icon .square a {  display: block;  width: 52px;  height: 26px}
.foot-icon .bamart {  background-position: -61px -162px;  width: 83px}
.foot-icon .easylisting {  background-position: 0 -553px;  width: 135px}
.foot-icon .sqcialshops {  background-position: 0 -585px;  width: 146px}
.foot-icon .sqcialshops a {  width: 146px;  display: block;  height: 31px}
.foot-icon .novoshops {  background-position: -80px -726px;  width: 55px}
.foot-icon .novoshops a {  width: 55px;  display: block;  height: 31px}
.foot-icon .dho2o {  background-position: 0 -616px;  width: 84px}
.foot-icon .dho2o a {  width: 84px;  height: 30px;  display: block}
.foot-icon .import {  background-position: 0 -680px;  width: 102px}
.foot-icon .import a {  width: 102px;  height: 24px;  display: block}
.foot-icon .bamart a,
.foot-icon .easylisting a {  display: block;  height: 31px}
.foot-icon .bamart a,.foot-icon .easylisting a{display:block;height:31px}
.foot-site{margin-top:15px;text-align:center;color:#ddd}
.foot-site a{padding:0 5px;color:#666;}
.foot-copyright{margin-top:10px;text-align:center;color:#999}
.foot-website a{text-decoration: none;}

.foot-website{padding-top:15px;padding-bottom:15px;border-top:solid 1px #e9e9e9;font: 12px/1.5 'ns-r';}
.foot-ques{padding-left:25px;height:20px;line-height:20px;background:url(../png/head-footdef4.png) no-repeat -205px -213px}
.foot-ques a{color:#36c}
.foot-icon{margin-top:40px;text-align:center}
.foot-icon ul{display:inline-block;height:41px}
.foot-icon li {background: url(../png/banklog3b8f.png) no-repeat;display: inline-block;height: 31px;margin: 0 7px;vertical-align: middle;}
.foot-icon .master {background-position: -281px -13px;width: 40px;}
.foot-icon .visa {background-position: -330px -13px;width: 52px;}
.foot-icon .ae {background-position: -391px -13px;width: 45px;}
.foot-icon .mb {background-position: -75px -14px;width: 26px;}
.foot-icon .hipercard {background-position: -113px -14px;width: 70px;}
.foot-icon .elo {background-position: -194px -14px;width: 76px;}
.foot-icon .boleto {background-position: -17px -14px;width: 47px}
.foot-icon .oxxo {background-position: -343px -54px;width: 55px;}
.foot-icon .bancontact {background-position: -555px -55px;width: 52px;}
.foot-icon .ebanx {background-position: -408px -54px;width: 77px;}
.foot-icon .spe {background-position: -495px -54px;width: 51px;}
.foot-icon .webmoney {background-position: -619px -55px;width: 125px;}
.foot-icon .qiwi {background-position: -755px -55px;width: 69px;}
.foot-icon .mnp {background-position: -835px -55px;width: 57px;}
.foot-icon .bc {background-position: -17px -97px;width: 51px;}
.foot-icon .ysk {background-position: -70px -97px;width: 79px;}
.foot-icon .unionpay {width: 48px;height: 31px;background-position: 0 -651px}
.foot-icon .maestro {background-position: -157px -98px;width: 50px;}
.foot-icon .master2 {background-position: -122px -54px; width: 31px}
.foot-icon .peal {background-position: -547px -13px;width: 36px;}
.foot-icon .eps {background-position: 0 -355px;width: 71px}
.foot-icon .sofort {background-position: -100px -52px;  width: 54px;  height: 36px;}
.foot-icon .discover {  background-position: -446px -13px;  width: 91px;}
.foot-icon .sepa {  background-position: -162px -54px;  width: 70px;}
.foot-icon .giropay{  background-position: -17px -54px;  width: 73px;}
.foot-icon .trustly{  background-position: -240px -54px;  width: 92px;}
.foot-icon .western {  background-position: -127px -87px;  width: 84px}
.foot-icon .bank {  background-position: -75px -87px;  width: 51px}
.foot-icon .ver {  background-position: -593px -13px;  height: 32px;  width: 73px;}
.foot-icon .ver a {  display: block;  height: 41px;  width: 73px}
.foot-icon .pci {  background-position: -674px -13px;  height: 32px;  width: 106px;}
.foot-icon .pci a {  display: block;  height: 41px;  width: 75px}
.foot-icon .shopify {  background-position: 0 -420px;  width: 81px;  height: 26px}
.foot-icon .shopify a {  display: block;  width: 81px;  height: 26px}
.foot-icon .square {  background-position: -787px -13px;  width: 60px;  height: 26px;}
.foot-icon .square a {  display: block;  width: 52px;  height: 26px}
.foot-icon .bamart {  background-position: -61px -162px;  width: 83px}
.foot-icon .easylisting {  background-position: 0 -553px;  width: 135px}
.foot-icon .sqcialshops {  background-position: 0 -585px;  width: 146px}
.foot-icon .sqcialshops a {  width: 146px;  display: block;  height: 31px}
.foot-icon .novoshops {  background-position: -80px -726px;  width: 55px}
.foot-icon .novoshops a {  width: 55px;  display: block;  height: 31px}
.foot-icon .dho2o {  background-position: 0 -616px;  width: 84px}
.foot-icon .dho2o a {  width: 84px;  height: 30px;  display: block}
.foot-icon .import {  background-position: 0 -680px;  width: 102px}
.foot-icon .import a {  width: 102px;  height: 24px;  display: block}
.foot-icon .bamart a,
.foot-icon .easylisting a {  display: block;  height: 31px}
.foot-icon .bamart a,.foot-icon .easylisting a{display:block;height:31px}
.foot-site{margin-top:15px;text-align:center;color:#ddd}
.foot-site a{padding:0 5px;color:#666}
.foot-copyright{margin-top:10px;text-align:center;color:#999}