/******************************************************
Author : Brainean
******************************************************/
:root {
  --body-color: #fff;
  --card-bg: #f0f2fa;
  --heading-color: #1e202a;
  --text-color: #252a41;
  --subtitle: #323edd;
  --border: #323edd;
  --btn-main-color: #fff;
  --whatsapp: #25d366;
  --star-size: 30px;
  --star-color: rgb(185, 181, 181);
  --star-background: #fc0;
}

.dark {
  --body-color: #1f212e;
  --card-bg: #0c0e1b;
  --heading-color: #8b97c6;
  --text-color: #fff;
  --subtitle: #fff;
  --border: #323edd;
  --btn-main-color: #000;
  --whatsapp: #252a41;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  font-family: 'Oswald', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
  color: var(--text-color);
}

.fa-moon-o {
  cursor: pointer;
  color: var(--heading-color);
  transform: rotate(-25deg);
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 42px;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  line-height: 30px;
}

.py-7 {
  padding: 7rem 0px;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  border-radius: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn:focus {
  outline: 0px;
  border: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-main,
.btn-transparent,
.btn-small {
  background: var(--subtitle);
  color: var(--btn-main-color);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.btn-main:hover,
.btn-transparent:hover,
.btn-small:hover {
  background: #0f4c75;
  color: #fff;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
}

.btn-main:hover .btn-icon {
  margin-left: 20px !important;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
}

.btn-solid-border {
  border: 2px solid #323edd;
  background: transparent;
  color: var(--text-color);
}

.btn-solid-border:hover {
  border: 2px solid #323edd;
  color: var(--text-color);
}

.btn-transparent {
  background: transparent;
  padding: 0;
  color: var(--subtitle);
}

.btn-transparent:hover {
  background: transparent;
  color: var(--subtitle);
}

.btn-large {
  padding: 20px 45px;
}

.btn-large.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn-small {
  padding: 10px 25px;
  font-size: 12px;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.bg-gray {
  background: #f5f8f9;
}

.bg-primary {
  background: var(--subtitle);
}

.bg-primary-dark {
  background: var(--subtitle);
}

.bg-primary-darker {
  background: var(--subtitle);
}

.bg-dark {
  background: #242424;
}

.bg-gradient {
  background-image: -o-linear-gradient(305deg, rgba(19, 177, 205, 0.95) 0%, rgba(152, 119, 234, 0.95) 100%);
  background-image: linear-gradient(145deg, rgba(19, 177, 205, 0.95) 0%, rgba(152, 119, 234, 0.95) 100%);
  background-repeat: repeat-x;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title .title {
  font-size: 50px;
  line-height: 50px;
}

.section-title p {
  color: #666;
}

.subtitle {
  color: var(--subtitle);
  font-size: 14px;
  letter-spacing: 1px;
}

.overly,
.page-title,
.start,
.cta,
.hero-img {
  position: relative;
}

.overly:before,
.page-title:before,
.start:before,
.cta:before,
.hero-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.overly-2,
.bg-counter,
.cta-block,
.latest-blog {
  position: relative;
}

.overly-2:before,
.bg-counter:before,
.cta-block:before,
.latest-blog:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.text-color {
  color: var(--subtitle);
}

.text-black {
  color: #242424;
}

.text-color2 {
  color: var(--subtitle);
}

.text-color2 {
  color: #b99769;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.no-spacing {
  letter-spacing: 0px;
}

/* Links */
a {
  color: var(--text-color);
  text-decoration: none;
}

a:focus,
a:hover {
  color: var(--subtitle);
  text-decoration: none;
}

a:focus {
  outline: none;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}
/*********************************************/
/*********************************************/
/*************** Navbar Style ****************/
/*********************************************/
/*********************************************/
#navbar {
  background: var(--body-color);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.46);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.46);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#navbar form a:hover {
  color: var(--text-color);
}

.navbar-toggler {
  outline: none !important;
  border: none;
  color: var(--text-color);
}

#navbar li {
  padding-left: 15px;
}

#navbar .nav-link {
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .5px;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus {
  color: var(--text-color);
}

#navbar .btn {
  padding: .5rem 2.5rem;
  color: var(--text-color);
}

.navbar-brand {
  width: 30%;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: #fff;
}

.navbar-brand img {
  width: 30%;
}

.dropdown-menu {
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .2s ease-in, visibility 0s linear .2s, -webkit-transform .2s linear;
  transition: all .2s ease-in, visibility 0s linear .2s, -webkit-transform .2s linear;
  -o-transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear;
  transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear;
  transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear, -webkit-transform .2s linear;
  width: 250px;
  margin-top: 15px;
  padding: 0px;
  border-radius: 0px;
  display: block;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  -webkit-transition: all .45s ease 0s;
  -o-transition: all .45s ease 0s;
  transition: all .45s ease 0s;
  opacity: 1;
}

.dropdown-item {
  padding: .8rem 1.5rem;
  text-transform: uppercase;
  font-size: 14px;
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}
/*********************************************/
/*********************************************/
/*********** Start Section Style *************/
/*********************************************/
/*********************************************/
.start {
  background: url("../images/plan.jpg") no-repeat;
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  text-align: center;
}

.start h1 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 600;
  color: #fff;
}

.start p {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 80px;
  font-weight: 600;
  color: #fff;
}

