@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #223e52;
    --primary-2-color: #637784;
    --secondary-color: #af60c2;
    --secondary2-color: #cfa1dd;
}

/* /-------------/
/---language-----/
/-------------/ */
#language{
    position: fixed;
    right: -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, #223e52,#af60c2);
    right: -54px;
    padding: 0.5rem;
}
#language a:hover{
    right: 0;
}
*{
    /*-------Font-Defult-------*/
    font-family: "Raleway", sans-serif;
    /*-------Onther Font-------*/
    /* font-family: "Overpass Mono", monospace; */
}
a{
    text-decoration: none !important;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #af60c2;
}

::-webkit-scrollbar-thumb{
    background: #223e52;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    right: -50px;
    bottom: 25px;
    z-index: 99999;
    background: #223e52;
    color: #fff;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    transition: all 0.4s;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #af60c2;
}
.btnUpTop.show{
    right: 25px;
}

/*--------Defult--------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

/*--------------------------*/
/*-------Breadcrumbs-------*/
/*------------------------*/
.breadcrumbs {
    padding: 15px 0;
    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: "/";
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}


/*-----------------*/
/*------Home-------*/
/*-----------------*/
#hero{
    background: url(../img/bg-home.jpg) top center repeat fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s;
    text-align: center;
    position: relative;
}
/* 
background-image: linear-gradient(9deg, #2CAC50D6 0%, #223e52 43%); */
#hero:before {
    content: "";
    background-image: linear-gradient(9deg, #ae60c2c0 0%, #223e52e1 45%);
    background-color: transparent;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
#hero *{
    z-index: 99;
}
#hero .container{
    max-width: 1320px;
}
#hero h2{
    color: #fff;
    margin-bottom: 30px;
    font-size: 55px;
    font-weight: 800;
}
#hero p{
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
    width: 60%;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
#hero p span{
    display: block;
    font-size: 15px;
    color: #ffff99;
}
#btn-home{
    display: inline-block;
    color: #fff;
    background: linear-gradient(75deg , #223e52, #af60c2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#btn-home::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background: linear-gradient(75deg , #af60c2, #223e52);
}
#btn-home:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

/*---------------*/
/*---Cloud Svg---*/
/*---------------*/
.cloud-svg{
    z-index: 2;
    pointer-events: none;
    transform: rotate(180deg);
    bottom: -1px;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.cloud-svg svg{
    width: calc(241% + 1.3px);
    height: 149px;
    z-index: -1;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.cloud-svg svg path{
    transform-origin: center;
    transform: rotateY(0deg);
    fill:#ae60c22d;

}

/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav{
    background: #fff;
    transition: all 0.3s;
    z-index: 997;
    width: 100%;
    position: sticky;
    top: 0;
    padding: 1.5rem 0.75rem;
    box-shadow: 0px 2px 15px rgba(109, 110, 110, 0.192);
}
/* #nav.nav-scrolled {
    background: rgba(0, 0, 0, 0.795);
    top: 0;
} */
#nav .container{
    max-width: 1420px;
}
#logo h2{
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
    position: relative;
    margin: 0 15px;
    letter-spacing: 2px;
    padding: 5px 2px;
}
#nav-item:hover{
    color: #af60c2;
}
/* #nav-item.navitem-scrolled{
    color: #000;
} */
.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: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
}
.drop:hover .dropdown{
    top: 110%;
    opacity: 1;
    visibility: visible;
}
.dropdown li{
    padding: 8px 0px 8px  10px;
    transition: all 0.4s;
    font-size: 14px;
    
}
.dropdown li:hover{
    background: linear-gradient(75deg , #223e52, #af60c2);
    color: #fff;
}
.dropdown li a{
    text-decoration: none;
    color: #444444;
    font-family: "Overpass Mono", monospace;
}
.dropdown li:hover a{
    color: #fff;
}
#btn-loginnav{
    display: inline-block;
    color: #fff;
    background: linear-gradient(75deg , #af60c2, #223e52);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 35px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#btn-loginnav::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background: linear-gradient(75deg , #223e52, #af60c2);
}
#btn-loginnav:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

#btn-toggler{
    background: #054a85;
    margin-right: 1rem;
}
#btn-toggler span{
    color: #fff;
}




/*--------------------*/
/* -----about-------- */
/*--------------------*/
#about{
    padding: 6rem 0;
}

#about #text h2{
    color: #af60c2;
}
#about #text p{
    font-size: 17px;
    color: #223e52;
}
#about #text a{
    font-size: 17px;
    display: inline-block;
    margin-left: auto;
    margin-bottom: 2rem;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(75deg , #223e52, #af60c2);
    color: #fff;
    line-height: 28px;
    transition: 0.5s all ease;
}
#about #image img{
    width: 100%;
    max-width: 100%;
}


