/*------------ Meaga-menu ----------------*/
@media (min-width: 991px) {
   
    li.mega-menu {
      position: static !important;
    }
    .mega-menu ul {
      padding: 0;
      width: 100%;
    }
    .col-menu ul{
      display: block;
      position: relative;
      padding: 15px;
      left: 0 !important;
      box-shadow: none;
  }
    }

/*------------------ Accordions ----------------*/

.accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
  box-sizing:border-box;
  margin: 2px 0;
}

.accordion {
	overflow:hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;
  background:#333;
  -webkit-transition: all linear 0.15s;
	transition:all linear 0.15s;
	font-size:18px;
	color:#fff;
}

.accordion-section-title.active, .accordion-section-title:hover {
  background:#673ab7;
  color:#fff;
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
}
   
/*------ Timeline -------------*/
.main-timeline:before,
.main-timeline:after{
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.main-timeline .timeline{
    padding: 0;
    cursor: pointer;
}
.main-timeline .timeline-inner{
    text-align: center;
    margin: 20px 20px 35px 35px;
    position: relative;
}
.main-timeline .timeline-inner:after{
    content: "";
    width: 120%;
    height: 3px;
    background: #555;
    position: absolute;
    bottom: 0;
    left: 10%;
}
.main-timeline .year{
    background: #673AB7;
    padding: 5px 0;
    border-radius: 30px 0 30px 0;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    z-index: 1;
    position: relative;
}
.main-timeline .year:before{
    content: "";
    position: absolute;
    top: -19px;
    right: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #673AB7;
    border-right: 10px solid #673AB7;
}
.main-timeline .year:after{
    content: "";
    width: 25px;
    height: 19px;
    border-radius: 0 0 20px 0;
    background: #fff;
    position: absolute;
    right: 1px;
    top: -19px;
}
.main-timeline .timeline-content{
    padding: 10px 10px 30px 10px;
    border-left: 3px solid #673AB7;
    position: relative;
}
.main-timeline .timeline-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    border: 10px solid transparent;
    border-top: 10px solid #673AB7;
    border-left: 10px solid #673AB7;
}
.main-timeline .timeline-content:after{
    content: "";
    width: 25px;
    height: 19px;
    border-radius: 20px 0 0 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.main-timeline .post{
    font-size: 24px;
    color: #333;
}
.main-timeline .description{
    font-size: 14px;
    color: #000;
    margin: 0;

}
.main-timeline .timeline-icon{
    width: 70px;
    height: 70px;
    line-height: 65px;
    border-radius: 50%;
    border: 5px solid #673AB7;
    background: #fff;
    font-size: 30px;
    color: #000;
    z-index: 1;
    position: absolute;
    bottom: -35px;
    left: -35px;
} 
@media only screen and (max-width: 990px){
    .main-timeline .timeline-inner:after{
        width: 110%;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-inner:after{
        width: 0;
    }
}
@media only screen and (max-width: 767px){
  .main-timeline .post {
    font-size: 20px;
}
