body {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: 'Roboto', sans-serif;
  color: #000;
}

a {
  color: #009fed;
}

a:hover {
  /*color: #86db9f;*/
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /*font-family: "Raleway", sans-serif;*/
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# 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: #24b720;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #12c2f9;
  color: #fff;
}

/* Media query for screens smaller than 768px (typical mobile devices) */
@media screen and (max-width: 767px) {
    .back-to-top2 {
        bottom: 20px; /* Adjust this value for mobile devices */
        left: 20px; /* Adjust this value for mobile devices */
    }
}

/*--------------------------------------------------------------
# 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 #5fcf80;
  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);
  }
}

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


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */


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

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

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



#header {
  height: 95px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 28px 0;
  background: #1e4356;
}

#header.header-transparent {
  /*background: none;*/
  background-color: #fff;
}

#header.header-scrolled {
  background: #fff;
  height: 93px;
  padding: 22px 0;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: italic;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
 /* max-height: 40px;*/
 height: 99px;
 position: relative;
 bottom: 28px;
}

/*#main {
  margin-top: 80px;
}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 1px 6px 10px 6px;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000E97;
  padding: 8px 7px 9px 10px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.nav-menu a:hover, .nav-menu .active > a{
  color: #ffff;
  background-color: #24b720;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 1px;
}

 .nav-menu li:hover > a :hover{
  color: #ffff;
  background-color: #009fed;
  border-radius: 5px;
  text-decoration: none;
}

.nav-menu ul li.drop-down a {
  position: relative;
}
.nav-menu ul li.drop-down a {
  padding-right: 15px;
  margin: 0;
}
.nav-menu ul li.drop-down a:after {
  content: '';
  position: absolute;
  right: 3px;
  top: 17px;
  /*transform: rotate(90Deg);*/
  font-weight: bold;
  z-index: 9999;
  font-size: 17px;
  border-bottom: none;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-top: 5px solid #000E97;
}

.nav-menu ul li.drop-down:hover a:after {
  content: '';
  position: absolute;
  right: 3px;
  top: 17px;
  /*transform: rotate(90Deg);*/
  font-weight: bold;
  z-index: 9999;
  font-size: 17px;
  border-bottom: none;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-top: 5px solid #fff;
}

.nav-menu ul li.drop-down ul li a:after {
  display: none;
}

/*.nav-menu a:focus{
  background: #f47907;
  color: #ffff;
}*/

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

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

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

.nav-menu .drop-down ul a {
  padding: 2px 2px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #004aad;
  letter-spacing: 0.3px;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ffff;
  /*background-image: url(../img/icon/contact-us.png);
  width: 28px;
  height: 28px;
  right: 0px;*/
}

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

/*.lifont a .menu-icon1:hover{
  background-image: url(../img/icon/contact-us.png);
}
*/
.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";
  }
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1e4356;
  transition: 0.4s;
}

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

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

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #a2cce3;
  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: "\eaa0";
}

.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-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  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;
  margin: 0 0;
  padding: 0 0;
}

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 67, 86, 0.9);
  overflow: hidden;
  display: none;
}

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

.mobile-nav-active .mobile-nav {
  left: 0;
}

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

.nav-menu > ul > li.logbtn-padd {
  margin-right: -24px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 600px;*/
  background: url("../img/home1.1.png") top center;
  background-size: cover;
  /*position: relative;*/
  margin-top: 62px;

    /*background-repeat: no-repeat;
  position: relative;
  width: 85%;
  height: 610px;
  margin-left: auto;
  margin-right: auto;*/
}

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

#hero .container {
  padding-top: 15px;
  /*margin-right: 137px;*/
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  /*margin: 0;*/
  font-size: 28px;
  font-weight: 700;
  /*line-height: 56px;*/
  color: #fff;
  font-family: 'Roboto';
  /*background: #1b3366;*/
  background-image: url(../img/search.png);
    text-align: center;
    letter-spacing: 6px;
    line-height: 2.1;
    height: 120px;
    padding-top: 36px;
    background-repeat: no-repeat;
    margin-top: 31px;
        margin-left: 34px;
        margin-right: 32px;
}

#hero h2 {
  color: #000;
    margin: 20px 0 0 0;
    font-size: 20px;
    letter-spacing: 1;
    line-height: 38px;
    /* font-family: Roboto; */
    /*letter-spacing: 1px;*/
    font-family: 'Roboto';
    /*text-align: center;*/
        padding-bottom: 10px;
}

.home-text2{
  color: #20266B;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
    line-height: 2.1;
    text-shadow: 0px 3px 3px rgba(27, 52, 103, 0.22), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
        padding-bottom: 15px;
}

#hero .btn-get-started {
  /*font-family: "Raleway", sans-serif;*/
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #5fcf80;
  border: 2px solid #5fcf80;
}

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

@media (max-width: 768px) {
  #hero {
    /*height: 100vh;*/
        margin-top: 5px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 37px;
  }
}

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

.section-bg {
  background-color: #f6f7f6;
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

.breadcrumbs {
  margin-top: 73px;
  text-align: center;
  background: #5fcf80;
  padding: 30px 0;
  color: #fff;
}

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

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

.breadcrumbs p {
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5fcf80;
}

.about .content .learn-more-btn {
  background: #5fcf80;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0;
}

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

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  /*font-family: "Raleway", sans-serif;*/
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

article.col-md-4 col-lg-3 {
  background: #f5f5f5;
  margin-top: 1em;  
  margin-bottom: 2em;
  box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}

div.card-content {
  background: #fff;
  padding: 0.5em;
  margin-top: 1em;  
  margin-bottom: 2em;
  /*box-shadow: 3px 3px 8px hsl(0, 0%, 70%);*/
  text-align: center;
}

div.card-content h3 {
  margin-bottom: 0.5em;
  font-weight: normal;
}

div.card-content p {
  font-size: 95%;
}

img.spectrum1 {
  max-width: 100%;
  height: auto;
  padding: 30px 0px;
}

div a, a:hover {
  text-decoration: none;
}

div a:hover {
  /*opacity: 0.8;*/
}
.spectrum-h2{
  color: #000;
}
.card-content:hover{
  opacity: .7;
}


/****why 1**/
.why-us .content1 {
  padding: 30px;
  
}
.firstimg{
  background-image: url(../img/back1.jpg);
  background-size: cover;
  position: relative;
}
.sec1{
  margin-bottom: 30px;
}
.align{
  text-align: center;
    background: #fff;
    padding: 23px 31px;
    width: 100%;
    border: 1px solid #eef0ef;
    margin: 10px;

}
/***end why 1**/

/****video section start**/
.video{
  /*background-image: url(../img/video-background-img.png);*/
  background-size: cover;
  position: relative;
  /*height: 600px;*/
  background-color: #a4ddf8;
}
.video_area {
  position: relative;
  padding: 16px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,.2);
    /*border-radius: 15px; */
        border: 3px solid #24b720;
  }
  .video_area .overlay-bg {
    background: rgba(0, 0, 0, 0.2); }
  .video_area .popup-youtube {
    position: absolute;
    left: 0px;
    text-align: center;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    popup-youtube::before{

    }

    .video_area1{
      text-align: center;
    }
    .vtitle{
    text-align: center;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 50px;
    padding: 30px 0 0;
    }
    .vimg{
      width: 100%;
      height: 375px;
    }



    .button-play {
    position: absolute;
    cursor: pointer;
    bottom: 38px;
    left: 50px;
    width: 40px;
  }

    .button-play:before {
    content: "";
    background-image: url(../img/vid.png);
    width: 43px;
    height: 50px;
    background-position: -25px 0;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}
.video_area:before {
    content: "";
    height: 4px;
    background: #ffb606;
    position: absolute;
    bottom: 60px;
    left: 110px;
    right: 40px;
    width: 100px;
    z-index: 1;
    border-radius: 3px;
}
.video_area:after {
    content: "";
    height: 4px;
    background: rgba(255,255,255,.2);
    position: absolute;
    bottom: 60px;
    left: 110px;
    right: 40px;
    border-radius: 3px;
}
/***end video section**/

/***counter strat**/
.cdesign{
  border-radius: 30px;
  padding-bottom: 20px;
  background: #ffff;
  border: 1px solid #ffff;
}
.fa.fa-home, .fa-frown-o, .fa-futbol-o, .fa-heart-o{
  /*border-radius: 50%;*/
  background:#b4b4b4;
}
.fa-frown-o{
    border-radius: 50%;
  background:#b4b4b4;
}
.fa-frown-o:hover{
  background: #EA6212;
}
.fa-futbol-o:hover{
  background: #EA6212;
}
/*.fa-heart-o:hover{
  background: #EA6212;
}*/
.fa.fa-home:hover{
  background: #EA6212;
}
.cicon{
    text-align:center;
    margin-top:2em
}

/**counter end**/

/****start progress circle**/
/*a {
  font-family: 'Open Sans';
  color: rgb(255, 255, 255);
  margin: 50px 0 -80px;
  text-align: center;
  width: 100%;
  font-size: 12px;
  text-decoration: none;
}*/
#wrapper{
  position: relative;
  /*top: 80px;
  width: 404px;*/
}
.center {
  left: 50%;
  -webkit-transform: translate( -50% );
  -ms-transform: translate( -50% );
  transform: translate( -50% );
}

/*===== The CSS =====*/
.progress{
  width: 100px;
  height: 100px;
}
.progress .track, .progress .fill{
  fill: #ffff;
  stroke-width: 3;
  transform: rotate(90deg)translate(0px, -80px);
}
.progress .track{
  stroke: rgb(56, 71, 83);
}
.progress .fill {
  stroke: rgb(255, 255, 255);
  stroke-dasharray: 219.99078369140625;
  stroke-dashoffset: -219.99078369140625;
  transition: stroke-dashoffset 1s;
}
.progress.blue .fill {
  stroke: #ffb606;
}
.progress.green .fill {
  stroke: #ffb606;
}
.progress .value, .progress .text {
  font-family: 'Open Sans';
  fill: #0e0e0e;
  text-anchor: middle;
}
.progress .text {
  font-size: 12px;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    background:none; 
}
/***end progress circle**/

/**start octagao style***/

.img-item-learnpress .img-learn-01 {
    padding-left: 13%;
    padding-right: 13%;
}
.img-item-learnpress .img-center {
    display: flex;
    justify-content: center;
}
.img-item-learnpress .img-center a {
    padding: 0 22px 0 0;
}
.img-item-learnpress .img-learn-02 {
    position: relative;
    top: -35px;
}
.img-item-learnpress .img-learn-03 {
    padding-left: 13%;
    padding-right: 13%;
    position: relative;
    top: -73px;
}
.hexaa{
  background-image: url(../img/octall.jpg);
  background-size: cover;
  position: relative;
}
.octalign{
  color: #fff;
  line-height: 1.75;
  font-weight: 500;
  font-size: 20px;
}
.octalignhead{
  color: #fff;
  font-weight: 600;
  font-size: 38px;
}



/**end octagao style**/

/***elementor start**/
.elementor{
  background-image: url(../img/elementor.jpg);
  background-size: cover;
  position: relative;
}
.etext{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}
.etexttwo{
  font-weight: 600;
  font-size: 20px;
  color: #7179ac;
  text-align: right;
}
.custtext{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.75;
  color: black;
}
.lastse{
  font-size: 35px;
  font-weight: 600;
  color: #000;
  font-family: poppins;
}
.mcolor{
  color: #ffb606;
}
/**elementor end***/

/**fadeinleft start**/
@-webkit-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@-moz-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration:1s;
    animation-delay: 1s;
}



.content-check{
  display: flex;
  flex-wrap: wrap;
}
.item{
  font-size: 17px;
  /*font-weight: 600;*/
  color: #000;
  padding: 0 0 5px;
}

.finsection{
  background-image: url(../img/fsection.jpg);
  background-size: cover;
  position: relative;
}

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



.filter{
  background-image: url(../img/arange.jpg);
  background-size: cover;
  position: relative;
}

/***fadein left end**/

/***start box section**/
.boxb{
  background-image: url(../img/box/mbox.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  
}
.auto-right {
    margin: 0 0 0 auto;
}
.row-content-wrap {
    display: flex;
    flex-wrap: wrap;
}
.row-content-wrap .box-click {
    display: flex;
    padding: 20px 0;
}
.row-content-wrap .box-click .item-content-box {
    margin: 0 0 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    transition: all .3s;
}
.row-content-wrap .box-click .item-content-box .item-content-hover {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 0 0;
}
.row-content-wrap .box-click .item-content-box .item-content-hover p a {
    color: #000;
    font-size: 18px;
    padding: 28px 0 2px;
    font-weight: 600;
}
.content-img {
    display: flex;
    justify-content: center;
}
.box-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.content-text {
    text-align: center;
}
.row-content-wrap .box-text .content-text h3 {
    color: #fff;
    font-family: Poppins;
    font-size: 65px;
    font-weight: 700;
    padding: 20px 0 10px;
    text-shadow: 0 3px 3px rgba(0,0,0,.1), 0 8px 13px rgba(0,0,0,.1), 0 18px 23px rgba(0,0,0,.1);
}
.row-content-wrap .box-text .content-text p {
    color: #fff;
    font-size: 22px;
    text-shadow: 0 3px 3px rgba(0,0,0,.1), 0 8px 13px rgba(0,0,0,.1), 0 18px 23px rgba(0,0,0,.1);
}
/**end box section**/


/***start cust services**/
.custimg{
  background-image: url(../img/customer/green.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.alignc{
  color: #fff;
  font-family: Poppins;
  font-size: 50px;
    font-weight: 700;
    background-color: #acc527;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    padding: 14px 50px 10px 0;
    position: relative;
    display: inline-block;
}
.aligntwo{
  color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 70px 0 0;
}
.item-testiminials {
    background-color: #fff;
    padding: 15px;
    margin: 0 0 25px;
    border-radius: 15px;
    transition: all .3s;
}
.item-testiminials-hover {
    border-radius: 15px;
    padding: 5px;
    transition: all .3s;
}
.content-infor {
    display: flex;
}
.text-content {
    padding: 0 0 0 30px;
}
.text-content .name {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    padding: 15px 0 3px;
}
.item-testiminials-hover .content-des {
    color: #5b5a5a;
    font-size: 15px;
    padding: 5px 0 0;
    font-weight: 600;
}
.item-testiminials-hover .content-infor .img-content img {
    width: 115px;
    border-radius: 88%;
    height: 115px;
}
.isize{
  width: 35%;
}
.rating{
  color: #ffb606;
}
/**end cust services**/

/**start big counter**/
.bcounter{
  /*background-image: url(../img/person.jpg);
  background-repeat: no-repeat;
  background-size: cover;*/
  background: #fff;
}
.counter {
  animation-duration: 1s;
  animation-delay: 0s;
}
.bigcounter{
  text-align: center;
  padding: 80px 0px;
}
.cfont{
  font-size: 60px;
  font-weight: 700;
}
.buttonbg {
  background-color: #009fed;
  border: none;
  color: white;
  padding: 21px 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 22px;
  margin: 4px 2px;
  cursor: pointer;
}
.bgbutton{
 padding: 60px 0px; 
}
/**end big counter**/

/****start footer background img**/
.bgfooter{
  background-image: url(../img/foter3.jpg);
  background-size: cover;
}
.content-social {
    display: flex;
    margin: auto;
    justify-content: center;
    position: relative;
    bottom: 35px;
}
.content-social a {
    border-radius: 100%;
    background-color: #ffff;
    margin: 0 30px 0 0;
    border: 20px solid #ffff;
    width: 70px;
    height: 70px;
    box-shadow: 0px 3px 10px #0a0a0a6b;
      
}


.content-social a:hover {
   
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.2);
}



.fb{
  font-size: 28px;
  color: #385de4;
}
.twitt{
   font-size: 28px;
   color: #1DA1F2;
}
.linkedin{
  font-size: 28px;
  color: #0077b5;
}
.insta{
  font-size: 28px;
  color: #f11cf5d1;
}
.footerhead{
  font-weight: 700;
  font-size: 60px;
  color: #fff;
}

.youtube{
   font-size: 28px;
   color: #bb0000;
}


/**end footer background img***/

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
}

.features .icon-box:hover {
  border-color: #5fcf80;
}

.features .icon-box:hover h3 a {
  color: #5fcf80;
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 5px;
  border: 1px solid #eef0ef;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: #37423b;
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: #5fcf80;
}

.courses .course-content p {
  font-size: 14px;
  color: #777777;
}

.courses .course-content h4 {
  font-size: 14px;
  background: #5fcf80;
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef0ef;
}

.trainers .member img {
  margin: -1px -1px 30px -1px;
}

.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.trainers .member .social {
  margin-top: 15px;
}

.trainers .member .social a {
  color: #7e9486;
  transition: 0.3s;
}

.trainers .member .social a:hover {
  color: #5fcf80;
}

.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

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

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

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

.testimonials .owl-dot.active {
  background-color: #5fcf80 !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details h3:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #5fcf80;
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}

.cource-details-tabs .nav-tabs {
  border: 0;
}

.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #37423b;
  border-radius: 0;
  border-right: 2px solid #e2e7e4;
  font-weight: 600;
  font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
  color: #5fcf80;
}