.start span {
  letter-spacing: 1px;
  color: #fff;
}

.start a {
  padding: 0.8em 2em;
}

.typer {
  color: #fff !important;
}
/*********************************************/
/*********************************************/
/********** Intro Section Style **************/
/*********************************************/
/*********************************************/
.intro {
  padding: 100px 0;
}

.intro .section-title {
  text-align: center;
  padding: 0 4em;
}

.intro-item {
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
  padding: 2em;
  text-align: center;
  border: 2px solid #c7c7c7;
  border-radius: 15px;
}

.intro-item:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 2px solid var(--border);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.intro-item i {
  font-size: 50px;
  line-height: 60px;
}

.color-one {
  color: var(--subtitle);
}

.color-two {
  color: #00d747;
}

.color-three {
  color: #9262ff;
}

.color-four {
  color: #088ed3;
}

/* Plan Section Style */
.plan {
  padding: 100px 0;
  height: auto;
  position: relative;
}

.about-intro,
.stage-intro {
  padding: 100px 0;
  height: auto;
  position: relative;
}

.bg-plan {
  position: absolute;
  content: "";
  right: 0px;
  height: 100%;
  top: 0px;
  width: 50%;
  background: url("../images/abt.jpg") no-repeat;
  background-size: cover;
}

.bg-about-intro {
  position: absolute;
  content: "";
  right: 0px;
  height: 100%;
  top: 0px;
  width: 50%;
  background: url("../images/about.png") no-repeat;
  background-size: contain;
}

.bg-stage-intro {
  position: absolute;
  content: "";
  right: 0px;
  height: 100%;
  top: 3em;
  width: 50%;
  background: url("../images/mind_map.png") no-repeat;
  background-size: contain;
}

.plan-item,
.about-item,
.stage-item {
  margin-left: 0px;
}

.plan-content,
.about-content,
.stage-content {
  padding: 20px 0px 0px 80px;
}

.plan-content h4,
.about-content h4,
.stage-content h4 {
  font-weight: 600;
}

.plan-content h4:before,
.about-content h4:before,
.stage-content h4:before {
  position: absolute;
  content: "\f11d";
  font-family: "FontAwesome";
  font-size: 30px;
  position: absolute;
  top: 8px;
  left: -65px;
  font-weight: 700;
}

.plan-content a,
.about-content a,
.stage-content a {
  padding: 0.8em 3em;
}

/*********************************************/
/*********************************************/
/********** Secondary Section Style **********/
/*********************************************/
/*********************************************/
.secondary {
  padding: 100px 0;
  height: auto;
  position: relative;
}

.bg-secondary {
  position: absolute;
  content: "";
  left: 0px;
  height: 100%;
  top: 0px;
  width: 50%;
  background: url("../images/teach.jpg") no-repeat;
  background-size: cover;
}

.secondary-item {
  margin-left: 40px;
}

.secondary-content {
  padding: 40px;
}

.secondary-content a {
  padding: 0.8em 3em;
}

/*********************************************/
/*********************************************/
/*********** Team Section Style **************/
/*********************************************/
/*********************************************/
.team {
  padding: 100px 0;
}

.slick-slide {
  outline: none;
}

.slick-prev:before,
.slick-next:before {
  color: var(--text-color);
}

.slick-prev,
.slick-next {
  top: 45%;
}

.our-team {
  text-align: center;
  outline: none;
  -webkit-box-shadow: 0px 0px 6px -1px rgba(0,0,0,0.92);
box-shadow: 0px 0px 6px -1px rgba(0,0,0,0.92);
}

.our-team .team_img {
  position: relative;
  overflow: hidden;
}

.our-team .team_img img {
  height: 70vh;
  width: 100%;
}

/* .about-team .our-team .team_img img {
  border-radius: 10px;
} */

.our-team .team_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.about-team .team_img:after {
  background-color: rgba(66, 66, 66, 0.2);
  border-radius: 10px;
}

.our-team:hover .team_img:after {
  bottom: 0;
}

