@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
html{
    scroll-behavior: smooth;
    direction: rtl;
}

.font{
    font-family: "Raleway", sans-serif;
}

/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background: #dde289;
}

::-webkit-scrollbar-thumb{
    background: #256460;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    right: -50px;
    bottom: -50px;
    z-index: 99999;
    background: #256460;
    color: #fff;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    transition: all 0.4s;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #256460cc;
}
.btnUpTop.show{
    bottom: 20px;
    right: 20px;
}


/*---Hr----*/
#hr-page{
    height: 1px;
    width: 90%;
    background: #1a5855;
    margin: auto;
}

/*------Pages-------*/
/* .page{
    background: url(../img/hero-bg.png) fixed;
} */


/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav{
    background: transparent;
    width: 100%;
    transition: all 0.3s;
    z-index: 997;
    padding: 24px 0;
}
@media (max-width: 991px){
    #nav{
        background: #143b39;
        padding: 10px;
    }
}
#nav.sticked{
    background: #143b39;
    padding: 0px;
}
#nav .container{
    max-width: 1320px;
}
img#logo{
    mix-blend-mode: screen;
}
#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: all 0.3s ease 0s;
    position: relative;
    padding: 10px 0px 10px 30px;
}
#nav-item:hover{
    color: #fff;
}
#nav-item::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 0;
    right: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 9px;
}
#nav-item:hover::before{
    width: 60%;
}
.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: 280px;
    top: 140%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 99;
    text-align: right;
}
.drop:hover .dropdown{
    top: 110%;
    opacity: 1;
    visibility: visible;
}
.dropdown li{
    padding: 8px 5px;
    transition: all 0.4s;
}
.dropdown li:hover{
    background: #c7ce4f;
    color: #000;
}
.dropdown li a{
    text-decoration: none;
    color: #444444;

}
.dropdown li:hover a{
    color: #000;
}

#trail-btn-nav{
    color: #fff;
    background: transparent;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 0.3s ease-in-out 0s;
    font-weight: 500;
    line-height: 1;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}
#trail-btn-nav:hover{
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}
#btn-toggler{
    background: #29746f;
    margin-left: 1rem;
}
#btn-toggler span{
    color: #fff;
}

.language {
    font-size: 13px;
    line-height: 150%;
    letter-spacing: -.143px;
    text-transform: uppercase;
    display: flex;
    gap: 24px;
    border-right: 1px solid #fff;
    padding: 0 32px 0 75px;
    height: 16px;
    color: #ffffffb3;
    font-weight: 700;
}
.language a{
    text-decoration: none;
    color: #ffffffb3;
    transition: 0.3s;
}
.language a:hover{
    text-decoration: none;
    color: #fff;
}
.language .english{
    color: #fff;
    font-weight: 700;
}

/*-----------*/
/*----Home---*/
/*-----------*/
.home {
    background-attachment: fixed;
    text-align: right;
}

.home {
    width: 100%;
    min-height: 100vh;
    background: url(../img/home-page.jpg) top center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    z-index: 3;
}
.home:before {
    position: absolute;
    content: "";
    background: #1b453869;
    inset: 0;
}

@media (min-width: 1034px){
    .home:after {
        position: absolute;
        content: "";
        width: 40%;
        background: #29746f;
        top: 0;
        bottom: 0;
    }
}
.home .container {
    z-index: 1;
    max-width: 1320px;
}
.home h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    font-family: "Raleway", sans-serif;
}
.home blockquote {
    color: #fff;
    padding-right: 20px;
    font-size: 15px;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    border-right: 2px solid #dde289;
    margin: 40px 0;
}
.home .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #000;
    background: #dde289;
    text-decoration: none;
}
.home .btn-get-started:hover {
    text-decoration: none;
    background: #dde289cc;
}
.home .btn-watch-video {
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    margin-right: 25px;
    color: rgba(255, 255, 255, 0.7);
}
.home .btn-watch-video i {
    color: #dde289;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-left: 8px;
}
.home .btn-watch-video:hover {
    color: #fff;
    text-decoration: none;
}

/*--------Media Btns----------*/