.cource-details-tabs .nav-link.active {
  color: #5fcf80;
  border-color: #5fcf80;
}

.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #37423b;
}

.cource-details-tabs .details p {
  color: #777777;
}

.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }
  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #5fcf80;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.events .card-text {
  color: #5e5e5e;
}

.events .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.events .read-more a:hover {
  color: #5fcf80;
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: #5fcf80;
}

.events .card:hover .card-body .card-title a {
  color: #5fcf80;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #eef0ef;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #5fcf80;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #5fcf80;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  /*font-family: "Raleway", sans-serif;*/
  
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3ac162;
}

.pricing .featured h3 {
  color: #fff;
  background: #5fcf80;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #5fcf80;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 5px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #5fcf80;
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

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

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

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

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #5fcf80;
  color: #fff;
}

.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: left;
  padding: 15px;
  font-weight: 600;
}

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

.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: 4px;
  box-shadow: none;
  font-size: 14px;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
  /*background-color: #00abf3;*/
}

#footer .footer-top {
  padding: 33px 0 1px 0;
  /*background: #f9faf9;*/
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /*font-family: "Raleway", sans-serif;*/
  font-family: 'Roboto', sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffff;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5fcf80;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #ffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #113e78;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #5fcf80;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3ac162;
}

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

#footer .credits a {
  color: #3ac162;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #5fcf80;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #444;
  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: #444;
  color: #fff;
  text-decoration: none;
}

/*** START BUY NOW BTN***/

button,
button::after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  background: #e51717;
    border: 1px solid #e51717;
    border-radius: 5px;
    color: #ffffff;
    /*display: block;*/
    font-size: 17px;
    font-weight: bold;
    /* margin: 20px 85px; */
    padding: 6px 8px;
    position: relative;
    /* text-transform: uppercase; */
    /*margin-left: 45%;*/
    letter-spacing: 2px;
}

.button-form{
  margin-left: 45%;
}

button::before,
button::after {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}

button:hover {
  color: #fff;
}
.btn-2::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
}

.btn-2:hover:after {
  width: 100%;
}


/***** strat 1 section**/
.video1{
  background-image: url(../img/back21.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
/***** end 1 section**/


/***END BUY NOW BTN*****/

.pheading{
  font-size: 50px;
  font-weight: 700;
  color: #000;
  font-family: 'Poppins';
}
.ptext{
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/****animation start**/

/****animation end**/

@media (max-width: 767px){
  .box-text {
    position: relative!important;
    padding: 20px 0!important;
    top: auto;
    transform: translateY(0);
}
}

@media (max-width: 992px){
  .box-text {
    position: relative!important;
    padding: 20px 0!important;
}
}

/***fade in up zoom***/
.zoomin{
  /*background-image: url(../img/zoom.jpg);*/
  background-size: cover;
  background-color: #1ca3f6;
}
.zoomtext{
  font-size: 45px;
  font-weight: 700;
  font-family: poppins;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}
.zoomp{
  color: #fff;
  text-align: center;
  margin-top: 22px;
}
/****end*****/
/**body**/
.balign{
  overflow-x: hidden;
}
/**body**/
/**social icon responsive**/
@media only screen and (max-width: 600px) {
.content-social a {
    border-radius: 100% !important;
    background-color: #ffff;
    margin: 0 9px 0 2px;
    border: 3px solid #ffff;
    width: 50px !important;
    height: 50px !important;
}
}

@media only screen and (max-width: 600px) {
      .fb{
    margin-top: 8px !important;
    margin-left: 12px !important;
  }
  .twitt{
    margin-left: 9px !important;
    margin-top: 8px !important;
  }
  .linkedin{
    margin-left: 10px !important;
    margin-top: 5px !important;
  }
  .insta{
    margin-left: 9px !important;
    margin-top: 7px !important;
  }

  .youtube{
    margin-left: 9px !important;
    margin-top: 7px !important;
  }
}

.falign{
  margin-left: 2px;
}
/**end social icon**/

/***octal img**/
@media only screen and (max-width: 600px) {
  .octimg{
    height: 75px !important;
    width: auto;
    margin: 10px !important;
  }
}

.octimg{
  margin: 8px;
}
/**octal img end*/

.lealign{
  background-color: #332c89;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    padding: 14px 0 10px 50px;
    min-width: 31%;
    font-weight: 700;
    font-size: 45px;
}
.chnge{
  flex-direction: row-reverse;
  display: flex;
}
.inner-img {
  transition: 0.3s;
}

.inner-img:hover {
  transform: scale(1.1);
}
.logocolor{
  color:#f58a3b;
}
.logocolor1{
  color: #00afef;
}
.logobottom{
  font-size: 15px;
  letter-spacing: 2px;
  color: blue;
  font-style: italic;
  margin-left: 88px;
  font-weight: 600;
  margin: 1px 3px 4px 80px;
}
/*.loginbtn{
  background-color: #fb9a24;
  border-radius: 10px;
}*/

/***logo text start**/
@media only screen and (max-width: 450px) {
  .reslogo{
    font-size: 15px;
    position: relative;
    bottom: 60px !important;
    left: 60px !important;
    }
  }

  @media only screen and (max-width: 390px) {
  .logobottom{
    font-size: 11px;
    position: relative;
    bottom: 56px !important;
    right: 30px !important;
    }
  }

   @media only screen and (max-width: 410px) {
  .logobottom{
    font-size: 12px;
    position: relative;
    bottom:60px !important;
    right: 20px !important;
    }
  }

    @media only screen and (max-width: 450px) {
  .logobottom{
    position: relative;
    bottom: 60px !important;
    right: 15px !important;
    font-size: 10px !important;
    }
  }

   @media only screen and (max-width: 458px) {
  .reslogo{
    font-size: 15px;
    position: relative;
    bottom: 109px !important;
    left: 100px !important;
    }
  }

    @media only screen and (max-width: 458px) {
  .logobottom{
    font-size: 15px;
    position: relative;
    bottom: 108px !important;
    left:   21px !important;
    }
  }


    @media only screen and (max-width: 384px) {
  .reslogo{
    font-size: 15px;
    position: relative;
    bottom: 105px !important;
    left: 90px !important;
    }
  }
      @media only screen and (max-width: 384px) {
  .logobottom{
    font-size: 10px;
    position: relative;
    bottom: 107px !important;
    left:   20px !important;
    }
  }



 @media screen and (max-width:772px) {
  .vimg {
    height: auto;
    width: 100%;
  }
}

/***logo text end**/

    @media only screen and (max-width: 508px) {
  .reslogo{
    font-size: 15px;
    position: relative;
    bottom: 105px !important;
    left: 0px !important;
    top: 0px !important;
    }
  }
      @media only screen and (max-width: 508px) {
  .logobottom{
    font-size: 10px;
    position: absolute;
    left: 120px !important;
    top: 66px !important;
    }
  }


   @media only screen and (max-width: 350px) {
  .reslogo{
    font-size: 15px;
    position: absolute;
    top: 45px !important;
    left: 108px !important;
    }
  }
      @media only screen and (max-width: 350px) {
  .logobottom{
    font-size: 10px;
    position: absolute;
    bottom: 107px !important;
    left: 109px !important;
    }
  }


   @media only screen and (max-width: 1198px) {
  .reslogo{
    font-size: 15px !important;
    
    }
  }
      @media only screen and (max-width: 1198px) {
  .logobottom{
    font-size: 9px !important;
    margin-left: 8px !important;
    }
  }


/***new 3 counter start***/
.progress{
    width: 150px;
    height: 150px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}
.progress:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*border: 2px solid #fff;*/
    position: absolute;
    top: 0;
    left: 0;
}
.progress > span{
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.progress .progress-left{
    left: 0;
}
.progress .progress-bar{
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
}
.progress .progress-left .progress-bar{
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.progress .progress-right{
    right: 0;
}
.progress .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}
.progress .progress-value{
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px solid #ebebeb;
    font-size: 32px;
    line-height: 125px;
    text-align: center;
    position: absolute;
    top: 7.5%;
    left: 7.5%;
}
.progress.blue .progress-bar{
    border-color: #db9c25;
}
.progress.blue .progress-value{
    color: #000;
    background-color: #fff;
}
.progress.blue .progress-left .progress-bar{
    animation: loading-2 1.5s linear forwards 1.8s;
}
.progress.yellow .progress-bar{
    border-color: #fdba04;
}
.progress.yellow .progress-value{
    color: #000;
    background-color: #fff;
}
.progress.yellow .progress-left .progress-bar{
    animation: loading-3 1s linear forwards 1.8s;
}
.progress.pink .progress-bar{
    border-color: #ed687c;
}
.progress.pink .progress-value{
    color: #ed687c;
}
.progress.pink .progress-left .progress-bar{
    animation: loading-4 0.4s linear forwards 1.8s;
}
.progress.green .progress-bar{
    border-color: #1abc9c;
}
.progress.green .progress-value{
    color: #1abc9c;
}
.progress.green .progress-left .progress-bar{
    animation: loading-5 1.2s linear forwards 1.8s;
}
@keyframes loading-1{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@keyframes loading-2{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}
@keyframes loading-3{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
@keyframes loading-4{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}
@keyframes loading-5{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}
@media only screen and (max-width: 990px){
    .progress{ margin-bottom: 20px; }
}
/***new 3 counter end***/

/***new premimum plugin start**/
.pd-content {
    padding: 0 15px 30px;
}
.pd-content .content-img-plugin {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    /* transition: all .3s; */
}
.pd-content .content-img-plugin .hover-img-plugin {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 25px 0;
    transition: all .3s;
}
.pd-content .content-img-plugin .hover-img-plugin a img {
    border-radius: 30px;
    box-shadow: 0 2px 5px #00000033;
}
.pd-content .content-img-plugin .hover-img-plugin a {
    padding: 20px;
    border-radius: 10px;
}
.pd-content .content-img-plugin h4 {
    text-align: center;
    padding: 15px 0 0;
    font-weight: 600;
}
 .content-img .pd-content .content-img-plugin .hover-img-plugin {
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 20px 0;
    transition: all .3s;
}
.pd-content .content-img-plugin:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
.pd-content .content-img-plugin:hover .hover-img-plugin {
    background-color: #f9f9f9;
}
/***new premimum plugin end**/
.megatop{
  margin-top: 106px;
}

section#counter-stats {
  display: flex;
  justify-content: center;
  /*margin-top: 100px;*/
}

.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 100;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}

.stats .fa {
  /*color: #008080;*/
  font-size: 60px;
}
.chover{
  border-radius: 25px;
  margin: auto;
  padding: 35px 0;
}


/***fa fa hover**/
.social-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  /*  */
  text-align:center;
  border-radius: 50%;
  padding:6px 0;
  background-color:#ffffff;
  /*margin:.5em;*/
  /*color: rgba(255, 255, 255, 0.8);*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fa:hover, .fa:active { 
  /*color:#e5e5e5;*/
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3); 
}
.color1{
  color: #ffb606;
}
.color2{
  color: #ff0641;
}
.color3{
  color: #06bcff;
}
.color4{
  color: #72bf40;
}

/**end fa fa**/

/****new 4 counter start**/
/*.counter-box {
    display: block;
    background: #fff;
    padding: 65px 0;
    text-align: center;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
    border-radius: 20px;
}*/

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 45px;
    
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.countfont{
  font-size: 100px;
  font-weight: 700;
  font-family: Poppins;
}
.sshadow{
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
/****new 4 counter end**/

.content-img-top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-right: 266px;
}

.aroww{
  position: relative;
  right: 300px;
  top: 4px;
}
.counttext{
  color: #fff;
  font-weight: 700;
  font-size: 23px;
  padding: 0 0 10px;
  text-align: center;

}
.itlalign{
  color: #fff;
    font-family: Poppins;
    font-size: 50px;
    font-weight: 700;
    padding: 14px 50px 10px 0;
    background-color: #1e3296;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    display: inline-block;
    position: relative;
    bottom: 30px;
}

@media (max-width: 768px){
.aroww {
    display: none;
    }
}


@media (max-width: 768px){
.content-img-top {
    display: none;
    }
}

/***#1 btn**/
.button-modal-1 {
    padding: 60px 0 100px;
    display: flex;
    justify-content: center;
}
.button-modal-1 .btn-primary {
    display: block;
    text-align: center;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-weight: 700;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    padding: 15px 42px;
    border: none;
}
.button-modal-1 .btn-primary:hover {
    background-color: #d29400;
}
/**end btn**/

.button {
  background-color: #00afef; 
  border: none;
  color: white;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.button1 {
  border-radius: 7px;
}

.coutext{
  text-align: center;
  font-weight: 700;
}
/*.falin{
  position: relative;
  left: 25px;
}*/
.yeartop{
  position: relative;
  margin-top: -212px;
  z-index: -2;
}



/****10 + section css***/
#scroll-to-demo {
    padding-top: 200px;
}
.title-10 h2 {
    text-align: center;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    font-size: 150px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 3px 3px rgb(0 0 0 / 10%), 0 8px 13px rgb(0 0 0 / 10%), 0 18px 23px rgb(0 0 0 / 10%);
    line-height: 120px;
    margin-bottom: 25px;
}
.title-10 h3 {
    line-height: 50px;
    text-align: center;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 3px 3px rgb(0 0 0 / 10%), 0 8px 13px rgb(0 0 0 / 10%), 0 18px 23px rgb(0 0 0 / 10%);
}
.title-10 p {
    text-align: center;
    padding: 30px 0 100px;
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-shadow: 0 3px 3px rgb(0 0 0 / 10%), 0 8px 13px rgb(0 0 0 / 10%), 0 18px 23px rgb(0 0 0 / 10%);
}
/***10 + section css end***/

/***gallery section start***/
.thim-demo-content {
    display: flex;
    flex-wrap: wrap;
}
.thim-demo-content .item {
    padding: 0 15px 60px;
    transition: all .3s;
}
.thim-demo-content .item .item-img-content {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    transition: all .3s;
}
.item-img-content .img-item {
    position: relative;
    overflow: hidden;
}
.item .item-img-content .img-item:before {
    pointer-events: none;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: auto;
    transition: all .3s;
    border-radius: 15px;
}
 .item .item-img-content .img-item img {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;
    border-radius: 15px;
    /*height: 200px;*/
}
.thim-demo-content .item h3 {
    text-align: center;
    padding: 5px 0 5px;
    transition: all .3s;
    font-weight: 500;
    font-size: 19px;
}
/*.item:hover .item-img-content {
    background: #00feaf;
    background: linear-gradient(
221deg
,#00feaf 0%,#1d8ffa 29%,#01d6ff 100%);
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}*/
/*.hover-effectg:hover{
  background: #00feaf;
    background: linear-gradient(
221deg
,#00feaf 0%,#1d8ffa 29%,#01d6ff 100%);
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}*/
.galltop{
  margin-top: -100px;
}


.box19{
  /*text-align:center;*/
  position:relative;
}
.box19 .box-content{
  width:100%;
  height:100%;
  background:0 0;
  padding-top:25%;
  /*position:absolute;*/
  top:0;
  left:0;
  transition:all .3s ease 0s;
  border-radius: 15px;
}
.box19 .icon,.box19 .title{
  transition:all .2s ease 0s;
}
.box19:hover .box-content{
  /*background:rgba(0,0,0,.5);*/
}
.box19 .title{
  font-size:24px;
  color:#fff;
  transform:scale(0);
}
.box19:hover .title{
  transform:scale(1);
}
.box19 .icon{
  list-style:none;
  padding:0;
  margin:0;
  opacity:0;
}
.box19:hover .icon{
  opacity:1;
}
.box19 .icon li{
  display:inline-block;
}
.box19 .icon li:first-child a,.box19 .icon li:last-child a{
  display:block;
  width:50px;
  height:50px;
  line-height:50px;
  font-size:24px;
  color:#fff;
  position:relative;
}
.box19 .icon li a{
  top:-150px;
}
.box19:hover .icon li a{
  top:0;
}
.hover-text p:hover{
  /*color: #ffff;*/
}
.grid-padding{
  /*padding: 0px 15px 15px 10px;*/
}
.paragraph-padding{
  /*margin-top: 25px;*/
  /*color: #000;*/
  font-weight: 400;
  padding-left: 0px;
    padding-right: 0px;
    /*font-size: 17px;*/
}
.border-backcolor{
  /*background-color: #ffff;*/
  border-radius: 10px;
}
/*.box19:hover .icon li a:hover{background:#a46789;border-color:#a46789}*/
.box19 .icon li:first-child a{
  transition:all .6s cubic-bezier(.175,.885,.32,1.275) 0s;
}
.box19 .icon li:last-child a{
  transition:all .6s cubic-bezier(.175,.885,.32,1.275) .1s;
}
@media only screen and (max-width:990px){
  .box19{margin-bottom:30px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width:360px){
  .box19 .box-content{
    padding-top:20%;
  }
}

/***gallery section end*****/
.reshgt{
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
.content-social {
bottom: 100px !important;
  }
}
.istbrd{
  border-radius: 100%;
}

@media only screen and (max-width: 322px){
.logobottom {
    margin: 1px 3px 4px 80px;
  }
}


.hov-icon {
  color: #f58634;
}

@media only screen and (max-width: 600px) {
  #header .logo img{
      padding: 0;
      margin: 0;
      max-height: 55px; 
      position: relative;
      bottom: 30px;
  }
}


@media (max-width: 1300px){ 
  #header .logo img{
     padding: 0;
      margin: 0;
      max-height: 55px; 
      position: relative;
      bottom: 14px;
  }
}


