
html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none !important;
}
/* /-------------/
/---language-----/
/-------------/ */
#language {
    position: fixed;
    right: -90px;
    top: 50%;
    width: 180px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

#language a {
    display: block;
    color: #fff;
    font-weight: bold;
    overflow: hidden;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    background: linear-gradient(75deg, #223e52, #af60c2);
    right: -54px;
    padding: 0.5rem;
}

#language a:hover {
    right: 0;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-track{
    background: #a8ffe9;
}

::-webkit-scrollbar-thumb{
    background: #08b092;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    bottom: 15px;
    right: -100px;
    color: #fff;
    z-index: 999999999999999999999999999;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: #08b092;
    border: none;
}
.btnUpTop i{
    font-size: 18px;
}
.btnUpTop:hover{
    background: #08b092;
}
.btnUpTop.show{
    right: 25px;
}

/*---Hr----*/
#hr-page{
    height: 1px;
    width: 90%;
    background: #e7a436;
    /* margin-bottom: 4rem; */
    margin: auto;
}

/*------Pages-------*/
.page{
    background: url(../img/hero-bg.png) fixed;
}

/*------------------*/
/*------Topbar------*/
/*------------------*/
.topbar {
    background: #059b7f;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}
.topbar .contact-info i {
    font-style: normal;
    color: #fff;
    line-height: 0;
}
.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    padding-left: 5px;
    color: #fff;
}
.topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}
.topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}
.topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}
.topbar .social-links a:hover {
    color: #e7a436;
}

/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav{
    background: transparent;
    position: sticky;
    top: 0;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;
    z-index: 999;
    padding: 0.5rem 0.5rem;
}
@media (max-width: 991px){
    #nav{
        background: #058a71;
        padding: 10px;
        position: sticky;
        top: 0;
        right: 0;
    z-index: 997;
    left: 0;
    }
}

#nav.sticked{
    background: #058a71;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
#nav .container{
    max-width: 1420px;
}

#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0px; */
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
    position: relative;
    margin: 10px 30px 10px 0;
}
#nav-item::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #e7a436;
    transition: all 0.3s ease-in-out 0s;
}
#nav-item:hover::before{
    width: 100%;
}
#nav-item.drop i{
    margin-left: 0.7rem;
    font-size: 20px;
    color: #e7a436;
}
#nav .dropdown-menu{
    background: #058a71;
    padding: 0;
}
#nav .dropdown-menu .dropdown-item{
    color: #fff;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    transition: 0.5s;
}
#nav .dropdown-menu .dropdown-item:hover{
    background: #e7a436;
}
#trail-btn-nav{
    color: #fff;
    background: transparent;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #e7a436;
    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: #e7a436;
}
#btn-toggler{
    background: #18d26e;
    margin-right: 1rem;
}
#btn-toggler span{
    color: #fff;
}

/*-----------*/
/*----Home---*/
/*-----------*/
#home {
    /* height: 100vh; */
    padding: 10rem 0;
    transition: all 0.3s ease-in-out 0s;
    display: flex;
    align-items: center;
    position: relative;
}

#home .container{
    max-width: 1420px;
}
#img-home{
    width: 100%;
}
#home h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #ffffffcc;
    margin-bottom: 2rem;
}
#home h2 span {
    color: #fff;
    border-bottom: 2px solid #e7a436;
    padding-bottom: 6px;
}
#home p {
    font-size: 15px;
    margin-top: 20px;
    color: #ffffffcc;
}
#home p span {
    padding-bottom: 6px;
    display: block;
}

#home .social-links {
    display: flex;
}
#home .social-links a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #34534d5d;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-right: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out 0s;
}
#home .social-links a:hover {
    background: #08b092;
}
#btn-home{
    color: #fff;
    background: transparent;
    padding: 0.75rem 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #08b092;
    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;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#btn-home::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 300%;
    background:linear-gradient(120deg,#08af92, #e7a436, #0bbe91, #e7a436,#08af92, #e7a436, #0bbe91, #e7a436);
    top: -100%;
    left: -50%;
    z-index: -1;
    transition: 0.5s;
}
#btn-home:hover::before{
    top: 0;
    left: 0;
}
#btn-home:last-child{
    background: #08b092;
}
#btn-home:hover{
    background: #08b092;
}
#btn-home i{
    margin-left: 0.5rem;
    animation: animateIcon 0.5s ease-in-out infinite alternate-reverse both;
}

@keyframes animateIcon {
    0%{
        transform: translateY(-3px);
    }
    100%{
        transform: translateY(3px);
    }
}
#home .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#08af9298 50%, #08af92e1);
    border-radius: 0;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
#home .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s infinite;
    opacity: 1;
    border-radius: 0;
    border: 5px solid #e7a336;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
#home .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%) scale(1.2);
    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 .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%) scale(1.2);
    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);
}
#home .play-btn:hover::after {
    border-left: 15px solid #e7a336;
    transform: scale(20);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