.our-team .social {
  padding: 0 0 18px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: -100%;
  right: 10px;
  background: #edf7fa;
  border-radius: 0 0 20px 20px;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.our-team:hover .social {
  top: 0;
}

.our-team .social li a {
  display: block;
  padding: 15px;
  font-size: 15px;
  color: #088ed3;
}

.our-team:hover .social li a:hover {
  color: #2a4284;
}

.our-team .team-content {
  padding: 20px 0;
  background: #fff;
}

.our-team .title {
  font-size: 18px;
  font-weight: bold;
  color: #2a4284;
  text-transform: capitalize;
  margin: 0 0 20px;
  position: relative;
}

.our-team .title:before {
  content: "";
  width: 25px;
  height: 1px;
  background: #27ae61;
  position: absolute;
  bottom: -10px;
  right: 50%;
  margin-right: 9px;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.our-team .title:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #27ae61;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: 9px;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.our-team:hover .title:before,
.our-team:hover .title:after {
  width: 50px;
}

.about-team .our-team .title:before,
.about-team .our-team .title:after {
  background: #205dce;
}


.about-team .our-team:hover .title:before,
.about-team .our-team:hover .title:after {
  width: 80px;
}

.our-team .post {
  display: inline-block;
  font-size: 15px;
  color: #1b262c;
  text-transform: capitalize;
}

.our-team .post:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27ae61;
  margin: 0 auto;
  position: relative;
  top: -13px;
}

.about-team .our-team .post:before {
  background: #205dce;
}

/*---------------------
  Counter
-----------------------*/
.counter {
  background: transparent;
  height: 840px;
  padding-top: 380px;
  overflow: hidden;
}

.counter__content {
  padding: 0px 50px;
}

.counter__item {
  background: #000000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  height: 255px;
  width: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.counter__item::before {
  position: absolute;
  left: -1px;
  bottom: -2px;
  height: 636px;
  width: 636px;
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
  content: "";
  z-index: -1;
}
.counter__item.second__item {
  margin-top: -185px;
}
.counter__item.second__item:before {
  left: -316px;
  bottom: -65px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-top: none;
}
.counter__item.four__item {
  margin-top: -185px;
}
.counter__item.four__item:before {
  left: -380px;
  bottom: -380px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: none;
  border-top: none;
}
.counter__item.third__item:before {
  left: -65px;
  bottom: -317px;
}

.counter__item__text {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.counter__item__text h2 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
}
.counter__item__text p {
  color: #ffffff;
  margin-bottom: 0;
}



/*********************************************/
/*********************************************/
/********** Secondary Page Style *************/
/************ Card List Style ****************/
/*********************************************/
/*********************************************/
.card-list {
  max-width: 1200px;
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: auto;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.card{
  background-color: var(--card-bg);
}

.card-img {
  -webkit-box-flex: 1;
  -ms-flex: 1 30%;
  flex: 1 30%;
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.card-img-preview {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
  min-width: 150px;
  max-width: 100%;
  min-height: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.card-img-preview:hover {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
}

.card-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 70%;
  flex: 1 70%;
  padding: 0.8rem;
}

.card-content a{
  cursor: pointer;
}

.card-title {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0;
}

.card-text {
  font-size: 1em;
  margin: 0;
}

.card-description {
  font-size: 1em;
  margin: 0;
  margin-top: 0.5rem;
  color: var(--text-color);
  line-height: 1em;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  margin-left: -10px;
}
.Stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join-teacher {
  padding: 0.3em 1.5em;
  margin-top: 1em;
  border-color: var(--border-color);
}

.join-teacher:hover {
  background-color: #1b262c;
  border-color: var(--border-color);
  color: #fff;
}

/*********************************************/
/*********************************************/
/************ Coming Soon Styling ************/
/*********************************************/
/*********************************************/
ul#countdown {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 15px 0 20px 0;
  color: var(--text-color);
  border: 1px solid #adafb2;
  border-width: 1px 0;
  overflow: hidden;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-weight: bold;
}

ul#countdown li {
  margin: 0 -3px 0 0;
  padding: 0;
  display: inline-block;
  width: 23%;
  font-size: 72px;
  font-size: 6vw;
  text-align: center;
}

ul#countdown li .label {
  color: #adafb2;
  font-size: 18px;
  font-size: 1.5vw;
  text-transform: uppercase;
}
/*********************************************/
/*********************************************/
/******** About Start Section Style **********/
/*********************************************/
/*********************************************/
.about-start {
  background: url("../images/about.jpg") no-repeat;
  background-size: cover;
  background-position: 10% 0%;
  padding: 300px 0;
  text-align: center;
}

.stage-start {
  background: url("../images/stage.jpg") no-repeat;
  background-size: cover;
  background-position: 10% 0%;
  padding: 300px 0;
  text-align: center;
}

/*********************************************/
/*********************************************/
/******* About Timeline Section Style ********/
/*********************************************/
/*********************************************/
.main-timeline {
  overflow: hidden;
  position: relative
}

.main-timeline:after,
.main-timeline:before {
  content: "";
  display: block;
  width: 100%;
  clear: both
}

.main-timeline:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #d6d5d5;
  position: absolute;
  top: 30px;
  left: 50%
}

.main-timeline .timeline {
  width: 50%;
  float: left;
  padding-right: 30px;
  position: relative
}

.main-timeline .timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fe6847;
  position: absolute;
  top: 5.5%;
  right: -17.5px
}

.main-timeline .year {
  display: block;
  padding: 10px;
  margin: 0;
  font-size: 26px;
  color: #fff;
  border-radius: 0 50px 50px 0;
  background: #fe6847;
  text-align: center;
  position: relative
}

.main-timeline .year:before {
  content: "";
  border-top: 35px solid #f59c8b;
  border-left: 35px solid transparent;
  position: absolute;
  bottom: -35px;
  left: 0
}

.main-timeline .timeline-content {
  padding: 30px 20px;
  margin: 0 45px 0 35px;
  background: #f2f2f2
}

.main-timeline .title {
  font-size: 19px;
  font-weight: 700;
  color: #504f54;
  margin: 0 0 10px
}

.main-timeline .thank {
  font-size: 16px;
  font-weight: 700;
  color: #504f54;
  margin: 0 0 10px
}

.main-timeline .description {
  font-size: 14px;
  color: #7d7b7b;
  margin: 0
}

.main-timeline .timeline:nth-child(2n) {
  padding: 0 0 0 30px
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
  right: auto;
  left: -14.5px
}

.main-timeline .timeline:nth-child(2n) .year {
  border-radius: 50px 0 0 50px;
  background: #7eda99
}