@media only screen and (max-width: 992px) {
  .butn-margin{
  margin-left: 19px;
   }
}

.abt-bg{
  margin-top: 90px;
  text-align: center;
  background-color: #004aad;
  color: #ffff;
  /*background-image: url(../img/banner22.png);*/
  /*background-size: 100% 100%;*/
 } 
.our-heading{ 
  text-align: center;
   } 
.mega-clr{ 
        color: #24b720;
    font-size: 26px;
    font-weight: bold;
        letter-spacing: 1px;
} 
.setup-clr{ 
  color: #1fb7f8;
}
.life-div{
  text-align: left;
 margin-bottom: 13px;
    margin-top: -5px;
}
.style-ul{
  list-style: none;
}
.sec-heading{
  margin-bottom: 40px;
}
.ourleader-margin{
  margin-top: -105px;
}
.vision-top{
  margin-top: 40px;
}
.miss-martop{
  /*margin-top: 40px;*/
}
.fa-color{
  color: #f47b3b;
}
.count-after{
  margin-top: 35px;
}
.reso-para{
  margin-bottom: 0px;
}
.fa-blue{
  color: #00afef;
}

@media screen and (max-width: 992px) {
  .resp-img{
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .font-res{
    font-size: 20px;
  }
}

.p-margin{
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .p-margin{
    margin-top: 20px;
  }
}

.leader-margin{
  margin-bottom: 35px;
  margin-top: 80px;
  text-align: center;
}
.ft-marginnew{
  margin-bottom: 50px;
}
.term-margin{
  margin-top: 105px;
}
/*****history css*****/

.success-history-sec {
  position: relative;
}
.content-middal.gray-box {
    background: #f2f2f2; 
}
.timeline {
  list-style: none;
  padding: 0;
  /*position: relative;*/ 
  /*background-image: url(../img/bg3.jpg);*/
  width: 1345px;
  margin: 0 auto;
}

.success-history-sec:before {
  top: 160px;
  bottom: 170px;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #004aad;
  left: 50%;
  margin-left: -1.5px;
  display: block;
  z-index: 9;
}

.timeline > li {
  margin-bottom: 0px;
  position: relative;
  padding: 30px 0;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li.timeline-inverted {
  background: #fff;
}

.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  /*border: 3px solid #f47b3b;
  border-radius: 2px;
  padding: 11px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);*/
}



@media (max-width: 992px){
.timeline > li > .timeline-panel {
  width: 100%;
  float: left;
  border: 3px solid #f47b3b;
  border-radius: 2px;
  padding: 11px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
}

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
  display: none;
}

.timeline > li > .timeline-panel.none:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: none;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
  display: none;
}

.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
  display: none;
}

.timeline > li > .timeline-panel.none:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: none;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
  display: none;
}

.timeline > li > .timeline-badge {
  color: #24b720;
    font-weight: 700;
    width: 75px;
    height: 75px;
    border: 7px solid #004aad;
    line-height: 62px;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 49.5%;
    margin-left: -32px;
  background-color: #ffff;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge.primary {
  background-color: #2e6da4 !important;
}

.timeline-badge.success {
  background-color: #ffff !important;
}

.timeline-badge.warning {
  background-color: #ffff !important;
}

.timeline-badge.danger {
  background-color: #ffff !important;
}

.timeline-badge.info {
  background-color: #ffff !important;
}

.timeline-panel1 .timeline-title {
  text-align: left;
}
.timeline-panel2 .timeline-title {
  text-align: right;
}

.timeline-title {
  margin-top: 0;
  color: #24b720;
    font-weight: 700;
}

