/* Time-Line */
.timeLine-section{
    font-family: sans-serif;
    margin: 0;
    width: 100%
    padding: 0;
    line-height: 1.5;
    font-weight: 400;
}

.containe{
    padding: 2rem;
    padding-bottom: 100px;
    margin: 0 auto;
    max-width: 800px;
}

.top-section{
    text-align: center;
    padding: 4rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.timeline{
    position: relative;
    min-height: 150px;
}

.line{
    position: absolute;
    z-index: 2;
    left: calc(50% - 1px);
    width: 2px;
    top: -50px;
    background-color: #ffffff;
    display: none;
}

.line:before,
.line::after{
    position: absolute;
    display: block;
    content: '';
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
}

.line:after{
    bottom: 0;
}

.section{
    display: flex;
    opacity: 0;
    transform: translateX(-100%);
    transition: 600ms ease;
    position: relative;
    z-index: 1;
    margin: 25px 0;
    padding: 1rem;
    align-items: center;
    min-height: 200px;
}

.section:nth-child(odd){
    flex-direction: row-reverse;
    transform: translateX(100%);
}

.bead{
    position: absolute;
    display: block;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #ffffff;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
}

.content{
    width: calc(50% - 2rem);
}

.content h2{
  color: #808080;
}

.content p{
  color: #000000;
  font-weight: 600 !important;
}

.show-me:nth-child(n){
    transform: none;
    opacity: 1;
}

h1{
    font-weight: 400;
    letter-spacing: 1px;
}




/* Core Values */

.bg{
  background: #808080;
}
.mission {
  display: flex;
  flex-wrap: wrap;
}
.vission {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}
.cd {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #D3D3D3 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(128,128,128);
  cursor: pointer;
  transition: 0.5s;
}
h7 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  font-family: "Playfair Display", serif;
}
p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.icon-wrper {
  background-color: #808080;
  position: relative;
  margin: auto;
  margin-bottom: 8px;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.cd:hover {
  background-position: 0 100%;
}
.cd:hover .icon-wrper {
  background-color: #ffffff;
  color: #808080;
}
.cd:hover h3 {
  color: #ffffff;
}
.cd:hover p {
  color: #000000;
}
@media screen and (min-width: 768px) {
  .mission {
    padding: 0 2em;
  }
  .vission {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .mission {
    padding: 1em 3em;
  }
  .vission {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}



