
/*-------Font Link--------*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Lobster&display=swap');
html{
    scroll-behavior: smooth;
}
/*-----Fony Type-------*/
.font{

    /*-------Special Font-------*/
    font-family: 'Dancing Script', cursive;
    /* ------Logo Font--------- */
    font-family: 'Lobster', sans-serif;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #a8bcff;
}

::-webkit-scrollbar-thumb{
    background: #2053f8;
}
/*-------------*/
/*---canvas || Mouse-----*/
/*-------------*/
#canvas{
    background: rgb(0, 0, 0, 0);
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
}
#canvas *{
    z-index: 99999999999999999999999999999999999999999999999;

}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    bottom: 15px;
    right: -100px;
    color: #fff;
    z-index: 999999999999999999999999999;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2053f8;
    border: none;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #4c76ff;
}
.btnUpTop.show{
    right: 25px;
}

/*----------------*/
/*----Form Modal-----*/
/*----------------*/
#form-modal{
    padding: 2rem 1rem;
    background: rgb(0, 0, 0, 0.8);
    border-radius: 8px;
}
#logo-modal{
    color: #2053f8;
    font-size: 33px;
    font-weight: 500;
    font-family: 'Lobster', sans-serif;
    margin: auto;
}
#logo-modal h2 span{
    color: #fff;
}
#h2-form-modal{
    font-size: 30px;
    font-weight: 700;
    color: #2254f8;
    margin: auto;
    margin-bottom: 2rem;
}
#input-modal{
    width: 100%;
    height: 40px;
    background: none;
    border: 1px solid #2254f8;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}
#btn-formmodal{
    font-size: 16px;
    font-weight: 600;
    padding: 5px 30px;
    margin-bottom: 2rem;
    border-radius: 50px;
    color: #fff;
    background: none;
    border: 3px solid #2254f8;
    transition: 0.3s;
}
#btn-formmodal:hover{
    background: #2254f8;
}
#register-link{
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 600;
}
#register-link:hover{
    color: #2254f8;
}
#hr-formRegister{
    height: 1px;
    background: #2254f8;
    width: 90%;
    margin: 0 auto 1rem;
}
.page-register{
    padding: 8rem 0;
    background: rgba(6, 12, 34, 0.9);
    height: 100vh;
}

/*-----Modal Video------*/
#modal-video{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#video-home{
    width: 80%;
}
.close i{
    color: #fff;
    font-size: 25px;
}
/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav{
    background: rgba(6, 12, 34, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
#nav .container{
    max-width: 1320px;
}
#nav::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #2254f8;
    transition: all 0.3s ease-in-out 0s;
}
#logo h2{
    color: #2254f8;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Lobster', sans-serif;
}
#logo h2 span{
    color: #fff;
}
#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #caceddcc;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 10px;
}
#nav-item:hover{
    color: #fff;
}
#nav-item::before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #2254f8;
    transition: all 0.3s ease-in-out 0s;
}
#nav-item:hover::before{
    width: 100%;
}

#Login-nav{
    color: #fff;
    background: #2254f8;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #2254f8;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    line-height: 1;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
#Login-nav:hover{
    background: none;
    color: #fff;
}
#btn-toggler{
    background: #2254f8;
}
#btn-toggler span{
    color: #fff;
}

/*------------*/
/*----Home----*/
/*------------*/
#home {
    height: 100vh;
    background: url(../img/course-1.jpg) center center/cover no-repeat fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}
#home:before {
    content: "";
    background: rgba(6, 12, 34, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#home *{
    z-index: 1;
}
#home h2{
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}
#home h2 span{
    margin-bottom: 2rem;
    color: #2254f8;
    font-size: 38px;
    font-weight: 400;
    font-family: 'Lobster', sans-serif;
}
#home h2 span>span{
    color: #fff;
}
#home p{
    color: #ffffffe8;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 2rem;
    font-family: 'Dancing Script', cursive;
}


.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#2254f8 50%, rgba(101, 111, 150, 0.15) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

a:hover {
    color: #2254f8;
    outline: none;
    text-decoration: none;
}
.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);
}
.play-btn:hover::after {
    border-left: 15px solid #2254f8;
    transform: scale(20);
}

.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;
}