.timeline-title .fa.fa-check {
  background: url(../../assets/img/this-type.png) 0 0 no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
  display: block;
  font-size: 0;
  float: left;
  margin: 0 10px 0 0;
}
.timeline-title .fa.fa-checkl.fa-color:before {
  display: none;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

/****history css end***/
.vert-img{
  position: relative;
  top: 35px;
}

/****counter css***/
.cont-fsize{
  font-size: 18px;
}

h2 {
  color: black;
  font-size: 23px;
}

.intro {
  height: auto;
  min-height: 100vh;
  text-align: center;
  background-color: black;
}
/****counter css end****/

/*****login button****/
/*.simple-btn button,
.btn-size,
.secondary-btn button{
  margin:10px;
}*/
/*.log-btn{
  padding: 0px 0px 0px 0px;
  border: 1px solid #24b720;
  border-radius: 5px;
  background-color: #f47b3b;
}*/
/*.log-btn:hover{
  background-color: #009fed;
   
    border: 1px solid #009fed; 
}*/
.log-btn a:hover{
  color: #ffff;
  padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
    background-color: #24b720;
}

button:hover{
  background-color: #009fed;
  border: 1px solid #e51717;
}

.log-btn a{
  color: #ffff;
  padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
    background-color: #009fed;
    border-radius: 5px;
    letter-spacing: 1px;
}
.align-butn{
  position: relative;
  left: 0px;
}
/*****login button end**/


/*.left-border{
  border-left: 4px solid #f47a08;
  padding: 10px;
  margin: 10px;
}
.left-border p{
  color: #ffff;
  text-align: justify;
}*/
.hove-me a:hover{
  background-color: red;
}


.menu-area{background: #d61a5e}
.dropdown-menu{padding:0;margin:0;border:0 solid transition!important;border:0 solid rgba(0,0,0,.15);border-radius:0;-webkit-box-shadow:none!important;box-shadow:none!important}
.mainmenu a, .navbar-default .navbar-nav > li > a, .mainmenu ul li a , .navbar-expand-lg .navbar-nav .nav-link{color:#fff;font-size:16px;text-transform:capitalize;padding:16px 15px;font-family:'Roboto',sans-serif;display: block !important;}
.mainmenu .active a,.mainmenu .active a:focus,.mainmenu .active a:hover,.mainmenu li a:hover,.mainmenu li a:focus ,.navbar-default .navbar-nav>.show>a, .navbar-default .navbar-nav>.show>a:focus, .navbar-default .navbar-nav>.show>a:hover{color: #fff;background: #4CAF50;outline: 0;}
/*==========Sub Menu=v==========*/
.mainmenu .collapse ul > li:hover > a{background: #4CAF50;}
.mainmenu .collapse ul ul > li:hover > a, .navbar-default .navbar-nav .show .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .show .dropdown-menu > li > a:hover{background: #4CAF50;}
.mainmenu .collapse ul ul ul > li:hover > a{background: #4CAF50;}

.mainmenu .collapse ul ul, .mainmenu .collapse ul ul.dropdown-menu{background:#1565C0;}
.mainmenu .collapse ul ul ul, .mainmenu .collapse ul ul ul.dropdown-menu{background:#1E88E5}
.mainmenu .collapse ul ul ul ul, .mainmenu .collapse ul ul ul ul.dropdown-menu{background:#64B5F6}

/******************************Drop-down menu work on hover**********************************/
.mainmenu{background: none;border: 0 solid;margin: 0;padding: 0;min-height:20px;width: 100%;}
@media only screen and (min-width: 767px) {
.mainmenu .collapse ul li:hover> ul{display:block}
.mainmenu .collapse ul ul{position:absolute;top:100%;left:0;min-width:250px;display:none}
/*******/
.mainmenu .collapse ul ul li{position:relative}
.mainmenu .collapse ul ul li:hover> ul{display:block}
.mainmenu .collapse ul ul ul{position:absolute;top:0;left:100%;min-width:250px;display:none}
/*******/
.mainmenu .collapse ul ul ul li{position:relative}
.mainmenu .collapse ul ul ul li:hover ul{display:block}
.mainmenu .collapse ul ul ul ul{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}

}
@media only screen and (max-width: 767px) {
.navbar-nav .show .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 35px}
.navbar-nav .show .dropdown-menu .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 45px}
}

.new-sty{

}

/*.dropdown-toggle:hover{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}*/

.lifont a{
  font-size: 13px;
  font-weight: 400;
}

.nav-menu .drop-down ul::after {
    content: " ";
    position: absolute;
    top: -11px;
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #009fed;
    left: 33.5px !important;
}

.hist-img{
  position: relative;
  left: 95px;
}
.left-img{
  position: relative;
  right: 98px;
}

/*****vertical tab****/
.accordion .card-header:hover::after {
    font-family: 'FontAwesome';  
    content: "\f063";
    float: right; 
    margin-top: -20px;
}
.accordion .card-header.collapsed:hover::after {
    /* symbol for "collapsed" panels */
    content: "\f061"; 
    margin-top: -20px;
}
.accordiona .card-header:hover::after {
    font-family: 'FontAwesome';  
    content: "\f063";
    float: right; 
    margin-top: -20px;
}
.accordiona .card-header.collapsed:hover::after {
    /* symbol for "collapsed" panels */
    content: "\f061"; 
    margin-top: -20px;
}
.accordioncc .card-header:hover::after {
    font-family: 'FontAwesome';  
    content: "\f063";
    float: right; 
    margin-top: -20px;
}
.accordioncc .card-header.collapsed:hover::after {
    /* symbol for "collapsed" panels */
    content: "\f061"; 
    margin-top: -20px;
}
.card-title{
  
  color: #000E97;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    /* padding-top: 8px; */
    margin-top: 8px;
}

/*.card-1 .card-title:hover{
  
  color: red;
}*/

.style-bg .col-md-6 .card-body:hover h4{
color: #009fed;
}

.style-bg .col-md-4 .card-body:hover img {
    background-color: #009fed;
}

.card-header a:hover{
  color: #f47907;
}
.tab-clr p{
  color: #385788;
  font-size: 18px;
}

/*****vertical tab end****/

/****value icon******/

/*.resimg1{
  position: relative;
  left: 140px;
}
.honimg{
  position: relative;
  left: 130px;
}
.famimg{
  position: relative;
  left: 140px;
}
.comimg{
  position: relative;
  left: 80px;
}
.resimg{
  position: relative;
  left: 40px;
}
.hurtimg{
  position: relative;
  left: 44px;
}
.hontimg{
  position: relative;
  left: 120px;
}
.effitimg{
  position: relative;
  left: 110px;
}
.healimg{
  position: relative;
  left: 130px;
}
.friimg{
  position: relative;
  left: 100px;
}
.detimg{
  position: relative;
  left: 65px;
}
.creatimg{
  position: relative;
  left: 100px;
}
.courgimg{
  position: relative;
  left: 110px;
}
.advimg{
  position: relative;
  left: 95px;
}
.achivementimg{
  position: relative;
  left: 73px;
}
.faithimg{
  position: relative;
  left: 130px;
}
.honoimg{
  position: relative;
  left: 100px;
}
.trustimg{
  position: relative;
  left: 120px;
}
.dncimg{
  position: relative;
  left: 60px;
}
.bedimg{
  position: relative;
  left: 43px;
}
.donjimg{
  position: relative;
  left: 55px;
}
.hawoimg{
  position: relative;
  left: 70px;
}
.Smwoimg{
  position: relative;
  left: 60px;
}
.prayerimg{
  position: relative;
  left: 90px;
}
.excimg{
  position: relative;
  left: 112px;
}
.childimg{
  position: relative;
  left: 130px;
}
.hemenimg{
  position: relative;
  left: 65px;
}
.adjusimg{
  position: relative;
  left: 130px;
}
.justiimg{
  position: relative;
  left: 145px;
}
.inteimg{
  position: relative;
  left: 130px;
}
.respoimg{
  position: relative;
  left: 90px;
}
.sportimg{
  position: relative;
  left: 80px;
}
.servledimg{
  position: relative;
  left: 55px;
}
.depenyimg{
  position: relative;
  left: 85px;
}
.relibimg{
  position: relative;
  left: 120px;
}
.loyaimg{
  position: relative;
  left: 140px;
}
.comitimg{
  position: relative;
  left: 95px;
}
.fredimg{
  position: relative;
  left: 130px;
}
.wisdimg{
  position: relative;
  left: 130px;
}
.mibloimg{
  position: relative;
  left: 87px;
}
.finscimg{
  position: relative;
  left: 60px;
}
.knowimg{
  position: relative;
  left: 107px;
}
.pergroimg{
  position: relative;
  left: 60px;
}
.atttimg{
  position: relative;
  left: 36px;
}
.dndprimg{
  position: relative;
  left: 8px;
}
.hacoimg{
  position: relative;
  left: 85px;
}
.keeprimg{
  position: relative;
  left: 40px;
}
.desplimg{
  position: relative;
  left: 120px;
}
.autheimg{
  position: relative;
  left: 108px;
}
.msli{
  position: relative;
  left: 100px;
}
.msmriskm{
  position: relative;
  left: 25px;
}
.msmprotr{
  position: relative;
  left: 113px;
}
.msmpartfte{
  position: relative;
  left: 20px;
}
.msmysafte{
  position: relative;
  left: 120px;
}
.msmheit{
  position: relative;
  left: 120px;
}



@media only screen and (max-width: 600px) {
  .resimg1 {
    position: relative;
    left: 75px;
  }
  .honimg{
  position: relative;
  left: 70px;
  }
  .famimg{
  position: relative;
  left: 80px;
  }
  .comimg{
  position: relative;
  left: 20px;
}
.resimg{
  position: relative;
  left: -10px;
}
.hurtimg{
  position: relative;
  left: 0px;
}
.hontimg{
  position: relative;
  left: 75px;
}
.effitimg{
  position: relative;
  left: 65px;
}
.healimg{
  position: relative;
  left: 88px;
}
.friimg{
  position: relative;
  left: 60px;
}
.detimg{
  position: relative;
  left: 30px;
}
.creatimg{
  position: relative;
  left: 62px;
}
.courgimg{
  position: relative;
  left: 70px;
}
.advimg{
  position: relative;
  left: 60px;
}
.achivementimg{
  position: relative;
  left: 38px;
}
.faithimg{
  position: relative;
  left: 100px;
}
.honoimg{
  position: relative;
  left: 75px;
}
.trustimg{
  position: relative;
  left: 90px;
}
.dncimg{
  position: relative;
  left: 30px;
}
.bedimg{
  position: relative;
  left: 16px;
}
.donjimg{
  position: relative;
  left: 30px;
}
.hawoimg{
  position: relative;
  left: 47px;
}
.Smwoimg{
  position: relative;
  left: 40px;
}
.prayerimg{
  position: relative;
  left: 85px;
}
.excimg{
  position: relative;
  left: 56px;
}
.childimg{
  position: relative;
  left: 72px;
}
.hemenimg{
  position: relative;
  left: 5px;
}
.adjusimg{
  position: relative;
  left: 66px;
}
.justiimg{
  position: relative;
  left: 90px;
}
.inteimg{
  position: relative;
  left: 78px;
}
.respoimg{
  position: relative;
  left: 35px;
}
.sportimg{
  position: relative;
  left: 35px;
}
.servledimg{
  position: relative;
  left: 12px;
}
.depenyimg{
  position: relative;
  left: 45px;
}
.relibimg{
  position: relative;
  left: 80px;
}
.loyaimg{
  position: relative;
  left: 100px;
}
.comitimg{
  position: relative;
  left: 52px;
}
.fredimg{
  position: relative;
  left: 83px;
}
.wisdimg{
  position: relative;
  left: 90px;
}
.mibloimg{
  position: relative;
  left: 45px;
}
.finscimg{
  position: relative;
  left: 23px;
}
.knowimg{
  position: relative;
  left: 70px;
}
.pergroimg{
  position: relative;
  left: 25px;
}
.atttimg{
  position: relative;
  left: 0px;
}
.dndprimg{
  position: relative;
  left: 8px;
}
.hacoimg{
  position: relative;
  left: 58px;
}
.keeprimg{
  position: relative;
  left: 10px;
}
.desplimg{
  position: relative;
  left: 85px;
}
.autheimg{
  position: relative;
  left: 62px;
}
}*/

/****value icon end***/
.drpo-me{
  margin-top: 12px;
}


/*@media only screen and (max-width: 992px) {
  .hist-img{
    position: relative;
    left: 35px;
  }
  .left-img{
  position: relative;
  right: 25px;
  }
}*/

@media only screen and (max-width: 600px) {
  .hist-img{
    position: relative;
    left: 32px;
  }
  .left-img{
  position: relative;
  right: 25px;
  }
}

@media only screen and (min-width: 600px) {
  .hist-img{
    position: relative;
    left: 54px;
  }
  .left-img{
  position: relative;
  right: 45px;
  }
}

@media only screen and (min-width: 768px) {.hist-img{
    position: relative;
    left: 65px;
  }
  .left-img{
  position: relative;
  right: 60px;
  }
}

@media only screen and (min-width: 992px) {
    .hist-img{
    position: relative;
    left: 72px;
  }
  .left-img{
  position: relative;
  right: 75px;
  }
}

@media only screen and (min-width: 1200px) {
  .hist-img{
    position: relative;
    left: 130px;
  }
  .left-img{
  position: relative;
  right: 0;
  }
}


@media only screen and (max-width: 600px) {
  .hist-imgess{
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
    .logbtnres{
    position: relative;
    right: 42px;
  }
}

.hist-imgess{
  border: 3px solid #f47b3b;
  /*margin-left: 5px;*/
}
.hist-imgess:hover{
 box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);
}


.head-margin{
  margin: -30px 0px -20px 0px;
}
.l-space h1{
  /*letter-spacing: 1px;*/
  font-size: 1.9em;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    padding-top: 13px;
}
.lifont a:hover{
  background-color: #12c2f9;
  color: #ffff;
  border-radius: 5px;
}

.sec-bgcolor{
  /*background-color: #009fed;*/
}
.para-bgclor{
  /*background-color: #ffff;*/
  /*border-radius: 8px;*/
  padding: 20px 15px 0px 15px;
}
.para-bgclor p{
 /* color: #385788;
  font-size: 18px;
  letter-spacing: 1px;*/
  color: #000;
    font-weight: 400;
    
    font-size: 1rem;
}
.top-contai{
  margin-top: 30px;
}
.bord-img{
      padding-top: 30px;
  /*border:8px solid #f47907;
  border-radius: 6px;*/
}
.para-margintt{
  margin-top: 15px;
}
.foote-sec{
  padding: 0px;
  background-color: #001F49;
}
.copyright p{
  color: #ffff;
  font-size: 15px;
}
.discl-align{
  text-align: initial;
  color: #E80000;
  /*text-shadow: 2px 2px 8px #ffffffab;*/
    font-weight: 700;
    font-size: 24px;
}
.discl-foot{
  padding: 0px;
  background-color: #C0C0C0;
}
.dis-font p{
 color: #000;
    font-size: 14px;
  text-align: justify;
}
.foot-me-bg{
  background-color: #009fed;
  /*background-image: url(../img/footer1.png);*/
  background-size: 100% 100%;
}
.margin-row{
  margin-right: 0px;
  margin-left: 0px;
}
.space-mar{
  margin-top: 15px;
}
.copyright{
      margin-top: 15px;
    margin-bottom: 15px;
}
.headclr{
  color: #24b720;
  font-size: 27px;
  font-weight: bold;
      letter-spacing: 1px;

}
.card {
  margin-bottom: 2rem;
}

.foot-bgclr{
  /*background-color: #f0f6fc;*/
  margin-top: -50px;
  border-bottom: 1px solid #f0f1f1;
}
.sect-paddi{
  padding: 0px;
}
#footer .sect-paddi{
  /*padding: 0px;*/
}
.fcb-align{
  margin-left: 5px;
}
.linkd-alig{
  margin-top: -2PX;
}
.success-history-sec .style-ul {
  padding-left: 20px;
}
.success-history-sec .style-ul li {
  list-style: square;
}
.style-ul {
  padding-left: 0;
}
.style-ul li{
  color: #000;
  font-size: 17px;
  margin-bottom: 9px;
}
.price-text .style-ul.listcheck {
  display: inline-block;
  width: 100%;
  margin-top: 25px;
}
.price-text .style-ul.listcheck li {
  width: 33%;
  float: left;
}
.price-text .style-ul.listcheck50 {
  display: inline-block;
  width: 100%;
}
.price-text .style-ul.listcheck50 li {
  width: 48%;
  float: left;
  margin: 0 2% 10px 0;
}
.price-text .style-ul li .fa.fa-check {
  background: url(../../assets/img/this-type.png) 0 0 no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: block;
  font-size: 0;
  float: left;
  margin: 0 10px 0 0;
}
.price-text .style-ul li .fa.fa-checkl.fa-color:before {
  display: none;
}



.webinar-text .style-ul.listcheck {
  display: inline-block;
  width: 100%;
}
.webinar-text .style-ul.listcheck li {
  width: 33%;
  float: left;
}
.webinar-text .style-ul.listcheck50 li {
  width: 48%;
  float: left;
  margin: 0 2% 10px 0;
}
.webinar-text .style-ul.web-list1 li {
  font-size: 20px;
  color: #000E97;
}
.webinar-text .style-ul li .fa.fa-check {
  background: url(../../assets/img/this-type.png) 0 0 no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  display: block;
  font-size: 0;
  float: left;
  margin: 0 10px 10px 0;
}
.webinar-text .style-ul li .fa.fa-checkl.fa-color:before {
  display: none;
}



.cont-martop{
  margin-top: 40px;
}
.our-ledimg{
  padding: 0px 10px 23px 10px;
}


@media only screen and (max-width: 600px) {
  .content-social
  {
    display: flex;
    margin: auto;
    justify-content: center;
    position: relative;
    top: -30px;
}
}
@media only screen and (max-width: 600px) {
  .foot-bgclr {
    /*background-color: #f0f6fc;*/
    margin-top: 0px;
}
}


.card-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border-radius: 0px;
  height: 350px;
  background-color: #f0f1f1;
}

.card-1:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}


.card-2 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 0px;
    height: 400px;
        background: #f0f1f1;
}

.card-2:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/*.logbtn-padd a{
  padding: 7px 7px 4px 12px;
  margin: 0px 10px 6px 0px;
}*/


.container-fluid{
 width: 100%;
    padding-right: 60px;
    padding-left: 60px;
    margin-right: auto;
    margin-left: auto;
}

.story1{
  /*border: 1px solid #c1c2c2;*/
    /*background: white;*/
    /*box-shadow: 0 1px 5px 2px rgb(240, 241, 241), 0 1px 2px rgb(240, 241, 241);*/
    /* padding-left: 13px; */
    /*padding: 25px;*/
}

.story1:hover{
 
    /*box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.55), 0 10px 10px rgba(0, 0, 0, 0.43)*/
}

.style-bg{
  /*background-image: url(../img/bg3.jpg);*/
}

.style-bg-value .col-lg-3 .card-body:hover h4 {
    color: #24b720;
}

.style-bg-value .col-lg-3 .card-body:hover img {
    background-color: #24b720;
}

.icon-img1{
background-color: #12c2f9;
    border-radius: 50%;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.card-text:last-child{
  text-align: center;
}


@media (max-width: 576px){
.container-fluid{
 width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

}


@media (max-width: 992px){
.card-1 {
    
    height: auto;
}

}

@media (max-width: 992px){
.card-2 {
    
    height: auto;
}

}

.para-bgclor1 {
     background-color: none; 
    border-radius: 8px;
    padding: 20px 15px 0px 15px;
}

.style-bg .col-md-4 .card-body:hover h4 {
    color: #009fed;
}


.para-bgclor2 {
    background-color: #ffff;
    /*border-radius: 8px;*/
    /*padding: 20px 15px 0px 15px;*/
}

.para-bgclor2:hover {
    /*background-color: #ffff;*/
    /*border-radius: 8px;*/
    /*padding: 20px 15px 0px 15px;*/
}

/*.border-radious{
  border: 1px solid red;
    border-radius: 50%;
    width: 100px;
    text-align: center;
    background: red;
}*/


.style-bg .col-md-6 .card-body:hover img {
    background-color: #24b720;
}

.style-bg-vm .col-lg-3 .card-body:hover h4 {
    color: #009fed;}


.style-bg-vm .col-lg-3 .card-body:hover img {
    background-color: #24b720;}

.life-div1 {
    text-align: center;
    margin-bottom: 14px;
    margin-top: 20px;
}

.border-blue{
  /*border: 28px solid #009fed;*/
    /*border-radius: 7px;*/
    /*background: #009fed;*/
    /*box-shadow: 0px 3px 10px #0a0a0a85;*/
}

.cont-martop1 {
    margin-top: 10px;
}

.icon-width{
  width: 19px;
}

.card-3 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 0px;
    height: 422px;
        background: #f0f1f1;
}

@media (max-width: 992px){
.card-3 {
    
    height: auto;
}

}

.card-4 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 0px;
    height: 380px;
        background: #f0f1f1;
}

@media (max-width: 992px){
.card-4 {
    
    height: auto;
}

}

.card-3:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.card-4:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}


.listcol1 {
    width: 3%;
    text-align: center !important;
    padding-bottom: 12px;
}

.listcol2 {
    width: 97%;
    text-align: left !important;
    padding-bottom: 6px;
    font-size: 17px;
}

@media (max-width: 1199.98px){
.listcol2 {
    width: 90%;
}
}

@media (max-width: 1199.98px){
.listcol1 {
    width: 10%;
}

}


.timeline > li > .timeline-panel:hover{
/*box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);*/

}

.life-div1 {
    text-align: center;
    margin-bottom: 11px;
    margin-top: 22px;
}


.counter-style{
 color: #24b720;
    font-weight: 700;
        font-size: 50px;
    margin: 20px 0 0 0;
}


.card-5 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 0px;
    height: 327px;
}

.card-5:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}


.card-6 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border-radius: 0px;
    height: 393px;
}

.card-6:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}



@media (max-width: 992px){
.card-5 {
    
    height: auto;
}

}


@media (max-width: 992px){
.card-6 {
    
    height: auto;
}

}


.style-bg .col-md-3 .card-body:hover img {
    background-color: #009fed;
}


.style-bg .col-md-3 .card-body:hover h4 {
    color: #009fed;
}

.collapsible {
  /*background-color: #777;*/
  color: #4f85f6;
  cursor: pointer;
  /*padding: 18px;*/
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  /*border-bottom: 1px solid #f0f1f1;
    border-top: 1px solid #f0f1f1;*/
    padding: 10px;

}

/*.active, .collapsible:hover {
  background-color: #000;
}*/

.content {
  padding: 24px 18px;
  display: none;
  overflow: hidden;
  /*background-color: #f1f1f1;*/
}

.timeline > li > .timeline-panel1 {
width: 46%;
    float: left;
    border-radius: 2px;
    position: absolute;
    margin-left: 0px;
    right: 0;
    left: auto;
    top: 50%;
    transform: translate(35%, -50%);
}

.timeline > li > .timeline-panel2 {
width: 46%;
    float: left;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    margin-left: 0;
    left: 0;
    transform: translate(-35%, -50%);
}

.timeline > li > .timeline-badge:hover{
  border: 7px solid #24b720;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 1px 15px rgba(10, 10, 10, 0.42);

 
}

.timeline-badge.warning:hover {
    background-color: #004aad !important;
}
.pulse:hover, 
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em rgba(#fff,0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--hover); }
}

/*.timeline > li > .timeline-panel1:hover {
    box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);
}

.timeline > li > .timeline-panel2:hover {
    box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);
}
*/

.gallery-slider1 {
  position: relative;
      padding-top: 30px;
}


.mySlides {
  display: none;
}


.cursor {
  cursor: pointer;
}


.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}


