.mb-3 {
  margin-bottom: 4rem !important;
}

.text-13 {
  font-size: 8em !important;
}

.owl-carousel.dots-horizontal-center .owl-dots {
  left: 0;
  right: 0;
  width: 100%;
  top: 90%;
}

.home-row-first {
  margin-top: 50px !important;
  margin-bottom: 100px;
}

/* Align text content to the right with padding */
.text-content-left-margin {
  margin-left: 30px;
  /* Adjust the value as needed */
}

/* Horizontal animated line below the headline */
.animated-line {
  width: 50%;
  /* Adjust width of the line */
  height: 4px;
  /* Height of the line */
  background-color: #fff;
  /* White line color */
  margin: 20px 0;
  /* Add margin to the line */
  animation: slideIn 1s ease forwards;
  /* Animation effect */
}

/* Keyframes for the slide-in effect of the line */
@keyframes slideIn {
  0% {
    transform: scaleX(0);
    /* Start from zero width */
  }

  100% {
    transform: scaleX(1);
    /* Expand to full width */
  }
}

/* Style for white text to ensure high visibility */
.text-white {
  color: #fff !important;
  /* Pure white color */
  opacity: 1 !important;
  /* Remove any opacity */
}

/* Logo image on top-left */
.left-corner-image {
  position: absolute;
  top: -100px;
  left: 300px;
  /* Adjust the position */
  width: auto;
  max-width: 400px;
  /* Limit the size */
  z-index: 5;
  /* Ensure it stays on top */
}

/* Carousel slide height and background properties */
.carousel-slide {
  height: 550px;
  background-size: cover;
  background-position: center;
}

.images-box {
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  /* Ensure the overlay doesn't overflow */
}

.overlay:before {
  background: #004aa69c !important;
  left: 0%;
  width: 100%;
  transition: transform .2s ease-out, opacity .2s ease-out;
  transform: translate(0%, -50%);
  top: 0%;
  bottom: auto;
  opacity: 0;
  text-align: center;
  position: absolute;

}

.img-caption h4 {
  display: inline;
  color: #ffffff;
  /* background-color: #004aad; */
  margin-bottom: 0px;
  /* font-size: 12px; */
  letter-spacing: 1px;
}

.img-caption {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  opacity: 0.8;
  width: 100%;
  height: 4rem;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  position: absolute;
  bottom: 0;
}

.plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: #004aa69c;
  /* Semi-transparent background */
  border-radius: 10%;
  padding: 10px;
  z-index: 1;
}

/* Show plus icon when hovering over the images-box */
.images-box:hover .plus-icon {
  opacity: 1;
  /* Make it fully visible */
}

/* Pseudo-element for the hover effect */
.images-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  /* Start as transparent */
  transition: background-color 0.3s ease;
}

.images-box:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
  /* Light black background on hover */
}

.pastevents h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: -70px;
}

.img-caption h5 {
  display: inline;
  color: white;
  background-color: #004aad;
  margin-bottom: 0px;
  font-size: 12px;
  letter-spacing: 1px;
}

.caption-text {
  font-size: 15px;
  display: block;
  /* Forces the span to start on a new line */
  margin-top: -10px;
  /* Adjust to add space above the span if needed */
}

.image-container {
  flex-basis: 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-auto-rows: 250px;
  margin-bottom: 20px;
  gap: 30px;
}

#box1 {
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  /* Adjust this value as needed */
  overflow: hidden;
  /* This ensures that the corners of the background image follow the border radius */
  display: flex;
  align-items: end;

}

.imgrow-2 {
  grid-row: span 2;
}

.commjoin-box {
  padding: 42px 0px 0px 45px;
}

.subscription-section {
  padding: 20px 0 !important;
}

.card-body_1 {
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) !important; */
  background-image: url(assets/img/slides/Home-Page-Banner.png);
  opacity: 0.9;
  width: 90% !important;
  border-radius: 20px;
  padding: 20px 10px;
}

.card {
  border: none;

}

.card-title {
  color: white;
  font-family: "Poppins", Sans-serif;
  font-size: 50px;
  font-weight: 600;
  text-transform: none;
}

.card-text {
  border: 0;
  font-family: "Poppins", Sans-serif;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding-top: 10px;
  vertical-align: baseline;
  color: white;
}

.form-box {
  width: 100%;
  padding-top: 20px;

}

