
:root {
  --primary:#FFD200;
  --white:#fff;
  --grey:#ffffff8c;
  --secondary:#3c6d0e;
  --black:#212529;
  --border-radius:0.3rem;
  --light-grey:#666;
  --bg-layer: rgba(2, 57, 4, 0.718);
  --shadow: rgba(0,0,0,0.2);

}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.9rem;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}
p {
  margin: 0;
  padding-bottom: 1.5rem;
  line-height:1.8rem;
  text-align: justify;
  color:var(--light-grey);
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}
  
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}
.breadcrumb {
  font-size: 1.3rem;
}
.breadcrumb-item.active {
  color: var(--white);
}
section {
  padding:4rem 0;
}

.btn-style {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--primary);
  padding: 0 30px;
  line-height: 48px;
  color: #fff;
  transition: all .8s ease-out 0s;
  background-color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
text-decoration:none;
}

.btn-style:hover{
background:var(--black);
color:#fff;
border-color:var(--black);
transition: all .8s ease-out 0s;
text-decoration:none;
}
ul.list {
  margin:1rem 0;
}
ul.list li {
  margin: 0.8rem 0;
  list-style-type: square;
}

ul.list li i {
  font-size: 1.2rem;
  padding:0.1rem;
  margin-right: 0.7rem;
  margin-top:0.2rem;
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  /* background: var(--primary); */
  text-align: center;
}

.navbar {
  padding: 0rem 0 ;
}
.navbar-light .navbar-nav .nav-item {
  margin: 0 0.87rem;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar-light .navbar-nav .nav-link.active {
  color:var(--primary);
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color:var(--primary);
}

/*-----------service section css start------------*/
.wrap {
 background: var(--white);
  padding: 1rem 1rem 1rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: 7px 7px 30px -5px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.wrap:hover {
  background:var(--primary);
  color:var(--black);
  cursor: pointer;
}

.wrap span {
  margin:0.24rem;
  padding-top:0.3rem;
}

.icon {
  background-color: var(--primary);
    width: 90px;
    height: 90px;
    cursor: pointer;
    margin:0 auto;
    border-radius: 50%;
  
  }

  .wrap:hover .icon {
    background-color: var(--white);
  }

.list-bullets li {
  margin: 0.55rem 0 0.55rem 0.82rem;
}


.arrow {
  position: absolute;
  top: 25px;
  width: 90%;
  height: 10px;
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  animation: arrow 700ms linear infinite;
}

.arrow::after, .arrow::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 10px;
  right: -8px;
  background-color: #fff;
}

.arrow::after {
  top: -12px;
  transform: rotate(45deg);
}

.arrow::before {
  top: 12px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  transform: rotate(-45deg);
}
.mbr-iconfont {
  font-size: 4.5rem !important;
  color: #313131;
  margin: 1rem;
  padding-right: 1rem;
}
/*-----------service section css end------------*/

.features {
  background: url(../images/banner4.jpg) no-repeat center;
  -ms-background-size: cover;
  background-size: cover;
  z-index: 0;
  position: relative;
  display: grid;
  align-items: center;
  background-size: cover;
}
.features::before {
  content: "";
  background: var(--bg-layer);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.breadcrumb-sec {
  padding: 0rem;
}
/*********************************About Page css ***************************/
.breadcrumb-bg-about {
  background: url(../images/about-bg.jpg) no-repeat;
  -ms-background-size: cover;
  background-size: cover;
  z-index: 0;
  position: relative;
  display: grid;
  align-items: center;
  background-size: cover;
}
.breadcrumb-bg-about::before {
  content: "";
  background: var(--bg-layer);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.secondary-heading {
  color:var(--light-grey);
}

.about-image {
  position: relative;
}
.about-image::before {
  position: absolute;
  content: '';
  background-image: url(../images/dots.jpg);
  background-position: center center;
  background-size: 100%;
  width: 375px;
  height: 350px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
}
.about-image .single-image {
  width: 360px;
  
}

.about-image .single-image img {
  width: 100%;
  border-radius: 50%;
  border: 6px solid var(--primary);
}
.border-thick img{
  border: 6px solid var(--primary);
}
.about-image .single-image {
  width: 360px;
}
.about-image .image-tow {
  margin-top: -200px;
  position: relative;
  z-index: 5;
}

/*******************vision mission css starts ***************************/
.vision-content {
  margin-left:0.2rem;
}


/*************************** service box css ***************************/
.serviceBox{
  color: var(--secondary);
  background: var(--white);
  padding: 2.2rem 1.92rem;
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px var(--shadow);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.serviceBox p{ 
  padding-bottom: 0;
}

/************************Our Services starts **********************/
#services .row > .col-lg-4:nth-child(even) .wrap {
  background-color:var(--primary) ;
}


/*********************** clients page css  ************************/
.clients .owl-carousel .owl-nav button.owl-prev, .clients .owl-carousel .owl-nav button.owl-next {
  background-color: var(--primary);
  color:var(--white);
  padding: 0.3rem 0.6rem !important;
  margin: 0.2rem;
}

.clients .owl-nav{
  text-align: center;
}

.clients .item {
  /* border: 1px solid var(--light-grey); */
  box-shadow: 0 0 10px var(--shadow);
  padding: 0.5rem;
  margin: 0.75rem;
}

/****************************Contact Us page ************************/
.icon-box {
  margin-right:0.8rem;
}
.icon-box span {
  color: var(--white);
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  background-color: var(--primary);
  margin: 0 auto;
  display: block;
  line-height: 3.5rem;
}

footer {
  background-color: var(--black);
}
.footer li {
  margin: 0.6rem 0;
  padding: 0.2rem;
  font-size: 0.89rem;
}
.footer li a {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
 
}

.footer li a:hover{
  color: var(--primary);
}

.copy {
  background-color: var(--light-grey);
}

.copy p {
  padding: 0.7rem 0;
  font-size: 0.9rem;
}

@media only screen and (max-width:350px) {
  .about-image .single-image {
    width: 200px;   
  }
  .about-image::before {
    position: absolute;
    content: '';
    background-image: url(../images/dots.jpg);
    background-position: center center;
    background-size: 100%;
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
}