.main-timeline .timeline:nth-child(2n) .year:before {
  border-left: none;
  border-right: 35px solid transparent;
  left: auto;
  right: 0
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  margin: 0 35px 0 45px
}

.main-timeline .timeline:nth-child(2) {
  margin-top: 170px
}

.main-timeline .timeline:nth-child(odd) {
  margin: -175px 0 0
}

.main-timeline .timeline:nth-child(even) {
  margin-bottom: 80px
}

.main-timeline .timeline:first-child,
.main-timeline .timeline:last-child:nth-child(even) {
  margin: 0
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
  border-color: #7eda99
}

.main-timeline .timeline:nth-child(2n) .year:before {
  border-top-color: #92efad
}

.main-timeline .timeline:nth-child(3n) .timeline-icon {
  border-color: #8a5ec1
}

.main-timeline .timeline:nth-child(3n) .year {
  background: #8a5ec1
}

.main-timeline .timeline:nth-child(3n) .year:before {
  border-top-color: #a381cf
}

.main-timeline .timeline:nth-child(4n) .timeline-icon {
  border-color: #f98d9c
}

.main-timeline .timeline:nth-child(4n) .year {
  background: #f98d9c
}

.main-timeline .timeline:nth-child(4n) .year:before {
  border-top-color: #f2aab3
}

/*********************************************/
/*********************************************/
/********** Partners Section Style ***********/
/*********************************************/
/*********************************************/
.partners {
  text-align: center;
  padding: 3em 0;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*********************************************/
/*********************************************/
/*********** Pricing Section Begin ***********/
/*********************************************/
/*********************************************/
.pricing {
  padding: 5em 0;
}

.pricing .card {
  border: none;
  border-radius: 1rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.62);
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.62);
}

.pricing hr {
  margin: 1.5rem 0;
}

.pricing .card-title {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: bold;
}

.pricing .card-price {
  font-size: 3rem;
  margin: 0;
}

.pricing .card-price .period {
  font-size: 0.8rem;
}

.pricing ul li {
  margin-bottom: 1rem;
}

.pricing .text-muted {
  opacity: 0.7;
}

.pricing .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  padding: 1rem;
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }

  .pricing .card:hover .btn {
    opacity: 1;
  }
}

.pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3em;
}

.pricing-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 330px;
  flex: 0 1 330px;
}

.pricing-action {
  color: inherit;
  border: none;
  background: none;
}

.pricing-action:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  font-family: 'Open Sans', sans-serif;
  cursor: default;
  color: #84697c;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
  margin: 1em;
}

@media screen and (min-width: 66.25em) {
  .pricing-palden .pricing-item {
    margin: 1em -0.5em;
  }

  .pricing-palden .pricing__item--featured {
    margin: 0;
    z-index: 10;
    -webkit-box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
  }
}

.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  background: rgba(76, 70, 101, 0.99);
  padding: 4em 0 9em;
  position: relative;
}

.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
}

.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
}

.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
  font-size: 2.5em;
}

.pricing-palden .pricing-price {
  font-size: 5em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-currency {
  font-size: 0.15em;
  vertical-align: top;
}

.pricing-palden .pricing-period {
  font-size: 0.15em;
  padding: 0 0 0 0.5em;
  font-style: italic;
}

.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0.25em 0 2.5em;
  list-style: none;
  text-align: center;
}

.pricing-palden .pricing-feature {
  padding: 1em 0;
}

.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: 30px;
  background: #4d4766;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
  background-color: #100A13;
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}

.price-head {
  padding-top: 5em;
}

.price-head p {
  margin-top: 1.2em;
  font-size: 1.2em;
}



/*********************************************/
/*********************************************/
/********** Stage1 Timeline Style ************/
/*********************************************/
/*********************************************/
.stage-timeline {
  position: relative
}