#staticBackdrop{
    background: rgb(0, 0, 0, 0.9);
}
#modal-header-video{
    border: 0;


}
#modal-videoClose{
    color: #fff;
    font-size: 25px;
    padding: 0;
    padding-top: 1rem;
    opacity: 1;
}


/*------------*/
/*----About-----*/
/*------------*/
#about{
    background: url(../img/about-bg.jpg) center center/cover no-repeat fixed;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 85px 0 50px;
    /* margin: 3rem 0; */
}
#about .container{
    max-width: 1420px;
}
#about::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0229227c;
}
#h2-about1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
#about h2 span{
    margin-bottom: 2rem;
    color: #e7a436;
    font-size: 38px;
    font-family: 'Lobster', sans-serif;
}
#about h2 span>span{
    color: #fff;
}
#about p{
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 2rem;
}
#about p span{
    display: block;
}
#h2-about2{
    font-size: 25px;
    font-weight: 700;
    color: #e7a436;
}

/*---------------*/
/*----Why Us-----*/
/*---------------*/
#whyUs{
    padding: 85px 0;
    background: rgb(0, 0, 0, 0.3);
}
#whyUs .container{
    max-width: 1420px;
}
#title-section{
    position: relative;
    margin-bottom: 2rem;
}
#title-section::before{
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    bottom: 0;
    left: 15px;
    background-image: linear-gradient(91deg, #e7a436 0%, rgba(80,125,179,0) 100%);
}
#h2-whyus{
    color: #fff;
    font-size:30px;
    font-weight: 600;
    margin-bottom: 1rem;
    /* text-align: center; */
}
#p-whyus{
    color: #fff;
    font-size:16px;
    font-weight: 500;
}
#card-whyus{
    padding: 30px 30px 25px;
    width: 100%;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}
#card-whyus i{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: #e7a436;
    border-radius: 50px;
    transition: all 0.3s ease-in-out 0s;
    line-height: 0;
}
#card-whyus:hover i{
    color: #fff;
    background: #e7a436;
}
#card-whyus span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: rgb(255, 255, 255);
}
#card-whyus p {
    padding: 0px;
    margin: 0px;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    color: #fff;
}
.hstry-img {
    float: left;
    width: 100%;
}
#whyUs img{
    width: 100%;
    transition: 0.5s;
    border-radius: 2px;
    animation: animateimgAbout 1s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimgAbout {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform:  translateY(10px);
    }
}
#whyUs ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
#whyUs ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #fff;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
#whyUs ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #08b092;
}
#why-us .card {
    background: #08ac92;
    border-color: #08ac92;
    border-radius: 10px;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s ease-in-out;
    height: 100%;
}
#why-us .card:hover {
    background: #0bcead;
    border-color: #0bcead;
}
#why-us .card i {
    font-size: 48px;
    padding-top: 15px;
    color: #e7a436;
}
#why-us .card h5 {
    font-size: 22px;
    font-weight: 600;
}
#why-us .card p {
    font-size: 15px;
    color: #d8eafe;
}
#why-us .card .readmore {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border-bottom: #e7a436 solid 2px;
    text-decoration: none;
}
#why-us .card .readmore:hover {
    border-bottom: #fff solid 2px;
}

/*--------------*/
/*----How To Start------*/
/*--------------*/
#howTostart{
    padding: 90px 0;
    background: rgb(0, 0, 0, 0.3);
    position: relative;
}
#howTostart .container{
    max-width: 1320px;
    color: #fff;
}
#howTostart h2{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
}
#howTostart h2 span{
    color: #08b092;
}

#howTostart p{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
#img-Start{
    width: 100%;
    margin-top: -1rem;
    animation: animateimg 1s  ease-in-out infinite alternate-reverse both;
}
@keyframes animateimg {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform:  translateY(-10px);
    }
}
#howTostart .icon-box i {
    font-size: 48px;
    float: left;
    color: #e7a436;
}
#howTostart .icon-box h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}
#howTostart .icon-box p {
    font-size: 15px;
    color: #fff;
    margin-left: 60px;
}

/*-------------------*/
/*-----Courses------*/
/*-------------------*/
#courses{
    padding: 70px 0;
    background: rgb(0, 0, 0, 0.3);
}
#courses .container{
    max-width: 1420px;
}

