@import url("https://fonts.googleapis.com/css2?family=Andada+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap");

/* global Variable */
:root {
  --main: #ef2006;
  --black: #000;
  --white: #fff;
  --font_family: "Montserrat";
  --color-bg: #1f2641;
  --color-bg1: #2e3267;
  --color-bg2: #424890;
  --color-primary: #6c63ff;
  --color-success: #00bf8e;
  --color-warning: #f7c94b;
  --color-danger: #f75842;
  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 400ms ease;
}
section {
  position: relative;
  width: 100%;
  padding: 50px;
  font-family: "Andada+Pro";
  margin-top: 5rem;
  background: var(--color-bg2) !important;
}
.image {
  position: relative;
  overflow: hidden;
}
.image1 {
  width: 300px;
  height: 300px;
  float: left;
  border-radius: 50%;
  margin-right: 25px;
  shape-outside: circle();
  box-shadow: 2px 5px 10px darkblue;
}
.image2 {
  width: 250px;
  height: 250px;
  float: right;
  border-radius: 50%;
  margin-left: 10px;
  shape-outside: circle();
  box-shadow: 2px 5px 10px darkred;
}

.image1 img,
.image2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section h2 {
  color: whitesmoke;

  text-align: center;
  font-size: 32px;
}
section p {
  color: whitesmoke;
  line-height: 1.5em;
}
p.bank {
  text-align: center;
  color: gold;
  border-bottom: 2px double gray;
  width: 50rem;
  margin: 0 auto;
}
.inquiry {
  background: purple;
  height: 4rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.2rem;
  width: 50rem;
  margin: 0 auto;
  margin-left: 15rem;
}
/* Media queries for responsiveness */
@media screen and (max-width: 1024px) {
  .image1 {
    width: 200px;
    height: 200px;
    margin-right: 10px;
  }

  .image2 {
    width: 150px;
    height: 150px;
    margin-left: 5px;
  }

  p.bank,
  .inquiry {
    width: 90%;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  .image1 {
    width: 200px;
    height: 200px;
    margin-right: 10px;
  }

  .image2 {
    width: 150px;
    height: 150px;
    margin-left: 5px;
  }

  p.bank,
  .inquiry {
    width: 90%;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Media queries for responsiveness */
@media screen and (max-width: 769px) {
  .image1 {
    width: 200px;
    height: 200px;
    margin-right: 10px;
  }

  .image2 {
    width: 150px;
    height: 150px;
    margin-left: 5px;
  }

  p.bank,
  .inquiry {
    width: 90%;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .image1 {
    width: 200px;
    height: 200px;
    margin-right: 10px;
  }

  .image2 {
    width: 150px;
    height: 150px;
    margin-left: 5px;
  }

  p.bank,
  .inquiry {
    width: 90%;
    margin: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 480px) {
  .image1 {
    width: 150px;
    height: 150px;
    margin-right: 5px;
  }

  .image2 {
    width: 100px;
    height: 100px;
    margin-left: 2px;
  }

  section h2 {
    font-size: 24px;
  }

  section p {
    font-size: 14px;
  }

  p.bank,
  .inquiry {
    width: 80%;
  }
}