/* ==========================================================
General Styling
============================================================*/
* {
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
}
.container {
    max-width: 1280px;
    margin:0 auto;
    box-sizing: border-box;
}
.btn {
    display: inline block;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: #ffffff;
    border-radius: 1rem;
    padding: 1.6rem 3.2rem;
    text-decoration: none;
    transition: all .2s;
}
.btn-primary {
    background-color: #ff2059;
    border: 1px solid #ff2059;
}   
.btn-primary:hover {
    background-color: #e61d50;
    border: 1px solid #e61d50;
}
.btn-secondary {
    background-color: #333333;
    border: 1px solid #333333;
}
.btn-secondary:hover {
    background-color: #000000;
    border: 1px solid #000000;
}
.section_header{
    text-align: center;
    
}
.section_hadding{
    font-size: 4rem;
    margin-bottom: 1.2rem;
}
section {
    padding: 7rem 0;
}

/* ==========================================================
Site Header
============================================================*/

.site_header {
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    
}
.header_cover {
    display: flex;
    align-items: center;
    height: 10rem;
}

/* Site Logo */
.site_logo {
    width: 20%;
}

/* Site Navigation */
.site_navbar {
    width: 65%;
}
.site_navbar ul {
    margin: 0;
    padding: 0;
    text-align: right;
}
.site_navbar ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
}
.site_navbar ul li:last-child {
    margin-right: 4rem;
}
.site_navbar ul li a {
    text-decoration: none;
    color: #000000;
    transition: all .2s;
}
.site_navbar ul li a:hover, .site_navbar ul li a.active {
    color: #ff2059;
}

/* Site Register */
.registor_btn-cover {
    width: 17%;
    text-align: right;
}



/* ==========================================================
Hero Section
============================================================*/
.hadding_site{
    font-size: 5rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
}
.para_site{
    color: #f5f5f5;
    margin-bottom: 3rem;
}
.hero_section {
    background-image: url('../images/hero_bg.jpg');
    height: 70rem;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    
}
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0,0,0,.6) , rgba(0,0,0,0));
}
.search_fieldCover {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 40rem;
}
.search_fieldCover input[type="text"] {
    border: none;
    height: 4.4rem;
    padding: 1rem;
    box-sizing: border-box;
    font-size: 1.6rem;
}
.hero_section-cover{
    display: flex;
    align-items: center;
    height: 70rem;
}
.hero_section-cover-content {
    position: relative;
    z-index: 99999;

}
.populer_subject_hadding_cover{
    display: flex;
    justify-content: space-between;
}
.btn_outline{
    display: block;
    background-color: transparent;
    color: rgb(29, 27, 27);
    border: 1px solid rgb(29, 27, 27);
    padding: 0.8rem 1.6rem ;
    text-align: center;

}

.populer_subject_card_cover{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 3rem;
    padding-top: 5rem;
    
}
.populer_subject_card{
    border: 2px solid rgb(236, 231, 231);
    background-color: rgb(236, 231, 231);
    border-radius: 1.8rem;
    height: 21.5rem;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    
   
}
.card-logo, .card-title {
    width: 100%;
}
.card-logo {
    max-width: 6rem;
}

.card-logo img {
    width: 100%;
    height: 100%;
}
.post_card_section{
    background-color: #f5f5f5;
}

.post_card_cover{    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;  
    margin-top: 4rem;
}
.post_card_cover_single{
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 5px 5px 25px rgb(0 0 0 / 8%);  
}
.post_card_main{
    position: relative;

}
.post_card_mid_sec {
    padding: 2rem;
}
.post_card_img_content{
    position: absolute;
    bottom: 2rem;
    left: 0;
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-bottom-right-radius: 2rem;
    border-top-right-radius: 2rem;
}
.post_card_heading {
    margin-bottom: 1rem;
}

.post_card_img img{
    width: 100%;
    height: auto;
}
.post_card_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;

}
.post_card_profile{
    display: flex;
    align-items: center;
}
.post_card_owner_pic{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 1rem;
}
.post_card_owner_pic img{
    width: 100%;
    height: inherit;
    object-fit: cover;
}  