@media (max-width: 425px){
    .home .btn-get-started{
        font-weight: 400;
        font-size: 12px;
        padding: 12px 20px;
    }
    .home .btn-watch-video{
        font-size: 13px;
        font-weight: 500;
        margin-left: 18px;
    }
}

/*-----Modal Video------*/
.modal{
    background: rgb(0, 0, 0, 0.9);

}
#modal-video{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8rem 0;
}
/*--------Media video---------*/
@media (max-width: 1034px){
    #video-home{
        width: 100%;
    }
}
@media (min-width: 1034px){
    #video-home{
        width: 60%;
    }
}
#close{
    color: #fff;
    opacity: 1;
    font-size: 25px;
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}


/*-----------------*/
/*-----About-------*/
/*-----------------*/
.about{
    background-color: #f6fffe;
    padding: 80px 0;
    text-align: right;
}
.about .container{
    max-width: 1320px;
}
.about img{
    height: 100%;
}
.about .content h3 {
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
    color: #1b2f45;
}
.about .content p {
    margin: 30px 0;
    color: #29486a;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li {
    padding: 0 26px 15px 0;
    position: relative;
    font-size: 15px;
    font-weight: 600;
}
.about .content ul i {
    position: absolute;
    font-size: 20px;
    right: 0;
    top: -3px;
    color: #29746f;
}

/*--------------*/
/*---Why_Us-----*/
/*--------------*/
#why-us {
    overflow: hidden;
    padding: 80px 0;
    padding-bottom: 0;
    color: #000;
    text-align: right;
}
#why-us .container {
    max-width: 1320px;
}
.section-header {
    text-align: center;
    padding-bottom: 30px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 2px;
    background: #29746f;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#why-us img{
    width: 100%;
    height: 100%;
}

#why-us .content{
    background-color: #256460;
    padding: 10rem 0;
}
#btn-prev i, #btn-next i{
    color: #fff;
    font-size: 30px;
}
#why-us h3 {
    font-size: 24px;
    font-weight: 700;
    color: #c7ce4f;
}
#why-us h4 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-family: "Raleway", sans-serif;
}
#why-us p{
    color: #fff;
}
#carousel-indicators{
    bottom: -100px;
}
#carousel-indicators li {
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    z-index: -1;
}


/*-------------------*/
/*-----Courses------*/
/*-------------------*/
#courses{
    padding: 85px 0;
    background: #fff;
}
#courses .container{
    max-width: 1320px;
}
#courses .icon-box {
    text-align: center;
    background: #f7fcfc;
    padding: 80px 20px;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: -3px 2px 1px -2px #29746f;
    margin-bottom: 2rem;
}
#courses .icon-box:hover {
    background: #29746f;
    box-shadow: -5px 2px 1px -2px #929912;
    border-color: #dde289;
}
#courses .icon-box .icon {
    margin: 0px auto 20px;
    width: 64px;
    height: 64px;
    background: #2a8882;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

#courses .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}
#courses .icon-box:hover .icon::before {
    background: #dde289;
}
/* #courses .icon-box .icon i {
    color: #1b2f45;
    font-size: 28px;
}
#courses .icon-box:hover .icon i {
    color: #fff;
} */

#courses .icon-box .icon img{
    margin: auto;
}
#courses .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}
#courses .icon-box h4 a {
    color: #1b2f45;
    text-decoration: none;
}
#courses .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0px;
    color: #1b2f45;
}
#courses .icon-box:hover h4 a ,#courses .icon-box:hover p{
    color: #fff;
}
#btn-courses{
    background: #29746f;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}
#btn-courses:hover{
    background: #c7ce4f;
}



/*----------------*/
/*------Blogs-----*/
/*----------------*/
#blog{
    overflow: hidden;
    padding: 80px 0;
    padding-bottom: 0;
    color: #000;
    background: #f7f9fc;
    text-align: right;
}
#blog .container {
    max-width: 1320px;
}

