/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #045d30;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #51d8af;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  animation: bg-color 10s infinite;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #045d30;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #045d30;
  color: #fff;
  margin-bottom: 10px;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #045d30;
  /* animation: bg-color 10s infinite; */
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #79fcbb;
}

#topbar .social-links a {
  color: #fff;
  padding: 0 15px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #79fcbb;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

@keyframes bg-color {
  0% { background-color: #045d30; }
  20% { background-color: #f1c40f; }
  40% { background-color: #1abc9c; }
  60% { background-color: #3498db; }
  80% { background-color: #9b59b6; }
  100% { background-color: #e74c3c; }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.347);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #045d30;
}

#header #logo h1 a span {
  color: #045d30;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header {
    height: 60px;
  }

  #header #logo h1 {
    font-size: 34px;
  }

  #header #logo img {
    max-height: 70px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #045d30;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

.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: #045d30;
}

.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: #045d30;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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: #045d30;
  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: #045d30;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #045d30;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 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: #045d30;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  align-content: center;
  position: relative;
  background: url("../img/herobg.jpg") no-repeat;
  background-size: 60vh;
  /* background: #ffffff; */
  background-size: cover;
  padding: 0;
}

#hero .hero-content {
  justify-content:center;
  flex-direction: column;
  text-align: left;
}
#hero .hero-content h2 {
  color: #045d30;
  /* margin-bottom: 30px; */
  font-size: 30px;
  font-weight: 800;
}

#hero .hero-content h2 span {
  color: #0c2e8a;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero .hero-content h2 {
    font-size: 34px;
  }
  #hero {
    height: auto;
    padding:10px 0px;
  }
  .btn-primary{
    margin: 0px!important;
  }
}
@media (max-width: 1024px) {
  #hero {
    height: auto;
    padding:10px 0px;
  }
}

#hero .hero-content .btn-about,
#hero .hero-content .btn-contact {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  color: #fff;
}

#hero .hero-img{
  margin-top: 25px;
  padding: 5px;
  overflow: hidden;
  border-radius: 20px;
}
#hero .hero-img img{
  height: 40%;
  border-radius: 20px;
  width: 100%;
}

#hero .hero-content .btn-about {
  background: #e3ab01;
  border: 2px solid #e3ab01;
}

#hero .hero-content .btn-about:hover {
  background: none;
  color: #e3ab01;
}

#hero .hero-content .btn-contact {
  background: #045d30;
  border: 2px solid #045d30;
}

#hero .hero-content .btn-contact:hover {
  background: none;
  color: #045d30;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #045d30;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #045d30;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}
/* Gallary Section
--------------------------------*/
#gallary {
  background: #fff;
  padding: 10px 0;
}

.more{
  display: none;
}

#gallary #gallary-filters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#gallary #gallary-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}

#gallary #gallary-filters li:hover,
#gallary #gallary-filters li.filter-active {
  color: #fff;
  background: #045d30;
}

#gallary #gallary-filters li:last-child {
  margin-right: 0;
}

#gallary .gallary-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#gallary .gallary-item img {
  position: relative;
  top: 0;
  width: 100%;
  height: 250px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#gallary .gallary-item video {
  position: relative;
  top: 0;
  width: 100%;
  height: 250px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#gallary .gallary-item a:hover img {
  top: -10px;
}
#gallary .gallary-item a:hover video {
  top: -10px;
}

.arrow {
  text-align: center;
  font-size: 50px;
  color: #045d30;
  margin: 5px 0;
}
.arrow button{
  background: none;
  border: none;
  color: #045d30;
}
.arrow :hover {
  color: #2dc899;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* About Section
--------------------------------*/
#about {
  padding: 60px 0 30px 0;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}
#about .content .mission{
  border-radius: 20px;
  max-width: 95%;
  margin-left: 10%;
  margin-top: 7%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
  #about .content .mission{
    border-radius: 20px;
    margin-top: 5%;
    max-width: 100%;
    margin-left: 0;
  }
}

#about .content h2 {
  color: #045d30;
  font-weight: 800;
  font-size: 34px;
  font-family: "Raleway", sans-serif;
}

#about .content h3 {
  color: #000;
  font-weight: 600; 
  font-size: 15px;
  line-height: 21px;
  text-align: justify !important;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #045d30;
}

#about .content ul {
  list-style: none;
  padding: 0;
  color:#000;
}

