@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Love+Ya+Like+A+Sister&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

:root{
    --primary-color: #0e5c72;
    --primary-dark-color: #0b4453;
    --accent-color: #c39537;
    --text-color: #343434;
    --text-color-light: #5F5F5F;
    --bg-color: #dbe9f4;
    --white-color: #ffffff;
    --black-color: #000200;
    --Dosis-font: "Dosis", sans-serif;
    --Love-font: "Love Ya Like A Sister", cursive;
    --arabic-font: "Zain", sans-serif;
    --transition: all 0.3s ease-in-out;
    --border-color: rgb(238, 238, 238);
    --border-radius: 10px;
}
.btn_language{
    color: var(--white-color) !important;
    padding: 8px 10px;
    box-shadow: none !important;
    background: var(--primary-color);
    border-radius: 15px 0 0 15px;
    position: fixed;
    top: 50%;
    right: 0;
    font-family: var(--arabic-font);
    transform: translateY(-50%);
    z-index: 999;
    font-size: 20px;
    opacity: 0.4;
    transition: var(--transition);
}
.btn_language:hover{
    opacity: 1;
}
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}
*{
    font-family: var(--Dosis-font);
}
body , main{
    overflow-x: hidden;
}

a{
    text-decoration: none !important;
}
button{
    outline: none !important;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn_up{
    position: fixed;
    bottom: -100px;
    right: 5px;
    z-index: 1000;
    background: transparent !important;
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9999999;
    box-shadow: none !important;
}

.btn_up img{
    max-width: 100%;
}
.btn_up.show{
    animation: btn_top 1s infinite linear both alternate-reverse;
    bottom: 20px;
}
.btn_whatsApp_chat{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: #25d366;
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 30px;
}
.btn_whatsApp_chat:hover{
    color: var(--white-color);
}
.btn_whatsApp_chat:focus{
    box-shadow: 0 0 0 4px rgba(252, 184, 37, 0.1);
}
.btn_whatsApp_chat:active{
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(252, 184, 37, 0.1);
}


.container{
    max-width: 1220px !important;
}


.section_header h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section_header h2 span{
    color: var(--accent-color);
}
.section_header p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: var(--dosis-font);
}

.description{
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
}

/*-------btn_default------*/
.btn_default {
   background-color: transparent;
    overflow: hidden;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--white-color) !important;
    font-family: "Dosis", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 16px;
    margin: 8px;
    letter-spacing: 0px;
    padding: 17px 30px 14px 30px;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: var(--accent-color);
    border-radius: 15px;
}

.btn_default::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.btn_default:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
}
.btn_default:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
}
.blob-dl-btn__inner {
    background: var(--primary-color);
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.blob-dl-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
}
.blob-dl-btn__blobs span {
    background: var(--accent-color);
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.blob-dl-btn__blobs span:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}
.blob-dl-btn__blobs span:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}
.blob-dl-btn__blobs span:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}
.blob-dl-btn__blobs span:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}
.btn_default:hover .blob-dl-btn__blobs span , .btn_second:hover .blob-dl-btn__blobs span {
    transform: translateZ(0) scale(1.7);
}
/*-------btn_second------*/
.btn_second {
   background-color: transparent;
    overflow: hidden;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--white-color) !important;
    font-family: "Dosis", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 16px;
    letter-spacing: 0px;
    padding: 17px 30px 14px 30px;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: var(--primary-color);
    border-radius: 15px;
    margin: 8px;
}

.btn_second::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.btn_second:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
}
.btn_second:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
}

.btn_second .blob-dl-btn__blobs span {
    background: var(--primary-color);
}
.btn_second .blob-dl-btn__inner {
    background: var(--accent-color);
}









.topbar_header{
    padding: 10px 0;
    background: #F0EFEC;
}
.list_contactInfo{
    gap: 1rem;
}
.list_contactInfo li a{
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
}
.list_contactInfo li a i{
    font-size: 20px;
}
.list_contactInfo li a:hover , .list_contactInfo li a i{
    color: var(--accent-color);
}