.content-inner{
    width: 100%;
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 2rem;
  }
  
  .content-inner:hover .content-front{
    transform: rotateY(-180deg);
  }
   
  .content-inner:hover .content-back{
    transform: rotateY(0deg);
  }
   
  .content-inner .content-front, .content-inner .content-back{
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
   
  .content-front{
    background: #292929;
  }
   
  .content-inner > *{
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
   
  .content-inner .cf-inner{
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%;
    padding: 150px 30px;
  }
   
  .content-front .cf-inner:before, .content-front .cf-inner:after{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
  }
   
  .content-front .cf-inner:before{
    top: 20px;
    left: 20px;
    border-left: 1px dotted;
    border-top: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
  }
   
  .content-front .cf-inner:after{
    bottom: 20px;
    right: 20px;
    border-right: 1px dotted;
    border-bottom: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
  }
   
  .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
  }
   
  .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    z-index: 3;
  }
   
  .content-inner .cf-inner .inner{
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
  }
   
  .content-inner .cf-inner .inner h2{
    position: relative;
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 20px;
    color: #fff;
  }
   
  .content-inner .cf-inner .inner h2:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 20px;
    height: 2px;
    margin-left: -10px;
  }
   
  .content-inner .cf-inner .inner h2:after{
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 50px;
    height: 2px;
    margin-left: -25px;
    background: #C19D60;
  }
   
  .content-inner .cf-inner .inner h4{
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 4px;
  }
   
  .serv-num{
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
    z-index: 3;
    font-size: 20px;
  }
   
  .content-inner .content-back{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: rotateY(180deg);
    background: #292929;
  }
  .content-back i{
    font-size: 54px;
    position: relative;
  }
   
  .content-back:after{
    color: #C19D60;
    position: absolute;
    content: "\25CF\25CF\25CF";
    width: 50px;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    font-size: 9px;
    letter-spacing: 4px;
  }
   
  .fas{
    font-weight: 300;
    font-family: 'Font Awesome\ 5 Free';
  }
   
  .fa-utensils:before{
    content: "\f2e7";
  }
   
  .content-inner .cf-inner .inner p{
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 400;
  }
#btn-courses{
    color: #fff;
    background: transparent;
    padding: 0.75rem 30px;
    /* margin: 0 0 0 15px; */
    border-radius: 50px;
    border: 2px solid #25c19e;
    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;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
#btn-courses::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 300%;
    background:linear-gradient(120deg,#08af92, #e7a436, #0bbe91, #e7a436,#08af92, #e7a436, #0bbe91, #e7a436);
    top: -100%;
    left: -50%;
    z-index: -1;
    transition: 0.5s;
}
#btn-courses:hover::before{
    top: 0;
    left: 0;
}

/*-------------------*/
/*-------Team--------*/
/*-------------------*/
#team{
    padding: 85px 0;
    background: rgb(0, 0, 0, 0.3);
}
#team .container{
    max-width: 1420px;
}

#card-team{
    box-sizing: content-box;
    background: transparent;
    margin-bottom: 1.5rem;
}

#card-team img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 8px solid #303030;
    margin-top: -5.5rem;
}
#card-team h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}
#card-team h4{
    font-size: 14px;
    color: #999;
    margin: 0;
}
#card-team p{
    padding: 3rem 1rem;
    font-style: italic;
    line-height: 2rem;
    margin: 15px auto;
    color: #fff;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
}
#card-team p i{
    color: #25c19e;
    font-size: 26px;
}
#btn-team{
    color: #fff;
    background: transparent;
    padding: 0.75rem 30px;
    border-radius: 50px;
    border: 2px solid #25c19e;
    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;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
#btn-team::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 300%;
    background:linear-gradient(120deg,#08af92, #e7a436, #0bbe91, #e7a436,#08af92, #e7a436, #0bbe91, #e7a436);
    top: -100%;
    left: -50%;
    z-index: -1;
    transition: 0.5s;
}
#btn-team:hover::before{
    top: 0;
    left: 0;
}

/*-----------------*/
/*--What The Say About Us---*/
/*-----------------*/
#review{
    padding: 4rem 0;
    position: relative;
    background: rgb(0, 0, 0, 0.3);
}
#review .container{
    max-width: 1420px;
}
#card-review{
    box-sizing: content-box;
    padding: 30px 60px 60px 30px;
    margin: 30px 0;
    min-height: 200px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}
#card-review img{
    width: 90px;
    height: 90px;
    border-radius: 100px;
    border: 6px solid #303030;
    position: absolute;
    top: -45px;
    left: 35px;
}
#card-review h3{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}
#card-review h4{
    font-size: 14px;
    color: #999;
    margin: 0;
}
#card-review p{
    font-style: italic;
    margin: 15px auto;
    color: #fff;
}
#card-review p i{
    color: #25c19e;
    font-size: 26px;
}

/*------------*/
/*--Coursoll || Review--*/
/*------------*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
#swiper-slide{
    margin: 0;

}
.swiper-slide #card-review{
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover;
}
.btn-swiper span{
    background: #e7a436;
    width: 20px;
    height: 20px;
}

/*--------------*/
/*-----Contact---*/
/*--------------*/
#contact {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
}
#contact .container{
    max-width: 1420px;
}
#title-section{
    position: relative;
    margin-bottom: 2rem;
}
#title-section::before{
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    bottom: 0;
    left: 15px;
    background-image: linear-gradient(91deg, #e7a436 0%, rgba(80,125,179,0) 100%);
}
#h2-contact{
    color: #fff;
    font-size:30px;
    font-weight: 600;
    margin-bottom: 1rem;
}

