@font-face {
    font-family: 'proxima_novaregular_italic';
    src: url('../fonts/proximanova-regularitalic-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-regularitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_novabold_italic';
    src: url('../fonts/proximanova-boldit-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-boldit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'proxima_novabold';
    src: url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
/*   color: #009961; */
  color: #50B948;
}

a:hover {
  color: #00cc81;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "proxima_novabold", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #009961;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #009961;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #00b371;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  height: 169px !important;
}

.header-scrolled{
  height: 169px !important;
}

#header.header-scrolled, #header.header-inner-pages {
  /* background: rgba(40, 40, 40, 0.9); */
  background: black;
}

#header .logo {
  font-size: 28px;
  margin: 10px 20px 0;
  padding: 0 140px 0 130px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 300px;
  max-width: 300px;
/*   border: 1px red solid; */
}

#header .logo_dark {
  width: 300px;
  max-width: 300px;
  /* border: 1px red solid; */
}

#header .logo_dark  a{
  /* border: 1px red solid; */
}

.right_li{
/*   margin: 0 40px !important; */
  padding: 0 40px !important;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  width: 30px;
  height: 50px;
  margin-top: -25px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 30px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
/*   margin: 0 20px; */
  padding: 0 20px;
  /* border: 1px blue solid; */
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgb(255, 255, 255);
  /* transition: 0.3s; */
  font-size: 16px;
  padding: 46px 0px 6px;
  font-weight: 600;
  font-family: "proxima_novaregular", sans-serif;
}

.header-scrolled .nav-menu a{
  padding: 26px 0px 26px 0 !important;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  /* background-color: #009961; */
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, 
.nav-menu li:hover > a:before, 
.nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, 
.nav-menu ul li.current-menu-item a,
/* .nav-menu .active > a,  */
.nav-menu li:hover > a {
  color: #fff;
  border-bottom: 3px solid #50B948 !important;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #50B948 ;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #282828;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #50B948;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

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

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

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009961;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(15, 15, 15, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
}

#hero h1:nth-child(2) {
  margin-bottom: 40px;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#009961 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #009961;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#hero .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #009961;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #009961;
}

#hero .content .btn-learn-more:hover {
  background: #009961;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 210px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #8fffd6;
}

.section-title { 
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  line-height: 60px;
  font-weight: 900;
}
.section-title h4 {
  text-align: center;
}

/* .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  bottom: 0;
  left: 0;
} */

.section-title p {
  margin-bottom: 0;
  color: #777777;
  font-size: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #009961;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #009961;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #009961;
}

.how .content .btn-learn-more:hover {
  background: #009961;
  color: #fff;
  text-decoration: none;
}
.how .icon-box {
  padding: 70px 90px;
  width: 100%;
  height: 100%;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 1px;
  border-bottom: 5px solid #fff;
}

.how .icon-box .icon {
  width: 64px;
  height: 64px;
  /* background: #009961; */
  border-radius: 0px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.how .icon-box .icon i {
  font-size: 28px;
}

.how .icon-box h4 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  font-size: 24px;
}

.how .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.how .icon-box p {
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
}

.how .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.how .icon-box:hover h4 a {
  color: #009961;
}


/*--------------------------------------------------------------
# Get Started
--------------------------------------------------------------*/
#get_started .icon-box {
  padding: 60px 30px;
  transition: all ease 0.2s;
  background: #fefefe;
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
  border-radius: 18px;
  border: 2px #fff solid;
}

#get_started .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
/*   transition: ease-in-out 0.3s; */
  color: #fff;
}

#get_started .icon-box .icon i {
  font-size: 28px;
}

#get_started .icon-box h4 {
/*   font-weight: 700; */
  margin-bottom: 15px;
  font-size: 24px;
}

#get_started .icon-box h4 a {
  color: #282828;
/*   transition: ease-in-out 0.3s; */
}

#get_started .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#get_started .icon-box:hover {
/*   transform: translateY(-10px); */
  border: 2px #50B948 solid; 
/*      box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15); */
}

#get_started .icon-box:hover h4 a {
  color: #009961;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 60px 30px;
  transition: all ease 0.2s;
  background: #fefefe;
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
  border-radius: 18px;
  border: 2px #fff solid;
}

.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
/*   transition: ease-in-out 0.3s; */
  color: #fff;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #282828;
/*   transition: ease-in-out 0.3s; */
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
/*   transform: translateY(-10px); */
  border: 2px #50B948 solid; 
/*      box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15); */
}

.services .icon-box:hover h4 a {
  color: #009961;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #00b371;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #009961;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 30px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

.clients .client-logo-4 {
  width: 12%;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #009961;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f4f4f4;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009961;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #009961;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #33ffb4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #f9f9f9;
}

.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #282828;
}

.pricing .box h4 {
  font-size: 42px;
  color: #009961;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 20px 0;
  list-style: none;
  color: #282828;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #009961;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #009961;
  color: #009961;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #009961;
  color: #fff;
}

.pricing .recommended {
  border-color: #009961;
}

.pricing .recommended .btn-buy {
  background: #009961;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #00b371;
  border-color: #00b371;
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #edfbf0;
  color: #009961;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq {
  padding: 0;
}

.faq .content {
  padding: 60px 100px 0 100px;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #848484;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-list {
  padding: 0 100px 60px 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 4px;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
}

.faq .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #009961;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .faq .content, .faq .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .faq {
    /* img {
      padding-top: 30px;
    } */
  }
  .faq .content {
    padding-top: 30px;
  }
  .faq .accordion-list {
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #009961;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

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

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

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

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

.contact .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;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

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

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #009961;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #00b371;
}

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

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

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

.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: #424242;
  content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #009961 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h3 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 75px 0 0 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  /* font-style: italic; */
  padding: 0;
  margin: 0 0 30px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009961;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00b371;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  transition: 0.3s;
}

#footer .container{
  max-width: 1250px;
  width: 100%;
}

#footer .credits a:hover {
  color: #009961;
}

#footer li{
  list-style: none;
  padding-bottom: 15px;
  line-height: 22px;
}

.got_questions{
  font-size: 16px;
  line-height: 22px;
}

#footer ul{
  /* padding: 0; */
}

#footer #email{
  height: 50px;
  width: 70%;
}

#footer .aboutus_button_fill{
  width: 21%;
  padding-left: 27px;
  margin-right: 0;
}

.li_title{
  font-size: 18px;
}

.li_a{
  font-size: 16px;
}

.copyright_wrap li a{
  color: white !important;
}

#footer_final{
  height: 110px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding-top: 45px;
  font-size: 16px;
  padding-bottom: 30px;
}

.social_link {
  font-size: 30px;
}

.copyright_wrap{
  padding-top: 8px;
}

.copyright_wrap ul{
  padding: 0;
}

