/* font family */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* font family */


/* common css start */

:root {
    --black: #000000;
    --green: #21B573;
    --white: #ffffff;
    --red: #FD511A;
    --bg: #bceabc;
    --pop: "Poppins", sans-serif;
    --rob: "Roboto", sans-serif;
}


/* common css end */

body {
    font-family: var(--pop);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}


/* header start  */

header {
    padding: 15px 0;
    background-color: var(--bg);
}

.n_brand {}

.logo {}

.c-nav {}

.logo_h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.menu {}

.menu ul li a {
    padding: 0 20px 0 !important;
    color: var(--black) !important;
}

.menu ul li a:hover {
    color: var(--red) !important;
}

.btn_cm {
    background-color: var(--green);
    border-radius: 33px;
    font-family: var(--rob);
    /* font-size: 16px; */
    /* font-weight: 400; */
    color: var(--white);
}

.btn_sign_in {
    margin-left: 10px;
    padding: 12px 28px;
}

.btn_cm:hover {
    background-color: var(--red);
    color: var(--white);
}

.btn_cm:active {
    background-color: var(--red)!important;
    color: var(--white)!important;
}


/* header end */


/* banner start */

.banner {
    background-color: var(--bg);
    padding-bottom: 65px;
}

.b_text {}

.b_p1 {
    color: var(--red);
}

.b_h1 {
    margin: 10px 100px 20px 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    line-height: 70px;
}

.b_h1 span {
    color: var(--green);
}

.b_p2 {
    line-height: 36px;
}

.btn_get {
    margin-top: 15px;
    padding: 12px 36px;
}

.b_img {}


/* banner end */


/* feature start */

.feature {}

.pb_100 {
    padding-bottom: 100px;
}

.f_item {
    margin: 40px 0 0;
    background-color: var(--bg);
    padding: 55px 0 50px;
    border-radius: 10px;
}

.f_img {
    width: 78px;
    height: 80px;
}

.f_h2 {
    margin: 20px 0 0;
    font-size: 24px;
    font-weight: 500;
    color: var(black);
}

.f_p {}

.f_item:hover {
    background-color: var(--white);
    box-shadow: 0px 20px 40px 0px #0000001A;
    transition: .33s linear;
}


/* feature end */


/* course start */

.course {}

.c-title {}

.c-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
}

.co_item {
    margin: 60px 0 0;
    padding: 25px 20px 30px;
    border-radius: 18px;
    box-shadow: 0px 10px 40px 0px #0000001A;
}

.co_img {}

.co_img img {
    border-radius: 11px;
}

.co_h2 {
    margin: 20px 0 5px;
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
}

.co_p {}

.co_btn {
    margin: 20px 0 30px;
    padding: 8px 28px;
}

.co_footer {}

.co_left img,
.co_right img {}

.co_left span,
.co_right span {
    font-weight: 500;
}


/* course end */


/* testimonial start */

.testimonial {
    padding-bottom: 100px;
}

.t_item {
    margin-top: 60px;
}

.t_img {}

.t_img img {
    width: 100%;
}

.t_text {}

.t_text p {}


/* testimonial end */


/* footer top start */

.footer_top {
    padding: 55px 0 55px;
    background-color: #282531;
}

.ft_details {
    padding-right: 120px;
}

.ft_details p {
    color: var(--white);
    line-height: 30px;
}

.ft-links {}

.ft-links h2 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 30px;
}

.ft-links ul li a {
    margin-bottom: 8px;
    display: block;
    color: var(--white);
    text-decoration: none;
}


/* footer top end */


/* footer start */

footer {
    padding: 20px 0 30px;
    background-color: #282531;
}

footer p {
    color: var(--white);
    line-height: 30px;
}

footer a {
    color: var(--white);
}


/* footer end */