@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700&display=swap');
/*font-family: 'Poppins', sans-serif;*/

body {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#wrapper {
    width: 100%;
    height: auto;
    margin: 0px auto;
    padding: 0px;
    overflow: hidden;
}

.container {
    max-width: 1400px;
}

ul {
    padding: 0px;
    margin: 0px;
}

ul li {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #03a9f4;
    text-decoration: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    right: 0px;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.heading {
    margin: 0% auto;
    text-align: center;
}

.heading h1 {
    margin: 0;
    padding: 0;
    color: #000;
    line-height: normal;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.heading h1 span {
    position: relative;
    display: flex;
    align-items: center;
}

.heading h1 span:before,
.heading h1 span:after {
    content: '';
    display: block;
    width: 25px;
    height: 5px;
    background-color: #03a9f4;
}

.heading h1 span:before {
    margin-right: 15px;
}

.heading h1 span:after {
    margin-left: 15px;
}

/*header*/

header {
    width: 100%;
    height: auto;
    margin: 0px;
    display: flow-root;
    border-bottom: 1px dashed #ddd;
}

header .top-notification-bar {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    background: #03A9F4;
    /*
    background: url(../img/topbar.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
*/
}

header .top-notification-bar .dropdown:hover .dropdown-menu {
    display: block;
}

header .top-notification-bar ul li {
    display: inline-block;
}

header .top-notification-bar ul li a {
    text-transform: uppercase;
    padding: 10px 15px;
}

header .top-notification-bar ul .inner-content p {
    margin-bottom: 0;
    color: #fff;
}

header .top-notification-bar ul .inner-content p span {
    animation: blinker 0.7s infinite;
    font-weight: 600;
}

@keyframes blinker {
    50% {
        /* opacity: 0;*/
        /*        color: #F44336;*/
        color: #000;
    }
}

.logo-menu {
    padding: 15px 0px;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 9999;
    float: left;
}

.logo-menu .logo {
    float: left;
    width: 210px;
}

.logo-menu .logo img {
    width: 100%;
}

.logo-menu nav {
    position: relative;
    float: right;
    z-index: 9999;
}

.logo-menu nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.logo-menu nav ul li {
    list-style: none;
    padding: 5px 0px;
}

.logo-menu nav ul li a {
    display: block;
    font-weight: 500;
    color: #000;
    padding: 10px;
    position: relative;
    z-index: 999;
}

.logo-menu nav ul li a:hover {
    text-decoration: none;
    text-shadow: none;
    color: #fff;
}

.logo-menu nav ul li a:before {
    content: '';
    width: 0%;
    height: 100%;
    background: #03a9f4;
    top: 0px;
    left: 0px;
    position: absolute;
    z-index: -1;
    transition: 0.3s;
}

.logo-menu nav ul li ul {
    display: block;
    background: #fff;
    min-width: 200px;
    position: absolute;
    margin-top: 5px;
    box-shadow: 0 2px 5px #000;
    transition: 0.8s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    z-index: 9999;
}

.logo-menu nav ul li ul li {
    z-index: 9999;
    border-bottom: 1px solid #03a9f4;
    padding: 0px;
}

.logo-menu nav ul li ul li a {
    margin-left: 0px;
    z-index: 9999;
    color: #000;
}

.logo-menu .menu-icon {
    width: 50px;
    height: 50px;
    float: right;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
    z-index: 99999;
    box-sizing: border-box;
    display: none;
}

.logo-menu .menu-icon span {
    width: 35px;
    height: 3px;
    margin-left: 6px;
    position: absolute;
    top: 22px;
    display: block;
    background: #005aa8;
    transition: 0.5s;
    z-index: 999999;
}

.logo-menu .menu-icon span:nth-child(1) {
    transform: translateY(-10px);
    width: 25px;
    margin-left: 15px;
}

.logo-menu .menu-icon span:nth-child(3) {
    transform: translateY(10px);
    width: 25px;
    margin-left: 15px;
}

.logo-menu .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    transition: 0.5s;
}

.logo-menu .menu-icon.active span:nth-child(2) {
    transform: translateX(100px);
    opacity: 0;
    transition: 0.5s;
}

.logo-menu .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    transition: 0.5s;
}