/*-----------------------*/
/*-------navbar----------*/
/*-----------------------*/
#nav{
    border-bottom: 1px solid #eee;
    background: var(--white-color);
}
/* .navbar-nav .nav-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
} */
#nav-item{
    font-family: var(--Dosis-font);
    color: var(--text-color);
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    transition: var(--transition);
}
#nav-item:hover{
    color: var(--accent-color);
}
.dropdown-menu{
    background-color: var(--white-color);
    border: 1px solid #eee;
    padding: 16px 0;
    min-width: 200px;
    top: 100%;
    border-radius: 15px;
    z-index: 1;
    transition: all .6s ease;
}

#dropdown-menu #nav-item{
    margin: 0 10px;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: 600;
    display: block;
    line-height: 1.1;
    font-size: 18px;
    background: transparent !important;
}
#dropdown-menu #nav-item:hover{
    padding-left: 15px;
}
#dropdown-menu #nav-item:before {
    background-color: var(--accent-color);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}
#dropdown-menu #nav-item:hover:before {
    width: 10px;
}

.navbar-toggler{
    border: 1px solid #eee;
    background: #F0EFEC;
    border-radius: 15px;
    font-size: 30px;
    padding: 7px;
    color: var(--primary-dark-color) !important;
}



/*-----------------------*/
/*------banner_home------*/
/*-----------------------*/
.banner_home{
    background-color: #FFE39F;
    background-image: url(../img/pattern-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 100px;
    position: relative;
    overflow: hidden;

}

.banner_home::before{
    content: '';
    position: absolute;
    display: block;
    inset: 0;
    background: url(../img/hero-bottom-shape-01.png) bottom center/cover no-repeat;
    transition: background 0.3s, opacity 0.3s;
}

.banner_home .adv-bg {
    position: absolute;
    background-color: #02010100;
    background-image: url(../img/hero-bottom-shape-02.png);
    top: 0;
    left: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: inherit;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.rocket_banner{
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 3;
    max-width: 200px;
    animation: rocket_banner 1s ease-in-out infinite both alternate-reverse;
}
@keyframes rocket_banner {
    0%{
        transform: translate(20px , 20px) rotate(25deg);
    }
    100%{
        transform: translate(-50px , 60px) rotate(25deg);
    }
}
.creativity_banner{
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 3;
    max-width: 200px;
    filter: grayscale(100);
    opacity: 0.7;
    animation: creativity_banner 1s ease-in-out infinite both alternate-reverse;
}
@keyframes creativity_banner {
    0%{
        transform: scale(0.8) rotate(-50deg);
    }
    100%{
        transform: scale(1.2) rotate(-50deg);
    }
}


/* content_home */
.content_home{
    position: relative;
    z-index: 9;
}
.subtitle_banner , .subtitle_sec{
    display: inline-flex;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--primary-color);
    margin: 0px 0px 10px 0px;
}

.banner_title , .title_sec{
    font-size: 68px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 72px;
    letter-spacing: 0px;
    color: var(--text-color);
    display: block;
    margin: 0 0 20px;
    clear: both;
}
.title_sec{
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
}
.description_banner{
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
}
.enroll_image_banner{
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    left: -10px;
    width: 150px;
    object-fit: cover;
    object-position: center;
    animation: sgAnimUpDown 2s infinite linear;
    
}
.bird_image_banner{
    position: absolute;
    top: 0%;
    right: 10px;
    width: 150px;
    object-fit: cover;
    object-position: center;
    animation: sgAnimUpDown 2s infinite linear;
}






/*-----------------------*/
/*-------About Us--------*/
/*-----------------------*/
.about_usSec{
    padding: 80px 0 ;
    background-color: var(--white-color);
    background-image: url(../img/monkey.png);
    background-position: 100% 50px;
    background-repeat: no-repeat;
    background-size: 200px auto;
}
.mainabout_image{
    cursor: pointer;
}
.ModalVid_about .modal-content{
    background: transparent !important;
    border: 0 !important;
}
.ModalVid_about .modal-header{
    border: 0 !important;
    padding: 0;

}
.close.close_modal{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    box-shadow: none !important;
    border-radius: 10px 10px 0 10px;
    opacity: 1;
    margin: 0 0 0 auto;
}
.ModalVid_about .modal-body{
    padding: 0;
}
.ModalVid_about video{
    border-radius: 10px 0 10px 10px;
}
.modal-backdrop{
    background: #ffffff;
    opacity: 0.9 !important;
}

/*----------------------*/
/*------coursesSec------*/
/*----------------------*/
.coursesSec{
    position: relative;
    padding: 90px 0 90px;
    border-top: 1px solid #eee;
    background-image: url(../img/tree-doth.png);
    background-position: 0px 100px;
    background-repeat: no-repeat;
    background-size: 200px auto;
}
.coursesSec::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/black-cat.png);
    background-position: 100% 50px;
    background-repeat: no-repeat;
    background-size: 300px auto;
    display: block;
    width: 100%;
    height: 100%;
}
.shape_liqued{
    fill: #F0EFEC;
    height: 30px;
    z-index: -1;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
}
.div_shape{
    transform: rotate(180deg);
    direction: ltr;
    bottom: -1px;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.card_course{
    border: 0;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
    background: transparent;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 10px 3px rgba(222, 222, 222, 0.23);
    -moz-box-shadow: 0 0 10px 3px rgba(222, 222, 222, 0.23);
    box-shadow: 0 0 10px 3px rgba(222, 222, 222, 0.23);
}
.card_course:hover{
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.top_image{
    max-width: 100%;
    height: 300px;
}
.top_image img{
    height: 100%;
}
.cardbody_course {
    /* border-top: 1px solid #eee; */
    padding: 10px;
    background: var(--primary-dark-color);
    border-radius: 15px;
}
.team-item .team-content {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .05));
}
.course_title{
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--white-color);
}
.card_course:hover .course_title{
    color: var(--accent-color);
}
.cardbody_course p{
    color: var(--white-color);
}
.btn_more{
    background: var(--accent-color);
    padding: 0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color) !important;
    max-width: max-content;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}
