/* Extra Large Screens (4K Monitors) */
@media screen and (min-width: 2560px) {
  /* Styles for 4K and ultra-wide monitors */
}

/* Large Desktops (1920px - 2559px) */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  /* Styles for large desktops */
}

/* Standard Desktops (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  /* Styles for standard desktops */
}

/* Laptops (1280px - 1439px) */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  /* Styles for laptops */
}

/* Tablets Landscape (1024px - 1279px) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  /* Styles for tablets landscape */
}

/* Tablets Portrait (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
.footer_address_main{
  display: grid;
grid-template-columns: repeat(1, 1fr);

}
}

/* Large Mobiles (414px - 767px) */
@media screen and (min-width: 414px) and (max-width: 767px) {
    .projects-hero-left{
        width: 100% !important;
    }
    .project-hero-right{
        width: 100% !important;
        height: 50% !important;
    }
  .footer_address_main{
  display: grid;
grid-template-columns: repeat(1, 1fr);

}
}

/* Medium Mobiles (375px - 413px) */
@media screen and (min-width: 375px) and (max-width: 413px) {
  /* Styles for medium mobiles */
}

/* Small Mobiles (up to 374px) */
@media screen and (max-width: 374px) {
  /* Styles for small mobiles */
}