#about .content ul li {
  font-weight: 600;
  color:#000;
  padding-bottom: 10px;
}
/*----------------------------------------------------------------
timeline
----------------------------------------------------------------*/
#about .content .main-timeline{
  font-family: 'Poppins', sans-serif;
  padding: 25px 10px;
}
#about .content .main-timeline ul{
  padding-left: 20px;
}
#about .content .main-timeline li{
  color:#fff;
  font-family: 'Poppins', sans-serif;
  padding: 0px;
}
#about .content .main-timeline i {
  font-size: 20px;
  padding-right: 4px;
  color: #fff;
}
#about .content .main-timeline:after{
  content: '';
  display: block;
  clear: both;
}
#about .content .main-timeline .timeline{
  width: calc(50% + 9px);
  padding: 0px 30px 0px 0;
  margin: -20px 0 0 0;
  border-radius: 20px;
  border: 10px solid transparent;
  border-right: 10px solid #045d30;
  float: left; 
  position: relative;
}
#about .content .main-timeline .timeline:before,
#about .content .main-timeline .timeline:after{
  content: '';
  background-color: #4EB543;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  position: absolute;
  right: -18px;
  bottom: 40px;
}
#about .content .main-timeline .timeline:after{
  border-radius: 3px;
  transform: rotate(45deg);
  right: 20px;
}
#about .content .main-timeline .timeline-content{
  color: #fff;
  background: linear-gradient(#80B02C,#16b306);
  padding: 0 0 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 20px;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#about .content .main-timeline .timeline-content:hover{ text-decoration: none; }
#about .content .main-timeline .timeline-icon{
  font-size: 40px;
  line-height: 40px;
  position: absolute;
  bottom: 15px;
  right: 16px;
}
#about .content .main-timeline .title{
  color: #4EB543;
  background-color: #fff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  padding: 12px;
  margin: 0 0 5px;
}
#about .content .main-timeline .description{
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 10px 10px 0 10px;
}
#about .covid{
  max-width: 10%;
  margin-left: 10px;
}
#about .content .main-timeline .timeline:nth-child(even){
  float: right;
  padding: 0px 0 0px 30px;
  margin: -20px 0 0 0;
  border-right: none;
  border-left: 10px solid #045d30;
}
#about .content .main-timeline .timeline:nth-child(even):before{
  right: auto;
  left: -18px;
}
#about .content .main-timeline .timeline:nth-child(even):after{
  right: auto;
  left: 20px;
}
#about .content .main-timeline .timeline:nth-child(even) .timeline-icon{
  right: auto;
  left: 16px;
}
#about .content .main-timeline .timeline:nth-child(4n+2):before,
#about .content .main-timeline .timeline:nth-child(4n+2):after{
  background-color: #4EB543;
}
#about .content .main-timeline .timeline:nth-child(4n+2) .timeline-content{ background: linear-gradient(#80B02C,#16b306); }
#about .content .main-timeline .timeline:nth-child(4n+2) .title{ color: #4EB543; }
#about .content .main-timeline .timeline:nth-child(4n+3):before,
#about .content .main-timeline .timeline:nth-child(4n+3):after{
  background-color: #4EB543;
}
#about .content .main-timeline .timeline:nth-child(4n+3) .timeline-content{ background: linear-gradient(#80B02C,#16b306); }
#about .content .main-timeline .timeline:nth-child(4n+3) .title{ color: #4EB543; }
#about .content .main-timeline .timeline:nth-child(4n+4):before,
#about .content .main-timeline .timeline:nth-child(4n+4):after{
  background-color: #4EB543;
}
#about .content .main-timeline .timeline:nth-child(4n+4) .timeline-content{ background: linear-gradient(#80B02C,#16b306); }
#about .content .main-timeline .timeline:nth-child(4n+4) .title{ color: #4EB543; }
@media screen and (max-width:767px){
  #about .content .main-timeline .timeline,
  #about .content .main-timeline .timeline:nth-child(even){
      width: 100%;
      padding: 20px 0 20px 30px;
      margin: -25px 0 0;
      border-left: 10px solid #fff;
      border-right: none;
  }
  #about .content .main-timeline .timeline:before,
  #about .content .main-timeline .timeline:nth-child(even):before{
      right: auto;
      left: -17px;
  }
  #about .content .main-timeline .timeline:after,
  #about .content .main-timeline .timeline:nth-child(even):after{
      right: auto;
      left: 20px;
  }
  #about .content .main-timeline .description,
  #about .content .main-timeline .timeline:nth-child(even) .description{
      margin: 20px 20px 0 80px;
  }
  #about .content .main-timeline .timeline-icon,
  #about .content .main-timeline .timeline:nth-child(even) .timeline-icon{
      left: 16px;
      right: auto;
  }
}
@media screen and (max-width:576px){
  #about .content .main-timeline .description,
  #about .content .main-timeline .timeline:nth-child(even) .description{
      margin: 20px 20px 0 20px;
  }
}

/* CSR Section
--------------------------------*/
#csr{
  background: #b8f0d4;
  padding: 40px 10px;
  margin-bottom: 60px;
}
#csr .about-img {
  overflow: hidden;
}

#csr .about-img img {
  margin-left: 10px;
  max-width: 100%;
}
#csr .csr1 {
  margin-left: -15px;
  max-width: 100%;
  height: 80%;
}