#blog .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
#blog .post-box .post-img {
    overflow: hidden;
    position: relative;
}
#blog .post-box .post-img img{
    transition: 0.5s;
}
#blog .post-box .meta {
    margin-top: 15px;
}
#blog .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: #29746f;
}
#blog .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
    color: #1b2f45;
}
#blog .post-box .post-title {
    font-size: 18px;
    color: #1b2f45;
    font-weight: 700;
    margin: 15px 0 0 0;
    position: relative;
    transition: 0.3s;
}
#blog .post-box p {
    margin: 15px 0 0 0;
    color: rgba(27, 47, 69, 0.7);
}
#blog .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #29746f;
    margin-top: 15px;
    text-decoration: none;
}
#blog .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}
#blog .post-box:hover img{
    transform: scale(1.2);
}
#blog .post-box:hover .post-title{
    color: #29746f;
}
#blog .post-box:hover .readmore{
    color: #c7ce4f;
}


/*---------------*/
/*-------Team--------*/
/*----------------*/
#team{
    padding: 85px 0;
}
#team .container{
    max-width: 1320px;
}
.team .team-member {
    overflow: hidden;
    background: rgb(255, 255, 255);
}
.team .team-member .member-img {
    position: relative;
    overflow: hidden;
}
.team .team-member .member-img img{
    width: 100%;
}
.team .team-member .member-info {
    padding: 25px 15px 0px;
    text-align: center;
}
.team .team-member .social {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 40px;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
    background: #ffffffd9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team .team-member:hover .social{
    opacity: 1;
}
.team .team-member .social a {
    transition: color 0.3s ease 0s;
    color: #29746f;
    margin: 0px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.team .team-member .social a i {
    line-height: 0;
}
.team .team-member .social i {
    font-size: 18px;
    margin: 0px 2px;
}

/*-------------------*/
/*-------Testmonial--------*/
/*-------------------*/
#testmonoal{
    padding: 85px 0;
    background: #fff;
}
#testmonoal .container{
    max-width: 1420px;
}

#card-testmonoal{
    box-sizing: content-box;
    background: transparent;
    margin-bottom: 1rem;
    border: 0;
    /* background: #f7f9fc; */
}

#card-testmonoal img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 8px solid #fff;
    margin-top: -5.5rem;
}
#card-testmonoal h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #1c2b3a;
}
#card-testmonoal h4{
    font-size: 14px;
    color: #1c2b3a;
    margin: 0;
}
#card-testmonoal p{
    padding: 3rem 1rem;
    font-style: italic;
    line-height: 2rem;
    margin: 15px auto;
    color: #6e6e6e;
    font-style: italic;
    box-shadow: -3px 2px 1px -2px #1a5855;
    background: #f7f9fc;
}
#card-testmonoal p i{
    color: #1a5855;
    font-size: 26px;
}
#btn-testmonoal{
    color: #fff;
    background: #1a5855;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 0;
    transition: all 0.3s ease-in-out 0s;
    font-weight: 500;
    line-height: 1;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}
#btn-testmonoal:hover{
    background: #72c4eb;
}

/*------------*/
/*--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-testmonoal{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-swiper span{
    background: #1a5855;
    width: 20px;
    height: 20px;
}

/*--------------*/
/*-----Contact---*/
/*--------------*/
#contact{
    padding: 85px 0;
    background: #f7f9fc;
}
#contact .container{
    max-width: 1320px;
}
#contact .info-box {
    color: rgb(68, 68, 68);
    padding: 20px;
    width: 100%;
    background: #fff;
    box-shadow: 3px 2px 1px -2px #1a5855;
    text-align: right;
}
#contact .info-box i.fa-solid , #contact .info-box i.fa-regular {
    font-size: 24px;
    color: #1a5855;
    border-radius: 50%;
    padding: 14px;
    float: right;
    background: #f7f9fc;
}
#contact .info-box h3 {
    font-size: 20px;
    color: #1c2b3a;
    font-weight: 700;
    margin: 10px 68px 8px 0px;
}
#contact .info-box p {
    padding: 0px;
    color: #1b2f4580;
    line-height: 24px;
    font-size: 14px;
    margin: 0px 0px 0px 68px;
}
#contact .info-box .social-links {
    margin: 5px 0px 0px 68px;
    display: flex;
}
#contact .info-box .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #1a5855;
    line-height: 1;
    margin-right: 12px;
    transition: all 0.3s ease 0s;
}
#contact .info-box .social-links a:hover {
    color: #1a5855;
}
#contact .php-email-form {
    padding: 30px;
    box-shadow: 3px 2px 1px -2px #1a5855;
    background: #fff;
}
#input-contact,
#textarea{
    padding: 20px 15px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 2rem;
    background: #f7f9fc;
}
#input-contact:focus ,#textarea:focus{
    border: 1px solid #1a5855;
    box-shadow: none;
}
#btn-contact{
    background: #1a5855;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}
