/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#hero:before {
    content: "";
    background: rgba(13, 20, 26, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 10px 35px 10px 35px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #ff4a17;
    border: 2px solid #ff4a17;
}

#hero .btn-get-started:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 25px 8px 40px;
    transition: 0.5s;
    margin-left: 25px;
    color: #fff;
    position: relative;
}

#hero .btn-watch-video i {
    color: #fff;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 7px;
    transition: 0.3s;
}

#hero .btn-watch-video:hover i {
    color: #ff4a17;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f0f4f8;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5c8eb0;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ff8664;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Jost", sans-serif;
    color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    padding-top: 15px;
}

.about .count-box {
    padding: 60px 0;
    width: 100%;
}

.about .count-box i {
    display: block;
    font-size: 48px;
    color: #a1bdd1;
    float: left;
}

.about .count-box span {
    font-size: 28px;
    line-height: 25px;
    display: block;
    font-weight: 700;
    color: #365870;
    margin-left: 60px;
}

.about .count-box p {
    padding: 5px 0 0 0;
    margin: 0 0 0 60px;
    /* font-family: "Raleway", sans-serif; */
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2e4b5e;
}

.about .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #2e4b5e;
    font-size: 15px;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Jost", sans-serif;
    transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
    color: #477392;
}

.about .content {
    font-size: 15px;
}

.about .content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: #fff;
    font-size: 18px;
}

