/**
* Template Name: Groovin - v4.7.1
* Template URL: https://bootstrapmade.com/groovin-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* Important norte */
/* #hero .carousel-item::before */     
/* background-color: rgba(0, 0, 0, 0.5); */ 
/* removed */
/* add shadow to banner texts */
/* fonrt family for header is not same according to the psd */
/* underline in footer headers etc career , contact us  */
/* blog section text height adjust */
/* feed additives in dropdown menu, nav bar */
/* team page sequence update */
/* agre page //  fodder seed link is incorrect */


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: lemonmilk;
  src: url(../font/LemonMilk.otf) format("opentype"),
  url(../font/LemonMilkbold.otf) format("opentype");
}
@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Regular.ttf) format("opentype");
}
@font-face {
  font-family: poppins-b;
  src: url(../fonts/Poppins-Bold.ttf) format("opentype");
}
body {
  font-family: poppins;
  color: #444444;
}

a {
  color: #5c9f24;
  text-decoration: none;
}

a:hover {
  color: #74c92d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: poppins-b;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0a4587;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
      box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6fc02c;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 150px;
  border-bottom: 4px solid #0a4587;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 25px 20px -23px;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
      width: 230px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
/*  font-weight: 500;*/
  color: #275b8f;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #5c9f24;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #275b8f;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #5c9f24;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #5c9f24;
}
.navbar .getstarted:hover:before, .navbar li:hover > .getstarted:before {
  visibility: hidden;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #275b8f;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0a4587;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0a4587;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #5c9f24;
}
/*blog start*/

.blog-matra h2 {
    color: #0a4587;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
  }
    .blog-matra p {
    color: #0a4587;
    font-size: 25px;
    text-transform: uppercase;
    font-family: 'Poppins-b';
        padding-left: 10px;
}
.container-blog {
    width: 95%;
    margin: auto;
}
.matra-blg {
    display: flex;
    margin-bottom: 10px;
    margin-top: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.text-d-blg {
    background: #0a4587;
    padding: 20px 20px;
}
.text-d-blg p{
  color: #fff;
  text-align: left;
  font-size: 14px;
}
.text-d-blg h2{
  color: #fff;
  text-align: left;
  font-size: 24px;
  font-weight:bold;
}
.blog-para-dtl {
    padding-left: 22px;
}
.blog-para-dtl p {
    color: #0a4587;
}
.blog-para-dtl h3 {
    color: #0a4587;
    font-size: 22px;
    margin-bottom: 15px;
}
.row.blog {
    padding: 60px 0px;
}
/*blog end*/
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #275b8f;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5c9f24;
}
.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #5c9f24;
  padding-left: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5c9f24;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/ 

.slider_one{
  background-image: url(../sliders/Animal-Nutrition.jpg);
  background-position: bottom !important; 
}
.slider_two{
  background-image: url(../sliders/Agriculture-1.jpg);
  background-position: bottom !important; 
}
.slider_three{
  background-image: url(../sliders/5.jpg);
  background-position: bottom !important; 
}
.slider_four{
  background-image: url(../sliders/Dairy-Banner-3.jpg);
  background-position: bottom !important;
}
.slider_five{
  background-image: url(../sliders/sustain-banner5.jpg);
  background-position: bottom !important;  
}


@media (max-width: 720px) {
  .slider_one{
    background-image: url(../sliders/720/Animal-Nutrition.jpg);
    background-position: bottom !important; 
  }
  .slider_two{
    background-image: url(../sliders/720/Agriculture-1.jpg);
    background-position: bottom !important; 
  }
  .slider_three{
    background-image: url(../sliders/720/5.jpg);
    background-position: bottom !important; 
  }
  .slider_four{
    background-image: url(../sliders/720/Dairy-Banner-3.jpg);
    background-position: bottom !important;
  }
  .slider_five{
    background-image: url(../sliders/720/sustain-banner5.jpg);
    background-position: bottom !important;  
  }

}


@media (max-width: 480px) {
  .slider_one{
    background-image: url(../sliders/720/Animal-Nutrition.jpg);
    background-position: bottom !important; 
  }
  .slider_two{
    background-image: url(../sliders/720/Agriculture-1.jpg);
    background-position: bottom !important; 
  }
  .slider_three{
    background-image: url(../sliders/720/5.jpg);
    background-position: bottom !important; 
  }
  .slider_four{
    background-image: url(../sliders/720/Dairy-Banner-3.jpg);
    background-position: bottom !important;
  }
  .slider_five{
    background-image: url(../sliders/720/sustain-banner5.jpg);
    background-position: bottom !important;  
  }

}