.next {
  right: 60px;
  border-radius: 3px 0 0 3px;
}


.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}


.column {
  float: left;
  width: 16.66%;
  padding-top: 20px;

}


.gallery-img2 {
  /*opacity: 0.6;*/
}

.active1,
.gallery-img2:hover {
  border: 3px solid #24b720;
}


.carousel-inner img {
    /*width: 100%;*/
    /*height: 100%;*/
  }

  .carousel-control-next {
    right: -80px;
}

.carousel-control-prev {
    left: -80px;
}

/*.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%;
    
    border-radius: -17px;
}*/

.timeline-panel1 .timeline-title .img-mrg, .timeline-panel2 .timeline-title .img-mrg {
  width: 250px;
}
.timeline-panel1 .timeline-title .img-mrg.logo-img, .timeline-panel2 .timeline-title .img-mrg.logo-img {
  width: 450px;
}

.timeline-panel1 .timeline-title .img-mrg.img-hv, .timeline-panel2 .timeline-title .img-mrg.img-hv {
  display: none;
}
.timeline-panel1 .timeline-title:hover .img-mrg.img-sv, .timeline-panel2 .timeline-title:hover .img-mrg.img-sv {
  display: none;
}
.timeline-panel1 .timeline-title:hover .img-mrg.img-hv, .timeline-panel2 .timeline-title:hover .img-mrg.img-hv {
  display: inline-block;
}

.img-mrg {
    margin-left: 0px;
    border: 0px solid #24b720;
}

.timeline-panel1 .timeline-title .img-mrg.logo-img.rgt-companylogo {margin-left: -100px;}
.timeline-panel2 .timeline-title .img-mrg.logo-img.lft-companylogo {margin-right: -100px;}


@media (min-width: 1366px){
.timeline > li > .timeline-panel {
    
   padding: 15px;
}
}


@media (min-width: 1366px){
.timeline > li > .timeline-panel1{
    
       margin-left: -5px;
}
}


@media (min-width: 1500px){
.timeline > li > .timeline-panel {
    
   /*padding: 58px;*/
   padding: 35px;
}
}


@media (min-width: 1500px){
.timeline > li > .timeline-panel1{
    
       margin-left: 15px;
}
}




.story-blog1 {
    border: 1px solid #c1c2c2;
    background: white;
    box-shadow: 0 1px 5px 2px rgb(240, 241, 241), 0 1px 2px rgb(240, 241, 241);
    /* padding-left: 13px; */
    padding: 12px;
}

.collapsible1 {
    /* background-color: #777; */
    color: #4f85f6;
    /*cursor: pointer;*/
    /* padding: 18px; */
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f1f1;
    padding: 9px;
    border-top: 1px solid #f0f1f1;
}
.date-blog1
{
 /* margin-left: 77px;*/
  color: #000;
}


.date-blog2
{
float: right;
  color: #000;
}

#SectionName{
  display: none;
}

#SectionName1{
  display: none;
}

#SectionName2{
  display: none;
}

#SectionName3{
  display: none;
}

#SectionName4{
  display: none;
}

#SectionName5{
  display: none;
}

.error{
  font-size: 13px;
  color: red;
}

.borderform{
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background-color: #eee;
    padding: 35px;
}

.thim-demo-content .item .item-img-content:hover{
box-shadow: 0 14px 28px rgba(35, 34, 36, 0.55), 0 10px 10px rgba(0,0,0,0.22);
}

.home-button{
    /*top: 190px;*/
    /*right: -22px;*/
    }


    .home-slider-text{
      color: red;

    }


    
    #chevron {
      position: relative;
      text-align: center;
      padding: 12px;
      margin-bottom: 6px;
      height: 60px;
      width: 200px;
    }
    #chevron:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 51%;
      background: red;
      transform: skew(0deg, 6deg);
    }
    #chevron:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 50%;
      background: red;
      transform: skew(0deg, -6deg);
    }


    .section2
    {
      
      color: #000E97;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px;
    }

    .button2 button{
      /*text-align: center;
    position: absolute;
    top: 50%;*/
    left: 19%;
    padding: 6px 30px;
    }



.bottom-left {
  /*position: absolute;
  bottom: 60px;
    left: -204px;*/
    border: 1px solid #009fed;
    background-color: #009fed;
    padding: 2px 24px 0px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 175px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.top-left {
  /*position: absolute;
  top: 52px;
    left: -196px;*/
    border: 1px solid #009fed;
    background-color: #009fed;
    padding: 2px 24px 0px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 175px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.top-right {
  /*position: absolute;
  top: 52px;
    right: -196px;*/
    border: 1px solid #009fed;
    background-color: #009fed;
    padding: 2px 24px 0px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 175px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.bottom-right {
  /*position: absolute;
  bottom: 60px;
    right: -201px;*/
    border: 1px solid #009fed;
    background-color: #009fed;
    padding: 2px 24px 0px 28px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 175px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.section2-button{
  color: #fff;
}

.section2-button:hover{
  color: #fff;
}

#section3{
  /*background: url("../img/section3-sub1.png") top center;*/
  /*background-size: cover;*/
  /*position: relative;*/
  background-color: #0097de;
      padding-top: 0px;
    padding-bottom: 30px;
  /*height: 700px;*/
}


.section3-text{
  color: #fff;
  font-size: 25px;
  letter-spacing: 4px;
    line-height: 2.1;
    font-weight: 600;
    text-shadow: 0px 3px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}

.section3-span{
  color: #F6EC07;
}

.section3-text3{
    color: #fff;
    text-align: left;
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 2.1;
  /*padding-top: 20%;*/
}

.section3-text2{
  color: #fff;
  font-size: 25px;
  letter-spacing: 4px;
  /*padding-top: 20%;*/
}

.coach{
  text-align: center;
}


#section4{
  /*background: url("../img/section4.jpg") top center;*/
  background-size: cover;
  position: relative;
  /*height: 550px;*/
}


.section4-text{
  color: #000E97;
  font-size: 25px;
  letter-spacing: 4px;
    line-height: 2.1;
    font-weight: 600;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.18);
             /*padding-left: 33px;*/
                 text-align: right;
}

.section4-text4{
  color: #000;
  font-size: 20px;
  letter-spacing: 1px;
    line-height: 2.1;
    /*padding-left: 33px;*/
        text-align: center;
}
.section4-text span {
  color: #f47907;
}
.section4-text4 span {
  color: #f47907;
  font-weight: 600;
}


#section5{
  /*background: url("../img/section5.png") top center;*/
  background-size: cover;
  position: relative;
  /*height: 700px;*/
  background-color: #fff;
}


.section5-text{
  color: #000E97;
  font-size: 25px;
  letter-spacing: 2px;
    line-height: 2.1;
    font-weight: 600;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.18);
}
.section5-text span {
  color: #f47907;
}


#section6{
  /*background: url("../img/section6.png") top center;*/
  background-size: cover;
  position: relative;
  /*height: 700px;*/
  background-color: #1ca3f6;
}


.section6-text{
  color: #F6EC07;
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1.85;
  font-weight: 700;
  text-shadow: 0px 3px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
  margin-top: 25px;
}

.section5-text5{
  color: #000;
  font-size: 20px;
  letter-spacing: 1px;
    line-height: 2.1;
    /*padding-left: 33px;*/
}
.section5-text5 span {
  color: #f47907;
  font-weight: 600;
}
.section5-text5 span.lgt-blue {
  color: #000E97;
  font-weight: normal;
}
.section6-text6{
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
    line-height: 2.1;
    /*padding-left: 33px;*/
}

 #section8{
  /*background: url("../img/section8.png") top center;*/
  background-size: 100% 100%;
  position: relative;
  /*height: 600px;*/
  background-color: #1ca3f6;
}


.section8-text{
  color: #F6EC07;
  font-size: 28px;
  letter-spacing: 2px;
    line-height: 1.85;
    font-weight: 700;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.13), 0px 0px 0px rgba(0,0,0,0.1), 0px 0px 0px rgba(0,0,0,0.1);
             margin-top: -5px;
} 

.section8-text8{
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 2.1;
  text-align: justify;
  /*padding-left: 33px;*/
}

    /*.home-button2{}*/
.section8-img-text8{
  /*color: #fff;*/
  font-size: 24px;
  letter-spacing: 1px;
  /*  line-height: 2.1;*/
    font-weight: 600;
}

#section9{
  /*background: url("../img/section9.png") top center;*/
  background-size: 100% 100%;
  position: relative;
  height: 510px;
  padding-top: 6px;
  background-color: #a4ddf8;
}


.section9-text{
  color: #004aad;
  font-size: 28px;
  letter-spacing: 2px;
    line-height: 1.85;
    font-weight: 700;
    text-shadow: 0px 3px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
             margin-top: -5px;
} 

.section9-text9{
  color: #000;
  font-size: 17px;
  letter-spacing: 1px;
    line-height: 2.1;
    /*padding-left: 33px;*/
        padding-top: 15px;
}

.testimonial-img-size{
  /*width: 90px;
  height: 96px;*/
}

/*.testi-name1{
  display: inline;
}*/

/*.testi-name1{
  padding-left: 20px;
}
*/
.testi-name{
  color: #24b720;
  font-size: 15px;
  letter-spacing: 1px;
    line-height: 2.1; 
    /*padding-right: 37px;*/
    display: inline;
    font-weight: bold;
}

.testimonial_095_slide>h5>a:hover {
    border: 1px solid #aa914f
}

#testimonial_095 {
    overflow: hidden;
    min-height: 510px;
    position: relative;
    /*background: #141414*/
}

#testimonial_095>.carousel-inner {
    width: 50%;
    margin: auto;
    border: 3px solid #F47907;
    background: #ffffff;
}

#testimonial_095>.carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab
}

#testimonial_095>.carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing
}

#testimonial_095>.carousel-inner>.carousel-item {
    overflow: hidden
}

.testimonial_095_indicators>.carousel-indicators {
    left: 0;
    margin: 0;
    width: 100%;
    font-size: 0;
    height: 20px;
    bottom: 15px;
    /*padding: 0 5px;*/
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    text-align: center;
    white-space: nowrap;
    padding-top: 8px;
}

.testimonial_095_indicators>.carousel-indicators li {
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    text-indent: 0;
    margin: 2px 3px;
    cursor: pointer;
    display: inline-block;
    background: #fff;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_indicators>.carousel-indicators .active {
    padding: 0;
    width: 10px;
    height: 10px;
    border: none;
    margin: 2px 3px;
    background: #1ed600;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_indicators>.carousel-indicators::-webkit-scrollbar {
    height: 3px
}

.testimonial_095_indicators>.carousel-indicators::-webkit-scrollbar-thumb {
    background: #ffffff;
    -webkit-border-radius: 0;
    border-radius: 0
}

.testimonial_095_control_button .carousel-control-next,
.testimonial_095_control_button .carousel-control-prev {
    top: 205px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: 0 0;
    border: 2px solid #24b720;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .6s cubic-bezier(.3, 1, 0, 1);
    transition: all .6s cubic-bezier(.3, 1, 0, 1)
}

.testimonial_095_control_button .carousel-control-prev {
    left: 7%;
    right: auto
}