.form-group input {
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Poppins", Sans-serif;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 250px;
  max-width: 100%;
  transition: all 0.3s ease;

}

.form-group select {
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Poppins", Sans-serif;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 250px;
  max-width: 100%;
  font-weight: bold;
  transition: all 0.3s ease;
}

.form-group input:hover {
  background-color: #f0f8ff;
  /* Light background on hover */
  border-color: #007bff;
  /* Border color on hover */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group select:hover {
  background-color: #f0f8ff;
  /* Light background on hover */
  border-color: #007bff;
  /* Border color on hover */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group button {
  width: 13rem !important;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #c82b32;
}

.btn-dark {
  background-color: #007bff;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-dark:hover {
  background-color: #fc2630;
}

.shadow-lg {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8);
  /* Black with opacity */
  animation: fadeIn 0.3s;
  /* Fade-in effect */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: auto;
  /* Centered horizontally */
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  max-width: 600px;
  /* Max width to limit size on larger screens */
  border-radius: 15px;
  /* Rounded corners */
  position: relative;
  top: 50%;
  /* Position from the top */
  transform: translateY(-50%);
  /* Center vertically */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  /* Shadow effect */
  overflow: hidden;
  /* Hide overflow */
}

.close-button {
  position: absolute !important;
  top: 150px !important;
  /* Adjust distance from the top */
  right: 400px !important;
  /* Adjust distance from the right */
  font-size: 28px !important;
  /* Larger size for better visibility */
  color: #fff !important;
  /* White color for contrast */
  background-color: rgba(0, 0, 0, 0.6) !important;
  /* Semi-transparent black background */
  border-radius: 50% !important;
  /* Circular background */
  padding: 8px !important;
  /* Padding for larger clickable area */
  cursor: pointer !important;
  /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.3s ease !important;
  /* Smooth transitions */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  /* Shadow for depth */
}

.modal-image {
  text-align: center;
  /* Center the image */
}

.modal-image img {
  width: 100%;
  /* Allow the image to take the full width */
  height: auto;
  /* Maintain aspect ratio */
  max-height: 80vh;
  /* Restrict image height to 80% of the viewport height */
  object-fit: contain;
  /* Ensure the image scales well */
  border-radius: 15px;
  /* Rounded corners for image */
}

.nav-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  /* Change icon color to white for better contrast */
  cursor: pointer;
  border-radius: 50%;
  /* Circular background */
  padding: 10px;
  /* Padding for larger clickable area */
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Smooth transitions */
}

.left-icon {
  left: 20px;
  /* Positioning left icon */
}

.right-icon {
  right: 20px;
  /* Positioning right icon */
}

.nav-icon:hover {
  background-color: rgba(0, 0, 0, 0.8);
  /* Darker background on hover */
  transform: scale(1.1);
  /* Slightly enlarge icon on hover */
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .modal-content {
    width: 95%;
    /* Full width on small screens */
  }

  .nav-icon {
    font-size: 24px;
    /* Smaller icons on small screens */
    padding: 8px;
    /* Adjust padding for smaller screens */
  }

  .close-button {
    font-size: 24px;
    /* Smaller close button on small screens */
    padding: 6px;
    /* Adjust padding for smaller screens */
  }
}

.font-weight-extra-bold,
.testimonial .testimonial-author strong {
  color: #004aa6;

}

.testimonial.testimonial-with-quotes.testimonial-quotes-dark blockquote:before {
  color: #c12c2f !important;
}

.top-1 {
  left: 170px;
}

.custom-border {
  border-color: #004aa6 !important;
}

.bg-color-light,
.bg-light {
  background-color: #004aa6 !important;
}

.custombroder {

  border: #004aa6 solid;
  border-radius: 34px;

}

.customer_borderradius {
  border-radius: 30px;
}

.home-intro .program p {

  font-size: 2.23em;
}

