﻿
body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    position: sticky;
}

    .navbar .navbar-nav .nav-item .nav-link {
        color: rgb(255, 255, 255);
    }

        .navbar .navbar-nav .nav-item .nav-link:hover {
            color: cornflowerblue;
        }

.news {
    width: 160px;
    background-color: rgb(255, 105, 45);
}

.breaking-news {
    background-color: rgb(193, 237, 255);
}

.news-scroll a {
    text-decoration: none;
    color: rgb(255, 105, 45);
}

.dot {
    height: 6px;
    width: 6px;
    margin-left: 30px;
    margin-right: 0px;
    margin-top: 2px !important;
    background-color: white;
    border-radius: 50%;
    display: inline-block
}

.sliderSwiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 20px;
}

#hero-banner {
    width: 100%;
    padding: 10px 0;
}

    #hero-banner p {
        font-size: 20px;
    }

#news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f4f4;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 1px;
}

    #news .container {
        display: none;
        padding: 2rem;
    }


    #news .grid {
        display: grid;
        grid-gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
        grid-auto-rows: 150px;
        grid-auto-flow: row dense;
        line-height: 20px;
    }
    /* Items  */
    #news .item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: #0c9a9a;
        color: #fff;
        grid-column-start: auto;
        grid-row-start: auto;
        color: #fff;
    }

    #news .item {
        background-size: cover;
        background-position: center;
        -webkit-box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
        box-shadow: -2px 2px 10px 0px rgba(68, 68, 68, 0.4);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        cursor: pointer;
        counter-increment: item-counter;
        border-bottom: 3px solid rgb(255, 105, 45);
    }
        /* End item */
        #news .item:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: black;
            opacity: 0.5;
            -webkit-transition: opacity 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out;
        }

        #news .item:hover {
            -webkit-transform: scale(1.05);
            transform: scale(1.05);
        }

            #news .item:hover:after {
                opacity: 0;
            }

    #news .medium {
        grid-row-end: span 2;
    }

    #news .large {
        grid-row-end: span 3;
    }

    #news .full {
        grid-column-end: auto;
    }

@media screen and (min-width: 768px) {
    #news .full {
        grid-column: 1/-1;
        grid-row-end: span 2;
    }
}

#news .details {
    position: relative;
    z-index: 1;
    padding: 5px;
    background: #fff;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: darkblue;
}

    #news .details:before {
        font-weight: bold;
        font-size: 1.1rem;
        padding-right: 0.5em;
        color: darkblue;
    }

    #news .details:hover {
        color: rgb(255, 105, 45);
        text-decoration: none;
    }

#news .news-header {
    font-size: 40px;
    font-weight: bold;
    color: rgb(255, 105, 45);
    text-decoration: none;
}

    #news .news-header:hover {
        text-decoration: none;
        color: darkblue;
    }

#jayces {
    background-image: url(../../../img/jhapa-gold-cup-logo.jpg);
    background-size: 150px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    z-index: 3;
    position: relative;
}

    #jayces .container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 50px 0;
        transform-style: preserve-3d;
        z-index: 3;
    }

        #jayces .container .box {
            position: relative;
            width: 700px;
            height: 450px;
            margin: 0;
            transform-style: preserve-3d;
        }

            #jayces .container .box:hover {
                box-shadow: 0 50px 80px rgba(0, 0, 0, 0.2);
            }

            #jayces .container .box .imgBx {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            #jayces .container .box .contentBx {
                position: absolute;
                top: 80%;
                left: 50px;
                right: 50px;
                background: #0000009c;
                transform: translateZ(20px) scaleY(0);
                padding: 15px;
                transform-origin: top;
                transition: 0.5s;
                transform-style: preserve-3d;
                color: white;
            }

            #jayces .container .box:hover .contentBx {
                transform: translateZ(70px) scaleY(1);
            }

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2c3381;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: rgb(255, 105, 45);
    }

#partners .text {
    fill: none;
    stroke-width: 3;
    stroke-linejoin: round;
    stroke-dasharray: 70 330;
    stroke-dashoffset: 0;
    -webkit-animation: stroke 6s infinite linear;
    animation: stroke 6s infinite linear;
}

    #partners .text:nth-child(5n+1) {
        stroke: #F2385A;
        -webkit-animation-delay: -1.2s;
        animation-delay: -1.2s;
    }

    #partners .text:nth-child(5n+2) {
        stroke: #F5A503;
        -webkit-animation-delay: -2.4s;
        animation-delay: -2.4s;
    }

    #partners .text:nth-child(5n+3) {
        stroke: #E9F1DF;
        -webkit-animation-delay: -3.6s;
        animation-delay: -3.6s;
    }

    #partners .text:nth-child(5n+4) {
        stroke: #56D9CD;
        -webkit-animation-delay: -4.8s;
        animation-delay: -4.8s;
    }

    #partners .text:nth-child(5n+5) {
        stroke: #3AA1BF;
        -webkit-animation-delay: -6s;
        animation-delay: -6s;
    }