.testimonial_095_control_button .carousel-control-next {
    right: 7%;
    left: auto
}

.testimonial_095_control_button .carousel-control-next:hover,
.testimonial_095_control_button .carousel-control-prev:hover {
    color: #ffffff;
    background: #009fed;
    border: 2px solid #ffffff
}

.testimonial_095_header>h5,
.testimonial_095_slide>h5>a,
.testimonial_095_slide>p {
    text-shadow: none;
    font-family: Raleway, sans-serif;
    -webkit-font-smoothing: antialiased
}

.testimonial_095_header {
    top: 0;
    left: 0;
    bottom: 0;
    width: 550px;
    display: block;
    margin: 30px auto;
    text-align: center;
    position: relative
}

.testimonial_095_header>h5 {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase
}

.testimonial_095_header>h5>span {
    color: #1ed600;
    margin: 0 10px;
    position: relative
}

.testimonial_095_header>h5>span:after {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 1px;
    content: "";
    width: 100%;
    margin: auto;
    position: absolute;
    background: #1ed600
}

.testimonial_095_slide,
.testimonial_095_slide>a {
    right: 0;
    margin: auto;
    text-align: center;
    position: relative;
    top: 0px;
    left: 0
}

.testimonial_095_slide {
    bottom: 0;
    width: 100%;
    padding: 25px;
    /*border: 5px ridge #f47b3b;
    background: #ffffff;*/


}

.testimonial_095_slide>a {
    width: 50px;
    height: 50px;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    border: 3px solid #f2f2f2;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.testimonial_095_slide>a:after {
    top: 0;
    left: 0;
    padding: 0;
    opacity: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .1)
}

.testimonial_095_slide>a:hover:after {
    -webkit-animation: psBoxShadowEffect_2 2s ease-out;
    animation: psBoxShadowEffect_2 2s ease-out
}

.testimonial_095_slide>p {
   /* color: #f2f2f2;
    font-size: 14px;*/
    margin: 20px 0 20px;
    color:#000E97;
    font-weight: bold;
}

.testimonial_095_slide>p>a {
    color: #1ed600;
    padding: 2px 5px;
    text-decoration: none;
    -webkit-transition: all .3s cubic-bezier(.39, .575, .565, 1);
    transition: all .3s cubic-bezier(.39, .575, .565, 1)
}

.testimonial_095_slide>p>a:hover {
    color: #fff;
    background: #aa914f
}

.testimonial_095_slide>h5>a {
    padding: 3px;
    color: #1ed600;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent;
    -webkit-transition: border .5s cubic-bezier(.39, .575, .565, 1);
    transition: border .5s cubic-bezier(.39, .575, .565, 1)
}

.testimonial_095_slide>h5>a:hover {
    border: 1px solid #aa914f
}

@media only screen and (max-width:480px) {

    .testimonial_095_control_button .carousel-control-next,
    .testimonial_095_control_button .carousel-control-prev {
        display: none
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_header {
        width: 95%
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_header>h5 {
        font-size: 20px
    }
}

@media only screen and (max-width:480px) {
    .testimonial_095_slide {
        width: 98%;
        padding: 5px
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_control_button .carousel-control-prev {
        left: 2%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_control_button .carousel-control-next {
        right: 2%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_header {
        width: 95%
    }
}

@media (min-width:481px) and (max-width:767px) {
    .testimonial_095_slide {
        width: 98%;
        padding: 5px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .testimonial_095_control_button .carousel-control-prev {
        left: 5%
    }
}

@media (min-width:768px) and (max-width:991px) {
    .testimonial_095_control_button .carousel-control-next {
        right: 5%
    }
}

@keyframes psBoxShadowEffect_2 {}

.ps_ease .carousel-item {
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.ps_easeInOut .carousel-item {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

.ps_speedy .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    transition-timing-function: cubic-bezier(0, 1, 0, 1)
}

.ps_slowSpeedy .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.3, 1, 0, 1);
    transition-timing-function: cubic-bezier(.3, 1, 0, 1)
}

.ps_easeOutInCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.22, .81, .01, .99);
    transition-timing-function: cubic-bezier(.22, .81, .01, .99)
}

.ps_swing .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
    transition-timing-function: cubic-bezier(.02, .01, .47, 1)
}

.ps_easeOutCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ps_easeInOutCubic .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition-timing-function: cubic-bezier(.645, .045, .355, 1)
}

.ps_easeOutCirc .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
    transition-timing-function: cubic-bezier(.075, .82, .165, 1)
}

.ps_easeOutExpo .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ps_easeInQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.55, .085, .68, .53);
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

.ps_easeOutQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

.ps_easeInOutQuad .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.455, .03, .515, .955);
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

.ps_easeOutQuart .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.ps_easeInOutQuart .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.77, 0, .175, 1);
    transition-timing-function: cubic-bezier(.77, 0, .175, 1)
}

.ps_easeOutQuint .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    transition-timing-function: cubic-bezier(.23, 1, .32, 1)
}

.ps_easeInSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.47, 0, .745, .715);
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

.ps_easeOutSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.39, .575, .565, 1);
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

.ps_easeInOutSine .carousel-item {
    -webkit-transition-timing-function: cubic-bezier(.445, .05, .55, .95);
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
} 

/*.search{
  background-image: url(../img/search.png);
}*/


@media (max-width: 556px) {
  .section9-text {
    font-size: 13px;
  }
}


@media (max-width: 556px) {
  .section9-text9 {
    font-size: 16px;
    /*letter-spacing: 1px; 
     line-height: 1; */
  }
}


@media (max-width: 556px) {
  .testi-name {
    padding-right:1px;
  }
}


@media (max-width: 556px) {
  .testimonial-img-size {
    width: 60px;
    height: 60px;
  }
}
.modern-text{
color: #fff;
    font-size: 27px;
    /*font-weight: bold;*/
    padding-top: 35px;
        letter-spacing: 2px;
}

#story-section{
  background: #004aad;
  padding-top: 4px;
}

.modern-text1{
font-size: 36px;
font-weight: bold;
letter-spacing: 2.5px;
font-family: 'Roboto', sans-serif;
padding-top: 0;
color: #f6ec07;
line-height: 62px;
}


    .modern-div1{
      padding-top: 40px;
    }

    /*.modern-text3 {
    color: #000;
    font-size: 27px;
    font-weight: bold;
    padding-top: 35px;
}*/

.style-bgg .col-md-4 .card-body:hover img {
    background-color: #24b720;
}

.style-bgg .col-md-4 .card-body:hover h4 {
    color: #009fed;
}

.style-bg4 .col-md-3 .card-body:hover img {
    background-color: #009fed;
}

.style-bg4 .col-md-3 .card-body:hover h4 {
    color: #009fed;
}

.comments {
   
    width: 100%;
    padding: 0 10px 10px 20px;
    border-left: 3px solid #CCC;
    margin: 20px auto;
    /*font-family: Tahoma, Arial;*/


}

.history1 {
    background-color: #fff;
    font-size: 17px;
    line-height: 1.7;
    padding: 10px;
    border: 2px solid #CCC;
    position: relative;
    color: #000;
}

.history1:before {
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: -34px;
    border: 3px solid #ccc;
    background-color: #009fed;
}


.history1:after {
    content: "";
    position: absolute;
    width: 0px;
    top: 0;
    height: 0;
    left: -10px;
    border-width: 10px 10px 10px 0px;
    border-style: solid;
    border-color: transparent #009fed;
}

