@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.button > .icon_right {
  margin-left: 10px;
  width: 15px;
}

.button {
  border-radius: 20px;
  background-color: #0e60ad;
  color: #fff;
  padding: 10px 25px;
  max-width: fit-content;
  font-weight: 500;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
}

.button:hover {
  transform: scale(1.2);
}

.store_link {
  margin: auto;
  margin-top: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main {
  display: flex;
  justify-content: space-between;
}

.flex_cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg_img_div {
  background-position: top center;
  /* background-attachment: fixed; */
  height: 100vh;
  flex: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.India_div {
  background-image: url(./images/India_bg.webp);
}

.UAE_div {
  background-image: url(./images/Dubai_bg.webp);
}

.vr_line {
  flex: 0 1 5px;
}

.abc1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 80%;
  max-width: 600px;
}

.brand_logo {
  max-width: 250px;
  margin-bottom: -80px;
  z-index: 99;
}

.white_bg_box {
  background-color: rgba(255, 255, 255, 0.9);
  flex: 1 0 100%;
  padding: 130px 20px 50px 20px;
  border-radius: 15px;
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.flag_name {
  justify-content: space-evenly;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #0b4c96;
}

.flag_name img {
  max-width: 150px;
}

/* Responsive */

@media only screen and (max-width: 1400px) {
  .flag_name {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 1200px) {
  .flag_name {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 900px) {
  .main {
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
  }

  .bg_img_div {
    height: 100%;
    padding: 30px 0;
  }

  .brand_logo {
    max-width: 150px;
    margin-bottom: -50px;
  }

  .white_bg_box {
    padding: 80px 20px 30px 20px;
  }

  .flag_name {
    font-size: 1rem;
  }
}