#contact .info i {
    font-size: 32px;
    color: #e7a436;
    float: left;
    line-height: 0;
}
#contact .info i {
    font-size: 32px;
    color: #e7a436;
    float: left;
    line-height: 0;
}
#contact .info {
    color: #283d50;
}

#contact .info p {
    padding: 0 0 10px 36px;
    line-height: 28px;
    font-size: 14px;
    color: #0bbe91;
}
#contact .form-group{
    margin-bottom: 0;
}
#contact .form-contact input:focus, #contact .form-contact textarea:focus {
    border-color: #e7a436;
}

#contact .form-contact input, #contact .form-contact textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 1.5rem;
}
#btn-contact {
    margin-top: 1.75rem;
    color: #fff;
    background: transparent;
    padding: 0.75rem 30px;
    border-radius: 50px;
    border: 2px solid #25c19e;
    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;
    z-index: 1;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}
#btn-contact::before{
    content: "";
    position: absolute;
    width: 200%;
    height: 300%;
    background:linear-gradient(120deg,#08af92, #e7a436, #0bbe91, #e7a436,#08af92, #e7a436, #0bbe91, #e7a436);
    top: -100%;
    left: -50%;
    z-index: -1;
    transition: 0.5s;
}
#btn-contact:hover::before{
    top: 0;
    left: 0;
}

/*---------------*/
/*------Apps-----*/
/*---------------*/
#Apps{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(45deg, #08af92c4, #e7a436),url(../img/about-bg.png) fixed;
    height: 40vh;
}
#Apps p{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#links{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
#links a {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px 10px;
    border-radius: 15px;
    gap: 15px;
}
#links a img {
    width: 46px;
}
#links a #text p {
    margin-bottom: 0;
    color: black;
    font-size: 13px;
    font-weight: 500;
}
#links a #text h5 {
    font-weight: 600;
    color: black;
}

/*-----------------*/
/*------FOOTER-----*/
/*-----------------*/
#footer{
    background: rgb(0, 0, 0, 0.3);
    padding: 60px 0 30px 0;
}
#logo-footer h1{
    color: #25c19e;
    font-size: 30px;
    font-weight: 600;
    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 #25c19e;
}
#link-footer{
    text-decoration: none;
    transition: 0.5s;
    display: block;
    color: #eee;
    padding: 0.5rem 0;
    border-bottom: 1px solid #264426;
}
#link-footer:hover{
    color: #25c19e;
}
#link-footer i{
    margin-right: 5px;
    color: #25c19e;
}
.icon-footer{
    display: flex;
    align-items: center;
}
.icon-footer a, .icon-footer a:hover{
    text-decoration: none;
}
.item-iconfooter{
    background: #233622;
    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: #25c19e;
}
  
.page-end{
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0 0.5rem;
}
.page-end .container{
    max-width: 1520px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-end p{
    color: #fff;
}
.page-end p span{
    color: #25c19e;
}
/*------Footer End---------*/

/* /------------/
/---abuot---/
/------------/ */
#about-page {
    padding: 60px 0;
    color: #fff;
}

#title-section{
    position: relative;
    margin-bottom: 2rem;
}
#title-section::before{
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    bottom: 0;
    left: 15px;
    background-image: linear-gradient(91deg, #e7a436 0%, rgba(80,125,179,0) 100%);
}
#h2-about-page{
    color: #fff;
    font-size:30px;
    font-weight: 600;
    margin-bottom: 1rem;
}
#p-about-page{
    color: #fff;
    font-size:16px;
    font-weight: 500;
}

#about-page .about-container .icon-box {
    background-size: cover;
    padding: 0 0 30px 0;
}
#about-page .about-container .icon-box .icon {
    float: left;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #e7a436;
    transition: all 0.3s ease-in-out;
}
#about-page .about-container .icon-box .icon i {
    color: #e7a436;
    font-size: 24px;
    line-height: 0;
}
#about-page .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}
#about-page .about-container .title {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
}
#about-page .about-container .icon-box .title a {
    color: #e7a436;
    text-decoration: none;
}
#about-page .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

#about-page .about-container p {
    line-height: 26px;
}
#about-page .about-extra h4 {
    font-weight: 600;
    font-size: 24px;
    color: #2b9e89;
}
#about-page .about-extra {
    padding-top: 60px;
}

#about-page .about-container .icon-box:hover .icon {
    background: #e7a436;
    color: white;
}
#about-page .about-container .icon-box:hover .icon i{
color: white;
}
#about-page .about-container .icon-box .icon {
    float: left;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #e7a436;
    transition: all 0.3s ease-in-out;
}