.history-text{
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.history-year{
      color: white;
    font-size: 19px;
    border: 1px solid #f47b3b;
    /* border-radius: 50%; */
    background: #f47b3b;
    /* padding: 10px; */
    padding-bottom: 7px;
    padding-top: 7px;
    padding-left: 12px;
    padding-right: 12px;
}

.modern-div2 {
    padding-top: 70px;
}

.story3{
      box-shadow: 0 1px 5px 2px rgb(240, 241, 241), 0 1px 2px rgb(240, 241, 241);
      background: #f0f1f1;
}


/*.number-border{
  border: 1px solid #c1c2c2;
    padding: 10px;
}*/

.modern-text3{
color: #fff;
    font-size: 27px;
    /*font-weight: bold;*/
    padding-top: 32px;
        letter-spacing: 2px;
}

.vision-mission{
  color: #24b720;
    font-size: 27px;
    font-weight: bold;
    /*padding-top: 35px;*/
    letter-spacing: 1px;
    line-height: 1.5;
}

/*#career-section{
  background-image: url(../img/career.png);
  background-size: cover;

  height: 500px;
}*/

.carrer-test-heading{
  color: #000E97;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

.carrer-test-heading2{
  color: #17529e;
    font-size: 21px;
    font-weight: bold;
    /*text-align: left;*/
    letter-spacing: 2px;
}

.carrer-test-heading1{
  color: #009fed;
    font-size: 35px;
    /*font-weight: bold;*/
    /*text-align: left;*/
         border-bottom: 6px dotted #009fed;
    /* padding-bottom: 20px; */
    padding: 10px;
    letter-spacing: 3px;
}

.career-span{
  color: #f47b3b;
    /*font-size: 35px;
    font-weight: bold;*/
       
}

.career-text-para{
      color: #17529ec9;
    text-align: center;
        font-size: 18px;
    letter-spacing: 2px;
    line-height: 30px;
}


.career-border:hover{
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.career-border{
  /*border: 1px solid red;*/
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
  padding-left: 22px;
}

.value-img{
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
}

.value-img:hover{
      box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22)
}


.blog-img{
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
}

.blog-img:hover{
      box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}




.leadership-tagline{
  font-size: 27px;
  color: #24b720;
    font-weight: 600;
    letter-spacing: 2px;
}

.leadership-icons i{
      color: #004aad;
    font-weight: 600;
    font-size: 18px;
}


.leadership-icons{
      color: #000E97;
    font-weight: 600;
    font-size: 17px;
}

.modern-name{
      color: #ffffff;
    font-size: 19px;
    font-weight: 600;
        border-bottom: 2px solid #fff;
    /* padding-top: 0px; */
    padding-bottom: 5px;
        letter-spacing: 2px;
}

.modern-name1{
      color: #f6ec07;
    font-size: 16px;
    font-weight: 600;
        letter-spacing: 2px;
      
}

.leader-name{
  color: #004aad;
  font-weight: 600;
  font-size: 18px;
      line-height: 25.2px;
}


.number-text{
      color: #f6ec07;
    font-size: 22px;
    font-weight: 600;
        /*border-bottom: 2px solid #fff;*/
    /* padding-top: 0px; */
    padding-bottom: 5px;
        letter-spacing: 2px;
        padding-top: 10px;
}
/*.number-border:hover{
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0);
}*/

.story-img-section1:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.story-img-section1{
  box-shadow: 0 1px 5px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border: 5px solid #24b720;
}

.vsimg:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.vsimg {
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
}

.vs-section{
  padding-top: 20px;
}


.leadership-img:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.padding-story{
    padding-left: 50px;
    padding-right: 50px;
}

.vs-span{
  color: #24b720;
  padding-top: 5px;
}

.story-padding{
  margin-top: 21px;
}

.why-img{
  border: 3px solid #f47b3b;
}

.demo {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
}

.demo img {vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #f47b3b;}


.demo img:hover {vertical-align: middle;
     box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
   }


.demo .content1 {
  position: absolute;
  bottom: 140px;
  /*background: rgb(0, 0, 0); 
  background: rgba(0, 0, 0, 0.5); */
  color: #f1f1f1;
  /*width: 100%;*/
  padding: 20px;
}

.why-choose-heading{
  font-size: 17px;
  letter-spacing: 2px;
  color: #fff;
}


.demo .content2 {
  position: absolute;
  bottom: 67px;
  /*background: rgb(0, 0, 0); 
  background: rgba(0, 0, 0, 0.5); */
  color: #f1f1f1;
  /*width: 100%;*/
  padding: 20px;
  font-size: 37px;
  letter-spacing: 2px;
}


.demo .content3 {
  position: absolute;
  bottom: 10px;
  /*background: rgb(0, 0, 0); 
  background: rgba(0, 0, 0, 0.5); */
  color: #f1f1f1;
  /*width: 100%;*/
  padding: 20px;
  font-size: 25px;
  letter-spacing: 2px;
}

.why-span1{
  color: #24b720;
}

.why-span2{
  color: #f47b3b;
}


.why-choose-heading i{

      color: #04d004;
    font-size: 30px;
}

#number-section{
  background: #004aad;
}

.number-para{
  font-size: 17.4px;
  color: #fff;
      padding-left: 44px;
    padding-right: 44px;
        /*font-weight: 600;*/
}

.number-para1{
  font-size: 17.4px;
  color: #fff;
      padding-left: 48px;
    padding-right: 44px;
        /*font-weight: 600;*/
}

.career-first-heading{
  
      font-size: 50px;
    letter-spacing: 2px;
    border-bottom: 5px solid #24b720;
    font-weight: 700;
    text-align: center;
    color: #17529e;
}

.career-happy{
      color: #17529e;
    font-size: 45px;
    letter-spacing: 22px;
    font-weight: 700;
}
.career-team{
    text-shadow: 1px 1px 2px #17529e, 0 0 1em #17529e36, 0 0 0.2em #17529e3b;
    color: white;
    font-size: 45px;
    letter-spacing: 28px;
    font-weight: 700;
        border-bottom: 6px solid #009fed;
            margin-top: -28px;

    }






.section-why-choose{
  background-image: url(../img/why-choose-mega.png);
      height: 585px;
      /*width: 100%;*/
    background-size: cover;
       /* margin-left: 57px;
    margin-right: 58px;*/
    /* background-repeat: no-repeat; */
    text-align: center;
    margin-top: 30px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
}

.section-why-choose:hover{
  
           box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

@media (max-width: 992px){
.section-why-choose{
  background-image: url(../img/why-choose-mega.png);
      height: auto;
      /*width: 100%;*/
    background-size: cover;
        /*margin-left: 10px;
    margin-right: 10px;*/
    /* background-repeat: no-repeat; */
    text-align: center;
}
}


@media (max-width: 768px){
  .career-border{
padding-left: 0px;
  }
}


@media (max-width: 768px){
.number-para {
    font-size: 22px;
    color: #fff;
     padding-left: 0px; 
     padding-right: 0px; 
    font-weight: 600;
}
}

@media (max-width: 768px){
.number-para1 {
    font-size: 22px;
    color: #fff;
     padding-left: 0px; 
     padding-right: 0px; 
    font-weight: 600;
}
}






.row-specing{
  padding-top: 348px;
}

 .why-para1{
   font-size: 38px;
     letter-spacing: 3px;
    color: #fff;
  padding: 13px;
}

.why-para2{
   font-size: 26px;
     letter-spacing: 2px;
    color: #fff;
}

.photo-border{
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #f47b3b;
}

.founder{
  color: #24b720;
}

.our-number-para{
  font-size: 17.4px;
  color: #000;
}

.counter-headings{
  color: #000E97;
}


.blog-desc{
  color: #000E97;
  font-size: 20px;
  font-weight: 600;
}


.albery-container, .pagination-container {
  position: relative;
  /* center it */

  /*margin-left: auto;
  margin-right: auto;*/
  width: 400px;
  overflow: hidden;
}

.albery-wrapper {
  position: relative;
  height: auto;
  width: 1600px;
}
.albery-item {
  position: relative;
  float: left;
  width: 400px;
  /*cursor: zoom-in;*/
}
.albery-item img {
  width: 100%;
}

.move-left, .move-right {
  position: absolute;
  width: 18%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.move-left a, .move-right a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: all .5s;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  width: 0;
  height: 0;
}
.move-left a:hover, .move-right a:hover {
  color: rgba(255,255,255,0.9);
}
.move-left a {
  border-right: 34px solid rgba(255,255,255,0.5);
}
.move-right a {
  border-left: 34px solid rgba(255,255,255,0.5);
}

.move-left {
  left: 0;
}

.move-right {
  right: 0;
}

.pagination-wrapper {
  position:relative;
  height: auto;
  width: 1600px;
}
.pagination-item {
  position: relative;
  float: left;
  width: 144px;
  margin-right: 13px;
  cursor: pointer;
}
.pagination-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-img{
  width: 100%;
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border: 3px solid #24b720;
    height: 500px;
}

.gallery-small-img{
  width: 100%;
}

.vs-section1 {
  position: relative;
  text-align: center;
  color: white;
}


.centered {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  color: #fff;
  letter-spacing: 3px;
    /*text-shadow: 0 1px #808d93, -1px 0 #cdd2d5, -1px 2px #f47b3b, -2px 1px #cdd2d5, -2px 3px #f47b3b, -3px 2px #cdd2d5, -3px 4px #808d93, -4px 3px #cdd2d5, -4px 5px #808d93, -5px 4px #cdd2d5, -5px 6px #808d93, -6px 5px #cdd2d5, -6px 7px #808d93, -7px 6px #cdd2d5, -7px 8px #ff9541, -8px 7px #cdd2d5;*/

}

.centered1 {
          position: absolute;
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 44px;
    color: #000E97;
    letter-spacing: 3px;
    /*text-shadow: 0 1px #f47b3b, -1px 0 #cdd2d5, -1px 2px #f47b3b, -2px 1px #cdd2d5, -2px 3px #f47b3b, -3px 2px #cdd2d5, -3px 4px #808d93, -4px 3px #cdd2d5, -4px 5px #808d93, -5px 4px #cdd2d5, -5px 6px #808d93, -6px 5px #cdd2d5, -6px 7px #808d93, -7px 6px #cdd2d5, -7px 8px #f47b3b, -8px 7px #cdd2d5;*/
}


/*.flip-card {
  background-color: transparent;

  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 410px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
 
  color: black;
}

.flip-card-back {
  background-color: #f6ec07;
  color: white;
  transform: rotateY(180deg);
  border-radius: 12px;
}*/

.footer-align{
  padding-left: 58px;
}

.footer-align2{
  padding-left: 130px;
}

.footer-align3{
  padding-left: 116px;
}


/*.footer-align4{
  padding-left: 40px;
}*/

@media (max-width: 992px){
.footer-align  {
    padding-left: 15px;
}
}


@media (max-width: 992px){
.footer-align2  {
    padding-left: 15px;
}
}


@media (max-width: 992px){
.footer-align3  {
    padding-left: 15px;
}
}

.history-imgg1 {
  position: relative;
  text-align: center;
  color: #17529e;
}

.top-left-history {
  position: absolute;
  top: 19px;
    left: 16px;
    font-size: 9px;
    font-weight: 600;
}


.centered-history {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
      font-size: 40px;
    /* font-weight: 600; */
    letter-spacing: 19px;
}


.history-div1{
  background-color:#059bef;
  height: 280px;
}
.history-div2{
  background-color: #2159ab;
}
.value-img-bg{
  background-color: #fff;
}


.malganga{
      color: #f6ec07;
    font-size: 14px;
    letter-spacing: 6px;
        padding-bottom: 32px;
        padding-top: 20px;
        line-height: 3;
        text-align: center;
        font-weight: 600;
}


.save-time{
      color: white;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.talk{
      color: white;
        font-size: 16px;
    letter-spacing: 1px;
    padding-top: 30px;
    text-align: center;
}

.experience{
  color: #f6ec07;
      font-size: 23px;
    font-weight: 600;
    letter-spacing: 7px;
    padding-top: 20px;
    line-height: 2;
    text-align: center;

}

.increase{
  color: #ffffffe3;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
}

.malgangas-link a{
  color: #f6ec07;
      letter-spacing: 2px;
}

.malgangas-link{
  padding-top: 20px;
  text-align: center;
}


.col-center {
  margin: 0 auto;
  float: none !important;
}
.carousel {
  /*padding: 0 70px;*/
}
.carousel .carousel-item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 360px;  
}
.carousel .carousel-item .img-box {
  width: 135px;
  height: 135px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.carousel .testimonial {
  padding: 30px 0 10px;
}
.carousel .overview { 
  font-style: italic;
}
.carousel .overview b {
  text-transform: uppercase;
  color: #7AA641;
}
.carousel-control-prev, .carousel-control-next {
      width: 43px;
    height: 48px;
    margin-top: -20px;
    top: 50%;
    /*background: #f47b3b;*/
}
.carousel-control-prev i, .carousel-control-next i {
  font-size: 68px;
  line-height: 42px;
  position: absolute;
  display: inline-block;
  color: rgb(36, 183, 32);
  text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel-indicators {
  bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
  width: 12px;
  height: 12px;
  margin: 1px 3px;
  border-radius: 50%;
  border: none;
}
.carousel-indicators li { 
  background: #17529e;
  border-color: transparent;
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {  
  background: #000;   
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}


.services-img-border{
  border: 9px solid #fff;
  /*border-radius: 10px;*/
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}


.service-title{
  padding: 10px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.title-name-p{
  padding-bottom: 4px;
  font-size: 17px;
    letter-spacing: 1px;
}

.service-subtitle2{
      color: #17529e;
    font-size: 22px;
    padding-top: 50px;
    letter-spacing: 2px;
    /*padding-bottom: 11px;*/
    font-weight: 600;

}

.flip-card-back .service-subtitle{
      color: #000;
    font-size: 19px;
    padding: 32px;
    letter-spacing: 1px;
    line-height: 35px;
}
.servics-section-row{
  margin-bottom: 230px;
}

#team .card {
    border: none;
    background: #f6ec07;
    border-radius: 20px;

}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    /*background: white;*/
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
   /* -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);*/
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 430px;
}

.backside .card a {
    font-size: 18px;
    color: #007b5e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
}
@media (max-width: 992px){
#section4  {
    height: auto;
}
}

@media (max-width: 992px){
.servics-section-row {
    margin-bottom: 70px;
}
}


.centered-search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
}


.search-home-new {
  position: relative;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  font-family: 'Roboto';
    letter-spacing: 2px;
    /*line-height: 2.1;*/padding-top: 3px;
   
   
}

@media (max-width: 768px){
.search-home-new{
  font-size: 17px;
  position: relative;
  letter-spacing: 2px;
}
}

/*@media (max-width: 992px){
.flip-card-inner{
  height: 70%;
}
}*/

 .img-bg-services{
  background-color: #fff;
  padding: 8px;
  border-radius: 20px;
 }

 .img-border-service{
  border: 2px solid #fff;
 }


 .service-section1
{
  background-color: #a4ddf8;

}


.service-title3{
     color: #17529e;
    font-size: 22px;
    letter-spacing: 2px;
    /* padding-bottom: 11px; */
    font-weight: 600;
}
.service-text3{
        color: #000;
    font-size: 18px;
     padding: 23px; 
    letter-spacing: 1px;
    line-height: 35px;
    padding-top: 8px;

    }

    .service-title-p{
          padding-bottom: 4px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #000;
    }

@media only screen and (max-width: 992px) {
    .frontside .card, .backside .card
   {
    min-height: auto;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .service-text3 {
    font-size: 17px;
    line-height: 40px;
  }
}

/*@media only screen and (max-width: 1200px) {
  
  .service-text3 {
    font-size: 17px;
    line-height: 23px;
  }
}*/

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .sucsess-align {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .section9-text9  {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .testi-name  {
    font-size: 12px;
  }
}


@media only screen and (max-width: 1200px) {
  .nav-menu a {
    font-size: 11px;
  }
}


@media only screen and (max-width: 1200px) {
  .section8-text8 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  .testi-name  {
    font-size: 10px;
  }
}


@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  .section9-text9  {
    font-size: 14px;
  }
}



@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  .frontside .card {
        min-height: auto;
  }
}


@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
  .backside .card {
        min-height: 420px;
  }
}

@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
 #hero h2 {
        font-size: 17px;
  }
}



@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
 .card-1{
        height: auto;
  }
}



@media only screen and (max-width: 1200px) {
  /* For mobile phones: */
 .card-2{
        height: auto;
  }
}


/*.testi-border-home{
  border: 5px ridge #f47b3b;
  background: #8ee0fa;
}*/


