* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Open Sans, sans-serif;
  text-decoration: none;
  list-style: none;
}

body {
  font-size: 16px;
}
.container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 0px 15px;
}

.btn-border {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  color: #5f55c5 !important;
  border: solid 2px #5f55c5;
}

.btn-border i {
  margin-right: 5px;
}

.btn-border:hover {
  transition: 0.3s;
  background: #5f55c5;
  color: #fff !important;
}

.btn-bg {
  background: #5f55c5;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  color: #fff !important;
  border: solid 2px #5f55c5;
}

.btn-bg:hover {
  transition: 0.3s;
  background: unset;
  border: solid 2px #5f55c5;
  color: #5f55c5 !important;
}

.btn-bg-green {
  background: #00c5bb;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 40px;
  color: #fff;
  border: solid 2px #00c5bb;
}

.btn-bg-green i {
  margin-left: 5px;
}

.btn-bg-green:hover {
  transition: 0.3s;
  background: unset;
  border: solid 2px #00c5bb;
  color: #00c5bb;
}

/*  -----------common css ends--------------  */

#topbar {
  text-align: center;
  background: #5f55c5;
  color: #fff;
  padding: 5px 0;
}

#header {
  padding: 15px 0px;
  background: #fff;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .container .logo img {
  width: 62%;
}

#header .container nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

#header .container nav ul li a {
  display: inline-block;
  color: #000;
  padding: 5px 20px;
}

#header .container nav ul li:last-child(2) a {
  color: #fff;
  background-color: #5f55c5 !important;
  border-radius: 100px;
}

#header .container nav ul li:last-child a {
  color: #5f55c5 !important;
  border: 1px solid #5f55c5;
  border-radius: 100px;
}

#header .container nav ul li:last-child(2) a:hover {
  color: #5f55c5;
}

#header .container nav ul li:last-child a:hover {
  color: #fff !important;
  background-color: #5f55c5 !important;
}
#header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.4s ease;
  z-index: 999;
}
#header.sticky {
  background: #ffffff;
  box-shadow: 0px 0px 8px 2px #c7c7c7;
}
#header .mobile-menu-toggle {
  display: none;
}
#header .mobile-menu-toggle .fa-bars-staggered {
  font-size: 25px;
  color: #1e3050;
}
@media (max-width: 1077px) {
  #header .container nav ul li a {
     padding: 8px 10px;
     font-size: 16px;
  }
}

@media (max-width: 965px) {
  #header .container nav ul {
     flex-direction: column;
     position: absolute;
     right: 0;
     background: #ffffff;
     box-shadow: 0px 10px 8px 2px #c7c7c7;
     height: 100vh;
     top: 96px;
     width: 100%;
     padding: 26px 0px;
     transition: 0.3s ease all;
  }
  .mobile-menu {
     display: none;
  }
  #header .container nav ul li a {
     padding: 5px 22px;
  }
  #header .mobile-menu-toggle {
     display: block;
  }
  #header .m-view {
     margin-top: 6px;
  }
}
@media (max-width: 420px) {
  #header .container nav ul {
     top: 81px;
  }
}

/*========================header end==========================*/

#homeBanner .bannerList > img {
  width: 100%;
  height: 300px;
  object-fit: fill;
}

/* For screens up to 768px */
@media (max-width: 768px) {
  #homeBanner .bannerList > img {
    width: 100%; /* Keep full width */
    height: 200px; /* Adjust height automatically to maintain aspect ratio */
    object-fit: fill; /* Prevents cropping */
  }
}

/* For screens up to 480px (mobile) */
@media (max-width: 480px) {
  #homeBanner .bannerList > img {
    width: 100%; /* Keep full width */
    height: 150px; /* Maintain aspect ratio */
    object-fit: fill; /* Ensures image doesn't crop */
  }
}


#homeBanner .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

#homeBanner .owl-carousel .owl-dot {
  margin: 5px;
}

#homeBanner .owl-carousel .owl-dot span {
  padding: 5px 11px !important;
  border-radius: 18px;
  background: #bfbfbf;
  display: block;
}

#homeBanner .owl-carousel .owl-dot.active span {
  background: #5f55c5;
}
/*=========banner end======================*/

#hero {
    text-align: center;
    padding: 40px 0;
    background-color: #f9f9f9; /* Light background */
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#hero .btn-bg-green {
    padding: 10px 20px;
    background-color: #5f55c5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2em; /* Smaller font size for mobile */
    }

    #hero p {
        font-size: 1em; /* Adjust paragraph size */
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.5em; /* Even smaller for smaller screens */
    }

    #hero p {
        font-size: 0.9em; /* Further adjust paragraph size */
    }

    #hero .btn-bg-green {
        padding: 8px 15px; /* Adjust button size */
    }
}
/*=========Try Free Demo End======================*/

#join-process {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

#join-process h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px; /* Adjust font size for larger screens */
}

.step {
    background-color: #e0f7fa;
    border: 1px solid #00bcd4;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
}

.step h3 {
    margin: 0;
    color: #00796b;
    font-size: 20px; /* Slightly larger for visibility */
}

.step p {
    margin: 5px 0;
    font-size: 16px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #join-process {
        padding: 15px;
    }

    #join-process h2 {
        font-size: 20px; /* Slightly smaller for mobile */
    }

    .step h3 {
        font-size: 18px; /* Adjust step title font size */
    }

    .step p {
        font-size: 14px; /* Adjust paragraph font size */
    }
}

@media (max-width: 480px) {
    #join-process {
        padding: 10px;
    }

    #join-process h2 {
        font-size: 18px; /* Even smaller for small screens */
    }

    .step h3 {
        font-size: 16px; /* Adjust step title font size */
    }

    .step p {
        font-size: 12px; /* Adjust paragraph font size */
    }
}

/*=========Joining Process End======================*/

#class-benefits {
    background-color: #f0f8ff; /* Light blue background to differentiate it */
    padding: 40px 0; /* Add padding to the top and bottom */
}

.benefits-heading {
    font-size: 2.5em; /* Larger font size */
    text-align: center; /* Center align */
    margin-bottom: 30px; /* Space below the heading */
    color: #333; /* Dark color for better visibility */
    font-weight: bold; /* Bold font weight */
    padding: 10px; /* Padding for the heading */
    background-color: transparent; /* No background color */
}

.benefit-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit-block {
    flex: 0 0 calc(33.33% - 20px);
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.benefit-block:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .benefit-block {
        flex: 0 0 calc(50% - 20px); /* 2 blocks per row */
    }
}

@media (max-width: 480px) {
    .benefit-block {
        flex: 0 0 100%; /* 1 block per row */
    }
}

/*=========What you will get end======================*/

#youtube-videos {
    background-color: #f9f9f9; /* Change as needed */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.benefits-heading {
    font-size: 2.5em; /* Larger font size */
    text-align: center; /* Center align */
    margin-bottom: 30px; /* Space below the heading */
    color: #333; /* Dark color for better visibility */
    font-weight: bold; /* Bold font weight */
    padding: 10px; /* Padding for the heading */
    background-color: transparent; /* No background color */
}

#youtube-videos h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333; /* Change as needed */
}

.videoListContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.videoList {
    flex: 1 1 calc(50% - 10px); /* Two videos per row on medium screens */
    margin: 5px;
    max-width: 480px; /* Adjust based on your design */
}

.videoList iframe {
    width: 100%;
    height: 250px; /* Adjust as needed */
    border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .videoList {
        flex: 1 1 100%; /* Full width on small screens */
    }
}

/*=========YT Video end======================*/


#steno-video {
  margin-top: 50px;
  background: #ddddde;
  padding: 100px 0;
}

#steno-video .steno-software {
  display: flex;
  align-items: center;
  gap: 30px;
}
#steno-video .what-steno {
  width: 50%;
}
#steno-video .steno-software .iframe-right {
  width: 50%;
}

#steno-video .container h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: normal;
}

#steno-video .container p {
  margin-top: 30px;
}

#steno-video .container iframe {
  width: 100%;
  height: 400px;
}

#try-now {
  text-align: center;
  padding: 50px 0;
  background: #fff;
}

/*=========video end======================*/

#blog {
  padding: 70px 0;
  background: #fff;
}

#blog .blogHeading {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: space-between;
}
#blog .blogHeading h2 {
  font-size: 36px;
  color: #000;
  font-weight: bold;
  padding-bottom: 10px;
}

#blog .blogHeading p {
  font-size: 1rem;
  color: #848484;
  line-height: 25px;
}

