﻿  @charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Ubuntu');
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/
@import url('https://fonts.googleapis.com/css?family=Lato|Open+Sans');
@font-face{ font-family: 'Ubuntu', sans-serif; }
* {
  margin:0; 
  padding: 0; 
  /*font-family: Candara,Calibri,Segoe,Segoe UI,Optima,Arial,sans-serif;*/
 /* font-family: Arial Narrow,Arial,sans-serif;*/
 /*font-family: Geneva,Tahoma,Verdana,sans-serif;*/
}
body{
       font-family: Lato;
}

.bdr{border:1px solid red;}
a,a:hover{
  text-decoration:none !important; 
  outline: none !important;
}
.navbar-toggler{
background-color: #5CA329;
color: #fff;
padding: 4px 7px;
}
.row{
    margin: 0px;
}



/*============================
15. preloader css start
===============================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    background: #fafafa;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -45px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9fa8da;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1a237e;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5c6bc0;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}


/*=============================
preloader css end
================================*/



/*.preloader.loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10000;
    background: #f8f8f8;
}
.loader::after {
    display: block;
    content: '\f021';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
    color: #333;
    text-align: center;
    font-family: 'FontAwesome', sans-serif;
    -webkit-animation: fa-spin 0.7s infinite ease-in-out;
    -o-animation: fa-spin 0.7s infinite ease-in-out;
    animation: fa-spin 0.7s infinite ease-in-out;
}*/


/*////////////////////////////common css start///////////////////////*/
 .back-to-top a {
  color: #fff !important;
    float: right;
    font-size: 26px;
    font-weight: 400;
}
 .back-to-top a i {
    background-color: #0067AC;
color: #fff;
display: inline-block;
height: 40px;
width: 40px;
line-height: 40px;
margin: 0 0 0 8px;
text-align: center;
vertical-align: middle;
position: absolute;
top: -30px;
right: 0px;
}


.padd_20{
    padding-top: 20px;
    padding-bottom: 20px;
}
.padd_30{
    -border:1px solid red;
    padding-top: 30px;
    padding-bottom: 30px;   
}
.padd_0{
    padding: 0px;
}

ul{
    list-style: none;
    margin-bottom: 0;
}
.margin-bottom {
    margin-bottom: 30px;
}
a:hover,a:focus{
    outline: none;
    text-decoration: none;
}

.auto-container {
    position: static;
    max-width: 1250px;
    padding: 0px 15px;
    margin: 0 auto;
}

.ReadMore{
   cursor: pointer;
margin: 0;
padding: 8px 15px;
background-color: #0067AC;
color: #fff;
border: none;
border-radius: 0;
font-size: 14px;
font-weight: 600;
text-decoration: none;
outline: none;
text-transform: uppercase;
display: block;
margin: auto;
margin-top: 20px;
}
.ReadMore:hover{
    color: #fff;
}
.ReadMore i{
    padding-left: 5px;
}

.tm-section-heading {
    padding: 0 15px;
    margin-bottom: 20px;
}
.tm-section-heading h2 {
    font-size: 34px;
    color: #0067AC;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 34px;
}

.tm-section-seperator {
    height: 15px;
    width: 170px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.tm-section-seperator::before {
    content: '';
    height: 2px;
    background-color: #0067AC;
    width: 70px;
    position: absolute;
    left: 0;
    top: 6px;
}

.tm-section-seperator span {
    position: absolute;
    height: 2px;
    width: 14px;
    background-color: #0067AC;
    left: 50%;
    margin-left: -7px;
    top: 6px;
   -webkit-animation: tm-spin-animaiton 6s linear infinite;
animation: tm-spin-animaiton 6s linear infinite;
}
.tm-section-seperator span::before {
    content: '';
    height: 7px;
    width: 2px;
    position: absolute;
    background-color: #0067AC;
    top: 2px;
    left: 6px;
}
.tm-section-seperator span::after {
    content: '';
    height: 5px;
    width: 2px;
    position: absolute;
    background-color: #002856;
    bottom: 3px;
    left: 6px;
}
.tm-section-seperator::after {
    content: '';
    height: 2px;
    background-color: #0067AC;
    width: 70px;
    position: absolute;
    right: 0;
    top: 6px;
}
@keyframes tm-spin-animaiton {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(0deg);
    transform: rotateX(-20deg) rotateY(0deg);
}

75% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
}
100% {
    -webkit-transform: rotateX(-20deg) rotateY(360deg);
    transform: rotateX(-20deg) rotateY(360deg);
}
}
/*////////////////////////////common css complated///////////////////////*/


/*///////////////////////////////navbar css start/////////////////////////*/


 .header-top {
    position: relative;
    background-color: #ffffff;
    border-top: 3px solid #0067AC;
}
 .header-top::before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}
