@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Your existing CSS styles can go here */


/* Base styles for the entire website */
body {
    font-family: 'Poppins';

    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
}

.modal-sm {
    max-width: 400px !important;
}

/* Banner styles */
.bnimage {
    width: 100%;
    height: 350px;
    display: block;

}
.icoon {
    filter: invert(58%) sepia(81%) saturate(1296%) hue-rotate(160deg) brightness(97%) contrast(97%);
}
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }