/* ------------------------------------------------
  Project:   Labortech - Laboratory & Science Research HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Transform translate
  4. Box Shadow
  5. Pre Loader
  6. Background Overlay
  7. Scroll to Top
  8. Header
  9. Footer
  10. Page Title
  11. Flat Icon

 
/* ------------------------
    General
------------------------*/
a, a:focus {
  text-decoration: none !important;
}

a:focus, a:hover {
  color: #009fbf;
  text-decoration: none !important;
}

a, button, input {
  outline: medium none !important;
  color: #009fbf;
}

*::-moz-selection {
  background: #009fbf;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #009fbf;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #009fbf;
  color: #fff;
  text-shadow: none;
}

/* ------------------------
    Transition
------------------------*/
a, i, .btn, button, img, span, .dropdown-item, .nav-link.dropdown-toggle::after, .social-icons li:hover a, .owl-item, .service-item, .service-desc, .service-item .service-icon, .featured-item, .featured-item .featured-icon, .featured-item .featured-icon i, .team-member, .team-description, .post, .post-image:after, .product-link {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Transform translate
------------------------*/

/*--translate-X--*/
.transform-x, #search-input-box {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

/*--translate-Y--*/
.transform-y, .align-center, .image-column {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
}

/*--translate-XY--*/
.video-btn-pos, .post-link {
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
}

/* ------------------------
    Box Shadow
------------------------*/
.box-shadow, .dropdown-menu, #header-wrap.fixed-header, .navbar-nav ul, .service-item .service-desc, .featured-item.style-2, .post {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .08);
  -moz-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .08);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .08);
}

.owl-carousel .post, .owl-carousel .featured-item, .owl-carousel .service-desc, .service-item.style-3, .service-item.style-3 .service-icon {
  -webkit-box-shadow: 0 0 22px 0 rgba(7, 7, 7, 0.08);
  -moz-box-shadow: 0 0 22px 0 rgba(7, 7, 7, 0.08);
  box-shadow: 0 0 22px 0 rgba(7, 7, 7, 0.08);
}

/* ------------------------
    Pre Loader
------------------------*/
.clear-loader {
  background-color: #009fbf;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto
}

.loader {
  position: relative;
  display: inline-block;
  margin: 4em;
  width: 4em;
  height: 4em;
  transform-origin: center center;
  animation: rotate-anim 3s ease infinite;
}

.loader .plus {
  position: absolute;
  width: 4em;
  height: 1em;
  top: 1em;
  left: 0em;
  background-color: white;
  animation: plus-anim 3s linear infinite;
  transform-origin: center center;
  transform: rotate(45deg);
}

.loader .plus:nth-of-type(2) {
  transform: rotate(135deg);
}

.loader .dot {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  left: 1.25em;
  top: 1.25em;
}

.loader .dot:before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: white;
  animation: dots-anim 3s linear infinite;
}

.loader .dot:nth-of-type(3) {
  transform: rotate(270deg);
}

.loader .dot:nth-of-type(4) {
  transform: rotate(360deg);
}

.loader .dot:nth-of-type(5) {
  transform: rotate(450deg);
}

.loader .dot:nth-of-type(6) {
  transform: rotate(540deg);
}

/* ------------------------
    Background Overlay
------------------------*/
[data-overlay] {
  position: relative;
  z-index: 0;
}

[data-overlay]:before {
  position: absolute;
  content: '';
  /*background-color: #0a1426;*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

[data-overlay].white-overlay:before {
  background-color: #fff;
}

[data-overlay].theme-overlay:before {
  background-color: #009fbf;
}

[data-overlay].hero-overlay:before {
  /*background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);*/
}

[data-overlay].overlay-50:before {
  width: 50%;
}

[data-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before {
  opacity: 1;
}

[data-overlay="0"]:before {
  opacity: 0;
}

.img-overlay[data-overlay]:before {
  z-index: 1;
}

/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translate3d(0, 200%, 0);
  -ms-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}

.scroll-top a, .scroll-top a:visited {
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 32px;
  color: #ffffff;
  background: #009fbf;
}

.scroll-top a:hover, .scroll-top a:focus {
  color: #009fbf;
  background: #1f2632;
}

.scroll-top.scroll-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------
    Header
------------------------*/

/*--Header top--*/
.topbar-link {
  font-size: 14px;
}

.topbar-link i {
  font-size: 20px;
  margin-right: 10px;
}

.topbar-link a:hover {
  color: #009fbf
}