.header-top .inner-container {
    position: relative;
}
 .header-top .top-left {
    position: relative;
    float: left;
}
 .header-top .social-icon {
    float: left;
}
 .social-icon li {
    position: relative;
    float: left;
}
.header-top .social-icon li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
    width: 42px;
    text-align: center;
    color: #cccccc;
    border-right: 1px solid #ebebeb;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
 .header-top .top-left p {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    color: #888888;
    padding: 10px 0;
    margin-left: 20px;
    margin-bottom: 0;
}

 .header-top .top-right {
    position: relative;
    float: right;
}
.header-top .top-right ul li:first-child {
    border-left: 0;
}
.header-top .top-right ul li {
    position: relative;
    display: inline-block;
    border-left: 1px solid #ebebeb;
}
.header-top .top-right ul li a {
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #888888;
    padding: 10px 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.navbar {
   padding: 10px 0px 3px 0px;
   background-color: #fff;
   -z-index: 999999;
   box-shadow: 2px 3px 14px 0 rgba(184,184,184,.4);margin:0;
}
.navbar .navbar-brand{
    -border:1px solid red;
    margin-right: 40px;
    
}
.navbar .navbar-brand img {
   position: relative;
display: block;
height: 80px;
margin: auto;

}

.navbar .navbar-nav .nav-item{
 margin-right: 5px;
}
.navbar .navbar-nav .nav-item.active a{
    background-color: #73cc33;
    color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link{
    color: #666666;
    padding: 10px 14px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 500ms ease;
    font-size: 13px;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
    background-color: #73cc33;
    color: #fff;
    transition: all 500ms ease;

}
.about_drp .dropdown-menu {
    left: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.about_drp .dropdown-menu  li  a{
  padding: 14px 16px;
   font-size: 16px;
   clear: both;
font-weight: 600;
line-height: 1.428571429;
white-space: normal;
background-color: #fff !important;

color: #444 !important;
}
.about_drp .dropdown-menu  li  a:hover, .about_drp .dropdown-menu  li a:focus{
text-decoration: none;
    color: #444;
    background-color: #f5f5f5;
}

.about_drp .dropdown-menu  li a.active{
     background-color: #f2f2f2 !important;
     color: #444 !important;
}




/*///////////////////////////////navbar css complated/////////////////////////*/



#bootstrap-touch-slider .carousel-inner{
  -border: 1px solid red;
  -margin-top: 80px;
}
#bootstrap-touch-slider .carousel-inner .carousel-item img{
  height:400px; 
  min-width: 100%;
  background-size: cover;
  background-position: center;
  width:100%;
}
.bs-slider{
    overflow: hidden;
    height: 400px;
    position: relative;
    background: #000000;
}
.bs-slider:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.bs-slider:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.bs-slider .bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.10);
}
.bs-slider > .carousel-inner > .item > img,
.bs-slider > .carousel-inner > .item > a > img {
    margin: auto;
    width: 100% !important;
}

.fade {
    opacity: 1;
}
.fade .item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}
.fade .item:first-child {
    top: auto;
    position: relative;
}
.fade .item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}
/*---------- LEFT/RIGHT ROUND CONTROL ----------*/
.control-round .carousel-control {
    top: 40%;
    opacity: 0;
    width: 45px;
    height: 45px;
    z-index: 100;
    color: #ffffff;
    display: block;
    font-size: 24px;
    cursor: pointer;
    overflow: hidden;
    line-height: 43px;
    text-shadow: none;
    position: absolute;
    font-weight: normal;
    background: transparent;
    -webkit-border-radius: 100px;
    border-radius: 100px;
}
.control-round:hover .carousel-control{
    opacity: 1;
}
.control-round .carousel-control.left {
    left: 1%;
}
.control-round .carousel-control.right {
    right: 1%;
}
.control-round .carousel-control.left:hover,
.control-round .carousel-control.right:hover{
    color: #fdfdfd;
    background: rgba(0, 0, 0, 0.5);
    border: 0px transparent;
}
.control-round .carousel-control.left>span:nth-child(1){
    left: 45%;
}
.control-round .carousel-control.right>span:nth-child(1){
    right: 45%;
}

/*---------- SLIDE CAPTION ----------*/

.slide-text-new {
    -border: 1px solid red;
    left: 41% !important;
    position: absolute;
    padding: 10px 0;
    width: 50%;
}
.slide-text-new h1
{
    font-size:15px !important;color:#fff !important;line-height:40px !important;
}