#blog .blogHeading a {
  border-radius: unset;
}

#blog .blogListContainer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}

#blog .blogListContainer .blogList {
  background: #fff;
  flex: 1 0 20%;
  box-shadow: 0px 4px 18px #edecec;
}

#blog .blogListContainer .blogList img {
  width: 100%;
}

#blog .blogListContainer .blogList .blogDetails {
  padding: 15px;
}

#blog .blogListContainer .blogList .blogDetails .date {
  color: #5f55c5;
}

#blog .blogListContainer .blogList .blogDetails h2 {
  margin-bottom: 10px;
}

#blog .blogListContainer .blogList .blogDetails p {
  margin-bottom: 10px;
}

#blog .blogListContainer .blogList .blogDetails a {
  color: #00c5bb;
}

/*===============Blogs end=============================*/

#footer {
  background: #121920;
  color: #fff;
}

#footer .footer-steno-army {
  display: grid;
  padding: 70px 15px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

#footer .container a,
#footer .container p,
#footer .container li {
  color: #f9f8f8;
  margin-top: 10px;
}

#footer .container .footerlogo img {
  width: 25%;
}

#footer .container .footerlogo ul {
  display: flex;
  margin-top: 10px;
  gap: 20px;
}

#footer .container .footerlogo a {
  font-size: 1.5rem;
}
#footer .copyright {
  display: grid;
  padding: 20px 15px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.right-side {
  text-align: end;
}
.copyright.container {
  border-top: solid thin #aeaeae;
}

/*================footer ends===============*/

/*================about Start===============*/
.steno-inner-page {
  background: url("/images/about-breadcrumb-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}
.steno-inner-page h1 {
  padding: 90px 0px;
  font-size: 36px;
  font-weight: bold;
}

.about-details,
.contact-us-details {
  padding: 50px 0px;
}
.about-details .info {
  padding: 15px 0px;
}
.about-details .info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #5f55c5;
}
.about-details h2,
.right-form h2,
.card-header {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
}
.about-details p,
.about-learning p {
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 10px;
}
.about-details ul {
  margin: 15px;
  list-style-type: none;
}
.about-details ul li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  margin: 10px 0px;
}
.about-details ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 1px solid #5f55c5;
  background: #5f55c5;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 3px #fff inset;
}

/*================.contact-us Start===============*/

.contact-us-banner {
  background: url("/images/contact-us-bg.jpg");
  padding: 190px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-us-banner .container {
  width: 20%;
}
.contact-us-banner h1 {
  padding: 0;
  color: #fff;
  font-size: 2rem;
  text-align: left;
  margin: auto;
  position: relative;
}

.contact-us-banner h1:after {
  position: absolute;
  content: "";
  display: block;
  width: 18%;
  border: solid 2px #fff;
  margin-left: 16px;
}

.contact-us-details .container {
  width: 50%;
}

.contact-us-details .container {
  display: grid;
  padding: 50px 0;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.contact-us-details .container .left-info i {
  font-size: 1.25rem;
  color: #5f55c5;
  margin-left: 5px;
  display: inline-block;
}

.contact-us-details .container .left-info h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #000;
}
.contact-us-details .container .left-info p {
  margin-bottom: 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.contact-us-details .container .left-info a {
  color: #000;
}

.right-form {
  box-shadow: 6px 2px 19px #d8d8d8;
  padding: 20px;
  border-radius: 8px;
}

.right-form h2,
.card-header {
  text-align: center;
  margin-bottom: 10px;
}

.right-form .input-control {
  width: 100%;
  border: 1px solid #888888;
  background: #fff;
  margin: 5px 0 10px;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #000;
}

.right-form .input-control::placeholder,
.select-colr {
  color: #000;
}

.submit-btn {
  text-align: right;
}

.submit-btn input[type="submit"],
.submit-btn .register-btn {
  border-radius: 4px;
  width: auto;
  background-color: #00c5bb;
  color: #fff;
}
/*================ Register Start===============*/
#register .contact-us-details,
#login .contact-us-details,
#reset-password .contact-us-details {
  background-color: whitesmoke;
}
.register-bg {
  background-color: #fff;
  position: relative;
  color: #5f55c5;
  padding: 30px;
}
.sign-up-title {
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.sign-up-title span {
  background-color: #fff;
  padding: 0px 8px;
}
.sign-up-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: 18px;
  background-color: #000;
  height: 2px;
  z-index: -1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.gender-info,
.form-check {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0px;
  color: #000;
}
.gender-info input[type="radio"] {
  margin: 0px 4px;
}
.submit-btn .register-btn {
  background-color: #5f55c5;
  border: solid 2px #5f55c5;
  margin-top: 18px;
}
#register .contact-us-details .container {
  width: 60%;
}
#login .login-details {
  padding: 50px 30px;
}
#login .login-details .btn-link {
  font-size: 15px;
}
.login-btn {
  text-align: left;
  margin-bottom: 15px;
}
.send-password-btn {
  text-align: center;
}