#btn-contact:hover{
    background: #c7ce4f;
}

/*----------------*/
/*-----Footer-----*/
/*----------------*/
.footer .footer-content {
    background: #f9fffd;
    background-size: contain;
    padding: 60px 0 30px 0;
    text-align: right;
}
.footer .container{
    max-width: 1320px;
}
.footer .footer-content .footer-info {
    margin-bottom: 30px;
}
.footer .footer-content .footer-info .logo {
    line-height: 1;
    margin-bottom: 25px;
    text-decoration: none;
}
.footer .footer-content .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1b2f45;
    font-family: "Raleway", sans-serif;
    margin-top: 3px;
}
.footer .footer-content .footer-info p {
    font-size: 15px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #1b2f45;
}
.footer .footer-content .social-links a {
    font-size: 14px;
    line-height: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #1b2f4580;
    margin-right: 10px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a5855;
    color: #fff;
    border-radius: 50px;
}
.footer .footer-content .social-links a:hover {
    background-color: #c7ce4f;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}
.footer .footer-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: #29486a;
    position: relative;
    padding-bottom: 12px;
}
.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-content .footer-links ul i {
    margin-right: 2px;
    color: #1a5855;
    font-size: 16px;
    line-height: 0;
}

.footer .footer-content .footer-links ul a {
    color: #1c4947;
    display: inline-block;
    transition: 0.5s;
    line-height: 1;
    text-decoration: none;
}
.footer .footer-content .footer-links ul a:hover {
    margin-left: 0.5rem;
    color: #1a5855;
}
.footer .footer-content .footer-contact p {
    line-height: 26px;
    color: #1b2f45;
}
.footer .footer-legal {
    background: #f7f9fc;
    padding: 30px 0;
}
.footer .footer-legal .credits { 
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
    color: #1b2f45;
}
.footer .footer-legal .credits a{
    color: #1a5855;
    transition: 0.3s;
    text-decoration: none;
}


/*------------------------*/
/*--------Home End--------*/
/*------------------------*/

/*------------------------*/
/*--------Team Page-------*/
/*------------------------*/
.breadcrumbs {
    background: url(../img/home-page.jpg);
    padding: 140px 0px 60px;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.breadcrumbs::before {
    content: "";
    background-color: rgba(27, 47, 69, 0.7);
    position: absolute;
    inset: 0px;
}
.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-family: "Raleway", sans-serif;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px 0px 10px;
    margin: 0px;
    font-size: 16px;
    font-weight: 600;
    color: #c7ce4f;
}
.breadcrumbs ol li + li {
    padding-right: 10px;
}
.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease 0s;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-left: 10px;
    color: rgb(255, 255, 255);
    content: "/";
}



/*--------------------*/
/*-----CoureseDetailes Page---------*/
/*--------------------*/
#course-detail{
    padding: 80px 0;
    text-align: right;
}
#course-detail .container{
    max-width: 1320px;
}

#course-detail .course-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}
.course-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}
.course-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #1b2f45;
}
.course-details .meta-top {
    margin-top: 20px;
    color: grey;
}
.course-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.course-details .meta-top i {
    font-size: 16px;
    margin-left: 8px;
    line-height: 0;
    color: #1a5855cc;
}
.course-details .meta-top a {
    color: grey;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.course-details .meta-top ul li+li {
    padding-right: 20px;
}
.course-details .content {
    margin-top: 20px;
}
.course-details .content blockquote {
    overflow: hidden;
    background-color: rgba(27, 47, 69, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.course-details .content blockquote p {
    color: #2b180d;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
.course-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1b2f45;
    margin-top: 20px;
    margin-bottom: 20px;
}
.course-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}
.course-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(27, 47, 69, 0.15);
}
.course-details .meta-bottom i {
    color: #38618e;
    display: inline;
}
.course-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
.course-details .meta-bottom .cats li {
    display: inline-block;
}
.course-details .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.course-details .meta-bottom a:hover{
    color: #1a5855;
}
.course-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
.course-details .meta-bottom .tags li {
    display: inline-block;
}
.course-details .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.course-details .meta-bottom a:hover{
    color: #1a5855;
}
.course-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #2b180d;
    content: ",";
}