.slide-text-new h1 span{font-size:45px !important;color:#73cc33 !important;}
.slide-text-new p{color:white !important;}

.slide-text-new-2 {
    left: 58% !important;
    position: absolute;
    padding: 10px 0;
    width: 40% !important;
}

    .slide-text-new-2 h1 {
        color: lightyellow !important;
    }
.slide-text-new-2 p {
    color: white !important;
}

.slide-text-new-3 {
    left: 45% !important;
    position: absolute;
    padding: 10px 0;
    width: 50% !important;
}

@media screen and (max-width:480px) {
    .slide-text-new h1 span {
        font-size: 20px !important;
    }
    .slide-text-new h1{line-height:25px !important;}
    .slide-text-new{left:20% !important;}
    .mob-d-none{display:none !important;}
}



.slide-text {
   left: 70px;
top: 15%;
right: 0;
position: absolute;
-text-align: center;
padding: 10px 0;
width: 50%;
}

.slide-text > h1 { 
    padding: 0;
    color: #0067AC;
    font-size: 38px;
    font-weight: 700;
    font-style: normal;
    line-height: 65px;
    letter-spacing: 1px;
    display: inline-block;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.slide-text > p {
    padding: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}
.slide-text .btn-default{
    border: 1px solid transparent;
    background-color: #fff;
    color: #013c74;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    margin-right: 10px;
    text-align: center;
    padding: 16px 28px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;

}
.slide-text > a.btn-primary{
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    margin-left: 10px;
    text-align: center;
    padding: 16px 28px;
    white-space: nowrap;
    letter-spacing: 1px;
    background: #013c74;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.slide-text > a:hover,
.slide-text > a:active {
    color: #ffffff;
    background: #ED3237;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}
/*------------------------------------------------------*/
/* RESPONSIVE
/*------------------------------------------------------*/

@media (max-width: 991px) {
    .slide-text h1 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .slide-text > p {

        font-size: 18px;
    }
}

/*---------- MEDIA 480px ----------*/
@media  (max-width: 768px) {
    .slide-text {
        padding: 10px 50px;
    }
    .slide-text h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .slide-text > p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .control-round .carousel-control{
        display: none;
    }

}
@media  (max-width: 480px) {

  #bootstrap-touch-slider .carousel-inner .carousel-item img {
    height: 200px;
}
  .bs-slider{
    overflow: hidden;
    height: 200px;
    position: relative;
    background: #000000;
}
    .slide-text {
        padding: 0px 0px;
    left: 30px;
    top: 10%;
    width: 80%;
    }
    .slide-text h1 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 5px;
    }
    .slide-text > p {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .slide-text > a.btn-default, 
    .slide-text > a.btn-primary {
        font-size: 10px;
        line-height: 10px;
        margin-right: 10px;
        text-align: center;
        padding: 10px 15px;
    }
    .indicators-line > .carousel-indicators{
        display: none;
    }

}

/*///////////////////////////////slider css complated/////////////////////////////*/


/*///////////////////////////////banner css start/////////////////////////////*/

.call-to-action {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0;
}

.call-to-action::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color:  #68b92e;
    opacity: .90;
    content: "";
}
.call-to-action .title-box {
    position: relative;
    float: left;
    padding-left: 100px;
    min-height: 60px;
}

.call-to-action .title-box i{
    position: absolute;
    left: 10px;
    top: 0;
    line-height: 60px;
    color: #fff;
    font-size: 60px;
}

.call-to-action .title-box h2 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 35px;
    color: #ffffff;
    font-weight: 700;
}

.call-to-action .title-box p {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
}
.call-to-action .title-box p span {
    display: inline-block;
    font-size: 20px;
    color: #222222;
    font-weight: 500;
}

.call-to-action .btn-box {
    position: relative;
    float: right;
    padding: 30px 0;
}
.btn-style-two {
    position: relative;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    padding: 15px 30px;
    font-weight: 700;
    background: #222222;
    letter-spacing: .30px;
    text-transform: uppercase;
}

/*///////////////////////////////bannercss complated/////////////////////////////*/


/*///////////////////////////////About css start/////////////////////////////*/


.Home_About .content{
    text-align: center;
}
.Home_About .content p{
    line-height: 26px;
    margin: 0 0 26px 0;
padding: 0;
font-size: 15px;
font-weight: 400;
color: #555555;
}
.Home_About .content .btn{
   cursor: pointer;
margin: 0;
padding: 8px 15px;
background-color: #0067AC;
color: #fff;
border: none;
border-radius: 0;
font-size: 14px;
font-weight: 600;
text-decoration: none;
outline: none;
text-transform: uppercase;
}

.Home_About .content .btn i{
    padding-left: 5px;
}


/*///////////////////////////////About css complated/////////////////////////////*/

/*///////////////////////////////Product css start/////////////////////////////*/


.product_main{
    border:1px solid #ddd;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
    min-height: 300px;
    box-shadow: 0 2px 3px #f5f5f5;
    text-align: center;
}
.product_main .product_image{
    padding: 5px;
    border-bottom: 1px solid #f5f5f5;
}
.product_main .product_image img{
    height: 220px;
    width: auto;
}

.product_main .product_content{
    padding: 10px;
}

.product_main .product_content h3{
    font-size: 22px;
    font-weight: 600;
    color: #0067AC;
}
.product_main .product_content p{
    font-size: 14px;
font-weight: 400;
color: #555555;
line-height: 24px;
}

.new-box, .sale-box {
    position: absolute;
    top: 18px;
    right: 11px;
    overflow: hidden;
    height: 69px;
    width: 69px;
    text-align: center;
    z-index: 0;
}
.new {
    font: 700 14px/12px Arial, Helvetica, sans-serif;
    color: #fff;
    background: #0067AC;
    text-transform: uppercase;
    padding: 9px 0 7px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.24);
    width: 106px;
    text-align: center;
    display: block;
    position: absolute;
    right: -30px;
    top: 7px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.new::before {
    position: absolute;
    bottom: -3px;
    right: 4px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 4px 4px 0px 4px;
    border-color: #666 transparent transparent transparent;
    content: ".";
    text-indent: -5000px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.new::after {
    position: absolute;
    bottom: -3px;
    left: 5px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 4px 4px 0px 4px;
    border-color: #666 transparent transparent transparent;
    content: ".";
    text-indent: -5000px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.more_link {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 25px;
    text-align: right;
    font-weight: 600;
    color: #013c74;
}
.more_link i {
    font-size: 20px;
    position: relative;
    top: 2px;
}



/*///////////////////////////////Product css Complated/////////////////////////////*/

/************************Sponsore Css start*********************/
.Sponsore {
  padding-bottom: 30px;
}
.Sponsore .brand .brand-list {
    border: 8px solid #ececec;
    text-align: center;
    margin-left: -4px;
    margin-right: -4px;
    margin-top: 20px;
    display: block;
    padding: 0px 10px;
}
.Sponsore .brand .brand-list a {
    display: block;
    line-height: 120px;
}
.Sponsore .brand .brand-list a img {
    transition: all 0.3s;
    -opacity: 0.3;
    height: 120px;
}
.Sponsore .brand .brand-list a:hover img {
    opacity: 1;
}


/*********************************/


.nenshi-certificates {
    padding-bottom: 30px;
}

    .nenshi-certificates .brand .brand-list {
        -border: 8px solid #ececec;
        text-align: center;
        -margin-left: -4px;
        -margin-right: -4px;
        margin-top: 20px;
        display: block;
        padding: 0px 10px;
    }

        .nenshi-certificates .brand .brand-list a {
            display: block;
            line-height: 120px;
        }

            .nenshi-certificates .brand .brand-list a img {
                transition: all 0.3s;
                -opacity: 0.3;
                -height: 120px;border:1px solid #ddd;padding:3px;height:300px;
            }

            .nenshi-certificates .brand .brand-list a:hover img {
                opacity: 1;
            }


            @media screen and (max-width:480px){
                .nenshi-certificates .brand .brand-list a img{height:200px;}
                .navbar .navbar-brand {
                    display: block;
                    width: 100%;
                }
            }
/************************Sponsore Css complated*********************/
/*///////////////////////////////Footer css start/////////////////////////////*/
.section-padding-sm {
    padding: 40px 0 10px 0;
}

.widgets.footer-widgets .widget-title {
    color: #0067AC;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    font-size:20px;
}

.widgets.footer-widgets .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #0067AC;
}
.widgets.footer-widgets .widget-about img{
    height: 100px;
    width: auto;
}
.widgets.footer-widgets .widget-about p {
    margin-top: 10px;
    line-height: 20px;
    color: #0067AC;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

.widgets.footer-widgets .widget-about p a {
    color: #5CA329;
}

/*.widgets.footer-widgets .widget-quick-links ul {
    margin-top: -4px;
}
.widgets.footer-widgets .single-widget ul {
    padding-left: 0;
    margin-bottom: 0;
}*/


.widgets.footer-widgets .single-widget ul li a:hover{
    transition: .3s linear;
    padding-left: 5px;
}
/*.widgets.footer-widgets .widget-quick-links ul li:first-child a {
    padding-top: 0;
}*/

.widgets.footer-widgets .widget-quick-links ul li a {
    display: block;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #0067AC;
    padding: 5px 0;
     transition: .3s linear;
}

.widgets.footer-widgets .widget-contact ul li {
    color: #000;
    font-size: 13px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.widgets.footer-widgets .widget-contact ul li span {
    font-size: 14px;
    color: #0067AC;
    border: 2px solid #cccccc;
    border-radius: 3px;
    height: 32px;
    width: 32px;
    display: inline-block;
    line-height: 28px;
    text-align: center;
    margin-right: 20px;
}

.widgets.footer-widgets .widget-contact p {
    line-height: 20px;
    margin-bottom: 4px;
    flex-shrink: 100;
    font-size: 15px;
}
.widgets.footer-widgets .widget-contact ul li.phone{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
   
}

.widgets.footer-widgets .widget-contact ul li + li {
    margin-top: 20px;
}
.widgets.footer-widgets .widget-contact ul li a {
    color: #0067AC;
}


.widgets.footer-widgets .widget-contact address {
    font-size: 15px;
}




/*///////////////////////////////Footer css Complated/////////////////////////////*/

/*///////////////////////////////mini_footer css start//////////////////////////////*/

.cs-copyright-area {
   padding: 10px 0 10px;
}
.cs-copyright-area .footer-links {
    color: #fff !important;
    font-size: 14px;
}



/*///////////////////////////////mini_footer css complated//////////////////////////////*/


/*///////////////////////////////breadcrumb Page css Start//////////////////////////////*/

.about-banner-section {
    margin: 0;
    padding: 45px 0 0 0;
    background: url(../images/about-us-banner.jpg) center top no-repeat;
        background-size: auto auto;
    background-size: cover;
}
.about-banner-section .about-banner-title {
    margin: 0;
    padding: 0;
    text-align: center;
}
.about-banner-section .about-banner-title h2 {
    margin: 0;
    padding: 0;
    font-size: 48px;
    color: #0067AC;
    font-weight: 600;
    text-shadow: 0 2px 1px #fff;
    margin-bottom: 20px;
}

.about-banner-section .about-banner-title nav {
    display: inline-block;
    margin-top: 15px;
}
.about-banner-section .about-banner-title .breadcrumb {
    border-radius: 0;
    margin-bottom: 0;
    background-color: rgba(0, 103, 172,0.70);
    padding: 14px 50px;
}

.about-banner-section .about-banner-title .breadcrumb li {
    font-size: 13px;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
}
.about-banner-section .about-banner-title .breadcrumb li a {
    color: #fff !important;
}
.about-banner-section .about-banner-title .breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important;
    margin: 0 5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    content: "/";
}
/*///////////////////////////////breadcrumb Page css Complated//////////////////////////////*/



/*///////////////////////////////About Page css Start//////////////////////////////*/
.about-pharmacy-section {
    margin: 45px 0;
    padding: 0;
}


.about-pharmacy-section .about-pharmacy-conten h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 28px;
    color: #0067AC;
    font-weight: 600;
    text-transform: uppercase;
}
.about-pharmacy-section .about-pharmacy-conten p {
    margin: 0 0 15px 0;
    padding: 0;
    text-align: justify;
    font-size: 16px;
    color: #555555;
    font-weight: 400;
}
.about-pharmacy-section .about-pharmacy-conten p b{
    font-size: 18px;
    color: #0067AC;
    letter-spacing: 1px;
}
.about-pharmacy-section ul.about-pharmacy-list {
    float: left;
    list-style: none;
    width: 50%;
    margin: 0;
    padding: 0;
}
.about-pharmacy-section ul.about-pharmacy-list li a i {
    position: relative;
    left: 0px;
    top: 0;
    font-weight: 400;
    font-size: 14px;
    color: #0067AC;
    margin: 0 8px 0 0;
    padding: 0;
}
.about-pharmacy-section ul.about-pharmacy-list li a {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #555555;
    line-height: 32px;
}



.strength{
 -border:1px solid red;
}

.strength .strn_content{
 color: #fff;
 padding:30px 10px 10px 10px;
}
.strength .strn_content h2{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 20px;
}
.strength .strn_content p{
    line-height: 26px;
    text-align: justify;
font-size: 15px;
font-weight: 400;
}
.strength .strn_content p i{
    font-size: 16px;
    font-weight: 600;
}

.corpo_off_con{
    padding-top: 50px;
}
.corpo_off img{
    height: 350px;
    width: 100%;
}

.certification{
    -border:1px solid red;
    
}
.certification h2{
    margin-bottom: 25px;
    font-size: 28px;
    color: #0067AC;
    font-weight: 600;
}
.certification .auto-width{
    -border:1px solid red;
   width: 18%;
text-align: center;
margin: 10px;
}
.certification .auto-width .certi_image img{
    height: 250px;
    width: auto;
}
/*///////////////////////////////About Page css Complated//////////////////////////////*/

/*///////////////////////////////Manufacturing Page css Start//////////////////////////////*/

.about-pharmacy-section .images{
    margin-top: 50px;
}
.margin_top{
    margin: 30px 0;
}

.intr_bsn{
    margin-left: 25px;
    margin-bottom: 20px;
}
.intr_bsn li {
    font-size:16px;
}

.Backup_content{
    -border:1px solid red;
    margin-top: 20px;
}
.Backup_content h2{
   font-size: 24px;
   font-weight: 600;
}

    .Backup_content ul li {
        padding-left: 25px;
        line-height: 30px;
        color: #555555;
        font-size: 16px;
    }
.Backup_content ul li::before{
    content: '\eed9';
    font-family: icofont;
    position: absolute;
    font-size: 16px;
    left: 15px;
    color: #0067AC;

}

.service-images{
    margin-bottom: 70px;
}
.service-images img{
    border-radius: 100%;
height: 160px;
width: 168px;
margin: auto;
display: block;
border:4px solid #0067AC;
}
.serviceBox {
    margin-bottom: 40px;
}
.serviceBox .title{
    background-color: #5CA329;
    color: #fff;
    padding: 9px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    display: block;
    position: relative;
    transition: all 0.3s ease 0s;
    text-align: center;
}
.serviceBox .title:before,
.serviceBox .title:after{
    content: "";
    width: 20px;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(to right top, #0067AC 48%, transparent 50%);
    position: absolute;
    top: -27px;
    left: 0;
    right: 0;
    z-index: 1;
    transform: rotate(-45deg);
}
.serviceBox .title:after{
    width: 2px;
    height: 50px;
    border: 3px dotted #929292;
    -opacity: 0;
    top: -69px;
    z-index: 0;
    transform: rotate(0);
    transition: all 0.5s ease 0s;
}

/*///////////////////////////////Manufacturing Page css Complated//////////////////////////////*/


/*///////////////////////////////carrer Page css start//////////////////////////////*/

.join_team{
    -border:1px solid red;
    padding: 0 30px;
}

    .join_team h2 {
        color: #0067AC;
        font-weight: 600;
        padding-left: 15px;
        padding-bottom: 10px;
        font-size: 30px;
    }
.join_team .form-group .btn{
    background-color: #0067AC;
    color:#fff;
    cursor: pointer;
    border-radius: 0px;
    padding: 8px 50px;
    font-size: 18px;
}
.form-control{
    border-radius: 0px;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid #0067AC;
}
.inq_frm{
 border:1px solid #ddd;
 background-color: #fff;
 padding: 20px 40px 20px 40px;
}
/*///////////////////////////////carrer Page css Complated//////////////////////////////*/




.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border: 1px solid #ccc;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #e9ecef;
    font-size: 14px;
}
.table tbody tr td {
    vertical-align:middle !important;
    font-size:14px;
}
/*///////////////////////////////About Page css complated//////////////////////////////*/


.Contact_Us{
    padding-top: 0px;
}
.Contact_Us input[type=file] {
    font-size:15px;
}
.Contact_Us .ale_info_title h2 {
    font-size: 22px;
    color: #333;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
    margin-top: 30px;
}
.Contact_Us .title_separator {
    width: 70px;
    height: 3px;
    background-color: #0067AC;
    margin: 10px 0 20px 0;
}
.slz-shortcode {
    position: relative;
}
.slz-shortcode .block-wrapper {
    font-size: 0;
    margin: 0 -15px;
}
.slz-shortcode .contact-block {
    padding: 20px;
    text-align: center;
    border: solid 2px #dadfea;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 240px;
}

.slz-shortcode .contact-block .icon-block {
    margin: 0 auto 12px auto;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 68px;
    text-align: center;
    border: solid 2px #dadfea;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 36px;
    letter-spacing: .4px;
    color: #73CC33;
}
.slz-shortcode .contact-block:hover{
border-color: #fff;
    box-shadow: 2px 3px 14px 0 rgba(184,184,184,.4);
background-color: #fdfdfd;
}
.contact-block .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.56;
    letter-spacing: .2px;
    text-align: center;
    color: #333146;
}

.slz-shortcode .contact-block .content {
    font-size: 16px;
    letter-spacing: .2px;
    text-align: center;
}
.slz-shortcode .contact-block .content p{
    margin-bottom: 0px;
}
.Contact_Us .ale_info_fields .field {
    margin-bottom: 20px;
}

.send-message{
 -border:1px solid red;
  margin-top: 50px;
}


.Formulation_contact .contact-block {
    margin-top: 20px;
    display: block;
    padding: 15px 20px;
    border: solid 2px #dadfea;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.Formulation_contact .contact-block:hover {
    border-color: #fff;
    box-shadow: 2px 3px 14px 0 rgba(184,184,184,.4);
background-color: #fdfdfd;
}
.Formulation_contact .contact-block .icon-block {
    font-size: 24px;
    letter-spacing: .3px;
    text-align: center;
    color: #73CC33;
    display: inline-block;
}
.contact-block .icon-block + .title {
    padding-left: 9px;
}
.contact-block .title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
    text-align: left;
    color: #6f6e72;
    display: inline-block;
}

