/* ======================= common css start =======================  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Share+Tech&display=swap');
* {
    margin: 0;
    padding: 0;
}

:root {
    /* ======== colors ===== */
    --white: #fff;
    --white-2: #dfdbdb;
    --cyan: #ec6552;
    --cyan-light: #d64f4a;
    --bg-color: #f5f5f5;
    --black: #000;
    --black-1: #111;
    --shadow: #0000001f;
    --gray: #454545;
    --border: #9695955e;
    --overlay: #00000080;
    /* social icons color start  */
    --linkedin: #0072b1;
    --behance: #053eff;
    --youtube: #bb0000;
    --pinterest: #cb2027;
    --dribbble: #ea4c89;
    --facebook: #3B5998;
    --twitter: #00acee;
    --google: #dd4b39;
    --instagram: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* social icons color end  */
    /* ========== fonts size ====== */
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .813rem;
    /* ========== fonts weight ====== */
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    /* ========== fonts family ====== */
    --font-share-tech: 'Share Tech', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

h2 {
    margin: 0;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    /* margin: 0 auto; */
    max-width: 98%;
}


/* common icon start */

.social-icon i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--black);
    font-size: 18px;
    background-color: transparent;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 2px var(--cyan);
    border: 1px solid var(--shadow);
    transition: all linear .2s;
    margin: 0 4px;
}

.social-icon i:hover {
    border: 1px solid var(--black);
}


/* common icon end  */


/* common btn start  */

.btn {
    font-size: 16px;
    font-weight: var(--font-semi-bold);
    line-height: 38px;
    text-align: center;
    color: var(--white);
    border-radius: 4px;
    background-color: var(--cyan-light);
    outline: none;
    border: none;
    padding: 0 20px;
    margin-bottom: 10px;
    transition: all linear .2s;
}

.btn:hover {
    color: var(--white);
    background-color: var(--cyan);
}


/* common btn end  */

iframe {
    width: 100%;
    height: 100%;
}

.buy-course .iframe {
    width: 100%;
    height: 100%;
}

.buy-course-img .iframe {
    width: 100%;
    height: 100%;
}


/* heading start */

.heading {
    display: flex;
    box-shadow: -1px 2px var(--shadow);
    padding: 10px 10px;
    margin-bottom: 20px;
}

.heading a h2 {
    display: block;
    color: var(--black);
    line-height: 40px;
    font-size: 22px;
    font-weight: var(--font-semi-bold);
}

.heading a i {
    color: var(--cyan-light);
    font-size: 18px;
    line-height: 30px;
    margin-left: 5px;
}

.news-category a span {
    color: var(--black-1);
    font-size: 16px;
    font-weight: var(--font-semi-bold);
    line-height: 45px;
    margin-left: 10px;
}


/* heading end */


/* ========== common icon start ========== */

.social-icons li a i,
.social-icons i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 0 8px var(--light-gray);
    transition: all linear .3s;
    margin-top: 20px;
    margin-right: 6px;
}

.social-icons li {
    margin-top: 0;
    transition: all linear .2s;
}

.social-icons li:hover {
    margin-top: -8px;
}

.fa-facebook-f {
    background: var(--facebook);
    color: var(--white);
}

.fa-twitter {
    background: var(--twitter);
    color: var(--white);
}

.fa-google {
    background: var(--google);
    color: var(--white);
}

.fa-linkedin-in {
    background: var(--linkedin);
    color: var(--white);
}

.fa-behance {
    background: var(--behance);
    color: var(--white);
}

.fa-youtube {
    background: var(--youtube);
    color: var(--white);
}

.instagram-bg {
    background: var(--instagram);
    color: var(--white);
}

.fa-pinterest {
    background: var(--pinterest);
    color: var(--white);
}

.fa-dribbble {
    background: var(--dribbble);
    color: var(--white);
}


/* ========== common icon end ========== */


/* news-card start */

.news-card {
    width: 100%;
    box-shadow: 0 0 14px #0000001f;
    padding: 10px;
}


