/* marquee */

.marquee .marquee-inner {
	width: 100%;
	display: flex;
	color: white;
}
.marquee .marquee-inner .marquee-content , .marquee .marquee-inner > .marquee-tag {
	white-space: nowrap;
	padding: 0 4rem;
}

.marquee {
	/*margin-bottom: 10px;*/
    background: -webkit-linear-gradient(225deg , #008ed9, #0b71ca);
    background: -moz-linear-gradient(225deg, #008ed9, #0b71ca);
    background: -o-linear-gradient(225deg, #008ed9, #0b71ca);
    background: -ms-linear-gradient(225deg, #008ed9, #0b71ca);
    background: linear-gradient(-135deg, #008ed9, #0b71ca);
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    position: relative;
    z-index: 9999999999999999999999;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}

.marquee-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-animation: marquee 10s linear infinite running;
    -moz-animation: marquee 10s linear infinite running;
    -o-animation: marquee 10s linear infinite running;
    -ms-animation: marquee 10s linear infinite running;
    animation: marquee 10s linear infinite running;
}

.marquee-tag {
    width: 500px;
    margin: 0 0.5em;
    padding: 0.5em;
    background: rgba(255,255,255,0.1);
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 1.1em;
	margin-right: 1em;
}

.marquee-tag:hover {
    background: rgba(255,255,255,0.5);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

/* header */

.img-logo{
    width: 200px;
    max-width: unset;
}

/* home page */

.home-banner{
    width: 1350px ;
    height: 500px ;
}

.review-card h6 {
    color: black;
}

/* end home page */

/* course-detail */

div.row.top-course-buttons{
    justify-content: space-around;
}

.price-card .top-course-buttons a{
    padding: 10px 24px;
    font-size: 18px;
    width: 44%;
}

.member-price{
    position: relative;
    font-size: 50px;
}
.member-price small {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -10px;
    text-transform: capitalize;
}

/* end course-detail */

/* account */
.account-section{
    padding-top: 50px;
}
.account-section .container{
    background-color: aliceblue;
}
.user-name{
    font-size: 24px;
    text-transform: capitalize;
}

/*end account*/

.gFMxIq{
    left:0 !important;
}

@media (max-width: 500px){

    .home-banner{
        width: 100%;
        height: 280px;
    }

}