.contact-block .content {
    font-size: 16px;
    letter-spacing: .2px;
}



.Contact_Us input[type="text"]{
    width: 100%;
border: 2px solid #dadfea;
border-radius: 0px;
height: 45px;
font-size: 14px;
color: #777;
padding: 0 20px;
font-family: inherit;
}

.Contact_Us .container_fields .ale_textarea textarea {
    height: 174px;
    padding: 11px 20px;
}

.Contact_Us textarea{
    width: 100%;
border: 2px solid #e1e3e5;
border-radius: 2px;
font-size: 14px;
color: #777;
font-family: inherit;
line-height: 24px;
}

.Contact_Us input[type="submit"], .story input.submit{
    background-color: #0067AC;
    border: 1px solid #0067AC;
    border-radius: 0px !important;
    cursor: pointer;
padding: 10px 28px;
text-transform: uppercase;
color: #fff;
font-size: 16px;
font-weight: 400;
border-radius: 3px;
transition: all 150ms ease-in-out;
margin-top: 20px;
letter-spacing: 1px;
}
.Contact_Us input[type="text"]:focus{
    border: 2px solid #0067AC;
}
.Contact_Us textarea:focus{
     border: 2px solid #0067AC;
}



/*///////////////////////////////Home_page Media_Query css start//////////////////////////////*/