/*------------*/
/*--Why US---*/
/*------------*/
.whyus {
    padding: 4rem 0;
    position: relative;
    z-index: 100;
    background: #223e52;
}
#whyus .container{
    max-width: 1420px;
}
.whyus .icon-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.whyus .icon {
    margin: 0 auto 20px auto;
    display: inline-block;
    text-align: center;
}
.whyus .icon i {
    font-size: 36px;
    line-height: 1;
    color: #af60c2;
}
.whyus .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.whyus .title a {
    color: #af60c2;
    text-decoration: none;
}
.whyus .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #223e52;
}

/*--------------*/
/*----How To Start----*/
/*--------------*/
.howStart {
    background: url(../img/hero-bg.png) top center repeat fixed;
    transition: 0.3s;
    position: relative;
}
.howStart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #223e52a1;
}
.howStart *{
    z-index: 99;
}
/* #howitwork-bg{
    min-height: 400px;
} */
#howitwork-bg img{
    width: 100%;
}
.howStart .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#223e5298 50%, #223e52e1);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
.howStart .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #af60c298;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.howStart .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.howStart .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.howStart .play-btn:hover::after {
    border-left: 15px solid #af60c2d5;
    transform: scale(20);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
.howStart .content {
    padding: 60px 100px 0 100px;
}
.howStart .content h3 {
    font-weight: 600;
    font-size: 34px;
    color: #af60c2;
}
.howStart .content p {
    font-size: 15px;
    color: #fff;
}

.howStart .accordion {
    padding: 0 100px 60px 100px;
}

#card-howStart{
    padding: 20px;
    border: 0;
    line-height: 24px;
    text-align: left;
    background: #fff;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 4px;
}
#card-howStart .card-header {
    border: none;
    background: #fff;
    padding: 0.5rem;
}
#card-howStart h3{
    font-weight: 400;
    font-size: 34px;
}

#card-howStart p{
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
    padding: 10px 0 0 0;
}
#card-howStart h2{
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}
#card-howStart h2 span{
    color: #af60c2;
    font-weight: 600;
    font-size: 22px;
    padding-right: 10px;
    font-family: "Overpass Mono", monospace;
}
@media (max-width: 769px) {
    .howStart .content {
        padding: 60px 5px 0 5px;
    }
    .howStart .accordion {
        padding: 0 5px 60px 5px;
    }
    #card-howStart{
        padding: 20px 3px;
    }
    #card-howStart .card-header {
        border: none;
        background: #fff;
        padding: 0;
    }
    #card-howStart h2{
        font-size: 12px;
    }
}

/*-----------------*/
/*-----Courses-----*/
/*-----------------*/
#courses{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}
#title-courses{
    margin-top: 30px;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #223e52;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
#title-courses::before{
    content: "";
    height: 16px;
    background: url(../img/prayer-head-shp.png);
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-repeat: no-repeat;
    top: 108%;
    background-position: center;
    background-size: contain;
}

#courses #box{
    min-height: 30rem;
    border-radius: 0 0 30px 30px;
    position: relative;
    font-size: 17px;
    margin-bottom: 2rem;
}
#courses #box #image{
    overflow: hidden;
}
#courses #box #image img{
    transition: 0.3s;
    width: 45%;
}
#courses #box #image img:hover{
    transform: scale(1.1);
}
#courses #box #text{
    background-color: #eee;
    padding: 25px 20px;
    text-align: center;
}
#courses #box #text a#name{
    position: absolute;
    text-decoration: none;
    top: -2px;
    left: -10px;
    color: #af60c2;
    background-color: white;
    padding: 2px 16px;
    border-radius: 14px;
    display: inline-block;
    font-weight: bold;
}
#courses #box #text h2{
    color: #af60c2;
    font-weight: 700;
    font-size: 30px;
}
#courses #box #text p{
    font-size: 17px;
    color: #223e52;
}
#courses #box a#det{
    border-radius: 0;
    padding: 15px 20px;
    background: linear-gradient(75deg , #223e52, #af60c2);
    text-align: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 17px;
    margin-top: -20px;
}
#courses #more{
    text-align: center;
}

#courses #more a {
    display: inline-block;
    color: #fff;
    background: linear-gradient(75deg , #223e52, #af60c2);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#courses #more a::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background: linear-gradient(75deg , #af60c2, #223e52);
}
#courses #more a:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}
/*--------------*/
/*--Call To Action--*/
/*--------------*/
.cta {
    background: linear-gradient(45deg, #223e52c4, #af60c2),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;
}
.cta .cta-btn {
    display: inline-block;
    color: #fff;
    background-color: #223e52;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
    text-decoration: none;
}
.cta .cta-btn::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
    background-color: #af60c2;
}
.cta .cta-btn:hover::before{
    left: 0;
    right: 0;
    opacity: 1;

}