@media screen and (max-width: 768px) {

  .testimonial-card {
    margin-bottom: 30px;
}
.company-logo {
    max-width: 100%;
    height: auto;
}
.testimonial-text {
    font-size: 16px;
    color: #333;
}
.name {
    font-size: 18px;
    font-weight: bold;
    color: #555;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.dot.active {
    background-color: #717171;
}

  .form-group input {

    width: 100% !important;

  }

  .form-group select {

    width: 100% !important;

  }

  .owl-carousel.dots-horizontal-center .owl-dots {
    display: none !important;
  }

  .about_anveshana {
    font-size: 13px !important;
  }

  .text-10 {
    font-size: 2.2em !important;
  }

  .owl-carousel-light .owl-item {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute !important;
    width: 100%;
    height: 40% !important;
    top: 0;
    transition: ease opacity 300ms;
  }

  .yuva_about {
    margin-top: -325px !important;
  }

  .page-header_mobile {
    height: 30vh !important;
  }

  .mb-3 {
    margin-bottom: 0px !important;
  }

  .Entrepreneurship {
    text-align: center !important;
  }

  .pt-5 {
    padding-top: 1rem !important;
  }

  h1 {
    font-size: 2.6em;
    line-height: 44px;
    margin: 0px 0 0px 0;
  }

  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .home-intro .program p {
    font-size: 25px;
  }

  .owl-carousel-light .owl-stage-outer,
  .owl-carousel-light .owl-stage {
    height: 93%;
  }

}

/* Hide the mobile image on larger screens */
.programstructure-small {
  display: none;
}

/* Show the laptop image on larger screens */
@media (min-width: 768px) {
  .programstructure-large {
    display: block;
  }

  .programstructure-small {
    display: none;
  }
}

/* Show the mobile image and hide the laptop image on mobile screens */
@media (max-width: 767px) {
  .programstructure-large {
    display: none;
  }

  .programstructure-small {
    display: block;
  }

}

/* Ensure background image properties are set correctly */
.page-header-background {
  background-size: cover;
  background-position: center;
}

.page-header {
  background-color: #ffff;
  margin: 0 0 0px 0;
  padding: 30px 0;
  position: relative;
  text-align: left;
}

.testimonial-container {
  width: 80%;
  max-width: 1000px;
  margin: 20px auto;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-card {
  display: none;
  flex-direction: row;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  /* Light shadow */
  border-top: 2px solid #004ca6;
  /* Blue border on top */
  border-left: 2px solid #004ca6;
  /* Blue border on left */
  border-right: 2px solid #004ca6;
  /* Blue border on right */

  justify-content: center;
  /* Center the content vertically */
  align-items: center;
  /* Center the content horizontally */
  position: relative;
  /* Required for the ::before pseudo-element */
}

.testimonial-card.active {
  display: flex;
}

/* Adding the bottom border only to 70% of the right side */
.testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  /* Stick to the bottom */
  right: 0;
  /* Align to the right */
  width: 100%;
  /* Cover 70% width from the right side */
  height: 20px;
  /* Adjust height of the border */
  background-color: #004ca6;
  /* Blue border color */
}

.image-section {
  width: 30%;
}

.image-section img {
  width: 100%;
  /* height: 100%; */
  height: 485px;

  object-fit: cover;
  border-radius: 15px 0 0 15px;
}

.text-section {
  width: 70%;
  padding: 20px;
  position: relative;
}

.quote-icon {
  font-size: 50px;
  color: #d3d3d3;
  position: absolute;
  top: -10px;
  left: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  margin: 20px 0;
  line-height: 1.6;
}

/* .person-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.person-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 4rem 0rem 4.5rem;
}

.name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.designation {
  font-size: 14px;
  color: #777;
}

.company-logo {
  width: 100px;
  height: 50px;
}

/* Carousel Dots */
.testimonial-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

.page-header img {
  width: 100vh;
  height: auto;
}