@media screen and (max-width: 480px){

    

.bar1, .bar2, .bar3 {
    width: 30px;
height: 4px;
background-color: #fff;
margin: 5px 0;
transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 5px);
    transform: rotate(-45deg) translate(-6px, 5px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -7px);
    transform: rotate(45deg) translate(-7px, -7px);
}



.navbar-toggler{
 position: absolute;
right: 15px;
top: 15px;
z-index: 9999;
cursor: pointer;
}

.navbar .navbar-nav .nav-item {
    margin-right: 0px;
}



.padd_0{
    padding: 0px;
}
.padd_xs_0{
    padding: 0px;
}
.padd_15{
    padding-top: 15px;
    padding-bottom: 15px;.product_main {
    border: 1px solid #ddd;
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 370px;
    box-shadow: 0 2px 3px #f5f5f5;
}
}
.padd_xs-15{
    padding: 15px;
}



.cs-copyright-area {
    padding: 10px 0 10px;
}
.cs-copyright-area .footer-links {
    font-size: 11px;
}


.cs-copyright .back-to-top a i {
    height: 25px;
    line-height: 24px;
    margin: 0 0 0 8px;
    width: 25px;
    position: absolute;
    top: -25px;
    right: 0px;
}

.header-top {
    padding: 0px 0px;
    height: 35px;
}

