.showcase_img4 {
  background-image: url("/ASSETS/IMGS/contact.jpg");
}

.contact-separator {
  background-color: #003049;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.contact-icon {
  margin-right: 20px;
}

.contact-title {
  font-size: 31px;
  font-weight: 600;
  color: #fff;
}

.contact-map-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  background-color: #ffffff;
  padding: 100px 0;
  max-width: 90%;
  margin: auto;
}

.contact-info-block {
  width: 400px;
  border-radius: 25px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.info-block-header {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: #003049;
}

.info-block-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  padding: 25px 0;
}

.contact-info-content {
  padding: 30px 50px;
}

.info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.contact-text {
  font-family: "Roboto";
  font-size: 21px;
  font-weight: 400;
  margin-left: 20px;
}

.contact-phone {
  margin-right: 20px;
}

.contact-email {
  margin-right: 10px;
}

#map {
  height: 450px;
  /* The height is 400 pixels */
  width: 100%;
  border-radius: 25px;
  /* The width is the width of the web page */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-page-title {
  color: #fff;
  font-size: 31px;
  margin-left: 20px;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                                */
/* * -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .contact-map-block {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
  .contact-info-block {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-page-icon {
    height: 50px;
  }
  .contact-page-title {
    font-size: 21px;
  }
}