.stage-timeline:before {
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 20px;
  margin: 0 auto;
  background: #242922;
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.stage-timeline .block-timeline {
  display: inline-block;
  margin-bottom: 50px;
  position: relative
}

.stage-timeline .block-timeline:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #D81159;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.stage-timeline .stage-timeline-icon {
  display: inline-block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #D81159;
  padding: 13px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.stage-timeline .stage-timeline-icon i {
  display: block;
  border-radius: 50%;
  background: #D81159;
  font-size: 64px;
  color: #fff;
  line-height: 100px;
  z-index: 1;
  position: relative
}

.stage-timeline .stage-timeline-icon:after,
.stage-timeline .stage-timeline-icon:before {
  content: "";
  width: 100px;
  height: 4px;
  background: #D81159;
  position: absolute;
  top: 50%;
  right: -100px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.stage-timeline .stage-timeline-icon:after {
  width: 70px;
  height: 50px;
  background: #f0f6ff;
  top: 89px;
  right: -30px
}

.stage-timeline .stage-timeline-content {
  width: 50%;
  padding: 0 50px;
  margin: 52px 0 0;
  float: right;
  position: relative
}

.stage-timeline .stage-timeline-content:before {
  content: "";
  width: 70%;
  height: 100%;
  border: 3px solid #D81159;
  border-top: none;
  border-right: none;
  position: absolute;
  bottom: -13px;
  left: 35px
}

.stage-timeline .stage-timeline-content:after {
  content: "";
  width: 37px;
  height: 3px;
  background: #D81159;
  position: absolute;
  top: 13px;
  left: 0
}

.stage-timeline .title {
  font-size: 20px;
  color: #D81159;
  text-transform: uppercase;
  margin: 0 0 5px
}

.stage-timeline .description {
  display: inline-block;
  color: #404040;
  line-height: 20px;
  margin: 0
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon {
  left: auto;
  right: 30%
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon:before {
  right: auto;
  left: -100px
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon:after {
  right: auto;
  left: -30px
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-content {
  float: left
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-content:before {
  left: auto;
  right: 35px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg)
}

.stage-timeline .block-timeline:nth-child(even) .stage-timeline-content:after {
  left: auto;
  right: 0
}

.stage-timeline .block-timeline:nth-child(2n) .stage-timeline-content:after,
.stage-timeline .block-timeline:nth-child(2n) .stage-timeline-icon i,
.stage-timeline .block-timeline:nth-child(2n) .stage-timeline-icon:before,
.stage-timeline .block-timeline:nth-child(2n):before {
  background: #F68657
}

.stage-timeline .block-timeline:nth-child(2n) .stage-timeline-icon {
  border-color: #F68657
}

.stage-timeline .block-timeline:nth-child(2n) .title {
  color: #F68657
}

.stage-timeline .block-timeline:nth-child(2n) .stage-timeline-content:before {
  border-left-color: #F68657;
  border-bottom-color: #F68657
}

.stage-timeline .block-timeline:nth-child(3n) .stage-timeline-content:after,
.stage-timeline .block-timeline:nth-child(3n) .stage-timeline-icon i,
.stage-timeline .block-timeline:nth-child(3n) .stage-timeline-icon:before,
.stage-timeline .block-timeline:nth-child(3n):before {
  background: #8fb800
}

.stage-timeline .block-timeline:nth-child(3n) .stage-timeline-icon {
  border-color: #8fb800
}

.stage-timeline .block-timeline:nth-child(3n) .title {
  color: #8fb800
}

.stage-timeline .block-timeline:nth-child(3n) .stage-timeline-content:before {
  border-left-color: #8fb800;
  border-bottom-color: #8fb800
}

.stage-timeline .block-timeline:nth-child(4n) .stage-timeline-content:after,
.stage-timeline .block-timeline:nth-child(4n) .stage-timeline-icon i,
.stage-timeline .block-timeline:nth-child(4n) .stage-timeline-icon:before,
.stage-timeline .block-timeline:nth-child(4n):before {
  background: #2fcea5
}

.stage-timeline .block-timeline:nth-child(4n) .stage-timeline-icon {
  border-color: #2fcea5
}

.stage-timeline .block-timeline:nth-child(4n) .title {
  color: #2fcea5
}

.stage-timeline .block-timeline:nth-child(4n) .stage-timeline-content:before {
  border-left-color: #2fcea5;
  border-bottom-color: #2fcea5
}

#profile{
  background-color: var(--body-color);
  color: var(--text-color);
}

.form-title{
  color: var(--text-color)!important;
}

.table-responsive  .table{
  color: var(--text-color)!important;
}

.p2 a {
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 2.875em;
}

section.p2 {
  font-family: 'Open Sans', sans-serif;
  height: 80vh;
  position: relative;
  background-clip: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  width: 100%;
  margin: 0 auto 30px;
  background-image: url(../images/price.jpeg);
}

section.p2 a {
  width: 100%;
  /* height: 94px; */
  line-height: 94px;
  position: absolute;
  top: 50%;
  /* left: 50%; */
  /* margin-left: -108px; */
  margin-top: -47px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: transparent;
}

section.p2 a:after,
section.p2 a:before {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-cont);
  color: #fff;
}

section.p2 a:before {
  -webkit-clip-path: polygon(0 0, 0 100%, 12.5% 100%, 12.5% 0, 25% 0, 25% 100%, 37.5% 100%, 37.5% 0, 50% 0, 50% 100%, 62.5% 100%, 62.5% 0, 75% 0, 75% 100%, 87.5% 100%, 87.5% 0);
  clip-path: polygon(0 0, 0 100%, 12.5% 100%, 12.5% 0, 25% 0, 25% 100%, 37.5% 100%, 37.5% 0, 50% 0, 50% 100%, 62.5% 100%, 62.5% 0, 75% 0, 75% 100%, 87.5% 100%, 87.5% 0);
}

section.p2 a:after {
  -webkit-clip-path: polygon(12.5% 0, 12.5% 100%, 25% 100%, 25% 0, 37.5% 0, 37.5% 100%, 50% 100%, 50% 0, 62.5% 0, 62.5% 100%, 75% 100%, 75% 0, 87.5% 0, 87.5% 100%, 100% 100%, 100% 0);
  clip-path: polygon(12.5% 0, 12.5% 100%, 25% 100%, 25% 0, 37.5% 0, 37.5% 100%, 50% 100%, 50% 0, 62.5% 0, 62.5% 100%, 75% 100%, 75% 0, 87.5% 0, 87.5% 100%, 100% 100%, 100% 0);
}

section.p2 a:hover {
  color: #fff;
}

section.p2 a:hover:before {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  color: transparent;
}

section.p2 a:hover:after {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  color: transparent;
}

.comparison {
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.comparison .table {
  width: 45%;
  color: var(--text-color);
}



main {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 5em;
}

#time h1 {
  font-family: "Montserrat";
  text-transform: uppercase;
  color: #522d5b;
  position: relative;
}

#time section {
  padding-top: 50px;
  padding-bottom: 50px;
}

#time h1::before {
  content: "";
  position: absolute;
  left: -65px;
  top: 3px;
  width: 25px;
  height: 25px;
  border: 6px solid #ccc;
  border-radius: 50%;
  z-index: 11;
  background-color: #fff;
}

#time h1.active::before {
  border-color: #5b8c5a;
  -webkit-animation: 250ms ease 0ms forwards 1 pulse;
  animation: 250ms ease 0ms forwards 1 pulse;
}

#time .not.active::before {
  border-color: #d63447;
  -webkit-animation: 250ms ease 0ms forwards 1 pulse;
  animation: 250ms ease 0ms forwards 1 pulse;
}

