@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');

.container {
  margin-top: 30px;
}

.rrr-hero {
  height: 50vh;
  background-image: url(../images/ind.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.rrr-hero-inner {
  background: linear-gradient(45deg, #00004b, rgba(0, 128, 0, 0.37));
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 100px;
}

.hero-item h1 {
    font-family: 'Yantramanav', sans-serif;
  font-size: 60px;
  color: whitesmoke;
}

.hero-item h5 {
  color: lightgray;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.hero-item .act-btn {
  margin-top: 30px;
}

.hero-item .act-btn button {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.hero-item .act-btn button div {
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  background: whitesmoke;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -120px;
  color: #249b49;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.hero-item .act-btn:hover button {
  color: #249b49;
}

.hero-item .act-btn:hover div {
  padding-left: 20px;
  left: 0px;
  height: 100%;
  z-index: 0;
}

.bread-crumbs {
font-family: 'Yantramanav', sans-serif;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 20px;
}

.bread-crumbs a {
  color: #249b49;
}

.serv-grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  -ms-grid-columns: 70% 30%;
      grid-template-columns: 70% 30%;
  -webkit-column-gap: 40px;
          column-gap: 40px;
}

.serv-inner {
  padding: 10px 50px;
}

.serv-inner h2 {
    font-family: 'Yantramanav', sans-serif;
  margin: 20px 0px;
  font-size: 30px;
  text-align: center;
}

.serv-inner h3 {
    font-family: 'Yantramanav', sans-serif;
  color: red;
}

.s-content p {
    font-family: 'Yantramanav', sans-serif;
  color: #818181;
  font-size: 18px;
font-family: 'Yantramanav', sans-serif;
}

.s-content ul {
  list-style: none;
}

.s-content ul li {
font-family: 'Yantramanav', sans-serif;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.s-content ul li img {
  width: 30px;
  margin-right: 20px;
}

.mn-grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.mn-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #f1f1f1;
  -webkit-transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.mn-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mn-item h2 {
  font-size: 20px;
}

.mn-item:hover {
  opacity: .5;
}

.aside-container {
  background: lightgray;
  padding: 10px;
}

.aside-container h3 {
  color: #226291;
  text-align: center;
  border-bottom: 2px solid #226291;
  padding-bottom: 5px;
}

.aside-container ul li {
  color: #249b49;
  text-decoration: underline;
}

.aside-container ul li a {
  color: #226291;
}

@media (max-width: 850px) {
  .rrr-hero {
    height: 35vh;
  }
  .rrr-hero-inner {
    padding: 0px 20px;
    height: 100%;
  }
  .hero-item {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .hero-item h1 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 40px;
  }
  .serv-inner {
    padding: 10px;
  }
  .serv-inner h2 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 20px;
    text-align: left;
    margin: 10px;
  }
  .serv-grid {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .our-services {
    height: auto;
    margin-bottom: 20px;
  }
  .aside-container {
    height: 200px;
  }
  .os-inner {
    height: auto;
  }
  .os-inner h2 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 30px;
    text-align: left;
    margin: 10px;
    padding: 0px;
  }
  .our-values {
    padding: 10px;
  }
  .our-values h2 {
    font-family: 'Yantramanav', sans-serif;
    text-align: center;
  }
  .v-grid {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    padding: 0px;
    -webkit-column-gap: 7px;
            column-gap: 7px;
  }
}

@media (max-width: 550px) {
  .mn-grid {
    row-gap: 5px;
    -webkit-column-gap: 5px;
            column-gap: 5px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .ms-inner {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .serv-inner h3 {
    font-size: 18px;
  }
  .wwo-inner h2 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 30px;
  }
}
/*# sourceMappingURL=news.css.map */