@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.special-mtext {
    font-family: 'Montserrat', sans-serif;  /* Corrected font-family syntax */
    font-weight: 1000; /* Medium weight */
    font-size: 3.2em;
    color: blue; /* Color */
}
.special-mtext-300-2-gray {
    font-family: 'Montserrat', sans-serif;  /* Corrected font-family syntax */
    font-weight: 300; /* Medium weight */
    font-size: 2em;
    color: gray; /* Color */
}

.special-vtext {
    font-family: 'Verdana', sans-serif;  /* Corrected font-family syntax */
    font-weight: 500; /* Medium weight */
    font-size: 1.2em;
    color: red; /* Color */
}

.font-humming-500-2-yellow {
    font-family: 'Humming';  /* Corrected font-family syntax */
    font-weight: 500; /* Medium weight */
    font-size: 2em;
    color: yellow; /* Color */
}


/* Remove Bootstrap's default white arrow SVGs */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 3rem;
  height: 3rem;
}

/* Add dark blue Unicode arrows */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  display: inline-block;
  font-size: 2.5rem;
  color: #003366; /* Dark blue */
  font-weight: bold;
}

/* Set left and right arrow content */
.carousel-control-prev-icon::after {
  content: '‹';
}

.carousel-control-next-icon::after {
  content: '›';
}


