*{
  font-family: 'Dosis', sans-serif;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
  background: #f1f1fa;
}

 /* navbar */
 .navbar-brand{
   font-size: 40px;
 }
 .navbar-nav li a {
  font-size: 1.5em;
 }
/* navbar */
.banner {
    width: 100%;
    background-image: url(https://i.imgur.com/RyvZiB8.jpg);
    height: 405px;
    background-color: #deb312;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;

  }

  .banner_section{
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding-top: 5%;
  }

  .banner_title{
    text-align: center;
    font-size: 55px;
    color: #fff;
    font-weight: 800;
  }
  .banner_description{
    font-size: 20px;
    color: #fff;
    /* font-weight: ; */
  }


.card{
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
  .pad{
    padding: 6%;
    margin: 2%;
    background: #383838;
    text-align: center;
    border-radius: 6px;
    position: 0;
    right: 0;
    left: 0;
    color: #FFF;
    z-index: 1030;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    -moz-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

.pad:hover{
  padding: 6%;
  margin: 2%;
  /* background: #978585; */
  text-align: center;
  border-radius: 6px;
  position: 0;
  right: 0;
  left: 0;
  color: #FFF;
  z-index: 1030;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.project_desc{
  font-size: 18px;
  color: #FFF;
  /* font-weight: ; */
}
.timeline{
  color: #333;
}
.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: rgba(202, 127, 127, 0.8);
}
 
.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 15px;
  background: #ce5858;
}
 
.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}
 
.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #F45B69 transparent transparent;
}


.timeline ul li:nth-child(even) div {
  left: -439px;
}
 
.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #F45B69;
}