.jq-ry-container{
  padding: 0;
  top: -11px;
}

#time {
  padding: 0 120px;
}

#time::before,
#time::after {
  position: absolute;
  left: 65px;
  top: 10px;
  width: 5px;
  content: "";
  z-index: 9;
}

#time::after {
  height: 95%;
  background-color: #4a47a3;
}

#time:last-child {
  padding-bottom: 100px;
}
.subjects .nav-item .active{
  border-radius: 0;
}
.subjects .sub .active{
  background-color: #28A745;
  border-radius: 0;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.5, 1.5);
    transform: scale(1.5, 1.5);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}


/* Contact and Footer Section Style */
.contact-icon {
  vertical-align: middle;
}

.contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 0px;
  width: 100px;
}

.contact-buttons .contact {
  padding: 4px;
}

.main-contact-button .contact-button {
  margin-left: 7px;
}

.contact-button {
  padding-bottom: 5px;
}

.contact-link {
  text-decoration: none;
  color: #fff;
}

.contact-link span {
  background-color: #4e4c4c;
  padding: 7px;
  border-radius: 2px;
  margin-right: 2px;
  font-size: 13px;
  vertical-align: middle;
}

.contact-link i.fa {
  font-size: 30px;
  display: inline-block;
  border-radius: 60px;
  background-color: var(--whatsapp);
  box-shadow: 0px 0px 2px #888;
  padding: 0.5em 0.6em;
}

.contact a {
  padding: 1em 2em;
}

.widget {
  margin-bottom: 30px;
  padding-bottom: 35px;
}

.widget .widget-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
}

.widget.widget-latest-post .media .media-object {
  width: 100px;
  height: auto;
}

.widget.widget-latest-post .media .media-heading a {
  color: #242424;
  font-size: 16px;
}

.widget.widget-latest-post .media p {
  font-size: 12px;
  color: #808080;
}

.widget.widget-category ul li {
  margin-bottom: 10px;
}

.widget.widget-category ul li a {
  color: #837f7e;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget.widget-category ul li a:before {
  padding-right: 10px;
}

.widget.widget-category ul li a:hover {
  color: #f75757;
  padding-left: 5px;
}

.widget.widget-tag ul li {
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px;
}

.widget.widget-tag ul li a {
  color: #837f7e;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #dedede;
  border-radius: 30px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget.widget-tag ul li a:hover {
  color: #fff;
  background: #f75757;
  border: 1px solid #f75757;
}

.cta-block-2{
  border-radius: 20px;
  border: 1px solid;
  padding: 30px;
  background-color: var(--body-color);
  color: var(--text-color);
}

.footer {
  padding-top: 4em;
}

.footer .copyright a {
  font-weight: 600;
}

.lh-35 {
  line-height: 35px;
}

.logo {
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.logo span {
  color: #f75757;
}

.sub-form {
  position: relative;
}

.sub-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f5f8f9;
}

.footer-btm {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-socials li a {
  margin-left: 15px;
}

#birth .card-birth{
  padding-top: 10%;
  width: 100%;
  text-align: center;
}

#birth .card-birth img{
  width: 50%;
}

#birth .cards{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3%;
}

#birth .cards .card {
  width: 30%;
  margin: 10px;
}

#birth .cards .card .card-img{
  flex: 1 50%;
  border-radius: 0;
}

#birth .cards .card .card-username{
  font-size: 1em;
}
#birth .cards .card h4{
  font-size: 0.9em;
}

#birth .cards .card .whatsapp {
  padding: 0.3em 1.5em;
  margin-top: 1em;
  border-color: #1b262c;
}

#birth .cards .card .whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}
/*=== MEDIA QUERY ===*/
@media only screen and (max-width:1200px) {
  .stage-timeline .stage-timeline-icon:before {
    width: 50px;
    right: -50px
  }

  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon:before {
    right: auto;
    left: -50px
  }

  .stage-timeline .stage-timeline-content {
    margin-top: 75px
  }
}