@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: -400;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: -400;
    }
}

#partners {
    background-color: rgb(255, 255, 255);
    font: 4em/1 'Poppins';
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 25px;
}

    #partners svg {
        position: relative;
        width: auto;
        height: auto;
    }

    #partners .logogrid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 75px;
        grid-gap: 4rem;
    }

    #partners .logogrid__item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #partners .logogrid__img {
        -o-object-fit: contain;
        object-fit: contain;
        width: 130px;
        height: 90px;
        filter: grayscale(80%) contrast(25%);
        transition: filter 0.3s ease;
    }

        #partners .logogrid__img:hover {
            filter: grayscale(0) contrast(100%);
        }

    #partners .container {
        display: flex;
        flex-direction: column;
        justify-items: center;
        min-height: 40vh;
    }

    #partners .container {
        width: 90%;
        max-width: 1000px;
        margin: auto;
    }

@media (min-width: 992px) {
    .navbar {
        height: 130px;
    }
}

@media only screen and (max-width:580px) {
    .sliderSwiper .swiper-slide img {
        width: 100%;
        height: 300px;
    }

    .jci-logo {
        margin-right: 180px;
    }

    #jayces .container .box {
        width: 400px;
        height: 220px;
    }

    #jayces .container p.h2 {
        margin-left: 20px;
    }

    #partners .container {
        margin-top: -150px;
    }

    #hero-banner .banner-para {
        padding-top: 70px;
    }
}

@supports (display: grid) {
    body,
    html {
        display: block;
    }
}

@supports (display: grid) {
    .message {
        display: none;
    }
}


@media screen and (min-width: 768px) {
    #news .container {
        padding: 4rem;
    }
}

@supports (display: grid) {
    #news .container {
        display: block;
    }
}

footer {
    /*background-image: linear-gradient(to right, rgb(193, 237, 255), white, rgb(193, 237, 255));*/
    background-image: linear-gradient(to right, #2c3381, #cf972d, #2c3381);
    padding: 30px 0;
}

    footer .footer-widget h3 {
        color: white;
    }

    footer .contact-link {
        display: inline-block;
        width: 100%;
        color: #333;
        text-decoration: none;
    }

    footer .footer-social ul {
        padding-left: 0;
    }

        footer .footer-social ul li {
            list-style: none;
            float: left;
            padding: 0 10px;
        }

            footer .footer-social ul li:first-child {
                padding-left: 0;
            }

            footer .footer-social ul li a {
                font-size: 20px;
                color: #fff;
            }

                footer .footer-social ul li a:hover {
                    color: rgb(0, 153, 255);
                }

    footer .images-gellary ul {
        padding-left: 0;
    }

    footer .quick-links li a {
        text-decoration: none;
        color: white;
    }

        footer .quick-links li a:hover {
            color: #34397e;
        }

    footer .images-gellary ul li {
        list-style: none;
        float: left;
        margin: 0 3% 2% 0;
        width: 31%;
        position: relative;
    }

        footer .images-gellary ul li:nth-child(3n) {
            margin: 0 0 1%;
        }
/*Contacts*/
/* Common for all blocks */
.btn i {
    margin-right: 5px;
}

.clean-block {
    padding-bottom: 50px;
}

    .clean-block.dark {
        background-color: #f6f6f6;
    }

    .clean-block.blue {
        background-color: #007bff;
        color: white;
    }

        .clean-block.blue input {
            border: none;
        }

    .clean-block .block-heading {
        padding-top: 50px;
        margin-bottom: 40px;
        text-align: center;
    }

        .clean-block .block-heading p {
            text-align: center;
            max-width: 420px;
            margin: auto;
            opacity: 0.7;
        }

    .clean-block.dark .block-heading p {
        opacity: 0.8;
    }

    .clean-block .block-heading h1,
    .clean-block .block-heading h2,
    .clean-block .block-heading h3 {
        margin-bottom: 1.2rem;
    }

    .clean-block .content {
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
        background-color: white;
    }

    .clean-block .block-content {
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
        background-color: white;
        padding: 40px;
    }

    /* Hero block */
    .clean-block.clean-hero {
        position: relative;
        text-align: center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
    }

        .clean-block.clean-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: currentColor;
            z-index: 1;
        }

        .clean-block.clean-hero .text {
            max-width: 640px;
            color: #fff;
            z-index: 2;
            padding: 40px 15px;
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
        }

        .clean-block.clean-hero h2 {
            margin-bottom: 30px;
        }

        .clean-block.clean-hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }

/* Features block */
.feature-box {
    padding: 15px 20px 15px 70px;
    text-align: center;
}

    .feature-box .icon {
        font-size: 30px;
        position: absolute;
        left: 15px;
        top: 15px;
        width: 30px;
        text-align: center;
        color: #17a2b8;
    }

    .feature-box h4 {
        font-weight: 600;
        font-size: 1.2rem;
    }

    .feature-box p {
        font-size: 1.2em;
        opacity: 0.8;
    }

/* Slider block */
.clean-block.slider {
    margin-left: auto;
    margin-right: auto;
}

/* About us */
.clean-card {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    border-radius: 3px;
    margin-bottom: 40px;
    border: 1px solid #eaeaea;
}

    .clean-card .image {
        border-radius: 3px 3px 0 0;
        overflow: hidden;
    }

    .clean-card .info {
        padding: 30px;
    }

    .clean-card h4 {
        font-weight: 600;
        font-size: 1em;
    }

    .clean-card p {
        opacity: 0.8;
        font-size: 0.85em;
        margin-bottom: 0.9em;
    }

    .clean-card .icons a {
        font-size: 16px;
        color: #3b99e0;
        opacity: .75;
        height: 2em;
        line-height: 2;
        text-align: center;
        padding: 0.6em 0.4em;
    }

        .clean-card .icons a:hover {
            opacity: 1;
            text-decoration: none;
        }