.container-xxl,
.container-xl,
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.owl-carousel .owl-item {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.owl-carousel img {
  margin-left: auto;
  margin-right: auto;
}

.text-7 {
  font-size: 25px !important;
}

.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 15px;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.text-title {

  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #004aa69c;
  color: #ffff;
  font-weight: bold;
  font-size: 1.2em;
  width: 100%;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.image-container .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #004aa69c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  text-align: center;
  padding: 20px;
  height: 100%;

}

.image-container:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-container:hover .text-title {
  opacity: 0;
  /* Fade out on hover */
}

.hover-info {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  color: #ffff;
  margin-top: 5px;
  transition: opacity 0.6s ease;
  /* Smooth fade in */
}

.hovering {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  color: #ffff;
  margin-top: 5px;
  transition: opacity 0.6s ease;
  /* Smooth fade in */
}

/* Optional hover effects for the image */
.image-container:hover img {
  transform: scale(1.1);
  /* Slightly zoom in on the image on hover */
}

.testimonial blockquote {
  background:#004aa69c;
}
.testimonial blockquote {
  background: #ffff;
  border-radius: 5px;
  border: 0;
  color: #666;
  font-family: sans-serif;
  margin: 0;
  padding: 40px 64px 40px 72px;
  padding: 0rem 4rem 0rem 4.5rem;
  position: relative;
}
.testimonial blockquote p {
  color: #000;
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.1em;
}

.testimonial blockquote:before {
  left: 22px;
  top: -30px;
  color: #000;
  content: "“";
  font-size: 150px;
  font-style: normal;
  line-height: 1;
  position: absolute;
}
@media screen and (max-width: 768px) {

  .testimonial-container {
    width: 100% !important;
    max-width: 1000px;
}
  .image-section {
    width: 60% !important;
}

  .text-7 {
    font-size: 20px !important;
}

      .testimonial-card {
          flex-direction: column; /* Stack image and text vertically on smaller screens */
      }
  
      .image-section {
          margin-bottom: 20px; /* Add space between image and text section */
      }
  
      .text-section {
          text-align: left; /* Align text to the left for readability */
      }
  
      .company-logo {
          max-width: 100%; /* Adjust image size for mobile */
          margin: 0px auto; /* Center image on mobile */
          height: 50%;
      }
      .testimonial-text {
          font-size: 16px;
          color: #333;
          margin: 0px 0;
          line-height: 1.6;
      }
     
      .testimonial blockquote {
          background: #ffff;
          border-radius: 5px;
          border: 0;
          color: #666;
          font-family: sans-serif;
          margin: 0;
          padding: 40px 64px 40px 72px;
          padding: 0rem 0rem 0rem 0rem !important;
          position: relative;
      }

      .image-section img {
          width: 100%;
          /* height: 100%; */
          height: auto;
          object-fit: cover;
          border-radius: 0px 0 0 0px;
      }
      .testimonial blockquote:before {
          left: -15px !important;
          top: -40px !important;
          color: #000;
          content: "“";
          font-size: 100px !important;
          font-style: normal;
          line-height: 1;
          position: absolute;
      }
      .person-info {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0rem 0rem 0rem 0rem;
      }
      .testimonial-card::before {
          content: "";
          position: absolute;
          bottom: 0;
          right: 0;
          width: 100%;
          height: 20px;
          background-color: #004ca6;
      }
      .font-weight-semibold {
          font-weight: 700 !important;
          margin-top: 0rem !important;
      }
      .owl-theme .owl-nav.disabled+.owl-dots {
          margin-top: -30px !important;
      }
      .text-section {
        width: 90%;
        padding: 0px;
        position: relative;
    }
  }

  .yuva_margin
  {
    margin-bottom: 20px !important;
  }

  @media screen and (min-width: 360px) and (max-width: 844px) {
    .page-header.page-header-modern.page-header-background.page-header-background-md {
        padding: 0px 0 !important;
    }
}

@media (min-width: 800px) and (max-width: 991.98px) { /* Bootstrap's tablet breakpoint */
  .owl-theme .owl-nav.disabled + .owl-dots {
      display: none !important;
  }
  .vridhi_about {
      margin-top: -0px !important;
  }
  .form-group input {
      padding: 10px 20px;
      border-radius: 30px;
      font-family: "Poppins", Sans-serif;
      border: 1px solid #ddd;
      font-size: 1rem;
      width: 100%;
      max-width: 100%;
      transition: all 0.3s ease;
  }
  .form-group select {
      padding: 10px 20px;
      border-radius: 30px;
      font-family: "Poppins", Sans-serif;
      border: 1px solid #ddd;
      font-size: 1rem;
      width: 100%;
      max-width: 100%;
      font-weight: bold;
      transition: all 0.3s ease;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) { /* Bootstrap's tablet breakpoint */
  .owl-theme .owl-nav.disabled + .owl-dots {
      display: none !important;
  }
  .yuva_about {
    margin-top: -400px !important;
}

  .owl-carousel .owl-nav {
      top: 15%;
     
  }

  .owl-item {
      display: block;
      justify-content: center;
      align-items: center;
      text-align: center;
      height: 50vh !important;
      margin: 5px;
    }
    .home-intro {
      padding: 1rem 0 !important;
      margin-top: 0px;
  }

}

@media (min-width: 800px) and (max-width: 991.98px) { /* Bootstrap's tablet breakpoint */
  .owl-theme .owl-nav.disabled + .owl-dots {
      display: none !important;
  }
  .yuva_about  {
      margin-top: -150px !important;
  }
  .form-group input {
      padding: 10px 20px;
      border-radius: 30px;
      font-family: "Poppins", Sans-serif;
      border: 1px solid #ddd;
      font-size: 1rem;
      width: 100%;
      max-width: 100%;
      transition: all 0.3s ease;
  }
  .form-group select {
      padding: 10px 20px;
      border-radius: 30px;
      font-family: "Poppins", Sans-serif;
      border: 1px solid #ddd;
      font-size: 1rem;
      width: 100%;
      max-width: 100%;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .owl-item.position-relative {
    background-image: url(img/slides/Infographic.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 75% !important;
}

}

.person-info .name {
  font-size: 16px !important; /* Adjust this as needed for the main text */
}

.person-info .team-name {
  font-size: 15px;
  font-weight: normal; /* Optional: Adjust if you want a different weight */
}

/* Default height for the carousel */

.owl-carousel {
  height: 645px;
}
/* .owl-carousel {
  height: 600px;
} */

/* Responsive adjustments */

/* @media (max-width: 992px) {
  .owl-carousel {
      height: 670px;
  }
}

@media (max-width: 768px) {
  .owl-carousel {
      height: 550px;
  }
}

@media (max-width: 576px) {
  .owl-carousel {
      height: 500px;
  }
}  */

/* Desktop media query with height set to 1000px */

 /* @media (min-width: 1700px) {
  .owl-carousel {
      height: 900px !important;
  }
}
@media (min-width: 1500px) {
  .owl-carousel {
      height: 700px;
  }
}

/* 11-11-2024 changes */
/* .mobile-program{
    width: 100vh;
    height: 238px !important;
}  */

@media screen and (max-width: 360px)  {
  .page-header.page-header-modern.page-header-background.page-header-background-md {
      padding: 20px 0;
  }
}
.page-header.page-header-modern.page-header-background.page-header-background-md {
  padding: 34px 0;
}

.custom-svg-btn-style-1.custom-svg-btn-style-1-small {
  padding: 20px 18px 17px 18px;
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #2d4a9a;
}

.owl-innovation .owl-nav.disabled+.owl-dots {
  margin-top: -44px;
}

.innovation-heading{
  padding-top: 16px;
}

/* .banner-yuva{
  width: 129%;
  height: 90%;
  margin-left: -90px;
} */

@media screen and (max-width:799px){
  /* .yuva-header .header-body:not(.h-100) {
    height: 10vh !important;
} */
.owl-carousel .yuva-banner img {
  transform-style: unset;
  width: 103% !important;
  height: 265px !important;
}
}

@media screen and (max-width:428px){
  .owl-carousel .yuva-banner img {
    transform-style: unset;
    width: 105% !important;
    height: 176px !important;
  }
}
@media screen and (max-width:768px){
  .owl-carousel .yuva-banner img {
    transform-style: unset;
    width: 107% !important;
    height: 228px !important;
  }
}
@media screen and (max-width:576px){
  .owl-carousel .yuva-banner img {
    transform-style: unset;
    width: 107% !important;
    height: 175px !important;
  }
}
@media screen and (max-width:991px)and (min-width:799px){
  /* .yuva-header .header-body:not(.h-100) {
    height: 10vh !important;
} */
.owl-carousel .yuva-banner img {
  transform-style: unset;
  width: 107% !important;
  height: 500px !important;
}
}

.owl-carousel .yuva-banner img {
margin-left: -20px !important;
}

@media screen and (min-width: 1024px) {
.yuva_image {
    height: 80vh !important;
  }
    .custom-svg-btn-style-1.custom-svg-btn-style-1-small {
      padding: 25px 18px 25px 18px;
      font-size: 12.8px;
      font-size: 0.8rem;
      color: #2d4a9a;
    }
        .custom-svg-btn-style-1 .custom-svg-btn-background {
          position: absolute;
          top: 50%;
          left: 50%;
          z-index: 0;
          width: 107%;
          height: 80%;
          transform: translate3d(-50%, -50%, 0);
          z-index: -1;
        }
}
.carousel-img {
    width: 103% !important;
    height: 100%;
    object-fit: cover ; /* Use 'cover' if you want full background-style look */
}