.header-top .social-icons li a {
  background: rgba(255, 255, 255, 0.2);
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #454545;
}

/*--Header Main--*/
#header-wrap {
  position: relative;
}

#header-wrap.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  background: #ffffff;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }

}

.logo img {
  max-height: 50px;
  max-width:250px;
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
  border-radius: 0;
  padding: 20px;
  background: #ffffff;
  top: 100%;
  border: none;
  margin-top: 0;
  left: -100%;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(42, 39, 94, .06);
  box-shadow: 0 0.5rem 1rem rgba(42, 39, 94, .06);
}

.navbar-brand {
  margin-right: 0;
  padding: 0;
}

.nav-item.dropdown .dropdown-menu a {
  display: block;
  color: #1f2632;
  padding: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  white-space: nowrap;
  position: relative;
  background: none;
  font-size: 15px;
  font-weight: 400;
}

.nav-item.dropdown .dropdown-menu a:hover {
  color: #009fbf;
  padding-left: 15px;
}

#header-wrap.fixed-header .navbar-brand {
  color: #ffffff
}

@media (min-width:992px) {
  .navbar-collapse {
    width: auto;
  }

  .navbar-expand-lg {
    justify-content: space-between;
  }

  .navbar-nav .dropdown-menu {
    min-width: 12em !important;
    max-width: 20em !important;
  }

  .navbar-nav .dropdown > .dropdown-menu {
    opacity: 0;
    position: absolute;
    display: block;
    pointer-events: none;
    background: #ffffff;
    -webkit-transition: all 0.5s ease-in-out 0s, opacity 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out 0s, opacity 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out 0s, opacity 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out 0s, opacity 0.5s ease-in-out;
    transition: all 0.5s ease-in-out 0s, opacity 0.5s ease-in-out;
  }

  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    left: 0;
  }

  .navbar-nav .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    display: block;
  }

  .nav-link.dropdown-toggle::after {
    border: solid #1f2632;
    border-width: 0 1px 1px 0;
    width: 0.425rem;
    height: 0.425rem;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    vertical-align: 0.15em;
  }

  .nav-link.dropdown-toggle:hover::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }

  .navbar-nav .nav-link {
    line-height: 80px;
  }

  .navbar-nav .dropdown-submenu .dropdown-toggle::after {
    border-top: 0.125rem solid #1f2632;
    border-right: 0.125rem solid #1f2632;
    border-bottom: none;
    border-left: none;
    width: 0.425rem;
    height: 0.425rem;
    position: absolute;
    right: 0;
    margin: 0;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

}

@media (max-width:991.98px) {
  .navbar-nav .dropdown-submenu .dropdown-menu {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 0;
  }

}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
  background: #ffffff;
  left: 100%;
  margin: 0;
  right: auto;
  top: 0;
}

.navbar-nav .dropdown-submenu {
  display: block;
  position: relative;
}

.navbar-nav .nav-link {
  color: #1f2632;
  font-size: 16px;
  padding: 0 !important;
  border-radius: 0;
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
  color: #009fbf;
}

.language-selection button {
  box-shadow: none;
  border: none;
  background: none;
  color: #454545;
  font-size: 14px;
  padding: 0;
}

.language-selection .dropdown-menu {
  min-width: inherit;
  padding: 0;
}

.language-selection .dropdown-item {
  font-size: 14px;
  padding: 5px 15px
}

.language-selection .dropdown-toggle::after {
  vertical-align: middle;
}

/*--Header Search--*/
.search-icon a {
  font-size: 30px;
  color: #1f2632;
  line-height: 30px;
}

#search-input-box {
  position: fixed;
  left: 50%;
  width: 100%;
  max-width: 1140px;
  z-index: 999;
  text-align: center;
  background: #0d092c;
  z-index: 9999;
}

.search-inner {
  padding: 5px 5px;
}

#search-input-box .form-control {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  padding: 0;
}

#search-input-box .btn {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
}


#search-input-box #close-search {
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  padding-right: 10px;
  padding-right: 0;
}

.right-nav {
  position: relative;
}

/*--Header Cart--*/
.cart {
  position: relative;
  z-index: 200;
}

[data-cart-items] {
  position: relative;
  display: inline-block;
}

[data-cart-items]::before {
  content: attr(data-cart-items);
  position: absolute;
  top: -.5rem;
  right: -.75rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 50%;
  background-color: #009fbf;
  color: #fff;
}

.cart a i {
  font-size: 26px;
  color: #1f2632;
}

/* ------------------------
Modal Popup
------------------------*/
.modal.cart-modal {
  padding-right: 0 !important;
}