/*-----Courses's Sidebar--------*/
#course-detail .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}
#course-detail .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
}
#course-detail .sidebar #input-courseDetailes {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}
#course-detail .sidebar #input-courseDetailes:focus{
    box-shadow: none;
}
#course-detail .sidebar #btn-courseSearch {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #1a5855;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}
#course-detail .sidebar #btn-courseSearch:focus{
    box-shadow: none;
}
#course-detail .sidebar #btn-courseSearch i {
    line-height: 0;
}

#course-detail .sidebar .sidebar-item {
    margin-top: 40px;
}
#course-detail .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}
#course-detail .categories ul {
    list-style: none;
    padding: 0;
}
#course-detail .categories ul li+li {
    padding-top: 10px;
}
#course-detail .sidebar .categories ul a {
    color: #1b2f45;
    font-size: 15px;
    text-decoration: none;
}
#course-detail .sidebar .categories ul a span {
    padding-left: 5px;
    font-size: 14px;
}
#course-detail .sidebar .recent-posts .post-item {
    display: flex;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
}
#course-detail .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}
#course-detail .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}
#course-detail .sidebar .recent-posts h4 a {
    color: #1b2f45;
    transition: 0.3s;
    text-decoration: none;
}
#course-detail .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #1b2f45;
}
#course-detail .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}
#course-detail .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
}
#course-detail .sidebar .tags ul {
    list-style: none;
    padding: 0;
}
#course-detail .sidebar .tags ul li {
    display: inline-block;
}
#course-detail .sidebar .tags ul a {
    color: #38618e;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid rgba(27, 47, 69, 0.15);
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}
#course-detail .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #1a5855;
    background: #1a5855;
}

/*--------------------*/
/*------Blog page-----*/
/*--------------------*/
#blog{
    padding: 80px 0;
}
#blog .container{
    max-width: 1320px;
}
/*---Blog's card-----*/
.posts-list article {
    height: 100%;
    border-bottom: 1px solid #d6e2ef;
    padding-bottom: 30px;
}
.posts-list .post-img {
    max-height: 240px;
    overflow: hidden;
}
.posts-list .title {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0 0 0;
}
.posts-list .title a {
    color: #1b453f;
    transition: 0.3s;
    text-decoration: none;
}
.posts-list .title a:hover {
    color: #296a65;
}
.posts-list .meta-top {
    margin-top: 20px;
    color: #296a65;
}
.meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.meta-top i {
    font-size: 16px;
    margin-left: 8px;
    line-height: 0;
    color: #296a65cc;
}
.meta-top a {
    color: #296a65;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}
.meta-top ul li+li {
    padding-left: 20px;
}
.posts-list .content {
    margin-top: 20px;
}
.posts-list .read-more a {
    display: inline-block;
    color: #296a65;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}
.posts-list .read-more a:hover {
    color: #1a5855;
}
/*------Btns To auther Pages------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #38618e;
}
.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}
.blog .blog-pagination li a {
    color: #1a5855;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #dbf0fa;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-pagination li.active a, 
.blog-pagination li:hover a {
    background: #1a5855;
    color: #fff;
    text-decoration: none;
}
/*-----Blog's Sidebar--------*/
.blog .sidebar .sidebar-title {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #1b2f45;
}
.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
}
.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: #1a5855;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 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 .categories ul {
    list-style: none;
    padding: 0;
}
.blog .categories ul li+li {
    padding-top: 10px;
}
.blog .sidebar .categories ul a {
    color: #1b2f45;
    font-size: 15px;
    text-decoration: none;
}
.blog .sidebar .categories ul a span {
    padding-left: 5px;
    font-size: 14px;
}
.blog .sidebar .recent-posts .post-item {
    display: flex;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
}
.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}
.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}
.blog .sidebar .recent-posts h4 a {
    color: #1b2f45;
    transition: 0.3s;
    text-decoration: none;
}
.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #1b2f45;
}
.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}
.blog .sidebar .sidebar-item+.sidebar-item {
    margin-top: 40px;
}
.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}
.blog .sidebar .tags ul li {
    display: inline-block;
}
.blog .sidebar .tags ul a {
    color: #38618e;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid rgba(27, 47, 69, 0.15);
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}
.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #1a5855;
    background: #1a5855;
}