.btn_more:hover{
    background: var(--primary-color);
}
.svg_more{
    /* fill: #0ea0c9; */
    fill: var(--white-color);
    padding: 10px;
    width: 45px;
}


/* testmonial */
.testimonialsSec{
    position: relative;
    padding: 50px 0;
    background-color: #F0EFEC;
    background-image: url(../img/snake.png);
    background-position: 100% 0px;
    background-repeat: no-repeat;
    background-size: 300px auto;
}

.testimonialsSec .shape_liqued{
    fill: var(--white-color);
}
.swiper_testmonial{
    padding: 30px 0;
}
.card_testmonial{
    background-color: rgba(2, 1, 1, 0);
    background: url(../img/testimonial-shape-yellow.png) center center/contain no-repeat;
    min-height: 480px;
    backdrop-filter: blur(0px);
    padding: 50px 40px 70px;
    border: 0;
}
.image_test{
    border: 5px solid var(--primary-dark-color);
    padding: 5px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white-color);
}
.image_test img{
    width: 100%;
    height: 100%;
}
.reviw_titleName{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--text-color);
}
.subtitle_sec.Jop_name{
    font-weight: 600;
    font-size: 16px;
}
.cardbody_testmonial .description{
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
    margin: -15px 0px 10px;
}
 .ratings {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    gap: 0.1rem;
}
.ratings li{
    font-size: 15px;
    color: #FF9529;
}