.modal.cart-modal .modal-dialog {
  margin: 0 0 0 auto;
  height: 100%;
  max-width: 450px;
}

.modal.cart-modal .modal-content {
  border: none;
  border-radius: 0;
  height: inherit;
  overflow-y: auto;
}

.modal.cart-modal.fade .modal-dialog {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.modal.cart-modal.show .modal-dialog {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.modal-header .close {
  background: #009fbf;
  color: #fff;
  opacity: 1;
}

/* ------------------------
    Footer
------------------------*/
.media-icon.list-inline li {
  display: inline-block;
}

.media-icon li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.media-icon li:last-child {
  margin-bottom: 0;
}

.media-icon li i {
  background: #ffffff;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 22px;
  color: #009fbf;
  margin-right: 10px;
}

.media-icon li a {
  color: #454545;
}

.media-icon li a:hover {
  color: #009fbf;
  text-decoration: underline !important;
}

.footer-list li {
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list li a {
  color: #454545;
  position: relative;
}

.footer-list li a:hover {
  color: #009fbf;
  padding-left: 8px;
}

.social-icons.footer-social li a {
  background: none;
  border: 1px solid rgba(233, 233, 233, 0.2);
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 24px;
}

/* ------------------------
    Page Title
------------------------*/
.page-title {
  display: block;
  position: relative;
  padding: 100px 0
}

.page-title h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 500
}

.breadcrumb {
  background: none;
  display: inline-block;
  margin: 0;
  text-transform: capitalize;
  color: #1f2632;
  font-weight: 600;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item a {
  color: #1f2632
}

.breadcrumb-item.active, .breadcrumb-item a:hover {
  color: #009fbf;
}

.breadcrumb-item + .breadcrumb-item:before {
  color: #009fbf;
  content: "\f054";
  font-family: 'Line Awesome Free';
  font-weight: 700;
}

/* ------------------------
    Flat Icon
------------------------*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticond41d.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff2") format("woff2"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.html#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.html#Flaticon") format("svg");
  }

}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;

}

.flaticon-laboratory:before {
  content: "\f100";
}

.flaticon-flask:before {
  content: "\f101";
}

.flaticon-laboratory-1:before {
  content: "\f102";
}

.flaticon-biology:before {
  content: "\f103";
}

.flaticon-medical-laboratory:before {
  content: "\f104";
}

.flaticon-research:before {
  content: "\f105";
}

.flaticon-research-1:before {
  content: "\f106";
}

.flaticon-diabetes-test:before {
  content: "\f107";
}

.flaticon-blood:before {
  content: "\f108";
}

.flaticon-test:before {
  content: "\f109";
}

.flaticon-medical-laboratory-1:before {
  content: "\f10a";
}

.flaticon-heathcare-and-medical:before {
  content: "\f10b";
}

.flaticon-help-call:before {
  content: "\f10c";
}

.flaticon-award:before {
  content: "\f10d";
}

.flaticon-pharmacy:before {
  content: "\f10e";
}

.flaticon-biology-1:before {
  content: "\f10f";
}

.flaticon-doctor:before {
  content: "\f110";
}

.flaticon-medical-assistance:before {
  content: "\f111";
}

.flaticon-doctor-1:before {
  content: "\f112";
}

.flaticon-hospital:before {
  content: "\f113";
}

.flaticon-working-hours:before {
  content: "\f114";
}

.flaticon-medical-history:before {
  content: "\f115";
}

.flaticon-medical-report:before {
  content: "\f116";
}

.flaticon-calendar:before {
  content: "\f117";
}

.flaticon-doctor-2:before {
  content: "\f118";
}







/*------------New Css--------------*/
.header .container-fluid.px-lg-8{padding-left: 4rem !important; padding-right: 4rem !important;}

#header-wrap .navbar-nav .nav-item {margin: 0 13px;}
#header-wrap .navbar-nav .nav-item .nav-link{ font-size:14px;}
.banner.fullscreen-banner {min-height: 400px; height: 400px !important;}
.banner.fullscreen-banner .item  {background-size: cover; background-repeat: no-repeat; background-position: center center;}
.sec-tab ul.nav.nav-tabs {justify-content: center; background: #009fbf; margin: 0 0 10px 0; height: auto; overflow: hidden; border: none;}
.sec-tab ul.nav.nav-tabs li.nav-item a {padding: 15px 25px; border: none; color: #fff; border-radius: 0; border: none;}
.sec-tab ul.nav.nav-tabs li.nav-item a.active, .sec-tab ul.nav.nav-tabs li.nav-item a:hover {background: #1f2632; }

.sec-tab .tab-content .tab-pane .card {width: 20%; float: left; padding:0 5px; border: none;}
.sec-tab .tab-content .tab-pane .card .card-content {padding: 10px; box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;}
.sec-tab .tab-content .tab-pane .card .card-content img {border-radius: 0;}
.sec-tab .tab-content .tab-pane .card .card-body {padding: 5px;}
.sec-tab .tab-content .tab-pane .card .mt-n3 {margin-top: -20px !important;}
.sec-tab .tab-content .tab-pane .card h2 {margin: 10px 0 0 0 !important; font-size: 16px; line-height: 20px;}
.sec-tab .tab-content .tab-pane .card h2 a{ color:#009fbf;}
.sec-tab .tab-content .tab-pane .card h2 a:hover{ color:#1f2632;}

.section-title {margin-bottom: 20px !important;}
#press-release .release-content {border: 1px solid #e9eaed; padding: 20px; transition: 1s ease;}
#press-release .release-content:hover{background: #1f2632;}

.home-product-slider .item .card-body {padding: 0;}
.home-product-slider .item .card-body .product-price a {font-size: 14px;}
.home-product-slider .item .card-body .product-price a:hover{color:#1f2632;}
.testimonial .testimonial-caption h5{ font-size:22px;}
.testimonial .testimonial-caption label {font-size: 18px;}
.testimonial-content p {font-size: 20px;}

.footer .primary-footer .p-md-6 {padding: 3rem 4rem 0 !important;}

.card.product-card {border-bottom: 1px solid #f6f6f6; margin: 0 0 10px !important; padding: 0 0 10px 0 !important;}
.card.product-card .card-body {padding: 0; display:flex;}
.product-list.product-card .card-body .pro-des{ width:100%;}
.product-list.product-card .card-body .product-title a {font-size: 14px;}
.product-list.product-card .card-body .product-title a:hover{ color:#009fbf;}
.product-list.product-card .card-body .price-btn {text-align: center;}
.product-list.product-card .card-body .price-btn a.btn-cart {display: inline-block; background: #009fbf; padding: 10px; color: #fff; border-radius: 5px; margin: 10px 0 0 0;}
.product-list.product-card .card-body .price-btn a.btn-cart:hover{ background:#1f2632;}

.product-page .product-categories {border-radius: 10px; padding: 0 !important;}
.product-page .product-categories h4.widget-title.mb-3 {background: #009fbf; text-align: center; color: #fff; padding: 10px;    border-radius: 5px 5px 0px 0px;}
.product-page .product-categories ul.list-group {padding: 0 15px 15px;}
.product-page .product-categories ul.list-group li {background: #f6f6f6; padding: 8px 15px !important; margin: 0 0 4px !important; border-radius: 6px; border: 1px solid #f1f1f1;}
.product-page .product-categories .row { margin: 0 !important; border-bottom: 1px solid #f6f6f6; padding: 5px 0;}
.product-page .product-categories .row:last-child {margin-bottom: 15px !important; border:none;}

.product-details .name {font-weight: 600;}
.product-details .ms-3 a.btn{ color:#fff;}
.product-details .ms-3 a.be-buying.btn {background: #009fbf;}
.product-details .ms-3 a.discount.btn {background: #1f2632c7;}
.product-details .ms-3 a.customization.btn {background: #009fbfa1;}
div#myTabContent {background: #fff; margin: 10px 0 0 0; padding: 20px !important; border-radius: 0 0 10px 10px;}

.widget.product-License {border-radius: 10px; padding: 0 !important; background:#fff !important;}
.product-License h4.widget-title.mb-3 {background: #009fbf; text-align: center; color: #fff; padding: 10px;    border-radius: 5px 5px 0px 0px;}
.product-License .card-body {padding:0 15px;}
.product-License .card-body .form-check {border-bottom: 1px solid #f6f6f6;}
.product-License .card-body .form-inline a.btn {background: #1f2632; font-size: 13px; padding: 8px 10px; margin: 0 0 15px 0; color: #fff;}
.product-License .card-body .form-inline a.btn.buy{background:#009fbf;}

.sec-service{ padding:20px 0 30px !important;}
.sec-service .service-box {box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; min-height: 475px;}
.sec-service .service-box .img-box img {width: 100%;}
.sec-service .service-box .service-details {text-align: center; padding: 0 20px 20px;}
.sec-service .service-box .service-details .icon { margin-top: -40px; margin-bottom: 10px; background: #009fbf; position: relative; display: inline-flex; padding: 5px; border-radius: 5px;}
.sec-service .service-box:hover .service-details .icon {background: #1f2632;}
.sec-service .service-box .service-details .icon img {width: 40px;}
.sec-service .service-box .service-details p {font-size: 14px;}
.sec-service .service-box .service-details a.btn {background: #009fbf; color: #fff;}

.sec-process .process-content {height: 350px; background-size: cover; padding: 20px; display: flex; align-items: center; justify-content: center; color: #fff;}
.sec-process .process-content .process-content-box {background: #0006; position: absolute; height: 100%; align-items: center; display: flex; justify-content: center;
    padding: 20px; transition:all 0.5s ease;}
.sec-process .process-content:hover .process-content-box{ background:#09204a4d;}	
.sec-process .process-content h5 {color: #fff;}
.sec-process .process-content .process-number {position: absolute; bottom: -25px; right: 10px;}
.sec-process .process-content .process-number h2 {color: #fff; font-size: 72px; font-weight: 500; text-shadow: 1px 1px 7px #666;}
.sec-process .process-content .process-content-box p {line-height: 1.4;}

.sitepam-content h4 {border-bottom: 1px solid #f6f6f6; padding: 0 0 5px 0;}
.sitepam-content ul {margin: 0 0 30px 0; padding: 0;}
.sitepam-content ul li {padding: 0 0 5px 0; margin: 0; list-style-type: none;}
.sitepam-content ul li a{ transition:all 0.5s ease;}
.sitepam-content ul li a i.las {padding-right: 5px;}
.sitepam-content ul li a:hover{color: #1f2632; padding-left:5px;}

.inquire-buying #buying-form {background: #f5f8fd; padding: 30px;}

#header-wrap .search-icon form {padding: 0;}
#header-wrap .search-icon form button.btn {height: 50px; background: #009fbf; width: 65px; padding: 0; display: flex; align-items: center; justify-content: center;}
#header-wrap .search-icon form button.btn .las {color: #fff;}

.footer-content { padding: 50px 0 0px;}
.footer-content .ftr-contact ul {display: flex; align-items: center; justify-content: end; padding-top: 5px;}
.footer-content .ftr-contact ul li {margin: 0; padding: 0 20px 0 0; float: left;}
.footer-content .ftr-contact ul li:last-child {padding: 0;}
.footer-content .social-icons.footer-social li a{border: 1px solid rgb(255 255 255);}

.row.btm-footer {margin: 20px 0 0px 0; border-top: 1px solid #fff;}
.btm-footer .footer-links ul {display: flex; height: 100%; align-items: center; justify-content: start; padding: 20px 0;}
.btm-footer .footer-links ul li {float: left; margin: 0; padding: 0 20px 0 0; position:relative;}
.btm-footer .footer-links ul li a:hover{ padding-left:0;}
.btm-footer .footer-links ul li::before { content: ""; width: 1px; height: 15px;  background: #000; position: absolute; right: 10px; top: 5px;}
.btm-footer .footer-links ul li:last-child::before{ content:none;}
.btm-footer p.copyright {margin: 0; display: flex; height: 100%; align-items: center; justify-content: end;}


.cookis {position: fixed; bottom: 30px; left: -370px; max-width: 345px; width: 100%; background: #fff; border-radius: 8px; padding: 15px 25px 22px;  transition: left 0.9s ease; box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;}
.cookis.show {left: 30px; z-index: 999;}
.cookis header {display: flex; align-items: center; column-gap: 15px;}
.cookis header i {color: #4070f4; font-size: 32px;}
.cookis header h3 {color: #2363d5; font-weight: 500; margin: 0;}
.cookis .data {margin-top: 10px;}
.cookis .data p {color: #333; font-size: 14px; line-height: 22px;}
.cookis .buttons { margin-top: 16px; width: 100%; display: flex; align-items: center; justify-content: space-between;}
.buttons .button { border: none; color: #fff; padding: 8px 0; border-radius: 4px; background: #4070f4; cursor: pointer; width: calc(100% / 2 - 10px); transition: all 0.2s ease;}
.buttons #acceptBtn:hover {background-color: #034bf1;}
#declineBtn {border: 2px solid #4070f4; background-color: #fff; color: #4070f4;}
#declineBtn:hover {background-color: #4070f4; color: #fff;}

#myTabContent .tab-pane ul {padding: 0 0 20px 20px;}


.btm-footer .footer-links ul li{padding: 0 10px 0 0;}
.footer-list li a{ font-size:14px;}
.btm-footer .footer-links ul li::before{ right:5px;}
.btm-footer p.copyright{ font-size:14px;}

.payment {display: flex; height: 100%; align-items: center; justify-content: end;}
.payment ul li {display: inline-block; margin: 0 0 0 10px;}
.payment ul li img {width: 80px;}
.payment ul li img.canadatrust {width: 100px;}
.sec-tab ul.nav.nav-tabs{ justify-content: space-around;}
.sec-tab ul.nav.nav-tabs li.nav-item a { width:100%; padding: 15px;}

@media only screen and (max-width:990px){
    
    .payment{justify-content: center;}
.payment ul{ margin:10px;}

.header .container-fluid.px-lg-8 {padding: 10px 2rem !important;}
.banner.fullscreen-banner {min-height: 350px; height: 350px !important;}
.banner.fullscreen-banner .align-center{    padding: 0px 0 0px !important;}
.fullscreen-banner .align-center h1{ font-size:42px;}
.sec-tab .tab-content .tab-pane .card .card-body {padding: 0;}
.sec-service .service-box{ height:inherit; margin-bottom:20px;}



.page-title{padding: 50px 0; background-size: 100% 100%;}
section { padding: 50px 0 !important;}
.footer .primary-footer .p-md-6 { padding: 3rem 4rem 2rem !important;}
.product-details .ms-3 a.btn{margin-left: 4px;}
div#myTabContent{ margin-bottom:20px;}

.footer-content .social-icons .list-inline {text-align: center; margin: 0 0 20px 0 !important;}
.footer-content .ftr-contact ul{justify-content: center;}
.footer-content .ftr-contact ul li{padding: 0 10px 0 0;}
.footer-content .ftr-contact ul li p, .footer-content .ftr-contact ul li a{ font-size:14px; padding-top: 5px;}
.footer-content .ftr-contact ul li i  {margin-right: 5px;}
.btm-footer .footer-links ul{justify-content: center;}
.btm-footer p.copyright{justify-content: center; font-size:14px;}
}

@media only screen and (max-width:550px){
.header-top.light-bg {display: none;}
.navbar{ display: block;}
button.navbar-toggler {float: right;}
.banner.fullscreen-banner {min-height: 200px; height: 200px !important;}
.banner.fullscreen-banner .align-center{ top:20%;}
.sec-tab .tab-content .tab-pane .card{ width:50%; margin-bottom:10px;}
.home-product-slider .item .product-img img {width: 100%;}
.footer .primary-footer .p-md-6 {padding: 2rem 2rem !important;}
section { padding: 30px 0 !important;}

.product-page .product-img img {display:block; margin-left: auto; margin-right: auto;}
.product-list.product-card .card-body{display: block; padding: 10px 0;}
.product-list.product-card .card-body .price-btn {text-align: left;}
.product-list.product-card .card-body .product-title {padding-bottom: 10px;}
.product-page .product-categories .row img {width: 100%;  margin: 5px 0 5px 0;}

.product-details .ms-3 a.btn {width: 100%; margin: 0 0 5px 0;}
.releted .product-img img {width: 100%;}

.footer-content .ftr-contact ul{ display:block;}
.footer-content .ftr-contact ul li{ width:100%; text-align:center; padding:0 0 10px 0; display: block;}
.footer-content .ftr-contact ul li i { margin-right: 0;}
.footer-content .ftr-contact ul li p, .footer-content .ftr-contact ul li a {font-size: 14px; padding-top: 0; display: block;}

.btm-footer .footer-links ul {justify-content: center; display: block; overflow: hidden; text-align: center; padding: 10px 0 20px 0;}
.btm-footer .footer-links ul li {float: none; margin: 0; padding: 0 20px 0 0; position: relative; display: inline-block;}
.btm-footer p.copyright{padding-bottom: 20px;}
.scroll-top{bottom: 0px; right: 0px;}

.header .container-fluid.px-lg-8 { padding: 10px 1rem !important;}
.header #header-wrap {padding: 10px 0 0;}
#header-wrap .search-icon { display: block !important;  width: 100%;  padding: 10px 0 0;}
#header-wrap .search-icon form .form-control{ height:40px;}
#header-wrap .search-icon form button.btn{ height: 40px; width: 45px;}

#header-wrap.fixed-header .right-nav {display: none !important;}
.cookis.show{left: 15px;}
}