/*------------------*/
/*------Blogs-------*/
/*------------------*/
#blog{
    padding-top: 50px;
    padding-bottom: 50px;
}
h2#head{
    color: #223e52;
    margin-bottom: 30px;
    font-weight: 700;
}
#blog #left #box{
    transition: 0.3s;
    padding: 15px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    margin-bottom: 2rem;
}
#blog #left #box:hover{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#blog #left #box #image{
    margin-bottom: 20px;
}
#blog #left #box #image img{
    width: 100%;
    max-width: 100%;
}
#blog #left #box #text i{
    font-size: 15px;
    display: inline-block;
    margin-left: 4px;
    color: #af60c2;
}
#blog #left #box #text span{
    color: #505050;
}
#blog #left #box #text h4{
    font-size: 20px;
    margin-bottom: 12px;
    color: #212121;
    font-weight: 700;
    margin-top: 5px;
}
#blog #left #box #text h4 a{
    color: #223e52;
    transition: 0.3s;
}
#blog #left #box #text h4 a:hover{
    color: #af60c2;
}
#blog #left #box #text p{
    margin-bottom: 20px;
    color: #505050;
    font-size: 17px;
}
#blog #left #box #text a#more{
    font-size: 17px;
    display: inline-block;
    margin-left: auto;
    margin-bottom: 2rem;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(75deg , #223e52, #af60c2);
    color: #fff;
    line-height: 28px;
    transition: 0.5s all ease;
}
#blog #left #box #text a#more:hover{
    background-color: #af60c2;
}
#blog #right #all{
    overflow: hidden;
}
#blog #right #all #box{
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    display: flex;
    flex-wrap: wrap;
    transition: 0.3s;
    margin-bottom: 2rem;
}
#blog #right #all #box:hover{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#blog #right #all #box #image{
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
}
#blog #right #all #box #image img{
    max-width: 100%;
}
#blog #right #all #box #text{
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
#blog #right #all #box #text h5{
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 700;
}
#blog #right #all #box #text h5 a{
    color: #223e52;
    transition: 0.3s;
}
#blog #right #all #box #text h5 a:hover{
    color: #af60c2;
}
#blog #right #all #box #text i{
    font-size: 15px;
    display: inline-block;
    margin-right: 4px;
    color: #af60c2;
}
#blog #right #all #box #text span{
    color: #505050;
}
#blog #right #all #box #text p{
    font-size: 17px;
    color: #505050;
}
#btn-blogs{
    display: inline-block;
    color: #fff;
    background-color: #223e52;
    padding: 4px 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    line-height: 28px;
    border: 0;
    border-radius: 0;
}
#btn-blogs::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #af60c2;
}
#btn-blogs:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

/*-------------------*/
/*-----Team----*/
/*-------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}
.team .container{
    max-width: 1320px;
}
.section-header {
    text-align: center;
    padding-bottom: 40px;
}
.section-header h2 {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #223e52;
}
.team .member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    padding: 0;
    margin-bottom: 2rem;
}
.team .member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.team .member .member-img {
    position: relative;
    overflow: hidden;
}
.team .member .member-img img{
    width: 100%;
}
.team .member .member-img:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -1px;
    height: 100%;
    width: 100%;
    background: url(../img/team-shape.svg)no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}
.team .member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}
.team .member:hover .social {
    right: 8px;
    opacity: 1;
}
.team .member .social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}
.team .member .social i {
    font-size: 18px;
}
.team .member .member-info {
    padding: 10px 15px 20px 15px;
}
.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #223e52;
}
.team .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #223e52;
}
.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: #5e5e5e;
}
#btn-team{
    display: inline-block;
    color: #fff;
    background: linear-gradient(75deg, rgb(175, 96, 194), rgb(34, 62, 82));
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 35px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#btn-team::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background: linear-gradient(75deg, #223e52, #af60c2);
}
#btn-team:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

/*------------------------*/
/*--Information about academy--*/
/*------------------------*/
#pt-30{
    padding-top: 30px !important;
}

.rs-counter-list {
    border-radius: 30px;
    border: none;
    background: #2a828b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    text-align: center;
    padding: 23px;
    transition: .3s all ease;
}
.count-icon{
    font-size: 55px;
    color: #fff;
}
.counter-number{
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 6px;
}
.counter-desc{
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 20px;
    text-transform: uppercase;

}

/*--------------------*/
/*--------testmonial--------*/
/*--------------------*/
#testmonial{
    padding: 0.5rem 0 ;
    position: relative;
    background: url(../img/testmonial-bg.webp) center top fixed;
}
#testmonial::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 130, 139, 0.9);
}

#testmonial .container{
    max-width: 1420px;
}
#title-testmonial{
    margin-top: 30px;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
#title-testmonial::before{
    content: "";
    height: 16px;
    background: url(../img/prayer-head-shp.png);
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-repeat: no-repeat;
    top: 108%;
    background-position: center;
    background-size: contain;
}
#card-testmonial{
    padding: 2rem 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
}
#card-testmonial .top-img img{
    width: 100px;
    border-radius: 50%;
    margin: auto;
    border: 7px solid #223e52;
    margin-bottom: 2rem;
}

