/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template 
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 10 2023
    :: Last Updated: 10 2023
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: unset;
}

body {
  font-family: "Cairo", sans-serif;
}

.content {
  background: url("../images/bg.jpg") no-repeat center center/cover;
  height: 100vh;
}
.content .content-box {
  padding-top: 4rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
.content .content-box .big-img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.content .contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  padding: 3rem;
  border-radius: 1rem 1rem 0 0;
  width: 100%;
  gap: 2rem;
}
.content .contact-us .download-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}
.content .contact-us .download-box .download-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.content .contact-us .download-box .download-icons img {
  height: 4rem;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .content .content-box {
    justify-content: space-evenly;
  }
  .content .contact-us {
    flex-direction: column;
    padding: 2rem 1rem;
    border-radius: 1rem;
    text-align: center;
  }
  .content .contact-us .download-box .download-icons img {
    height: 3rem;
  }
  .content .contact-us .download-box h2 {
    font-size: 1.2rem;
  }
}
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .content .content-box {
    justify-content: space-evenly;
  }
  .content .contact-us {
    flex-direction: column;
    padding: 2rem 1rem;
    border-radius: 1rem;
    text-align: center;
  }
  .content .contact-us .download-box .download-icons img {
    height: 3rem;
  }
  .content .contact-us .download-box h2 {
    font-size: 1.2rem;
  }
}
/*  large screen  */
/* 17 inch *//*# sourceMappingURL=style.css.map */