.pos_card_foot {
    padding: 2rem;
    display: flex;
    border-top: 1px solid rgba(0,0,0,.06);
}
.post_card_views {
    margin-right: 1.5rem;
}
.learning_platform_cover{
    display: flex;
}
.right_side_content{
    width: 45%;
}
.right_side_content img{
    width: 100%;
}
.left_side_content{
    width: 55%;
    
}
.left_content_cover{
    margin-left: 7rem;   
}
.left_hadding h2{
    font-size: 3.8rem;
}
.left_logo{
    width: 4rem;
}
.left_logo img{
    width: 100%;
    height: 100%;
}
.left_hadding_content{
    display: flex;
    padding: 1rem 0rem;

}
.left_logo_content{
    margin-left: 3rem;
}
.option_section{
    background-image: url(../images/keyboard.jpg);
    height: 55rem;
    overflow: hidden;
    background-size:cover;
    background-repeat:no-repeat;
    position: relative;
}
.option_header .section_hadding, .option_header p {
    color: #f5f5f5;
}
.option_header{
    margin-top: 2rem;
}
.option_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.30);
    
}
.options_card_cover{
    width: 100%;
    display: flex;
    justify-content:space-between;
  
}
.options_card{
    border: 0.4rem solid rgb(236, 231, 231);
    height: 21.5rem;
    width: 16%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    z-index: 999;
}
.divider_cover {
    margin: 3rem 0rem;
    padding: 4rem 0rem;
}
.divider_cover .divider {
   
    max-width: 30rem;
    height: 0.6rem;
    background-color: #ffffff;
    margin: 0 auto; 
    position: relative;   
}
.divider_cover .divider::before {
    content: '';
    position: absolute;
    top: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 1rem;
    background-color: red;
    

}
.option_card_logo{
    width: 100%;

}
.option_card_logo img{
    width: 6rem;
}
.options_card_content{
    color: #f5f5f5;
    padding: 1rem 0rem;
}
.left_content_cover_two{
    margin-left: 0rem;
}
.left_hadding_two{
    left: 0rem;
}
.left_hadding_para p{
    padding: 0.5rem 2rem;
}
.left_content_button{
    margin-top: 2.8rem;
}
.our_process_sec{
    background-color: blue;
}
.our_process_hadd_content{
    font-size: 4.2rem;
    padding-bottom: 3rem;
}
.our_process_content_cover{
    display: flex;
}
.our_process_left_content{
    width: 55%;
    border-radius: 2rem;
    overflow: hidden;
}
.our_process_left_content video{
    width: 100%;
}
.our_process_right_content{
    width: 45%;
    margin-left: 4rem;
}
.our_process_right_content_subj{
    display: flex;
    align-items: center;
    padding: 1rem 0rem;
}
.our_process_right_content_hadd h3{
    color: #f5f5f5;
    font-size: 4rem; 
    text-align: center;
}
.our_process_right_content_hadd p{
    text-align: center;
    color: #f5f5ff;
}
.our_process_right_content_para{
    color: #f5f5f5;
    margin-left: 3.5rem;
}
.job_selection_cover{
    display: flex;
    justify-content: space-between;
}
.job_selection_single{
    width: 46%;
    display: flex;
    padding: 4rem 1.7rem;
    align-items: center;
    border-radius: 2rem;
    box-shadow: 4px 6px 10px 15px rgb(0 0 0 / 4%);
}
.job_selection_img_cover{
    width: 25%
}
.job_selection_content_cover{
    width: 75%;
    margin-left: 3rem;
}
.job_selection_content h3{
    font-size: 3.2rem;
}
.job_selection_content p{
    padding-top: 1rem;
    padding-bottom: 2rem;

}
.job_selection_img{
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}
.job_selection_img img{
    width: 100%;
    height: inherit;
    object-fit: cover;
}
.job_selection_btn a{
    display: inline-block;
}
.selection_btn{
    padding: 1.2rem 2.4rem;
}
.student_reviews_sec{
    background-color: #f5f5f5;
}
.student_reveiw_hadd h2{
    font-size: 4.5rem;
    padding-bottom: 1rem;
}
.students_reviews_hadd_cover{
    align-items: flex-end;

}
.students_reveiws_cover{
    display: flex;
    justify-content: space-between;
    margin-top: 6.5rem;
}
.student_reveiw_single{
    width: 25%;
    justify-content: center;
    padding: 8rem 3.5rem;
    background-color: #ffff;
    border-bottom-left-radius: 11rem;
    box-shadow: 4px 6px 10px 15px rgb(0 0 0 / 4%);
}
.student_profile_cover{
    display: flex;
    align-items: center;
    justify-content: center;
}
.student_pic{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 1.5rem;
   
}
.student_pic img{
    width: 100%;
    height: inherit;
    object-fit: cover;
}
.student_name h2{
    font-size: 2.5rem;
}
.hr_lines{
    margin: 4.5rem 0rem;
}
.double_qutation{
    width: 3rem;
    position: absolute;
    margin-top: -1.5rem;
}
.double_qutation img{
    width: 100%;
}
.categories_cover{
    width: 100%;
    display: flex;
    margin-top: 8rem;
    justify-content: space-between;
}
.categories_cover_single{
    border-right: 2px solid gray;
    width: 30%;
}
.categories_cover_th{
    border: none;
}
.categories_hadd{
    color:#ff2059;
}
.categories_hadd_content{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.categories_hadd_content p{
    padding: 1rem 0rem;
}
.categories_man_profile{
    display: flex;
    align-items: center;
}
.categories_man_img{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    background-repeat: repeat;
    margin-right: 2rem;
}
.categories_man_img img{
    width: 100%;
    height: inherit;
    object-fit: cover;
}
.footer_site{
    background-color: #f5f5f5;
    margin-top: 23rem;
}
.get_started{
    position: relative;
    height: 30rem;
}
.get_started_cover{
    display: flex;
    background-color: rgb(1, 1, 68);
    align-items: center;
    border-radius: 4rem;
    overflow: hidden;
    position:absolute;
    margin-top: -17rem;
}
.get_started_hadd{
    width: 50%;
    color: #ffff;
    font-size: 2.2rem;
    padding: 8rem;
}
.get_started_content{
    width: 50%;
    color: #ffff;
    padding: 8rem;
}
.get_started_btn{
    display: inline-block;
}
.get_started_button{
    margin-top: 2.5rem;
}

.footer_base_cover{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4rem 0rem;
}
.footer_hadding_cover{
    display: flex;
    width: 30%;
}
.footer_hadding_img{
    width: 4.5rem;
    margin-right: 3rem;
}
.footer_hadding_img img{
    width: 100%;
    height: 100%;
}
.footer_hadding{
    font-size: 5rem;
    font-weight: 600;
}
.footer_links{
    width: 15%;
}
.footer_links h3{
    margin-bottom: 1rem;
}
.footer_links p a{
    text-decoration: none;
    color: black;
}
.footer_copyright_cover{
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.footer_copyright_hadd{
    width: 25%;
}
.footer_base_links_cover{
    display:flex;
    width: 50%;
    justify-content: center;
}
.footer_base_link{
    padding: 1rem;
}
.footer_base_link_img{
    width: 2.2rem;
    
}
.footer_base_link_img img{
    width: 100%;
    height: 100%;
}