/*------------*/
/*--Coursoll || Testmonial--*/
/*------------*/
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 0;
}
#swiper-slide{
    margin: 0;

}
.swiper-slide #card-testmonial{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-swiper span{
    background: #fff;
    width: 20px;
    height: 20px;
}


/*----------------*/
/*---Contact Us---*/
/*----------------*/
.contact .container{
    max-width: 1420px;
}
.section-header {
    text-align: center;
    padding-bottom: 40px;
}
.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #223e52;
}
.contact .info-box {
    color: #444444;
    background: #fff;
    box-shadow: 1px 1px 20px 4px #ededed;
    padding: 30px;
}
.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #223e52;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
    margin: 20px 0 10px 0;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.contact .form-contact{
    background: #fff;
    box-shadow: 1px 1px 20px 4px #ededed;
    padding: 30px;
    height: 100%;
}
#input-contact{
    padding: 16px 15px;
}

#input-contact, #textarea-contact {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
    margin-bottom: 1.5rem;
}
#input-contact:focus, #textarea-contact:focus {
    border-color: #223e52;
}
#btn-contact {
    display: inline-block;
    color: #fff;
    background-color: #af60c2;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#btn-contact::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #223e52;
}
#btn-contact:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}
/*-----------------*/
/*------Footer-----*/
/*-----------------*/
#footer{
    background: #223e52;
    padding: 60px 0 40px 0;
}

#hedar-footer{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}
#ul-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

#li-footer {
    padding-bottom: 15px;
}
#right{
    padding-right: 7px;
    color: #af60c2;
    font-size: 13px;
    line-height: 1;
}
#link-footer{
    color: rgba(255, 255, 255, 0.815);
    transition: 0.5s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    margin-bottom: 15px;
}
#link-footer:hover {
    color: #fff;
    transform: scale(1.1);
    padding-left: 8px;
}
#p-about{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}
#icon-footer{
    font-size: 16px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 0;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;    
}
#icon-footer:hover{
    background: linear-gradient(75deg, #223e52, #af60c2);
    color: #fff;
    text-decoration: none;
}
#fa{
    
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    
}
#footer-end{
    background: #af60c2;
    padding: 0 0 30px 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
#Copyright{
    padding-top: 30px;
    padding-bottom: 5px;
}
#Copyright span{
    color: #223e52;
}
.credits span{
    color: #223e52;
}


/*----------------------------*/
/*-------Pricing Start-------*/
/*----------------------------*/
#pricing{
    overflow: hidden;
    padding: 90px 0;
    background: #223e52;
}
#pricing .container{
    max-width: 1520px;
}
#title-price{
    margin-top: 30px;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
#title-price::before{
    content: "";
    height: 16px;
    background: url(../img/prayer-head-shp.png);
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-repeat: no-repeat;
    top: 108%;
    background-position: center;
    background-size: contain;
}

#nav-tab{
    border: 0;
}
#btn-tabs{
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin-bottom: 3rem;
    border-bottom: 1px solid #5d6d69;
}
#btn-tab{
    border-radius: 0;
    /* background: #223e52; */
    padding: 10px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: 0.5s;
}
#btn-tab.active{
    border: none;
    background: #af60c2;
}
.pricing .box {
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.pricing .recommended {
    border-color: #223e52;
}
.pricing .recommended-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 13px;
    padding: 3px 25px 6px 25px;
    background: #edfbf0;
    color: #223e52;
    border-radius: 50px;
}
.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #282828;
}
.pricing .box h4 {
    font-size: 42px;
    color: #223e52;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}
.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}
.pricing .box ul {
    padding: 20px 0;
    list-style: none;
    color: #282828;
    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 {
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 50px;
    border: 2px solid #223e52;
    color: #223e52;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}
.pricing .box .btn-buy:hover {
    background: #223e52;
    color: #fff;
}
.pricing .recommended .btn-buy {
    background: #223e52;
    color: #fff;
}


/*----------------------------*/
/*-------Pricing End-------*/
/*----------------------------*/

/*-----------------*/
/*-----Enroll Page------*/
/*-----------------*/
#enroll{
    padding: 85px 0;
    background: #fff;
}
#enroll .container{
    max-width: 1020px;
}
#title-enroll{
    margin-top: 30px;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #223e52;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
#title-enroll::before{
    content: "";
    height: 16px;
    background: url(../img/prayer-head-shp.png);
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-repeat: no-repeat;
    top: 108%;
    background-position: center;
    background-size: contain;
}
#enroll .enroll-form {
    padding: 30px;
    box-shadow: 0 0 0 5px #2b496d6c,
                0 0 0 15px #2b496d50,
                0 0 0 25px #2b496d31;
    border-radius: 10px;
}
@media (max-width:450px) {
    #enroll .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: 5px;
    margin-bottom: 2rem;
    background: #f7f9fc;
}
#select-enroll{
    height: 42px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 5px;
    margin-bottom: 2rem;
    background: #f7f9fc;
}
#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{
    background: #223e52;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    display: inline-block;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 1;
    border-radius: 4px;
}
#btn-enroll::before{
content: "";
position: absolute;
left: 40%;
right: 40%;
z-index: -1;
top: 0;
bottom: 0;
opacity: 0;
transition: 0.4s;
background-color: #af60c2;
}
#btn-enroll:hover::before{
left: 0;
right: 0;
opacity: 1;
}

/*--------------------*/
/*------Blog page-----*/
/*--------------------*/
#blog{
    padding: 80px 0;
}
#blog .container{
    max-width: 1420px;
}
#blog img{
    width: 100%;
}

/*-----Blog's Sidebar--------*/

#col-search-blog{
    border-left: 2px solid #223e52;
}

.blog .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #af60c2;
}
.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
    border-radius: 60px;
}
.blog .sidebar #input-blog {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
.blog .sidebar #input-blog:focus{
    box-shadow: none;
}
.blog .sidebar #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 60px 60px 0;
    line-height: 0;
}
.blog .sidebar #btn-blogSearch:focus{
    box-shadow: none;
}
.blog .sidebar #btn-blogSearch i {
    line-height: 0;
}

.blog .sidebar .sidebar-item {
    margin-top: 40px;
}
.blog .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}

.blog .recent-posts #right #all{
    overflow: hidden;
}
.blog .recent-posts #box{
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    display: flex;
    flex-wrap: wrap;
    transition: 0.3s;
    margin-bottom: 2rem;
}
.blog .recent-posts #box:hover{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.blog .recent-posts #image{
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
}
.blog .recent-posts #image img{
    max-width: 100%;
    height: 100%;
}
.blog .recent-posts #text{
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.blog .recent-posts #text h5{
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 700;
}
.blog .recent-posts #text h5 a{
    color: #223e52;
    transition: 0.3s;
}
.blog .recent-posts #text h5 a:hover{
    color: #af60c2;
}
.blog .recent-posts #text i{
    font-size: 15px;
    display: inline-block;
    margin-right: 4px;
    color: #af60c2;
}
.blog .recent-posts #text span{
    color: #505050;
}
.blog .recent-posts #text p{
    font-size: 15px;
    color: #505050;
}

/*---------------------*/
/*------Plog-Detailes Page-------*/
/*---------------------*/
#blog-detail-page{
    padding: 80px 0;
}
#blog-detail-page .container{
    max-width: 1320px;
}

#blog-detail-page #blog-detail-page {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}
#blog-detail-page .post-img {
    overflow: hidden;
}
#blog-detail-page .post-img img{
    width: 100%;
}
#blog-detail-page .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #1b2f45;
}
#blog-detail-page .meta-top {
    margin-top: 20px;
    color: grey;
}
#blog-detail-page .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
#blog-detail-page .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #223e52cc;
}
#blog-detail-page .meta-top a {
    color: grey;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
#blog-detail-page .meta-top ul li+li {
    padding-left: 20px;
}
#blog-detail-page .content {
    margin-top: 20px;
}
#blog-detail-page .content blockquote {
    overflow: hidden;
    background-color: rgba(27, 47, 69, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
#blog-detail-page .content blockquote p {
    color: #2b180d;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
#blog-detail-page .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1b2f45;
    margin-top: 20px;
    margin-bottom: 20px;
}
#blog-detail-page .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}
#blog-detail-page .content img{
    width: 100%;
}
#blog-detail-page .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(27, 47, 69, 0.15);
}
#blog-detail-page .meta-bottom i {
    color: #38618e;
    display: inline;
}
#blog-detail-page .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
#blog-detail-page .meta-bottom .cats li {
    display: inline-block;
}
#blog-detail-page .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
#blog-detail-page .meta-bottom a:hover{
    color: #223e52;
}
.blog #blog-detail-page .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
#blog-detail-page .meta-bottom .tags li {
    display: inline-block;
}
#blog-detail-page .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
#blog-detail-page .meta-bottom a:hover{
    color: #223e52;
}
#blog-detail-page .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #2b180d;
    content: ",";
}
#blog-detail-page .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#blog-detail-page .post-author img {
    max-width: 120px;
    margin-right: 20px;
    height: 120px;
    border-radius: 150px;
}
#blog-detail-page .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #1b2f45;
}
#blog-detail-page .post-author .social-links {
    margin: 0 10px 10px 0;
}
#blog-detail-page .post-author .social-links a {
    color: rgba(27, 47, 69, 0.5);
    margin-right: 5px;
}
#blog-detail-page .post-author p {
    font-style: italic;
    margin-bottom: 0;
}
/*------Comments-------*/
#blog-detail-page .comments {
    margin-top: 30px;
}
#blog-detail-page .comments .comments-count {
    font-weight: bold;
}
#blog-detail-page .comments .comment {
    margin-top: 30px;
    position: relative;
}
#blog-detail-page .comments .comment .comment-img {
    margin-right: 14px;
}
#blog-detail-page .comments .comment .comment-img img {
    width: 60px;
}
#blog-detail-page .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
#blog-detail-page .comments .comment h5 a {
    font-weight: bold;
    color: #2b180d;
    transition: 0.3s;
    text-decoration: none;
}
#blog-detail-page .comments .comment h5 a:hover {
    color: #223e52;
}
#blog-detail-page .comments .reply {
    padding-left: 10px;
    color: #1b2f45;
}
#blog-detail-page .comments .reply i {
    font-size: 20px;
}
#blog-detail-page .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(27, 47, 69, 0.8);
    margin-bottom: 5px;
}