@media (max-width: 300px) {
  .slider_one{
    background-image: url(../sliders/720/Animal-Nutrition.jpg);
    background-position: bottom !important; 
  }
  .slider_two{
    background-image: url(../sliders/720/Agriculture-1.jpg);
    background-position: bottom !important; 
  }
  .slider_three{
    background-image: url(../sliders/720/5.jpg);
    background-position: bottom !important; 
  }
  .slider_four{
    background-image: url(../sliders/720/Dairy-Banner-3.jpg);
    background-position: bottom !important;
  }
  .slider_five{
    background-image: url(../sliders/720/sustain-banner5.jpg);
    background-position: bottom !important;  
  }

}







#hero {
  width: 100%;
  height: 90vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}
#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.5); */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  position: absolute;
  bottom: 60px;
  top: 0;
  left: 120px;
  right: 0;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 80px !important;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}
/*#hero .carousel-content {
  text-align: center;
}*/
#hero h2 {
 	  color: #fff;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
    font-family: lemonmilk;
    margin-bottom: 5px;
    margin-left: 10px;
    text-shadow: 2px 1.2px #453f3f !important;
}
#hero h2 span {
  color: #5c9f24;
  text-shadow: 2px 1.2px #453f3f !important;
}
#hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 5px auto;
  color: #fff;
  margin-left: 10px;
  text-shadow: 2px 1.2px #453f3f !important;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
.carousel-content {
    border-left: 3px solid #fff;
    height: 80px;
}


#hero .carousel-indicators li.active {
  opacity: 1;
  background: #fff;
}
#hero .btn-get-started {
/*  font-family: "Roboto", sans-serif;*/
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color:#275b8f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  background: #fff;
}
#hero .btn-get-started:hover {
  background: #6ab82a;
  border-color: #6ab82a;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 100%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5c9f24;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}
.about .content p {
  margin-bottom: 0;
}
.about .content .icon-box {
  margin-top: 25px;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5c9f24;
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
.height-feed {
    height: 450px;
}
@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0 30px 0;
  background: #0a4587;
  margin-bottom: 50px;
}
.counts .count-box {
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #5c9f24;
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #fff;
 /* margin-left: 60px;*/
 text-align: center;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  /*margin: 0 0 0 60px;*/
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #777777;
}

.container-fluid {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
.height-550{
  height:  400px;
  box-shadow: 1px 5px 5px 1px #888888c4;
} 
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
  .height-550{
  height:  335px;
  box-shadow: 1px 5px 5px 1px #888888c4;
}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #5c9f24;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #444444;
  transition: 0.3s;
}
.services .title a:hover {
  color: #5c9f24;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #5c9f24;
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #8ed851;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #2a2a2a;
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #5c9f24;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5c9f24;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5c9f24;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5c9f24;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team {
  background: #fff;
  padding: 60px 0;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}
.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}
.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  color: #5c9f24;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}*/
.container-team{
  width: 100%;
}
.team-sec {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    color: #0a4587;
}
.team-sec h2 {
    font-weight: 700;
    font-size: 46px;
}
.member-info-content {
    /*background: #f0f0f0;*/
    background: #0a4587;
    text-align: center;
    padding: 20px 20px 50px;
    min-height: 200px;
}
.member-info-content h4 {
    /*color: #0a4587;*/
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
}
.member-info-content span {
    /*color: #0a4587;*/
    color: white;
    font-size: 16px;
}
.member{
  padding-bottom: 10px;
}
.social {
    background: #0a4587;
    width: 45px;
    margin: auto;
    margin-top: 4px;
    padding: 6px;
}
.social i {
    color: #fff;
    font-size: 22px;
}
.btn-img-st {
    display: flex;
    justify-content: space-between;
}
.btn-img-st img {
    width: 60px;
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}
.pricing .box h4 {
  font-size: 42px;
  color: #5c9f24;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: #5c9f24;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #5c9f24;
  color: #5c9f24;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {
  background: #5c9f24;
  color: #fff;
}
.pricing .recommended {
  background: #5c9f24;
}
.pricing .recommended h3, .pricing .recommended h4, .pricing .recommended h4 span, .pricing .recommended ul, .pricing .recommended ul .na {
  color: #fff;
}
.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #5c9f24;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #9cdc66;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #5c9f24;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #5c9f24;
}
.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
.contact .contact-info a {
  color: #000;
}
.contact .contact-info a:hover {
  color: #5c9f24;
}
.contact .contact-address, .contact .contact-phone, .contact .contact-email {
  margin-bottom: 20px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #5c9f24;
}
.contact .php-email-form button[type=submit] {
  background: #5c9f24;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #6ab82a;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 80px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  #hero .carousel-container{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 60;
    top: 0;
    left: 20px;
    right: 0;
  }
}
@media screen and (max-width: 500px){
	#hero .carousel-container{
		display: flex;
    align-items: center;
    position: absolute;
    bottom: 60;
    top: 0;
    left: 20px;
    right: 0;
	}
	#hero h2 {
    font-size: 18px;
}
#hero p{
	font-size: 14px;
  padding-right: 80px;
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #003976;
  padding: 0 0 8px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #5c9f24;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #8ed851;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #81d33d;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #5c9f24;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6ab82a;
}
#footer .copyright {
  text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    padding-right: 140px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #fff;
}