.social_wrap li{
  float: left;
  padding-right: 10px;
}

.copyright_wrap li{
  float: right;
  padding-left: 30px;
}

.copyright_wrap li:last-child{
  padding-left: 0;
}

@media (min-width: 1200px){
  .col-xl-9 {
      flex: 0 0 1140px !important;
      max-width: 1140px !important;
  }
}

li.logo a{
  padding: 40px 75px;
}

.selected_menu{
  border-bottom: 3px solid #50B948;
}

.selected_orange {
  border-color: #FF4800;
}

.nav-menu ul li.no_border a:hover, 
.nav-menu ul li.no_border.current-menu-item a, 
.nav-menu ul li.no_border:hover > a {
  border-bottom: 0 !important;
}

.btn-learn-more{
  padding: 12px 63px 13px 72px;
  background: #50B948;
  color: white;
  margin-top: 98px !important;
  border-radius: 10px;
}

.how_title{
  font-size: 28px;
  font-weight: 900;
  line-height: 34px;
}

.spark{
  color: #50B948;
}

.how_image{
  width: 120%;
}

.how_link{
  text-align: center;
  margin-top: 20px;
}

.how_link i{
  font-size: 12px;
}

#how{
/*   background-color: #FAFAFA; */
  background: url('../img/method-pattern-3.png') top left repeat scroll #FAFAFA;;
  padding: 180px 0;
}

#aboutus{
  padding: 0 !important;
}

#clients .container{
  width: 100%;
  max-width: 1150px;
  /* border: 1px red solid; */
}

#aboutus .container, #ignite .container, #youth .container, #woman .container{
  width: 1440px;
  max-width: 1440px;
}


.aboutus_title{
  /* margin-top: 120px; */
  font-size: 60px;
    line-height: 73px;
    font-weight: 700;
    margin-bottom: 0;
}

.aboutus_text{
  font-size: 18px;
  text-align: left;
  line-height: 32px;
  margin-top: 2vw;
  margin-bottom: 0;
}

.hero_content_wrap{
  margin-top: 200px;
}

#how_we_work_hero .hero_content_wrap {
  margin-top: 0px;
}

.aboutus_button_wrap {
  margin-top: 3vw;
}

.aboutus_sub_title{
  color: #50B948;
  font-size: 24px;
  font-weight: 900;
}

.aboutus_left_panel_wrap{
  width: 500px;
    margin-right: 2vw;
    margin-top: 7vw;
}

.aboutus_left_panel{
  padding: 6vw 4vw 0 20vw;
}

@media only screen and (max-width: 1440px) {
  .aboutus_left_panel{
    padding: 0 50px 0 11% !important;
  }
}

@media only screen and (max-width: 1100px) {
  .aboutus_left_panel_wrap{
    float: none !important;
    width: 480px;
    margin-right: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 990px) {
  .aboutus_left_panel_wrap{
    width: 98%;
    margin: 50px auto 150px auto;
  }
}

@media only screen and (max-width: 560px) {
  .aboutus_button.aboutus_button_blank{
    margin-top: 20px;
  }
}

.request_section .aboutus_button{
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 1.1px;
  margin-right: 0;
  margin: 0 35%;
  width: 300px;
}

.menu_item:hover{
/*   color:#50B948 !important; */
color: #fff;
}

.aboutus_button{
  font-size: 16px;
  border-radius: 5px;
  float: left;
  padding: 10px 20px 10px 0px;
  border: 2px solid #50B948;
  text-align: center;
}

.aboutus_button_fill{
  background-color: #50B948;
  color: white;
  margin-right: 20px;
}

.aboutus_button_fill:hover{
  color: #50B948;
  background-color: transparent;
}

.hero_button{
  border: 2px solid #50B948;
}

.home .hero_button:hover{
  background-color:#fff;
}

.hero_button:hover{
  color: #50B948;
  background-color:transparent;
}

.aboutus_button_blank{
    color: #50B948;
}

.aboutus_button_blank:hover{
  color: white;
  background-color: #50B948;
}

#ignite{
  padding: 0;
  background-color: #F4F4F4;
}

li.logo_dark a{
/*   padding: 23px 0 23px 48px !important; */
  padding: 23px 0 !important;
}

.ignite_content_wrap{
  padding: 10vw 11vw 0 8vw;
}

.con_image{
  width: 30px;
}

.ignite_content_right_wrap {
  padding: 6vw 5vw 0 10vw;
}

section .container-fluid{
  padding-left: 0;
  padding-right: 0;
}

.rect{
  width: 36px;
    height: 50px;
    background-color: #FF4800;
    margin-right: 20px;
    margin-top: 5px;
}

.ignite_title{
  font-size: 50px;
  color: #0F1E0A;
  font-weight: 900;
  line-height: 61px;
}

.youth_title{
  color: white !important;
}

.ignite_text{
  font-size: 18px;
  line-height: 32px;
  color: black;
  clear: both;
  margin-top: 4vw;
  text-align: justify;
  padding-right: 36px;
}

.youth_text{
  color: white;
}

@media only screen and (max-width: 1600px) {
/*   .poly_text {
    width: 40% !important;
  } */
}

@media only screen and (max-width: 1260px) {
  .poly_text {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .poly_rect {
    margin-left: 30%;
  }
}

@media only screen and (max-width: 1200px) {
  .ignite_content_wrap {
    padding: 9vw 66px 0 5vw;
  }
  .youth_title_wrap {
    padding: 10vw 3vw 0 6vw !important;
  }
  #special {
    padding: 6vw 0vw !important;
  }
  .special1_wrap, .special2_wrap {
    padding: 40px 13px !important;
    height: 315px !important;
  }
  .special1_wrap {
    padding: 40px 70px !important;
  }
}

@media only screen and (max-width: 1100px) {
  .poly_text {
    width: 50%;
  }
  #ignite {
    padding-top: 70px;
    background-color: #F4F4F4;
  }
}

@media only screen and (max-width: 992px) {
  .ignite_content_wrap {
    padding: 9vw 66px 38px 5vw;
  }
  .youth_title_wrap{
    padding-bottom: 40px !important;
  }
  .for_2column{
/*     display: none; */
  }
  .for_1column{
/*     display: block !important; */
  }
}

/* @media only screen and (max-width: 768px) {
  .special_image{
    text-align: center;
  }
  .slider_image {
    width: 50% !important;
  }
  .pagination_wrap {
    left: 47%;
  }
} */

.ignite_link{
  text-align: left;
    margin-top: 1.5vw;
}

.ignite_link a{
  color: #FF4800 !important;
  font-size: 18px;
  font-weight: 900;
}

.poly_rect{
  background: url(../img/icon/4.png) no-repeat;
  margin-left: 35%;
  height: 295px;
  margin-top: -45px;
  padding: 35px 115px;
}