.logo-menu a:hover:before {
    width: 100%;
}

.logo-menu nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.vegamenu-content .vegamenu-title .browse-cat {
    background-color: #03a9f4;
}

.vegamenu-content {}

/*
.vegamenu-content ul.vega-menu {
    border: 2px solid #ed1c24;
}
*/

.vegamenu-content .vegamenu-title,
.vegamenu-content {
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.vegamenu-content .vegamenu-title .browse-cat {
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    line-height: 0;
    margin-bottom: 0px;
}

.vegamenu-content .vega-menu {
    background-color: #fff;
}

.vegamenu-content ul.vega-menu.collapse:not(.show) {
    display: block;
}

.vegamenu-content .vegamenu-title a.browse-cat {
    display: none;
}

.vegamenu-content .vegamenu-title .browse-cat i {
    font-size: 20px;
    transition: 0.3s ease;
}

.vegamenu-content .vegamenu-title .browse-cat span {
    margin-left: 15px;
    margin-right: auto;
    line-height: normal;
}

.vegamenu-content ul.vega-menu li.menu-link {
    position: relative;
}

.vegamenu-content ul.vega-menu li.menu-link:first-child {
    border-top: none;
}

.vegamenu-content ul.vega-menu li.menu-link:last-child {}

.vegamenu-content ul.vega-menu li.menu-link a.link-title.link-title-lg {
    display: none;
}

.vegamenu-content ul.vega-menu li.menu-link:hover a.link-title > i {
    transform: rotate(-90deg);
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title > i {
    font-size: 20px;
    transition: 0.3s ease;
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title .alink img {
    border-radius: 3px;
    margin-right: 5px;
    display: none;
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title .alink {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title.link-title-md {
    display: none;
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    width: auto;
    text-transform: capitalize;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.collapse:not(.show) {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu {
    transform: translateY(15px);
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    width: max-content;
    width: -moz-max-content;
    background-color: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu {
    flex-direction: column;
    padding: 20px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu .submenu-li:last-child {
    margin-bottom: 0px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu .submenu-li {
    margin-bottom: 10px;
}

.vegamenu-content ul.vega-menu li.menu-link:hover ul.dropdown-submenu {
    top: 0;
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li {
    display: table-cell;
    padding: 15px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.mega-menu li.submenu-li {
    padding: 0 15px;
    margin-bottom: 10px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.mega-menu li.submenu-li:last-child {
    margin-bottom: 0px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li h2.sublink-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li a.sublink-title {
    display: none;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu.collapse:not(.show) {
    display: block;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li:first-child {
    margin-top: 15px;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li .suplink-title {
    text-transform: capitalize;
}

.vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li {
    margin-top: 10px;
}

.vegamenu-content ul.vega-menu li.menu-link a.link-title.link-title-md {
    display: none;
}

.vegamenu-content ul.vega-menu li.menu-link {
    border-top: 1px solid #000000;
}

@media (max-width: 991px) {
    .vegamenu-content .vega-menu {
        position: absolute;
        top: 100%;
        z-index: 2;
        width: 100%;
    }

    .slider-main {
        display: flex;
        flex-direction: column;
    }

    .vegamenu-content {
        width: 100%;
        padding-right: 0px;
    }

    .vegamenu-content ul.vega-menu li.menu-link a.link-title,
    .vegamenu-content ul.vega-menu.collapse:not(.show),
    .vegamenu-content .vegamenu-title h6.browse-cat {
        display: none;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li h2.sublink-title,
    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.collapse:not(.show) {
        display: none;
    }

    .vegamenu-content .vegamenu-title a.browse-cat,
    .vegamenu-content ul.vega-menu li.menu-link a.link-title.link-title-md {
        display: flex;
    }

    .vegamenu-content .vegamenu-title a.browse-cat[aria-expanded="true"] i.ion-ios-arrow-down,
    .vegamenu-content ul.vega-menu li.menu-link a.link-title.link-title-md[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu {
        padding: 0px;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu {
        left: 0;
        transform: translateY(0);
        box-shadow: none;
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        flex-direction: column;
        max-height: 168px;
        overflow-y: auto;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu .submenu-li,
    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.mega-menu li.megamenu-li {
        display: block;
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu.sub-menu li.submenu-li a.sublink-title,
    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li a.sublink-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        font-size: 13px;
        text-transform: capitalize;
        margin: 0px;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li a.sublink-title i {
        font-size: 20px;
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu li.megamenu-li a.sublink-title[aria-expanded="true"] i {
        transform: rotate(180deg);
        -webkit-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu.collapse:not(.show) {
        display: none;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-submenu .menu-banner {
        display: none;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li,
    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li:first-child {
        margin-top: 0px;
    }

    .vegamenu-content ul.vega-menu li.menu-link ul.dropdown-supmenu li.supmenu-li .suplink-title {
        padding: 10px 20px;
        width: 100%;
        font-size: 13px;
    }
}

.slider {
    width: 100%;
    background: #000;
}

.carousel-item img {
    width: 100%;
    height: 430px;
    opacity: 0.7;
}

.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #00b9e0;
    width: 20px;
    height: 5px;
    border-radius: 44%;
}

/*
.carousel-caption {
    padding-bottom: 160px;
}
*/



.company-name {
    width: 100%;
    height: auto;
    display: flow-root;
    text-align: right;
    padding: 12px 0px;
}

.company-name .company-name-content h4 {
    font-weight: bold;
    color: #ed1c24;
    margin: 0px;
}

.company-name .company-name-content h6 {
    font-size: 14px;
    font-weight: 300;
    color: #dc3545;
    margin: 0px;
}

.company-name .company-name-content p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
}

.sa-products {
    width: 100%;
    height: auto;
    padding: 30px 0px;
}

.sa-products .products {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.sa-products .products a .img {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
}

.sa-products .products a .img img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: 0.5s ease-in-out;
}

/*
.sa-products .products a {
    position: relative;
    z-index: -1;
}

.sa-products .products a:before {
    position: absolute;
    z-index: 9;
    content: "";
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;

}

.sa-products .products a:after {
    position: absolute;
    z-index: 9;
    content: "";
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    transform: scale(1, 0);
    transform-origin: center;
}

.sa-products .products:hover a:after,
.sa-products .products:hover a:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
*/

.sa-products .products:hover .img img {
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

.sa-products .products .product-content {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 35px;
}

.sa-products .products .product-content p {
    margin: 0;
    color: #999;
}

.sa-products .products .product-content h3 {
    font-size: 18px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner-btn {
    background: transparent;
    font-size: 14px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    border: none;
    transition: 0.3s ease;
    color: #03A9F4;
}

.banner-content .banner-btn {
    margin-top: 8px;
}

.sa-services {
    width: 100%;
    height: auto;
    padding: 10px 0px;

}

.sa-services .row {
    margin: 0%;
}

.sa-services .col-md-3 {
    padding: 0px;
    margin: 0px;
}

.services-content {
    border-top: 1px dashed #dedede;
    border-left: 1px dashed #dedede;
    border-bottom: 1px dashed #dedede;
    padding: 15px;
}

.last {
    border-right: 1px dashed #dedede;
}

.main-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-block .services-text span {
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-block .services-text p {
    color: #999;
    margin-bottom: 0px;
    margin-top: 2px;
    text-transform: capitalize;
}

.services-content .main-block .icon-block .fa {
    transition: 0.5s ease-in-out;
    margin-right: 10px;
    font-size: 40px;
    color: #F44336;
}

.services-content:hover .main-block .icon-block .fa {
    transform: rotateY(180deg);
    color: #03A9F4;
}

.sa-trending .owl-carousel .owl-nav.disabled {
    display: block;
}

.sa-trending .owl-nav {
    margin-top: 0;
}

.sa-trending .owl-nav button {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    margin: 0;
    line-height: 0;
    height: 30px;
    font-size: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    box-shadow: 0px 0px 12px 0px rgba(123, 190, 70, 0.1);
    transition: all 0.2s ease-in-out 0s;
    background-color: #03A9F4 !important;
}

.sa-trending .owl-nav button:hover {
    background-color: #fff !important;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out 0s;
    color: #03A9F4 !important;
}

.sa-trending .owl-nav button.owl-prev {
    left: -15px;
}

.owl-nav button.owl-next {
    right: -15px;
}

.sa-trending {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}

.sa-trending .testimonial-item .single-product-wrap .product-image {
    position: relative;
}

.product-label .new-title {
    left: 5px;
    position: absolute;
    top: 5px;
    background-color: #03A9F4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
    font-size: 13px;
    padding: 2px 5px 2px 15px;
    color: #fff;
}

.product-label .sale-title {
    right: 5px;
    position: absolute;
    top: 5px;
    background-color: #e30514;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
    font-size: 13px;
    padding: 2px 5px 2px 15px;
    color: #fff;
}

.single-product-wrap {
    margin-bottom: 20px;
}

.product-action-inner {
    margin-top: -38px;
    margin-bottom: 20px;
    text-align: center;
}

.product-img {
    width: 100%;
    height: auto;
    overflow: hidden;

}

.product-img img {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.product-img:hover img {
    transform: scale(1.1);
}

.product-action-inner a {
    font-size: 16px;
    line-height: 0;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding: 10px;
    margin-right: 10px;
    text-align: center;
}

.product-action-inner a:first-child {
    transform: translateX(40px);
}

.product-action-inner a:last-child {
    transform: translateX(-40px);
}

.product-img:hover .product-action-inner a,
.product-img:hover .product-action-inner a:first-child,
.product-img:hover .product-action-inner a:last-child {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}


.product-btn .btn-danger:hover {
    background-color: aliceblue;
    background-color: #03A9F4;
    border-color: #03A9F4;
}

.product-content {
    padding: 15px;
    text-align: center;
}

/*
.product-content h3 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    text-transform: capitalize;
    margin-top: 0px;
}
*/
.product-content h3 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    text-transform: capitalize;
    margin-top: 0px;
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-right: 5px;
}

.product-ratting p {
    margin: 0;
    color: #999;
}

.price-box ul li {
    display: inline-block;
}

.price-box .new-price {
    font-weight: 600;
    color: #000;
    font-size: 17px;
    margin-right: 5px;
}

.price-box .old-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 500;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.sa-category {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    /*    background: #fbfbfb;*/
}

.category {
    width: 200px;
}

.category .category-img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.category .category-img img {
    width: 100%;
    height: auto;
}

.category .category-img:hover {
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.08);
}

.category-content {
    margin-top: 10px;
}

.category-content a {
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
}

.category-content a:hover {
    color: #03A9F4;
}

.swiper-button-prev,
.swiper-button-next {
    background: #03A9F4;
    background-image: none !important;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    transform: translateY(40px);
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.sa-category:hover .swiper-button-prev {
    transform: translateY(0px);
    opacity: 1;
}

.sa-category:hover .swiper-button-next {
    transform: translateY(0px);
    opacity: 1;
}

.sa-customer {
    width: 100%;
    height: auto;
    background: #f9f9f9;
    padding: 40px 0px;
}

.sa-customer:hover .swiper-button-prev {
    transform: translateY(0px);
    opacity: 1;
}

.sa-customer:hover .swiper-button-next {
    transform: translateY(0px);
    opacity: 1;
}

.customer {
    width: 990px;
}

.testi-center {
    text-align: center;
}

.testi-content:before {
    content: "\f10d";
    font-family: FontAwesome;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    font-size: 20px;
    color: #fff;
    margin: 0% auto;
    margin-top: 7px;
    line-height: 60px;
}

.testi-content:before {
    background-color: #03A9F4;
}

.testi-content:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
}

.testi-content:after {
    border-color: #03A9F4;
}

.testi-content h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    margin-top: 16px;
    color: #000;
    line-height: normal;
}

.testi-content .review-content {
    margin-top: 16px;
}

.testi-content .review-content p {
    line-height: 25px;
    margin-bottom: 0px;
}

.testi-content .author-detail {
    margin-top: 15px;
}

.testi-content .author-detail h6 {
    margin: 0;
    padding: 0;
    color: #000;
    line-height: normal;
}

.author-review {
    margin-top: 5px;
    color: #ffb503;
}

.sa-recent {
    width: 100%;
    height: auto;
    padding: 30px 0px;

}

.blog {
    width: 100%;
    height: auto;

}

.blog .blog-img {
    width: 100%;
    height: auto;
}

.blog .blog-img img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    padding-top: 12px;
}

.blog-post-content p.blog-publish {
    display: flow-root;
}

.blog-post-content p.blog-publish span {
    margin-right: 15px;
    float: left;
}

.blog-post-content p.blog-publish a {
    float: right;
}


.blog-post-content h2.blog-title {
    margin: 0;
    padding: 0;
    color: #000;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid #dedede;
    text-transform: capitalize;
}


.blog-post-content p.blog-desc {
    margin-top: 16px;
    margin-bottom: 0;
}

.blog-post-content .btn-view {
    margin-top: 15px;
}


.blog-post-content a.read-btn {
    font-size: 16px;
    font-weight: 600;
    color: #03A9F4;
    float: left;
}

p.blog-admin {
    float: right;
    margin-bottom: 0;
}

footer {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    background: #f9f9f9;
}

.address {
    display: flex;
    margin-top: 30px;
}

.address .address-icon .fa {
    font-size: 45px;
    margin-top: 10px;
    margin-right: 10px;
    color: #03A9F4;
}

.address .address-content h5 {
    margin: 0;
    padding: 0;
    color: #03A9F4;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
}

.address .address-content span {
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    font-size: 13px;
    display: block;
    color: #4c4c4c;
}



.footer-list-wrap {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #7b7b7bee;
}

.footer-content h2 {
    font-size: 16px;
    font-weight: 600;
    color: #03A9F4;
}


.footer-content ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #7b7b7bee;
}


.footer-bottom-area {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #03A9F4;
}

.footer-bottom-area .copy-right p {
    font-size: 13px;
    margin-bottom: 0;
    color: #fff;
    margin-top: 8px;
}


.footer-bottom-area ul.ft-bottom li {
    float: left;
    margin-top: 0px;
}

.footer-bottom-area ul.ft-bottom li.social-icon {
    float: right;
}

.footer-bottom-area ul.ft-bottom li.social-icon a {
    display: block;
    border-radius: 3px;
    background-color: #fff;
    margin-right: 5px;
    padding: 5px 10px;
}

.sa-color {
    color: #FFEB3B;
}

@media (max-width: 991px) {
    .footer-bottom-area ul.ft-bottom li {
        width: 100%;
    }

    .footer-bottom-area ul.ft-bottom li:first-child {
        margin-top: 0px;
    }

    .footer-bottom-area ul.ft-bottom li {
        margin-top: 8px;
    }

    .footer-bottom-area ul.ft-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-area ul.ft-bottom li:nth-child(3) {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom-area ul.ft-bottom li {
        width: 100%;
    }

    .footer-bottom-area ul.ft-bottom li.copy-right {
        margin-top: 5px;
    }

    .footer-bottom-area ul.ft-bottom li.social-icon {
        justify-content: center;
        margin-bottom: 5px;
    }

    .footer-bottom-area ul.ft-bottom li:nth-child(3) {
        text-align: center;
    }
}

.hover {
    color: #ffeb3b;
}

.hover:hover {
    color: #3bff5c;
}

.carousel-caption h6 {
    color: #fff;
}

.carousel-caption h1 {
    color: #fff;
}

.sa-products-inner-page {
    width: 100%;
    height: auto;
    padding: 70px 0px;
    background: #d8eefe;
    padding-bottom: 200px;
}

.sa-products-inner-page .sa-img {
    width: 100%;
    height: auto;
    /* border: 1px solid #ddd; */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.sa-products-inner-page .sa-img img {
    width: 100%;
    height: auto;
}

.sa-products-inner-page .container,
.sa-products-inner-page .container-lg,
.sa-products-inner-page .container-md,
.sa-products-inner-page .container-sm,
.sa-products-inner-page .container-xl,
.sa-breadcrumb .container,
.sa-breadcrumb .container-lg,
.sa-breadcrumb .container-md,
.sa-breadcrumb .container-sm,
.sa-breadcrumb .container-xl,
.sa-about-inner .container,
.sa-about-inner .container-lg,
.sa-about-inner .container-md,
.sa-about-inner .container-sm,
.sa-about-inner .container-xl {
    max-width: 1140px;
}

.products-details-info .products-details-title h1 {
    font-weight: 600;
    text-transform: capitalize;
    color: #d80707;
    margin: 0;
    padding: 0;
    line-height: normal;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.products-details-info .products-details-status {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ededed;
}

.products-details-info .products-details-status h2 {
    font-size: 25px;
    font-weight: 600;
}

.products-details-info .products-details-status h2 span {
    font-weight: 600;
}

.products-details-info .products-details-status h2 .in-stock {
    color: #5fa800;
    margin-left: 15px;
}

.products-details-info .product-description p {
    margin-top: 10px;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    font-family: "Poppins";
}

.stock-inventory {
    font-size: 16px;
}

.stock-inventory span {
    margin: 0;
    padding: 0;
    color: #dc3545;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    margin-top: 9px;
    padding-top: 9px;
    text-transform: capitalize;
}

.sa-breadcrumb {
    background: #fdda05;
}

.sa-breadcrumb .breadcrumb {
    background-color: #fdda05;
}

.sa-breadcrumb .breadcrumb {
    margin-bottom: 0px;
}

.sa-breadcrumb .breadcrumb-item.active {
    color: #d80707;
}

.products-page-description {
    margin-top: 30px;
}

.products-page-description h3 {
    font-size: 20px;
    font-weight: 600;
}

.products-page-description hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

.sa-form {
    padding: 10px 15px;
}


@media (min-width: 576px) {
    .rounded-nav {
        border-radius: 50rem !important;
    }
}

@media (min-width: 576px) {
    .rounded-nav .nav-link {
        border-radius: 50rem !important;
    }
}

/* With arrow tabs */

.with-arrow .nav-link.active {
    position: relative;
}

.with-arrow .nav-link.active::after {
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2b90d9;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

/* lined tabs */

.lined .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
    background: none;
    color: #555;
    border-color: #2b90d9;
}

/*
*
* ==========================================
* FOR DEMO PURPOSE
* ==========================================
*
*/

/*
body {
  background: #304352;
  background: -webkit-linear-gradient(to right, #304352, #d7d2cc);
  background: linear-gradient(to right, #304352, #d7d2cc);
  min-height: 100vh;
}
*/

.nav-pills .nav-link {
    color: #555;
    text-transform: capitalize !important;
}

.text-uppercase {
    letter-spacing: 0.1em;
}

.sa-nav-tabs {
    width: 100%;
    padding: 40px 0px;
    /*    background: #d8eefe;*/
    margin-top: -230px;
}



.wrap {
    width: 100%;
    margin: 50px auto;
    overflow: hidden;
    padding: 45px;
    padding-bottom: 45px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin-top: -45px;
}

.wrap:hover .img {
    transform: translateZ(20px);
}

.wrap:hover .img:after {
    top: 200%;
}

.wrap:hover .title:after {
    width: 90%;
}

.profile {
    max-width: 320px; */
    padding: 25px;
    /* padding-bottom: 255px; */
    background: #fff;
    /* background-image: linear-gradient(to bottom right,#0e061e,#3c0024); */
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
    cursor: pointer;
    padding: 25px !important;
}

.profile .img {
   border-style: 0 0 10px rgba(0, 0, 0, 0.1);
    /* position: absolute; */
    /* bottom: -59px; */
    /* right: -55px; */
    width: 100%;
    /* height: 300px; */
    border-radius: 9px;
    /* overflow: hidden; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
}

.profile .img:after {
    content: '';
    position: absolute;
    background: white;
    width: 250%;
    height: 100%;
    top: -200%;
    left: -70%;
    transform: rotateZ(-45deg);
    opacity: 0.2;
    transition: all 0.5s;
}

.profile .title {
    font-size: 30px;
    font-weight: 550;
    margin-bottom: 5px;
    position: relative;
    color: #333;
    top: 8px;
    color: #000;
    text-transform: capitalize;
    color: #d80707;
    margin: 0;
    padding: 0;
    line-height: normal;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.profile .title:after {
    content: '';
    position: absolute;
    left: -8px;
    bottom: 3px;
    width: 0;
    height: 10px;
    background: deepskyblue;
    z-index: -1;
    transition: all 0.5s;
}

.profile .content {
    font-family: tahoma;
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 15px;
    opacity: 0.4;
    position: relative;
    left: 8px;
    top: 5px;
}

.modal-body .img {
    width: 50%;
    margin: 0% auto;
}

.modal-body .img img {
    width: 100%;
    height: auto;
}

.products-page-description {
    margin-top: 0px;
    border: 7px double #03a9f4;
    padding: 10px;
}

.products-page-description .page-description li {
    margin-bottom: 15px;
}

.sa-common-products {
    width: 100%;
    height: auto;
    background: url(../img/bg.jpg);
    padding-top: 40px;
}

.content {
    background: #fff;
    padding: 30px;
    width: 90%;
    margin: 0% auto;
    margin-top: 80px;
    box-shadow: 2px 2px 10px 10px rgba(225, 225, 225, 0.2);
}


.footer-logo {
    width: 300px;
    margin-top: 80px;
}

.footer-logo img {
    width: 100%;
}

.footer-social-media {
    width: 100%;
    height: auto;
}

.footer-social-media .media-links {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer-social-media .media-links li {
    width: 20%;

}

.footer-social-media .media-links li img {
    width: 100%;
}

.sa-map {
    width: 100%;
    height: auto;
    margin: 0px auto;
}

.sa-map .col-md-12 {
    margin: 0px;
    padding: 0px;
}

.sa-map .sa-img,
.sa-map .sa-img img {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.sa-map .sa-img img {
    width: 100%;
    height: auto;
}

.sa-main-points {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    background: #f7575d;
}

.sa-main-points .links {
    width: 80%;
    margin: 0% auto;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sa-main-points .links li {
    color: #fff;
}

.sa-certification {
    width: 100%;
    padding: 40px 0px;
}

.sa-certification .swiper-slide img {
    width: 220px;
}

.sa-certification:hover .swiper-button-prev {
    transform: translateY(0px);
    opacity: 1;
}

.sa-certification:hover .swiper-button-next {
    transform: translateY(0px);
    opacity: 1;
}

.sa-certification .swiper-button-prev,
.sa-certification .swiper-button-next {
    background: #F44336 !important;
}

.sa-search input {
    width: 100% !important;
    margin: 0px !important;
    border: 0px;
    border-radius: 0px;
}

.sa-search .btn {
    position: absolute;
    right: 0px;
    border-radius: 0px;
    background: #ed1c24;
    border-color: #ed1c24;
}

.sa-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sa-banner .col-md-12 {
    padding: 0px;
}

.sa-banner .sa-img {
    width: 100%;
    height: auto;
}

.sa-banner .sa-img img {
    width: 100%;
    height: auto;
}

.inner-heading {
    font-weight: 600;
    font-size: 25px;
    line-height: 42px;
    color: #033b4a;
    margin-bottom: 18px;
    background: #03a9f4;
    padding: 5px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-left: 6px solid #033b4a;
}

.sa-about-inner ul li {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #000;
    list-style-image: url(../img/icon.png);
    margin-left: 15%;
    margin-top: 10px;
}

.sa-flex-box .col-lg-3 {
    display: flex;
}

.ta-card {
    width: 100%;
    margin-bottom: 50px;
    box-shadow: 2px 2px 10px 10px rgba(225, 225, 225, 0.2);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
}

.ta-card .sa-img {
    text-align: center;
    width: 100%;
}

.ta-card .sa-img img {
    width: 100%;
}

.sa-content {
    padding: 20px;
}

.sa-content h4 {
    font-size: 18px;
    color: #03a9f4;
    font-weight: 600;
}

.sa-content p {
    font-size: 12px;
    text-align: justify;
}

.sa-under {
    width: 100%;
    height: auto;
    padding: 30px 0px;
}

.uc {
    font-family: Audiowide, sans-serif;
    font-weight: 700;
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    border: 0.1em solid #212529;
    padding: 0.7em;
    width: auto;
    text-align: center;
    font-size: 30px;
    border-radius: 0.3em;
    text-shadow: 1px 1px 0px #f8f9fa;
    color: #212529;
    white-space: nowrap;
    background: repeating-linear-gradient(45deg, #ffd43b, #ffd43b 0.6em, #212529 0.6em, #212529 1.3em);
}

.center {
    margin-right: auto;
    margin-left: auto;
}

.uc-pos-fix {
    position: relative;
    width: 483px !important;
}

.uc.uc-biohazard {
    color: #f03e3e;
    text-shadow: 1px 1px 0px #212529;
    background: repeating-linear-gradient(45deg, #212529, #212529 0.6em, #f03e3e 0.6em, #f03e3e 1.3em);
}

.uc.uc-biohazard:before {
    background-color: #212529;
}

.uc:before {
    content: '';
    position: absolute;
    top: 0.6em;
    bottom: 0.6em;
    left: 0;
    right: 0;
    z-index: 0;
    background-color: #ffd43b;
}

.uc span {
    position: relative;
    z-index: 10;
}

.sa-contact-us {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}

.sa-contact-us .contact-box {
    width: 70%;
    height: 430px;
    position: relative;
    margin-left: 20%;
    padding-bottom: 40px;
    box-shadow: 10px 10px 10px rgba(3, 169, 244, 0.6);
    clear: both;
}

.sa-contact-us .contact-box input[type=text],
.sa-contact-us .contact-box textarea:focus {
    outline: none;
}

.sa-contact-us .contact-box input[type=text],
.sa-contact-us .contact-box textarea {
    width: 80%;
    padding: 15px;
    margin: 5px 0 22px 30px;
    border: none;
    border-bottom: 1px solid #03a9f4;
    background: transparent;
}

.submit-btn {
    width: 130px;
    height: 40px;
    display: inline-block;
    background: #fff;
    margin-top: 3%;
    margin-left: 8%;
    text-align: center;
    line-height: 37px;
    position: absolute;
    clear: both;
    float: left;
    z-index: 1;
    transition: 0.5s;
    border: 1px solid #03a9f4;
    color: #03a9f4;
    overflow: hidden;
}

.submit-btn:hover {
    text-decoration: none;
    color: #fff;
}

.submit-btn:before {
    content: '';
    top: 0px;
    left: -150px;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #03a9f4;
    clear: both;
    transition: 0.5s;
    z-index: -1;
}

.submit-btn:hover:before {
    left: 0px;
}

.contact h4 {
    font-weight: 500;
}

.contact p {
    width: 80%;
    margin-bottom: 5%;
}

.contact .contact-info .fa {
    float: left;
    font-size: 35px;
    width: 70px;
    height: 70px;
    text-align: center;
    padding-top: 15px;
    box-sizing: border-box;
    border-radius: 50px;
    color: #03a9f4;
    box-shadow: 3px 3px 5px #03a9f4;
}

.contact-info p {
    width: 80%;
    margin-left: 14%;
    font-size: 18px;
    clear: both;
    float: left;
    margin-top: -65px;
    clear: both;
    color: #9c9a9a;
}
.text-center{
        text-align: center;
    }
@media (max-width: 991px) {
    .logo-menu .menu-icon {
        float: right;
        margin-top: 0px;
        display: block;
    }

    .logo-menu .sai-nav ul {
        margin: 0;
        padding: 0;
        display: block;
    }

    .sai-nav {
        position: absolute !important;
        background: #fff;
        transform: translateX(-100%);
        transition: 0.5s ease-in-out;
        opacity: 0;
        width: 30%;
    }

    .sai-nav.active {
        transform: translateX(0%);
        opacity: 1;
    }

    .contact-info p {
        width: 100%;
        margin-left: 18%;
    }

    .sa-contact-us .contact-box {
        width: 100%;
        height: 430px;
        position: relative;
        margin-left: 0px;
        padding-bottom: 40px;
        box-shadow: 10px 10px 10px rgba(3, 169, 244, 0.6);
        clear: both;
        margin-bottom: 30px;
    }
     .heading h1 {
        font-size: 21px !important;
    }
    .text-center{
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .sai-nav {
        position: absolute !important;
        background: #fff;
        transform: translateX(-100%);
        transition: 0.5s ease-in-out;
        opacity: 0;
        width: 60%;
    }

   
}