.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


.ftr-lgo img {
    width: 100%;
    max-width: 230px;
}
.footer-sec {
            padding: 70px 0px 40px 0px;
}
.footer-d h2 {
    font-size: 18px;
    margin: 0px;
    font-weight: 600;
}
.footer-d a {
    color: #fff;
    font-size: 18px;
  }
  .footer-d p {
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 300;
    margin: 0px;
}
.footer-d img {
    width: 30px;
    margin-top: 10px;
    margin-right: 10px;
}
.footer-d a i {
    margin-top: 20px !important;
    font-size: 20px;
    padding: 5px;
}
.first-sec h1,.first-sec h2, .blog h2 {
    color: #0a4587;
    font-weight: 600;
} 
.first-sec p {
    color: #0a4587;
    font-size: 18px;
}
.bk-c {
    background: #0a4587;
    margin-top: 100px;
    padding-bottom: 70px;
}
.product-im{
position: relative;
margin-top: -110px;
}
.centered {
    position: absolute;
    top: 96%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.centered a {
    color: #fff;
}
.blog h2{
  text-align: center;
}
.text-d {
    background: #0a4587;
     padding: 50px 20px 20px;
}
.text-d h2 {
    color: #fff;
    text-align: left;
}
.text-d p {
    color: #fff;
}
.read-mm a {
    color: #fff;
    font-weight: bold;
}
.read-mm {
    /*margin-top: 170px;*/
}
.read-m a {
    color: #fff;
    font-weight: bold;
}
.read-m {
    margin-top: 0px;
}
.matra-b{
  display: flex;
      margin-top: 30px;
}
.carousel-item.active{
  display: flex !important;
}
.container{
  width: 85% !important;
}
span.purecounter::after {
    content: "+";
}
.img-d img {
    width: 100%;
    height: 100%;
}
.carousel-control-next, .carousel-control-prev{
  width: unset;
  opacity: unset;
}
/*.carousel-control-prev-icon,.carousel-control-next-icon{
      background-color: #0a4587;
      border-radius: 50%;
}*/
.carousel-control-prev {
    left: -25px;
}
.carousel-control-next {
    right: -25px;
}
.main-heading h2 {
    font-size: 40px;
    font-family: poppins-b;
    color: #003976;
/*        text-shadow: 3px 2px 0px #79ad00;*/
}
.btn-cus-clr {
   background: #003976;
    border: 1px solid #003976;
    padding: 3px 15px;
    font-size: 13px;
    font-weight: unset !important;
}
h4.card-title {
    font-size: 25px;
    color: #003976;
    padding-bottom: 15px;
    font-weight: 600;
}
p.card-text {
    color: #003976;
    padding-bottom: 15px;
}
.card-body {
    border-bottom: 5px solid #003976;
}
.card{
  position: relative;
    overflow: hidden;
}
.card1{
  position: relative;
  overflow: hidden;
  padding: 0px;
  border: 1px solid white;
}
img.card-img-top {
    max-width: 100%;
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}
img.card-img-top:hover {
    transform: scale(1.1);
}
.card:hover {
    box-shadow: 0 0 11px rgb(33 33 33 / 20%);
}
.product-st h2 {
    padding: 20px 0px 0px 0px;
    border-bottom: 3px solid #0a4587;
    color: #0a4587;
    font-size: 27px;
    font-weight: 600;
}
.product-st p {
    color: #0a4587;
    font-size: 14px;
    font-weight: 600;
}
.cus-nav {
    display: block;
    border: 0px !important;
}
.product-st img {
    width: 80%;
}
.product-st {
    padding: 0px 30px;
}
 .cus-nav .nav-link{
  border: 0px !important;
}
.cus-nav a {
    background: #A6C4DA !important;
    border-radius: 0px !important;
    margin-bottom: 2px !important;
    padding: 13px;
    color: #fff !important;
}
.cus-nav a.nav-link.active {
    background: #4F89B7 !important;
}
h4.pro-dtl {
    background: #0a4587;
    color: #fff;
    padding: 13px;
    text-align: center;
    margin-bottom: 2px;
}
.mt-2.pro-hdng {
    color: #0a4587;
    font-size: 30px;
    font-family: 'poppins-b';
    border-bottom: 2px solid;
    width: auto !important;
    display: inline-block;
    letter-spacing: 2px;
}
.tab-content {
    color: #0a4587;
}
table.table.table-bordered {
    color: #0a4587;
}
.tab-content h2 {
    font-family: 'poppins-b';
    font-size: 20px;
}
.single-product-pge {
    padding-top: 100px !important;
}
.partner {
    text-align: center;
    color: #0a4587;
}.partner h2 {
    font-family: 'poppins-b';
}
.partner p {
    padding: 0px 90px;
}
.patner-bk {
    background: #0a4587;
    padding: 50px 50px;
}
.patner-bk h2{
	color: #fff;
	font-family: 'poppins-b';
	text-align: center;
}
.patner-bk p{
	color: #fff;
}
.backimg {
    background-image: url(../images/cunt.png) !important;
    background-size: cover;
    height: 300px;
    display: flex;
    justify-content: center;
    vertical-align: bottom;
    align-items: center;
}
.text-center.clr-f {
    color: #fff;
    font-size: 40px;
    font-family: poppins-b;
}
.txt-ara {
    border: none;
        height: 190px;
}
.col-md-6.right-col-txt {
    border: 1px solid #0a4587;
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 23%) 0px 3px 6px;
}
.form-group label {
    color: #003976;
}
::placeholder { 
  color: #003976 !important;
}
.form-group input, .form-group textarea {
    box-shadow: unset;
    border: 2px solid #003976;
}
.btn-style button {
    background: #003976;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 3px;
    width: 100%;
}
.about-back{
    background-image: url(../images/aabbt.png) !important;
    background-size: cover;
    height: 300px;
  /*  display: flex;
    justify-content: center;
    vertical-align: bottom;
    align-items: center;*/
}
.detail {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -30%);
}
.detail p {
    color: #fff;
}
.abt-sec h2 {
    color:#003976;
    font-family: 'poppins-b';
    padding-top: 30px;
}
.abt-sec p {
    color: #003976;
}
.abt-img img{
  width: 50%
}
.cont-detail { padding: 0px 30px;}
.cont-detail h2 {font-size: 100px;font-family: 'poppins-b';color: #003976;line-height: 95px;padding-top: 20px;}
.cont-detail p {color: #003976;font-size: 28px;font-weight: 600;}
.col-lg-12 {
    padding: 0px;
}
.product-im h3 {
    font-size: 36px;
    font-weight: 900; 
    padding: 20px;
    background-image: linear-gradient(180deg, rgba(255,0,0,0), rgb(0, 0, 0));
}
/*milkborder*/
.table-bordered>:not(caption)>* {
    border-width: 2px 0;
    border-color: #414587;
}
.table-bordered>:not(caption)>*>* {
    border-width: 0 2px;
}
/*milkend*/
@media screen and (max-width: 990px){
  .product-im {
    position: relative;
    margin-top: 15px;
}
.bk-c {
    margin-top: 10px;
}
.matra-b{
  display: flex;
}
.matra-b{
  display: block;
}
.qmt {
    margin-top: 20px;
}
/*.img-d img {
    width: 100%;
}*/
#footer .copyright {
    padding-right: 0px;
}
.partner p {
    padding: 0px
}
.footer-d {
    margin-bottom: 12px;
}
.abt-img img{
  width: 80%
}
.height-550{
  height: unset !important;
}
}
@media screen and (max-width: 575px){
  .ftr-lgo {
    margin-bottom: 30px;
    text-align: center;
}
.main-heading h2 {
    font-size: 30px;
    }
    .abt-img img{
  width: 100%
} 
.cont-detail h2 {font-size: 45px;font-family: 'poppins-b';color: #003976; padding-top: 50px; text-align: center;line-height: unset;}
.cont-detail p {font-size: 20px;text-align: center;}
}



#client-logos .item {
    margin: 1px;
}
.cover-wrapper {
    padding: 0px 75px 25px;
}
.cover-wrapper1{
	padding: 0px;
}
.client-inners img {
    height: 100%;
    object-fit: contain;
}
.client-inners {
    border: 2px solid #4b8cb6;
    height: 85px;
    text-align: center;
    padding: 8px;
    border-radius: 3px;
}
.owl-nav img {
    width: 34px;
}
.owl-prev img {
    position: absolute;
    left: -38px;
    top: 50%;
    margin-top: -20px;
}
.owl-next img {
    position: absolute;
    right: -38px;
    top: 50%;
    margin-top: -20px;
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.height-450{
  height: 450px;
}
.height_80{
  height: 80px;
}
.height-500{
  height: 500px;
}
@media (min-width: 1000px) {
  .wdth-50{
    width: 50%;
  } 
}