.poly_rect_image{
  /* margin-left: 90px; */
}

.poly_title{
  font-size: 48px;
  margin-top: 10px;
  font-weight: 900;
}

.poly_text{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
}

#youth{
    padding: 0;
}

.youth_title_wrap{
  margin-right: 0;
  margin-left: 0;
  padding: 10vw 8vw 0 11vw;
}

.youth_rect{
  background-color: #50B948;
}

.youth_link a{
  color: #50B948 !important;
}

.special_text_wrap{
  border: 3px solid;
  width: 600px;
  margin: 0 auto;
  margin-top: -70px;
  padding: 45px;
}

.special_text{
  font-size: 18px;
  line-height: 32px;
  margin-top: 20px;
}

.special_image{
  padding: 0;
}

.for_2column, .for_1column{
  background-color: black;
}

#woman{
  padding: 0;
  margin-top: 0;
}

.woman_content_wrap_wrap{
  background-color: #F4F4F4;
}

.woman_content_wrap{
  background-color: #F4F4F4;
}

.logo_link,
.logo-link a {
  padding: 52px 0px 32px 0px !important;
  font-size: 30px !important;
  /* border: 1px pink solid; */
}

.header-scrolled .logo_link{
  margin-top: 7px !important;
}

.woman_title{
  color: black;
}

.woman_text{
  color: black;
  text-align: justify;
}

.ignite_text {
  padding-right: 15px !important;
}

.woman_link{
  text-align: left;
}

.woman_link a{
  color: #653090 !important;
}

#get_started .services_title,
#services .services_title {
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}

.services_title{
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  text-align: center;
}

#services {
  padding: 0px 0 0;
  margin-top: -110px;
  position: relative;
  z-index: 100;
/*   border: 1px red solid; */
  /* background: #fff; */
}

#services .container {
  max-width: 1280px;
}

#services .services_content_wrap {
  width: auto !important;
  margin: 0 auto;
  background: #fff;
  padding: 40px 80px 0;
  /*     overflow: hidden; */
}


#services .icon-box{
  text-align: center;
  width: 100%;
  padding: 20px 15px 20px 15px !important;
  height: 260px;
  max-width: 270px;
  margin: 0 auto 20px;
}


#services .icon {
  background: transparent !important;
  width: 100% !important;
  height: 100px !important;
  margin-bottom: 9px !important;
  margin-top: 20px;
}

#services .icon_text{
  font-size: 18px !important;
  line-height: 24px !important;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}


/* Get Started */

#get_started{
  padding: 120px 0 50px;
  position: relative;
  z-index: 100;
  /* background: #fff; */
}

#get_started .services_content_wrap {
  width: 825px;
  margin: 0 auto;
}

#get_started .icon-box{
  text-align: center;
    width: 100%;
    padding: 40px 30px 20px 30px !important;
    height: 250px;
    margin-bottom: 20px;
}

#get_started .icon {
  background: transparent !important;
  width: 100% !important;
  height: 100px !important;
  margin-bottom: 9px !important;
}

#get_started .icon_text {
  font-size: 25px !important;
  line-height: 32px !important;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}

.form_title {
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
}

.client-logo{
  width: 11.80%;
  margin-right: 0.65%;
  border: none !important;
  padding: 0 !important;
}

.client-logo:last-child{
  margin-right: 0;
}

.clients .clients-wrap{
  border: none;
}

#clients .section-title{
  padding-bottom: 0;
}

#clients .services_title{
  padding-bottom: 0;
}

#clients{
  padding-bottom: 60px !important;
}

.pagination_wrap{
    position: absolute;
    bottom: 10%;
    left: 43%;
}

.page_link{
  width: 15px;
  height: 15px;
  float: left;
  background-color: #D8D8D8;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

/* .orange_slider,
.green_slider,
.purple_slider,
.current{
  background-color: #FF4800 !important;
} */

.orange_slider,
.orange_slider .current{
  background-color: #FF4800 !important;
}

.green_slider,
.green_slider .current{
  background-color: #50B948 !important;
}

.purple_slider,
.purple_slider .current{
  background-color: #653090 !important;
}

.for_1column{
  display: none;
}

@media only screen and (max-width: 768px) {
  #aboutus .container, #ignite .container, #youth .container, #woman .container{
    width: 100% !important;
    max-width: 100% !important;
  }
  #clients .container{
    width: 100% !important;
    max-width: 100% !important;
  }
  #footer .container{
    max-width: 100% !important;
    width: 100% !important;
  }
  .pagination_wrap {
    /* bottom: 270px !important; */
}
  .ignite_content_wrap {
      margin-right: 0px !important;
      padding: 70px 10px 4px 10px !important;
      height: 55vw !important;
  }
  .poly_rect {
    margin-left: 120px !important;
    margin-top: 70px !important;
    padding: 35px 115px !important;
}
.for_2column{
  /* display: none; */
}
.for_1column{
  display: block !important;
}
#youth {
  margin-top: 0px;
}
.special_image_wrap{
  text-align: center;
}
.special_image {
  /* width: 80% !important; */
}
#woman {
  margin-top: 70px !important;
}
.special_text_wrap {
    width: 525px !important;
    margin-top: 100px !important;
    padding: 60px !important;
}
.poly_text{
  width: 82%;
}
  #how .order-2:nth-child(2){
    margin-top: 30px;
  }
  #aboutus .col-lg-6.col-md-12:first-child{
    padding-right: 45px !important;
    text-align: justify !important;
    padding-bottom: 100px !important;
    padding-left: 45px;
  }
  .special_image{
    /* padding: 30px 100px; */
  }
  #services .services_content_wrap {
    width: 100% !important;
  }
  #clients .container{
    margin: 0 !important;
    max-width: 100% !important;
  }
  #services{
    padding-bottom: 70px !important;
  }
  .request_section .first_input{
    width: 90% !important;
  }
  
  .request_section .input-group-append{
      width: 10% !important;
  }
  .item_wrap {
    padding: 0 10px !important;
  }
  .paginations_wrap{
    padding: 0 15px !important;
  }
  .item_image{
    width: 400px;
  }
  .itemimages_wrap {
    width: 2500px !important;
    margin-left: -280px;
  }
  .item_image_wrap {
    margin-right: 20px !important;
  }
  .opacity_wrap, .image_item_desc_wrap{
    /* display: none !important; */
    width: 100% !important;
    height: 130px !important;
    margin-top: -130px !important;
  }
  .image_item_desc, .image_item_link{
    display: none;
  }
  .item_image_wrap:last-child{
    margin-right: 0 !important;
  }
  .copyright_wrap {
    padding-top: 11px !important;
  }
  .copyright_wrap li {
    padding-left: 20px !important;
  }
  .image_item_desc_wrap {
    margin-top: -130px !important;
    width: 100% !important;
    padding: 30px !important;
  }
}