/*-----------------------*/
/*--------cta_sec--------*/
/*-----------------------*/
.cta_sec{
    position: relative;
    padding: 50px 0;
}

.card_cta{
    background-image: url(../img/cta_bg.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 10px;
    border: 0;
    border-radius: 15px;
}
.title_cta{
    font-size: 60px;
}

/*-----------------------*/
/*-------contact_us------*/
/*-----------------------*/

.contact_us{
    padding: 180px 0 50px;
    position: relative;
    background-image: url(../img/bear-in-tree.png);
    background-position: -20px 100px;
    background-repeat: no-repeat;
    background-size: 300px auto;
}
.contact_us .div_shape{
    bottom: auto;
    transform: rotate(0deg);
    z-index: 1;
    top: -1px;
}
.contact_us .div_shape svg{
    height: 60px;
    z-index: 1;
}
.contact_us::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/tree-doth-right.png);
    background-position: 100% 100px;
    background-repeat: no-repeat;
    background-size: 200px auto;
    display: block;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.form_data label{
    font-size: 16px;
    font-weight: 600;
}
.form_data .form-control{
    border: 0;
    box-shadow: none !important;
    background: #F0EFEC !important;
    padding: 15px;
    color: var(--text-color);
    border-radius: 15px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1;
    min-height: 50px;
}
.form_data textarea.form-control{
    height: auto;
}

.enrollment_section{
    padding: 50px 0;
    position: relative;
}
.card_enroll_info{
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
}
/*-----------------------*/
/*---------footer--------*/
/*-----------------------*/
.footer{
    background-image: url(../img/footer-background.png);
    background-position: bottom center;
    background-size: contain;
    background-color: var(--white-color);
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}


.footer_content{
    padding: 100px 0 140px;
    border-top: 1px solid #ddd;
}


.logo_footerLogo img{
    width: 100px;
}
.list_icon{
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    flex-wrap: wrap;
}

.list_icon li a {
    color: var(--white-color) !important;
    font-size: 17px;
    width: 40px;
    height: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    border: 1px solid #f0efec;
}
.list_icon li a:hover{
    color: var(--white-color);
    transform: scale(1.1) translateY(-5px);
}
.blob-effect .blob-dl-btn__inner{
    border-radius: 15px;
}
.blob-effect.instagram_icon .blob-dl-btn__inner{
    background: #E4405F;
}
.blob-effect.facebook_icon .blob-dl-btn__inner{
    background: #1877F2;
}
.blob-effect.twitter_icon .blob-dl-btn__inner{
    background: #000000;
}

.blob-effect.tiktok_icon .blob-dl-btn__inner{
    background: linear-gradient();
}

.blob-effect.youtube_icon .blob-dl-btn__inner{
    background: #FF0000;
}

