* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  html {
    font-size: 19px;
    line-height: 1.5;
}
  body {
    font-family: sans-serif;
  }
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);
    padding: 5px 20px;
    font-family: 'Poppins', sans-serif;


  }
  ul {
    list-style-type: none;
  }

  a {
    color: #6F76D9;
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  .logo{
    color: #6F76D9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
  }
  .logo a:hover {
    text-decoration: none;
  }
  .menu li {font-size: 16px;padding: 15px 5px;white-space: nowrap;line-height: 28px;}
  .menu li a {font-size: 16px;padding: 15px 5px;white-space: nowrap;line-height: 28px; font-weight: bold;}
  .logo a,
  .toggle a {
    font-weight: bold;
    font-size: 22px;
    display: none;
  }
/*General*/

.tag{
    border:1px dotted #6f76d9;
    color: gray;
    font-size: .8em;
    border-radius: 3px;
    padding: 7px;
}
.tag:hover{
    border:1px dotted #6f76d9;
    color: white;
    background-color: #6f76d9;
}

.my-20{
    margin-bottom: 20px;
    margin-top:20px;
}
.text-muted{
    color:  #8D95A6;
}
.title{
    color:#123688;
}
.text-active{
    color: #6F76D9;
}

.title{
    color:#123688;
}
.subtitle{
    font-size: 1.2em;
    
}
.meta-details{
    font-size: .9em;
}
.read-article{
    color:#6F76D9;
    border:1px solid #6F76D9;
    border-radius: 5px;
    padding: 12px 18px; 
    transition: all ease .3s;
    display: inline-block;
    margin-bottom:15px ;
}
.read-article:hover{
    color: white;
    background-color: #6F76D9;
}

  
  /* Mobile menu */
  .menu {
    margin-left: auto;
    margin-right: auto;
   
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .toggle {
    order: 1;
  }
  .item.button {
    order: 2;
  }
  .item {
    width: 100%;
    text-align: center;
    order: 3;
    display: none;
  }
  .item.active {
    display: block;
  }
  
  /* Navbar Toggle */
  .toggle {
    cursor:pointer;
  }
  
  .burger div {
    width: 30px;
    height: 3px;
    background-color: #3c475f;
    margin: 5px;
    transition: all .3s ease;
}

main{
    margin-top: 20px;
   padding: 10px;
}
/*Article */
img {
    width: 100%;
}


article {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

figure {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}
figcaption{
    font-size: 16px;
    margin:5px 0 15px 0;
}

h3,h4,h5{
   
    font-weight: normal;
}
blockquote{
    margin:  15px 40px;
    font-size: 1.3em;
}
p{
    color: #747474!important
}

/*Article*/
 
  .mark .line1{
    transform: rotate(-45deg) translate(-5px,6px)
}
.mark .line2{
    opacity: 0;
}
.mark .line3{
    transform: rotate(45deg) translate(-5px,-6px)
}

  /* Tablet menu */
  @media all and (min-width: 468px) {
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }
  
    .item.button {
        width: auto;
        order: 1;
        display: block;
    }
    .toggle {
        order: 2;
    }
    .button.secondary {
        border: 0;
    }
    .button a {
        padding: 7.5px 15px;
        background: teal;
        border: 1px #006d6d solid;
        border-radius:50em;
    }
    .button.secondary a {
        background: transparent;    
    }
    .button a:hover {
        text-decoration: none;
        transition:all .25s;
    }
    .button:not(.secondary) a:hover {
        background: #006d6d;
        border-color: #005959;
    }
    .button.secondary a:hover {
        color: #ddd;
    } 
  }
  
  /* Desktop menu */
  @media all and (min-width: 768px) {
    .item {
        display: block;
        width: auto;
    }
    .toggle {
        display: none;
    }
    .logo {
        order: 0;
    }
    .item {
        order: 1;
    }
    .button {
        order: 2;
    }
    .menu{
        padding: 15px 0px;
    }
    .menu li {
        padding: 15px 10px;
    }
 
    .menu li.button {

        padding-right: 0;
    }
    article{
        margin-top: 120px;
    }
  }
  @media all and (max-width: 768px){
      article{
          margin-top: 90px;
      }

  }

  
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1
        transform: translateX(0px);
    }
}

.TopBar {
	z-index: 10;
}