@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Oswald:wght@200..700&family=Overpass+Mono:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Ruwudu:wght@400;500;600;700&display=swap');

*{
    /*-------Font-Defult-------*/
    font-family: "Ruwudu", sans-serif;
    /*-------Onther Font-------*/
    /* font-family: "Overpass Mono", monospace; */
}
a{
    text-decoration: none !important;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #1977cc;
}

::-webkit-scrollbar-thumb{
    background: #c9a666;
}

/* /-------------/
/---language-----/
/-------------/ */
#language{
    position: fixed;
    left: -90px;
    top: 50%;
    width: 180px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}
#language a{
    display: block;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    background: linear-gradient(75deg, #2c4964,#1977cc);
    left: -54px;
    padding: 0.5rem;
    padding-left: 9.3rem;
}
#language a:hover{
    left: 0;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    right: -50px;
    bottom: 25px;
    z-index: 99999;
    background: #1979cc;
    color: #fff;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    transition: all 0.4s;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #2c4964;
}
.btnUpTop.show{
    right: 25px;
}





/*--------------------------*/
/*-------Breadcrumbs-------*/
/*------------------------*/
.breadcrumbs {
    margin-top: 4rem;
    padding: 30px 0 20px 10px;

    background: #223e52;
    min-height: 40px;
    /* margin-top: 82px; */
    color: #fff;
}
.breadcrumbs .container{
    max-width: 1420px;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}
.breadcrumbs ol li+li {
    padding-left: 10px;
}
.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #ffffff;
    content: "/";
}

/*----------------------*/
/*-----NavBAr-------*/
/*----------------------*/
#nav{
    background: #fff;
    transition: all 0.3s;
    z-index: 997;
    width: 100%;
    padding: 1rem 0.75rem 0.5rem;
    box-shadow: 0px 2px 15px #1979cc85;
}
#nav .container{
    max-width: 1520px;
}

#logo{
    font-size: 25px;
    font-weight: 600;
    color: #2c4964;
}
#logo span{
    color: #1977cc;
}

#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #2c4964;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
    position: relative;
    margin: 0 15px;
    letter-spacing: 1px;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
    text-transform: uppercase;
}
#nav-item:hover{
    color: #1977cc;
    border-color: #1977cc;
}

.drop{
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drop .dropdown{
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: none;
    position: absolute;
    width: 250px;
    top: 150%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
}
.drop:hover .dropdown{
    top: 99%;
    opacity: 1;
    visibility: visible;
}
.dropdown li{
    padding: 8px 0px 8px  10px;
    transition: all 0.4s;
    font-size: 14px;
    font-weight: 600;
}
.dropdown li:hover{
    background: #1977cc;
    color: #fff;
}
.dropdown li a{
    text-decoration: none;
    color: #1977cc;
}
.dropdown li:hover a{
    color: #fff;
}
#nav-item i::before{
    font-weight: 900 !important;
}
#btn-toggle{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border: none;
    background: #1977cc;
}




/*-----------------*/
/*------Home-------*/
/*-----------------*/
#hero{
    background: url(../img/medium-shot-islamic-woman-lifestyle.jpg) top center fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background-position: center; */
}
#hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #ffffff 0%, rgb(225 225 225 / 47%) 100%);
}
#hero .container{
    max-width: 1260px;
}

#hero #hero-text h2{
    font-size: 50px;
    font-weight: 700;
    color: #012970;
    transition: 0.3s;
}
#hero #hero-text p{
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1d2136;
}

#hero #hero-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
    font-weight: 600;
    color: rgb(255 255 255);
    background-color: #012970;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 7px 7px 10px #3f3f3fb2;
    max-width: 200px;
    transition: 0.2s;
}
#hero #hero-text a:hover{
    transform: translate(4px, 14px);
    box-shadow: 2px 2px 2px #3f3f3f85;
}
@media (max-width:770px) {
    #hero{
        text-align: center;
    }
    #hero #hero-text h2{
        font-size: 30px;
    }
    #hero #hero-text a{
        margin: auto;
    }
}

@media (max-width:400px) {
    
    #hero #hero-text p{
        font-size: 15px;
    }
}

/*-------------------*/
/*-------About-------*/
/*-------------------*/
.about {
    padding: 5rem 0;
}
.about .container{
    max-width: 1420px;
}
.about .content {
    background-color: #c9a666;
    padding: 40px;
}
.about h3 {
    font-size: 14px;
    font-weight: 700;
    color: #2c4964;
    text-transform: uppercase;
}
.about h2 {
    font-size: 24px;
    font-weight: 700;
    color: #012970;
}
.about p {
    margin: 15px 0 30px 0;
    line-height: 24px;
    color: #000;
}
.about .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1977cc;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
.about .btn-read-more span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
.about .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}
.about .btn-read-more:hover i {
    transform: translateX(10px);
}