.header-top .social-icon li a{
padding: 5px 0;
width: 35px;
}
.header-top .top-left p {
    font-size: 9px;
    padding: 5px 0;
    margin-left: 15px;
}
.navbar .navbar-brand img {
    position: relative;
    display: block;
    height: 48px;
    margin: auto;
}

.call-to-action {
    padding: 15px 0;
}

.call-to-action .title-box {
    padding-left: 50px;
}
.call-to-action .title-box .icofont {
    position: absolute;
    left: 0px;
    top: 0;
    font-size: 45px;
}
.call-to-action .title-box h2 {
    font-size: 15px;
    line-height: 15px;
    padding-top: 19px;
}
.call-to-action .title-box p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.call-to-action .btn-box {
    position: relative;
    float: right;
    padding: 0px 0;
}
.btn-style-two {
    font-size: 12px;
    padding: 9px 10px;
}
.call-to-action .title-box p span {
    font-size: 14px;
}
.tm-section-heading h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 24px;
}
.tm-section-heading {
    padding: 0 15px;
    margin-bottom: 10px;
}
.Home_About .content p {
    line-height: 22px;
    margin: 0 0 15px 0;
    font-size: 14px;
}
.who-we-are-section {

    padding: 0px 0px;

}
.who-we-are-section ul li {
    font-size: 12px;
}

