.yt-lite {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: 50%;
  background-size: cover;
  cursor: pointer;
}
.yt-lite:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.yt-lite:after {
  content: "";
  display: block;
  padding-bottom: var(--aspect-ratio);
}
.yt-lite > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.yt-lite > .lty-playbtn {
  width: 70px;
  height: 46px;
  background-color: #212121;
  z-index: 1;
  opacity: 0.8;
  border-radius: 14%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}
.yt-lite:hover > .lty-playbtn {
  background-color: red;
  opacity: 1;
}
.yt-lite > .lty-playbtn:before {
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 11px 0 11px 19px;
}
.yt-lite > .lty-playbtn,
.yt-lite > .lty-playbtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.yt-lite.lyt-activated {
  cursor: unset;
}
.yt-lite.lyt-activated:before,
.yt-lite.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}


#largeArticleHeader{
  font-size: 250%;
  line-height: 1.2;
}
#largeArticleHeader  span{
  display: inline-block;
  font-size: 60px;
  color : rgb(59, 56, 56);
  line-height: 1 !important;
  font-style: oblique;
}
.sidebar.show{
  display: block;
}
.sidebar.hide{
  display: none;
}
#articlesPage a, .articlesPageClass a{
  /* color : black !important; */
  color : black ;
  text-decoration: none;
  /* border : dotted; */
  /* background: rgba(89, 165, 235, 0.142); */
  border-bottom: 2.5px solid #08549A;
}
@media screen and (max-width : 800px) {
    .sidebar.hide{
        display : block;
    }
    .sidebar.show{
      display: none;
    }
    #mobileBar{
      display: block;
    }
    #largeArticleHeader{
      font-size: 100%;
    }
    #largeArticleHeader  span{
      font-size: 100%;
    }
}
@media screen and (min-width : 801px) {
  .sidebar{
      display : block;
  }
  #mobileBar{
    display: none;
  }
}
.explain {
    font-size: .8rem;
    position: relative;
    margin: 0 0 1.5rem;
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background: var(--light-orange);
    border-radius: 8px;
    overflow: hidden;
    background: #fff2df;
    padding: 1rem 1rem 1rem 5rem;
}
.explain:before {
    content: "Hey!";
    font-style: italic;
    font-weight: 700;
    background: #ff7a18;
    color: #fff;
    padding: 0.88rem 1rem;
    margin-right: 1 rem;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: grid;
    place-items: center;
}


.ringButton{
    margin-top: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ringButton .button {
    min-width: 300px;
    min-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4FD1C5;
  background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    text-align: center;
    }
  
.ringButton a::before {
  content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #00FFCB;
    box-shadow: 0 0 60px rgba(0,255,203,.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .ringButton .button:hover, .button:focus {
    color: #313133;
    transform: translateY(-6px);
  }
  
  .ringButton a:hover::before, a:focus::before {
    opacity: 1;
  }
  
  .ringButton a::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid #00FFCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .ringButton a:hover::after, a:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }

.relatedArticles .linkRow{
    display: flex;
    margin-bottom: 25px;
  }
  .relatedArticles .linkRow a{
    text-decoration: none;
    color: black;
    border-bottom: 3px dotted blue;
  }
  .relatedArticles .linkRow a:hover{
    color : green
  }
.mtb10{
    margin : 10 0 !important;
    font-size:  120%;
}
.paragraph{
    /* width : 60ch; */
    font-size : 1.2rem;
    color: #000;
}
.yt-lite{
  height: 400px;
}
.pM0{
    margin : 0
}
.steps-number {
    width: 32px;
    height: 32px;
    font-family: 'Basier Circle', sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}
.steps-circle {
    width: 32px;
    height: 32px;
    margin-right: 20px;
    margin-bottom: 15px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border-radius: 20px;
    background-color: #070a39;
    text-align: center;
}
.related-block {
    margin-bottom: 20px;
    padding: 55px 60px 60px;
    border-radius: 20px;
    background-color: #fff0ed;
}