#blog-detail-page .comments .comment.comment-reply {
    padding-left: 40px;
}
#blog-detail-page .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#blog-detail-page .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}
#blog-detail-page .comments .reply-form p {
    font-size: 14px;
}
#blog-detail-page .comments .reply-form .form-group {
    margin-bottom: 25px;
}
#blog-detail-page .comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
#blog-detail-page .comments .reply-form input:focus,
#blog-detail-page .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #223e52cc;
}
#blog-detail-page .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
#blog-detail-page .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #1b2f45;
}
#blog-detail-page .comments .reply-form .btn-primary:hover {
    background-color: rgba(27, 47, 69, 0.8);
}
/*-----Blog's Sidebar--------*/
#blog-detail-page .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}
#blog-detail-page .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
}
#blog-detail-page .sidebar #input-blog {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
#blog-detail-page .sidebar #input-blog:focus{
    box-shadow: none;
}
#blog-detail-page .sidebar #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 4px 4px 0;
    line-height: 0;
}
#blog-detail-page .sidebar #btn-blogSearch:focus{
    box-shadow: none;
}
#blog-detail-page .sidebar #btn-blogSearch i {
    line-height: 0;
}

#blog-detail-page .sidebar .sidebar-item {
    margin-top: 40px;
}
#blog-detail-page .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}

/*--------------------------*/
/*-------about page---------*/
/*--------------------------*/
#about-pg{
    padding-top: 50px;
    padding-bottom: 50px;
}
#about-pg .row{
    align-items: center;
}
#about-pg #nav-pil .nav-pills{
    margin-bottom: 2rem;
}
#about-pg #nav-pil button.nav-link{
    border-radius: 20px;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 600;
}
#about-pg #nav-pil button.nav-link.active{
    background-color: #223e52;
    position: relative;
}
#about-pg #nav-pil button.nav-link.active::after{
    position: absolute;
    content: "";
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    border: 12px solid;
    border-color: #223e52 transparent transparent ;
}
#about-pg #nav-pil button.nav-link i{
    margin-right: 5px;
}
#about-pg #nav-pil .tab-pane h3{
    color: #212121;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}
#about-pg #nav-pil .tab-pane p{
    font-size: 17px;
    color: #505050;
    line-height: 28px;
}
#about-pg #image{
    position: relative;
    transition: 0.3s;
}
#about-pg #image::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, 0.5);
    transition: 0.3s;
    opacity: 0;
}
#about-pg #image:hover::after{
    opacity: 1;
}
#about-pg #image img{
    width: 100%;
    max-width: 100%;
}
#about-pg #image #overly::before{
    position: absolute;
    content: "";
    top: 50px;
    right: 50px;
    bottom: 50px;
    left: 50px;
    border-top: 5px solid #2a828b;
    border-bottom: 5px solid #2a828b;
    opacity: 0;
    transition: 0.3s;
}
#about-pg #image #overly::after{
    position: absolute;
    content: "";
    top: 50px;
    right: 50px;
    bottom: 50px;
    left: 50px;
    border-right: 5px solid #2a828b;
    border-left: 5px solid #2a828b;
    opacity: 0;
    transition: 0.3s;
}
#about-pg #image:hover #overly::before{
    opacity: 1;
}
#about-pg #image:hover #overly::after{
    opacity: 1;
}
#about-pg .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#223e5298 50%, #223e52e1);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
#about-pg .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #af60c298;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
#about-pg .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
#about-pg .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#about-pg .play-btn:hover::after {
    border-left: 15px solid #af60c2d5;
    transform: scale(20);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*---------------------*/
