@keyframes showImg {
    0% {opacity: 0;}
    25% {opacity: 0;}
    40% {opacity: 100;}
    64% {opacity: 100;}
    65% {opacity: 0;}
}
@keyframes showImg2 {
    0% {opacity: 0;}
    50% {opacity: 0;}
    65% {opacity: 100;}
    85% {opacity: 100;}
    100% {opacity: 0;}
}
.imgSlide
{
   opacity :0;
   animation-name: showImg;
   animation-duration: 9s;
   animation-iteration-count: infinite;
   left: -100%
}
.imgSlide2
{
   opacity :0;
   animation-name: showImg2;
   animation-duration: 9s;
   animation-iteration-count: infinite;
   left: -200%
}
.slide_container
{
    width:fit-content;
}
.text-secondary
{
    font-size: 0.8em
}
.articlePadding{
    padding: 0 15%;
}
.pageBtnContainer a
{
    color: white;
    opacity: 50%;
    cursor: pointer;
}
.pageBtnContainer a:hover
{
    opacity: 100%;
}
.copywrite p
{
    margin: 0 !important;
}
a
{
    text-decoration: none;
}
#footer
{
    padding-bottom: 5px !important;
}
@media all and (max-width:991px)
{
    .articlePadding{
        padding: 0 5%;
    }
    body
    {
        font-size: 1em
    }
}
@media all and (max-width:576px)
{
    .MenuButton
    {
        left: 20px;
    }
}