/*-----------------*/
/*-Login//Register-*/
/*-----------------*/
#loggiin #wrapper-animte{
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* /------------------------------/
/--------Login-Register----------/
/------------------------------/ */
#loggiin .login-register{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
#loggiin .wrapper{
    position: relative;
    width: 750px;
    height: 450px;
    background: transparent;
    border: 2px solid #e7a436;
    overflow: hidden;
    box-shadow: 0 0 20px #e7a436;
    max-width: 100%;
    max-height: 100%;
}
#loggiin .form-box{
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#loggiin .form-box.login{
    left: 0;
    padding: 0 60px 0 40px;
}
#loggiin .form-box.login .animation{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition: 0.7s ease;
    transition-delay: calc(.1s * var(--j));
}
#loggiin .wrapper.active .form-box.login .animation{
    transform: translateX(-120%);
    opacity: 0;
    filter: blur(7px);
    transition-delay: calc(.1s * var(--i));
}
#loggiin .form-box.register{
    right: 0;
    padding: 0 40px 0 60px;
    pointer-events: none;
    /*  */
}
#loggiin .wrapper.active .form-box.register{
    pointer-events: auto;
}
#loggiin .form-box.register .animation{
    transform: translateX(120%);
    transition: 0.7s ease;
    opacity: 0;
    filter: blur(7px);
    transition-delay: calc(.1s * var(--j));
}
#loggiin .wrapper.active .form-box.register .animation{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition-delay: calc(.1s * var(--i));
}
#loggiin .form-box h2{
    font-size: 32px;
    color: #fff;
    text-align: center;
}
#loggiin .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 25px 0;
}
#loggiin .input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    padding-right: 26px;
}
#loggiin .input-box input:focus,
#loggiin .input-box input:valid{
    border-bottom-color: #08b092;
}
#loggiin .input-box label{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: 0.5s;
}
#loggiin .input-box input:focus~label,
#loggiin .input-box input:valid~label{
    top: -5px;
    color: #08b092;
}
#loggiin .input-box i{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    transition: 0.5s;
}
#loggiin .input-box input:focus~i,
#loggiin .input-box input:valid~i{
    color: #08b092;
}
#loggiin .btn{
    position: relative;
    width: 100%;
    height: 45px;
    background: transparent;
    border: 1px solid #08b092;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
}
#loggiin .btn::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 300%;
    background: linear-gradient(#081b29, #08b092, #081b29, #08b092);
    top: -100%;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}
#loggiin .btn:hover::before{
    top: 0;
}
#loggiin .logred-link{
    font-size: 14.5px;
    color: #fff;
    text-align: center;
    margin: 20px 0 10px;
}
#loggiin .logred-link p a{
    color: #08b092;
    text-decoration: none;
    font-weight: 600;
}
#loggiin .logred-link p a:hover{
    text-decoration: underline;
}

#loggiin .info-text{
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#loggiin .info-text.login{
    right: 0;
    text-align: right;
    padding: 0 40px 60px 150px;
}
#loggiin .info-text.login .animation{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition: 0.7s ease;
    transition-delay: calc(.1s * var(--j));
    text-align: center;
}
@media (max-width: 700px) {
    #loggiin .info-text.login{
        display: none;
    }
    #loggiin .form-box.login{
        width: 100%;
    }
}
#loggiin .wrapper.active .info-text.login .animation{
    transform: translateX(120%);
    opacity: 0;
    filter: blur(7px);
    transition-delay: calc(.1s * var(--i));
}
#loggiin .info-text.register{
    left: 0;
    text-align: left;
    padding: 0 150px 60px 40px;
    pointer-events: none;
}
#loggiin .wrapper.active .info-text.register{
    pointer-events: auto;
}
#loggiin .info-text.register .animation{
    transform: translateX(-120%);
    transition: 0.7s ease;
    opacity: 0;
    filter: blur(10px);
    transition-delay: calc(.1s * var(--j));

}
@media (max-width: 700px) {
    #loggiin .info-text.register{
        display: none;
    }
    #loggiin .form-box.register{
        width: 100%;
    }
}
#loggiin .wrapper.active .info-text.register .animation{
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
    transition-delay: calc(.1s * var(--i));
}

#loggiin .info-text h2{
    font-size: 36px;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
}
#loggiin .info-text p{
    font-size: 16px;
    color: #fff;
}
#loggiin .bg-animate{
    position: absolute;
    top: -4px;
    right: 0;
    width: 850px;
    height: 600px;
    background: linear-gradient(45deg, #000, #08b092);
    border-bottom: 3px solid #e7a436;
    transform: rotate(10deg) skewy(40deg);
    transform-origin: bottom right;
    transition: 1.5s ease;
    transition-delay: 1.6s;
}
#loggiin .wrapper.active .bg-animate{
    transform: rotate(0) skewy(0);
    transition-delay: 0.5s;
}
#loggiin .bg-animate2{
    position: absolute;
    top: 100%;
    left: 250px;
    width: 850px;
    height: 700px;
    background: #000;
    border-top: 3px solid #e7a436;
    transform: rotate(0) skewy(0);
    transform-origin: bottom left;
    transition: 1.5s ease;
    transition-delay: 0.5s;
}
#loggiin .wrapper.active .bg-animate2{
    transform: rotate(-11deg) skewy(-41deg);
    transition-delay: 1.2s;
}