/*------LoginPage------*/
/*---------------------*/
#loginPage{
    padding: 135px 0;
    background: #f7f9fc;
}
#loginPage .container{
    max-width: 1320px;
}
#formLogin{
    padding: 30px;
    box-shadow: 1px 1px 20px 5px #f5f5f5;
    background: #fff;
}
#loginPage #formLogin a{
    margin: auto;
    margin-bottom: 2rem;
}
#loginPage #formLogin a img{
    width: 80px;
}
#loginPage #formLogin h2{
    margin: auto;
    color: #444444;
    margin-bottom: 2rem;
}
#formLogin label{
    color: #444444;
}
#formLogin #input-login{
    width: 100%;
    padding: 20px 3px;
    background: transparent !important;
    border: 1px solid #dadada;
    color: #444444;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#formLogin #input-login:focus{
    border: 1px solid #223e52;
    box-shadow: none;
}
#btn-login{
    display: inline-block;
    color: #fff;
    background-color: #af60c2;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 70px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 40px;    
    border: 0;
}
#btn-login::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #223e52;
}
#btn-login:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}
#formLogin p{
    color: #444444;
}
#formLogin p a{
    text-decoration: none;
    color: #223e52;
    transition: 0.3s;
}
#formLogin p a:hover{
    color: #70572f;
}
@media (max-width:426px) {
    #formLogin{
        padding: 2rem 0;
    }
}

/*-------------------*/
/*------Register Page----*/
/*-------------------*/
#registerPage{
    padding: 90px 0 108px;
    background: #f7f9fc;
}
#registerPage .container{
    max-width: 1320px;
}
#form-register{
    padding: 30px;
    box-shadow: 1px 1px 20px 5px #f5f5f5;
    background: #fff;
}
#registerPage #form-register a{
    margin: auto;
    margin-bottom: 2rem;
}
#registerPage #form-register a img{
    width: 80px;
}
#registerPage #form-register h2{
    margin: auto;
    color: #444444;
    margin-bottom: 2rem;
}
#form-register label{
    color: #000;
}
#form-register #input-register{
    width: 100%;
    padding: 20px 3px;
    background: transparent !important;
    border: 1px solid #dadada;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#form-register #input-register:focus{
    border: 1px solid #223e52;
    box-shadow: none;
}
#btn-register{
    display: inline-block;
    color: #fff;
    background-color: #af60c2;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 74px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 40px;    
    border: 0;
}
#btn-register::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #223e52;
}
#btn-register:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}
#form-register p{
    color: #444444;
}
#form-register p a{
    text-decoration: none;
    color: #223e52;
    transition: 0.3s;
}
#form-register p a:hover{
    color: #70572f;
}
@media (max-width:426px) {
    #form-register{
        padding: 2rem 0;
    }
}

/*---------------*/
/*-----JOPS------*/
/*---------------*/
#jops{
    padding: 85px 0;
    background: #fff;
}
#jops .container{
    max-width: 1020px;
}
#title-jops{
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #223e52;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
#title-jops::before{
    content: "";
    height: 16px;
    background: url(../img/prayer-head-shp.png);
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-repeat: no-repeat;
    top: 108%;
    background-position: center;
    background-size: contain;
}
#form-jops{
    padding: 30px;
    box-shadow: 0 0 0 5px #2b496d6c,
                0 0 0 15px #2b496d50,
                0 0 0 25px #2b496d31;
    border-radius: 10px;
}
@media (max-width:450px) {
    #form-jops{
        padding: 5px;
    }
}

#input-jops{
    width: 100%;
    padding: 20px 3px;
    background: transparent !important;
    border: 1px solid #dadada;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border-radius: 5x;
}
#input-jops:focus,#select-jops:focus,#textarea-jops:focus,#inputfile-jops:focus{
    border: 1px solid #223e52;
    box-shadow: none;
}

#select-jops{
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #dadada;
    background: transparent !important;
}
#select-jops option{
    background: #223e52;
    color: #fff;
}

#textarea-jops{
    background: transparent !important;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 1rem;
}
#col-file{
    font-size: 14px;
    font-weight: 400;
}
#inputfile-jops{
    background: transparent !important;
    font-weight: 400;
    border: 1px solid #dadada;
    border-radius: 0;
    height: 50px;
    padding: 10px;
    margin-bottom: 0.25rem;
}

#btn-jops{
    display: inline-block;
    color: #fff;
    background-color: #af60c2;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border: 0;
}
#btn-jops::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #223e52;
}
#btn-jops:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}



/*-------------------*/
/*---How It Works Page----*/
/*-------------------*/
#HowWorks{
    padding: 70px 0;
    background: #f7f9fc;
}
#HowWorks .container{
    max-width: 1320px;
}

#howitwork-bg img{
    width: 100%;
}
#HowWorks .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#223e5298 50%, #223e52e1);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
#HowWorks .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #af60c298;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
#HowWorks .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
#HowWorks .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#HowWorks .play-btn:hover::after {
    border-left: 15px solid #af60c2d5;
    transform: scale(20);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
#title-work{
    color: #223e52;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
}


#nav-tab-works{
    border: 0;
}
#nav-tab-works{
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
#btn-tab-works{
    background: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    padding: 12px 0;
    margin-right: 25px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
}
#btn-tab-works.active{
    color: #223e52;
    border-bottom: 3px solid #223e52;
}
#nav-tabContent p{
    font-size: 25px;
    font-weight: 500;
    color: #444444;
}
#nav-tabContent h2{
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #012970;
}
#nav-tabContent h2 i{
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
    color: #af60c2;
}

#HowWorks p{
    font-size: 15px;
    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: #000;
}
#HowWorks ul li{
    margin-bottom: 2rem;
}
#HowWorks ul li span{
    color: #223e52;
}
#HowWorks ul li #span2{
    color: red;
}


/*-------------------*/
/*------FAQS Page----*/
/*-------------------*/
#faqsPage{
    padding: 70px 0;
    background: #f7f9fc;
}
#faqsPage .container{
    max-width: 1320px;
}
#faqsPage .content h3{
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    /* line-height: 42px; */
    font-weight: 700;
    color: #223e52;
}
#card-faq{
    padding: 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    background: #223e52;
    margin-bottom: 20px;
    border-radius: 0;
    cursor: pointer;
}
#faqsPage .card-header{
    border: none;
    padding: 0.5rem;
    border-bottom: 1px solid #058061;
}
#faqsPage p{
    font-size: 15px;
    color: #ffffff;
}
#faqsPage h2{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}


/*-------------------*/
/*------police Page----*/
/*-------------------*/
#policePage{
    padding: 70px 0;
    background: #fff;
}
#policePage .container{
    max-width: 1320px;
    box-shadow: 0 0 0 5px #2b496d6c,
                0 0 0 15px #2b496d50,
                0 0 0 25px #2b496d31;
    border-radius: 10px;
    background: #29425f;
    padding: 30px 0;
}
#policePage h2{
    color: #af60c2;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#policePage p{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#policePage ul{
    list-style: outside;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
#policePage ul li{
    margin-bottom: 1.5rem;
}
#policePage a{
    text-decoration: none;
    color: #af60c2;
    font-weight: 700;
}
#policePage a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}

/*-------------------*/
/*------Tearms Page----*/
/*-------------------*/
#ourTerms{
    padding: 70px 0;
    background: #f7f9fc;
}
#ourTerms .container{
    max-width: 1320px;
    box-shadow: 0 0 0 5px #2b496d6c,
                0 0 0 15px #2b496d50,
                0 0 0 25px #2b496d31;
    border-radius: 10px;
    background: #29425f;
    padding: 30px 0;
}
#ourTerms h2{
    color: #af60c2;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#ourTerms p{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#ourTerms ul{
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
#ourTerms ul li{
    margin-bottom: 1.5rem;
    color: #fff;
}
#ourTerms strong{
    color: #af60c2;
}
#ourTerms a{
    text-decoration: none;
    color: #af60c2;
    font-weight: 700;
}
#ourTerms a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}
#ourTerms span{
    display: block;
    color: #f5f5f5;
}


.text-center {
    text-align: center !important;
}
@media (min-width: 768px){
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
#h2-title-coursesname{
    color: #223e52;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
}
.rs-breadcrumbs .page-title {
    margin: 10px 0;
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#btn-course-deatiles{
    display: inline-block;
    color: #fff;
    background-color: #af60c2;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-radius: 0;    
    border: 0;
}
#btn-course-deatiles::before{
    content: "";
    position: absolute;
    left: 40%;
    right: 40%;
    z-index: -1;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.4s;
    background-color: #223e52;
}
#btn-course-deatiles:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

.desc-text p:before {
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 0;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    color: #af60c2;
    font-weight: bold;
}
.course-page ul li, .desc-text p {
    /* list-style: disc; */
    position: relative;
    padding-left: 30px;
}
.course-main-desc p, .course-main-desc .desc-text div {
    font-size: 19px;
    line-height: 36px;
    margin-bottom: 10px;
}

.course-image img {
    width: 100%;
}

.course-main-desc {
    background-color: #f8f8f8;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.course-main-desc .desc-text div {
    font-size: 19px;
    line-height: 36px;
    margin-bottom: 10px;
}
.course-main-desc .book-freetrial-btn {
    margin-top: 17px;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pt-30 {
    padding-top: 30px !important;
}

/*--------------------*/
/*-----Student Page-------*/
/*--------------------*/
#student-page{
    padding-top: 50PX;
    padding-bottom: 50PX;
}
#student-page .container{
    max-width: 1420px;
}
#student-page .profile-card-5 {
    margin-top: 20px;
}

#student-page .profile-card-5 .btn {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 7px 20px;
}

#student-page .profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;

}

#student-page .profile-card-5 .card-img-block img {
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
}

#student-page .profile-card-5 h5 {
    color: #af60c2;
    font-weight: 600;
}

#student-page .profile-card-5 p {
    font-size: 14px;
    font-weight: 300;
}

#student-page .profile-card-5 .btn-primary {
    background-color: #4E5E30;
    border-color: #4E5E30;
}