@media only screen and (max-width: 415px) {
  .special_wrap {
    padding: 0 15px 25px 15px !important;
  }
  .opacity_wrap{
    height: 100px !important;
    margin-top: -100px !important;
  }
  .image_item_name {
    font-size: 28px !important;
    line-height: 1.3em !important;
  }

  .image_item_desc_wrap h2 {
    font-size: 20px !important;
  }

  .request_section .aboutus_button.aboutus_button_fill {
      margin: 0 15px !important;
  }
  .request_section .form_button_wrap{
    padding-top: 30px !important;
  }
  .how .icon-box {
    padding: 50px 10px !important;
    text-align: center;
  }
  #aboutus .col-lg-6.col-md-12:first-child {
    padding-right: 15px !important;
    padding-left: 15px !important;
}
.aboutus_button.aboutus_button_fill{
  margin: 0 65px !important;
}
.aboutus_button.aboutus_button_blank{
  margin: 0 36px !important;
  padding: 10px 35px 10px 35px !important;
}
.special_image {
  width: 100% !important;
  padding: 15px !important;
}
  .how{
    padding-bottom: 70px !important;
  }
  .aboutus_title{
    margin-top: 60px !important;
  }
  .aboutus_button_wrap a:first-child{
    margin-top: 50px !important;
    margin-bottom: 30px !important;
    padding: 10px 35px 10px 35px !important;
  }
  .ignite_content_wrap {
    height: 490px !important;
    margin-top: 30px !important;
    padding: 45px 0 0 20px !important;
    text-align: justify !important;
    margin-left: 0 !important;
  }
  .poly_rect{
    background: none !important;
    margin-left: 0 !important;
    margin-top: 30px !important;
    padding: 20px 10px !important;
    background-size: cover !important;
    text-align: center !important;
  }
  .poly_rect_image {
    margin-left: 0 !important;
  }
  .poly_text {
    width: 100% !important;
    font-size: 20px;
  }
  .youth_title_wrap {
    margin-right: 0 !important;
  }
  .youth .col-lg-5.col-md-6:nth-child(2){
    margin-top: 30px;
  }
  .special_text_wrap {
    width: 100% !important;
    margin-top: 45px !important;
    padding: 30px !important;
  }
  .special_text {
    /* text-align: justify !important; */
  }
  .special_text_wrap .col-12.col-lg-3{
    text-align: center;
  }
  .pagination_wrap {
    /* bottom: 160px !important; */
}
.ignite_content_wrap {
  height: 570px !important;
  margin-right: 0px !important;
}
.special_text_wrap {
  padding: 30px 10px !important;
}
.special_image {
  width: 100% !important;
}
#footer .aboutus_button_fill {
  width: 28% !important;
  margin: 3px 0 !important;
  padding: 10px 50px 10px 27px !important;
}
  #woman{
    margin-top: 50px !important;
  }
  .client-logo {
    width: 32% !important;
    margin-right: 1% !important;
    height: 100px !important;
  }
  .white_board_415{
    display: block !important;
    height: 250px !important;
  }
  .white_board{
    display: none;
  }
  .hero_content_wrap {
    padding-top: 216px !important;
  }
  .hero_desc {
    font-size: 14px !important;
  }
  .hero_sub_title {
    margin-top: 25px !important;
  }
  .hero_content_wrap h4{
    font-size: 20px !important;
  }
  .hero_button_wrap{
    margin-top: 25px !important;
  }
  .hero_button_wrap a{
    padding: 0px 10px 20px 10px !important;
  }
  #about,
  .comments {
    padding: 100px 20px 40px 20px !important;
  }
  .poly_title {
    padding-left: 0 !important;
  }
  .paginations_wrap {
    width: 340px !important;
  }
  .pagination_item a {
    font-size: 18px !important;
  }
  .item_image {
    width: 340px !important;
  }
  .itemimages_wrap{
    width: 2180px !important;
    margin-left: -365px;
  }
  .footer_first_second{
    margin-top: 30px !important;
  }
  .copyright_wrap li {
    padding-left: 10px !important;
    font-size: 13px !important;
  }
  #footer_final {
    height: 210px !important;
    margin-top: 80px !important;
  }
  .copyright_wrap {
    padding-top: 0px !important;
  }
  #event_hero .aboutus_button.aboutus_button_blank {
    margin: 0 0px !important;
    padding: 10px 15px 10px 15px !important;
  }
  #event_hero .aboutus_button.aboutus_button_fill {
    margin: 0 30px !important;
    padding: 10px 10px 10px 10px !important;
  }
  .event_hero_text{
    margin-top: 170px;
  }
  .image_item_desc_wrap {
    height: auto !important;
    /* margin-top: -100px !important; */
  }
  .image_item_desc_wrap {
    margin-top: 0 !important;
    padding: 20px 0 !important;
    text-align: center;
  }
}

.event_hero{
  padding-top: 0 !important;
  color: white;
}

.event_hero .container{
  padding-top: 0 !important;
}

#aboutus .aboutus_button{
  padding: 10px 45px 10px 45px;
}

.hero_desc{
  font-size: 18px;
}

#event_hero .hero_sub_title1{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  text-align: left;
}
#event_hero .aboutus_button {
  padding: 10px 75px 10px 75px !important;
}

.hero_sub_title{
  margin-top: 75px;
}

.hero_button_wrap{
  margin-top: 45px;
}

#event_hero .hero_content_wrap{
  padding-top: 0px;
  margin-top: 325px;
}

.white_board{
  background-color: white;
  width: 100%;
  max-width: 510px;
  height: 540px;
  border-radius: 0px;
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,.25);
  z-index: 1;
  position:absolute;
  top: 10px;
}

#about {
  margin-top: -230px;
  position: relative;
  z-index:100;
  padding: 0px 20px 70px 20px;
  line-height: 2;
  /*   background: #fff; */
}

#about .container {
  max-width: 1280px;
}

.about_content_wrap {
  padding: 40px 40px 0;
  background: #fff;
}

.about_wrap .section-title {
/*   color: #fff; */
}

.comments{
  padding: 150px 20px 70px 20px;
  line-height: 2;
}

#about p,
#comments p{
  font-size: 18px;
  line-height: 32px;
}

.white_board_415{
  display: none;
  background-color: white;
  width: 100%;
  height: 600px;
  margin-top: 30px;
  border-radius: 5px;
}

#event_hero{
  width: 100%;
  height: 80vh;
  background: url("../img/background3.jpg") top center;
  background-size: cover;
  /* position: relative; */
  overflow: inherit;
}

.event-content {
  padding: 185px 20px 50px 20px;
  line-height: 2;
}

