.banner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 3rem;

  h2 {
    width: 75%;
    color: #3b4c6b;
    font-weight: 900;
    margin: 0;
  }

  .banner_main {
    width: 75%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;

    .main_left {
      width: 45%;

      .text {
        font-size: 1.1rem;
        font-weight: 600;
      }

      .infos {
        background-color: #fff;
        padding-top: 2rem;
        margin-top: 2rem;
        width: 100%;
        border-radius: 1rem;

        .address,
        .mobile,
        .mail,
        .work_hours {
          margin-left: 2rem;
          margin-bottom: 2rem;
          width: 40%;

          p {
            margin-top: 0.7rem;
            font-size: 1.1rem;
            font-weight: 400;
          }
        }
      }
    }

    .main_right {
      width: 40%;

      .img {
        width: 100%;

        img {
          width: 100%;
          border-radius: 1rem;
        }
      }
    }
  }
}

@media (max-width: 480px) {
  .banner {
    h2 {
      width: 90%;
      text-align: center;
    }

    .banner_main {
      flex-direction: column-reverse;
      width: 90%;

      .main_right {
        width: 100%;
      }

      .main_left {
        width: 100%;

        .text {
          margin-top: 1rem;
        }

        .infos {
          display: flex;
          flex-direction: column;
          align-items: center;

          .address,
          .mobile,
          .mail,
          .work_hours {
            margin-left: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
          }

          .location {
            width: 100%;

            iframe {
              width: 100%;
            }
          }
        }
      }
    }
  }
}

@media (min-width: 480px) {
  h3 {
    display: flex;
    align-items: center;
    width: 100%;

    span {
      width: 70%;
      font-size: 1.3rem;
    }
  }

  @media (max-width: 1537px) {
    .banner {
      h2 {
        width: 90%;
        font-size: 1.3rem;
      }

      .banner_main {
        width: 90%;

        .main_left {
          .text {
            p {
              font-size: 1rem;
            }
          }
        }
      }
    }
  }
}