/* description */

.description p {
    color: var(--gray);
    font-size: 16px;
    font-weight: var(--font-normal);
    text-align: justify;
    margin-bottom: 10px;
}

.description .time {
    color: var(--gray);
    font-size: 14px;
    font-weight: var(--font-normal);
}


/* headline-title */

h2.headline-title {
    color: var(--black-1);
    font-weight: var(--font-semi-bold);
    font-size: 20px;
    line-height: 27px;
    margin: 10px 0;
    transition: all linear .2s;
}

h2.headline-title:hover {
    color: var(--cyan-light);
}

span.tilte-red {
    color: var(--cyan-light);
    font-size: 20px;
    line-height: 27px;
    margin: 10px 0;
}


/* --------- news-mid start ------- */

.news-mid-card.news-card {
    height: 210px;
    padding: 10px;
}

.news-mid-card .news-mid-content .news-mid-play {
    width: 215px;
    height: 80px;
    position: relative;
}

.news-mid-card .news-mid-content .news-mid-play img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-mid-card .news-mid-content .news-mid-play .audio-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background: red;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
}

.news-mid-card .news-mid-content .news-mid-play .audio-video-button i {
    color: var(--white);
    font-size: 16px;
}

.mid-description.description p {
    margin: 10px 0;
}


/* ------------ news-mid end ----------- */


/* ------------ news-bottom start ----------- */

.news-bottom-card.news-card {
    height: 240px;
}


/* ------------ news-bottom end ----------- */


/* ------------ ad start ----------- */


/* big-ad   */

.big-ad-area .ad-card {
    width: 970px;
    height: 250px;
    margin: 40px auto 0 auto;
    background-color: #d64f4a;
}


/* sm-ad */

.sm-ad-area .ad-card {
    width: 970px;
    height: 90px;
    margin: 40px auto 0 auto;
    background-color: #d64f4a;
}


/* ------------ ad end ----------- */


/* ------------ multiple-news start ----------- */

.multiple-news-area {
    margin-top: 40px;
}


/* ------------ multiple-news end ----------- */


/* ======================= common css end =========================  */


/* ===================== header section start =====================  */

.header-top-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--bg-color);
    z-index: 100;
}

.header-top-area .header-top {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}

.header-top-area .header-top .header-left span {
    width: 175px;
    font-size: 16px;
    font-weight: 500;
}

.header-top-area .header-top .header-logo a {
    color: var(--black);
    font-size: 34px;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-top-area .header-top .header-right {
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: space-between;
}

.header-top-area .header-top .header-right .icon-cards {
    display: flex;
    margin: 0 5px;
}

.header-top-area .header-top .header-right .icon-cards .header-right-icon i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--black);
    font-size: 18px;
    background-color: transparent;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 2px var(--cyan);
    /* padding: 5px 0 0 10px; */
    border: 1px solid var(--shadow);
    transition: all linear .2s;
}

.header-top-area .header-top .header-right .icon-cards .header-right-icon i:hover {
    border: 1px solid var(--black);
}


/* navber section start  */

.header-bottom-area {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--cyan-light);
    box-shadow: 0 2px 2px var(--shadow);
    z-index: 100;
}

.header-bottom-area .navber ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
}

.header-bottom-area .navber a.menu {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 50px;
    transition: all linear .2s;
}

.header-bottom-area .navber a.menu:hover {
    background-color: transparent;
    color: var(--white-2);
}

.header-bottom-area .navber ul li a {
    color: var(--white);
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    transition: all linear .3s;
}

.header-bottom-area .navber ul li a:hover {
    background-color: var(--cyan-light);
    color: var(--white);
}

.header-bottom-area .navber ul li a i {
    transform: rotate(-90deg);
    font-size: 14px;
    color: var(--white);
    float: right;
    line-height: 30px;
}


/* ============== drop-down start ============== */

.header-bottom-area .navber ul li a.login {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-semi-bold);
    line-height: 30px;
}

ul.sub-dp-menu {
    top: 50px;
    left: 200px;
}

ul.dp-menu li {
    position: relative;
}

ul.dp-menu li ul.sub-dp-menu {
    position: absolute;
    top: 0;
}

.last-dp-menu {
    right: 60px;
}

ul.last-dp-menu li ul.sub-dp-menu {
    left: -200px;
}

.mid-dp-menu {
    right: 200px;
}

ul.mid-dp-menu li ul.sub-dp-menu {
    left: -200px;
}

.header-bottom-area .navber ul li ul {
    position: absolute;
    width: 200px;
    background-color: var(--cyan);
    border-top: 3px solid var(--cyan);
    padding: 4px 0px;
    z-index: 1000;
    display: none;
}

.header-bottom-area .navber ul li ul li a {
    padding: 0 10px;
}

.header-bottom-area .navber ul li ul li ul {
    padding: 0;
    border-top: 4px solid transparent;
}

.header-bottom-area .navber ul li .gaming {
    right: 35px;
}

header .navber ul li:focus-within>ul,
header .navber ul li:hover>ul {
    display: initial;
}

#menu-bar {
    display: none;
}

header label {
    font-size: 20px;
    color: var(--black-3);
    cursor: pointer;
    display: none;
}


/* ============== drop-down end ============== */


/* ============== mb top start ============== */

.mb-header-tab-area {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background-color: var(--cyan);
    box-shadow: 0 2px 2px var(--shadow);
    align-items: center;
    z-index: 9999;
}

.mb-header-tab {
    display: flex;
    justify-content: space-between;
}

.mb-header-tab label {
    margin-bottom: 0px;
}

.mb-header-tab i {
    color: var(--white);
    font-size: 24px;
    line-height: 60px;
}


/* search start */

.mbsearch {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    justify-content: space-between;
    overflow: hidden;
    margin: 10px;
    transition: all linear .2s;
}

.mbsearch i {
    line-height: 40px;
    cursor: pointer;
    padding: 0 18px;
}

.mbsearch input {
    font-size: 12px;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    margin-left: 19px;
}

.mbsearch.active {
    width: 360px;
    background-color: var(--white);
    justify-content: end;
}

.mbsearch.active i {
    width: 40px;
    height: 40px;
    background-color: var(--cyan-light);
    color: var(--white);
    font-size: 12px;
    line-height: 40px;
    text-align: end;
}


/* search end */


/* ============== mb top end ============== */


/*  ====================  header section end  ==================== */


/* ==================== news-top section start ====================  */

section.news-area {
    margin-top: 130px;
}


/* ----- news-top start  ----- */

.news-area .news-top {
    margin-top: 20px;
}


/* news-main-lead */

.news-area .news-top .news-main-lead-left .news-left-img {
    width: 400px;
    height: 200px;
}

.news-area .news-top .news-main-lead-left .news-left-img img {
    width: 100%;
    height: 100%;
}

.news-area .news-top .news-main-lead-left .news-main-lead span {
    color: #222;
    font-size: 14px;
    font-weight: var(--font-normal);
    padding: 5px 0px;
    display: block;
}

.news-area .news-top .news-main-lead-left .news-main-lead h2.headline-title {
    color: var(--black-1);
    font-size: 23px;
    line-height: 30px;
    margin: 10px 0;
}


/* news-main-lead-content */

.news-area .news-top .news-main-lead-left .news-main-lead-content {
    padding: 0 20px;
}

.news-area .news-top .news-main-lead-left .news-main-lead-content h2 {
    font-size: 30px;
    color: var(--black-1);
    line-height: 36px;
    margin-bottom: 0;
}


/* news-main-lead-descrption */


/* news-main-lead-right */

.news-area .news-top .news-main-lead-right .news-main-lead-right-img {
    width: 100%;
    height: 120px;
}

.news-area .news-top .news-main-lead-right .news-main-lead-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* -------- news-top end  ---------- */


/* --------- news-bottom start --------- */

.news-bottom .news-bottom-title h2 {
    font-weight: var(--font-bold);
}


