/*
Theme Name: Prayastech
Theme URI: https://prayastech.in/
description: Creating a Bridge of Success.
Author: Prayastech
Author URI: https://prayastech.in/
Template: Prayastech
Version: 1.0.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #70AF32;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: green;
  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;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #70AF32;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: green;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #fff;
/*  height: 90px;*/
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #413e66;
}

#header .logo img {
  max-height: 70px;
  width: 200;
  height: 133;
}

#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #555186;
  transition: 0.3s;
  line-height: 0;
  margin-left: 15px;
}

#header .social-links a i {
  line-height: 0;
}

#header .social-links a:hover {
  color: #70AF32;
}

@media (max-width: 992px) {
  #header .social-links {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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 24px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #413e66;
  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: #70AF32;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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;
  text-transform: none;
  font-weight: 400;
}

.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: #70AF32;
}

.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: #70AF32;
  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: rgba(45, 43, 70, 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: #413e66;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #70AF32;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1bb1dc;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}


/*Get start button*/

.get-started-btn {
  margin-left: 30px;
  background: #70AF32;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: green;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background: #f5f8fd url("../image/main-banner1.jpg") center top no-repeat;
  background-size: cover;
  padding-top: 110px;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }

  #hero .container {
    height: auto !important;
  }

  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h1, #hero .intro-info h2 {
  color: #413e66;
  margin-bottom: 40px;
  font-size: 54px;
  font-weight: 700;
}

#hero .intro-info h1 span,
#hero .intro-info h2 span {
  color: #70AF32;
}

#hero .intro-info h6, #hero .intro-info h2 {
  color: #413e66;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 991px) {
  #hero .intro-info h2, #hero .intro-info h1 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

.get-started-btn {
  margin-left: 30px;
  background: #70AF32;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: green;
  color: #fff;
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #70AF32;
  color: #fff;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
  background: green;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #413e66;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f5f8fd;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 80px 0;
}

#about .about-content {
  padding-top: 40px;
}

#about .about-content h2 {
  color: #413e66;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#about .about-content h3 {
  color: #696592;
  font-weight: 400;
  font-size: 22px;
  font-style: italic;
}

#about .about-content ul {
  list-style: none;
  padding: 0;
}

#about .about-content ul li {
  padding-bottom: 10px;
}

#about .about-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #70AF32;
}

#about img{
  border-radius: 20px;
}
#about .about-img {
  position: relative;
  margin: 30px 30px 30px 30px;
}

#about .about-img img {
  width: 100%;
  border: 8px solid #fff;
  transition: 0.5s;
}

#about .about-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}



/* Whyus Section
--------------------------------*/
#whyus {
  padding: 80px 0;
}

#whyus .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  box-shadow: 10px;
}

#whyus .box:hover {
  transform: scale(1.1);
}

#whyus .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#whyus .icon i {
  font-size: 36px;
  line-height: 0;
}

#whyus .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#whyus .title a {
  color: #70AF32;
}

#whyus .box:hover .title a {
  color: green;
}

#whyus .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;

}

/* Service Section
--------------------------------*/
#service {
  padding: 80px 0;
}

#service .features{
  padding-top: 40px;
}

.service-content{
  margin-top: 30px;
}

#service img{
  border-radius: 20px;
}

@media (max-width: 991px) {
  #service .service-content {
    padding-top: 40px;
  }
}


#service .service-content .features {
  margin: 0 0 15px 0;
  padding: 0;
}

#service .service-content .features:last-child, #service .service-content .features:last-child p {
  margin-bottom: 0;
}

#service .service-content .features i {
  font-size: 36px;
  float: left;
}

#service .service-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #413e66;
  margin-bottom: 5px;
}

#service .service-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #555186;
  padding-top: 20px;
}

/*count section*/

#count{
  background-color: #f5f8fd;
  padding: 80px 0;
}
#count .counters {
/*  padding-top: 40px;*/
}

#count .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #555186;
}

#count .counters p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #70AF32;
  font-weight: 500;
}



/* who-we-are Section
--------------------------------*/
#who-we {
  padding: 80px 0;
}

#who-we h4 {
  font-weight: 600;
  font-size: 24px;
  /*margin-top: 60px;*/
}

#who-we img{
  border-radius: 20px;
}

.our-client-approach p:last-child {
  margin-bottom: 0;
}

.who-we-item {
  align-items: center;
}


/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 80px 0;
  background-color: #f5f8fd;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
  background-color: #f5f8fd;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #70AF32;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #70AF32;
}


/* Clients Section
--------------------------------*/
#clients {
  padding: 80px 0;
}

#clients .section-header {
  margin-bottom: 40px;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #70AF32;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #70AF32;
}

/* Apply online Section
--------------------------------*/
#apply-online {
  background: #2d2b46;
  background-size: cover;
  padding: 80px 0;
}

#apply-online .ao-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#apply-online .ao-text {
  color: #fff;
  margin: 0;
}

