
/* body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #ffffff, #f7fafc);
} */

.banner {
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-top: 83px;
}

.banner_1 {
  background: white;
  max-width: 1402px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.banner_2 {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner_2 h1 {
  color: #2f5666;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
}

.banner_2 p {
  font-weight: 700;
  color: black;
  font-size: 1rem;
  margin: 0 0 2rem 0;
  max-width: 36rem;
}

.banner_button {
  background-color: #3f6676;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  text-transform: uppercase;
  transition: filter 0.3s ease;
}

.banner_button:hover {
  filter: brightness(1.1);
}

.banner_contact {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #2f5666;
  align-items: center;
}

.banner_contact div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner_image {
  background-color: #2f5666;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-right: 123px;
}

.banner_image img {
  border: 4px solid white;
  border-radius: 50%;
  width: 21rem;
  height: 20rem;
  object-fit: cover;
}

/* Tablet and below */
@media (max-width: 768px) {
  .banner_1 {
    flex-direction: column;
  }

  .banner_image {
    padding: 1rem;
    width: 100%;
  }

  .banner_image img {
    width: 12rem;
    height: 12rem;
  }

  .banner_2 {
    padding: 2rem 1.5rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .banner_1 {
    flex-direction: column;
  }

  .banner_image {
    padding: 1rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .banner_image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
  }

  .banner_2 h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .banner_2 p {
    font-size: 0.875rem;
    text-align: center;
  }

  .banner_button {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    align-self: center;
  }

  .banner_contact {
    font-size: 0.875rem;
    justify-content: center;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .banner_image img{
    height: 201px;
  }
}