.invalid-feedback strong {
  font-size: 13px;
  font-weight: 400;
  color: red;
}
/* 25-aug-23 css */

.iframe-video-outr {
  background: url("/images/student-book.jpg");
  padding: 50px 10px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.iframe-video-outr .journey-Video {
  border: 2px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 6px;
}
.iframe-video-outr .journey-Video iframe {
  border-radius: 15px;
}
@media (max-width: 1420px) {
  .contact-us-details .container {
     width: 70%;
  }
}
@media (max-width: 1024px) {
  /* blog css */
  #blog .blogHeading {
     align-items: start;
     flex-direction: column;
  }
  #blog .blogHeading .blogs-title {
     margin-bottom: 15px;
  }
  #blog .blogListContainer .blogList {
     flex: 1 0 33%;
  }
  #steno-video .container {
     gap: 20px;
     flex-wrap: wrap;
  }
  #steno-video .steno-software {
     flex-wrap: wrap;
  }
  #steno-video .what-steno,
  #steno-video .steno-software .iframe-right {
     width: 100%;
  }
  #register .contact-us-details .container,
  .contact-us-details .container {
     width: 80%;
  }
  /* contact-us-banner css */
  .contact-us-banner .container {
     width: 50%;
  }
}

@media (max-width: 768px) {
  #footer .footer-steno-army {
     grid-template-columns: 1fr 1fr;
  }
  #blog .blogListContainer .blogList {
     flex: 0 0 100%;
  }
  #register .contact-us-details .container,
  .contact-us-details .container {
     width: 100%;
  }
  .contact-us-details .container {
     padding: 20px 15px;
     grid-template-columns: 1fr;
  }
  .left-info {
     display: none;
  }
  .about-details,
  .contact-us-details {
     padding: 20px 0px;
  }
  /* contact-us-banner css */
  .contact-us-banner .container {
     width: 50%;
  }
  .contact-us-banner {
     padding: 60px 0px;
  }
  .contact-us-banner h1 {
     font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .steno-inner-page {
     padding: 30px 0px;
  }
  .about-details,
  .contact-us-details,
  #steno-video {
     padding: 20px 0px;
  }

  .steno-inner-page h1,
  .contact-us-banner h1 {
     font-size: 24px;
     padding: 20px 0px;
  }
  .about-details h2,
  .right-form h2,
  .card-header {
     font-size: 18px;
  }
  .about-details p {
     font-size: 14px;
     line-height: normal;
  }
  .contact-us-details .container {
     grid-template-columns: 1fr;
  }
  .form-grid {
     grid-template-columns: 1fr;
  }
  /* blog css */
  #blog,
  #try-now {
     padding: 20px 0;
  }
  #blog .blogListContainer {
     margin-top: 30px;
  }
  #blog .blogHeading .blogs-title {
     text-align: center;
  }
  #blog .blogHeading .blogs-title br {
     display: none;
  }
  #blog .blogHeading {
     align-items: center;
     padding: 0px;
  }

  /* footer */
  #footer .footer-steno-army,
  #footer .copyright {
     grid-template-columns: 1fr;
     padding: 20px 15px;
     gap: 15px;
  }
  .right-side {
     text-align: left;
  }
  /* steno-video css */
  #steno-video {
     margin-top: 20px;
  }
  #steno-video .container h2 {
     font-size: 1.5rem;
     margin-bottom: 15px;
  }
  #steno-video .container h2 br {
     display: none;
  }
  #steno-video .container p {
     margin-top: 10px;
  }
  #homeBanner .owl-carousel .owl-dots {
     margin-top: 10px;
  }
  #steno-video .container iframe {
     width: 100%;
     height: auto;
  }
}
 