
                      .lang {
                          float: right;
                          margin: 10px;
                          color: white;
                          font-weight: bold;
                          border: 1px solid white;
                          border-radius: 3px;
                          padding: 3px 5px;
                          cursor: pointer;
                      }

.lang a {
    color: white;
}

.info-box-number {
    font-size: 15px;
    line-height: 26px;
    font-weight: normal;
}

.button2:hover {
    background-color: #cecbcb;
}
.button2:active {
    background-color: #000;
    transform: translateY(4px);
}
.button2 {
    cursor: pointer;
}

.align-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.sub-content {
    font-size: 25px;
    /*   text-shadow: 0 0 10px white; */
    /*   font-style: oblique; */
    font-family: 'Prosto One;
}

.main-content {
    margin-top: 30px;
    font-size: 45px;
    font-family: 'Prosto One';
    /*   text-shadow: 0 0 20px white; */
}

.box2 {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border: 0px solid  #ecf2fd;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    height: 220px;
    width: 220px;
    cursor: pointer;
    padding: 20px;
}

.box2:hover {
    background-color:   #f6f9ff;
}

.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;

    &:before, &:after {
        position: absolute;
        top: 0;
        content: "";
        z-index: 1;
    }
    &:before {
        left: 0;
        background: linear-gradient(to right, white 5%, transparent 100%);
    }
    &:after {
        right: 0;
        background: linear-gradient(to left, white 5%, transparent 100%);
    }
}

.marquee__content {
    width: 300% !important;
    display: flex;
    line-height: 30px;
    animation: marquee 40s linear infinite forwards;
    &:hover {
        animation-play-state: paused;
    }
}

.list-inline {
    display: flex;
    justify-content: space-around;
    width: 33.33%;

    /* reset list */
    list-style: none;
    padding: 0;
    margin: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-180%); }
}


<!-- M VER--->

     .notice_container {
         height: 240px;
         margin: 1em auto;
         overflow: hidden;
         background: white;
         position: relative;
         box-sizing: border-box;
     }

.container2 {
    width: 100%;
    height: 15em;
    margin: 1em auto;
    overflow: hidden;
    background: white;
    position: relative;
    overflow-y: scroll;
    --scrollbar-color: #007 #bada55;
    scrollbar-color: #e86d13 #bada55;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 20px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.marquee2 {
    --top: 6em;
    position: relative;
    box-sizing: border-box;
    --animation: marquee2 20s linear infinite;
    color: #232424;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}


.marquee2 {
    display: flex;
    animation: marquee2 55s linear infinite forwards;
    &:hover {
        animation-play-state: paused;
    }
}



/* Make it move! */
@keyframes marquee3 {
    0%   { top:   8em }
    100% { top: -11em }
}
@keyframes marquee2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-110%); }
}


.linkbutton {
    background-color: #448ac6; /*#04AA6D;*/ /* Green */
    border: none;
    color: white;
    padding: 2px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    -- margin: 4px 2px;
    cursor: pointer;
}

.linkbutton2 {background-color: #008CBA;} /* Blue */
.linkbutton3 {background-color: #f44336;} /* Red */
.linkbutton4 {background-color: #e7e7e7; color: black;} /* Gray */
.linkbutton5 {background-color: #555555;} /* Black */


.seemorebtn {
  border: none;
  background-color: inherit;
  padding: 5px 10px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
}

.seemorebtn:hover {background: #eee;}

.success {color: #0e8ed9;}
.info {color: dodgerblue;}
.warning {color: orange;}
.danger {color: red;}
.default {color: black;}