#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: pink;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

body{
  padding: 0 4rem;
  padding-top: 6rem;
}

.contactBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 80vh;
  margin-bottom: 10rem;
}

.Contact {
  font-size: 1.1vw;
  line-height: 1.2;
  font-weight: 600;
}

.getIN-text {
  line-height: .85;
  font-size: 22vw;
  text-align: end;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.contact-imgBox {
  height: auto;
  width: 60vw;
  margin-left: auto;
  border-radius: .5rem;
  overflow: hidden;
  margin-bottom: 10rem;
}

.contact-imgBox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}



@media (max-width: 991px) {
  body{
    padding: 0 2rem;
    padding-top: 6rem;
  }

  .contactBox {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 80vh;
  }

  .Contact {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
  }

  .getIN-text {
    line-height: .85;
    font-size: 8.5rem;
    text-align: end;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
  }

  .contact-imgBox {
    height: auto;
    width: 100%;
    margin-left: 0;
    border-radius: .5rem;
    overflow: hidden;
  }

}

@media (max-width: 767px) {
  body{
    padding: 0 2rem;
    padding-top: 6rem;
  }

  .contactBox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 40vh;
    margin-top: 35vh;
  }

  .Contact {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
    order: 2;
    text-align: end;
  }

  .getIN-text {
    line-height: .85;
    font-size: 8.3rem;
    text-align: end;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    order: 1;
  }

  .contact-imgBox {
    height: auto;
    width: 100%;
    margin-left: 0;
    border-radius: .5rem;
    overflow: hidden;
  }

}