/* Clean info */
.clean-block.clean-info {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

    .clean-block.clean-info h3 {
        margin-top: 0.8em;
        margin-bottom: 0.6em;
    }

/* Service card */
.clean-block.clean-services .card {
    margin-bottom: 30px;
    text-align: center;
}

    .clean-block.clean-services .card h4 {
        font-weight: 600;
        font-size: 1em;
        margin-bottom: 0.8em;
    }

    .clean-block.clean-services .card p {
        font-size: 0.9em;
        opacity: 0.8;
    }

    .clean-block.clean-services .card button {
        margin-bottom: 25px;
        padding: 6px 20px;
    }

/* FAQ block */
.clean-block.clean-faq .faq-item {
    margin-bottom: 20px;
}

    .clean-block.clean-faq .faq-item .question {
        font-weight: 600;
        font-size: 1em;
        line-height: 1.5;
    }

    .clean-block.clean-faq .faq-item:not(:first-child) .question {
        margin-top: 1.8em;
    }

    .clean-block.clean-faq .faq-item .answer {
        font-size: 1em;
        color: #7f7d7d;
        margin-top: 20px;
    }

/* Forms */
.clean-block.clean-form form {
    border-top: 2px solid #5ea4f3;
    background-color: #fff;
    max-width: 500px;
    margin: auto;
    padding: 40px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

/* Gallery block */
.clean-block.clean-block.clean-gallery .item {
    margin-bottom: 20px;
}

.clean-block.clean-gallery .item .image {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.clean-block.clean-gallery .lightbox img {
    transition: 0.2s ease-in-out;
}

    .clean-block.clean-gallery .lightbox img:hover {
        transform: scale(1.05);
    }

.clean-block.clean-gallery img {
    border-radius: 4px;
}

.baguetteBox-button {
    background-color: transparent !important;
}

/* Pricing table block */
.clean-pricing-item .heading {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.clean-pricing-item {
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    border-top: 2px solid #5ea4f3;
    padding: 30px;
    overflow: hidden;
    position: relative;
}

.clean-block.clean-pricing .col-md-5:not(:last-child) .item {
    margin-bottom: 30px;
}

.clean-pricing-item button {
    font-weight: 600;
}

.clean-pricing-item .ribbon {
    width: 160px;
    height: 32px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
    background: #4dbe3b;
    transform: rotate(45deg);
    position: absolute;
    right: -42px;
    top: 20px;
    padding-top: 7px;
}

.clean-pricing-item p {
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

.clean-pricing-item .features .feature {
    font-weight: 600;
}

.clean-pricing-item .features h4 {
    text-align: center;
    font-size: 18px;
    padding: 5px;
}

.clean-pricing-item .price h4 {
    margin: 15px 0;
    font-size: 45px;
    text-align: center;
    color: #2288f9;
}

.clean-pricing-item .buy-now button {
    text-align: center;
    margin: auto;
    font-weight: 600;
    padding: 9px 0;
}

/* Payment block */
.clean-block.payment-form form {
    border-top: 2px solid #5ea4f3;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    background-color: #ffffff;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.clean-block.payment-form .title {
    font-size: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.8em;
    font-weight: 600;
    padding-bottom: 8px;
}

.clean-block.payment-form .products {
    background-color: #f7fbff;
    padding: 25px;
}

    .clean-block.payment-form .products .item {
        margin-bottom: 1em;
    }

    .clean-block.payment-form .products .item-name {
        font-weight: 600;
        font-size: 0.9em;
    }

    .clean-block.payment-form .products .item-description {
        font-size: 0.8em;
        opacity: 0.6;
    }

    .clean-block.payment-form .products .item p {
        margin-bottom: 0.2em;
    }

    .clean-block.payment-form .products .price {
        float: right;
        font-weight: 600;
        font-size: 0.9em;
    }

    .clean-block.payment-form .products .total {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding-top: 19px;
        font-weight: 600;
        line-height: 1;
    }

.clean-block.payment-form .card-details {
    padding: 25px 25px 15px;
}

    .clean-block.payment-form .card-details label {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #79818a;
        text-transform: uppercase;
    }

    .clean-block.payment-form .card-details button {
        margin-top: 0.6em;
        padding: 12px 0;
        font-weight: 600;
    }

.clean-block.payment-form .date-separator {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

/* Product Catalog */
.clean-block.clean-catalog .filters {
    padding-left: 40px;
    padding-top: 10px;
}

.clean-block.clean-catalog .filter-collapse .filter-caret {
    float: right;
    font-size: 12px;
    line-height: 26px;
}

.clean-block.clean-catalog .filter-collapse {
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 30px;
    border-radius: 0;
    text-align: left;
}

.clean-block.clean-catalog .filters h3 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.8em;
}

.clean-block.clean-catalog .filters .heading {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 20px;
}

.clean-block.clean-catalog .filters .filter-item {
    margin-bottom: 40px;
}

.clean-block.clean-catalog .filters label {
    word-wrap: break-word;
    max-width: 100%;
}

.clean-block.clean-catalog .products {
    padding: 0;
}

    .clean-block.clean-catalog .products .row:first-of-type {
        border-top: none;
        border-left: none;
        margin-bottom: 20px;
    }

.clean-product-item {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #e8e6e6;
    height: 100%;
}

    .clean-product-item .image {
        margin-bottom: 20px;
    }

        .clean-product-item .image img {
            max-width: 220px;
            max-height: 180px;
        }

    .clean-product-item .product-name {
        margin-bottom: 20px;
        text-align: center;
    }

        .clean-product-item .product-name a {
            color: #585858;
            font-size: 1.1em;
        }

            .clean-product-item .product-name a:hover {
                text-decoration: none;
                color: #8f8c8c;
            }

    .clean-product-item .about {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .clean-product-item .price {
        text-align: right;
        padding-right: 10px;
    }

        .clean-product-item .price h3 {
            font-size: 1.2em;
            font-weight: 600;
            color: #32303c;
            margin: 0;
        }

    .clean-product-item .rating {
        color: #fec000;
    }

        .clean-product-item .rating img {
            width: 14px;
            margin-right: 2px;
        }

    .clean-product-item .add .icon {
        padding-right: 10px;
    }

.clean-block.clean-catalog .products .pages {
    width: 50%;
    margin: 55px auto 0;
}

.clean-block.clean-catalog .pagination {
    justify-content: center;
}

/* Shopping Cart Block */
.clean-block.clean-cart .items {
    padding: 36px;
}

    .clean-block.clean-cart .items .product {
        padding-top: 20px;
        padding-bottom: 40px;
    }

        .clean-block.clean-cart .items .product .product-image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border: 2px solid #f0f0f0;
        }

    .clean-block.clean-cart .items .product {
        padding-top: 0px;
    }

        .clean-block.clean-cart .items .product .product-info {
            padding-top: 1em;
            padding-bottom: 1em;
        }

        .clean-block.clean-cart .items .product .product-name {
            font-weight: 600;
            font-size: 1.3em;
        }

        .clean-block.clean-cart .items .product .product-info .product-specs {
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 15px;
        }

            .clean-block.clean-cart .items .product .product-info .product-specs .value {
                font-weight: 400;
            }

        .clean-block.clean-cart .items .product .quantity .quantity-input {
            width: 68px;
        }

        .clean-block.clean-cart .items .product .quantity label {
            font-size: .9em;
        }

        .clean-block.clean-cart .items .product .price {
            font-weight: bold;
            font-size: 22px;
            text-align: right;
        }

.clean-block.clean-cart .summary {
    background-color: #f7fbff;
    height: 100%;
    padding: 30px;
}

    .clean-block.clean-cart .summary h3 {
        text-align: center;
        font-size: 1.25em;
        font-weight: 600;
        padding-top: 16px;
        padding-bottom: 28px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #1d4f88;
    }

    .clean-block.clean-cart .summary h4 {
        padding-bottom: 18px;
        margin-bottom: 0;
        background: #fff;
        padding-left: 20px;
        padding-right: 20px;
    }

        .clean-block.clean-cart .summary h4:first-of-type {
            border-top: 1px solid #86b4e8;
            padding-top: 18px;
        }

        .clean-block.clean-cart .summary h4:last-of-type {
            color: #617ef3;
            border-bottom: 1px solid #e6edf5;
        }

    .clean-block.clean-cart .summary .text {
        font-size: 0.65em;
        font-weight: 600;
    }

    .clean-block.clean-cart .summary .price {
        font-size: 0.6em;
        float: right;
        margin-top: 10px;
    }

    .clean-block.clean-cart .summary button {
        margin-top: 20px;
        font-weight: 600;
        font-size: 1em;
        padding: 10px 0;
    }

/* Product Page */
.clean-block.clean-product .block-content {
    padding: 20px;
}

.clean-block.clean-product .product-info {
    margin-bottom: 50px;
}

.clean-block.clean-product .gallery {
    padding: 20px;
    background-color: #f6f6f6;
}

.clean-block.clean-product .sp-wrap {
    background: transparent;
    border: none;
    float: none;
    max-width: 100%;
}

.clean-block.clean-product .sp-thumbs {
    margin-top: 15px;
}

    .clean-block.clean-product .sp-thumbs a:link {
        margin-right: 10px;
    }

.clean-block.clean-product .product-info .info .price {
    padding: 20px 0;
}

    .clean-block.clean-product .product-info .info .price h3 {
        font-size: 1.5em;
        font-weight: bold;
    }

.clean-block.clean-product .product-info .info .rating {
    color: #fec000;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.clean-block.clean-product .product-info .info button {
    padding: 10px 20px;
    margin-bottom: 30px;
}

    .clean-block.clean-product .product-info .info button .fa {
        margin-right: 10px;
    }

.clean-block.clean-product .product-info .info .summary {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

    .clean-block.clean-product .product-info .info .summary p {
        font-size: 0.9em;
    }

.clean-block.clean-product .product-info .description {
    max-width: 720px;
    margin: 0 auto;
}

    .clean-block.clean-product .product-info .description p {
        margin-bottom: 50px;
    }

    .clean-block.clean-product .product-info .description h4 {
        margin-top: 60px;
        margin-bottom: 20px;
    }

.clean-block.clean-product .tab-content .description {
    padding-top: 60px;
}

    .clean-block.clean-product .tab-content .description .right {
        text-align: left;
    }

.clean-block.clean-product .tab-content .specifications,
.clean-block.clean-product .tab-content .reviews {
    padding-top: 30px;
}

.clean-block.clean-product .product-info .specifications .stat {
    font-weight: bold;
}

.clean-block.clean-product .product-info .reviews .review-item {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ded7d7;
}

    .clean-block.clean-product .product-info .reviews .review-item h4 {
        font-size: 1.2em;
        font-weight: 600;
    }

    .clean-block.clean-product .product-info .reviews .review-item span {
        font-size: 0.9em;
    }

    .clean-block.clean-product .product-info .reviews .review-item p {
        margin-top: 12px;
        font-size: 0.9em;
    }

.clean-block.clean-product .clean-related-items .items {
    margin-top: 30px;
}

.clean-related-item {
    border: 1px solid #eaeaea;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .clean-related-item .related-name {
        text-align: center;
        margin-top: 16px;
    }

        .clean-related-item .related-name a {
            font-size: 1em;
            color: #212529;
        }

            .clean-related-item .related-name a:hover {
                text-decoration: none;
                color: #999ea4;
            }

        .clean-related-item .related-name .rating,
        .clean-block.clean-product .reviews .review-item .rating {
            color: #fec000;
            margin-bottom: 10px;
        }

            .clean-related-item .related-name .rating img,
            .clean-block.clean-product .reviews .review-item .rating img,
            .clean-block.clean-product .product-info .info .rating img {
                width: 18px;
                margin-right: 2px;
            }

        .clean-related-item .related-name h4 {
            font-size: 1.3em;
            font-weight: 600;
            color: #007bff;
        }

/* Blog Post List */
.clean-blog-post {
    padding-bottom: 70px;
}

    .clean-blog-post h3 {
        font-size: 1.3em;
        font-weight: 600;
        padding-top: 17px;
    }

    .clean-blog-post p {
        font-size: 0.95em;
    }

    .clean-blog-post .info {
        padding: 5px 0 12px;
        font-size: 0.9em;
    }

        .clean-blog-post .info span:not(:last-child) {
            margin-right: 7px;
        }

        .clean-blog-post .info a {
            color: inherit;
        }

/* Blog Post */
.clean-block.clean-post {
    padding-top: 100px;
}

    .clean-block.clean-post .block-content {
        padding: 0px;
    }

    .clean-block.clean-post .post-image {
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 300px;
    }

    .clean-block.clean-post .post-body {
        padding: 70px 50px;
        font-size: 0.9em;
    }

        .clean-block.clean-post .post-body h3 {
            font-weight: 600;
        }

        .clean-block.clean-post .post-body p {
            margin-bottom: 30px;
        }

        .clean-block.clean-post .post-body .post-info {
            padding: 20px 0;
        }

            .clean-block.clean-post .post-body .post-info span {
                color: #007bff;
            }

                .clean-block.clean-post .post-body .post-info span:not(:last-child) {
                    margin-right: 40px;
                }

        .clean-block.clean-post .post-body h4 {
            font-weight: 600;
            padding-top: 20px;
            padding-bottom: 20px;
        }

/* Testimonials */
.clean-testimonial-item {
    border: 1px solid #eaeaea;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
    margin-bottom: 30px;
    background-color: white;
    color: #212529;
    text-align: left;
}

    .clean-testimonial-item .card-body {
        padding: 40px;
    }

    .clean-testimonial-item h3 {
        font-size: 1.1em;
        font-weight: 600;
    }

    .clean-testimonial-item p {
        font-size: 0.9em;
    }

    .clean-testimonial-item h4 {
        font-size: 0.9em;
        color: #3b99e0;
    }

/* Blocks */
.clean-block.add-on {
    padding: 50px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    /* Call To Action */
    .clean-block.add-on.call-to-action h3 {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .clean-block.add-on.call-to-action button {
        border-radius: 20px;
    }

    /* Newsletter Sign Up */
    .clean-block.add-on.newsletter-sign-up h2 {
        padding-right: 20px;
    }

    .clean-block.add-on.newsletter-sign-up input {
        max-width: 85%;
        margin-bottom: 18px;
        margin-top: 10px;
    }

    .clean-block.add-on.newsletter-sign-up button {
        border-radius: 20px;
    }

    .clean-block.add-on.newsletter-sign-up .input-group {
        max-width: 300px;
    }

    /* Social Icons */
    .clean-block.add-on.social-icons .icons i {
        line-height: 45px;
    }

    .clean-block.add-on.social-icons .icons a {
        font-size: 24px;
        margin-right: 4px;
        color: #6aacf3;
        border: 1px solid;
        opacity: 0.75;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: inline-block;
        text-align: center;
    }

        .clean-block.add-on.social-icons .icons a:hover {
            opacity: 1;
            text-decoration: none;
        }

    .clean-block.add-on.social-icons.blue .icons a {
        color: white;
        opacity: 1;
    }

        .clean-block.add-on.social-icons.blue .icons a:hover {
            opacity: 0.8;
            text-decoration: none;
        }

    /* Sponsors Block */
    .clean-block.add-on.sponsors a img {
        max-width: 170px;
        filter: grayscale(0.8);
    }

    .clean-block.add-on.sponsors a:not(:last-child) img {
        margin-bottom: 20px;
    }

/* Media queries */
@media (max-width: 767.98px) {
    .clean-block.clean-services .row div:last-child .card {
        margin-bottom: 0;
    }
}

@media (min-width: 576px) {
    .clean-block {
        padding-bottom: 100px;
    }

        .clean-block .block-heading {
            padding-top: 80px;
        }

        .clean-block.clean-hero {
            min-height: 680px;
        }

            .clean-block.clean-hero .text {
                padding: 0px;
            }

        .clean-block.clean-block.clean-gallery .item {
            margin-bottom: 40px;
        }

        .clean-block.payment-form .title {
            font-size: 1.2em;
        }

        .clean-block.payment-form .products {
            padding: 40px;
        }

            .clean-block.payment-form .products .item-name {
                font-size: 1em;
            }

            .clean-block.payment-form .products .price {
                font-size: 1em;
            }

        .clean-block.payment-form .card-details {
            padding: 40px 40px 30px;
        }

            .clean-block.payment-form .card-details button {
                margin-top: 2em;
            }
}

@media (min-width: 768px) {
    .clean-block.clean-info.right > .container > .row {
        flex-direction: row-reverse;
    }

    .clean-block.clean-info {
        padding-left: 0px;
        padding-right: 0px;
        text-align: inherit;
    }

        .clean-block.clean-info h3 {
            margin-top: 0;
        }

    .clean-block.clean-cart .items .product {
        padding: 0;
        text-align: left;
    }

        .clean-block.clean-cart .items .product:not(:last-child) {
            padding-top: 0;
            padding-bottom: 25px;
        }

        .clean-block.clean-cart .items .product .price {
            font-weight: bold;
            font-size: 22px;
        }

        .clean-block.clean-cart .items .product .quantity {
            text-align: center;
        }

            .clean-block.clean-cart .items .product .quantity .quantity-input {
                margin: auto;
                padding-left: 15px;
                padding-right: 5px;
            }

        .clean-block.clean-cart .items .product .product-name {
            font-size: 1em;
        }

        .clean-block.clean-cart .items .product .product-info {
            padding: 0 15px 0 1.5em;
        }

    .clean-block.clean-post .post-image {
        height: 400px;
    }

    .clean-block.clean-blog-list .block-content {
        padding: 80px;
    }

    .clean-blog-post {
        padding-bottom: 70px;
    }

    .clean-block.add-on {
        flex-direction: row;
    }

        .clean-block.add-on.call-to-action h3 {
            margin-right: 20px;
            margin-bottom: 0px;
        }

        .clean-block.add-on.sponsors a:not(:last-child) img {
            margin-right: 20px;
            margin-bottom: 0px;
        }

        .clean-block.add-on.newsletter-sign-up h2 {
            margin-bottom: 0px;
        }

        .clean-block.add-on.newsletter-sign-up input {
            max-width: 200px;
            margin-bottom: 0px;
            margin-top: 0px;
            margin-right: 10px;
        }

    .clean-block.clean-catalog .filters {
        padding-top: 30px;
    }

    .clean-block.clean-catalog .products {
        padding: 30px 30px 30px 0;
    }

        .clean-block.clean-catalog .products .clean-product-item .product-name {
            text-align: left;
        }

        .clean-block.clean-catalog .products .row:first-of-type {
            border-top: 1px solid #e8e6e6;
            border-left: 1px solid #e8e6e6;
        }

        .clean-block.clean-catalog .products .clean-product-item {
            border-right: 1px solid #e8e6e6;
        }

    .clean-block.clean-product .block-content {
        padding: 40px;
    }

    .clean-block.clean-product .tab-content .description .right {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .clean-card {
        margin-bottom: 0px;
    }

    .clean-blog-post h3 {
        padding-top: 0px;
    }

    .clean-block.clean-post .post-image {
        height: 500px;
    }

    .clean-block.clean-post .post-body {
        padding: 70px 150px;
    }

    .clean-block.clean-testimonials .item {
        margin-bottom: 0px;
    }

    .clean-block.clean-post .post-body {
        padding: 70px 100px;
    }

        .clean-block.clean-post .post-body h4 {
            padding-top: 50px;
        }
}

.clean-navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.clean-navbar.fixed-top,
.clean-navbar.fixed-bottom {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.clean-navbar .navbar-nav .nav-item {
    padding-right: 2rem;
}

.clean-navbar .navbar-nav:last-child .item:last-child,
.clean-navbar .navbar-nav:last-child .item:last-child a {
    padding-right: 0;
}

.clean-navbar .logo {
    font-size: 1.5rem;
}

.clean-navbar.fixed-top + .page {
    padding-top: 62px;
}

@media (min-width: 576px) {
    .navbar {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .clean-navbar.fixed-top + .page {
        padding-top: 5rem;
    }
}

/*smooth*/
.sp-loading {
    text-align: center;
    max-width: 270px;
    padding: 15px;
    border: 5px solid #eee;
    border-radius: 3px;
    font-size: 12px;
    color: #888;
}

.sp-wrap {
    display: none;
    line-height: 0;
    font-size: 0;
    background: #eee;
    border: 5px solid #eee;
    border-radius: 3px;
    position: relative;
    margin: 0 25px 15px 0;
    float: left;
    max-width: 300px;
}

.sp-thumbs {
    text-align: left;
    display: inline-block;
}

    .sp-thumbs img {
        min-height: 50px;
        min-width: 50px;
        max-width: 50px;
    }

    .sp-thumbs a:link,
    .sp-thumbs a:visited {
        width: 50px;
        height: 50px;
        overflow: hidden;
        opacity: 0.3;
        display: inline-block;
        background-size: cover;
        background-position: center;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

    .sp-thumbs a:hover {
        opacity: 1;
    }

    .sp-thumbs a:active,
    .sp-current {
        opacity: 1 !important;
        position: relative;
    }

.sp-large {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
}

    .sp-large a img {
        max-width: 100%;
        height: auto;
    }

    .sp-large a {
        display: block;
    }

.sp-zoom {
    position: absolute;
    left: -50%;
    top: -50%;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
    display: none;
}

.sp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1031;
    display: none;
    cursor: pointer;
}

    .sp-lightbox img {
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 90%;
        max-height: 90%;
        border: 2px solid #fff;
    }

#sp-prev,
#sp-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 501;
    color: #fff;
    padding: 14px;
    text-decoration: none;
    background: #000;
    border-radius: 25px;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transition: 0.2s;
}

#sp-prev {
    left: 10px;
}

    #sp-prev:before {
        content: "";
        border: 7px solid transparent;
        border-right: 15px solid #fff;
        position: absolute;
        top: 16px;
        left: 7px;
    }

#sp-next {
    right: 10px;
}

    #sp-next:before {
        content: "";
        border: 7px solid transparent;
        border-left: 15px solid white;
        position: absolute;
        top: 16px;
        left: 18px;
    }

    #sp-prev:hover,
    #sp-next:hover {
        background: #444;
    }

@media screen and (max-width: 400px) {
    .sp-wrap {
        margin: 0 0 15px 0;
    }

    #sp-prev,
    #sp-next {
        top: auto;
        margin-top: 0;
        bottom: 25px;
    }
}
/*baguette*/
#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

    #baguetteBox-overlay.visible {
        opacity: 1;
    }

    #baguetteBox-overlay .full-image {
        display: inline-block;
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
    }

        #baguetteBox-overlay .full-image figure {
            display: inline;
            margin: 0;
            height: 100%;
        }

        #baguetteBox-overlay .full-image img {
            display: inline-block;
            width: auto;
            height: auto;
            max-height: 100%;
            max-width: 100%;
            vertical-align: middle;
            -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        }

        #baguetteBox-overlay .full-image figcaption {
            display: block;
            position: absolute;
            bottom: 0;
            width: 100%;
            text-align: center;
            line-height: 1.8;
            white-space: normal;
            color: #ccc;
            background-color: #000;
            background-color: rgba(0, 0, 0, 0.6);
            font-family: sans-serif;
        }

        #baguetteBox-overlay .full-image:before {
            content: "";
            display: inline-block;
            height: 50%;
            width: 1px;
            margin-right: -1px;
        }

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left 0.4s ease, -webkit-transform 0.4s ease;
    transition: left 0.4s ease, -webkit-transform 0.4s ease;
    transition: left 0.4s ease, transform 0.4s ease;
    transition: left 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease, -moz-transform 0.4s ease;
}

    #baguetteBox-slider.bounce-from-right {
        -webkit-animation: bounceFromRight 0.4s ease-out;
        animation: bounceFromRight 0.4s ease-out;
    }

    #baguetteBox-slider.bounce-from-left {
        -webkit-animation: bounceFromLeft 0.4s ease-out;
        animation: bounceFromLeft 0.4s ease-out;
    }

@-webkit-keyframes bounceFromRight {
    0%,
    100% {
        margin-left: 0;
    }

    50% {
        margin-left: -30px;
    }
}

@keyframes bounceFromRight {
    0%,
    100% {
        margin-left: 0;
    }

    50% {
        margin-left: -30px;
    }
}

@-webkit-keyframes bounceFromLeft {
    0%,
    100% {
        margin-left: 0;
    }

    50% {
        margin-left: 30px;
    }
}

@keyframes bounceFromLeft {
    0%,
    100% {
        margin-left: 0;
    }

    50% {
        margin-left: 30px;
    }
}

.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px;
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    -moz-border-radius: 15%;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
}

    .baguetteBox-button:focus,
    .baguetteBox-button:hover {
        background-color: rgba(50, 50, 50, 0.9);
    }

    .baguetteBox-button#next-button {
        right: 2%;
    }

    .baguetteBox-button#previous-button {
        left: 2%;
    }

    .baguetteBox-button#close-button {
        top: 20px;
        right: 2%;
        right: calc(2% + 6px);
        width: 30px;
        height: 30px;
    }

    .baguetteBox-button svg {
        position: absolute;
        left: 0;
        top: 0;
    }

.baguetteBox-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
    width: 100%;
    height: 100%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
