/* ------------------------------------------------------
------------------------------------------------------- */
/* ======================================================
Table of Content: 
01/ Variables
02/ Prefix 
03/ Header 
04/ Slider 
05/ About 
06/ Footer 
07/ Responsive 

===================================================== */
/*----------------------------------------------------*/
/*Color Variables*/
/* Bottom to Top key frame*/
@import url(bootstrap.min.css);
@import url(font-awesome.min.css);
@import url(../vendors/wow-js/animate.css);
@import url(../vendors/owl-carousel/owl.carousel.min.css);
@-webkit-keyframes BottomToTop {
  49% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}
@-moz-keyframes BottomToTop {
  49% {
    -moz-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}
@keyframes BottomToTop {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}
/* Button Style */
.theme_btn {
  color: #006cff;
  text-align: center;
  font: 16px/54px ProximaNovaB;
  display: inline-block;
  padding: 0 20px;
  position: relative;
  background: #fff;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #006cff;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.theme_btn:hover, .theme_btn:focus {
  color: #fff;
}
.theme_btn:hover:before, .theme_btn:focus:before {
  transform-origin: left center;
  transform: scale(1, 1);
  border-radius: 4px;
}

/* Local Fonts */
@font-face {
  font-family: ProximaNova;
  src: url("../fonts/ProximaNova-Regular.woff");
}
@font-face {
  font-family: ProximaNovaL;
  src: url("../fonts/ProximaNova-Light.woff");
}
@font-face {
  font-family: ProximaNovaS;
  src: url("../fonts/ProximaNova-Semibold.woff");
}
@font-face {
  font-family: ProximaNovaB;
  src: url("../fonts/ProximaNova-Bold.woff");
}
@font-face {
  font-family: ProximaNovaE;
  src: url("../fonts/ProximaNova-Extrabold.woff");
}
/* DinNextLtPro Fonts */
@font-face {
  font-family: dinr;
  src: url("../fonts/dinnextltpro-regular.woff");
}
@font-face {
  font-family: dinh;
  src: url("../fonts/dinnextltpro-heavy.woff");
}
@font-face {
  font-family: dinb;
  src: url("../fonts/dinnextltpro-bold.woff");
}
/*----------------------------------------------------*/
/*Prefix Styles*/
body {
  font-family: ProximaNova;
  /*Section Fix*/
  /*Ancore*/
  overflow-x: hidden !important;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  margin: 0;
}
body p {
  color: #656f8a;
  margin: 0;
  font: 17px/25px 400 ProximaNova;
  font-size: 1.1rem;
}
body ul {
  margin: 0;
  padding: 0;
}
body ul li {
  list-style: none;
}
body section.row, body header.row, body footer.row {
  margin: 0;
}
body #success {
  display: none;
}
body #error {
  display: none;
}
body iframe {
  border: none;
}
body i:before {
  margin-left: 0px !important;
}
body a, body .btn, body button {
  outline: none;
  transition: all 300ms linear 0s;
}
body a:before, body a:after, body .btn:before, body .btn:after, body button:before, body button:after {
  transition: all 300ms linear 0s;
}
body a:focus, body a:hover, body .btn:focus, body .btn:hover, body button:focus, body button:hover {
  outline: none;
  text-decoration: none;
  transition: all 300ms linear 0s;
}

/*----------------------------------------------------*/
/* Header Area */
.header_top_area {
width: 100%;
display: block;
overflow: hidden;
background: #0b1d4a;
border-bottom: 1px solid #24345c;
}

.header_top_area .header_top_inner li {
  display: inline-block;
  padding-right: 22px;
}
.header_top_area .header_top_inner li:last-child {
  padding: 0;
}
.header_top_area .header_top_inner li a {
  font: 13px/40px ProximaNovaS;
  color: rgba(255, 255, 255, 0.451);
  display: inline-block;
}
.header_top_area .header_top_inner li a:hover, .header_top_area .header_top_inner li a:focus {
  color: #006cff;
}
.header_top_area .header_social {
  text-align: right;
}
.header_top_area .header_social li {
  display: inline-block;
  padding: 0;
  color: rgba(255, 255, 255, 0.451);
  font: 13px/40px ProximaNovaS;
}
.header_top_area .header_social li a {
  padding: 0;
  color: #79839c;
  font-size: 16px;
  padding-left: 15px;
}
.header_top_area .header_social li a i {
  padding: 0;
}
.header_top_area .header_social li a i:before {
  speak: none;
  display: block;
  animation: TopToBottom 0.3s forwards;
}
.header_top_area .header_social li a:hover, .header_top_area .header_social li a:focus {
  color: #006cff;
}
.header_top_area .header_social li a:hover i:before, .header_top_area .header_social li a:focus i:before {
  animation: BottomToTop 0.3s forwards;
}

