@charset "utf-8";
/* CSS Document */
body {
font-family: 'PT Sans', sans-serif !important;
color: #000;
}
.head_1 {

padding-bottom:10px;
}
h2.h3.h4{
line-height:1.8;
}

.crt-acc {
padding: 2px;
}
.banner-below {
padding: 15px 10px;
color: #000;
text-align: left;
}
.banner-below p {
color: #000;
text-align: left;
font-weight: ;
font-size: 15px;
line-height: 1.8;
}
.banner-below h3 {
padding: 0px 0px;
color: #000;
text-align: left;
font-size: 25px;
line-height: 1.8;
}
.banner-below h4 {
color: #0e52af;
text-align: left;
font-weight: 700;
font-size: 17px;
line-height: 1.5;
}
.banner-below h4 a:hover {
color: #0e52af;
text-align: left;
font-weight: 700;
font-size: 17px;
line-height: 1.5;
}
.live-session1{
background-color:#d0af6c;
}
.live-session2{
border:1px dotted #431e00;
padding:5px 15px;
margin-bottom:15px;
}
.live-session-btn{
padding-top:10px;
text-align:right !important;
}
.live-session-btn a{
background-color: #333 !important;
width:150px;
color: #FFF;
font-size: 14px;
text-align: center;
margin-bottom: 10px;
}
.live-session-btn a:hover {
background-color: #cd1a0e !important;
color: #FFF;
border:1px solid #cd1a0e;
font-weight:600;
font-size: 14px;
text-align: center;
margin-bottom: 10px;
}
.side-ad{

}
.foot_a {
background-color: #333;
}
.foot_main {
width: 100%;
padding-bottom: 5px;
}
.foot_a {
background-color: #333;
color: #FFF;
}
.foot_a p {
color: #f2f2f2;
font-size: 14px;
margin-top: 10px;
}
.foot_left {
text-align: left;
}
.foot_right {
text-align: right;
}
.text_a {
margin-top: 20px;
padding: 10px 0;
color: #f16800;
text-align: center;
font-weight: 700;
font-size: 20px;
line-height: 1.8;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
.banner-below {
font-size: 15px;
}

.live-session-btn{
padding-top:45px;
text-align:left !important;
}
#scroll-container {
    width: 97% !important;
}

}
.text-danger {
color: #ff2a2a;
}
.text-success {
color: #0f0;
}

/* CSS FOR NEW SECTION STARTS HERE */

#scroll-container {
    border: 1px dotted #431e00;
    border-radius: 5px;
    height: 300px;
    overflow: hidden;
    margin-top: 10px;
    padding: 10px;
    width: 85%;
}

#scroll-text {
    height: 100%;
    text-align: center;
    
    /* animation properties */
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    
    -moz-animation: my-animation 12s linear infinite;
    -webkit-animation: my-animation 12s linear infinite;
    animation: my-animation 12s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
    from { -moz-transform: translateY(100%); }
    to { -moz-transform: translateY(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from { -webkit-transform: translateY(100%); }
    to { -webkit-transform: translateY(-100%); }
}

@keyframes my-animation {
    from {
        -moz-transform: translateY(100%);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}