.theme{
    position: relative;
    display: block;
}
.theme_bg{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 20rem;
    background-color: rgba(231, 76, 60,0.8);
    z-index: -10;
}
.theme_heading{
    text-align: center;
    font-family: 'Means Web,Georgia,Times,Times New Roman,serif';
    font-size: 3rem;
    font-weight: 400;
    color: white;
}
.theme_img{
    width: 45rem;
    height: 32rem;
    padding-top: 2rem;
    display: block;
    margin: auto;
}
.theme_content{
    width: 70%;
    text-align: justify;
    margin: 3rem auto;
}
.theme_content > p{
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 27px;
}

.theme_calender{
    padding: 3rem;
}
.timeline_nav{
    width: 60rem;
    margin: auto;
    overflow-x: scroll;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 0.5rem 2rem;
    box-shadow: 0 10px 20px rgba(231, 76, 60,0.8);
    border-radius: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    position: relative;
}
.timeline_nav::-webkit-scrollbar {
    display: none;
  }

.timeline-tab-item{
    font-size: 1.3rem;
    margin-right: 3rem;
    list-style: none;
    color: #3d3d3d;
    width: 10%;
    padding: 0.6rem 1rem;
}

.timeline-tab-item--active{
    background-color: #efefef;
    color: rgb(231, 76, 60);
}

.timeline_nav > i{
    position: fixed;
    font-size: 1.3rem;
    margin: auto;
}
.timeline_nav > i:first-child{
    margin-left: 1rem;
}
.timeline_nav > i:last-child{
    margin-right: 1rem;
}



  /* End Reset */
  .share-menu {
    float: left;
    display: flex;
    position: relative;
  }
  .share-menu-toggle {
    position: relative;
    height: 50px;
    cursor: pointer;
    background: transparent;
    outline: none;
    border: none;
  }
  .share-menu-toggle:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .share-logo {
    font-size: 2rem;
    color: white;
    margin-left: 2rem;
  }
  .share-items {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    top: -20px;
    transition: all 200ms ease-in-out;
    position: absolute;
    left: 60px;
    padding: 0.7rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #fff;
  }
  .open .share-items {
    opacity: 1;
    visibility: visible;
    top: 0;
  }
  .share-item {
    margin-right: 10px;
    font-size: 2rem;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }