/* Css Variables */
:root {
    --golden: #d4af37;
    --text: #ffffff;
    --btn_color: #c82f32;
    --font_style: "Merriweather";
}
body {
    font-family: "Open Sans";
}
.main_container {
    background: #000;
    /*background-image: url(images/moon.png);*/
    /*background-position: right;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*padding-top: 70px;*/
    padding-bottom: 70px;
    /*background-attachment: fixed;*/
}

/* Basic section css start */
.basic_section {
    padding-top: 50px;
}
.basic_section h1 {
    text-align: center;
    font-size: 52px;
    line-height: 62px;
    font-weight: 400;
    color: var(--text);
    font-family: var(--font_style);
    margin-bottom: 10px;
}

.card-body a {
    text-decoration: none;
}

.basic_section span {
    color: var(--golden) !important;
}



.basic_section p {
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: var(--text);
    font-family: "Open Sans";
}
/* Basic Section Css End */

/* language Section Css */
.language_section h3 {
    text-align: center;
    padding-bottom: 27px;
    font-size: 32px;
    line-height: 62px;
    font-family: var(--font_style);
    color: var(--text);
}

.language_section span {
    color: #fff !important;
}

.c_questions {
    margin-bottom: 50px;
}
.c_questions p, .c_content p {
    color: #fff;
    margin-bottom: 5px;
}

.c_content_wrap {
    margin: 50px 0;
}

#countdown {
    display: flex;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}

#countdown div {
    font-size: 2rem;
    padding: 0.5rem;
    margin: 0.5rem;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

.c_timer label {
    text-align: center;
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 22px;
}


.c_content_wrap h2 {
    color: #ffff;
    text-align: center;
    font-weight: 400;
    font-family: "Merriweather", serif;
    font-size: 52px;
}

/* language Section Css End */

/* Button CSS */
.buy_now a {
    border: none;
    padding: 15px 35px;
    outline: none;
    color: var(--text);
    font-size: 16px;
    background-color: var(--btn_color);
    border-radius: 25px;
    box-shadow: 0px 0px 25px 0px var(--btn_color);
    margin-top: 10px;
    margin-bottom: 35px;
}
.buy_now {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Button Css End */

/* Course Section Css */
.course_contents .card {
    background-color: #141414;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.course_contents .card-title {
    margin-bottom: 10px;
}
.course_contents .card-title a {
    color: var(--text);
    line-height: 45px;
    font-family: var(--font_style);
    font-size: 24px;
}
.course_contents .card-text {
    color: var(--golden);
    line-height: 35px;
    font-family: var(--font_style) !important;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
}
.img_area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.badges_area {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 58.85%, #000000 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.41);
    border-radius: 50px;
    font-size: 14px;
    padding: 4px 13px;
    color: #fff;
    font-weight: 300;
    margin: 0 2px;
}
/* Course Section Css End*/

/* Horizontal Line Css */
hr {
    border: 1px solid var(--text);
    opacity: 0.2;
    margin: 40px 0px;
}
/* Horizontal Line Css End */

.category_msg {
    text-align: center;
    color: #fff;
    font-size: 20px;
    border: 1px solid #d4af37;
    padding: 10px 0;
    min-width: 550px;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .basic_section p {
        font-size: 18px;
    }
    .basic_section h1 {
        font-size: 35px;
    }
}