/*---------------------*/
/*------Plog-Detailes Page-------*/
/*---------------------*/
#blog-detail{
    padding: 80px 0;
    text-align: right;
}
#blog-detail .container{
    max-width: 1320px;
}

#blog-detail .blog-details {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
}
.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}
.blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: #1b2f45;
}
.blog-details .meta-top {
    margin-top: 20px;
    color: grey;
}
.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #1a5855cc;
}
.blog-details .meta-top a {
    color: grey;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.blog-details .meta-top ul li+li {
    padding-left: 20px;
}
.blog-details .content {
    margin-top: 20px;
}
.blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(27, 47, 69, 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.blog-details .content blockquote p {
    color: #2b180d;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}
.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1b2f45;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}
.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(27, 47, 69, 0.15);
}
.blog-details .meta-bottom i {
    color: #38618e;
    display: inline;
}
.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}
.blog-details .meta-bottom .cats li {
    display: inline-block;
}
.blog-details .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.blog-details .meta-bottom a:hover{
    color: #1a5855;
}
.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}
.blog-details .meta-bottom .tags li {
    display: inline-block;
}
.blog .blog-details .meta-bottom a {
    color: rgba(27, 47, 69, 0.8);
    transition: 0.3s;
    text-decoration: none;
}
.blog .blog-details .meta-bottom a:hover{
    color: #1a5855;
}
.blog .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: #2b180d;
    content: ",";
}
.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
    height: 120px;
    border-radius: 150px;
}
.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #1b2f45;
}
.blog .post-author .social-links {
    margin: 0 10px 10px 0;
}
.blog .post-author .social-links a {
    color: rgba(27, 47, 69, 0.5);
    margin-right: 5px;
}
.blog .post-author p {
    font-style: italic;
    margin-bottom: 0;
}
/*------Comments-------*/
.blog .comments {
    margin-top: 30px;
}
.blog .comments .comments-count {
    font-weight: bold;
}
.blog .comments .comment {
    margin-top: 30px;
    position: relative;
}
.blog .comments .comment .comment-img {
    margin-left: 14px;
}
.blog .comments .comment .comment-img img {
    width: 60px;
}
.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}
.blog .comments .comment h5 a {
    font-weight: bold;
    color: #2b180d;
    transition: 0.3s;
    text-decoration: none;
}
.blog .comments .comment h5 a:hover {
    color: #1a5855;
}
.blog .comments .reply {
    padding-left: 10px;
    color: #1b2f45;
}
.blog .comments .reply i {
    font-size: 20px;
}
.blog .comments .reply i::before{
    transform: rotateY(180deg);
}
.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(27, 47, 69, 0.8);
    margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
    padding-right: 40px;
}
.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}
.blog .comments .reply-form p {
    font-size: 14px;
}
.blog .comments .reply-form .form-group {
    margin-bottom: 25px;
}
.blog .comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
.blog .comments .reply-form input:focus,
.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #1a5855cc;
}
.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}
.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #1b2f45;
}
.blog .comments .reply-form .btn-primary:hover {
    background-color: rgba(27, 47, 69, 0.8);
}


/*-----------------*/
/*---About Page----*/
/*-----------------*/
.call-to-action {
    background: linear-gradient(#1b453ccc, #1b453ccc), url(../img/call-bg.jpg) center center;
    background-size: cover;
    padding: 100px 0;
}
@media (min-width: 1365px){
    .call-to-action {
        background-attachment: fixed;
    }
}
.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}
.call-to-action p {
    color: #fff;
    margin-bottom: 25px;
}
.call-to-action .cta-btn {
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #29746f;
    text-decoration: none;
}
.call-to-action .cta-btn:hover {
    background: #c7ce4f;
}