@media only screen and (max-width: 600px) {
  /* For mobile phones: */
  .why-choose-heading {
    color: #f47b3b;
  }
}


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .modern-name1 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .vs-section1 {
   margin-bottom: 15px;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .carousel-inner img {
   height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .carousel-inner img {
   height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .carousel .carousel-item {
   min-height: 100%;
  }
}

@media only screen and (max-width: 992px) {
  /* For mobile phones: */
  .timeline > li > .timeline-panel1 {
   width:  100%;
   left: -9px;
  }
}

@media only screen and (max-width: 992px) {
  /* For mobile phones: */
  .timeline > li > .timeline-panel2 {
   width:  100%;
  margin-left: 25px;
  }
}

@media only screen and (max-width: 992px) {
  /* For mobile phones: */
  .timeline > li > .timeline-badge {
       color: #f47907;
    font-weight: 700;
    width: 55px;
    height: 55px;
    border: 7px solid #004aad;
    line-height: 43px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: -36px;
    left: 49.5%;
    margin-left: -32px;
    background-color: #ffff;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 0 14px 28px rgba(23, 20, 20, 0.25), 0 10px 10px rgba(0, 0, 0, 0.39);
  }
}






/*@media only screen and (max-width: 600px) {
  .hist-imgess{
       margin-left: 35px;
  }
}*/


@media only screen and (min-width: 600px) {
  .hist-imgess{
       margin-left: 17px;
  }
  }

@media only screen and (max-width: 600px) {
  .centered-history{
      font-size: 16px;
      left: 78%;
  }
  }

  @media only screen and (max-width: 768px) {
  .top-left{
         left: -165px;
  }
  }

  @media only screen and (max-width: 768px) {
  .top-right{
            right: -169px;
  }
  }


  @media only screen and (max-width: 768px) {
  .bottom-left{
                left: -171px
  }
  }


@media only screen and (max-width: 768px) {
  .bottom-right{
                    right: -168px;
  }
  }


/*@media only screen and (max-width: 600px) {
  .hist-imgess1 {
    background: red;
  }
}
*/
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .top-left-history {
       left: 45px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .hist-imgess {
    margin-left: 34px;
  }
} 
    

/*@media only screen and (min-width: 992px) {
  .hist-imgess {background: orange;}
} 


@media only screen and (min-width: 1200px) {
  .hist-imgess {background: pink;}
}*/

/*.section4-border{
      border: 3px solid #f57c3b;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}*/

/*.back2{
  padding: 10px;
}
.bg-services1{
  background-color: red;
}


.body12{
  padding: 10px;
}*/


@media only screen and (max-width: 600px){
  
  .top-left{
    display: none;
  }
}


@media only screen and (max-width: 600px){
  
  .top-right{
    display: none;
  }
}


@media only screen and (max-width: 600px){
  
  .bottom-left{
    display: none;
  }
}

@media only screen and (max-width: 600px){
  
  .bottom-right{
    display: none;
  }
}


@media only screen and (max-width: 768px){
.service-text3-2 {
    font-size: 17px;
    line-height: 30px;
}
}
@media only screen and (max-width: 600px){
  
  .row-specing{
    padding-top: 1px;
  }
}

@media only screen and (max-width: 600px){
  
  .why-para1{
    color: #f47b3a;
    font-size: 19px;
  }
}

@media only screen and (max-width: 600px){
  
  .why-para2{
   
    font-size: 22px;
  }
}

.text-dark {
    color: #000 !important;
}

.header {
    background: linear-gradient(to top right, #33ccff 0%, #0000cc 100%);
    background: linear-gradient(to top right, #2b2f54 0%, #2b2f54 100%);
}
.marqueeimg {
    width: 20px;
    height: 15px;
}
.marqueespan {
    color: white;
    font-weight: bold;
    margin-left: 3px;
    font-size: 12px;
}
.chart-img {
    margin: 0px 0 0 0;
    text-align: center;
}
.features1.bcounter {
  padding: 0;
  background: #004aad;
}
.features1.bcounter .foot-bgclr {
    margin-top: 0;
    border-bottom: 0 solid #f0f1f1;
    background: #24b720;
    padding: 20px 0 0 0;
}

.success-srory-part {
  background-color: #004aad;
  padding: 50px 30px 10px 30px;
  text-align: center;
  margin-bottom: 40px;
}
.success-srory-icon {}
.success-srory-icon h4 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 8.5px;
  font-family: 'Roboto', sans-serif;
  padding-top: 59px;
  color: #f6ec07;
}
.success-srory-icon img {
  width: 200px;
}
.success-srory-image h4 {
  color: #fff;
    font-size: 25px;
    /* font-weight: bold; */
    padding-top: 15px;
    letter-spacing: 2px;
    font-weight: 300;
}
.success-srory-image img {
  border:10px solid #ffffff;
}

.webinar-part {
  padding-top: 100px !important;
  padding-bottom: 40px;
}
.webinar-part .webinar-txt {
  text-align: center;
}
.webinar-part .webinar-txt p {
      color: #fff;
    font-size: 18px;
    /* font-weight: bold; */
    padding-top: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 36px;
}
.webinar-part .webinar-txt button.btn-2 {
  padding: 10px 30px;
    margin-top: 20px;
}

.webi-video-box {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding: 20px;
  background: #f0f1f1;
  margin: 0 0 30px 0;
min-height: 100px;
}
.webi-video-box span {
  text-align: center;
}
.webi-video-box p {}

.price-sec {
  padding-top: 0;
}

.price-text {
  padding-top: 0;
}
.price-text h2 {
  color: #12c2f9;
  font-size: 32px;
  font-weight: bold;
  /* padding-top: 35px; */
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
}
.price-text h2 span {
  color: #12c2f9;
}
.price-text h2 span b {
  color: #24b720;
  font-weight: 600;
}
.price-text h3 {
  color: #000E97;
  letter-spacing: 3px;
  font-family: 'Rancho', cursive;
  font-size: 44px;
text-align: center;
line-height: 54px;
margin: 0px 0 20px 0;
}
.price-text h4 {
  color: #004AAD;
  font-size: 22px;
  font-weight: bold;
  /* padding-top: 35px; */
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 30px ​0 10px ;
}


.webinar-text {
  padding-top: 0;
}
.webinar-text h2 {
  color: #24b720;
  font-size: 27px;
  font-weight: bold;
  /* padding-top: 35px; */
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin: 20px 0 20px 0;
}
.webinar-text h5 {
  color: #000E97;
  font-size: 27px;
  font-weight: bold;
  /* padding-top: 35px; */
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin: 20px 0 20px 0;
}
.webinar-text h3 {
  color: #009fed;
    font-size: 35px;
    letter-spacing: 3px;
    text-align: center;
}
.webinar-text h4 {
  color: #24b720;
  font-size: 22px;
  font-weight: bold;
  /* padding-top: 35px; */
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 30px ​0 10px ;
  text-align: left;
}

.webinar-box {
  background: #f0f1f1;
  padding: 20px;
  margin: 0 0 25px 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  min-height: 160px;
}
.webinar-box:hover {
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.webinar-box p b {
  color: #000E97;
}

.gub-sec {
  background: #103e79;
  padding: 40px 0;
  margin: 30px 0;
}
.gub-sec h2 {
  text-align: center;
  margin-top: 0;
}
.gub-sec ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gub-sec ul li {
  margin: 10px 0 30px 0;
  padding: 0;
  display: inline-block;
  width: 31%;
  text-align: center;
  color: #fff;
}
.gub-sec ul li span {
  background: #12c2f9;
  border-radius: 50%;
  display: inline-block;
  padding: 10px;
  margin: 0 0 10px 0;
}
.gub-sec ul li span:hover {
  background: #24b720;
}  
.gub-sec ul li span img {}
.gub-sec ul li p {
  font-weight: bold;
}
.gub-sec ul li:hover p {
  font-weight: bold;
  color: #009fed;
}

.webbtn {
  text-align: center;
}
a.webinar-btn {
  background: #12c2f9;
  border: 1px solid #12c2f9;
  border-radius: 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  margin: 0;
  padding: 6px 8px;
  letter-spacing: 2px;
  text-decoration: none;
}
a.webinar-btn:hover {
  background-color: #24b720;
border: 1px solid #24b720;
}

.price-bnr-part {
  /*background: url(../img/pricing-bnr-bg.png) left center;*/
  /*background-size: 100% 100%;*/
  background: #004aad;
  margin: 0 0 30px 0;
}
.price-bnr-part .pricing-banner-text {
  margin-top: 0px;
}
.price-bnr-part .pricing-banner-text h2 {
      font-size: 34px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    padding-top: 0px;
    color: #fff;
    letter-spacing: 2.1px;
}
.price-bnr-part .pricing-banner-text h3 {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  padding-top: 0;
  color: #f6ec07;
}
.price-bnr-part .pricing-banner-text p {
  color: #f6ec07;
font-size: 26px;
font-weight: bold;
padding-top: 0px;
letter-spacing: 2px;
font-weight: 400;
margin-bottom: 30px;
}

.podcast-bnr-part {
  /*background: url(../img/pricing-bnr-bg.png) left center;*/
  /*background-size: 100% 100%;*/
  background: #004aad;
  margin: 0 0 30px 0;
}
.podcast-bnr-part .podcast-img {}
.podcast-bnr-part .podcast-img img.bord-img {
  width: 140px;
  padding: 0;
}
.podcast-bnr-part .podcast-banner-text {
  margin-top: 0px;
}
.podcast-bnr-part .podcast-banner-text h2 {
      font-size: 25px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
    color: #fff;
    letter-spacing: 1.1px;
}
.podcast-bnr-part .podcast-banner-text h3 {
  font-size: 40px;
font-weight: bold;
font-family: 'Roboto', sans-serif;
padding-top: 10px;
color: #f6ec07;
margin-bottom: 20px;
letter-spacing: 2.1px;
}
.podcast-bnr-part p {
  color: #fff;
font-size: 22px;
padding-top: 10px;
letter-spacing: 2px;
font-weight: 400;
margin-bottom: 10px;
line-height: 42px;
}



.rv-bnr-part {
  /*background: url(../img/pricing-bnr-bg.png) left center;*/
  /*background-size: 100% 100%;*/
  background: #004aad;
  margin: 0 0 30px 0;
}
.rv-bnr-part .rv-img {}
.rv-bnr-part .rv-img img.bord-img {
  width: 140px;
  padding: 0;
}
.rv-bnr-part .rv-banner-text {
  margin-top: 0px;
}
.rv-bnr-part .rv-banner-text h2 {
      font-size: 34px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
    color: #fff;
    letter-spacing: 2.1px;
}
.rv-bnr-part .rv-banner-text h3 {
  font-size: 40px;
font-weight: bold;
font-family: 'Roboto', sans-serif;
padding-top: 10px;
color: #f6ec07;
margin-bottom: 10px;
}
.rv-bnr-part p {
  color: #fff;
font-size: 34px;
padding-top: 10px;
letter-spacing: 2px;
font-weight: 400;
margin-bottom: 30px;
}

.rv-chart-part {}
.rv-chart-part .review-img-chart {
      margin: 0 0 30px 0;
}
.rv-chart-part .review-img-chart img.bord-img {
padding: 0;
width: 60%;
text-align: right;
float: right;
margin: 0 0 30px 0;
}
.review-img-txt {
  margin-top: 78px;
}
.rv-chart-part .review-imgsec {
  margin: 0 0 30px 0;
}
.rv-chart-part .review-imgsec img.bord-img {
  padding: 0;
  width: 100%;
}

.Reviewus-btn {
      margin: 20px 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.Reviewus-btn a {
  color: #ffff;
padding: 12px 22px;
background-color: #12c2f9;
border-radius: 5px;
letter-spacing: 1px;
}
.Reviewus-btn a:hover {
  color: #ffff;
background-color: #24b720;
}

.Reviewus-txt {
  text-align: center;
  margin: 15px 0 0 0;
}

.reviewchart-content {}
.reviewchart-content h2 {
  color: #20266b;
font-size: 22px;
font-weight: bold;
padding-top: 0px;
letter-spacing: 1px;
line-height: 1.5;
}
.reviewchart-content p {}

.price-bnr-part .price-bnr-img {}
.price-bnr-part .price-bnr-img1 {
  margin-top: 10px;
}
.price-bnr-part .price-bnr-img img {}

.pricing-part h2 {
  text-align: left;
}
.pricing-part h2 span {
  color: #009fed;
}
.pricing-part p {
  margin-bottom: 15px;
  font-size: 17px;
}
.pricing-part p b {
  color: #000E97;
}
.pricing-part p a {
  color: #ff7f00;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.pricing-part p span {
  color: #009fed;
  text-transform: uppercase;
  font-weight: bold;
}
.pricing-part a.btn {
  background: #ff7f00;
  border: 1px solid #ff7f00;
  border-radius: 5px;
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  margin: 20px 0 0 0;
  padding: 6px 8px;
}
.pricing-part a.btn:hover {
  background: #12c2f9;
  border: 1px solid #12c2f9;
}

.podcasting-text {
  margin: 20px 0 0 0;
}
.podcasting-text h2 {
  color: #24b720;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin: 0px 0 10px 0;
}
.podcasting-text p {
  text-align: center;
  margin-bottom: 10px;
}

.subscribe-follow-sec {
            background: #004aad;
            padding: 20px 0;
            margin: 30px 0;
        }

        .subscribe-follow-sec h2 {
            color: #fff;
            font-size: 27px;
            letter-spacing: 1px;
            line-height: 1.5;
            text-align: center;
            margin: 0px 0 20px 0;
        }

        .subscribe-follow-box {
            text-align: center;
        }

        .subscribe-follow-box a {
            text-align: center;
            display: block;
        }

        .subscribe-follow-box a span {
            font-size: 50px;
            background-color: #fff;
            border-radius: 50%;
            width: 100px;
            color: #fff;
            display: block;
            height: 100px;
            line-height: 100px;
            margin: 0 auto;
            position: relative;
        }

        .subscribe-follow-box a span img.bord-img {
            width: 100px;
            height: auto;
            padding: 0;
            vertical-align: top;
            position: absolute;
            top: 0;
            left: 0;
        }

        .subscribe-follow-box a span img.deskimg {
            display: block;
        }

        .subscribe-follow-box a span img.deskhvimg {
            display: none;
        }

        .subscribe-follow-box a:hover span img.deskimg {
            display: none;
        }

        .subscribe-follow-box a:hover span img.deskhvimg {
            display: block;
        }

        .subscribe-follow-box a p {
            margin: 15px 0 0 0;
            color: #fff;
            font-size: 18px;
            line-height: 1.2;
	    letter-spacing: 1.2px;
            font-family: 'Roboto', sans-serif;
        }

        .subscribe-follow-box a:hover p {
            color: #fff; /* Text remains white on hover */
        }

        @media (max-width: 767px) {
            .subscribe-follow-box {
                margin-bottom: 20px;
            }

            .subscribe-follow-sec h2 {
                font-size: 24px;
            }

.newsletter-sec {
  margin-bottom: 30px;
}

.featured-show-sec {
  text-align: left;
  margin-bottom: 30px;
}
.featured-show-sec h2 {
  text-align: left;
  margin: 0 0 20px 0;
}
.featured-show-sec h3 {
  color: #000E97;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
.featured-show-sec p {
  font-size: 17.4px;
  color: #000;
  text-align: left;
}


.newsletter-sec .input-group {
  width: 50%;
  margin: 0 auto;
}
.newsletter-sec .form-control {
    display: block;
    width: 80%;
    min-height: calc(1.5em + .75rem + 2px);
    padding: .575rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 52px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}


.newsletter-sec .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #f47907;
    outline: 0;
    box-shadow: none;
}

.newsletter-sec .border-rad {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    color: #fff;
    background-color: #12c2f9;
    border-color: #12c2f9;
}

.newsletter-sec .border-rad:hover {
    background-color: #24b720;
    border-color: #24b720;
}


@media only screen and (max-width: 1366px) {
.timeline {
    padding: 0 30px;
    width: 100%;
    margin: 0;
}
.story1 {
  padding: 0 15px;
}
.box19.story1 .margin-row {
  margin-right: -15px;
  margin-left: -15px;
}
}
@media only screen and (max-width: 1024px) {
.footer-align2 {
    padding-left: 80px;
}
.footer-align3 {
    padding-left: 56px;
}
.nav-menu ul li.drop-down a:after {
  top: 4px;
}
.timeline-panel1 .timeline-title .img-mrg.logo-img, .timeline-panel2 .timeline-title .img-mrg.logo-img {
    width: 330px;
}
.newsletter-sec .input-group {
    width: 70%;
}    
}
@media only screen and (max-width: 991px) {
.chart-img {
  margin-bottom: 20px;
}
.button2 button {
    left: 50%;
    padding: 6px 30px;
    transform: translate(-50%, 0px);
}
.section3-text {
  text-align: left !important;
}
.section3-text3 {
  text-align: left !important;
}
.section4-text {
  text-align: center;
}
.section4-text4 {
  text-align: center !important;
}
.footer-align2 {
    padding-left: 20px;
}
.footer-align3 {
    padding-left: 20px;
}
.success-srory-icon {
    margin-bottom: 20px;
}
.timeline > li > .timeline-panel1 {
  width: 100%;
  left: 0;
  top: 0;
  position: relative;
}
.timeline > li > .timeline-badge {
  position: relative;
  top: 10px;
  left: 50%;
  margin-left: -28px;
}
.timeline > li > .timeline-panel1 {
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
    transform: translate(0%, 0%);
}
.timeline-panel1 .timeline-title .img-mrg.logo-img.rgt-companylogo {
    margin-left: 0;
    margin-top: 10px;
}
.success-history-sec:before {
  display: none;
}    
.timeline > li > .timeline-panel2 {
    width: 100%;
    margin-left: 0px;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    transform: translate(0%, 0%);
}
.timeline-panel2 .timeline-title {
    text-align: center;
    margin-top: 20px;
}
.timeline-panel1 .timeline-title {
    text-align: center;
    margin-top: 10px;
}
.modern-text1 {
    font-size: 36px;
}
.featured-show-sec h2 {
    text-align: left;
    margin: 20px 0 0px 0;
}
.newsletter-sec .input-group {
    width: 100%;
}
.mdimg-none {
  display: none;
}
.rv-chart-part .review-img-chart img.bord-img {
    text-align: left;
    float: left;
}
.review-img-txt {
    margin-top: 0;
}    
}
@media only screen and (max-width: 767px) {
  .rv-chart-part .review-img-chart img.bord-img {
    width: 100%;
  }
.centered-search {
  font-size: 18px;
}
#hero h2 {
  padding-bottom: 0;
}
.chart-img img {
  width: 100%;
}
#testimonial_095>.carousel-inner {
    width: 100%;
}
.timeline-panel2 .timeline-title .img-mrg.logo-img.lft-companylogo {
    margin-right: 0;
}
.price-text h2 {
    font-size: 24px;
}
.price-text .style-ul.listcheck li {
    width: 100%;
}
.price-text h3 {
    font-size: 44px;
    line-height: 44px;
}
.price-text .style-ul.listcheck50 li {
    width: 100%;
    float: left;
    margin: 0 0 10px 0;
}
.gub-sec ul li {
    width: 100%;
}
.webinar-text .style-ul.listcheck li {
    width: 100%;
}
.subscribe-follow-box {
  margin-bottom: 20px;
}         
.newsletter-sec .form-control {
  width: 60%;
}   
.price-bnr-part .price-bnr-img1 {
  margin-top: 30px;
}            
.pricing-part img {
  width: 100%;
}
.webbtn a.webinar-btn {
  display: block;
}
.webi-video-box {
  margin: 15px 0;
}

}

.value-txt {
  margin-top: 30px;
}
.value-txt p {
  margin: 10px 0 20px 0;
color: #000E97;
font-size: 22px;
}
.value-txt p span {
  color: #24b720;
}
.value-img-bg {
  padding: 0 15px;
}
