* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Manrope-Regular';
}

@font-face {
  font-family: 'Manrope-Regular';
  src: url("./font/Manrope-Regular.ttf");
}

@font-face {
  font-family: 'Manrope-Medium';
  src: url("./font/Manrope-Medium.ttf");
}

@font-face {
  font-family: 'Manrope-SemiBold';
  src: url("./font/Manrope-SemiBold.ttf");
}

@font-face {
  font-family: 'Manrope-Bold';
  src: url("./font/Manrope-Bold.ttf");
}

.header {
  padding-bottom: 89px;
}

.header .navbar {
  position: fixed;
  width: 100%;
  z-index: 298;
  background: white;
  border-bottom: 1px solid #0D8CD1;
}

.header .nav-link {
  font: 18px/26px 'Manrope-Medium';
  color: #3F505A;
  position: relative;
  -webkit-transition: all .40s ease;
  transition: all .40s ease;
}

.header .nav-link:hover {
  color: #0D8CD1;
}

.header .nav-link.active {
  font-family: 'Manrope-SemiBold';
  color: #0D8CD1;
}

@media (min-width: 768px) {
  .header .nav-link.active::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0D8CD1;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.header #productDropdown {
  background: #EFEFEF;
  border-radius: 0;
  border: 0;
  padding: 11px 18px;
  position: absolute;
  z-index: 1;
  right:0px;
}

@media (max-width: 767px) {
  .header #productDropdown {
    width: 100%;
  }
}

.header #productDropdown a {
  font: 18px/26px 'Manrope-Medium';
  text-decoration: none;
  color: #3F505A;
}

.header #productDropdown .item {
  position: relative;
  border-bottom: 1px solid #CCCDCF;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.header #productDropdown .item a {
  padding-right: 40px;
  display: block;
  white-space: nowrap;
  position: relative;
}

.header #productDropdown .item .collapseContent a {
  font-size: 16px;
  padding-top: 8px;
}

.header #productDropdown .collapseItem::after {
  content: '\f054';
  font-family: 'FontAwesome';
  font-size: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #0D8CD1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0D8CD1;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .40s ease;
  transition: all .40s ease;
}

.header #productDropdown .collapseItem:not(.collapsed)::after {
  content: '\f078';
  font-family: 'FontAwesome';
  font-size: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #0D8CD1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0D8CD1;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.circle {
  border: 1px solid #0D8CD1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0D8CD1;
}

.bg-banner {
  position: relative;
}

.bg-banner .gradientOverlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000 100%);
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}

.bg-banner .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bg-banner .content h2 {
  color: #EFEFEF;
}

@media (max-width: 767px) {
  .bg-banner img {
    height: 300px;
  }
}

.heading {
  font: 48px/56px 'Manrope-SemiBold';
}