/*------------------*/
/*-----Pricing------*/
/*------------------*/
#pricing{
    padding: 80px 0;
    text-align: right;
}
#pricing .container{
    max-width: 1320px;
}
#pricing .pricing-item {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    background: #fff;
    height: 100%;
    border-radius: 5px;
}
#pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color: #1a5855;
}
#pricing h4 {
    font-size: 48px;
    color: #1a5855;
    font-weight: 400;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 25px;
}
#pricing h4 sup {
    font-size: 28px;
}
#pricing h4 span {
    color: rgba(108, 117, 125, 0.8);
    font-size: 18px;
}
#pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
}
#pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}
.pricing ul .na {
    color: rgba(108, 117, 125, 0.5);
}
.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 4px;
    color: #1a5855;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    transition: 0.3s;
    border: 1px solid #1a5855;
    text-decoration: none;
}
.pricing .buy-btn:hover {
    background: #1a5855;
    color: #fff;
}
#pricing .pricing-item.featured {
    border-top: 4px solid #1a5855;
}
.pricing .pricing-item.featured .buy-btn ,
.pricing .buy-btn:hover{
    background: #1a5855;
    color: #fff;
}

/*-----------------*/
/*-----Enroll------*/
/*-----------------*/
#enroll{
    padding: 85px 0;
    background: #f7f9fc;
    text-align: right;
}
#enroll .container{
    max-width: 1320px;
}

#enroll .enroll-form {
    padding: 30px;
    box-shadow: 3px 2px 1px -2px #1a5855;
    background: #fff;
}
#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;
    background: #f7f9fc;
}
#select-enroll{
    height: 42px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 2rem;
    background: #f7f9fc;
}
#input-enroll:focus , #select-enroll:focus , #textarea-enroll:focus{
    border: 1px solid #1a5855;
    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 #059652;
}
#btn-enroll{
    background: #1a5855;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}
#btn-enroll:hover{
    background: #c7ce4f;
}

/*---------------------*/
/*------LoginPage------*/
/*---------------------*/
#loginPage{
    padding: 135px 0;
    background: #f7f9fc;
    text-align: right;
}
#loginPage .container{
    max-width: 1320px;
}
#formLogin{
    padding: 30px;
    box-shadow: -3px 2px 1px -2px #1a5855;
    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: 8px 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 #1a5855;
    box-shadow: none;
}
#btn-login{
    background: #1a5855;
    border: 0;
    padding: 5px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 1.5rem;
}
#btn-login:hover{
    background: #c7ce4f;
}
#formLogin p{
    color: #444444;
}
#formLogin p a{
    text-decoration: none;
    color: #1a5855;
    transition: 0.3s;
}
#formLogin p a:hover{
    color: #70572f;
}
@media (max-width:426px) {
    #formLogin{
        padding: 2rem 0;
    }
}

/*-------------------*/
/*------Register Page----*/
/*-------------------*/
#registerPage{
    padding: 109px 0 108px;
    background: #f7f9fc;
    text-align: right;
}
#registerPage .container{
    max-width: 1320px;
}
#form-register{
    padding: 30px;
    box-shadow: -3px 2px 1px -2px #1a5855;
    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: #fff;
}
#form-register #input-register{
    width: 100%;
    padding: 8px 3px;
    background: transparent !important;
    border: 1px solid #dadada;
    font-size: 16px;
    text-align: right;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#form-register #input-register:focus{
    border: 1px solid #1a5855;
    box-shadow: none;
}
#btn-register{
    background: #1a5855;
    border: 0;
    padding: 5px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 1.5rem;
}
#btn-register:hover{
    background: #1a5855;
}
#form-register p{
    color: #444444;
}
#form-register p a{
    text-decoration: none;
    color: #1a5855;
    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: #f7f9fc;
    text-align: right;
}
#jops .container{
    max-width: 1320px;
}

#form-jops{
    padding: 30px;
    box-shadow: -3px 2px 1px -2px #1a5855;
    background: #fff;
}

#input-jops{
    width: 100%;
    padding: 8px 3px;
    background: transparent !important;
    border: 1px solid #dadada;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 0;
}
#input-jops:focus,#select-jops:focus,#textarea-jops:focus,#inputfile-jops:focus{
    border: 1px solid #1a5855;
    box-shadow: none;
}

