#books i,
.title-color-mine {
  color: rgb(202, 179, 73);
}

.background-orangemine {
  background-color: orange;
}

.boldmine {
  font-size: 20px;
  font-weight: bold;
}

.col-md-3mine {
  float: left;
  padding-left: 40%;
}

@media (max-width: 575px) {
  .col-md-3mine img,
  .col-md-3mine {
    visibility: hidden;
    height: 0;
  }

  #leaders img {
    max-width: 50%;
    max-height: 50%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .col-md-3mine {
    padding-left: 30%;
  }

  .mine {
    padding-right: 15px;
    padding-left: 15px;
    width: min-content;
  }

  #leaders img {
    max-width: 50%;
    max-height: 50%;
  }
}

@media (min-width: 576px) and (max-width: 900px) {
  /* .blog-box-1mine #centerme {
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%
  } */
}

.logomine {
  max-width: 70px;
  border-radius: 15%;
}

.blog-box-1mine {
  position: relative;
  width: 100%;
  display: block;
  padding: 3.5rem;
  border-radius: 0.35rem;
}

.blog-box-1mine img {
  width: auto;
  object-fit: cover;
  height: 200px;
  display: inline-block;
  border-radius: 2%;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.blog-box-1mine.blog-home {
  padding: 0;
  padding-bottom: 2.5rem;
}

.blog-box-1mine img.blog-home-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin-right: 0;
}

.blog-box-1mine.blog-home .padding-in {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.blog-box-1mine .blog-quote-wrap {
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.blog-box-1mine .blog-quote-wrap p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #f9f9f9;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0;
}

.blog-box-1mine .blog-quote-wrap h5 {
  position: relative;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 400;
  padding-left: 45px;
  text-transform: uppercase;
}

.blog-box-1mine .blog-quote-wrap h5:before {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -1px;
  left: 0;
  z-index: 1;
  height: 1px;
  width: 30px;
}

.blog-box-1mine a {
  text-decoration: none;
}

.blog-box-1mine a h5 {
  color: #212121;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.blog-box-1mine.drop-shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.06);
}

/* #hero-sync1 .item .corporate-hero-text{
  top: 33vh;
} */
@media (max-width: 991px) {
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #hero-sync1 .item .corporate-hero-text {
    top: 46vh;
  }
}

@media only screen and (min-device-width: 1034px) and (max-device-width: 1440px) {
  #hero-sync1 .item .corporate-hero-text {
    top: 36vh;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: minmax(400px, 1fr);
  }
}

.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire container */
}

.video-wrapper {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
/* Add this CSS for styling h1 inside video-wrapper */
/* General styling for h1 */
.video-wrapper h1 {
  margin: 0; /* Remove default margin */
   /* Adjust font size as needed */
  line-height: 1.4; /* Adjust line height as needed */
}

/* Styling for h1 on larger screens */
@media (min-width: 769px) {
  .video-wrapper h1 {
      background-color: white;
      font-size: 10px;
      padding: 8px;
      text-transform: uppercase;
      color: #333; /* Change text color if needed */
  }
}

/* Styling for h1 on smaller screens */
@media (max-width: 768px) {
  .video-wrapper h1 {
      background-color: white;
      font-size: 10px;
      padding: 4px;
      text-align: center;
  }
}