/* --------- news-bottom end --------- */


/* -----======= news-left side start =======---- */

.news-left {
    margin-top: 20px;
    border-left: 1px solid #0000001f;
}

.news-ad {
    width: 100%;
    height: 300px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ----======= news-left side end ==========----- */


/* ==================== news-top section end ======================  */


/* ================== callection section start ====================  */

.callection-area {
    margin-top: 60px;
}

.callection-area .callection {
    box-shadow: 0 0 6px var(--shadow);
    padding: 10px;
}

.callection-area .headline-title {
    font-weight: var(--font-bold);
}

.callection-area .callection .callection-img {
    width: 100%;
    height: 200px;
}

.callection-area .callection .callection-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* callection-right */

.callection-area .callection .callection-card-right {
    border-left: 1px solid var(--shadow);
    padding-left: 10px;
}

.callection-area .callection .news-card {
    box-shadow: none;
    border-bottom: 1px solid var(--shadow);
    padding: 0;
    margin-bottom: 10px;
}


/* =================== callection section end =====================  */


/* =================== all-news section start =====================  */

.all-news-area {
    margin-top: 50px;
}

.all-news-card {
    box-shadow: 0 0 4px var(--shadow);
}

section.all-news-area .all-news-content {
    border-bottom: 1px solid var(--shadow);
}


/* section.all-news-area .all-news-bottom .all-news-content {
    height: 130px;
} */

.all-news-img {
    width: 100%;
    height: 200px;
}

.all-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-news-content {
    height: 160px;
    padding: 10px;
    margin: 10px 0;
}


/* =================== all-news section end =====================  */


/* ================ footer section start ==================== */

.footer-area {
    /* background-color: var(--white); */
    /* background-color: #cddfd5; */
    background-color: var(--gray);
    margin-top: 40px;
    color: var(--white);
}

.footer-area .footer-content {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
}

.footer-area .footer-cta .single-cta .cta-text {
    padding-left: 15px;
    display: inline-block;
}

.footer-area .footer-cta .single-cta .cta-text h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.footer-area .footer-cta .single-cta .cta-text span {
    color: var(--white);
    font-size: 14px;
}

.footer-area .footer-content .footer-widget .footer-logo {
    width: 150px;
    height: 51px;
    margin-bottom: 6px;
}

.footer-area .footer-content .footer-widget .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-area .footer-content .footer-widget .footer-logo a {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.footer-area .footer-content .footer-widget .footer-text p {
    color: var(--gray-2);
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 14px;
}

.footer-area .footer-content .footer-widget ul.footer-icons li a i {
    margin-right: 15px;
}

.footer-area .footer-content .footer-widget .footer-app {
    display: flex;
    justify-content: space-between;
}

.footer-area .footer-content .footer-widget .footer-app img {
    width: 120px;
    height: 40px;
}

.footer-area .footer-content .footer-widget .footer-app {
    display: flex;
    justify-content: space-between;
}

.footer-area .footer-content .footer-widget .footer-wedget-headling h3 {
    color: var(--cyan-light);
    font-family: var(--font-family-inter);
    font-size: 20px;
    font-weight: var(--font-bold);
    margin-bottom: 30px;
    margin-top: 10px;
}

.footer-area .footer-content .footer-widget ul {
    padding: 0;
}

.footer-area .footer-content .footer-widget ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-area .footer-content .footer-widget ul li a {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--white);
    transition: all linear .2s;
}

.footer-area .footer-content .footer-widget ul li a:hover {
    color: var(--cyan-light);
    text-decoration: underline;
}

.subscribe {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.footer-area .subscribe input {
    width: 100%;
    height: 45px;
    color: var(--black);
    background: var(--white);
    outline: none;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    padding: 0 10px;
}

.footer-area .subscribe input::placeholder {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--black);
}

.footer-area .subscribe button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--cyan-light);
    padding: 0 15px;
    border: none;
}

.footer-area .subscribe button i {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
}


/* copyright  */