#home-btn{
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 70px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    animation-delay: 0.8s;
    border: 2px solid #2254f8;
    text-decoration: none;
}
#home-btn:hover{
    background: #2254f8;
}
/*------------*/
/*----About-----*/
/*------------*/
#about{
    background: url(../img/about-bg.jpg) center center/cover no-repeat fixed;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 60px 0 40px 0;
}
#about .container{
    max-width: 1320px;
}
#about::before{
    content: "";
    background: rgba(13, 20, 41, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#h2-about1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
#about h2 span{
    margin-bottom: 2rem;
    color: #2254f8;
    font-size: 38px;
    font-weight: 400;
    font-family: 'Lobster', sans-serif;
}
#about h2 span>span{
    color: #fff;
}
#about p{
    font-size: 14px;
    margin-bottom: 20px;
    color: #caceddea;
}
#about p span{
    display: block;
}
#h2-about2{
    font-size: 25px;
    font-weight: 600;
}

/*---------------*/
/*----servises----*/
/*---------------*/
#servises{
    padding: 4rem 0;
    background: #fff;
}
#servises .container{
    max-width: 1320px;
}
#col-servises{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-servises h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
    z-index: 9;
}
#col-servises h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#col-servises p{
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4rem;
    z-index: 9;
} 
#col-servises p span{
    display: block;
}

#list-servises{
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #433f39;
    border-radius: 0;
    border-right: 4px solid #e4e4e8;
    font-size: 15px;
    font-weight: 700;
}
#list-servises:hover{
    color: #2254f8;
    background: none;
}
#list-servises.active {
    z-index: 2;
    color: #2254f8;
    background: none;
    border-right: 4px solid #2254f8;
}
#h2-list{
    color: #2254f8;
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Lobster', sans-serif;
}
#nav-tabContent p{
    color: #777777;
}
#nav-tabContent p:nth-child(2){
    font-style: italic;
}
#btn-servises{
    color: #fff;
    background: #2254f8;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #2254f8;
    transition: all ease-in-out 0.3s;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
#btn-servises:hover{
    background: none;
    color: #2254f8;
}
#servises img{
    position: relative;
    width: 100%;
    animation: animateimg 2s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimg {
    0% {
        transform: translateY(13px);
    }
    100% {
        transform: translateY(-13px);
    }
}

/*---------------*/
/*----Special || Offers----*/
/*---------------*/
#special{
    padding: 4rem 0;
    background: url(../img/course-3.jpg) center center/cover no-repeat fixed;
    position: relative;
    color: #fff;
}
#special:before {
    content: "";
    background: rgba(6, 12, 34, 0.623);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#special .container{
    max-width: 1320px;
}
#col-special{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-special h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #fff;
}
#col-special h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#special img{
    width: 100%;
}
#carousel-inner{
    padding: 3rem 0;
}
#carousel-inner h2{
    color: #2254f8;
    font-size: 36px;
    font-weight: 700;
}
#carousel-inner p{
    line-height: 2rem;
}
#carousel-inner p span{
    color: #fff;
    border-bottom: 5px solid #2254f8;
    font-size: 26px;
    font-weight: 700;
}
#carousel-inner p:nth-child(3){
    font-style: italic;
}
#carousel-inner p:nth-child(5){
    margin-top: 1.5rem;
}
#carousel-inner ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#carousel-inner ul .bi{
    color: #2254f8;
    font-size: 20px;
    margin-right: 10px;
}
#carousel-indicators li {
    background-color: #2254f8;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    z-index: -1;
}

/*---------------*/
/*----WHY US----*/
/*---------------*/
#whyus{
    padding: 4rem 0;
    background: #f6f7fd;
}
#whyus .container{
    max-width: 1320px;
}
#col-whyus{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-whyus h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
}
#col-whyus h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#col-whyus p{
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4rem;
} 
#col-whyus p span{
    display: block;
}
#whyus-card{
    padding: 1rem;
    background: #fff;
    border: none;
    box-shadow: 0px 0px 14px -2px #2254f8;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 0;
    margin-bottom: 2rem;
}
#whyus-card:hover{
    background: #2254f8;
    padding: 0 1rem 2rem;
    box-shadow: none;
}
#whyus-card-body{
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    transition: 0.5s;
}
#whyus-card-body h2{
    color: #2254f8;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    margin-bottom: 2rem;
}
#whyus-card-body h3{
    color: #3b3b3b;
    font-size: 23px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
}
#whyus-card-body p{
    font-size: 15px;
    font-weight: 400;
    color: #777777;
}
#whyus-card:hover h2,
#whyus-card:hover h3,
#whyus-card:hover p{
    color: #fff;
}

