

.text-blue1 {
  color: #0e76bc;
}

.phone {
  filter: drop-shadow(5px 5px 5px #a8bcc4);
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .phone {
    width:30%
    }}

@media only screen and (min-width: 600px) {
  .phone {
    width:30%
    }
  }

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .phone {
    width:30%
    }
  }

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .phone {
    width:60%
    }
  }

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .phone {
    width:60%
    }
  }

.centerHW {
  align-items: center;
  text-align: center;
}

.padtop {
  padding-top: 10rem;
}

.padport {
  padding-top: 8rem;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 800px) {
  .padport {
    padding-top: 2rem;
    }
  }

  .marginbottom {
     margin-bottom: 3rem;
  }

  .bold {
    font-weight: bold;
  }

  .mb-8,
  .my-8 {
    margin-bottom: 8rem !important;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-items {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.gallery-items img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-items {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery-items {
        flex: 1 1 100%;
    }
}