.blob-effect .blob-dl-btn__blobs span{
    background: #fcb900;
}
.blob-effect::before{
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.blob-effect:after{
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
}
.blob-effect:hover::after{
    transition: all 0.3s;
    left: 0;
    top: 0;
}
.blob-effect:hover .blob-dl-btn__blobs span {
    transform: translateZ(0) scale(1.7);
}


.widget-title {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    margin: 0 0 20px;
    clear: both;
}
.widget-title::before {
    background: var(--accent-color);
    content: "";
    height: 4px;
    position: absolute;
    left: 0;
    width: 15px;
    bottom: 5px;
    border-radius: 5px;
}

.widget-title::after {
    background: var(--primary-color);
    content: "";
    height: 4px;
    position: absolute;
    bottom: 5px;
    border-radius: 5px;
    width: 35px;
    left: 20px;
}

.list_links_item{
    position: relative;
}
.list_links_item:not(:last-of-type) {
    margin-bottom: 15px;
}

.list_links_item::before {
    background-color: var(--primary-color);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.list_links_item a {
    padding-left: 15px;
    color: var(--text-color-light);
    font-weight: 600;
    transition: var(--transition);
}
.list_links_item a:hover{
    color: var(--accent-color);
}

.contact-info-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.contact-info-list li, .contact-info-list li a {
    position: relative;
    color: var(--text-color-light);
    transition: var(--transition);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0;
}
.contact-info-list li {
    width: 100%;
}

.contact-info-list li .label {
    color: var(--accent-color);
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.contact-info-list li a:hover{
    color: var(--accent-color);
}

.form_newsLetter{
    display: flex;
    align-items: center;
    background: #f0efec;
    border-radius: 15px;
    overflow: hidden;
    padding: 8px;
}

.input_newsLetter {
    border: 0;
    padding: 10px;
    box-shadow: none !important;
    background: transparent !important;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;
}
.input_newsLetter::placeholder{
    color: var(--text-color-light);
}
.btn_newsLetter {
    box-shadow: none !important;
    border: 0;
    background: var(--accent-color);
    color: var(--white-color) !important;
    display: flex;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    justify-content: center;
    padding: 15px 20px;
    border-radius: 10px;
}
.footer_copyRight{
    color: var(--white-color);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    row-gap: 10px;
    font-size: 16px;
}
.footer_copyRight a{
    color: var(--primary-color);
}


.page_banner{
    background-color: #f0efec;
    background-image: url(../img/page-banner.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 210px 0 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}
.page_banner:before {
    background-image: url(../img/page-banner-shape.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 100%;
    height: 60px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.animated-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.animated-dots span {
    background-color: #ff4c4c;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 55%;
    top: 20%;
}
.animated-dots span:nth-child(2) {
    background-color: #0099e5;
    width: 8px;
    height: 8px;
    left: 5%;
    top: 85%;
}
.animated-dots span:nth-child(3) {
    background-color: #ff9933;
    width: 11px;
    height: 11px;
    left: 20%;
    top: 35%;
}
.animated-dots span:nth-child(4) {
    background-color: #85c446;
    width: 14px;
    height: 14px;
    border-radius: 0;
    transform: rotate(20deg);
    left: auto;
    right: 5%;
    top: 30%;
}
.animated-dots span:nth-child(5) {
    background-color: #ff4f81;
    width: 12px;
    height: 12px;
    left: auto;
    right: 10%;
    top: auto;
    bottom: 20%;
}
.animated-dots span:nth-child(6) {
    background-color: #8e43e7;
    width: 10px;
    height: 10px;
    left: 40%;
    right: auto;
    top: auto;
    bottom: 19%;
    border-radius: 0;
    transform: rotate(20deg);
}
.lf-rotate-center {
    animation: Ayoup_rotate_center 10s forwards infinite alternate;
}
.lf-left-right {
    animation: Ayoup_left_right 4s forwards infinite alternate;
}

.lf-up-down {
    animation: Ayoup_up_down 4s forwards infinite alternate;
}
.page-banner-inner{
    margin: 0 auto;
    text-align: center;
    max-width: 650px;
}
.page-banner-info h4 {
    color: var(--white-color);
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: var(--primary-color);
    padding: 8px 25px;
    border-radius: 10px;
}


.mission_sec , .whyUs_sec{
    position: relative;
    padding: 50px 0 150px;
    background: #F0EFEC;
}
.card_values{
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}
.list_missions .mission_item{
    padding: 5px;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
}
.list_missions .mission_item i{
    position: absolute;
    top: 16px;
    left: 5px;
    color: var(--primary-color);
}

.statistics_section{
    position: relative;
    padding: 50px 0 30px;
}

.card_counter_big{
    background-image: url(../img/counter-background-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    flex-direction: row;
    display: inline-block;
    width: 100%;
    padding: 50px;
    border: 0;
}
.img_turtle_count{
    position: absolute;
    bottom: 0;
    left: -20px;
    max-width: 150px;
}

.img_chameleon_count{
    position: absolute;
    top: 0;
    right: -20px;
    max-width: 200px;
}
.card_counter_big .counter{
    font-size: 60px;
    font-weight: 400;
    line-height: 50px;
    font-family: var(--Love-font);
}
.card_counter_big .description{
    color: var(--accent-color);
    font-size: 17px;
    font-weight: 600;
}





.stat-card{
    border: 0;
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 3;
}






.teacher_sec{
    padding: 50px 0;
    position: relative;
}

.card_teacher{
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.top_image_teacher{
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.30, .30, .05, .95);
}
.top_image_teacher .top-shape {
    width: 140px;
    height: 84px;
    position: absolute;
    left: -5px;
    top: -5px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%) translateY(-100%);
    transition: all .5s cubic-bezier(.30, .30, .05, .95);
    fill: currentColor;
}
.top_image_teacher .bottom-shape {
    fill: currentColor;
    width: 90px;
    height: 90px;
    position: absolute;
    right: -5px;
    bottom: -5px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0) translateY(100%);
    transition: all .5s cubic-bezier(.30, .30, .05, .95);
}
.card_teacher:hover .top-shape, .card_teacher:hover .bottom-shape {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0);
    z-index: 1;
}
.top_image_teacher img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(.30, .30, .05, .95);
}
.team-content {
    background-color: #02010100;
    background-image: url(../img/service-bg.png);
    text-align: center;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px 20px 0px;
    margin: -35px 0px 0px 0px;
    z-index: 2;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .05));
    position: relative;
}
.teacher_name{
    margin: 0;
    line-height: 20px;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--text-color);
}
.teacher_jop{
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--accent-color);
    margin: 10px 0px 0px 0px;
}