.copyright-area {
    margin: auto;
    background-color: var(--white);
    padding: 15px 0;
    border-top: 1px solid var(--gray);
}

.copyright-area .copyright-text p {
    font-family: var(--font-family-inter);
    font-weight: var(--font-semi-bold);
    font-size: 14px;
    color: var(--black);
    margin: 0;
}

.copyright-area .copyright-text p a {
    font-weight: var(--font-bold);
    color: var(--cyan-light);
}


/* ================ footer section end ====================== */


/* =============================== home page  section start ===================================  */


/* ================================== spken english page start ===================================*/

.spoken-area {
    margin-top: 200px;
}

.spoken-area .offer-content {
    background-color: var(--white);
    box-shadow: 0 0 4px 0 var(--shadow);
}

.spoken-area .offer-content .fa-solid {
    margin-left: 10px;
}

.spoken-area .offer-content li {
    color: var(--black);
    font-size: 14px;
    line-height: 50px;
}

.spoken-area .offer-content li a {
    color: var(--black-6);
    font-size: 13px;
    line-height: 50px;
}

.spoken-area .offer-content li i {
    color: var(--cyan);
    margin-right: 10px;
    transition: all linear .2s;
}

.spoken-area .offer-content a:hover {
    text-decoration: underline;
    color: var(--cyan);
}

.spoken-area .instructor {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 var(--shadow);
}

.instructor-details-content {
    display: flex;
}

.spoken-area .instructor .instructor-img {
    width: 50px;
    height: 50px;
    margin: 8px;
    background-color: var(--black-6);
}

.spoken-area .instructor .instructor-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.spoken-area .instructor .instructor-details {
    margin: 8px;
}

.spoken-area .instructor .instructor-details a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: var(--black);
    transition: all 0.3s linear 0s;
}

.spoken-area .instructor .instructor-details a:hover {
    color: var(--cyan-light);
}

.spoken-area .instructor .instructor-details p {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 5px;
}

.spoken-area .icon-cards {
    display: flex;
    margin: 0 5px;
    justify-content: end;
    right: 0;
    margin-top: 15px;
}

.spoken-area .what-you {
    margin: 20px 0;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 var(--shadow);
}

.spoken-area .what-you .heading h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
}

.spoken-area .what-you .details-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.spoken-area .what-you .details-img img {
    width: 100%;
    height: 100%;
}

.spoken-area .what-you p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    text-align: justify;
    color: var(--black);
}

.spoken-area .what-you .read-more {
    margin-top: 20px;
}

.spoken-area .what-you .read-more ul {
    display: flex;
    justify-content: center;
}

.spoken-area .what-you .read-more ul li {
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    text-align: justify;
    color: var(--black);
}

.spoken-area .what-you .read-more ul li a {
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    margin-left: 5px;
    transition: all linear .2s;
}

.spoken-area .what-you .read-more ul li a:hover {
    text-decoration: underline;
}


/* left */


/*========== buy-course start ========== */

.spoken-area .buy-course {
    /* position: sticky; */
    top: 100px;
}

.spoken-area .buy-course-card:hover h2 {
    color: var(--cyan-light);
}

.spoken-area .buy-course-card .right-side {
    /* background-color: red; */
    padding: 20px;
    box-shadow: 0 0 4px 0 var(--shadow);
}

.spoken-area .buy-course-card .right-side ul li {
    display: flex;
    margin: 20px 0;
    border-bottom: dotted 1px var(--shadow);
}

.spoken-area .buy-course-card .right-side ul li span {
    font-weight: 500;
    font-size: 14px;
    color: var(--black-2);
}

.spoken-area .buy-course-card .right-side ul li i {
    line-height: 22px;
    font-size: 16px;
    color: var(--black-3);
    transition: all linear .2s;
}

.spoken-area .buy-course-card .right-side ul li i:hover {
    color: var(--cyan-light);
}

.spoken-area .buy-course-card .right-side ul li a {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
    margin-right: 15px;
    transition: all linear .2s;
}