.why-buy-from-us-main {
    padding: 15px 10px;
    position: relative;
    top: 0px;
    bottom: 0;
}
.why-buy-from-us-main h2 {
    margin: 0 0 10px 0;
    font-size: 20px;
}
.why-buy-from-us ul li {
    width: 100%;
    padding: 15px 0;
}
.product_main {
    margin-top: 10px;
    min-height: 390px;
}
.new-box, .sale-box {
    top: 8px;
    right: -3px;
}
.more_link {
    right: 10px;
}
.one_third {
    width: 100%;
    margin-bottom: 15px;
}
.service-block .inner-box {
    padding: 24px 23px 65px;
}
.kc-css-23311{
margin-bottom: 20px;
}
.h-about {
    padding-bottom: 25px;
}
.h-about .about-box {
    padding: 20px 10px;
}
.h-about .about-box h4 {
    font-size: 24px;
}
.h-about .about-box img {
    margin-bottom: 0px;
}
.h-about .about-box p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 10px;
}
.h-about .about-box ul li:nth-child(1) {
    width: 100%;
}
.h-about .about-box ul {
    margin-bottom: 0px;
}
.h-about .client_testi {
    padding: 20px 0 0 0;
}

.section-padding-sm {
    padding: 20px 0;
}
.widgets.footer-widgets .widget-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    
}
.single-widget{
    padding-bottom: 20px;
}
    /*///////////////////////Aboutus Page Start////////////////////*/
    .about-banner-section {
        margin: 0;
        padding: 10px 0 0 0;
    }