@media (min-width: 991px) {
  #apply-online .ao-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#apply-online .ao-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#apply-online .ao-btn:hover {
  background: #70AF32;
  border: 3px solid #70AF32;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fb;
  min-height: 40px;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #555186;
  content: "/";
}

/*job-page-section*/

.job-page {
  padding: 15px 0;
  background: #f9f9fb;
  min-height: 40px;
  margin-top: 90px;
}

/*about-us section*/

.about-us {
  padding: 80px 0;
  background: #eff1f0;
  min-height: 40px;
  margin-top: 90px;
}

#about-us h1{
  font-size: 50px;
  font-weight: 700;
  color: grey;
  text-align: center;
}

#about-us h2{
  font-size: 35px;
  font-weight: 500;
  color: black;
  text-align: center;
  /*padding-top: 30px;*/
}

#about-us h3 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #70AF32;
  padding-top: 20px;
}

#about-us img{
  border-radius: 20px;
}
#about-us h4{
  text-align: center;
  color:grey;
  font-weight: 600;
  padding-top: 30px;
}

#about-us .bi{
  font-size: 50px;
  color: #70af32;
}

/*Training and development section*/

.training-start {
  padding: 80px 0 60px;
  background: #eff1f0;
  min-height: 40px;
  margin-top: 90px;
}

#training-start h1{
  font-size: 50px;
  font-weight: 700;
  color: grey;
  text-align: center;
  padding-bottom: 25px;
}

.training-start-item p{
  padding-top: 30px;
}

.training-start-item img{
  /*border-radius: 20px;*/
}
/
/*Training sub section*/

#training {
  padding: 80px 0;
}

#training .training-content {
  padding-top: 40px;
}

#training .training-content h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background: #70AF32;
  text-align: center;
  padding: 10px;
}

#training .training-content ul {
  list-style: none;
  padding: 0;
}

#training .training-content ul li {
  padding-bottom: 10px;
}

#training .training-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #70AF32;
}

#training .training-img {
  position: relative;
  margin: 30px 30px 30px 30px;
}

#training .training-img img {
  width: 100%;
  border: 10px solid #fff;
  transition: 0.5s;
  border-radius: 20px;
}

#training .training-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

#training .training-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

#training .training-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}


/*Talent Acqusition*/

.talent-acq {
  padding: 80px 0 30px;
  background: #eff1f0;
  min-height: 40px;
  margin-top: 90px;
}

#talent-acq h1{
  font-size: 50px;
  font-weight: 700;
  color: grey;
  text-align: center;
  padding-bottom: 25px;
}

.talent-acq-item p{
  padding-top: 20px;
  text-align: center;
}

.talent-acq img{
  border-radius: 20px;
}

/*Talent acqisition info*/

#acq {
  padding: 60px 0 80px;
}

#acq .acq-content {
  padding-top: 40px;
}

#acq .acq-content h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background: #70AF32;
  text-align: center;
  padding: 10px;
}

#acq .acq-content ul {
  list-style: none;
  padding: 0;
}

#acq .acq-content ul li {
  padding-bottom: 10px;
}

#acq .acq-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #70AF32;
}

#acq .acq-img {
  position: relative;
  margin: 30px 30px 30px 30px;
}

#acq .acq-img img {
  width: 100%;
  border: 10px solid #fff;
  transition: 0.5s;
  border-radius: 20px;
}

#acq .acq-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

#acq .acq-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

#acq .acq-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

#training {
  padding: 60px 0 80px;
}

/*contact-us page section*/

.contact-us {
  padding: 80px 0 30px;
  background: #eff1f0;
  min-height: 40px;
  margin-top: 90px;
}

#contact-us h1{
  font-size: 50px;
  font-weight: 700;
  color: grey;
  text-align: center;
  padding-bottom: 25px;
}

.contact-us-item p{
  padding-top: 20px;
  text-align: center;
}

.contact-us img{
  border-radius: 20px;
}

/*address section*/

#address {
  padding: 80px 0;
}

#address .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
  border-radius: 20px;
  box-shadow: 10px;
}

#address .box:hover {
  transform: scale(1.1);
}

#address .icon  {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  
}

#address .icon i {
  font-size: 46px;
  line-height: 0;
  color: #70AF32;
}

#address .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#address .title a {
/*  color: #70AF32;*/
  font-weight: 600;
}

#address h4{
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

#address .box:hover .title a {
  color: green;
}

#address .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;
}

#address .bi {
  padding-left: 10px;
}

/*careers section*/

.careers {
  padding: 80px 0 30px;
  background: #eff1f0;
  min-height: 40px;
  margin-top: 90px;
}

#careers h1{
  font-size: 50px;
  font-weight: 700;
  color: grey;
  text-align: center;
  padding-bottom: 25px;
}

.careers-item p{
  padding-top: 20px;
  text-align: center;
}

/*table section*/

.table{
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

.list{
  font-size: 20px;
  padding-right: 4px;
  background: #70AF32;
}

.table td{
  border: none;
  padding-top: 20px;
}

/*form section*/

#form{
  padding: 80px 0;
}