/*-----------------------*/
/*------price page-------*/
/*-----------------------*/
#price-page{
    padding: 4rem 0;
}
#price-page .container{
    max-width: 1320px;
}
#price-page .price-item{
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    background-color: white;
}
#price-page h6#head{
    color: #e6a235;
}
#price-page h1#money{
    font-weight: bold;
}
#price-page h1#money small:first-of-type{
    font-size: 22px;
    line-height: 45px;
    font-weight: bold;
}
#price-page h1#head{
    color: #08b092;
}
#price-page #month{
    font-size: 16px;
    line-height: 40px;
    color: #08b092;
    font-weight: bold;
}
#price-page .price-item a.btn-slide{
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 0;
    font-weight: bold;
    text-decoration: none;
}
#price-page .price-item a.btn-slide i,
#price-page .price-item a.btn-slide span
{
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: #08b092;
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}
#price-page .price-item a.btn-slide span{
    padding-left: 0;
    left: -100%;
    z-index: 1;
}
#price-page .price-item:hover a.btn-slide i{
    border-radius: 0;
}
#price-page .price-item:hover a.btn-slide span{
    left: 0;
}
#price-page .price-item a.btn-slide:hover i,
#price-page .price-item a.btn-slide:hover span {
    background: #e6a235;
}
#price-page .price-item p i{
    margin-right: 0.7rem;
}

#card-price{
    transition: 1s;
    transform-style: preserve-3d;
    transform: perspective(2000px);
}
#topimg-price{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left;
    background: black;
    transition: 1s;
    z-index: 9;
}
#card-price:hover #topimg-price{
    transform: rotateY(-135deg);
}
#topimg-price img{
    width: 100%;
    height: 100%;
}

/* /----------------------------/
/-------Pricing Start-------/
/----------------------------/ */
#price{
    background-color: #f6f7fd;
    overflow: hidden;
    padding: 90px 0;

}
#price .container{
    max-width: 1320px;
}
.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;
}
#p2-price{
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    margin: 30px auto 30px auto;
    color: #0e1b4d;
}

#card-price{
    margin-bottom: 2rem;
    transition: 0.5s;
    border: 0;
}
#card-price:hover{
    border: 1px solid #e7a436;
}
#card-price.active{
    border: 1px solid #e7a436;
}
.bottom-card.active{
    border-top: 1px solid #e7a436;
}
.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;
}

/*------------------*/
/*----Courses Page----*/
/*------------------*/
#Course-page .container{
    max-width: 1420px;
}
#courses .icon-box {
    text-align: center;
    background: rgba(204, 204, 204, 0.1);
    padding: 80px 20px;
    transition: all 0.3s ease-in-out 0s;
    margin-bottom: 2rem;
}
#courses .icon-box:hover {
    background: #08b092;
    border-color: #08b092;
}
#courses .icon-box .icon {
    margin: 0px auto 20px;
    width: 64px;
    height: 64px;
    background: #08b092;
    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:hover .icon{
    background: #fff;
}
#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: #35e888;
}
#courses .icon-box .icon i {
    color: rgb(255, 255, 255);
    font-size: 28px;
}
#courses .icon-box:hover .icon i {
    color: #25c19e;
}
#courses .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}
#courses .icon-box h4 a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}
#courses .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
}
#courses #content-inner {
    width: 100%;
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 50px;
}
#courses #content-inner:hover #content-front {
    transform: rotateY(-180deg);
}
#courses #content-inner:hover #content-back {
    transform: rotateY(0deg);
}
#courses #content-inner #content-front,
#courses #content-inner #content-back {
    position: absolute;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

#courses #content-front {
    background: #292929;
}

#courses #content-inner>* {
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#courses #content-inner #cf-inner {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%;
    padding: 80px 30px;
    height: 100%;
}
#courses #content-front #cf-inner:before,
#courses #content-front #cf-inner:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
}
#courses #content-front #cf-inner:before {
    top: 20px;
    left: 20px;
    border-left: 1px dotted;
    border-top: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
}
#courses #content-front #cf-inner:after {
    bottom: 20px;
    right: 20px;
    border-right: 1px dotted;
    border-bottom: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
}
#courses #content-inner #cf-inner #inner {
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
    transition-delay: 0.5s;
    flex-direction: column;
}
#courses #content-inner #cf-inner #inner h2 {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 20px;
    color: #fff;
}
#courses #content-inner #cf-inner #inner h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 20px;
    height: 2px;
    margin-left: -10px;
}
#courses #content-inner #cf-inner #inner h2:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 50px;
    height: 2px;
    margin-left: -25px;
    background: #C19D60;
}

#courses #content-inner #cf-inner #inner h4 {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 4px;
}
#courses #content-inner #content-back {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: rotateY(180deg);
    background: #292929;
}

#courses #content-back i {
    font-size: 54px;
    position: relative;
}

#courses #content-back:after {
    color: #C19D60;
    position: absolute;
    content: "\25CF\25CF\25CF";
    width: 50px;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    font-size: 9px;
    letter-spacing: 4px;
}
#courses #content-inner #cf-inner #inner p {
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 400;
}
#btn-courses{
    color: #fff;
    background: #25c19e;
    padding: 7px 30px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #25c19e;
    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-courses:hover{
    background: #18d26fb9;
}