#how_we_work_hero{
  width: 100%;
  height: 70vh;
  background: url("../img/background4.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;  
  position: relative;
}

#about_hero{
  width: 100%;
  height: 130vh;
  background: url("../img/background3.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;  
  position: relative;
}

#request_hero{
  width: 100%;
  height: 80vh;
  background: url("../img/background4.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;  
  position: relative;
}

.page-template-tpl-request #request_hero {
  width: 100%;
  height: 90vh;
  background: url("../img/background4-a.jpg") center center;
  background-size: cover; 
  background-position: 0 -70px;
  background-repeat: no-repeat;  
  position: relative;   
}

.page-template-tpl-contact #request_hero {
  width: 100%;
  height: 80vh;
  background: url("../img/background4.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}


.text_green{
  color: #50B948 !important;
}

#event_hero .hero_title{
  font-size: 48px;
  font-weight: 900;
  line-height: 60px;
}

#event_hero .hero_desc{
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
}

#how_we_work_hero .hero_title{
  font-size: 48px !important;
  text-align: center !important;
  line-height: 60px;
  font-weight: 900;
}

#request_hero .hero_title{
  font-size: 48px !important;
  text-align: center !important;
  line-height: 60px;
  font-weight: 900;
}

.section-desc {
  margin-top: 30px;
  margin-bottom: 20px;
}

.services_desc{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
}

.request_services_content_wrap{
  width: 1000px !important;
  margin-top: 50px !important;
}

.request_services_content_wrap .col-lg-4.col-md-6{
  padding: 0 30px;
}

.services_image{
  width: 100px;
}

.request_section{
  padding: 0 0 90px 0 !important;
  /* border: 1px red solid; */
  margin-top: -130px;
}

.form_sub_title{
  font-size: 18px;
  line-height: 32px;
  font-weight: 900;
  color: #0F1E0A;
}

.request_section label{
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 1.17px;
  color: #0F1E0A;
}

.form.form_section input, .form.form_section select{
  height: 50px;
  font-size: 16px;
}

.form.form_section input:focus, .form.form_section select:focus{
  outline: none;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.2);
}

.form_button_wrap{
  padding-top: 70px;
}

.form_section .first_input{
  width: 93%;
  border-right: none;
}

.form_section .input-group-append{
  border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 15px 10px;
    width: 7%;
}

.request_section i.fa-close{
  cursor: pointer;
}

.icon-box a{
  color: black;
}

#how .icon-box a{
  color: #50B948;
  font-size: 18px;
  line-height: 32px;
  font-weight: 900;
}

.icon_box_sign{
  width: 24px;
  height: 24px;
  border: 2px solid;
  font-size: 18px;
}

.icon_box_sign i{
  display: none;
}

.selected_icon_box{
  background-color: #00b936;
  color: white;
  border: 2px solid #00b936;
}

.selected_icon_box i{
  display: block !important;
}

.selected_icon_box_wrap{
  border: 2px solid #00b936 !important;
/*   border-bottom: 2px solid #00b936 !important; */
}

.item_wrap{
  text-align: center;
/*   padding: 0 65px; */
  padding: 0 4%;
  line-height: 2;
  /* border: 1px red solid; */
}

.numbers{
  font-size: 52px;
  line-height: 60px;
  font-weight: 900;
  color: #0F1E0A;
  text-align: center;
}

.description{
  font-size: 24px;
  line-height: 29px;
  color: #0F1E0A;
  font-weight: 900;
}

.introduce{
  padding: 50px 0;
}

.paginations_wrap{
    width: 100%;
    max-width: 720px;
    margin: 0 auto 30px;
}

.paginations_wrap .col-3{
  padding: 0;
}

.pagination_item{
/*   font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  text-align: center;
  border-bottom: 7px solid;
  padding-bottom: 10px;
  cursor: pointer; */
}

.selected_item{
  border-color: #50B948;
}

/* .itemimages_wrap{
  width: 4530px;
  margin-top: 30px;
  margin-left: -165px;
}

.item_image_wrap{
  margin-right: 30px;
  position: relative;
}

.item_image_wrap:last-child{
  margin-right: 0;
} */

.introduce .container{
  overflow: hidden !important;
}

.item_image{
  opacity: 0.3;
}

.selected_image_wrap img{
  opacity: 1 !important;
}

.image_item_link{
  color: #50B948;
  font-size: 18px;
  line-height: 32px;
  font-weight: 900;
}

.image_item_desc_wrap {
    /*     margin-top: -270px;
    width: 730px; */
    padding: 30px 45px;
    color: white;
    display: none;
    position: absolute;
    z-index:9999;
    bottom: 0;
    background: rgba(0,0,0,.70);
    width: 100%;
}

.owl-item.active.center .image_item_desc_wrap {
  display: block;
}



.image_item_name{
  font-size: 40px;
  line-height: 51px;
  font-weight: 900;
  color: white;
}

.image_item_desc_wrap h2 {
  font-size: 28px;
}

.image_item_desc{
  text-align: justify;
  font-size: 16px;
  line-height: 24px;
  color: white;
}

.opacity_wrap{
  width: 730px;
  height: 250px;
  margin-top: -248px;
  background-color: black;
  opacity: 0.7;
  display: none;
}

#comments .container-fluid{
  width: 1040px;
}

@media only screen and (max-width: 1100px) {
  #comments .container-fluid{
    width: 100%;
  }
  #aboutus .aboutus_button {
    padding: 10px 35px 10px 35px !important;
    margin-bottom: 20px !important;
  }
  .aboutus_left_panel_wrap {
    padding-left: 20px !important;
  }
}

#about_hero .hero_title{
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.section-title h1{
  font-weight: 900;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
}

.hero_sub_title{
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  text-align: center;
}

#howto{
  background-color: #FAFAFA;
  padding: 170px 0;
}

.howto_item_image{
  width: 100px;
  height: 100px;
}

.howto_item_wrap{
  background-color: white;
  padding: 90px 65px 60px 65px;
  /* border-radius: 5px; */
  text-align: center;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
/*   height: 767px; */
  transition: all ease-in-out 0.3s;
}

.howto_item_wrap:hover {
    transform: translateY(-10px);
    border-bottom: 5px #009961 solid;
}

.howto_item_title{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  color: #0F1E0A;
  margin-top: 30px;
  margin-bottom: 15px;
}

.howto_item_text{
  font-size: 16px;
  line-height: 24px;
  color: #0F1E0A;
  text-align: justify;
}

.howto_item_subtitle{
  font-size: 18px;
  font-weight: 900;
  line-height: 32px;
  color: black;
  margin-top: 30px;
  margin-bottom: 40px;
}