@media (max-width: 991px) {
  #navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-brand img {
    width: 180%;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .main-timeline .year {
    font-size: 20px;
  }

  .start>span {
    font-size: 20px;
  }

  .start h1 {
    font-size: 55px;
  }

  .start a {
    padding: 1em 2.2em;
  }

  .intro .section-title {
    padding: 0;
  }

  .intro span {
    font-size: 20px;
  }

  .intro h2 {
    font-size: 30px;
  }

  .plan,
  .secondary,
  .about-intro,
  .stage-intro {
    padding: 0;
  }

  .plan-content a,
  .secondary-content a,
  .about-content a,
  .stage-content a {
    padding: 0.8em 2.5em;
  }

  .bg-plan {
    position: relative;
    width: 100%;
    height: 80vh;
  }

  .bg-about-intro {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .bg-stage-intro {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .bg-secondary {
    height: 100vh;
    width: 100%;
  }

  .contact h2 {
    font-size: 1.5rem;
    line-height: 27px;
  }

  .secondary-item {
    height: 100vh;
    top: 100vh;
    position: relative;
    margin-bottom: 40vh;
    /* margin-left: -10%; */
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }

  .our-team {
    margin-bottom: 30px;
  }

  .our-team .social i {
    font-size: 20px;
  }

  .comparison {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .comparison .table {
    width: 100%;
  }

  .stage-timeline .block-timeline {
    margin: 0 0 10px
  }

  .stage-timeline .stage-timeline-icon {
    left: 25%
  }

  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon {
    right: 25%
  }

  .stage-timeline .stage-timeline-content {
    margin-top: 115px
  }

  #birth .card-birth {
    padding-top: 15%;
  }

  #birth .card-birth img{
    width: 100%;
  }

  #birth .cards{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3%;
  }

  #birth .cards .card {
    width: 45%;
    margin: 10px;
  }

  #birth .cards .card .card-img{
    flex: 1 50%;
    border-radius: 0;
  }

  #birth .cards .card .card-username{
    font-size: 1em;
  }
  #birth .cards .card h4{
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .start h1 {
    font-size: 45px;
    line-height: 70px;
  }

  .blog-item-meta span {
    display: block;
    margin: 6px 0px;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }

  ul#countdown {
    width: 100%;
  }

  ul#countdown li .label {
    font-size: 16px;
  }


  .main-timeline .year {
    font-size: 22px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    margin: 0 35px 0 20px;
  }

  .TimeLine {
    padding-left: 10px;
  }

  .main-timeline .timeline-icon {
    width: 27px;
    height: 27px;
    top: 5%;
    left: -12.5px;
  }

  .contact h2 {
    font-size: 1.3rem;
    line-height: 27px;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .start a {
    font-size: 15px;
    padding: 0.7em 2.2em;
  }

  .start p {
    font-size: 35px;
    line-height: 45px;
  }

  .intro h2 {
    font-size: 25px !important;
  }

  .bg-plan {
    position: relative;
    width: 100%;
    height: 80vh !important;
    background-position: center center;
  }

  .bg-about-intro {
    position: relative;
    width: 100%;
    height: 80vh !important;
    background-position: center center;
  }

  .bg-stage-intro {
    position: relative;
    width: 100%;
    height: 80vh !important;
    background-position: center center;
  }

  .plan-content a {
    padding: 1em 2.5em;
  }

  .our-team {
    margin-bottom: 30px;
  }

  .our-team .social i {
    font-size: 20px;
  }

  .footer-socials {
    margin-top: 20px;
  }

  .footer-socials li a {
    margin-left: 0px;
  }

  .stage-timeline {
    padding-top: 50px
  }

  .stage-timeline:before {
    left: 80px;
    right: 0;
    margin: 0
  }

  .stage-timeline .block-timeline {
    margin-bottom: 70px
  }

  .stage-timeline .block-timeline:before {
    top: 0;
    left: 83px;
    right: 0;
    margin: 0
  }

  .stage-timeline .stage-timeline-icon {
    width: 60px;
    height: 60px;
    line-height: 40px;
    padding: 5px;
    top: 0;
    left: 0
  }

  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon {
    left: 0;
    right: auto
  }

  .stage-timeline .stage-timeline-icon:before,
  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon:before {
    width: 25px;
    left: auto;
    right: -25px
  }

  .stage-timeline .stage-timeline-icon:after,
  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-icon:after {
    width: 25px;
    height: 30px;
    top: 44px;
    left: auto;
    right: -5px
  }

  .stage-timeline .stage-timeline-icon i {
    font-size: 30px;
    line-height: 45px
  }

  .stage-timeline .stage-timeline-content,
  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-content {
    width: 100%;
    margin-top: -15px;
    padding-left: 130px;
    padding-right: 5px
  }

  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-content {
    float: right
  }

  .stage-timeline .stage-timeline-content:before,
  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-content:before {
    width: 50%;
    left: 120px
  }

  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-content:before {
    right: auto;
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
  }

  .stage-timeline .stage-timeline-content:after,
  .stage-timeline .block-timeline:nth-child(even) .stage-timeline-content:after {
    left: 85px
  }

  .main-timeline {
    overflow: visible
  }

  .main-timeline:before {
    top: 0;
    left: 0
  }

  .main-timeline .timeline:nth-child(2),
  .main-timeline .timeline:nth-child(even),
  .main-timeline .timeline:nth-child(odd) {
    margin: 0
  }

  .main-timeline .timeline {
    width: 100%;
    float: none;
    padding: 0 0 0 30px;
    margin-bottom: 20px !important
  }

  .main-timeline .timeline:last-child {
    margin: 0 !important
  }

  .main-timeline .timeline-icon {
    right: auto;
    left: -14.5px
  }

  .main-timeline .year {
    border-radius: 50px 0 0 50px
  }

  .main-timeline .year:before {
    border-left: none;
    border-right: 35px solid transparent;
    left: auto;
    right: 0
  }

  .main-timeline .timeline-content {
    margin: 0 35px 0 45px
  }

  #time {
    padding: 0 80px;
  }

  #time::before,
  #time::after {
    left: 45px;
  }

  #time h1::before {
    left: -45px;
  }

  #birth .cards .card {
    width: 100%;
    margin: 10px;
  }

  #birth .cards .card .card-img{
    flex: 1 50%;
    border-radius: 0;
  }

  #birth .cards .card .card-username{
    font-size: 1em;
  }
  #birth .cards .card h4{
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .header-top .header-top-info a {
    margin-left: 0px;
  }

  #navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-brand img {
    width: 80% !important;
  }

  .start {
    padding: 9em 0 5em 0;
  }

  .card-img {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    height: 50vh;
  }


  .start h1 {
    font-size: 30px;
    line-height: 50px;
  }

  .start p {
    font-size: 30px;
    line-height: 40px;
  }

  .start a {
    font-size: 14px;
  }

  ul#countdown li .label {
    font-size: 13px;
  }

  .content-title {
    font-size: 28px;
    line-height: 46px;
  }

  .plan-item a {
    padding: 0.8em 2em;
  }

  .bg-secondary {
    height: 50vh;
  }

  .secondary-item {
    height: 50vh;
    top: 50vh;
    margin-bottom: 60vh;
    margin-left: 0;
  }


  .main-timeline .year {
    font-size: 20px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    margin: 0 35px 0 20px;
  }

  .TimeLine {
    padding-left: 10px;
  }

  .main-timeline .timeline-icon {
    width: 27px;
    height: 27px;
    top: 4%;
    left: -12.5px;
  }

  .p-5 {
    padding: 2rem !important;
  }

  h2,
  .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }

  .contact a {
    padding: 0.8em 2em;
  }

  .footer-socials {
    margin-top: 20px;
  }

  .footer-socials li a {
    margin-left: 0px;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    height: auto;
  }

  .stage-timeline .stage-timeline-content,
  .stage-timeline .block-timeline:nth-child(2n) .stage-timeline-content {
    padding-left: 110px
  }

  .stage-timeline .stage-timeline-content:before,
  .stage-timeline .block-timeline:nth-child(2n) .stage-timeline-content:before {
    left: 99px
  }

  .stage-timeline .stage-timeline-content:after,
  .stage-timeline .block-timeline:nth-child(2n) .stage-timeline-content:after {
    left: 65px
  }

  #time {
    padding: 0 65px;
  }

  #time::before,
  #time::after {
    left: 35px;
  }

  #time h1::before {
    left: -40px;
  }

  #time h1 {
    font-size: 1.5em;
  }

  #time section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #time::after {
    height: 98%;
    top: 0px;
  }

  #birth .card-birth {
    padding-top: 20%;
  }

  #birth .cards .card{
    flex-direction: row!important;
  }
  #birth .cards .card{
    font-size: 0.9em;
  }
}