.about-banner-section .about-banner-title h2{
    font-size:35px;
    margin-bottom: 0px;
}
.about-banner-section .about-banner-title .breadcrumb {
    padding: 10px 20px;
}
.about-banner-section .about-banner-title .breadcrumb li {
    font-size: 10px;
}
.about-banner-section .about-banner-title .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0px;
}
.about-pharmacy-section {
    margin: 15px 0;
}
.about-pharmacy-section .about-pharmacy-conten h2 {
    margin-bottom: 10px;
    font-size: 20px;
}
.about-pharmacy-section .about-pharmacy-conten p {
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 20px;
}
.about-pharmacy-section ul.about-pharmacy-list {
    width: 100%;
}
.about-pharmacy-section img{
    height: 200px;
    width: 100%;
}
.misi_visi .mission_img img {
    height: 200px;
    width: 100%;
}
.misi_visi .mission_img {
    margin-bottom: 0;
}
.misi_visi .mission_content h1 {
    padding-bottom: 7px;
    font-size: 20px;
}
.misi_visi .mission_content p {
    line-height: 20px;
    font-size: 12px;
}
.misi_visi .mission_content {
    margin-bottom: 0;
}




#news-slider {
    margin-top: 30px;
}

.post-slide {
    background: #fff;
    margin: 0 15px;
}

    .post-slide .post-img {
        position: relative;
        overflow: hidden;
    }

        .post-slide .post-img img {
            width: 100%;
            height: auto;
            transform: scale(1,1);
            transition: transform 0.50s linear;
        }

    .post-slide:hover .post-img img {
        transform: scale(1.1,1.1);
    }

    .post-slide .over-layer {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background: rgba(0, 0, 0,0.4);
        transition: all 0.50s linear;
    }

    .post-slide:hover .over-layer {
        opacity: 1;
        text-decoration: none;
    }

    .post-slide .over-layer i {
        position: relative;
        top: 45%;
        text-align: center;
        display: block;
        color: #fff;
        font-size: 25px;
    }

    .post-slide .post-content {
        background: #fff;
        padding: 8px 30px 40px;
    }

    .post-slide .post-title {
        margin: 8px 0 15px 0;
    }

        .post-slide .post-title a {
            font-size: 15px;
            font-weight: bold;
            color: #333;
            display: inline-block;
            text-transform: uppercase;
            transition: all 0.3s ease 0s;
        }

            .post-slide .post-title a:hover {
                text-decoration: none;
                color: #3498db;
            }

    .post-slide .post-description {
        line-height: 24px;
        color: #808080;
        margin-bottom: 40px;
    }

    .post-slide .post-date {
        color: #a9a9a9;
    }

        .post-slide .post-date i {
            font-size: 20px;
            margin-right: 8px;
            color: #CFDACE;
        }

    .post-slide .read-more {
        padding: 5px 10px;
        float: right;
        font-size: 12px;
        background: #e9e9e9;
        color: #808080;
        text-transform: uppercase;
    }

        .post-slide .read-more:hover {
            background: #3498db;
            text-decoration: none;
            color: #fff;
        }

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

    .owl-controls .owl-buttons .owl-prev {
        background: #fff;
        position: absolute;
        top: -13%;
        left: 15px;
        padding: 0 18px;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        transition: background 0.5s ease 0s;
    }

    .owl-controls .owl-buttons .owl-next {
        background: #fff;
        position: absolute;
        top: -13%;
        right: 15px;
        padding: 0 18px;
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        transition: background 0.5s ease 0s;
    }

        .owl-controls .owl-buttons .owl-prev:after,
        .owl-controls .owl-buttons .owl-next:after {
            content: "\f104";
            font-family: FontAwesome;
            color: #333;
            font-size: 30px;
        }

        .owl-controls .owl-buttons .owl-next:after {
            content: "\f105";
        }

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 10px;
    }
}
