
/* carousel-item*/
#swiper-banner{
    height:480px;
}
#swiper-banner .swiper-slide .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

#swiper-banner .swiper-slide .content .title a{
    text-transform: capitalize;
    text-decoration: none;
}
#swiper-banner .swiper-slide .content .title a:hover,
#swiper-banner .swiper-slide .content p:hover{
    color:#ffCB05;
    text-decoration: none;
}

#swiper-banner .swiper-slide.content .context {
    font-size: 13px;
    width: 45em;
}

/* tab css*/
.nav-tabs{
    display: flex;
}
.nav-tabs .nav-item{
    flex:1;
    text-align: center;
}
.nav-tabs .nav-link{
    border:none;
    color:#1b1e21 !important;
}
.nav-tabs .nav-link.active{
    color:#1b1e21 !important;
    border-bottom:3px solid #1b1e21;
}





.category-list .list-group-item{
    border-bottom: 1px solid #eee !important;
}

.logo-box{
    width:100%;
    height:260px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("../png/logo-box.png");
    position: relative;
}
.logo-box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(243, 178, 2, .5);
}
.logo-box .circle{
    position: absolute;
    top:50%;
    left:50%;
    background-color: #fff;
    width:200px;
    height:200px;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%,-50%);
}
.logo-box .circle:before{
    position: absolute;
    content: "";
    display: block;
    width:190px;
    height:190px;
    border-radius: 50%;
    border:8px #ffCB05 solid;
    left:5px;
    top:5px;
}
.icons{
    display: flex;
}
.icons .icon-item{
    width:64px;
    height:64px;
    margin:0 3px;
    background-color: #000;
}

@media screen and (max-width: 468px) {
    #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;
    }
    .icons .icon-item{
        width:46px;
        height:46px;
        margin:0 3px;
        background-color: #000;
    }
}