/*---------------------*/
/*------blogs_sec------*/
/*---------------------*/
.blogs_sec{
    padding: 50px 0;
    position: relative;
}
.card_blog{
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.topBlog_image{
    overflow: hidden;
    position: relative;
}
.blogs_date{
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    z-index: 2;
}
.topBlog_image img{
    transition: var(--transition);
}
.card_blog:hover .topBlog_image img{
    transform: scale(1.1);
}
.blog_title{
    margin: 0;
    line-height: 20px;
    font-size: 22px;
    transition: var(--transition);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--text-color);
}
.card_blog:hover .blog_title , .blog_title:hover{
    color: var(--accent-color);
}









/*----------------------*/
/*---blog_detailsSec----*/
/*----------------------*/
.blog_detailsSec{
    position: relative;
    padding: 50px 0;
}
.card_bloDetails{
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.blog_date{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.blog_date i{
    color: var(--accent-color);
}
.title_blogAnother{
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}
.anothe_blogs{
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 0;
    position: sticky;
    top: 120px;
    margin-bottom: 20px;
}
.anothe_blogs li{
    padding: 10px;
}
.anothe_blogs li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.anothe_blogs li a{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}
.anothe_blogs li a:hover{
    color: var(--accent-color);
}

.blog_contect_det p , .blog_contect_det span{
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
}
.blog_contect_det h1,
.blog_contect_det h2,
.blog_contect_det h3,
.blog_contect_det h4,
.blog_contect_det h5,
.blog_contect_det h6{
    margin-bottom: 15px;
    line-height: 20px;
    font-size: 22px;
    transition: var(--transition);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--text-color);
}
.blog_contect_det img{
    max-width: 100%;
    border-radius: 10px;
    width: 100%;
    margin: 10px 0;
}
.blog_contect_det a{
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--primary-color);
    transition: var(--transition);
    margin-bottom: 10px;
    display: inline-block;
}
.blog_contect_det a:hover{
    color: var(--accent-color);
}