.spoken-area .buy-course-card .right-side ul a:hover {
    color: var(--cyan-light);
}

.spoken-area .buy-course-card .right-side-details {
    box-shadow: 0 0 4px 0 var(--shadow);
}

.spoken-area .buy-course-card .right-side-details .right-side-details-content {
    padding: 12px;
    border-bottom: dotted 1px var(--shadow);
    margin-bottom: 10px;
}

.spoken-area .buy-course-card .right-side-details .right-side-details-content:hover a {
    color: var(--cyan-light);
}

.spoken-area .buy-course-card .right-side-details .heading h2 {
    display: inline-block;
    color: var(--black-2);
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    font-weight: 500;
    padding: 10px;
    margin-bottom: 0;
}

.spoken-area .right-side-details .details-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    /* padding: 9px; */
}

.spoken-area .right-side-details .details-img img {
    width: 100%;
    height: 100%;
}

.spoken-area .right-side-details .details-content {
    margin-top: 10px;
}

.spoken-area .right-side-details .details-content a {
    font-weight: 600;
    font-size: 14px;
    color: var(--black-2);
    transition: all linear .2s;
}


/*========== buy-course end ============ */


/* ================================== spken english page end ================================== */


/* ================================ video page  section start ================================  */

.video-area {
    margin-top: 150px;
}

.video-area .container {
    width: 70%;
    margin: 0 auto;
}

.video-area .buy-course {
    top: 100px;
}

.video-area .buy-course-card {
    background-color: var(--white);
    border-radius: 3px;
    margin-top: 50px;
    overflow: hidden;
    transition: all linear .2s;
}

section.video-area .all-news-content {
    padding: 0;
}


/* =========== video cart  section start ==========  */

.video-card-area {
    margin-top: 40px;
}

.video-card-area .buy-course {
    top: 100px;
}

.video-card-area .buy-course-card {
    background-color: var(--white);
    box-shadow: 0 0 3px 0 var(--shadow);
    border-radius: 3px;
    margin-top: 50px;
    overflow: hidden;
    transition: all linear .2s;
}

.video-card-area .buy-course-card:hover {
    box-shadow: 0 0 8px 0 var(--shadow);
}


/* .video-card-area .buy-course-card iframe {
    width: 100%;
    height: 250px;
    overflow: hidden;
} */

.video-card-area .buy-course-card .buy-course-content {
    padding: 20px;
}

.video-card-area .buy-course-card .buy-course-content a {
    display: inline-block;
    color: var(--black-2);
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all linear .2s;
}

.video-card-area .buy-course-card:hover a {
    color: var(--cyan-light);
}


/* =========== video cart  section end ==========  */


/* ================================== video page  section end ===========================  */


/* ================================== account page start ================================== */

.account-area {
    height: 50px;
    background-color: var(--white);
    box-shadow: 0 2px 1px transparent;
}


/* form css start*/

.form-area {
    background-color: var(--white);
    margin-top: 150px;
}

.form {
    display: flex;
    justify-content: center;
}

.form .form-content {
    width: 400px;
    padding: 30px 10px;
}