.about img{
    width: 100%;
    height: 103%;
}

/*----------------*/
/*-----Why_Us-----*/
/*----------------*/
#whyus{
    background: #0c2e4b;
}
.back-whyus{
    background: url(../img/ramadan-celebration-digital-art.jpg) center center/cover no-repeat;
    height: 70vh;
    position: relative;
}
.back-whyus::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/splash.jpg) center center/cover no-repeat;
    mix-blend-mode: screen;
}
.title-whyus h2{
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}
.title-whyus p{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
}
#whyus .features img{
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}
#whyus .features h2{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
#whyus .features p{
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}
#whyus .features span{
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

/*-----------*/
/*---Stats----*/
/*-----------*/
.howtostart {
    padding: 4rem 0
}
.howtostart .container{
    max-width: 1420px;
}
#h2-howtostarts{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-howtostarts::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
.howtostart .stats-item {
    padding: 20px 0;
    border-bottom: 1px solid #e4e4e4;
}
.howtostart .stats-item .purecounter {
    min-width: 50px;
}
.howtostart .stats-item span {
    font-size: 40px;
    display: block;
    font-weight: 700;
    color: #0c2e4b;
    line-height: 40px;
}
.howtostart .stats-item span i{
    color: #c9a666;
}
.howtostart .stats-item p {
    margin: 0;
    font-size: 20px;
}
.back-howtostart{
    position: relative;
}
.back-howtostart img:nth-child(2){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}
.howtostart img{
    width: 100%;
    height: 100%;
}



/*-----------------*/
/*--What The Say About Us---*/
/*-----------------*/
#review{
    padding: 4rem 0;
    position: relative;
}
#review .container{
    max-width: 1420px;
}
#h2-review{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-review::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
#p-review {
    margin-bottom: 0;
}
#card-review{
    box-sizing: content-box;
    padding: 30px 60px 30px;
    margin: 30px 0;
    min-height: 200px;
    position: relative;
    background: rgba(255, 255, 255);    
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    border: 0;
}
#card-review img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 6px solid #2c4964;
    
}
#card-review h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #012970;
}
#card-review p{
    font-style: italic;
    margin: 15px auto;
    color: #000;
}
#card-review p i{
    color: #1979cc;
    font-size: 26px;
}

/*------------*/
/*--Coursoll || Review--*/
/*------------*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
#swiper-slide{
    margin: 0;

}
.swiper-slide #card-review{
    display: block;
    width: 80%;
    /* height: 100%; */
    object-fit: cover;
}
.btn-swiper span{
    background: #2c4964;
    width: 20px;
    height: 20px;
}

/*-------------------*/
/*-----Contact-------*/
/*-------------------*/
#contact{
    padding: 70px 0;
}
#contact .container{
    max-width: 1320px;
}
#h2-contact{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-contact::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
#input-contact{
    margin-bottom: 2rem;
    border: 1px solid #c2c2c2;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    padding: 1rem;
}
#textarea-contact{
    border: 1px solid #c2c2c2;
    margin-bottom: 10px;
}
#contact input:focus,#textarea-contact:focus{
    border: 1px solid #0c2e4b;
    box-shadow: none;
    outline: none;
}
#btn-contact {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1977cc;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
    margin-bottom: 1.5rem;
}
#btn-contact span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
#btn-contact i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}
#btn-contact:hover i {
    transform: translateX(10px);
}
#contact #row-top{
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.11);
    margin-bottom: 50px;
    padding-bottom: 2rem;
}
#contact .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #2c4964;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
#contact .btn-read-more span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
#contact .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}
#contact .btn-read-more:hover i {
    transform: translateX(10px);
}
#contact iframe{
    width: 100%;
    height: 100%;
}
#contact-img{
    width: 100%;
}
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}
.contact .info-box i {
    font-size: 32px;
    color: #124364;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #124364;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*-------------------*/
/*------Footer------*/
/*-------------------*/
:root {
    --main-color: #2282f8;
    --hover-color: #0785e0;
}
ul{
    padding-left: 0;
}
li{
    list-style: none;
}

#footer {
    background: #101522;
    color: #fff;
    position: relative;
    background-image: url(../img/islamic-background-eid-mubarak-background-ramadan-kareem-background-free-vector.jpg);
    background-size: cover;
    background-position: center;
}
#footer .container{
    max-width: 1420px;
}
#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer>.row {
    padding: 30px 0 10px 0;
}

#footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000d3;
}

#logo-footer{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}
#logo-footer span{
    color: #1977cc;
}


#footer-logo-logo p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 30px;
    color: #eee;
}

#footer-links h2 {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid var(--main-color);
    color: white;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;

}
#footer-links ul{
    margin-bottom: 1.5rem;
}
#footer-links ul li {
    color: var(--main-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid #594b00;
    transition: 0.3s;
}

#footer-links ul li:hover {
    color: var(--hover-color);
    padding-left: 10px;
}

#footer-links ul li:hover a {
    color: var(--hover-color);
    animation: bouncing-right 1.5s infinite;
    display: inline-block;
}

#footer-links ul li:hover i {
    color: var(--hover-color);
    animation: bouncing-right 1.5s infinite;
}

#footer-links a {
    text-decoration: none;
    transition: 0.3s;
    color: #eee;
}

#footer-links a:hover {
    color: var(--main-color);
}

#footer-links i {
    margin-right: 5px;
    font-size: 14px;
}

#footer-info-contact h2 {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid var(--main-color);
    color: white;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer-info-contact ul li {
    padding: 0.5rem 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
#footer-info-contact ul li i{
    font-size: 18px;
}

.icons-footer {
    display: flex;
    align-items: center;
}

.icons-footer a,
.icons-footer a:hover {
    text-decoration: none;
}

.icons-footer i {
    color: white;
    width: 35px;
    height: 35px;
    background-color: rgb(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: 0.3s;
}

.icons-footer i:hover {
    background-color: var(--main-color);
}

#footer #copy-right {
    margin-top: 30px;
}

#footer #copy-right p {
    font-size: 14px;
    color: #8c8c8c;
    text-align: center;
    margin-bottom: 5px;
}

#footer #copy-right p span {
    color: var(--main-color);
}

#footer #footer-bottom {
    padding: 15px;
}
#footer #social{
    display: flex;
    flex-direction: column;
}
#footer #social ul {
    display: flex;
    position: relative;
    padding-left: 0;
}

#footer #social ul li {
    list-style: none;
}

#footer #social ul li a {
    width: 35px;
    height: 35px;
    background-color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer #social ul li a .icon {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
}

#footer #social ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

#footer #social ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

#footer #social ul li a:hover:before {
    top: 0;
}

#footer #social ul li:nth-child(1) a:before {
    background: #3b5999;
}

#footer #social ul li:nth-child(2) a:before {
    background: #55acee;
}

#footer #social ul li:nth-child(3) a:before {
    background: #0077b5;
}

#footer #social ul li:nth-child(4) a:before {
    background: #dd4b39;
}
@keyframes bouncing-right {

    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-3px);
    }

    40%,
    60% {
        transform: translateX(-8px);
    }
}
/*------------------------------------- */
/* ------------end footer------------- */
/*------------------------------------- */

/*-------------------*/
/*----Course-pAge----*/
/*-------------------*/
#courses{
    padding: 4rem 0;
}
#courses .container{
    max-width: 1320px;
}
#courses #card-courses{
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 11rem 11rem 11rem 0px;
    transition: 0.3s;
    margin-bottom: 2rem;
}
#courses #card-courses:hover{
    background-color: #1977cc;
}
#courses #image{
    overflow: hidden;
}
#courses #image img{
    border-radius: 50%;
    margin-bottom: 10px;
    width: 100%;
    height: 227px;
}
#courses #text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#courses #text h2{
    color: black;
    font-weight: 800;
}
#courses #text p{
    color: #333;
}
#courses #card-courses:hover h2,#courses #card-courses:hover p{
    color: #fff;
}
#courses #more-course a{
    color: white;
    background-color: #0c2e4b;
    border-radius: 50%;
    padding: 1rem;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0;
}
#courses #more-course a:hover{
    background-color: #1977cc;
}
#courses #card-courses:hover #more-course a{
    opacity: 1;
}

/*-------------------*/
/*---How It Works Page----*/
/*-------------------*/
#HowWorks{
    padding: 70px 0;
    background: #f7f9fc;
}
#HowWorks .container{
    max-width: 1320px;
    border: 2px solid #223e52;
}