/*------------------*/
/*-----Course Detailes------*/
/*------------------*/
#courses-details #hero{
    background: url(../img/WhatsApp\ Image\ 2024-04-01\ at\ 11.17.07_e77fa91f.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 130px 0;
    padding-bottom: 0;
}
#courses-details  .container{
    max-width: 1420px;
}
#courses-details #hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.445);
}
#courses-details #hero #text{
    position: relative;
    color: white;
}
#courses-details #hero h1{
    font-weight: 700;
}
#courses-details #hero p{
    margin-bottom: 2rem;
}
#courses-details #hero a{
    color: white;
    background-color: #059b7f;
    transition: 0.3s;
    padding: 10px 27px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
}
#courses-details #hero a:hover{
    background-color: #e7a436;
}
#courses-details #hero #info{
    position: relative;
    top: 5rem;
    width: 100%;
    max-width: 100%;
}
#courses-details #hero #info #all{
    padding: 15px 0;
    background-color: white;
}
#courses-details #hero #info #box{
    padding: 30px 15px;
    text-align: center;
}
#courses-details #hero #info #box{
    border-right: 1px solid #e6a235;
}
#courses-details #hero #info #box h3{
    color: #059b7f;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
}
#courses-details #hero #info #box h4{
    color: black;
    font-weight: 500;
    font-size: 16px;
}
#courses-details #detailes{
    padding-top: 10rem;
    padding-bottom: 50px;
}
#courses-details #detailes h2{
    color: #059b7f;
    font-weight: 600;
    font-size: 32px;
}
#courses-details #detailes p{
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    #courses-details #hero #info #all{
        padding: 15px 25px;
    }
    #courses-details #hero #info #box{
        border-right: 0;
        border-bottom: 1px solid #e6a235;
    }
}
#courses-details ul {
    padding-left: 0;
    margin-bottom: 0;
    float: left;
    width: 100%;
    list-style: none;
    margin-top: -5px;
}
#courses-details ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #e7a436;
    float: left;
    position: relative;
    padding: 0 15px 0 20px;
    width: 50%;
    margin-top: 10px;
}
#courses-details ul li:before {
    content: "";
    height: 11px;
    width: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    background: #059b7f;
}
/*-------------------*/
/*------FAQS Page----*/
/*-------------------*/
#faqsPage{
    padding: 70px 0;
}
#faqsPage .container{
    max-width: 1420px;
}
#card-faq{
    padding: 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    background: transparent;
    margin-bottom: 20px;
    border-radius: 0;
    cursor: pointer;
    border: 2px solid #059b7f;
}
#faqsPage .card-header{
    border: none;
    padding: 0.5rem;
}
#faqsPage p{
    font-size: 15px;
    color: #ffffff;
}
#faqsPage #card-faq h2{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/*------------------*/
/*----Blog Detailes----*/
/*------------------*/
#blog-details {
    padding-top: 50px;
    padding-bottom: 50px;
}
#blog-details .container{
    max-width: 1420px;
}

#blog-details #sprout-blog #main-blog img{
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
#blog-details #sprout-blog #main-blog h2{
    color:#e6a235;
    font-size: 20px;
}
#blog-details #sprout-blog #main-blog p{
    color: white;
}

#blog-details #sprout-blog #box{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}
#blog-details #sprout-blog #box img{
    width: 35%;
    max-width: 100%;
}
#blog-details #sprout-blog #box h2{
    color: #058a71;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
#blog-details #sprout-blog #box p{
    color: white;
    font-size: 15px;
}
#blog-details #latest{
    padding-top: 50px;
    padding-bottom: 30px;
}
#blog-details #latest h2#head{
    color: white;
    font-weight: 700;
    margin-bottom: 22px;
}
#blog-details #latest #box{
    transition: 0.3s;
    margin-bottom: 20px;
}
#blog-details #latest #box:hover{
    box-shadow: rgba(6, 184, 0, 0.2) 0px 8px 24px;
}
#blog-details #latest #box img{
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}
#blog-details #latest #box h4{
    color: #059b7f;
    font-size: 17px;
}

/*-----------------*/
/*-----Blog page-----*/
/*-----------------*/
#blog-page{
    padding: 3rem 0;
}
#blog-page .container{
    max-width: 1420px;
}
#card-blog{
    background: transparent !important;
    border: 1px solid #058a71;
    padding: 1rem 0.2rem;
    border-radius: 0;
    margin-bottom: 2rem;
}
#link-blog-page{
    color: #e7a436;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
#cardbodyBlog p{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
#btn-blog-bage{
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 2rem;
    background: #058a71;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
#btn-blog-bage::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #e7a436;
    z-index: -1;
    transition: 0.5s;
}
#btn-blog-bage:hover::before{
    height: 100%;
}