.about .content ul i {
    font-size: 24px;
    color: #343a40;
    position: absolute;
    left: 0;
    top: -2px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ff4a17 50%, rgba(255, 74, 23, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 74, 23, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #ff4a17;
    transform: scale(20);
}

.about .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;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Course
--------------------------------------------------------------*/
#course-section {
    background-image: linear-gradient(0deg, #38434b60 0%, #e7e7e7 74%);
}

.w-color {
    color: rgb(78, 78, 78) !important;
}

/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
    background: url("../../img/about-boxes-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 30px 0;
    position: relative;
}

.about-boxes::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

.about-boxes .container,
.about-boxes .container-fluid {
    position: relative;
    z-index: 10;
}

.about-boxes .card {
    border-radius: 1rem;
    border: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-boxes .card-icon {
    text-align: center;
    margin-top: -32px;
}

.about-boxes .card-icon i {
    font-size: 32px;
    color: #ff4a17;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 21%);
    width: 64px;
    height: 64px;
    padding-top: 5px;
    text-align: center;
    border-radius: 4px;
    text-align: center;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
    border-radius: 1rem;
}

.about-boxes .card-body {
    padding-top: 12px;
}

.about-boxes .card-title {
    font-weight: 700;
    text-align: center;
}

.about-boxes .card-title a {
    color: #15222b;
}

.about-boxes .card-title a:hover {
    background: #ff4a17;
    color: #ffffff;
}

.about-boxes .card-text {
    color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
    background: #fff;
    color: #ff4a17;
}

@media (max-width: 1024px) {
    .about-boxes {
        background-attachment: scroll;
    }
}

/*--------------------------------------------------------------
# Features tabs
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 1px solid #b5ccdb;
    padding: 15px;
    transition: 0.3s;
    color: #15222b;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: #ff4a17;
}

.features .nav-link.active {
    background: #ff4a17;
    color: #fff;
    border-color: #ff4a17;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }
    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #ff4a17;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features circle 
--------------------------------------------------------------*/

.holderCircle {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    margin: auto auto;
    position: relative;
}

.dotCircle {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    z-index: 20;
}
.dotCircle .itemDot {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    background: #ffffff;
    color: #c7864a;
    border-radius: 20px;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    z-index: 3;
    cursor: pointer;
    border: 2px solid #e6e6e6;
}
.dotCircle .itemDot .forActive {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.dotCircle .itemDot .forActive::after {
    content: "";
    width: 5px;
    height: 5px;
    border: 3px solid #eb9e46;
    bottom: -31px;
    left: -14px;
    filter: blur(1px);
    position: absolute;
    border-radius: 100%;
}
.dotCircle .itemDot .forActive::before {
    content: "";
    width: 6px;
    height: 6px;
    filter: blur(5px);
    top: -15px;
    position: absolute;
    transform: rotate(-45deg);
    border: 6px solid #c56f36;
    right: -39px;
}
.dotCircle .itemDot.active .forActive {
    display: block;
}
.round {
    position: absolute;
    left: 40px;
    top: 45px;
    width: 410px;
    height: 410px;
    border: 2px dotted #ff7525;
    border-radius: 100%;
    -webkit-animation: rotation 100s infinite linear;
}
.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
    color: #ffffff;
    transition: 0.5s; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
    background: #eb701e;
    /* Old browsers */
    background: -moz-linear-gradient(left, #ff6b3b 0%, #f39200 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ff4800 0%, #ff7f16 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ff4800 0%, #ff7f16 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d4ac7', endColorstr='#a733bb', GradientType=1);
    /* IE6-9 */
    border: 2px solid #ffffff;
    -webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}
.dotCircle .itemDot {
    font-size: 40px;
}
.contentCircle {
    width: 250px;
    border-radius: 100%;
    color: #222222;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contentCircle .CirItem {
    border-radius: 100%;
    color: #222222;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
    font-size: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin: auto;
    line-height: 250px;
}
.CirItem.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s;
}
.contentCircle .CirItem i {
    font-size: 180px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -90px;
    color: #b3482b;
    opacity: 0.2;
}
@media only screen and (min-width: 300px) and (max-width: 500px) {
    .holderCircle {
        width: 304px;
        height: 304px;
        margin: 110px auto;
    }
    .holderCircle::after {
        width: 100%;
        height: 100%;
    }
    .dotCircle .itemDot {
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background: #ffffff1e;
    }
    .dotCircle .itemDot .forActive {
        width: 30px;
        height: 30px;
    }
    .round {
        left: 0px;
        top: 0px;
        width: 304px;
        height: 304px;
    }
    .title-box p {
        font-size: 12px;
        line-height: 2em;
    }
    .contentCircle {
        top: 75px;
    }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
}
.title-box .title {
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: -1;
}
.title-box span {
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    font-weight: 800;
    color: #ce5200;
}
.title-box p {
    font-size: 17px;
    line-height: 2em;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.services .icon-box i {
    float: left;
    color: #5c8eb0;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #365870;
    transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
    color: #ff4a17;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

.services .icon-box:hover h4 a {
    color: #ff4a17;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(13, 20, 26, 0.7);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
    background-color: #ff4a17 !important;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# teacher
--------------------------------------------------------------*/
.teacher {
    position: relative;
}

.teacher .container {
    position: relative;
    z-index: 10;
}

.teacher .member {
    margin-bottom: 80px;
    position: relative;
}

.teacher .member .pic {
    overflow: hidden;
}

.teacher .member .member-info {
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 15px;
    color: #15222b;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.5s;
    border-radius: 1rem;
}

.teacher .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #15222b;
    position: relative;
    padding-bottom: 10px;
}

.teacher .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #7fa5c0;
    bottom: 0;
    left: 0;
}

.teacher .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.teacher .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.teacher .member .social a {
    transition: color 0.3s;
    color: #477392;
}

.teacher .member .social a:hover {
    color: #ff4a17;
}

.teacher .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .teacher .member {
        margin-bottom: 110px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    border-radius: 1rem;
}

.contact .info-box i {
    font-size: 32px;
    color: #ff4a17;
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */
    padding: 30px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 1rem;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #ff4a17;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #ff4a17;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 1rem;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff5e31;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.b-rd {
    border-radius: 3rem;
    padding: 0 2rem;
    background-image: linear-gradient(147deg, #ff8a00 0%, #ff6600 90%);
}

.img-fluid {
    border-radius: 3rem;
}

.reverse {
    flex-direction: row-reverse;
}
.video {
    box-shadow: none !important;
}

.cent {
    text-align: center;
    z-index: 5;
}
.cent p {
    text-align: center;
}

.player {
    border-radius: 1rem;
    overflow: hidden;
    z-index: 1;
    width: 560px;
    height: 315px;
}
.pos-rel {
    position: relative;
}

.oh {
    overflow: hidden;
}

.wrap {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slide-container {
    position: absolute;
    left: 0;
    height: 100%;
}

.slides {
    display: flex;
    flex: row;
    flex-wrap: no-wrap;
    height: 100%;
    margin: 0;
    padding: 0;
    padding-top: 1rem;
}

.animate {
    animation: moveSlideshow 150s linear infinite;
}

@keyframes moveSlideshow {
    100% {
        transform: translate3d(calc(-100% + 100vw), 0, 0);
    }
}
.slides li {
    display: block;
    box-sizing: border-box;
    /* width: 22.33vw; */
    height: 300px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 1.3rem;
}
.mem-wrap {
    border-radius: 1rem;
    box-shadow: -2px 11px 15.5px 9px #dddddd;
    margin-top: 1rem;
    height: 330px;
}
.member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 2rem;
    padding: 1rem;
}
.member-info {
    color: rgb(247, 111, 0);
}

/* .slides li > div {
display: flex;
padding: 0;
margin: 0;
box-sizing: border-box;
border-radius: 30px;
font-family: "Roboto", sans-serif;
font-weight: bold;
text-align: center;
justify-content: center;
align-self: center;
}

.slides li span {
display: block;
font-size: 40vh;
line-height: 100vh;
font-weight: 800;
letter-spacing: -0.06em;
color: #00509a;
} */

/*-- Hero - 1 --*/
.hero-1 {
    padding: 110px 0px 98px;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
}
.img-w {
    width: 85%;
    margin-left: 5rem;
    transform: scaleX(-1);
}

.flex-s {
    display: flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-1 {
        height: auto;
        padding: 150px 0px 80px;
    }
    .img-w {
        width: 100%;
        margin-left: 0;
    }
    .flex-s {
        justify-content: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-1 {
        height: auto;
        padding: 150px 0px 80px;
    }
    .img-w {
        width: 100%;
        margin-left: 0;
    }
    .flex-s {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .hero-1 {
        height: auto;
        padding: 140px 0px 70px;
    }
    .flex-s {
        justify-content: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero-1 {
        height: auto;
        padding: 140px 0px 70px;
    }
    .flex-s {
        justify-content: center;
    }
}

@media only screen and (max-width: 575px) {
    .hero-1 {
        height: auto;
    }
    .flex-s {
        justify-content: center;
        margin-bottom: 2rem !important;
    }
}
@media only screen and (max-width: 350px) {
    .flex-s {
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-1 .hero-1-content {
        margin-bottom: 120px;
    }
    .slides li {
        width: 15rem;
    }
    .res-flex {
        flex-direction: column;
    }
    .p-table {
        align-self: center;
        max-width: 40rem;
    }
    .p-text {
        margin-bottom: 5rem;
        text-align: center;
        align-self: center;
        max-width: 120rem !important;
    }
    .hero-1 .hero-1-content .title {
        text-align: center;
    }
}

.hero-1 .hero-1-content .hero-1-button-group {
    margin: -15px;
}

.hero-1 .hero-1-content .hero-1-button-group a {
    margin: 0.5rem;
}

.hero-1 .hero-1-content .title {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 15px;
    color: #272a3a;
    font-family: "Jost", sans-serif;
}

@media only screen and (max-width: 767px) {
    .hero-1 .hero-1-content .title {
        font-size: 50px;
        line-height: 56px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-1 .hero-1-content .title {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 10px;
    }
}

.hero-1 .hero-1-content p {
    font-size: 18px;
    line-height: 40px;
    margin: 0;
    margin-bottom: 33px;
    font-weight: 300;
    color: #565972;
}

@media only screen and (max-width: 767px) {
    .hero-1 .hero-1-content p {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 35px;
    }
    .img-w {
        width: 100%;
        margin-left: 0;
    }
    .slides li {
        width: 15rem;
    }
    .pricing-btns-group {
        margin-bottom: 50px;
        font-size: 20px;
    }
    .pricing-card {
        margin-bottom: 60px;
    }
    .section-block {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 575px) {
    .hero-1 .hero-1-content p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .img-w {
        width: 100%;
        margin-left: 0;
    }
    .slides li {
        width: 15rem;
    }
}

.btn.theme-btn {
    color: #fff;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    padding: 0px 40px;
    border-radius: 1rem;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    height: 45px;
    line-height: 45px;
    background-color: #fa6a0a;
}
.download {
    color: rgb(34, 34, 34) !important;
    background-color: #fff !important;
    border: 1px solid #fa6a0a !important;
}
.download:hover {
    box-shadow: 0px 17px 43px 1px rgba(247, 148, 36, 0.4) !important;
    color: #fff !important;
    background-color: #fa6a0a !important;
}

.btn.theme-btn:hover {
    background-color: #38434b;
    color: #ffffff;
    -webkit-box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4);
    box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4);
}

.btn.theme-btn:focus {
    outline: none;
}

.orange {
    color: #ff7a00;
}

.white {
    color: #fff;
    font-size: 18px;
}
.center {
    text-align: center;
}
.h-black {
    color: #ff7a00 !important;
    font-size: 33px !important;
    margin-bottom: 2rem;
}
.video-text {
    font-size: 18px;
    line-height: 1.6;
    justify-content: center;
    /* text-align: left !important; */
    margin-left: 2rem;
    border-radius: 2rem;
    box-shadow: 0.5px 11px 13.5px -1.5px #dddddd;
    padding: 2rem;
    /* background-image: linear-gradient(147deg, #ff8a00 0%, #ff6600 90%); */
    border-bottom: solid 4px #ff6600;
    border-left: solid 6px #ff6600;
    /* color: #fff; */
}

:root {
    --color-text: #616161;
    --color-text-btn: #ffffff;
    --card1-gradient-color1: #f12711;
    --card1-gradient-color2: #f5af19;
}
.card-wrap {
    width: 220px;
    background: #fff;
    border-radius: 20px;
    border: 5px solid #fff;
    overflow: hidden;
    color: var(--color-text);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.card-wrap:hover {
    border: 4px solid #ff672f;
    transform: scale(1.1);
}
.card-header1 {
    height: 200px;
    width: 100%;
    background: red;
    border-radius: 100% 0% 100% 100% / 0% 100% 100% 100% !important;
    display: grid;
    place-items: center;
}

.card-header1 i {
    color: #fff;
    font-size: 72px;
}
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.card-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.card-text {
    text-align: center;
    font-size: 14px;
    margin-bottom: 24px;
}
.card-btn {
    border: none;
    border-radius: 100px;
    padding: 5px 30px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.card-header1.one {
    background-image: linear-gradient(147deg, #ff8a00 0%, #ff6600 90%);
}
.card-btn.one {
    background: linear-gradient(
        to left,
        var(--card1-gradient-color1),
        var(--card1-gradient-color2)
    );
}

.bor {
    border-radius: 25% 25% 25% 25% / 0% 0% 6% 6%;
}

.bg-section {
    height: 100%;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 3rem;
}

.about {
    z-index: 3;
    margin-bottom: 2rem;
}

.feat {
    border-bottom: 5px solid #ff7a00 !important;
}

.teach {
    background-image: linear-gradient(0deg, #38434b60 0%, #e7e7e7 74%);
    margin-bottom: 2rem;
}

/* ============================================================================= 
 Pricing
============================================================================= */
#pricing {
    margin-top: 6rem;
}
.isDisabled {
    color: currentColor;
    cursor: not-allowed !important;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}
.flash_title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #575757;
}
.pricing-btns-group {
    margin-top: 50px;
}
.pricing-btns-group li a {
    position: relative;
    border: 1px solid;
    color: #fa6a0a;
    padding: 14px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 180px;
    border-radius: 1rem;
}
.pricing-btns-group li a:hover {
    border: 1px solid;
    color: #fa6a0a;
}
.pricing-btns-group li:first-child a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}
.pricing-btns-group li:last-child a {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}
.pricing-btns-group li a.active,
.pricing-btns-group li a.active:hover {
    color: #fff;
    background: linear-gradient(
        to right,
        #ff7e29 0%,
        #fa6a0a 51%,
        #b94e07 100%
    );
    background-size: 200% auto;
    border-color: transparent;
}
.pricing-btns-group li a .btn-badge {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    color: #fff;
    background-color: #ff0e0e;
    display: inline-block;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    border-radius: 14px;
}
.pricing-card {
    background: #fff;
    box-shadow: 0 0 25px rgba(140, 152, 164, 0.125) !important;
    border-radius: 1rem;
}
.card-header {
    color: #fff;
    text-align: center;
    padding: 45px 10px;
    border-radius: 15px 15px 0 0 !important;
}
.card-header h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 22px;
}
.card-header-price {
}
.card-header-price .simbole {
    vertical-align: top !important;
}
.card-header-price .price-num {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}
.card-body ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}
.card-body ul li span {
    color: #ff682c;
    border-color: transparent;
    /* width: 25px;
  height: 25px; */
    border-radius: 50%;

    text-align: center;
    position: absolute;
    top: -2px;
    left: 0;
    padding-top: 7px;
}
.card-body .btn {
    color: #ff6219;
    background: rgba(193, 103, 30, 0.07);

    padding: 12px 10px;
    border-radius: 1rem;

    margin-top: 30px;
    transition: all 300ms;
}
.card-body ul {
    list-style: none;
}
.card-body .btn:hover {
    background: linear-gradient(
        to right,
        #fd582e 0%,
        #fe8150 51%,
        #d85b13 100%
    );
    background-size: 200% auto;
    color: #fff;
}
.pricing-card.top-35 {
    margin-top: -35px;
}
header.card-header {
    background: linear-gradient(
        to right,
        rgb(255, 102, 0) 0%,
        rgb(255, 126, 6) 51%,
        rgb(194, 94, 28) 100%
    );
    position: relative;
    background-size: 200% auto;
}
.shape-bottom img.bottom-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    /*transform: rotateX(-1);*/
}

.counter-container {
    display: flex;
    flex-wrap: wrap; /* allows flex items to wrap onto multiple lines */
    justify-content: space-between; /* distributes the flex items evenly */
    align-items: center; /* aligns the flex items vertically */
    background-color: #f2f2f2;
    padding: 20px;
}

.counter {
    flex: 1; /* flexible width with minimum width of 50% minus margin */
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    margin: 20px;
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2); */
    border-radius: 1rem;
    min-width: 200px;
    border-bottom: 4px solid #ff5f33;
}

.counter-number {
    font-size: 2em;
    margin-bottom: 10px;
    color: rgb(255, 87, 36);
}

.counter-title {
    font-family: "Jost", sans-serif;

    font-size: 1.2em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Media query to reduce the number of flex items per row when the screen size is smaller */
@media only screen and (max-width: 768px) {
    .counter {
        flex: 1 0 100%; /* flexible width with minimum width of 100% */
        margin: 10px 0;
    }
}

/* ============================================================================= 
 Modal
============================================================================= */
.subscription-container {
    display: flex;
    flex-wrap: wrap; /* allows flex items to wrap onto multiple lines */
    justify-content: space-between; /* distributes the flex items evenly */
    align-items: center; /* aligns the flex items vertically */
    background-color: #f2f2f2;
    padding: 20px;
}

.subscription-box-zain {
    flex: 1; /* flexible width with minimum width of 50% minus margin */
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    margin: 20px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    min-width: 200px;
    border-top: 4px solid #018891;
    border-bottom: 4px solid #018891;
}

.zain-btn {
    color: rgb(34, 34, 34) !important;
    background-color: #fff !important;
    border: 1px solid #018891 !important;
}
.zain-btn:hover {
    box-shadow: 0px 17px 43px 1px rgba(247, 148, 36, 0.4) !important;
    color: #fff !important;
    background-color: #018891 !important;
}

.subscription-box-sudani {
    flex: 1; /* flexible width with minimum width of 50% minus margin */
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    margin: 20px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    min-width: 200px;
    border-top: 4px solid #0074cb;
    border-bottom: 4px solid #0074cb;
}

.sudani-btn {
    color: rgb(34, 34, 34) !important;
    background-color: #fff !important;
    border: 1px solid #0074cb !important;
}
.sudani-btn:hover {
    box-shadow: 0px 17px 43px 1px rgba(247, 148, 36, 0.4) !important;
    color: #fff !important;
    background-color: #0074cb !important;
}

.subscription-header {
    font-size: 2em;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.subscription-title {
    font-family: "Jost", sans-serif;

    font-size: 1.2em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Media query to reduce the number of flex items per row when the screen size is smaller */
@media only screen and (max-width: 768px) {
    .subscription-box {
        flex: 1 0 100%; /* flexible width with minimum width of 100% */
        margin: 10px 0;
    }
}