/*---------------*/
/*----gallery----*/
/*---------------*/
#gallery{
    padding: 4rem 0 0;
    background: #040919;
}
#col-gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-gallery h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
}
#col-gallery h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#gallery .col-md-3{
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    overflow: hidden;
}
#gallery img{
    width: 100%;
    transition: 0.5s;
}
#gallery img:hover{
    transform: scale(1.1);
}

/*-----------------*/
/*------REVIEWS----*/
/*-----------------*/
#review{
    padding: 4rem 0;
    background: url(../img/why-us.jpg) center center/cover no-repeat fixed;
    position: relative;
}
#review::before{
    content: "";
    background: rgba(13, 20, 41, 0.842);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#review .container{
    max-width: 1320px;
}
#col-review{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-review h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
}
#col-review h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#card-review{
    box-sizing: content-box;
    padding: 30px 60px 60px 30px;
    margin: 30px 15px;
    min-height: 200px;
    border: 1px solid #eef0ef;
    position: relative;
    background: #fff;
}

#card-review img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 6px solid #fff;
    position: absolute;
    top: -45px;
    left: 35px;
}
#card-review h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
#card-review h4{
    font-size: 14px;
    color: #999;
    margin: 0;
}
#card-review p{
    font-style: italic;
    margin: 15px auto;
}
#card-review p i{
    color: #97afff;
    font-size: 26px;
}

/*------------*/
/*--Coursoll || Review--*/
/*------------*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
#swiper-slide{
    margin: 0;

}
.swiper-slide #card-review{
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #2254f8;
}
.btn-swiper span{
    background: #2254f8;
    width: 20px;
    height: 20px;
}

/*-----------------*/
/*-----Clint-----*/
/*-----------------*/
.clint{
    background: #040919;
    padding: 4rem 0;
}

.clint h2{
    text-align: center;
    color: white;
    font-size: 35px;
    font-weight: 700;
}
/*--------Coursoll Clint-----------*/
.clint .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
  
.clint .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    overflow: hidden;
}
.clint .swiper-slide .card {
    display: block;
    width: 100%;
}
  
/*---------------*/
/*----contact----*/
/*---------------*/
#contact{
    padding: 4rem 0;
    background: #fff;
}
#contact .container{
    max-width: 1320px;
}
#col-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-contact h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
}
#col-contact h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#contact iframe{
    width: 100%;
    height: 300px;
}
#row-info{
    padding-top: 2rem;
}
#info-contact{
    margin-bottom: 2rem;
}
#contact #info-contact i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #2254f8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
#contact #info-contact h2{
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2254f8;
}
#contact #info-contact p{
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 15px;
    font-style: italic;
    color: #777777;
}
#input-contact{
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: transparent;
    border-color: #dee2e6;
    color: #2254f8;
    margin-bottom: 2rem;
    height: 40px;
}
#textarea-contact{
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: transparent;
    border-color: #dee2e6;
    color: #2254f8;
    margin-bottom: 2rem;
}
#input-contact:focus,#textarea-contact:focus{
    border-color: #2254f8;
}
#btn-contact{
    background: #2254f8;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}
#btn-contact:hover{
    background: #567dfc;
}