#howitwork-bg img{
    width: 100%;
}
#title-work{
    color: #223e52;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
}
#HowWorks p{
    font-size: 18px;
    color: #6c757d;
}
#h2-WorkPage{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
#p-WorkPage{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
}
#HowWorks ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #0c2e4b;
}
#HowWorks ul li{
    margin-bottom: 2rem;
}
#HowWorks ul li span{
    color: #223e52;
}
#HowWorks ul li #span2{
    color: #1977cc;
}


/*-------------------*/
/*-----About Page-----*/
/*-------------------*/


/* --------------------------------- */
/* ----------start count---------- */
/* --------------------------------- */
#counts #box-count {
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-top: 0;
    border-radius: 0 0 8rem 8rem;
    padding: 20px 0;
}

#counts #box-count i {
    color: #1977cc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 33px;
    border-radius: 50%;
    margin: 1rem auto;
}

#counts #box-count .num {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #124364;
}

#counts #box-count p {
    font-size: 14px;
    margin: 0;
}
/*--------------*/
/*--Call To Action--*/
/*--------------*/
.cta {
    background: linear-gradient(45deg, #0c2e4bc4, #1977cc),url(../img/about-bg.png) fixed;
    padding: 120px 0;
}
.cta h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}
.cta p {
    color: #000;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
}
.btn-cta-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1977cc;
    box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
.btn-cta-more:hover{
    color: #fff;
}
.btn-cta-more span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}
.btn-cta-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}
.btn-cta-more:hover i {
    transform: translateX(10px);
}


/* --------------------------------- */
/* ----------end count---------- */
/* --------------------------------- */


/*-----------------*/
/*----Teachers-----*/
/*-----------------*/
.team {
    background-color: #f9f9fa;
}
.team .container{
    max-width: 1320px;
}
#h2-teachers{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-teachers::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
.team .member {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px 20px;
    background: #fff;
}
.team .member img {
    max-width: 100%;
    margin: 0 0 30px 0;
}
.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}
.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}
.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}
.team .member .social {
    margin-top: 15px;
}
.team .member .social a {
    color: #919191;
    transition: 0.3s;
}
.team .member .social a:hover {
    color: #0c2e4b;
}
.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}


/*-----------------*/
/*----Student-----*/
/*-----------------*/
.student {
    background-color: #f9f9fa;
}
.student .container{
    max-width: 1320px;
}
#h2-student{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-student::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
.student .member {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px 20px;
    background: #fff;
}
.student .member img {
    max-width: 100%;
    margin: 0 0 30px 0;
}
.student .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}
.student .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}
.student .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}
.student .member .social {
    margin-top: 15px;
}
.student .member .social a {
    color: #919191;
    transition: 0.3s;
}
.student .member .social a:hover {
    color: #0c2e4b;
}
.student .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*---------------*/
/*--Apply Jop--*/
/*---------------*/
#teach-app {
    padding-top: 50px;
    padding-bottom: 50px;
}
#teach-app img {
    width: 20rem;
    max-width: 100%;
}
#form-jop{
    border: none;
    box-shadow: 0px 5px 18px rgba(167, 167, 167, 0.3);
    padding: 1rem;
}
#teach-app #box {
    margin-bottom: 30px;
}

#teach-app #box label {
    color: rgb(0, 0, 0);
}

#teach-app #box input {
    border-radius: 0;
}
#teach-app #box input:focus {
    box-shadow: none;
    border: 2px solid #c9a666;
}
#teach-app #box select {
    border-radius: 0;
}
#teach-app #box select:focus {
    box-shadow: none;
    border: 2px solid #c9a666;
}
#teach-app #box textarea {
    border-radius: 0;
}
#teach-app #box textarea:focus {
    box-shadow: none;
    border: 2px solid #c9a666;
}
#btn-jop{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: auto;
    font-size: 18px;
    color: #fff;
    background-color: #1977cc;
    margin: 10px 0;
    cursor: pointer;
    transition: all .3s ease;
}

/*-------------------*/
/*------Enroll------*/
/*-------------------*/
.enroll-form {
    border: none;
    box-shadow: 0px 5px 18px rgba(167, 167, 167, 0.3);
    padding: 1rem;
}
@media (max-width:450px) {
    .enroll-form{
        padding: 5px;
    }
}
#input-enroll,
#textarea-enroll
{
    padding: 20px 15px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 2rem;
}
#select-enroll{
    height: 42px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 2rem;
}
#input-enroll:focus , #select-enroll:focus , #textarea-enroll:focus{
    border: 1px solid #223e52;
    box-shadow: none;
}
#label-radio{
    font-size: 20px;
    font-weight: 600;
    color: #444444;
}
#enroll #checked-police{
    color: #29746f;
    font-size: 17px;
    font-weight: 600;
}
#enroll #checked-police:hover{
    text-decoration: underline 1px solid #af60c2;
}
#btn-enroll{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: auto;
    font-size: 18px;
    color: #fff;
    background-color: #1977cc;
    margin: 10px 0;
    cursor: pointer;
    transition: all .3s ease;
}