/* Min header area */
.main_header_area {
  display: block;
  background: #0b1d4a;
  width: 100%;
  z-index: 9999;
  position: absolute;
  padding: 20px 0;
}
.main_header_area .header_menu .navbar {
  padding: 0;
}
.main_header_area .header_menu .navbar .navbar-brand {
  margin: 0;
  margin-right: 32px;
  padding: 0;
}
.main_header_area .header_menu .navbar .navbar_supported ul {
  width: 100%;
  text-align: right;
}
@media (min-width: 991px) {
  .main_header_area .header_menu .navbar .navbar_supported ul {
    display: block;
  }
}
.main_header_area .header_menu .navbar .navbar_supported ul li {
  display: inline-block;
  padding-left: 50px;
}
.main_header_area .header_menu .navbar .navbar_supported ul li:first-child {
  padding: 0;
}
.main_header_area .header_menu .navbar .navbar_supported ul li a {
  padding: 0;
  color: #fff;
  font: 16px/35px ProximaNovaB;
  position: relative;
  text-transform: uppercase;
}
.main_header_area .header_menu .navbar .navbar_supported ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #006cff;
  transition: all 300ms linear 0s;
}
.main_header_area .header_menu .navbar .navbar_supported ul li a:hover, .main_header_area .header_menu .navbar .navbar_supported ul li a:focus, .main_header_area .header_menu .navbar .navbar_supported ul li a.active {
  color: #006cff;
}
.main_header_area .header_menu .navbar .navbar_supported ul li a:hover:after, .main_header_area .header_menu .navbar .navbar_supported ul li a:focus:after, .main_header_area .header_menu .navbar .navbar_supported ul li a.active:after {
  width: 100%;
}
.main_header_area.navbar_fixed {
  position: fixed !important;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  padding: 10px 0;
  background: #0b1d4a;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(70px);
  transition: transform 500ms ease, background 900ms ease;
}
.main_header_area.navbar_fixed .navbar #navbar_supported ul li a {
  line-height: 68px;
}

/*----------------------------------------------------*/
/* Slider Area */
.slider_area {
  display: block;
  overflow: hidden;
  /* background: url("../images/slider.jpg") no-repeat center; */
  background-size: cover;
  text-align: center;
  padding: 200px 0 35px;
  position: relative;
  z-index: 1;
}
.slider_area h1 {
  color: #fff;
  font: 80px/80px dinb;
  margin: 0 auto;
  padding-top: 75px;
}
.slider_area p {
  font: 24px/34px ProximaNova;
  color: #fff;
  margin: 0 auto;
  max-width: 640px;
  padding: 35px 0 50px;
}
.slider_area .theme_btn {
  min-width: 202px;
  margin: 0 10px;
  border-radius: 4px;
  overflow: hidden;
}
.slider_area .theme_btn.active {
  background: #006cff;
  color: #fff;
}
.slider_area .theme_btn.active:before {
  background: #fff;
}
.slider_area .theme_btn.active:hover, .slider_area .theme_btn.active:focus {
  color: #006cff;
}
.slider_area .counting_area {
  padding-top: 240px;
}
.slider_area .counting_area .students {
  margin-bottom: 30px;
}
.slider_area .counting_area .students h2 {
  font: 35px/1 dinb;
  color: #3f90ff;
  text-transform: uppercase;
}
.slider_area .counting_area .students h4 {
  font: 17px/25px ProximaNova;
  color: rgba(255, 255, 255, 0.749);
  padding-top: 10px;
}

/* Slider Area */
/* tom_book Area */
.tom_book_area .get_offer {
  background: url("../images/ROCK.YOUR.SERVICE.FIRM.BOOK.BANNER.jpg") no-repeat center right;
  background-size: cover;
  padding: 0 40px;
  padding-top: 15px;
}
.tom_book_area .get_offer .newsest_book {
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
}
.tom_book_area .get_offer .newsest_book img {
  display: inline-block;
  float: left;
  width: 185px;
}
.tom_book_area .get_offer .newsest_book h2 {
  color: #fff;
  font: 40px/1 dinb;
  display: inline-block;
  float: left;
  margin-top: -3px;
  padding-bottom: 12px;
}
.tom_book_area .get_offer .newsest_book h3 {
  color: #fff;
  font: 32px/34px dinh;
  padding-left: 30px;
  display: inline-block;
}
.tom_book_area .get_offer .newsest_book .skyrocket {
  color: #fee82c;
  font-size: 25px;
}
.tom_book_area .get_offer .theme_btn {
  border-radius: 4px;
  overflow: hidden;
  font-family: ProximaNovaE;
  line-height: 40px;
  min-width: 171px;
  color: #002f70;
  font-size: 15px;
}
.tom_book_area .get_offer .theme_btn i {
  margin-right: 10px;
}
.tom_book_area .get_offer .theme_btn:hover, .tom_book_area .get_offer .theme_btn:focus {
  color: #fff;
}
.tom_book_area .get_offer .theme_btn + .popup-youtube, .tom_book_area .get_offer .theme_btn.active {
  background: transparent;
  color: #fff;
}
.tom_book_area .gf_2 {
  background: url("../images/offer-bg-2.jpg") no-repeat right;
  background-size: cover;
}
.theme_btn.active.limited:before {background: transparent!important;}
.theme_btn.active.limited:hover{ cursor: text!important;}

.theme_btn.fixx.htw:before {background: transparent!important;}
.theme_btn.fixx.htw:hover{ cursor: text!important;}