/*-----------------*/
/*------FOOTER-----*/
/*-----------------*/
#footer{
    background: #040919;
    padding: 60px 0 30px 0;
}
#logo-footer h1{
    color: #2254f8;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Lobster', sans-serif;
}
#logo-footer h1 span{
    color: #fff;
}
#footer p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #eee;    
    line-height: 35px;
}
#footer p #span1-footer{
    display: block;
}
#footer p #span2-footer{
    font-weight: bold;
}
#footer h2{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid #2254f8;
}
#link-footer{
    text-decoration: none;
    transition: 0.5s;
    display: block;
    color: #eee;
    padding: 0.5rem 0;
    border-bottom: 1px solid #262c44;
}
#link-footer:hover{
    color: #2254f8;
}
#link-footer i{
    margin-right: 5px;
    color: #2254f8;
}
.icon-footer{
    display: flex;
    align-items: center;
}
.icon-footer a, .icon-footer a:hover{
    text-decoration: none;
}
.item-iconfooter{
    background: #222636;
    color: #eee;
    line-height: 1;
    margin: 0.5rem;
    margin-left: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.item-iconfooter:hover{
    background: #2254f8;
}
/*------Footer End---------*/

/*-------------------------*/
/*-------Home End----------*/
/*-------------------------*/

/*--------------------------------*/

/*-------------------------*/
/*-------About Srart----------*/
/*-------------------------*/
.about-page{
    background: url(../img/about-bg.jpg) center center no-repeat fixed;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    height: auto;
    padding: 15rem 0;
}

.about-page:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.about-page .container{
    max-width: 1320px;
}
.about-page h2{
    color: #2254f8;
    font-weight: 600;
    font-size: 26px;
    font-family: 'Lobster', sans-serif;
}
.about-page p{
    font-style: italic!important;
}
.about-page ul {
    list-style: none;
    padding: 0;
}
.about-page ul li {
    padding-bottom: 10px;
}
.about-page ul i {
    font-size: 20px;
    padding-right: 10px;
    color: #2254f8;
}
.about-page p:nth-child(2) , .about-page p:last-child{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}
.about-page p:last-child{
    margin-bottom: 5rem;
}
.about-page .about-img {
    position: relative;
    transition: 0.5s;
}
.about-page .about-img:hover {
    transform: scale(1.03);
}
.about-page .about-img img{
    max-width: 100%;
    min-height: 388px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.about-page .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #cda45e;
    border-top: 5px solid #cda45e;
    transition: 0.5s;
}
.about-page .about-img:hover::before{
    left: 10px;
    top: 10px;
}
.about-page .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #cda45e;
    border-bottom: 5px solid #cda45e;
    transition: 0.5s;
}
.about-page .about-img:hover::after{
    right: 10px;
    bottom: 10px;
}

.cardaimed{
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cardaimed i{
    font-size: 2rem;
    margin: auto;
    color: #2254f8;
}
.cardaimed span{
    font-size: 1rem;
    font-weight: 500;
    color: #433f39;
    font-style: italic;
}
/*-------------------------*/
/*-------About End----------*/
/*-------------------------*/

/*----------------------------------*/

/*-------------------------*/
/*----Courses Page Srart-----*/
/*-------------------------*/
#courses{
    padding: 5rem 0;
}
#courses .container{
    max-width: 1520px;
}
#col-courses h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
    margin: 3rem 0;
}
#col-courses h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#card-courses{
    border: 1px solid #fff;
    transition: 0.3s;
    box-shadow: 0px 0px 7px 3px #cfdaff;
    margin-bottom: 2rem;
}
#courses #card-body h2{
    font-size: 17px;
    font-weight: 700;
}
#courses #card-body p{
    font-size: 15px;
    font-weight: 500;
    color: #040919;
}
#courses #btn-courses{
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    background: #2254f8;
    transition: 0.5s;
    border-radius: 50px;
}
#courses #btn-courses:hover{
    background: #5a80ff;
}
/*-------------------------*/
/*-------Courses End----------*/
/*-------------------------*/

/*-------------------------*/
/*----DetailesCours Page Strat-------*/
/*-------------------------*/
.detailesCours-page{
    padding: 70px 0;
}
.title-infoCourses {
    text-align: center;
    background: #3262ff;
    padding: 30px 0;
    color: #fff;
    margin-bottom: 60px;
}
.detailesCours-page .container{
    max-width: 1320px;
}
.detailesCours-page img{
    width: 100%;
}
#img-details{
    width: 100%;
}
#info-cours{
    background: #f6f7f6;
    padding: 10px 15px;
    margin-bottom: 15px;
}
#info-cours h5{
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}
#info-cours p{
    margin: 0;
    font-weight: 400;
}
.detailesCours-page h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.detailesCours-page h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
}
.detailesCours-page h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #2254f8;
    bottom: 0;
    left: 0;
}

#onther-courses{
    color: #2254f8;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Lobster', sans-serif;
    margin: 2rem 0;
}
/*-----List Courses--------*/
#list-courses{
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #433f39;
    border-radius: 0;
    border-right: 4px solid #e4e4e8;
    font-size: 15px;
    font-weight: 700;
}
#list-courses:hover{
    color: #2254f8;
    background: none;
}
#list-courses.active {
    z-index: 2;
    color: #2254f8;
    background: none;
    border-right: 4px solid #2254f8;
}
#h2-list{
    color: #2254f8;
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Lobster', sans-serif;
}
#nav-tabContent p{
    color: #777777;
}
#nav-tabContent p:nth-child(2){
    font-style: italic;
}
#btn-coursesDetail{
    color: #fff;
    background: #2254f8;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #2254f8;
    transition: all ease-in-out 0.3s;
    line-height: 1;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
