/* GenelCss */

@import url(../fancybox/jquery.fancybox.min.css);
@import url(owl.carousel.css);
@import url(owl.theme.css);
@import url(../fonticon/fontawesomeall.min.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html,
body {
    font-family: 'Roboto', sans-serif;
}

a:hover {
    text-decoration: none;
}


/* HeaderCss */

.header_top {
    background: #f8f9fa;
    text-align: center;
    position: relative;
    padding: 11px 15px;
    font-size: 12px;
}

.header_top #banner-cookie-policy a {
    color: #333;
    font-weight: 500;
}

.header_top #banner-cookie-policy a:hover {
    color: #0066b1;
}

.header_top .close-header-banner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    color: #333;
}

.header_top .close-header-banner:hover {
    color: #0066b1
}

.header_top_gizle {
    display: none;
}

.header_middle {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px;
}

.header_middle .navbar-brand {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-right: 50px;
}

.header_middle .navbar-brand img {
    /*width: 160px;*/
}

.header_middle .search {
    position: relative;
    flex: 7 1 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.header_middle .search .form-control {
    border-radius: 5px;
    padding-right: 50px;
    height: 46px;
    font-size: 15px;
}

.header_middle .search i {
    position: absolute;
    right: 20px;
}

.header_middle .links {
    flex: 1 2 auto;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.header_middle .links ul {
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.header_middle .links ul li {
    padding: 0 20px;
}

.header_middle .links ul li a {
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.header_middle .links ul li a span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    transition: width .4s cubic-bezier(.175, .885, .32, 1.15);
    background-color: #0066b1;
}

.header_middle .links ul li a:hover span::after {
    width: 100%;
}

.header_middle .links ul li a i {
    margin-right: 7px;
}

.navbar {
    background-color: rgba(251, 251, 251, 1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .nav-item {
    padding: 5px 8px
}

.navbar-nav .nav-item .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 13.5px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #0066b1;
}

.dropdown-menu {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
}

.dropdown-menu .dropdown-item {
    padding: 15px 0;
    font-size: 13px
}

.dropdown-menu .dropdown-item i {
    margin-right: 5px;
}

.dropdown-menu .dropdown-item:hover {
    color: #0066b1;
    background: none;
}


/* SliderCss */


/* MainCategoriesCss */

.maincategories {
    padding: 25px 15px;
}

.maincategories h1 {
    text-align: center;
    display: block;
    color: #989898;
    margin-bottom: 10px;
    letter-spacing: .3px;
    font-size: 14px;
    line-height: 22px;
}

.maincategories h2 {
    color: #000;
    font-size: 18px;
    text-align: center;
    display: block;
    line-height: 25px;
    margin-bottom: 25px;
}

.maincategories .categories {
    display: block;
    width: 100%;
}

.maincategories .categories .category_box {}

    .maincategories .categories .category_box figure {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

.maincategories .categories .category_box figure img {
    transition: transform .4s;
}

.maincategories .categories .category_box:hover img {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
}

    .maincategories .categories .category_box figure figcaption {
        font-size: 16px;
        line-height: 22px;
        color: #fff;
        position: absolute;
        bottom: 5px;
        font-weight: bold;
        left: 8px;
        letter-spacing: 1px;
        transition: all ease 0.3s;
    }

.maincategories .categories .category_box figure figcaption span {
    display: block;
    position: absolute;
    bottom: -50px;
    color: #989898;
}

.maincategories .categories .category_box:hover figure figcaption {
    bottom: 50px;
}

.maincategories .categories .category_box:hover figure figcaption span {
    bottom: -30px;
}


/* MainProductsTabCss */

.products_tab h1 {
    color: #000;
    font-size: 22px;
    text-align: center;
    display: block;
    line-height: 25px;
    margin-bottom: 45px;
}

.nav-tabs {
    border-bottom: none;
    display: flex;
    flex-flow: row;
    justify-content: center;
    text-align: center;
}

.nav-tabs li {
    flex: 1 1 15em;
}

    .nav-tabs li a {
        border-bottom: 2px solid transparent;
        color: #000;
        font-size: 18px;
        font-weight: bold;
        padding: 10px 19px;
        border-radius: 10px;
    }

        .nav-tabs li a:hover {
            border-bottom: 2px solid #0066b1;
            background: #0066b1;
            color: #fff;
        }

        .nav-tabs li a.active {
            border-bottom: 2px solid #0066b1;
            background: #0066b1;
            color: #fff;
        }

.tab-content {
    padding: 25px 0;
    overflow: hidden;
}

.tab-content .tab-pane {}

.product_box {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.product_box span {
    display: block;
    margin-bottom: 6px;
    text-align: center;
}

.product_box span.brand_name {
    font-size: 14px;
    line-height: 22px;
    color: #777;
}

.product_box span.product_name {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-weight: 500;
}

.product_box span.stok {
    font-size: 14px;
    color: green;
}

.product_box figure {
    position: relative;
}

.product_box figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.product_box figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.all_product {
    text-align: center;
    color: #000;
    font-size: 12px;
    padding: 4px 6px;
    border: 1px solid #ddd;
    display: block;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all ease 0.3s;
}

.all_product:hover {
    background: #0066b1;
    color: #fff;
}


/* FooterCss */

footer .e-bulten {
    padding-top: 5vh !important;
    padding-bottom: 5vh !important;
    background: #fbfbfb url(../../images/bulten_bg.svg) !important;
    background-position: right bottom!important;
    background-repeat: no-repeat !important;
    margin-top: 4vh;
}

footer .e-bulten span {
    display: block;
}

footer .e-bulten span.head {
    color: #0066b1;
    font-size: 14px;
    margin-bottom: 1vh;
}

footer .e-bulten span.text {
    font-size: 15px;
    color: #000;
    font-weight: bold;
    border-bottom: 2px solid rgba(119, 119, 119, .17);
    padding-bottom: 1vh;
    position: relative;
}

footer .e-bulten span.text::after {
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background: #0066b1;
    position: absolute;
    bottom: -2px;
    left: 35%;
}

footer .e-bulten span.sub_text {
    font-size: 14px;
    margin-top: 1vh;
}

footer .e-bulten .bulten_area {
    position: relative;
    margin-top: 1vh !important;
}

footer .e-bulten .bulten_area .submit_btn {
    background: #0066b1;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: all ease 0.3s;
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 19px;
}

footer .e-bulten .bulten_area .submit_btn:hover {
    background: #000;
}

footer .references {
    padding-top: 5vh !important;
    padding-bottom: 5vh !important;
    background: #fff;
    overflow:hidden;
}

footer .references h3 {
    text-align: center;
}

footer .footmenu {
    padding-top: 5vh !important;
    background: #fbfbfb;
    overflow: hidden;
}

footer .footmenu span {
    display: block;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

footer .footmenu a {
    display: block;
    color: #000;
    font-size: 14px;
    margin-bottom: 5px;
    transition: all ease 0.3s;
}

footer .footmenu .social a {
    float: left;
    background: #0066b1;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
}

footer .footmenu a:hover {
    text-decoration: underline;
}

footer .footmenu .social a:hover {
    background: #000;
}

footer .copy {
    padding-top: 1vh !important;
    background: #fbfbfb;
    overflow: hidden;
    border-top: 1px solid #ccc;
    font-size: 12px;
}


/* PageCss */

.page {
    padding: 35px 15px;
}

.breadcrumb {
    overflow: hidden;
    display: block;
    margin-bottom: 15px;
    background: none;
}

.breadcrumb a {
    float: left;
    color: #777;
    font-size: 14px;
    padding-top: 5px;
    padding-left: 0;
    padding-right: 20px;
    padding-bottom: 5px;
    position: relative;
    transition: all ease 0.2s;
}

.breadcrumb a:last-child {
    color: #000;
}

.breadcrumb a::after {
    content: '/';
    position: absolute;
    right: 8px;
}

.breadcrumb a:last-child::after {
    display: none;
}

.breadcrumb a:hover {
    color: #000;
}


/* LeftMenuCss */

.left_menu span {
    color: #2d2a2a;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.left_menu .left_list a {
    display: block;
    position: relative;
    padding: 8px 0;
    position: relative;
    font-size: 14px;
    color: #333;
}

.left_menu .left_list a:hover {
    color: #0066b1;
}

.left_menu .left_list a span {
    position: absolute;
    right: 0;
    padding-right: 5px;
    padding-left: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid rgba(129, 129, 129, .2);
    border-radius: 35px;
    color: #777;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
    top: 7px;
}

.left_menu .left_list a:hover span {
    background-color: #0066b1;
    border-color: #0066b1;
    color: #fff
}


/* DetailPageCss */

.product_detail {
    padding: 35px 15px;
}

.product_detail #thumbcarousel {
    margin: 35px 0 0 0;
    padding: 0 45px;
    position: relative;
    width: 100%;
}

.product_detail #thumbcarousel .carousel-item {
    text-align: center;
}

.product_detail #thumbcarousel .carousel-item .thumb {
    width: 28%;
    margin: 0 2%;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    max-width: 33%;
    border-radius: 6px;
    padding: 6px 0;
}

#carousel .carousel-control-next-icon {
    background: url(../../images/icon/right.png);
    width: 20px;
    height: 37px;
}

#carousel .carousel-control-prev-icon {
    background: url(../../images/icon/left.png);
    width: 20px;
    height: 37px;
}

.product_info h1 {
    font-size: 23px;
    color: #333;
    margin-bottom: 25px;
}

.product_info p {
    font-size: 14px;
    color: #777;
}

.product_info p.stok {
    color: green;
}

.product_info p strong {
    color: #000;
}

.product_infos {
    overflow: hidden;
    display: block;
}

.product_detail_tab {
    overflow: hidden;
    display: block;
    padding: 1vh 0;
    margin-top: 25px;
}

.submit {
    background: #0066b1;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: all ease 0.3s;
    padding: 6px 19px;
}

.down {
    padding: 25px 15px;
}

.down img {
    display: block;
}

.down span {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 15px 0;
    display: block;
}

.down p {
    font-size: 14px;
    color: #777;
}

.down a {
    color: #0066b1;
    transition: all ease 0.3s;
    position: relative;
    padding-bottom: 10px;
}

.down a::after {
    content: '';
    background: #0066b1;
    width: 200%;
    position: absolute;
    bottom: 0;
    left: -16px;
    height: 2px;
}

.down a:hover {
    color: #000;
}

.down a:hover::after {
    background: #000;
}


/* ModalContact:Css */

.modal-footer {
    display: block;
}

.product_box {
    min-height: 300px;
}
.contact-field {
    margin-bottom: 20px;
}
.contact-field input {
    width: 100%;
    border: none;
    background: #fff;
    padding: 14px 20px;
    transition: .3s;
    border: 1px solid #acacac;
    border-radius: 0;
}
    .contact-field textarea {
        width: 100%;
        border: none;
        background: #fff;
        padding: 14px 20px;
        transition: .3s;
        border: 1px solid #acacac;
        height: 100px;
        border-radius: 0;
    }
.parallax {
    background-image: url("../../images/parallax.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
    padding:5% 0;
}
    .parallax span {
        font-weight: bold;
        font-size: 36px;
        display: block;
        margin-bottom: 15px;
    }
    .parallax p {
        font-size: 17px;
        letter-spacing: 0.3px;
    }
.contact-box {
    text-align: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 2px;
    -webkit-box-shadow: 0 20px 80px rgb(0 0 0 / 12%);
    box-shadow: 0 20px 80px rgb(0 0 0 / 12%);
    -webkit-transition-duration: .3s;
    margin: 10px 0px 10px 0px;
    padding: 20px 0px 20px 0px;
    min-height: 200px;
}
    .contact-box i {
        color: #0066b1;
        font-size: 35px;
        margin: 10px 0px 20px 0px;
    }
    .contact-box h4 {
        color: #111;
        font-size: 18px;
        font-weight: 500;
        margin: 0px 0px 5px 0px;
    }
    .contact-box span {
        color: #999;
        font-size: 14px;
        margin: 20px;
    }

.img-gradient {
    background: linear-gradient( -45deg, #000, #000, #1065ca, #1065ca);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    position: absolute;
    left: 15px;
    top: 0;
    width: 96%;
    height: 100%;
    display: block;
    opacity: 0.3;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.main_h4_head {
    color: #005da1;
    font-weight: bolder;
    margin-bottom: 25px;
    font-size: 22px;
}
.social ul {
    display: block;
    float: left;
    list-style: none;
    padding:0;
    margin-top:15px;
}
.social ul li{
    margin-bottom:10px;
}
    .social ul li a {
        margin: 0 !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        text-align: left !important;
        float: none !important;
        color: #000 !important;
        border-radius: 0 !important;
        line-height: inherit !important;
        display: inline-block;
    }