/* tom_book Area */
/*----------------------------------------------------*/
/* flash_moments_area */
.flash_moments_area {
  display: block;
  overflow: hidden;
  padding-top: 30px;
}
.flash_moments_area h2 {
  font: 38px/49px dinr;
  color: #424d68;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  padding: 100px 0 30px;
}
.flash_moments_area h2 b {
  display: block;
  color: #006cff;
}
.flash_moments_area p {
  padding-bottom: 10px;
}
.flash_moments_area .s_p {
  font-family: ProximaNovaS;
}
.flash_moments_area img {
  max-width: 100%;
}

/* flash_moments_area */
/* client_logo_area */
.client_logo_area {
  display: block;
  overflow: hidden;
  background: url("../images/clientslider-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.client_logo_area h2 {
  font: 32px/37px dinb;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.client_logo_area .client_logo {
  cursor: e-resize;
}
.client_logo_area .client_logo a {
  display: block;
  text-align: center;
  height: 75px;
  display: flex;
  align-items: center;
}
.client_logo_area .client_logo a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.cla_2 {
  background: #fff;
  padding: 80px 0;
}
.cla_2 h2 {
  color: #132041;
  padding-bottom: 50px;
}
.cla_2 .social_logo {
  cursor: e-resize;
}
.cla_2 .social_logo a {
  display: block;
  text-align: center;
  height: 70px;
  display: flex;
  align-items: center;
}
.cla_2 .social_logo a img {
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-filter: grayscale(30%);
  -moz-filter: grayscale(30%);
  filter: grayscale(30%);
  transition: all 0.2s ease;
}
.cla_2 .social_logo a img:hover{
  -webkit-filter: grayscale(0%);
   -moz-filter: grayscale(0%);
   filter: grayscale(0%);
}
.seen-logo {
  width: 100%;
  padding:0;
}
.seen-logo ul {
  padding: 0px;
  margin: 0 -3%;
  text-align: center;
}
.seen-logo li {
  display: inline-block;
  margin: 0 1%;
  vertical-align: middle;
}
.seen-logo li img {
  max-width: 200px;
  padding: 0px 10px;
}
.a-img{
  display: none;
}
.l-white:hover .a-none{display: none;}
.l-white:hover .a-img{
  display: block;
  transition: all 300ms linear 0s;
}

.b-img{
  display: none;
}
.l-white:hover .b-none{display: none;}
.l-white:hover .b-img{
  display: block;
  transition: all 300ms linear 0s;
}

.c-img{
  display: none;
}
.l-white:hover .c-none{display: none;}
.l-white:hover .c-img{
  display: block;
  transition: all 300ms linear 0s;
}

.d-img{
  display: none;
}
.l-white:hover .d-nones{display: none;}
.l-white:hover .d-img{
  display: block;
  transition: all 300ms linear 0s;
}

.e-img{
  display: none;
}
.l-white:hover .e-nones{display: none;}
.l-white:hover .e-img{
  display: block;
  transition: all 300ms linear 0s;
}

.f-img{
  display: none;
}
.l-white:hover .f-nones{display: none;}
.l-white:hover .f-img{
  display: block;
  transition: all 300ms linear 0s;
}


.f-l{    color: #fff;
    font-weight: bold;
    font-size: 28px;}

.f-l:hover{color: #fff;} 
.navbar-brand img {
  width: 200px;
}
.copyright_logo img {height: 30px;}
/* client_logo_area */
/* legend_say_area */
.legend_say_area {
  background: #f4f9ff;
  display: block;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 2px;
  margin-bottom: 65px;
}

.legend_say_area.mb {margin-bottom: 0;}

.legend_say_area h2 {
  text-align: center;
  font: 32px/39px dinb;
  color: #132041;
  text-transform: uppercase;
  padding: 0 15px 25px;
}
.legend_say_area .legend_say {
  border-top: 1px solid #c9ccd3;
  box-shadow: 1px 1px #c9ccd3;
  text-align: center;
  padding: 50px 30px 0;
}
.legend_say_area .legend_say p {
  font: 20px/30px ProximaNovaS;
  color: #132040;
  max-width: 380px;
  margin: 0 auto;
  min-height: 140px;
  margin-top: 30px;
}
.legend_say_area .legend_say a {
  display: block;
  font: 22px/1 dinb;
  color: #132041;
  text-transform: uppercase;
}
.legend_say_area .legend_say a:hover, .legend_say_area .legend_say a:focus {
  color: #006cff;
}
.legend_say_area .legend_say h6 {
  color: #132040;
  font: 17px/28px ProximaNovaL;
  padding: 10px 0 12px;
}
.legend_say_area .legend_say h6.mh{ min-height: 78px;}
.legend_say_area .legend_say img {
  max-width: 100%;
}

/* legend_say_area */
/* latest_blog_area */
.latest_blog_area {
  display: block;
  overflow: hidden;
  padding-top: 60px;
}
.latest_blog_area h2 {
  text-align: center;
  font: 32px/39px dinb;
  color: #132041;
  text-transform: uppercase;
  padding: 0 15px 25px;
}
.latest_blog_area .latest_blog {
  display: block;
  overflow: hidden;
  text-align: center;
  padding: 120px 40px 113px;
  position: relative;
  z-index: 1;
}
.latest_blog_area .latest_blog img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.5s linear 0s;
}
.latest_blog_area .latest_blog:hover img, .latest_blog_area .latest_blog:focus img {
  transform: scale3D(1.2, 1.2, 2);
}
.latest_blog_area .latest_blog:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: rgba(8, 14, 34, 0.7);
  z-index: -1;
}
.latest_blog_area .latest_blog h4 {
  font: 15px/1 ProximaNova;
  color: #fff;
  padding-bottom: 10px;
}
.latest_blog_area .latest_blog a {
  display: block;
  font: 22px/27px dinb;
  color: #fff;
  max-width: 330px;
  margin: 0 auto;
}
.latest_blog_area .latest_blog a:hover, .latest_blog_area .latest_blog a:focus {
  color: #006cff;
}
.latest_blog_area .subscribe_area {
  display: block;
  overflow: hidden;
  background: #0b1d4a;
  padding: 25px 0;
  text-align: center;
}
.latest_blog_area .subscribe_area h3 {
  color: #fff;
  font: 24px/45px ProximaNova;
  display: inline-block;
  padding-right: 50px;
  overflow: hidden;
}
.latest_blog_area .subscribe_area h3 b {
  color: #ffe932;
}
.latest_blog_area .subscribe_area .theme_btn {
  line-height: 45px;
  color: #002f70;
  border-radius: 4px;
  overflow: hidden;
}
.latest_blog_area .subscribe_area .theme_btn:hover, .latest_blog_area .subscribe_area .theme_btn:focus {
  color: #fff;
}

/* latest_blog_area */

/* newest_book_area */
.newest_book_area {
  background: #f4f9ff;
}
.newest_book_area .request_img img {
  max-width: 100%;
}

.newest_book_area .request_img1{ text-align:right;}
.newest_book_area .request_img1 img{ width:100%; max-width:400px; padding-top: 30px;}


.newest_book_area .newest_book {
  max-width: 595px; padding: 40px 0 40px 65px;
  /*padding-left: 65px;
  padding-top: 80px;*/
}
.newest_book_area .newest_book h2 {
  font: 45px/52px dinb;
  color: #0b1d4a;
  text-transform: uppercase;
}
.newest_book_area .newest_book h2 span {
  color: #2b59dd;
}
.newest_book_area .newest_book p {
  font-size: 20px;
  line-height: 27px;
  font-family: ProximaNovaS;
  letter-spacing: -0.5px;
  padding: 20px 0 40px;
}

.newest_book_area .newest_book p.t1{ font-size: 16px; line-height: 22px; font-family: ProximaNova; padding:5px 0 0;}
img.star{ max-width:78px;}
img.amazon{ max-width:110px;}

.newest_book_area .newest_book .theme_btn {
  background: #006cff;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  min-width: 226px;
  line-height: 50px;
}
.newest_book_area .newest_book .theme_btn:before {
  background: #0b1d4a;
}
.newest_book_area .newest_book .reviews_aera {
  padding-top: 40px;
  display: block;
  overflow: hidden;
}
.newest_book_area .newest_book .reviews_aera li {
  display: inline-block;
  color: #424d68;
  font: 15px/20px ProximaNovaS;
  padding-right: 45px;
  float: left;
}
.newest_book_area .newest_book .reviews_aera li:last-child {
  padding: 0;
}
.newest_book_area .newest_book .reviews_aera li img {
  display: block;
  margin-bottom: 5px;
}
.newest_book_area .newest_book .reviews_aera li img + img {
  margin-top: 16px;
}
.newest_book_area .newest_book .reviews_aera li span {
  color: #0b1d4a;
  font: 35px/1 dinb;
  display: block;
  padding-top: 12px;
}

/* Footer_area */
/*----------------------------------------------------*/
.footer_area {
  display: block;
  overflow: hidden;
  background: url("../images/footer-bg.jpg") no-repeat center;
  background-size: cover;
}
.footer_area .footer_inner {
  padding: 45px 0;
}
.footer_area .footer_nav {
  text-align: center;
}
.footer_area .footer_nav li {
  display: inline-block;
  padding-left: 33px;
}
.footer_area .footer_nav li:first-child {
  padding: 0;
}
.footer_area .footer_nav li a {
  font: 16px/35px ProximaNovaB;
  color: #fff;
  text-transform: uppercase;
}
.footer_area .footer_nav li a:hover, .footer_area .footer_nav li a:focus {
  color: #006cff;
}
.footer_area .footer_social {
  text-align: right;
}
.footer_area .footer_social li {
  display: inline-block;
}
.footer_area .footer_social li a {
  padding: 0;
  color: #fff;
  font-size: 22px;
  padding-left: 15px;
}
.footer_area .footer_social li a i {
  padding: 0;
}
.footer_area .footer_social li a i:before {
  speak: none;
  display: block;
  animation: TopToBottom 0.3s forwards;
}
.footer_area .footer_social li a:hover, .footer_area .footer_social li a:focus {
  color: #006cff;
}
.footer_area .footer_social li a:hover i:before, .footer_area .footer_social li a:focus i:before {
  animation: BottomToTop 0.3s forwards;
}
.footer_area .copy_right {
  border-top: 1px solid #3f475e;
  padding: 35px 0;
  display: block;
  overflow: hidden;
}
.footer_area .copy_right p {
  font: 15px/30px ProximaNova;
  color: #cad6fa;
  float: left;
}
.footer_area .copy_right p a {
  color: #cad6fa;
}
.footer_area .copy_right p a:hover, .footer_area .copy_right p a:focus {
  color: #006cff;
}
.footer_area .copy_right .copyright_logo {
  float: right;
}
.footer_area .copy_right .copyright_logo li {
  display: inline-block;
  padding-left: 30px;
}
/*----------------------------------------------------

IMPACT PAGE CSS

----------------------------------------------------*/
.p-impact.slider_area {
  display: block;
  overflow: hidden;
  background: url("../images/banner-impact.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  padding: 250px 0 160px;
  position: relative;
  z-index: 1;
  margin-top: -45px;
}

.p-impact.slider_area h1 b{
  color: #ffc400;
}

.impact-video{
  text-align: center;
  padding-top: 170px;
}

.p-impact.slider_area p{
  padding-top: 15px;
}

.impact_subscribe .subscribe_area {
    display: block;
    overflow: hidden;
    background: #296100;
    text-align: center;
    padding: 25px 0;
}

.impact_subscribe .subscribe_area h3 b {
    color: #ffe932;
}

.impact_subscribe .subscribe_area .theme_btn {
    line-height: 45px;
    color: #002f70;
    border-radius: 4px;
    overflow: hidden;
}

.impact_subscribe .subscribe_area .theme_btn:hover{ color: #fff; }
.impact_subscribe .theme_btn:before{ background: #ffc400; }

.p-impact.header_top_area .header_top_inner li a:hover{ color: #ffc400;}
  
.consulting-bg .subscribe_area .theme_btn:before{ background: #0b1d4a; }
.consulting-bg .subscribe_area .theme_btn:focus{ color: #fff; }

.consulting-area.conbox3 .subscribe_area .theme_btn:before{ background: #0b1d4a; }
.consulting-area.conbox3 .subscribe_area .theme_btn:focus{ color: #fff; }



.impact_subscribe .subscribe_area h3 {
    color: #fff;
    font: 24px/45px ProximaNova;
    display: inline-block;
    padding-right: 50px;
    overflow: hidden;
}

.p-impact.main_header_area {
    display: block;
    background-color: rgba(41, 97, 0, 0.15);
    width: 100%;
    z-index: 9999;
    position: absolute;
    padding: 20px 0;
}

.p-impact.header_top_area {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: rgba(41, 97, 0, 0.15);
    border-bottom: 1px solid #54792e;
    z-index: 99;
}

.p-impact.main_header_area.navbar_fixed{
  background-color: rgba(41, 97, 0, 1);
}

.p-impact.main_header_area .header_menu .navbar .navbar_supported ul li a:hover,
.p-impact.main_header_area .header_menu .navbar .navbar_supported ul li a:focus,
.p-impact.main_header_area .header_menu .navbar .navbar_supported ul li a.active{
    color: #ffc400;
}

.p-impact.main_header_area .header_menu .navbar .navbar_supported ul li a:after{
    background: #ffc400;
}

.p-impact.header_top_area .header_top_inner li a{
  color: #8ca375;
}




.impact_about_area{
  padding-top: 80px;
}

.impact_about_area h1{
  font-weight: 900;
  color: #424d68;
  font-size: 45px;
}

.green-c {color: #296100;}
.l-green-c {color: #6bb436;}

.impact_description{
  margin-top: 30px;
}

.impact_description p{
  margin-bottom: 15px;
}

.impact_description h3{
  font-size: 22px;
  font-weight: 900;
  color: #132041;
  margin-bottom: 10px;
  margin-top: 25px;
}
.impact_gallery{
  padding-top: 50px;
}
.impact_gallery img{
  width: 100%;
  display: block;
}
.p-0 {padding-left: 0; padding-right: 0;}

.impact_help{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #296100 0%, 
    #296100 70%, 
    #388400 70%, 
    #388400 100%
  );
}
.impact_help h1{
  color: #fff;
  margin-bottom: 20px;
}
.impact_help p{
  color: #fff;
  margin-bottom: 15px;
}

.impact_testimonial{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #388400 0%, 
    #388400 30%, 
    #327700 30%, 
    #327700 100%
  );
}

.impact_testimonial p{
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  color: #fff;
  margin-top: 15px;
}

p.impact_founder{
  margin-top: 0;
  font-weight: 400;
  font-size: 17px;
}

.impact_all-good{
  padding: 80px 0;
  background: #f9fafb;
}
.impact_all-good p{
  margin-bottom: 15px;
}

.impact_all-good img{ margin-top: 30px; max-width: 300px; }

h2.green-c{color: #296100;}

.p-impact.footer_area {
    display: block;
    overflow: hidden;
    background: url(../images/footer-bg-green.jpg) no-repeat center;
    background-size: cover;
}

.p-impact.footer_area .copy_right {
    border-top: 1px solid #5f8b33;
}

.p-impact.footer_area .copy_right p {
    color: #8ca375;
}
.p-impact.footer_area .copy_right p a{
  color: #8ca375;
}
.p-impact.footer_area .copy_right p a:hover, .p-impact.footer_area .copy_right p a:focus{
  color: #ffc400;
}

.p-impact.footer_area .footer_nav li a:hover, .p-impact.footer_area .footer_nav li a:focus{
  color: #ffc400;
}

.p-impact.footer_area .footer_social li a:hover, .p-impact.footer_area .footer_social li a:focus{
  color: #ffc400;
}

@media (max-width: 1366px) {
  .impact_help{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #296100 0%, 
    #296100 88%, 
    #388400 88%, 
    #388400 100%
  );
}

.impact_testimonial{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #388400 0%, 
    #388400 12%, 
    #327700 12%, 
    #327700 100%
  );
}

.p-impact.main_header_area .header_menu .navbar .navbar_supported ul li a:after{
  background: transparent;
}

}

@media (max-width: 991px) {
 .impact_img{
  margin: 0 auto;
  display: block;
 }
 .impact_about_area h1{
  font-size: 28px;
 }

 .p-impact.main_header_area {
  background-color: rgba(41, 97, 0, 1);
}

.p-impact.header_top_area {
  background-color: rgba(41, 97, 0, 1);
}

}

@media (max-width: 768px) {
  .impact_help{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #296100 0%, 
    #296100 100%, 
    #388400 100%, 
    #388400 100%
  );
}

.impact_testimonial{
  padding: 80px 0;
  background: linear-gradient(
    to right, 
    #388400 0%, 
    #388400 0%, 
    #327700 0%, 
    #327700 100%
  );
}
.p-impact.slider_area{
    padding: 100px 0 100px;
}
.impact-video {
    padding-top: 40px;
}
.impact_testimonial p{
  text-align: center;
}
.impact_testimonial img{
  margin: 0 auto;
  display: block;
}
}

/*-------------Courses Page--------------*/


.course_display{
  background: #0b1d4a;
}

.p_course.main_header_area .header_menu .navbar .navbar_supported ul li a:hover, .p_course.main_header_area .header_menu .navbar .navbar_supported ul li a:focus, .p_course.main_header_area .header_menu .navbar .navbar_supported ul li a.active{
  color: #0166f2;
}

.course_box{
  background: #15316f;
  padding: 15px;
  margin-top: 0px;
}

.course-margin{
 padding-top: 95px;
}

.course_box .theme_btn{
  line-height: 45px;
  padding: 0 30px;
  border-radius: 4px;
  margin-right: 10px;
}

.course_box h1{
    font-size: 21px;
    font-weight: 500;
    color: #fffae1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.course_box p{
  color: #fff;
  min-height: 105px;
}

.course_box .line{
  background: #13285a;
  height: 1px;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}

.course_box .log_in{
  color: #fff;
  margin-top: 10px;
  display: none;
}

.course_box .log_in a{
  color: #ffd21e;
}

.course_thumb{  width: 100%; margin-bottom: 13px;}
.course_thumb img{ width: 100%;}


.course_details {
  padding-top: 360px;
  padding-bottom: 50px;
  background: #dff3ff;
}

.img_middle{ margin: 0 auto; display: block;}
.img_middle.m1{ border-radius: 50%; box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1); max-width:110px;}
.img_middle.m2{ height:90px;}

.course_details h3{
  color: #2b59dd;
  font-size: 24px;
  font-weight: 900;
  margin: 40px 0;
  text-align: center;
  line-height: 34px;
  text-transform: uppercase;
}

.course_description p{
  color: #3a4560;
  line-height: 25px;
  margin-bottom: 15px;
}

.course_offer{
  margin-top: 40px;
}

.course_offer img{
  display: block;
  float: left;
  margin-right: 30px;
}

.course_offer p{
  font-size: 20px;
  color: #102c81;
  font-weight: 600;
}

.course_video_one{
  margin-top: 35px
}

.course_video_one img{
  width: 100%;
  display: block;
}

.course_enroll h3{
  font-size: 28px;
  line-height: 38px;
  color: #2b59dd;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 20px;
}

.course_enroll{text-align: center;}

.course_enroll .theme_btn{
  line-height: 70px;
  padding:  0 40px;
  overflow: hidden;
  background: #03aa65;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}


.course_details_b{
  background: #2b59dd;
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
}

.course_details_b h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin: 30px 0;
    text-align: center;
    line-height: 34px;
    text-transform: uppercase;
}

.course_description_b{
  padding: 0px 210px;
}
.course_description_b p{
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.course_features{
  text-align: center;
  margin-top: 50px;
}

.course_features p{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-top: 30px;
}

.course_features img{
  height: 50px;
}

.course_video_two{
  margin-top: 35px
}

.course_video_two img{
  width: 100%;
  display: block;
  margin-bottom: 40px;
  max-width: 500px;
  margin: 0 auto;
}

.course_enroll_b h3{
  font-size: 28px;
  line-height: 38px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 40px;
}

.course_enroll_b{text-align: center;}

.course_enroll_b .theme_btn{
    line-height: 70px;
    padding: 0 40px;
    overflow: hidden;
    background: #03aa65;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    margin-top: 25px;
    font-size: 30px;
}

.course_enroll_b .theme_btn:hover{
  color: #03aa65;
}

.course_enroll_b .theme_btn:before{
  background: #fff;
  color: #03aa65;
}

.course_enroll_b p{
  color: #fff;
  padding: 0 200px;
  margin-bottom: 15px;
}

.course_details_b .left_icon_img{
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
}

.course_details_b .right_icon_img{
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  overflow: hidden;
}

.coaches_area {
    display: block;
    overflow: hidden;
    background: url(../images/user-bg.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.coaches_area h1{
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 45px;
  text-transform: uppercase;
}
.coaches_item{margin-top: 50px;}

.coaches_item p{
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}

/* Course Responsive */

@media (max-width: 1366px) {
.course_details_b .left_icon_img{
    width: 180px;
  }

.course_details_b .right_icon_img{
    width: 230px;
  }

.legend_say_area .legend_say {
    padding: 30px 30px 0;
}

.legend_say_area br{display: none;}

.legend_say_area .legend_say h6{
  font-size: 15px;
  line-height: 25px;
}

.legend_say_area .legend_say p {
  min-height: 170px; font: 18px/26px ProximaNovaS;
}
.legend_say_area .legend_say h6.mh{ min-height: 72px;} 
}
.course_box
@media (max-width: 1024px) {
  .f-l {
    font-size: 24px;
  }
  .legend_say_area .legend_say h6{
    font-size: 12px;
  }
  .legend_say_area .legend_say p{
    font-size: 17px;
  }
}

@media (max-width: 991px) {

 .mobile_fix.course_box{
  margin-top: 30px;
 }
 .course_display{
  height: 3735px;
 }
 .course_box .log_in{
  display: inline;
 }
 .course_box p {
    color: #fff;
    min-height: 50px;
}

 .course_details h3 br{
  display: none;
 }
 .course_details h3{
  font-size: 20px;
 }
 .course_details_b h3{
  font-size: 20px;
 }
 .course_details_b h3 br{
  display: none;
 }
 .course_details_b .left_icon_img{
  width: 90px;
 }
 .course_details_b .right_icon_img{
  width: 110px;
 }
 .course_details_b{
  padding-top: 60px;
  padding-bottom: 60px;
 }
 .course_description_b {
    padding: 0px 0px;
}
.course_enroll_b h3 br{
  display: none;
}

.course_enroll_b p {
  color: #fff;
  padding: 0 0px;
}

.coaches_area h1 br{
  display: none;
}

.coaches_area h1{
  font-size: 24px;
}
}

@media (max-width: 640px) {
  .course_box h1{
    font-size: 24px;
}
  .course_box .log_in {
    display: block;
    margin-top: 10px;
}
.course_display {
    height: 3810px;
}

.legend_say_area .legend_say p{
  min-height: 150px;
}

.legend_say_area .legend_say h6 {
    padding: 10px 0 0px;
    min-height: 60px;
}

}
#submit-button {
    display: block;
    overflow: hidden;
    width: 85%;
    /* max-width: 380pt; */
    margin: 0 auto;
    padding: 12px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    text-align: left;
    cursor: pointer;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 4px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15pt;
    position: relative;
    border: none;
    font-weight: 300;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    background: #1e4f94;
}
.submit-button {
    display: block;
    overflow: hidden;
    width: 85%;
    /* max-width: 380pt; */
    margin: 0 auto;
    padding: 12px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    text-align: left;
    cursor: pointer;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 4px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15pt;
    position: relative;
    border: none;
    font-weight: 300;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
    background: #1e4f94;
}

.course-margin .col-lg-3{
  padding: 0px;
}

.course_details_c{
  background: #dff3ff;
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}

.course_details-text h3{
  color: #2b59dd;
  font-size: 24px;
  font-weight: 900;
  margin: 25px 0;
  text-align: center;
  line-height: 34px;
  text-transform: uppercase;
}
.course_details-text-blue h3{
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin: 25px 0;
  text-align: center;
  line-height: 34px;
  text-transform: uppercase;
}
.course_details-text-blue p{
  color: #fff;
}
.check-i ul li{
    color: #3a4560;
    line-height: 25px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.check-i ul li:before{
    content: "\f00c";
    font-family: fontawesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
}

.course_details-icon{
  text-align: center;
  margin-top: 30px;
}

.course_details_d{
  background: #2b59dd;
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}

.course_details-text-blue .check-i ul li{
  color: #fff;
}


.course_enroll_b .theme_btn:focus{
  color: #03aa65;
}

.mt30{margin-top: 35px;}
/*All CSS call*/
/* Bootstrap CSS */
/* Icon CSS */
/* Extra Plugins CSS */

/*# sourceMappingURL=style.css.map */
.client_section{}
.client_section h2{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}
.rocklogo{
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 50px;
}
.rocklogo li{
    display: inline-block;
    padding: 40px 10px;
}
.rocklogo li a{}
.rocklogo li a img{
    width: 180px;
}
.proofheading{
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
.proof{}
.proof img{
    width: 70%;
    display: block;
    margin: auto;
    margin-bottom: 100px;
}

.service_icon{}
.abc{width: 90px}


/*video style*/

.header {
  position: relative;
  background-color: black;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.header .container {
  position: relative;
  z-index: 2;
}

.header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
.lead {
    font-weight: 500;
    color: #fff;
}
@media (pointer: coarse) and (hover: none) {
  .header {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }
  .header video {
    display: none;
  }
}

.res_left{
    float: left;
    width: 40%;
}
.res_left a{}
.res_right{
    float: left;
    width: 60%;
    background: #00000054;
    padding: 10px;
}
.res_right a{
    display: block;
    text-align: left;
    color: #fff;
    padding-left: 0;
}
.bookpart{}
.bookpart li{
    display: inline-block;
}
.bookpart li a{
    display: block;
    color: #fff;
    padding: 0;
    margin-left: 20px;
    font-size: 14px;
}
.Rlogo{width: 145px;}
.podcast_header {
}
.podcast_form{
    text-align: center;
    width: 70%;
    margin: auto;
    padding: 50px;
    background: #99CE00;
    color: #fff;
    margin-top: 125px;
    margin-bottom: 50px;
}
.podcast_form h2{
    font-weight: bold;
}
.podcast_form p{
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
}
.podcast_form form{
    width: 450px;
    margin: auto;
    margin-top: 40px;
}
.cu_button{
    background: #495f08;
    border: none;
}
.podcast_embed{
    width: 70%;
    margin: auto;
}
.podcast_embed h2{margin-bottom: 30px;text-align: center;font-weight: bold;font-size: 45px;color: #333;}
.single_podcast{margin-bottom: 20px}
#mt{
    margin-top: 0;
}
#mt2{
    margin-top: 0;
}
#mt3{
    margin-top: 0;
    max-width: 230px;
}
#mt4{
    margin-top: 33px;
    max-width: 230px;
}
.thanks {
    min-height: 250px;
    width: 500px;
    margin: auto;
    background: #ddd;
    padding: 2%;
    margin-top: 200px;
    margin-bottom: 130px;
    text-align: center;
}
.thanks h2 {
    margin-bottom: 30px !important;
    margin-top: 20px !important;
}
input.form-control.input-lg {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}


/*Style for Popup*/
.popup{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999999;
  display: none;
}
.contentBox{
  position: relative;
  width: 700px;
  height: 582px;
  background:url(../images/popbg.png);
  color: #fff;
  text-align: center;
  padding: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contentBox h3{
    font-weight: 900;
    color: #a1d103;
    font-size: 45px;
    padding: 0 90px;
    margin: 35px 0;
}
.contentBox h4{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.contentBox h5{
    font-weight: 500;
    font-size: 25px;
    margin: 20px 0;
}
.contentBox img{margin-top: 6px;width: 220px;margin-bottom: 20px;}
.whitebg{
    background: #fff;
    color: #000;
    width: fit-content;
    margin: auto;
    padding: 2px 5px;
    letter-spacing: 5px;
}
.form{
    width: 50%;
    margin: auto;
}
.form form{}
.form form input{
    margin-bottom: 7px;
    padding: 5px;
    font-size: 12px;
}
.form form input[type=image]{
    margin: 0;
    margin-top: -5px;
}
.buttonimg{
    width: 300px !important;
}
.form form input::placeholder{text-align: center;}
.closepop{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #fff url(../images/close.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: inherit;
}

@media only screen and (max-width: 800px) {
  .contentBox {
    width: 500px;
    height: 416px;
}
.contentBox h4 {
  font-size: 18px;
  margin-bottom: 7px;
}
.contentBox h3 {
  font-size: 30px;
  padding: 0 65px;
  margin: 25px 0;
}
.buttonimg {
  width: 220px !important;
}
.contentBox h5 {
  font-weight: 500;
  font-size: 18px;
  margin: 0;
}
.contentBox img {
  margin-top: 15px;
  width: 150px;
  margin-bottom: 20px;
}
}

@media only screen and (max-width: 599px) {
  .contentBox {
    width: 350px;
    height: 292px;
}
.contentBox h4 {
  font-size: 13px;
  margin-bottom: 5px;
}
.contentBox h3 {
  font-size: 21px;
  padding: 0px 30px;
  margin: 15px 0;
}
.buttonimg {
  width: 150px !important;
  margin: 10px 0px !important;
}
.contentBox h5 {
  font-size: 12px;
}
.contentBox img {
  margin-top: 10px;
  width: 100px;
  margin-bottom: 10px;
}
}


/*Amazon Book Section*/
#amazonbook{
    background: #f4f9ff;
    padding: 50px 0;
    text-align: center;
}
#amazonbook h2{
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
}
#amazonbook p{
    font-size: 22px;
    margin-top: 20px;
}
#amazonbook img{
    width: 90%;
    margin: 50px 0 20px 0;
}
#amazonbook a{}
#amazonbook a h5{
    background: red;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
#door{
    background: #40b6e8 !important;
}
#door:hover{background: #257a9e !important;}
#glass{}
#glass:hover{background: #a70707 !important;}
#service{
    background: #71831f !important;
}
#service:hover{background: #475118 !important;}
.amazon{
    width: 200px;
    margin: auto;
    border: 3px dotted #000;
    border-radius: 20px;
    padding: 5px;
    margin-top: 30px;
}
.amazon p{
    margin: 0 !important;
}
.amazon img{
    margin: 0 !important;
}