body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #f1f1f1;
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.custom_heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom_heading-container h2 {
  font-weight: bold;
  border-bottom: 1px solid #feb543;
  padding-bottom: 5px;
}

/*header section*/
.header_section {
  height: 90vh;
}

.header_section .logo {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding-top: 15vh;
}

.header_section .logo img {
  width: 80%;
}

.header_section p {
  text-align: center;
  font-size: 1.3em;
  margin-top: 0;
  color: #081057;
}

.header_section .header_info{
  color: #081057;
  text-align: center;
}

.header_section .header_info a {
  display: inline-block;
  padding: 12px 40px;
  background-color: #feb543;
  color: #081057;
  border-radius: 25px;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
  box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 30px;
}

.header_section .header_info a:hover {
  background-color: #609c00;
  color: #ffffff;
  text-decoration: none;
}
/* end header section*/

/* service section */
.service_section {
  text-align: center;
  color: #f9fcfb;
  background-image: url(../images/service-bg.png);
  background-size: 100% 100%;
  padding-top: 100px;
  padding-bottom: 200px;
  background-repeat: no-repeat;
  font-family: monospace;
}

.service_section .service_heading h2 {
  border-color: #f9fcfb;
  font-size: 2.5em;
}

.service_section .service_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service_section .service_container .service_box {
  width: 30%;
  min-width: 300px;
  margin: 35px 15px;
}

.service_section .service_container .service_box .img-box {
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
}

.service_section .service_container .service_box .img-box img {
  width: 100%;
}

.service_section .service_container .service_box .detail-box {
  margin-top: 30px;
}



.info_section a {
  display: inline-block;
  padding: 12px 12px;
  background-color: #609c00;
  color: #081057;
  border-radius: 50px;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
  box-shadow: 0px 2px 7px 0px rgba(32, 50, 117, 0.26);
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 30px;

}
.info_section a:hover {
  background-color: #feb543;
  color: #ffffff;
}

.info_section .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #081057;
}