#select-jops{
    border-radius: 0;
    margin-bottom: 1rem;
    border: 1px solid #dadada;
    background: transparent !important;
}

#textarea-jops{
    background: transparent !important;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dadada;
    border-radius: 0;
}
#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{
    margin-top: 2rem;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    background: #1a5855;
    border: none;
    padding: 0.5rem 2rem;
    transition: 0.4s;
}
#btn-jops:hover{
    background: #c7ce4f;
}
  


/*-------------------*/
/*------FAQS Page----*/
/*-------------------*/
#faqsPage{
    padding: 70px 0;
    background: #f7f9fc;
    text-align: right;
}
#faqsPage .container{
    max-width: 1320px;
}
#card-faq{
    padding: 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    color: #222222;
    text-align: left;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: -3px 2px 1px -2px #1a5855;
    border-radius: 0;
    cursor: pointer;
}
#faqsPage .card-header{
    border: none;
    background: #fff;
    padding: 0.5rem;
}
#faqsPage h3{
    font-weight: 400;
    font-size: 34px;
}
#faqsPage p{
    font-size: 15px;
    text-align: right;
    color: #6c757d;
}
#faqsPage h2{
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/*-------------------*/
/*------howStart-----*/
/*-------------------*/
#howStart{
    padding: 70px 0;
    background: #f7f9fc;
}
#howStart .container{
    max-width: 1320px;
}
#howStart img{
    width: 100%;
    height: 100%;
}
#card-howStart{
    padding: 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    color: #222222;
    text-align: left;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: -3px 2px 1px -2px #1a5855;
    border-radius: 0;
    cursor: pointer;
}
#howStart .card-header{
    border: none;
    background: #fff;
    padding: 0.5rem;
}
#howStart h3{
    font-weight: 400;
    font-size: 34px;
}
#howStart p{
    font-size: 15px;
    text-align: right;
    color: #6c757d;
}
#howStart h2{
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/*-------------------*/
/*-----Student-------*/
/*-------------------*/
#student{
    padding: 70px 0;
    background: #f7f9fc;
}
#student .container{
    max-width: 1320px;
}

#student .student-member{
    margin-bottom: 1.5rem;
}
#student .student-img {
    border-radius: 8px;
    overflow: hidden;
}
#student .student-img img{
    width: 100%;
}
#student .student-info {
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0px 2px 15px rgba( 0, 0, 0, 0.1);
    background: #ffffff;
    margin: -50px 20px 0 20px;
    position: relative;
    border-radius: 8px;
}
#student .student-info h4 {
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 24px;
    color: #485664;
}
#student .student-info span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}

/*-------------------*/
/*------police Page----*/
/*-------------------*/
#ourTerms{
    padding: 70px 0;
    background: #f7f9fc;
    text-align: right;
}
#ourTerms .container{
    max-width: 1320px;
    box-shadow: 3px 2px 1px -2px #1a5855;
    background: #fff;
    padding: 30px 0;
}
#ourTerms h2{
    color: #1a5855;
    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: #fff;
    font-size: 14px;
    font-weight: 600;
}
#ourTerms ul li{
    margin-bottom: 1.5rem;
    color: #000;
}
#ourTerms strong{
    color: #1a5855;
}
#ourTerms a{
    text-decoration: none;
    color: #1a5855;
    font-weight: 700;
}
#ourTerms a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}
#ourTerms span{
    display: block;
    color: #059652;
}

/*-------------------*/
/*------police Page----*/
/*-------------------*/
#policePage{
    padding: 70px 0;
    background: #f7f9fc;
    text-align: right;
}
#policePage .container{
    max-width: 1320px;
    box-shadow: 3px 2px 1px -2px #1a5855;
    background: #fff;
    padding: 30px 0;
}
#policePage h2{
    color: #1a5855;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
#policePage p{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#policePage ul{
    list-style: outside;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
#policePage ul li{
    margin-bottom: 1.5rem;
}
#policePage a{
    text-decoration: none;
    color: #256460;
    font-weight: 700;
}
#policePage a:hover{
    text-decoration: underline 2px solid #1c2b3a;
}