.howto_button{
  font-size: 16px;
  line-height: 19px;
  padding: 10px 40px;
  border-radius: 5px;
  border: 1px solid #50B948;
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .howto_item_wrap{
    margin-bottom: 30px !important;
  }
  .howto_item_wrap{
    height: 740px !important;
  }
  .howto_item_wrap_second{
    height: 680px !important;
  }
  
}

@media only screen and (max-width: 415px) {
  .howto_item_wrap {
    padding: 60px 10px 40px 10px !important;
    height: 940px !important;
  }
  .howto_item_wrap_second{
    height: 780px !important;
  }
  .howto_item_title {
    font-size: 20px !important;
  }
  .howto_item_subtitle {
    font-size: 16px !important;
  }
}

#initiativewomen_hero{
  width: 100%;
  height: 550px;
  background: url(../img/background4.jpg) top center;
  background-size: cover;
  position: relative;
  background-position:center center;
  border-bottom: 2px solid white;
  overflow: inherit;
  z-index: 20;
}

#initiativeyouth_hero{
  width: 100%;
  height: 550px;
  background: url(../img/youth_back.jpg) top center;
  background-size: cover;
  position: relative;
  /* background-position-y: 0px; */
  border-bottom: 2px solid white;
  overflow: inherit;
}

#initiativeignite_hero{
  width: 100%;
  height: 550px;
  background: url(../img/igniteback-1.jpg) top center;
  background-size: cover;
  position: relative;
  /* background-position-y: 0px; */
  border-bottom: 2px solid white;
  overflow: inherit;
}


#initiativeignite_hero .container,
#initiativeyouth_hero .container,
#initiativewomen_hero .container {
  max-width: 1250px;
}

#initiativewomen{
  background-color: #1B1B1B;
  padding: 0 100px;
}

.empowering{
  background-color: white;
  padding: 60px 165px;
  margin: 0 auto;
  margin-top: 750px;
  width: 100%;
  /* max-width: 1280px; */
  color: #0F1E0A;
}

.initiativewomen_wrap{
  width: 100%;
  max-width: 1176px;
    margin: 0 auto;
}

.empowering_titlr{
  color: #0F1E0A;
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
}

#initiativewomen{
    /* height: 605px; */
    background-color: #1B1B1B;
    padding: 210px 0 0px;
}

.empowereing_women_white{
  text-align: center;
  color: white;
  padding-top: 170px;
  margin-top: 0px;
  /* padding-bottom: 80px; */
  position: relative;
}

.empowereing_women_white_sub_title{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
}

.empowereing_women_white_title{
  font-weight: 900;
  font-size: 48px;
  line-height: 60px;
}

.empowering_text{
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  margin-top: 30px;
  margin-bottom: 30px;
/*   text-align: justify; */
}

.empowering_sub{
  color: #0F1E0A;
  font-size: 16px;
  line-height: 24px;
}

.empowering_ul li{
  color: #0F1E0A;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.pdf_image{
  width: 125px;
}

.pdf_button{
  font-size: 16px;
    line-height: 19px;
    width: 240px;
    height: 45px;
    margin-top: 30px;
    border-radius: 5px;
    background-color: #653090;
    color: white;
    border-color: #653090;
}

.woman_tab_item{
  text-align: center;
  font-size: 24px;
  line-height: 29px;
  width: 86%;
  margin: 0 auto;
  padding-bottom: 32px;
  font-weight: 900;
}

.woman_tab_item:hover{
  cursor: pointer;
}

.woman_tab_selected{
  border-bottom: 9px solid #653090;
}

.woman_tab_wrap {
/*   position: absolute; */
  width: 100%;
  max-width: 1035px;
  margin: 60px auto 0;
/*   margin-top: 60px; */
  /* top: 415px; */
  background-color: #1B1B1B;
}

#code{
  padding: 0;
}

.code_text_wrap1{
  margin-top: 80px;
  padding: 70px 90px 70px;
}

.item_title{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  color: #0F1E0A;
}

.item_text{
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
  color: #0F1E0A;
}

.index{
  color: #653090;
}

.code_image_wrap1{
  background: url("../img/blackwoman1.png") no-repeat;
  background-size: cover;
}

.code_image_wrap2{
  background: url("../img/blackwoman1-4.jpg") no-repeat;
  background-size: cover;
  background-position: 0px -250px;
}

/* .code_image_wrap2{
  background: url("../img/blackwoman2.png") no-repeat;
  background-size: cover;
} */

.code_image_wrap2_360{
  background: url("../img/blackwoman2.png") no-repeat;
  background-size: cover;
}

.code_text_right_wrap {
   padding: 70px 90px;
}

/* .background_opacity{
  background: url('../img/blackwoman4.jpg');
} */

.background_opacity::before {    
  content: "";
  background-image: url('../img/blackwoman4.jpg');
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.1;
}

.code_image_wrap3{
  background-color: #653090;
  text-align: center;
  padding: 120px 20% 175px;
}

.code_image_wrap3 a {
  color: #fff;
  text-decoration: underline;
}

.code_image3{
  width: 275px;
  height: 100%;
}

.code_image3_text{
  font-size: 21px;
  line-height: 32px;
/*   font-weight: 900; */
  color: white;
  margin-top: 50px;
}

.empowering_right_wrap_br{
  display: none;
}

.code_image_wrap2_360{
  display: none;
}

@media only screen and (max-width: 768px) {
  .request_section .aboutus_button {
    margin: 0 27% !important;
  }
  #initiativewomen_hero {
    height: 390px !important;
    background-position-y: -167px !important;
  }
  #initiativeyouth_hero{
    height: 390px !important;
    /* background-position-y: -167px !important; */
  }
  .empowering {
    padding: 40px 30px !important;
    width: 84% !important;
    margin-top: 900px !important;
  }
  .empowering_titlr {
    text-align: center !important;
  }
  .empowering_right_wrap{
    padding-top: 30px;
  }
  .empowering_right_wrap_br{
    display: block !important;
  }
  #initiativewomen {
    /* height: 757px !important; */
    padding: 238px 90px 0 90px !important;
  }
  .initiativewomen_wrap {
    width: 100% !important;
    margin: 0 auto;
  }
  .row{
    margin:  0 !important;
  }
  .empowereing_women_white {
/*     padding-top: 200px !important; */
/*     margin-top: 100px !important; */
/*     padding-bottom: 65px !important; */
  }
  .woman_tab_wrap {
    width: 88% !important;
    top: 347px !important;
    margin: 0 30px 0 33px !important;
  }
  .woman_tab_item {
    padding-bottom: 32px !important;
  }
  .code_text_wrap1 {
    padding: 30px 15px 30px 30px !important;
  }
  .code_text_right_wrap {
    padding: 30px 15px 30px 15px !important;
  }
  .code_image_wrap3 {
    padding: 50px 25px 50px 10px !important;
  }
  .code_image3 {
    width: 120px !important;
    height: 120px !important;
  }
}