@media (max-width: 400px) {
  .header-top .header-top-info a {
    margin-left: 0px;
    display: block;
  }

  #navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-brand img {
    width: 80%;
  }


  .start {
    padding: 126px 0 100px 0;
  }

  .start p {
    font-size: 21px;
    line-height: 40px;
  }

  .start a {
    padding: 0.6em 1.8em;
  }

  .content-title {
    font-size: 28px;
    line-height: 46px;
  }

  .bg-secondary {
    height: 50vh;
  }

  .secondary-item {
    height: 50vh;
    top: 50vh;
    margin-bottom: 60vh;
    margin-left: 0;
  }

  .secondary-content {
    padding: 2em 0;
  }

  .team {
    padding: 30px 0;
  }

  .team-header h1 {
    font-size: 25px;
  }

  .main-timeline .year {
    font-size: 20px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    margin: 0 35px 0 20px;
  }

  .TimeLine {
    padding-left: 10px;
  }

  .main-timeline .timeline-icon {
    width: 27px;
    height: 27px;
    top: 2%;
    left: -12.5px;
  }

  .p-5 {
    padding: 2rem !important;
  }

  h2,
  .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }

  .contact h2 {
    font-size: 1rem;
    line-height: 23px;
  }

  .footer-socials {
    margin-top: 20px;
  }

  .footer-socials li a {
    margin-left: 0px;
  }

  .text-lg {
    font-size: 3rem;
  }

  .header-top .header-top-info {
    padding-bottom: 15px;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }
}


@media (min-width: 500px) and (max-width: 991px) {
  .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .navbar-brand {
    width: 10%;
  }
}

@media (min-width: 480px) and (max-width: 500px) {
  .navbar-brand img {
    width: 80%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0px 145px 0 50px;
  }

  .counter__item.second__item {
    margin-top: -210px;
  }

  .counter__item.four__item {
    margin-top: -210px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter__item {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    margin-bottom: 30px;
    width: auto;
  }

  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0;
  }

  .counter__item.second__item {
    margin-top: 0;
  }

  .counter__item.four__item {
    margin-top: 0;
  }

  .counter__item__text {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
  }

  .counter {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .counter__item {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    margin-bottom: 30px;
    width: auto;
  }

  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0;
  }

  .counter__item.second__item {
    margin-top: 0;
  }

  .counter__item.four__item {
    margin-top: 0;
  }

  .counter__item__text {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
  }

  .counter {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }

}