@media (max-width: 768px) {
  #csr .about-img {
    height: 80%;
  }

  #csr .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
  .csr-pattern{
    margin-top: -170px;
    width: 100%;
    height:20px;
  }
}

.csr-pattern{
  width: 100%;
  margin-top: -150px;
  height: 100px;
}

#csr .content h2 {
  color: #045d30;
  font-weight: 800;
  font-size: 34px;
  font-family: "Raleway", sans-serif;
} 

#csr .content h3 {
  color: #000;
  /* font-weight: 600; */
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

#csr .content p {
  line-height: 26px;
}

#csr .content p:last-child {
  margin-bottom: 0;
}

#csr .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #045d30;
}

#csr .content ul {
  list-style: none;
  padding: 0;
}

#csr .content ul li {
  padding-bottom: 10px;
  /* font-weight: 600; */
}
/* category Section
--------------------------------*/
#category {
  background: #b8f0d4;
  padding: 40px 10px;
  margin-bottom: 60px;
}
#category .row>*{
  padding: 0px!important;
}
#category .box{
  width: 100%;
  height: 180px;
  padding: 13% 4%;
  gap: 0;
  background-color: #fff;
  text-align:center;
  margin: 0px !important;;
}
#category .category-container .col{
  padding: 0;
  margin: 0;

}
#category .box:hover{
  border-width: 10px;
}
#category .box h2 {
  color: #045d30;
  font-weight: 700;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
}
.btn-primary{
  opacity: 1;
  transition: all ease-in-out 0.3s;
  background: none;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  border: 2px solid #045d30!important;
  transition: 0.5s;
  margin: 10px;
  color: #045d30;
  border: 0;
}

.btn-primary:hover{
  transition: all ease-in-out 0.3s;
  border: 2px solid #045d30;
  /* background: none; */
  background: #045d30;
  color: #fff;
}

/* Our Product Section
--------------------------------*/
#product {
  background: #fff;
  padding: 30px 0;
}
#product .product-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#product .product-item img {
  position: relative;
  top: 0;
  width: 100%;
  height: 210px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#product .product-item .product-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #045d30;
  padding: 15px 20px;
}

#product .product-item .logo {
  z-index: 3;
  position: absolute;
  background-color: #fff;
  height: 35px;
  width: 100px;
}

#product .product-item .product-info h4 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin: 0px;
  padding: 0px;
}

#product .product-item:hover .product-info {
  opacity: 1;
  bottom: 0;
}
.gslide-media {
  max-width: 500px;
  overflow: hidden;
}
.gslide-image img.zoomable {
  transform: scale(1.5);
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}

#subject{
  width: 100%;
  height: 48px;
  border: 1px solid #ced4da;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #045d30;
}

#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: #045d30;
}

#contact .contact-address,
#contact .contact-address0,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-address0,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-email {
    border-left: 1px solid #ddd;
  }
}
@media (min-width: 768px) {
  #contact .contact-address0 {
    padding: 20px 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}
.php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.php-email-form input,
.php-email-form textarea,
.php-email-form select {
  background: #d6f7e6;
  border-radius: 10px!important;
  border: 1px solid #045d30;
  padding: 10px 14px;
  box-shadow: none;
  font-size: 15px;
}

.php-email-form input::focus,
.php-email-form textarea::focus {
  background-color: #045d30;
}

.php-email-form button[type=submit] {
  background: #045d30;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}
.php-email-form .error-message {
  color: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form button[type=submit]:hover {
  background: #2dc899;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mt-3 {
  margin-top: 3px!important;
}
.mt-10 {
  margin-top: 10px!important;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  width: 100%;
  background: url("../img/pattern.png") no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 5px;
  padding-top: 10px;
  font-family: "Raleway", sans-serif;
}
#footer a{
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}
#footer a:hover {
  color: #79fcbb!important;
}
#footer  .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: rgb(224, 223, 223);
}

#footer .credits a {
  color: #045d30;
}
/*------------------------------------------------------------------
#career
--------------------------------------------------------------------*/
#career h3{
  font-weight: 600;
  color: #0c2e8a;
  font-size: 27px;
}
#career .detail{
  font-size: 14px; 
  padding: 20px 0px;
  color:#717171;
  border: 2px solid #eee;
  border-radius: 10px;
  background: #d8f5e7;
}
#career button{
  margin:10px 0px 10px 0px;
}
#career p{
  margin:0px;
}
#career .collapsible{
  color: #000;
  font-weight: 600;
}
#career .bi{
  float: right;
  font-size: 16px; 
  font-weight: 600;
  color: #000000;
}
#career .content{
  padding:18px 0;
  display: none;
  overflow: hidden;
}

#career .form_career{
  height:0px;
  overflow: hidden;
}
