/* .masthead {
    position: inline-block;

  } */
h1{
    padding: 60px;
}

header.masthead2 {
    width: 100%;
    height: 100%;
    background: var(--t-1-dark-primary, #011F26);
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to right, #754C00, transparent), url("/assets/img/client-image/bg.png") ;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

header.masthead2 .masthead2-subheading {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5rem;
    margin-bottom: 25px;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header.masthead2 .masthead2-heading {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 3.25rem;
    margin-bottom: 2rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }

  @media (max-width: 1900px) {
    header.masthead2 {
      padding-top: 12rem;
      padding-bottom: 7.5rem;
    }
    header.masthead2 .masthead2-subheading {
      font-size: 2.25rem;
      font-style: italic;
      line-height: 2.25rem;
      margin-bottom: 2rem;
    }
    header.masthead2 .masthead2-heading {
      font-size: 4.5rem;
      font-weight: 700;
      line-height: 4.5rem;
      margin-bottom: 4rem;
    }
  }

  .my-button2 {
    padding: 5px 30px;
    background-color: orange; /* Transparent background */
    color: #ffffff; /* Text color */
    border: 3px solid var(--bs-gray-dark); /* Border style and color */
    border-radius: 50px; /* Rounded shape */
    cursor: pointer;
    transition: background-color 0.3s;
}

.my-button2:hover {
    background-color: orange; /* Hover button color */
  }

/* card corousel */

/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
  }
.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
/* .wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
} */
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  /* background: #8b0000; */
  background: transparent;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  background: #97959b;
  height: 148px;
  width: 150px;
  border-radius: 50%;
}
.card .img img {
  width: 150px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel .card span {
  color: #fbfbfc;
  font-size: 11;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

/* unordered list */
.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.two-column-list {
    display: flex;
}

.column {
    padding: 10px;
    margin: 10px;

}

.column li {
    display: flex; /* Display list items in a row */
    align-items: center; /* Vertically center the list items */
    color: #0e0d0d;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.column li:before {
    content: '\2022'; /* Add the unordered circle symbol before each list item */
    margin-right: 5px; /* Add some spacing between the circle and text */
}
