html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
    font-family: inherit;
}


.titles-b-new {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  font-size: 35px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.01em;
  text-align: center;
  
}
 .sp4-title {
      color:red;
        font-size: 25px;
        /*text-align: center;*/

    }
.banner-title-new
{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  font-size: 25px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.01em;

  
}

/* Section */

#sp4-learning-section {

    position: relative;
      padding: 50px 15px;
    background: #fff;
    overflow: hidden;

}

/* Container must be above circles */

.sp4-container {

    position: relative;
    z-index: 2;

}


/* Center container */
.sp4-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Course Title */
.sp4-course-title {
    color: red;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: Inter, sans-serif;
    text-align: center;
}

/* Breadcrumb */
.sp4-breadcrumb {
    font-size: 15px;
    margin-bottom: 25px;
    color: #666;
    text-align: center;
}

/* Breadcrumb links */
.sp4-breadcrumb a {
    color: #666;
    text-decoration: none;
}

/* Active breadcrumb */
.sp4-active {
    color: #000;
    font-weight: 600;
}





/* Video */

.sp4-video iframe {

    width: 100%;
    height: 260px;
    border-radius: 12px;
    border: none;

}


/* Floating circles */

.sp4-circle {

    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: sp4-float 6s infinite ease-in-out;

}

.sp4-circle-1 {

    width: 140px;
    height: 140px;
    background: #6366f1;
    top: 20px;
    right: 3%;

}

.sp4-circle-2 {

    width: 80px;
    height: 80px;
    background: #ec4899;
    bottom: 30px;
    left: 3%;

}

.sp4-circle-3 {

    width: 50px;
    height: 50px;
    background: #06b6d4;
    top: 60%;
    right: 18%;

}

/* Animation */

@keyframes sp4-float {

    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }

}


/* Tablet */

@media (max-width: 991px) {

    .sp4-video {

        margin-top: 20px;

    }
    
     #sp4-learning-section {

        padding: 25px 15px;

    }

    .sp4-course-title {
        color:red;
        font-size: 28px;
        text-align: center;

    }

    .sp4-breadcrumb {

        text-align: center;
        font-size: 13px;

    }

    .sp4-title {

        font-size: 20px;
        text-align: center;

    }

    .sp4-video iframe {

        height: 190px;

    }

    /* Hide circles on mobile */

    .sp4-circle {

        display: none;

    }


}

 


/* Mobile */

@media (max-width: 576px) {

    #sp4-learning-section {

        padding: 25px 15px;

    }

    .sp4-course-title {
        color:red;
        font-size: 28px;
        text-align: center;

    }

    .sp4-breadcrumb {

        text-align: center;
        font-size: 13px;

    }

    .sp4-title {

        font-size: 22px;
        text-align: center;
        color:red;

    }

    .sp4-video iframe {

        height: 190px;

    }

    /* Hide circles on mobile */

    .sp4-circle {

        /*display: none;*/

    }

}