.form .form-content h1 {
    color: var(--cyan);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form .form-content label {
    color: var(--cyan);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

.form .form-content input {
    width: 100%;
    border: 1px solid var(--white-2);
    outline: none;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 20px;
}

.form .form-content input:focus {
    border-color: var(--cyan);
}

.form .form-content input::placeholder {
    color: var(--black-6);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.form .form-content .forgot {
    position: relative;
}

.form .form-content .forgot .forgot-password {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--cyan);
}

.form .form-content .btn {
    width: 100%;
    height: 42px;
    display: inline-block;
    border-radius: 4px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px;
    outline: none;
    text-align: center;
    margin-bottom: 10px;
}

.form .form-content .create-btn {
    color: var(--cyan);
    background-color: var(--white);
    border: 2px solid var(--cyan-light);
}

.form .form-content .create-btn a {
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
}

.form .form-content .create-btn a:hover {
    color: var(--white);
}

.form .form-content .create-btn:hover a {
    color: var(--white);
}

.form .form-content .form-btn {
    color: var(--white);
    background-color: var(--cyan);
    transition: all linear .2s;
}

.form .form-content .btn:hover {
    color: var(--white);
    background-color: var(--cyan-light);
}

.form p.donot-text {
    text-align: center;
    color: var(--cyan);
    margin: 25px 0 35px;
    border-bottom: 1px solid var(--white-2);
    height: 11px;
}


/* form css end*/


/* ================================== account page end ================================== */


/* ================================== registration page start =========================== */

.registration-area {
    width: 60%;
    background-color: var(--white);
    box-shadow: 0 0 4px var(--shadow);
    border-radius: 3px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 150px;
}

.registration-area .admission-test {
    text-align: center;
}

.registration-area .admission-test strong {
    color: var(--cyan-light);
    font-size: 20px;
    font-weight: 600;
}

.registration-area .form-content {
    width: 100%;
}

.registration-area .form-content h1 {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.registration-area .form-content label {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 20px;
}

.registration-area .form-content .form-control {
    color: var(--black);
    font-size: 14px;
}

.form-content select,
.form-content input {
    width: 100%;
    border: 1px solid var(--white-2);
    border-radius: 3px;
    background-color: transparent;
    outline: none;
    padding: 8px 10px;
    margin-top: 10px;
}


/* .form-content select, */

.form-content input:focus {
    border-color: var(--cyan-light);
}

.registration-area .form-content .form-mark {
    font-size: 16px;
    color: var(--cyan-light);
}

.registration-area .form-content .radio-inline {
    line-height: 25px;
    display: block;
}


/* 
.registration-area .form-content .radio-inline input {
    width: 20px;
}

.registration-area .form-content .form-group input {
    box-shadow: none;
}

.registration-area .form-content .form-group p {
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    text-align: end;
    margin-bottom: 0;
} */

.registration-area .form-content .forgot {
    position: relative;
}

.registration-area .form-content a {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--cyan-light);
    font-size: 14px;
    font-weight: 400;
}

.registration-area .form-content a:hover {
    color: var(--cyan-light);
}

.registration-area .form-content .profile-btn {
    display: inline-block;
}


/* ================================ */

.registration-area .dropify-font-upload:before,
.dropify-wrapper .dropify-message span.file-icon:before {
    content: '\e800'
}

.registration-area .dropify-font-file:before {
    content: '\e801'
}

.registration-area .dropify-wrapper {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 200px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 22px;
    color: #777;
    background-color: #FFF;
    background-image: none;
    text-align: center;
    border: 2px solid #E5E5E5;
    -webkit-transition: border-color .15s linear;
    transition: border-color .15s linear
}

.registration-area .dropify-wrapper:hover {
    background-size: 30px 30px;
    background-image: -webkit-linear-gradient(135deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, #F6F6F6 25%, transparent 25%, transparent 50%, #F6F6F6 50%, #F6F6F6 75%, transparent 75%, transparent);
    -webkit-animation: stripes 2s linear infinite;
    animation: stripes 2s linear infinite
}

.registration-area .dropify-wrapper.has-error {
    border-color: #F34141
}

.registration-area .dropify-wrapper.disabled .dropify-infos-message {
    display: none
}

.registration-area .dropify-wrapper input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5
}

.registration-area .dropify-wrapper .dropify-message {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.registration-area .dropify-wrapper .dropify-message i {
    font-size: 50px;
    color: var(--black-2);
    text-shadow: 4px 4px 4px var(--text-shadow);
}

.registration-area .dropify-wrapper .dropify-message span.file-icon {
    font-size: 50px;
    color: #CCC
}

.registration-area .dropify-wrapper .dropify-message p {
    margin: 5px 0 0
}

.registration-area .dropify-wrapper .dropify-message p.dropify-error {
    color: #F34141;
    font-weight: 700;
    display: none
}

.registration-area .dropify-wrapper .dropify-clear {
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 7;
    top: 10px;
    right: 10px;
    background: 0 0;
    border: 2px solid #FFF;
    text-transform: uppercase;
    font-size: 11px;
    padding: 4px 8px;
    font-weight: 700;
    color: #FFF;
    -webkit-transition: all .15s linear;
    transition: all .15s linear
}

.registration-area .dropify-wrapper .dropify-clear:hover {
    background: rgba(255, 255, 255, .2)
}

.registration-area .dropify-wrapper .dropify-preview {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #FFF;
    padding: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center
}

@-webkit-keyframes stripes {
    from {
        background-position: 0 0
    }
    to {
        background-position: 60px 30px
    }
}

@keyframes stripes {
    from {
        background-position: 0 0
    }
    to {
        background-position: 60px 30px
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg)
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg)
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
}


/* ================================== registration page end ================================== */


/* ================================== category page start ==================================== */


/* ======================= side bar css start ======================== */

.left-menu {
    width: 210px;
    height: 100vh;
    position: fixed;
    background: var(--white);
    overflow: scroll;
    transition: .5s;
    margin-top: 0px;
}

nav.animated {
    position: relative;
    /* width: 240px; */
}


/* width */

.left-menu::-webkit-scrollbar {
    width: 6px;
}


/* Track */

.left-menu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0, 0, 0, 0.3);
}