@media only screen and (max-width: 415px) {
  .pdf_image {
    display: none;
  }
  .empowering_titlr {
    font-size: 34px !important;
    line-height: 45px !important;
  }
  #initiativewomen_hero {
    height: 260px !important;
    background-position-y: -75px !important;
  }
  #initiativeyouth_hero{
    height: 260px !important;
    /* background-position-y: -75px !important; */
  }
  .empowering {
    padding: 30px 10px !important;
    width: 90% !important;
    margin-top: 700px !important;
  }
  .empowering_text {
    margin-top: 0px !important;
  }
  .pdf_image {
    width: 100px !important;
  }
  .pdf_button {
    width: 180px !important;
  }
  .empowering_text {
    font-size: 12px !important;
    margin-top: 0px !important;
  }
  .empowering_sub {
    font-size: 12px !important;
  }
  .empowering_ul li {
    font-size: 12px !important;
    margin-bottom: 10px;
  }
  .empowering_right_wrap {
    padding-top: 10px !important;
  }
  .pdf_button {
    font-size: 12px !important;
    width: 135px !important;
    height: 45px !important;
    margin-top: 15px !important;
  }
  #initiativewomen {
    height: 734px !important;
    padding: 240px 45px 0 45px !important;
  }
  .empowereing_women_white {
    padding-top: 216px !important;
    margin-top: 104px !important;
    padding-bottom: 20px !important;
  }
  .empowereing_women_white_sub_title {
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }
  .empowereing_women_white_title {
    font-size: 24px !important;
  }
  .woman_tab_wrap {
    width: 94% !important;
    top: 340px !important;
    margin: 0px 2px 0 10px !important;
  }
  .woman_tab_item {
    font-size: 12px !important;
    width: 86% !important;
    margin: 0 auto !important;
    padding-bottom: 11px !important;
  }
  .woman_tab_wrap .col-4{
    padding: 0 !important;
  }
  .code_image_wrap1{
    height: 240px !important;
  }
  .code_image_wrap2_360{
    display: block !important;
    height: 240px !important;
  }
  .code_image_wrap2{
    display: none !important;
  }
  #footer .aboutus_button_fill {
    padding: 10px 40px 10px 27px !important;
  }
}

#special{
  background-color: black;
  padding: 190px 40px;
/*   border: 1px red solid; */
}

.special_wrap{
  padding: 0 15px;
}

.special1_wrap, .special2_wrap{
  background-color: white;
  text-align: center;
  padding: 40px;
  height: 325px;
}

.special1_wrap{
  padding: 40px 100px;
}

.request_button{
  display: table;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 1.1px;
  background-color: #50B948;
  color: white;
  border-radius: 5px;
  padding: 13px 30px 12px 30px;
  border: 2px solid #50B948;
  text-align: center;
  box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.20);   
}

.request_button:hover {
  color: #50B948;
  background-color: transparent;
}

.empowering_sub_sub{
  font-size: 14px;
  line-height: 24px;
  font-weight: 900;
  margin-top: 30px;
}

.pdf_button1{
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #50B948;
  text-align: center;
  display: block;
  margin: 0;
  background-color: transparent;
  width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  color: #50B948 !important;
}

.pdf_button1:hover{
  background-color: #50B948;
  color: white !important;
}

.pdf_button2{
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #50B948;
  text-align: center;
  display: block;
  margin: 0;
  background-color: #50B948;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 15px;
  color: white !important;
}

.pdf_button2:hover{
  background-color: transparent;
  color: #50B948 !important;
}

.pdf_button3{
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #FF4800;
  text-align: center;
  display: block;
  margin: 0;
  background-color: transparent;
  width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  color: #FF4800 !important;
}

.pdf_button3:hover{
  background-color: #FF4800;
  color: white !important;
}

.pdf_button4{
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #FF4800;
  text-align: center;
  display: block;
  margin: 0;
  background-color: #FF4800;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 15px;
  color: white !important;
}

.pdf_button4:hover{
  background-color: transparent;
  color: #FF4800 !important;
}

.pdf_button5{
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  border: 2px solid #653090;
  text-align: center;
  display: block;
  margin: 0;
  background-color: #653090;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 15px;
  color: white !important;
}

.pdf_button5:hover{
  background-color: transparent;
  color: #653090 !important;
}

.initiativeyouth_wrap {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
}

.empowereing_youth_white {
  text-align: center;
  color: white;
  padding-top: 160px;
  margin-top: 0px;
  padding-bottom: 80px;
  position: relative;
}

.youth_tab_wrap {
  position: absolute;
  width: 100%;
  margin-top: 60px;
  /* top: 415px; */
  background-color: #1B1B1B;
}

.col-m{
  width: 20%;
  float: left;
}

.woman_tab_selected{
  border-bottom: 9px solid #50B948;
}

#robot{
  padding: 0;
}

.youth_item_text_wrap{
  padding: 180px 0 30px 70px;
}

.youth_item_text_wrap_wrap{
  width: 500px;
  margin: 0 auto;
}

.youth_item_title{
  font-size: 24px;
  line-height: 29px;
  font-weight: 900;
  color: #0F1E0A;
  margin-top: 30px;
  margin-bottom: 20px;
}

.youth_item_text1{
  font-size: 18px;
  color: #0F1E0A;
  line-height: 24px;
}

.youth_item_text2{
  font-size: 16px;
  color: #0F1E0A;
  line-height: 24px;
}

.youth_item_link{
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
  color: #50B948;
}

.youth_item_image_wrap{
  background-size: cover !important;
  height: 693px;
}

#youth_item_image_wrap1{
  background: url(../img/youth1.jpg) no-repeat;
}

#youth_item_image_wrap2{
  background: url(../img/youth2.jpg) no-repeat;
}

#youth_item_image_wrap3{
  background: url(../img/youth3.jpg) no-repeat;
}

#youth_item_image_wrap4{
  background: url(../img/youth4.jpg) no-repeat;
}

#youth_item_image_wrap5{
  background: url(../img/youth5.jpg) no-repeat;
}

#youth_item_text_wrap1, #youth_item_text_wrap3, #youth_item_text_wrap5{
  background-color: #FAFAFA;
}

#spark{
  margin-top: 100px;
  padding: 0;
}

#spark-why {
  /* margin-top: 100px; */
  padding: 0;
}

#spark .container {
  max-width: 900px;
}

.spark_item{
  width: 260px;
  margin: 0 auto;
  border: 5px #000 solid;
  padding: 50px 10px;
  text-align: center;
  margin-bottom: 45px;

}
/* 
.spark_item:before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    border-top: 60px solid #000;
    border-right: 60px solid #fff;
    width: 0;
}

.spark_item:after {
    content: '';
    position: absolute;
    bottom: 0; 
    right: 0;
    border-bottom: 60px solid #000;
    border-left: 60px solid #fff;
    width: 0;  
} */