/*----------------------*/
/*-------Student--------*/
/*----------------------*/
#Student{
    padding: 3rem 0;
}
#Student .container{
    max-width: 1420px;
}
.Student .Student-member {
    overflow: hidden;
    background: #058a71;
    padding-bottom: 1rem;
    color: #fff;
    margin-bottom: 2rem;
}
.Student .Student-member .member-info {
    padding: 25px 15px 0 15px;
    text-align: center;
}

/*-------------------*/
/*-Teacher Applecation-*/
/*-------------------*/
#teach-app{
    padding: 3rem 0;
}
#teach-app .container{
    max-width: 1420px;
}
#teach-app #info h1{
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}
#teach-app #info p{
    color: white;
}
#teach-app #info img{
    width: 100%;
    max-width: 100%;
}
#teach-app #box {
    margin-bottom: 30px;
}
#teach-app #box label{
    color: white;
}
#input-jops{
    box-shadow: none;
    font-size: 14px;
    padding: 1.5rem 1rem;
    border-radius: 0;
    color: #081b29;
}
#select-jops{
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
    height: 50px;
}
#fill-jops{
    box-shadow: none;
    height: 50px;
    font-size: 14px;
    border-radius: 0;
    color: #081b29;
}
#input-jops:focus,#select-jops:focus,#teach-app #box textarea:focus{
    box-shadow: none;
    border-color: #e7a436;
}
#teach-app #box textarea{
    border-radius: 0;
}

#teach-app #box-link a{
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 2rem;
    background: #058a71;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
#teach-app #box-link a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #e7a436;
    z-index: -1;
    transition: 0.5s;
}
#teach-app #box-link a:hover::before{
    height: 100%;
}

/*-----------------------*/
/*------Ploicy---------*/
/*-----------------------*/
#privacy-policy{
    padding: 3rem 0;
}
#privacy-policy .container{
    max-width: 1420px;
}
#privacy-policy #title-privacy{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#privacy-policy #title-privacy h1::before{
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    bottom: 0;
    left: 15px;
    background-image: linear-gradient(91deg, #08b092c2 0%, rgba(80,125,179,0) 100%);
}
#privacy-policy #title-privacy h1{
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
#privacy-policy #title-privacy img{
    width: 50%;
    max-width: 100%;
    height: 30rem;
    max-height: 50rem;
}
#privacy-policy h2{
    color: #058a71;
    font-weight: 700;
    position: relative;
    z-index: 1;
    width: fit-content;
}
#privacy-policy h2::before{
    content: "";
    position: absolute;
    height: 13px;
    width: 100%;
    background-color: #e7a436;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#privacy-policy p{
    color: white;
}
#privacy-policy ul{
    color: white;
}
#privacy-policy a{
    color: #e7a436;
    font-weight: 600;
}

/*-----------------------*/
/*------Tearms---------*/
/*-----------------------*/
#Tearms{
    padding: 3rem 0;
}
#Tearms .container{
    max-width: 1420px;
}
#Tearms #title-privacy{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#Tearms #title-privacy h1::before{
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    bottom: 0;
    left: 15px;
    background-image: linear-gradient(91deg, #08b092c2 0%, rgba(80,125,179,0) 100%);
}
#Tearms #title-privacy h1{
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
#Tearms #title-privacy img{
    width: 50%;
    max-width: 100%;
    height: 30rem;
    max-height: 50rem;
}
#Tearms h2{
    color: #058a71;
    font-weight: 700;
    position: relative;
    z-index: 1;
    width: fit-content;
}
#Tearms h2::before{
    content: "";
    position: absolute;
    height: 13px;
    width: 100%;
    background-color: #e7a436;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#Tearms p{
    color: white;
}
#Tearms ul{
    color: white;
}
#Tearms a{
    color: #e7a436;
    font-weight: 600;
}

/*-------------------*/
/*-Teacher Applecation-*/
/*-------------------*/
#enroll{
    padding: 3rem 0;
}
#enroll .container{
    max-width: 1420px;
}
#enroll #info h1{
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}
#enroll #info p{
    color: white;
}
#enroll #info img{
    width: 100%;
    max-width: 100%;
}

#enroll p{
    color: #fff;
}

#enroll .enroll-form {
    padding: 15px;
    border-radius: 0;
    border: 1px solid #058a71;
}
@media (max-width:450px) {
    #enroll .enroll-form{
        padding: 5px;
    }
}
#input-enroll,
#textarea-enroll
{
    padding: 20px 15px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 0;
    margin-bottom: 2rem;
    background: #f7f9fc;
}
#select-enroll{
    height: 42px;
    color: #000;
    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: #fff;
}
#enroll #checked-police{
    color: #29746f;
    font-size: 17px;
    font-weight: 600;
}
#enroll #checked-police:hover{
    text-decoration: underline 1px solid #059652;
}
#btn-enroll{
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 0.5rem 2rem;
    background: #058a71;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
#btn-enroll::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #e7a436;
    z-index: -1;
    transition: 0.5s;
}
#btn-enroll:hover::before{
    height: 100%;
}