#btn-coursesDetail:hover{
    background: none;
    color: #2254f8;
}

/*-------------------------*/
/*-------DetailesCours End------*/
/*-------------------------*/

/*-------------------------------------*/

/*----------------------------*/
/*-------Pricing Start-------*/
/*----------------------------*/
#price{
    background-color: #f6f7fd;
    overflow: hidden;
    padding: 90px 0;

}
#price .container{
    max-width: 1520px;
}
.section-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}
.section-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: #2254f8;
    bottom: 0;
    left: calc(50% - 25px);
}
#h2-price{
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}
#p-price{
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #9195a2;
}
#nav-tab{
    border: 0;
}
#btn-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
}
#btn-tab{
    border-radius: 100px;
    background: #0e1b4d;
    padding: 10px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: 0.5s;
    margin: 0.25rem;
}
#btn-tab.active{
    background: #1d51ff;
    border: none;
}
#p2-price{
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin: 30px auto 30px auto;
    color: #0e1b4d;
}
#p2-price span{
    display: block;
}

#card-price{
    margin-bottom: 2rem;
    transition: 0.5s;
    box-shadow: 2px 2px 5px #abbfff;
}
#card-price:hover{
    border: 1px solid #1d51ff;
}
#card-price.active{
    border: 1px solid #1d51ff;
}
.bottom-card.active{
    border-top: 1px solid #1d51ff;
}
.top-card{
    position: relative;
    overflow: hidden;
}
.top-card{
    color: #1d51ff;
    text-align: center;
    padding: 1.5rem 0;

    border-bottom: 1px solid #1d51ff;
}
.top-card h2{
    font-size: 20px;
    font-weight: 600;
    margin-top: 0.5rem;

}
.top-card h3{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    color: #fff;
    background: #1d51ff;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 11px;
    font-weight: 600;
}
#body-price{
    text-align: center;
}
#body-price h3{
    color: #bababa;
    font-size: 18px;
    font-weight: 400;
    margin: 2rem 0;
}
#span1-price{
    font-size: 20px;
    top: -15px;
    color: #1d51ff;
    left: 5px;
}
#span2-price{
    color: #1d51ff;
    font-size: 40px;
    font-weight: 700;
}
#body-price ul{
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}
#body-price ul li{
    padding-bottom: 16px;
}
.bottom-card{
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    transition: 0.5s;
}
#card-price:hover .bottom-card{
    border-top: 1px solid #2053f8;
}
#btn-price{
    padding: 5px 30px;
    color: #1d51ff;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    border-radius: 100px;
    border: 2px solid #1d51ff;
    transition: 0.5s;
}
#btn-price:hover{
    color: #fff;
    background: #1d51ff;
}
#btn-price.active{
    color: #fff;
    background: #2b5dff;
}

/*----------------------------*/
/*-------Pricing End-------*/
/*----------------------------*/

/*----------------------------*/
/*-------Servises Page Start-------*/
/*----------------------------*/

#servises-page{
    background-color: #f6f7fd;
    overflow: hidden;
    padding: 90px 0;
    text-align: center;
}
#servises-page .container{
    max-width: 1520px;
}
#col-servises{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#col-servises h2{
    font-size: 35px;
    font-weight: 700;
    font-family: 'Lobster', sans-serif;
    color: #000;
    margin-bottom: 1rem;
}
#col-servises h2 b{
    font-weight: 800;
    font-size: 38px;
    color: #2254f8;
}
#col-servises p{
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4rem;
} 
#col-servises p span{
    display: block;
}
#servises-page img{
    width: 100%;
    border: 15px solid #fff;
    box-shadow: 0px 0px 5px #cacaca;
}
#infoServise{
    text-align: left;
} 
#infoServise p{
    font-size: 15px;
    margin-bottom: 1rem;
}
#infoServise p strong{
    font-size: 18px;
    margin-bottom: 0.5rem;
    font-family: 'Lobster', sans-serif;
} 
#infoServise ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#infoServise ul li{
    margin-bottom: 0.5rem;
}
#infoServise ul i{
    margin-right: 5px;
    color: #1d51ff;
    font-size: 18px;
}
/*----------------------------*/
/*-------Servises Page End-------*/
/*----------------------------*/