.spark_item_title{
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  color: #0F1E0A;
}

.spark_item_text{
  font-size: 18px;
  line-height: 32px;
  color: #0F1E0A;
}

.spark_right_title{
  font-size: 48px;
  font-weight: 900;
  line-height: 60px;
}

.spark_right_text{
  font-size: 18px;
  line-height: 32px;
  margin-top: 30px;
}

.spark_right_wrap{
  width: 100%;
  max-width: 541px;
  margin: 0 auto;
/*   border: 1px dashed #979797; */
  padding: 159px 40px;
  text-align: justify;
  overflow: hidden;
  position: relative;
}

.spark_right_wrap:before {
  content: "";
  position: absolute;
  border: 8px dashed #979797;
  top: -7px;
  bottom: -7px;
  left: -7px;
  right: -7px;
}

#techspark{
  margin-top: 90px;
}

.techspark_title{
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  color: white;
}

.techspark_text{
  font-size: 18px;
  line-height: 32px;
  color: white;
}

.background_opacity1{
  content: "";
  background: url('../img/youth6.jpg') top right no-repeat scroll;
  background-size: cover;
  position: relative;
  top: 0;
  height: 100%;
  max-height: 100%;
  opacity: 1;
  z-index:-1;
  /*   background-color: black; */
  /* padding-bottom: 00px; */
}

.background_overlay {
  background: rgba(0,0,0,0.50);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.techspark_wrap{
  width: 475px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 80px;
  /* margin-top: 100px; */
  z-index: 3;
  position: relative;
}

.techspark_wrap ul li {
  margin-bottom: 5px;
}

.techspark_right_wrap{
  background-color: #50B948;
}

.techspark_right_text{
  color: black;
}

.youth_item_image_wrap415{
  display: none;
}

.youth_spark{
  background-color: #1B1B1B;
  padding: 210px 0 50px; 
}

@media only screen and (max-width: 768px) {
  .pdf_image {
    display: none;
  }
  .initiativeyouth_wrap{
    /* width: 100%; */
  }
  .youth_spark{
    height: 741px !important;
    padding: 156px 0px 0 0px !important;
    background: #1B1B1B;
  }
  .youth_item_image_wrap {
    height: 273px !important;
  }
  .youth_item_text_wrap {
    padding: 15px 10px 0px 20px !important;
  }
  .youth_item_image{
    display: none;
  }
  .youth_item_text_wrap_wrap{
    width: 100%;
  }
  .spark_right_wrap {
    width: 100% !important;
    padding: 96px 10px !important;
  }
  .techspark_wrap {
    width: 100% !important;
    margin-top: 40px !important;
  }
  .techspark_wrap {
    width: 100% !important;
    margin-top: 35px !important;
    padding-bottom: 70px !important;
/*     border: 1px red solid; */
  }
  .techspark_title{
    margin-right: -10px !important;
  }
}

@media only screen and (max-width: 415px) {
  .youth_spark {
    height: 744px !important;
    padding: 235px 0px 0 0px !important;
  }
  .youth_tab_wrap {
    /* top: 360px !important; */
  }
  .youth_item_text_wrap {
    padding: 15px 10px 20px 20px !important;
  }
  .youth_item_image_wrap {
    height: 256px !important;
  }
  .youth_item_image_wrap768{
    /* display: none; */
  }
  .youth_item_image_wrap415{
    display: block !important;
  }
  #techspark {
    margin-top: 90px !important;
  }
  .techspark_title {
    margin-right: -30px !important;
    margin-left: -12px !important;
  }
}

.empowereing_ignite_white {
  text-align: center;
  color: white;
  padding-top: 160px;
  margin-top: 0px;
  padding-bottom: 129px;
  position: relative;
}

.ignite_tab_item {
  text-align: center;
  font-size: 24px;
  line-height: 29px;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 52px;
  font-weight: 900;
  min-height: 119px;
}

.ignite_tab_selected{
  border-bottom: 9px solid #FF4800;
}

#maincontent {
  margin: 0;
  padding: 80px 0;
}

.maincontainer_text, .maincontainer_li{
  font-size: 18px;
  line-height: 32px;
  color: #0F1E0A;
  text-align: justify;
}

.maincontainer_item_title{
  font-size: 32px;
  line-height: 39px;
  color: #0F1E0A;
  font-weight: 900;
}

.maincontainer_title{
  font-size: 30px;
  line-height: 32px;
  font-weight: 900;
  color: #0F1E0A;
}

.maincontainer_text1_wrap{
  margin-bottom: 57px;
}

.maincontainer_text2_wrap{
  margin-top: 20px;
}

#ourapproach{
  padding: 0;
}

.ourapproach_left{
  background: black;
  color: white;
  padding-top: 100px;
}

.ourapproach_left_wrap{
  width: 445px;
  margin: 0 auto;
}

.ourapproach_left_title{
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
}

.ourapproach_left_text{
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
}

.ourapproach_right_wrap{
  padding: 0;
  position: relative;
}

.player{
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Tenika */
.form_section{
  padding: 70px 0 50px !important;
  /* border: 1px red solid; */
}

#ignite_page {
  padding: 210px 0 50px;
  background: #1B1B1B
}

#box_div {
  position: relative;
  height: 205px;
  width: 260px;
  border-right: 5px solid #000;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}

#box_div:after,
#box_div:before {
  position: absolute;
  content: '';
  width: calc(100% - 2px);
  left: 0px;
  z-index: -1;
}

#box_div:before {
  height: 30%;
  top: 0px;
  border: 5px solid blue;
  border-width: 5px 0px 0px 6px;
  transform: skew(135deg);
  transform-origin: right bottom;
  /* background: red; */
  /* width: 112%; */
}

#box_div:after {
  height: calc(70% - 0px);
  bottom: 0px;
  border: 5px solid red;
  border-width: 0px 0px 5px 5px;
  width: 100%;
  margin-left: 0px;
}


/* Just for demo */

#box_div {
  /* float: left; */
  color: #000;
  padding: 50px 30px;
  /*   transition: all 1s; */
  margin: 10px;
  text-align: center;
}


#code_index {
/*   border-top: 80px transparent solid; */
/*   margin-top: -80px; */
}

#ux_index {
  border-top: 80px transparent solid;
  margin-top: -80px;
}

#bit_index {
  border-top: 80px transparent solid;
  margin-top: -80px;  
}

#header .logo_dark img  {
  width: 230px;
  max-width: 230px;
/*   text-align: center; */
  margin: 0 auto;
  display: block;
}