/*-------------------*/
/*------Tearms Page----*/
/*-------------------*/
#ourTerms{
    padding: 70px 0;
    background: #f7f9fc;
}
#ourTerms .container{
    max-width: 1320px;
}
#ourTerms .tearms{
    border: none;
    box-shadow: 0px 5px 18px rgba(167, 167, 167, 0.3);
    padding: 1rem;
}
#ourTerms img {
    width: 20rem;
    max-width: 100%;
}
#ourTerms h2{
    color: #1977cc;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#ourTerms p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#ourTerms ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#ourTerms ul li{
    margin-bottom: 1.5rem;
    color: #000;
}
#ourTerms strong{
    color: #1977cc;
}
#ourTerms a{
    text-decoration: none;
    color: #1977cc;
    font-weight: 700;
}
#ourTerms a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}
#ourTerms span{
    display: block;
    color: #124364;
}

/*-------------------*/
/*------policy Page----*/
/*-------------------*/
#policy{
    padding: 70px 0;
    background: #f7f9fc;
}
#policy .container{
    max-width: 1320px;
}
#policy .tearms{
    border: none;
    box-shadow: 0px 5px 18px rgba(167, 167, 167, 0.3);
    padding: 1rem;
}
#policy img {
    width: 20rem;
    max-width: 100%;
}
#policy h2{
    color: #1977cc;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#policy p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#policy ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#policy ul li{
    margin-bottom: 1.5rem;
    color: #000;
}
#policy strong{
    color: #1977cc;
}
#policy a{
    text-decoration: none;
    color: #1977cc;
    font-weight: 700;
}
#policy a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}
#policy span{
    display: block;
    color: #124364;
}

/*-------------------*/
/*------FAQS Page----*/
/*-------------------*/
#faqsPage{
    padding: 70px 0;
    /* background: #f7f9fc; */
}
#faqsPage .container{
    max-width: 1320px;
}
#faqsPage .content h3{
    margin: 10px 0 20px 0;
    padding: 0;
    font-size: 38px;
    font-weight: 700;
    color: #223e52;
}
#card-faq{
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    border: none;
    padding: 1rem;
    margin-bottom: 20px;
    border-radius: 0;
    cursor: pointer;
}
#faqsPage .card-header{
    border: none;
    border-bottom: 1px solid #e7e7e7;
    padding: 0.5rem;
    background: transparent !important;
}
#faqsPage p{
    font-size: 15px;
    color: #124364;
}
#faqsPage h2{
    font-size: 15px;
    font-weight: 600;
    color: #124364;
}
#faqsPage .collapse.show{
    box-shadow: 0px 5px 18px rgba(167, 167, 167, 0.3);
    background: #fff;
}

/*------------------*/
/*-------Blogs------*/
/*------------------*/
.blogs{
    padding: 3rem 0;
}
.blogs .container{
    max-width: 1320px;
}
#h2-blogs{
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 2rem;
}
#h2-blogs::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #012970;
    bottom: 0;
    left: 0;
}
.blogs .post-item {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    margin-bottom: 2rem;
}
.blogs .post-item .post-img img {
    transition: 0.5s;
    width: 100%;
}
.blogs .post-item:hover .post-img img {
    transform: scale(1.1);
}
.blogs .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #c9a666;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}
.blogs .post-item .post-content {
    padding: 30px;
}
.blogs .post-item .post-title {
    font-size: 24px;
    color: #52565e;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}
.blogs .post-item:hover .post-title{
    color: #c9a666;
}
.blogs .post-item .meta i {
    font-size: 16px;
    color: #c9a666;
}
.blogs .post-item .meta span {
    font-size: 15px;
    color: #838893;
}
.blogs .post-item hr {
    color: #888;
    margin: 20px 0;
}
.blogs .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #838893;
}
.blogs .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}
.blogs .post-item:hover .readmore {
    color: #c9a666;
}