/*----------------------------*/
/*-------Contact Page Start-------*/
/*----------------------------*/
#contactPage{
    background-color: #f6f7fd;
    overflow: hidden;
    padding: 70px 0 0;
    text-align: center;
}

/*----------------------------*/
/*-------Contact Page End-------*/
/*----------------------------*/

/*----------------------------*/
/*-------Animate Points-------*/
/*----------------------------*/
.animate2{
    position: fixed;
    display: flex;
    z-index: 99;
}
.animate2 span{
    position: relative;
    width: 5px;
    height: 5px;
    margin: 0 40px;
    background: #2053f8;
    border-radius: 100px;
    animation: animatePoints 5s linear infinite;
    animation-duration: calc(125s / var(--i));
    box-shadow: 0 0 0 5px #2052f8d5, 
    0 0 10px #2052f8c0;
}

@keyframes animatePoints {
    0%{
        transform: translateY(100vh) scale(1);
    }
    100%{
        transform: translateY(-10vh) scale(0);
    }
}


/*----------------------------*/
/*-------Animate Loader-------*/
/*----------------------------*/
.spinner{
    background: #000;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 2s;
  }
.pl {
    box-shadow: 2em 0 2em #2052f862 inset, -2em 0 2em rgba(255, 255, 255, 0.1) inset;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotateX(30deg) rotateZ(45deg);
    width: 14em;
    height: 14em;
    color: #2053f8;
    font-size: 20px;
    font-weight: 600;
  }
  
  .pl, .pl__dot {
    border-radius: 50%;
  }
  
  .pl__dot {
    animation-name: shadow724;
    box-shadow: 0.1em 0.1em 0 0.1em #2053f8, 0.3em 0 0.3em #2052f891;
    top: calc(50% - 0.75em);
    left: calc(50% - 0.75em);
    width: 1.5em;
    height: 1.5em;
  }
  
  .pl__dot, .pl__dot:before, .pl__dot:after {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    position: absolute;
  }
  
  .pl__dot:before, .pl__dot:after {
    content: "";
    display: block;
    left: 0;
    width: inherit;
    transition: background-color var(--trans-dur);
  }
  
  .pl__dot:before {
    animation-name: pushInOut1724;
    background-color: var(--bg);
    border-radius: inherit;
    box-shadow: 0.05em 0 0.1em rgba(114, 147, 255, 0.2) inset;
    height: inherit;
    z-index: 1;
  }
  
  .pl__dot:after {
    animation-name: pushInOut2724;
    background-color: var(--primary1);
    border-radius: 0.75em;
    box-shadow: 0.1em 0.3em 0.2em rgba(69, 81, 255, 0.4) inset, 0 -0.4em 0.2em #1a2f5f inset, 0 -1em 0.25em #2052f891 inset;
    bottom: 0;
    clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
    height: 3em;
    transform: rotate(-45deg);
    transform-origin: 50% 2.25em;
  }
  
  .pl__dot:nth-child(1) {
    transform: rotate(0deg) translateX(5em) rotate(0deg);
    z-index: 5;
  }
  
  .pl__dot:nth-child(1), .pl__dot:nth-child(1):before, .pl__dot:nth-child(1):after {
    animation-delay: 0s;
  }
  
  .pl__dot:nth-child(2) {
    transform: rotate(-30deg) translateX(5em) rotate(30deg);
    z-index: 4;
  }
  
  .pl__dot:nth-child(2), .pl__dot:nth-child(2):before, .pl__dot:nth-child(2):after {
    animation-delay: -0.1666666667s;
  }
  
  .pl__dot:nth-child(3) {
    transform: rotate(-60deg) translateX(5em) rotate(60deg);
    z-index: 3;
  }
  
  .pl__dot:nth-child(3), .pl__dot:nth-child(3):before, .pl__dot:nth-child(3):after {
    animation-delay: -0.3333333333s;
  }
  
  .pl__dot:nth-child(4) {
    transform: rotate(-90deg) translateX(5em) rotate(90deg);
    z-index: 2;
  }
  
  .pl__dot:nth-child(4), .pl__dot:nth-child(4):before, .pl__dot:nth-child(4):after {
    animation-delay: -0.5s;
  }
  
  .pl__dot:nth-child(5) {
    transform: rotate(-120deg) translateX(5em) rotate(120deg);
    z-index: 1;
  }
  
  .pl__dot:nth-child(5), .pl__dot:nth-child(5):before, .pl__dot:nth-child(5):after {
    animation-delay: -0.6666666667s;
  }
  
  .pl__dot:nth-child(6) {
    transform: rotate(-150deg) translateX(5em) rotate(150deg);
    z-index: 1;
  }
  
  .pl__dot:nth-child(6), .pl__dot:nth-child(6):before, .pl__dot:nth-child(6):after {
    animation-delay: -0.8333333333s;
  }
  
  .pl__dot:nth-child(7) {
    transform: rotate(-180deg) translateX(5em) rotate(180deg);
    z-index: 2;
  }
  
  .pl__dot:nth-child(7), .pl__dot:nth-child(7):before, .pl__dot:nth-child(7):after {
    animation-delay: -1s;
  }
  
  .pl__dot:nth-child(8) {
    transform: rotate(-210deg) translateX(5em) rotate(210deg);
    z-index: 3;
  }
  
  .pl__dot:nth-child(8), .pl__dot:nth-child(8):before, .pl__dot:nth-child(8):after {
    animation-delay: -1.1666666667s;
  }
  
  .pl__dot:nth-child(9) {
    transform: rotate(-240deg) translateX(5em) rotate(240deg);
    z-index: 4;
  }
  
  .pl__dot:nth-child(9), .pl__dot:nth-child(9):before, .pl__dot:nth-child(9):after {
    animation-delay: -1.3333333333s;
  }
  
  .pl__dot:nth-child(10) {
    transform: rotate(-270deg) translateX(5em) rotate(270deg);
    z-index: 5;
  }
  
  .pl__dot:nth-child(10), .pl__dot:nth-child(10):before, .pl__dot:nth-child(10):after {
    animation-delay: -1.5s;
  }
  
  .pl__dot:nth-child(11) {
    transform: rotate(-300deg) translateX(5em) rotate(300deg);
    z-index: 6;
  }
  
  .pl__dot:nth-child(11), .pl__dot:nth-child(11):before, .pl__dot:nth-child(11):after {
    animation-delay: -1.6666666667s;
  }
  
  .pl__dot:nth-child(12) {
    transform: rotate(-330deg) translateX(5em) rotate(330deg);
    z-index: 6;
  }
  
  .pl__dot:nth-child(12), .pl__dot:nth-child(12):before, .pl__dot:nth-child(12):after {
    animation-delay: -1.8333333333s;
  }
  
  .pl__text {
    font-size: 0.75em;
    max-width: 5rem;
    position: relative;
    text-shadow: 0 0 0.1em var(--fg-t);
    transform: rotateZ(-45deg);
  }
  
  /* Animations */
  @keyframes shadow724 {
    from {
      animation-timing-function: ease-in;
      box-shadow: 0.1em 0.1em 0 0.1em #2053f8, 0.3em 0 0.3em rgba(0, 0, 0, 0.3);
    }
  
    25% {
      animation-timing-function: ease-out;
      box-shadow: 0.1em 0.1em 0 0.1em #2053f8, 0.8em 0 0.8em rgba(0, 0, 0, 0.5);
    }
  
    50%, to {
      box-shadow: 0.1em 0.1em 0 0.1em #2053f8, 0.3em 0 0.3em rgba(0, 0, 0, 0.3);
    }
  }
  
  @keyframes pushInOut1724 {
    from {
      animation-timing-function: ease-in;
      background-color: var(--bg);
      transform: translate(0, 0);
    }
  
    25% {
      animation-timing-function: ease-out;
      background-color: var(--primary2);
      transform: translate(-71%, -71%);
    }
  
    50%, to {
      background-color: var(--bg);
      transform: translate(0, 0);
    }
  }
  
  @keyframes pushInOut2724 {
    from {
      animation-timing-function: ease-in;
      background-color: var(--bg);
      clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
    }
  
    25% {
      animation-timing-function: ease-out;
      background-color: var(--primary1);
      clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%);
    }
  
    50%, to {
      background-color: var(--bg);
      clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
    }
  }

  /*--------------------------*/
  /*-------End Web Site---------*/
  /*--------------------------*/