/* Handle */

.left-menu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--cyan-light);
}

.left-menu ul#sidebar {
    margin: 0;
    padding: 0;
}

.left-menu ul#sidebar li {
    border-left: 5px solid #fff;
    transition: all linear .2s;
}

.left-menu ul#sidebar li a {
    display: block;
    transition: .2s;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 500;
    color: #636262;
    transition: all linear .2s;
}

.left-menu ul#sidebar li a:hover {
    color: var(--cyan-light);
    background: #f7f7f7;
}

ul#sidebar li:hover {
    border-left: 5px solid var(--cyan-light);
}

li.active {
    border-left: 5px solid var(--cyan-light) !important;
}

li.active a {
    color: var(--cyan-light) !important;
    background: #fffbfb;
}

ul#sidebar li a i {
    font-size: 14px;
    padding-right: 7px;
}


/* ================ side bar css end =============== */

.category-wrapper {
    margin-left: 210px;
    margin-top: 124px;
    transition: .5s;
}


/* =================== category mid start =============== */

.category {
    padding-top: 20px;
}

.category .news-mid-play {
    width: 100%;
    height: 130px;
}

.category .news-mid-play img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category .news-mid-card.news-card {
    height: 180px;
}

.category .news-mid-content {
    padding: 10px;
}

.category .category-description a {
    color: var(--black);
    font-size: 16px;
    font-weight: var(--font-normal);
    transition: all linear .1s;
}

.category .category-description a:hover {
    color: var(--cyan-light);
    text-decoration: underline;
}


/* .category right-side  */

.category .trainding .category-card.news-card {
    height: 130px;
}

.category .trainding .news-mid-content {
    padding: 0;
}

.category .trainding .category-description {
    margin-top: 0;
}

.category .trainding .category-description a {
    font-size: 11px;
    ;
}

.category .trainding h2.headline-title {
    font-size: 13px;
    line-height: 22px;
}

.category .trainding .news-mid-play {
    width: 100%;
    height: 90px;
}

.category .trainding .news-mid-play img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* newspaper names  */

.newspaper-names {
    margin-top: 20px;
}

.newspaper-names ul {
    display: flex;
    flex-wrap: wrap;
}

.newspaper-names ul li {
    margin: 0 6px;
}

.newspaper-names ul li a {
    color: var(--black);
    font-size: 14px;
    font-weight: var(--font-semi-bold);
    text-align: justify;
    transition: all linear .1s;
}

.newspaper-names ul li a:hover {
    color: var(--cyan-light);
    text-decoration: underline;
}


/* ========================= category mid start ========================== */


/* ====================================== category page end ================================== */