/*------------------*/
/*---Blog-Details---*/
/*------------------*/
.blog-details{
    padding: 3rem 0;
}
.blog-details .container{
    max-width: 1420px;
}
#blog-details-border{
    border-right: 3px solid #124364;
}
#h2-blogdet{
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
#h2-blogdet:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(68, 68, 68, 0.1);
    bottom: 0;
    left: 0;
}
#h2-blogdet:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: #1977cc;
    bottom: 0;
    left: 0;
}
.blog-details .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
    border-radius: 6px;
}
.blog-details #input-blog {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.blog-details #input-blog:focus{
    box-shadow: none;
}
.blog-details #btn-blogSearch {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #223e52;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 6px 6px 0;
    line-height: 0;
}
.blog-details #btn-blogSearch:focus{
    box-shadow: none;
}
.blog-details #btn-blogSearch i {
    line-height: 0;
}

.blog-details .sidebar-item {
    margin-top: 40px;
}


/*------------------*/
/*---Blog-Details---*/
/*------------------*/
.courses-details{
    padding: 3rem 0;
}
.courses-details .container{
    max-width: 1420px;
}
#courses-details-border{
    border-right: 3px solid #124364;
}
#h2-coursedet{
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
#h2-coursedet:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(68, 68, 68, 0.1);
    bottom: 0;
    left: 0;
}
#h2-coursedet:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: #1977cc;
    bottom: 0;
    left: 0;
}
.courses-details .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
    border-radius: 6px;
}
.courses-details #input-course {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.courses-details #input-course:focus{
    box-shadow: none;
}
.courses-details #btn-coursesearch {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #223e52;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 6px 6px 0;
    line-height: 0;
}
.courses-details #btn-coursesearch:focus{
    box-shadow: none;
}
.courses-details #btn-coursesearch i {
    line-height: 0;
}
.courses-details .sidebar-item {
    margin-top: 40px;
}
.courses-details ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
.courses-details ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #000;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
.courses-details ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #124364;
}
#btn-coursesDetails{
    background: #124364;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 10px;
    line-height: 1;
    margin: auto;
    margin-top: 3rem;
}
#btn-coursesDetails:hover{
    background: #c9a666;
}

/*------------------*/
/*-----Pricing------*/
/*------------------*/
#pricing{
    padding: 4rem 0;
    background-color: #f6f8fb;
}
#pricing .container{
    max-width: 1420px;
}
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2d405f;
}
.pricing .box h4 {
    font-size: 42px;
    color: #2d405f;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}
.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}
.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #2d405f;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}
.pricing .box ul li {
    padding-bottom: 16px;
}
.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}
.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}
.pricing .box .btn-buy {
    background: #eceefe;
    color: #2d405f;
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 5px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Krub", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}
.pricing .box .btn-buy:hover {
    background: #2d405f;
    color: #fff;
}
.pricing .featured {
    background: #466393;
    box-shadow: none;
}
.pricing .featured h3, .pricing .featured h4, .pricing .featured h4 span, .pricing .featured ul, .pricing .featured ul .na {
    color: #fff;
}
.pricing .featured .btn-buy {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.pricing .featured .btn-buy:hover {
    background: #fff;
    color: #4e6fa4;
}













/*-----------------------------*/
/*----Login//Register Pages----*/
/*-----------------------------*/
#login{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 50rem;
    margin: auto;
    padding: 70px 50px;
    margin-top: 10rem;
    max-width: 100%;

}
#login #up-form{
    margin-bottom: 15px;
}
#login #up-form img{
    max-width: 96%;
}
#login #form-login h1{
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 40px;
}
#login #form-login #holder{
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid;
    padding-bottom: 3px;
    margin-bottom: 15px;
}
#login #form-login #Remember{
    display: flex;
    align-items: center;
    border: none;
    gap: 10px;
    padding-bottom: 3px;
    margin-bottom: 15px;
}
#login #form-login #Remember label{
    margin: 0;
}
#login #form-login #holder input{
    border: none;
    width: 100%;
}
#login #form-login #holder input:focus-visible{
    border: none;
    outline: none;
}
#login #form-login #holder label{
    margin: 0;
}
#login #form-login #holder i{
    font-size: 12px;
}
#login #log button{
    color: white;
    font-weight: bold;
    background-color: #0077b5;
}
#login #down-form{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#login #Social{
    display: flex;
    align-items: center;
    gap: 10px;
}
#login #Social i{
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#login #Social i.facebokk{
    background-color: #1877f2;
}
#login #Social i.twitter{
    background-color: #1da1f2;
}
#login #Social i.google{
    background-color: #34a853;
}