@import url("https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap");

body {
  margin: 0;
  padding: 0;
}

.header {
  background-image: url(https://livemcl.com/wp-content/uploads/2020/06/home_bg_1920x400-1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0px 120px 0px;
  position: relative; /* Add this to make positioning easier */

  height: 40px;

  /* margin-top: 1rem; */
}

.backgroundColor {
  background-color: #2b6c5f;
  opacity: 0.8;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.overlay {
  position: absolute; /* Position the text over the background image */
  top: 50%; /* Align text vertically in the middle */
  left: 50%; /* Align text horizontally in the middle */
  transform: translate(-50%, -50%); /* Center the text */

  padding: 10px; /* Add padding to the text */
  font-size: 24px; /* Set the font size */
  font-weight: bold; /* Make the text bold */

  font-size: 4.375rem;
  color: #ffffff;
  font-family: "Bubblegum Sans", Sans-serif;
  text-transform: none;
  letter-spacing: 1px;
}

.elementor-shape {
  bottom: -1px;
}

.elementor-shape-bottom {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
}

.svgImg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  height: 36px;
}

.elementor-shape-fill {
  fill: #fff;
  transform-origin: center;
  transform: rotateY(0deg);
}

.dropdown {
  width: 90%;
  margin: 1rem auto;
}

.form-group {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.dropdwnSelect {
  margin: 1rem auto;
  width: 50%;

  color: #343a40;
  padding: 0.5rem;
  border-radius: 9px;
  border: 2px solid #c0bdbd;
}

/* Add CSS styles for the image container and images */
#imageDisplay {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;

  margin: 0 auto;
  width: 90%;
}

#imageDisplay img {
  width: calc(22.33% - -9px);
  object-fit: cover;
  margin-bottom: 10px;
}

/* Add CSS styles for the category header */
#categoryHeader {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

/* added html dropdown css   */


.form-group {
    text-align: center;
  }

  .dropdwnSelect {

    font-size: 1rem;
    font-weight: 600;
    margin: 1rem auto;
    width: 80%; /* Adjust the width for responsiveness */

    color: #67696b;
    padding: 0.5rem;
    border-radius: 9px;
    border: 2px solid #c0bdbd;
  }

  /* Add media query for tablet screens */
  @media (max-width: 768px) {
    #imageDisplay {
      grid-template-columns: repeat(
        2,
        1fr
      ); /* 2 images in a row for tablet */
    }
  }

  /* Add media query for phone screens */
  @media (max-width: 576px) {
    #imageDisplay {
      grid-template-columns: repeat(
        1,
        1fr
      ); /* 1 image in a row for phone */
    }
  }

  /* Responsive text size for overlay */
  .overlay {
    font-size: 4.375rem; /* Large font size for desktop */
    text-align: center;
  }

  @media (max-width: 768px) {
    .overlay {
      font-size: 3rem; /* Medium font size for tablet */
    }
  }

  @media (max-width: 576px) {
    .overlay {
      font-size: 2rem; /* Small font size for mobile */
    }
  }