/*----------------------*/
/*---Course_detailsSec----*/
/*----------------------*/
.Course_detailsSec{
    position: relative;
    padding: 50px 0;
}
.card_bloDetails{
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.title_CourseAnother{
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}
.anothe_Courses{
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 0;
    position: sticky;
    top: 120px;
    margin-bottom: 20px;
}
.anothe_Courses li{
    padding: 10px;
}
.anothe_Courses li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.anothe_Courses li a{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}
.anothe_Courses li a:hover{
    color: var(--accent-color);
}

.Course_contect_det p , .Course_contect_det span{
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
}
.Course_contect_det h1,
.Course_contect_det h2,
.Course_contect_det h3,
.Course_contect_det h4,
.Course_contect_det h5,
.Course_contect_det h6{
    margin-bottom: 15px;
    line-height: 20px;
    font-size: 22px;
    transition: var(--transition);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: var(--text-color);
}
.Course_contect_det img{
    max-width: 100%;
    border-radius: 10px;
    width: 100%;
    margin: 10px 0;
}
.Course_contect_det a{
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--primary-color);
    transition: var(--transition);
    margin-bottom: 10px;
    display: inline-block;
}
.Course_contect_det a:hover{
    color: var(--accent-color);
}






.faqs_sec{
    position: relative;
    padding: 50px 0;
}
.accordion_faq{
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
}
.accordion_faq *{
    border: 0;
}
.accordion_faq .card{
    padding: 0;
}
.accordion_faq .card:not(:last-child){
    border-bottom: 1px solid #eee !important;
}
.accordion_faq .card-header{
    padding: 0;
    background: transparent;
}
.accordion_faq button{
    padding: 12px;
    box-shadow: none !important;
    border-bottom: 1px solid #eee !important;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-radius: 0;
    text-decoration: none !important;
}
.accordion_faq button:hover , .accordion_faq button:not(.collapsed){
    color: var(--white-color);
    background: var(--accent-color);
}
.accordion_faq .card-body{
    padding: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-color-light);
}








/*---------------------*/
/*-----PLane Fees------*/
/*---------------------*/
.plans_sec{
    position: relative;
    padding: 50px 0;
}
.cardPlans_role{
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 20px;
}
.title_policy_role{
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}
.role_item{
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}
.card_plane{
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.title_plane{
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-dark-color);
}
.header_plane{
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}
.class_count{
    font-size: 35px;
}
.class_count , .class_perTime{
    color: var(--accent-color);
}

.cardbody_price{
    padding: 12px;
    text-align: center;
}
.cardbody_price h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--primary-font);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.cardbody_price h2 sup {
    font-size: 25px;
    color: var(--accent-color);
    top: -1.7rem;
}
.cardbody_price h2 span {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    /* display: block; */
}
.plane_feature .feature_item{
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}
.plane_feature .feature_item i{
    color: var(--accent-color);
    margin-right: 10px;
}








/*--------------------*/
/*---policy_section---*/
/*--------------------*/
.policy_section{
    position: relative;
    padding: 50px 0;
}
.policy_content{
    padding: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    background-color: #eee;
}
.policy_content h1 , .policy_content h2 , .policy_content h3 , .policy_content h4 , .policy_content h5 , .policy_content h6{
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-dark-color);
}
.policy_content p , .policy_content span , .policy_content a{
    font-size: 20px;
    font-weight: 500;
}

.policy_content a , .policy_content i{
    color: var(--accent-color);
    transition: var(--transition);
}
.policy_content a:hover{
    color: var(--primary-color);
}
.policy_content i{
    margin-right: 9px;
}
.policy_content li{
    color: var(--text-color);
    font-size: 19px;
    font-weight: 500;
    padding: 5px 2px;
}
.policy_content strong{
    color: var(--primary-color);
}











/*--------------------*/
/*---login_section----*/
/*--------------------*/
.login_section{
    background: url(../img/login_image.jpg) center center/cover no-repeat;
    min-height: 100vh;
    align-content: center;
}
.login_section .container{
    max-width: 700px !important;
}
.form_account{
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: var(--white-color);
}
.login_title{
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}