@media (max-width: 1500px) and (min-width: 992px) {
  .heading {
    font-size: 40px;
    line-height: 52px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .heading {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .heading {
    font-size: 26px;
    line-height: 36px;
  }
}

.section-py {
  padding: 100px 0;
}

.navTabs a {
  border: 1px solid #3F505A;
  height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .40s ease;
  transition: all .40s ease;
}

.navTabs a .icon {
  background: #122027;
  height: 100%;
  width: 137px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navTabs a.active, .navTabs a:hover {
  background: #73AA33;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.navTabs li {
  width: 49%;
}

.subHeading {
  font: 32px/44px 'Manrope-SemiBold';
  color: #000000;
  letter-spacing: -0.03em;
  text-decoration: none;
}

@media (max-width: 991px) and (min-width: 768px) {
  .subHeading {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .subHeading {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 1500px) and (min-width: 992px) {
  .subHeading {
    font-size: 28px !important;
  }
}

.subHeading2 {
  font: 24px/34px 'Manrope-SemiBold';
  color: #000000;
  letter-spacing: -0.03em;
  text-decoration: none;
}

@media (max-width: 991px) {
  .subHeading2 {
    font-size: 20px;
    line-height: 28px;
  }
}

a {
  text-decoration: none;
}

.link {
  font: 24px/28px 'Manrope-SemiBold';
  color: #0D8CD1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991px) {
  .link {
    font-size: 16px;
  }
}

.tab-content a.subHeading, .tab-content h5 {
  margin-top: 26px;
  display: block;
}

.tab-content .product-card .card-header {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border-radius: 0;
}

.tab-content .product-card img {
  -webkit-transition: all .40s ease;
  transition: all .40s ease;
}

.tab-content .product-card:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/************** Footer ********************/
footer {
  background: #EFEFEF;
  padding: 90px 0 0px;
}

@media (max-width: 767px) {
  footer {
    padding: 50px 0 0px 0px;
  }
}

footer .address a {
  display: block;
  font: 16px/22px 'Manrope-Medium';
  color: #122027;
  text-decoration: none;
}

footer .address p {
  font: 16px/22px 'Manrope-Medium';
}

@media (max-width: 767px) {
  footer .address p {
    font-size: 14px;
  }
}

footer h5 {
  font: 14px/22px 'Manrope-Bold';
  color: #122027;
  margin: 0 0 0 8px;
}

footer .media a {
  color: #122027;
  margin-right: 30px;
  font-size: 20px;
  -webkit-transition: all .40s ease;
  transition: all .40s ease;
  display: inline-block;
}

footer .media a:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

footer .logoCol img {
  mix-blend-mode: multiply;
}

footer .logoCol p {
  font: 16px/24px 'Manrope-Medium';
  color: #122027;
  margin: 24px 0;
}

/*********************************** Contact Us *******************************/
.contactInfo {
  background: #F6FBFE;
  margin-top: 28px;
}

.productDetailsTable th {
  font: 22px/32px 'Manrope-SemiBold';
  color: #000000;
  letter-spacing: -0.03em;
}

@media (max-width: 1600px) {
  .productDetailsTable th {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .productDetailsTable th {
    font-size: 18px;
    line-height: 26px;
  }
}

.productDetailsTable td {
  font: 18px/26px 'Manrope-Medium';
  color: #000000;
}

@media (max-width: 991px) {
  .productDetailsTable td {
    font-size: 16px;
    line-height: 22px;
  }
}

.productDetailsTable th, .productDetailsTable td {
  border: 1px solid #3F505A;
  padding: 16px 22px;
}

@media (max-width: 991px) and (min-width: 768px) {
  .productDetailsTable th, .productDetailsTable td {
    padding: 8px 20px;
  }
}

@media (max-width: 767px) {
  .productDetailsTable th, .productDetailsTable td {
    padding: 8px;
  }
}

.productDetailsTable tr:nth-child(odd) {
  background: #F6FBFE;
}

#samplingProducts .subHeading {
  font: 600 22px/32px "Manrope-Regular" !important;
}

.sampleBTN {
  font: 18px/32px 'Manrope-Medium';
  color: #EFEFEF;
  padding: 10px 16px;
  background: #0D8CD1;
  border: 1px solid transparent;
}

.pbtn .circle {
  border: 1.5px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
}

@media (min-width: 992px) {
  .h30 {
    height: 150px;
  }
}


/*gooter changes css*/
.form {
    margin-top:14px;
}
.form .inBox{
    margin-top:10px;
}
.form .inBox .title{
    color:#434848;
    font-weight: 500;
font-size: 16px;
line-height: 19px;
}
.form .inBox input{
   border:none;
   outline:none;
   margin-top:4px;
   height:34px;
   padding-left:15px;
}
.form .inBox textarea{
   border:none;
   outline:none;
   margin-top:4px;
   padding-left:15px;
   padding-top:10px;
   
}
.footerSubBtn{
    margin-top:24px;
    width:100%;
    border:1px solid #0D8CD1;
    background:#0D8CD1;
    padding:10px;
    font-weight: 500;
    font-size: 18px;    
line-height: 182%;
color: #FFFFFF;
}
.fooBottom{
    border-top:1px solid rgba(18, 32, 39, 0.12);
    margin-top:45px;
    padding:16px 0px;
    display:flex;
    align-items:center;
    justify-content: space-between;
}
@media (max-width: 570px) {
  .fooBottom{
   
    margin-top:45px;
    padding:16px 0px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: start;
}

}
.fooBottom .copy{
    color: rgba(63, 80, 90, 0.6);
    font-weight: 400;
font-size: 14px;
line-height: 22px;
}
.fooBottom .socials a{
    margin-left:30px;
    color:black;
}
@media (max-width: 570px) {
 
.fooBottom .socials a{
    margin-left:10px;
    margin-right:10px;

}
}
.mmt_40{
    margin-top:-40px;
}
.serviceawl p {
    font-size: 20px;
}
.SubHead{
    font: 500 28px/46px 'Manrope-SemiBold';
}
.listcont ul{
    padding: 0;
}
.listcont ul li{
    font-size: 22px;
    list-style: none;
    margin-bottom: 10px;
}
@media(max-width: 768px){
    .service .section-py{
    padding-bottom: 30px;
}
.SubHead {
  font: 500 20px/30px 'Manrope-SemiBold';
}
.listcont ul li {
  font-size: 16px;
}
.serviceawl p {
  font-size: 16px;
}
}
/*# sourceMappingURL=style.css.map */