#form h4{
  font-size: 30px;
}

#form .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#form .php-email-form .error-message {
  /*display: none;*/
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  margin-top: 1rem;
}

#form .php-email-form .error-message br+br {
  margin-top: 25px;
}

#form .php-email-form .sent-message {
  /*display: none;*/
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-top: 1rem;
}

#form .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#form .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;
}

#form .php-email-form input,
#form .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#form .php-email-form input:focus,
#form .php-email-form textarea:focus {
  border-color: #1bb1dc;
}

#form .php-email-form input {
  padding: 10px 15px;
}

#form .php-email-form textarea {
  padding: 12px 15px;
}

#form .php-email-form button[type=submit], #form .php-email-form button.submit-btn {
  background: #70AF32;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#form .php-email-form button[type=submit]:hover, #form .php-email-form button.submit-btn:hover {
  background: green;
  cursor: pointer;
}

/*job opening section*/

#job-opening{
  padding: 80px 0;
}

/*form-start section*/

#job-opening h6{
  font-size: 15px;
  text-align: center;
}
#job-opening  h5{
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background: #70AF32;
  text-align: center;
  padding: 10px;
  word-spacing: 20px;
  cursor: pointer;
}

}

#job-opening ul {
  list-style: none;
  padding: 0;
}

#job-opening ul li {
  padding-bottom: 10px;
}

#job-opening ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #70AF32;
}

#job-opening .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#job-opening .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#job-opening .php-email-form .error-message br+br {
  margin-top: 25px;
}

#job-opening .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#job-opening .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#job-opening .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;
}

#job-opening .php-email-form input,
#job-opening.php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#job-opening .php-email-form input:focus,
#job-opening .php-email-form textarea:focus {
  border-color: #1bb1dc;
}

#job-opening .php-email-form input {
  padding: 10px 15px;
}

#job-opening .php-email-form textarea {
  padding: 12px 15px;
}

#job-opening .php-email-form button[type=submit], input.btnSubmit {
  background: #70AF32;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#job-opening .php-email-form button[type=submit]:hover, input.btnSubmit:hover {
  background: green;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  padding-top: 80px;
  font-size: 14px;
  background-color: #f5f8fd;
}

#footer .footer-info {
  margin-bottom: 60px;
}

#footer  .footer-info span {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #413e66;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #535074;
}

#footer .social-links{
  margin-top: 20px;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555186;
  margin-right: 24px;
  text-align: center;
  transition: 0.3s;
}

#footer  .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .social-links a:hover {
/*  background: #0a98c0;*/
  color: #70AF32;
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}

#footer  h4 {
  font-size: 18px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

#footer  .footer-links {
  margin-bottom: 60px;
}

#footer  .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer  .footer-links ul li {
  padding: 8px 0;
}

#footer  .footer-links ul li:first-child {
  padding-top: 0;
}

#footer  .footer-links ul a {
  color: #696592;
}

#footer  .footer-links ul a:hover {
  color: #70AF32;
}

#footer  .footer-contact {
  margin-bottom: 60px;
}

#footer  .footer-contact p {
  line-height: 26px;
  margin-bottom: 0;
}

 #footer .bi{
  padding-left: 10px;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#footer .copyright {
  text-align: center;
  padding-bottom: 20px;
  color: #535074;
  font-size: 12px;
}
.counter-nos {
    display: flex;
    justify-content: center;
}
#job-opening ul.sitemap-list  {
  list-style-type: none;
}
#job-opening ul.sitemap-list  li {
  padding: 0;
}
#job-opening ul.sitemap-list  li a {
  font-weight: 600;
  font-size: 24px;
  padding: 10px 0;
  display: inline-block;
}

ul.accordion-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.accordion-list li {
    padding: 0!important;
    background-color: #70AF32;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
}
ul.accordion-list li.active {
    overflow: hidden;
}
ul.accordion-list li h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    padding: 15px;
}
ul.accordion-list li.active h3 {
    padding: 15px!important;
    background: #70AF32;
    border-bottom: 1px solid #629c28;
}
.answer {
    padding: 15px;
    padding-top: 0;
    background: #61a81a;
    padding-top: 20px;
}
.answer ul li {
  background-color: transparent;
}
.accordion-list p {
    margin-bottom: 10px;
    font-size: 14px;
}
.accordion-list p:last-child {
    margin-bottom: 0;
}
.accordion-list p:last-child strong {
    display: block;
}
.accordion-list p .descriptions {
    display: block;
}
ul.accordion-list li.no-jobs {
    background-color: #ff555b;
    font-size: 16px;
    padding: 15px!important;
    cursor: default;
}
#message {
    background: #18d26e;
    color: #fff;
    padding: 0 15px;
    border-radius: 7px;
    line-height: 54px;
}
.alert-success {
  background: #18d26e;
  color: #fff;
  border: none;
  box-shadow: none;
  margin-top: 10px;
}
.alert-danger {
  background: #ed3c0d;
  color: #fff;
  border: none;
  box-shadow: none;
  margin-top: 10px;
}