@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");
:root {
  --mainColor: #373737;
}
body {
  background-image: url(../images/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.coming-soon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.coming-soon .logo {
  width: 200px;
}
.coming-soon .coming-title {
  font-family: "Abhaya Libre", serif;
  text-align: center;
  font-size: 40px;
  color: var(--mainColor);
  margin: 15px auto 0 auto;
}
.coming-soon .coming-description {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 300;
}
.coming-soon .sec-title {
  color: var(--mainColor);
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}
.coming-soon .flex-three {
  display: flex;
  justify-content: space-between;
  width: 40%;
}
.coming-soon .flex-three .single-flex h4 {
  color: var(--mainColor);
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-weight: 600;
  font-size: 16px;
}
.coming-soon .flex-three .single-flex p {
  color: #212121;
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.coming-soon .social {
  display: flex;
  width: 25%;
  justify-content: space-around;
}
.coming-soon .social .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  width: 33%;
  background: #211572;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.8s;
}

.footer {
  color: #0f0f0f;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  bottom: -70px;
  direction: ltr;
  padding-bottom: 20px;
}
.footer a {
  text-decoration: none;
  color: #0f0f0f;
}
@media only screen and (max-width: 1174px) {
  body {
    background-size: auto;
    height: max-content;
  }
  .coming-soon .coming-description {
    padding: 10px;
  }
  .flex-three {
    width: 75% !important;
  }
  .coming-soon .social {
    width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  body {
    background-size: auto;
    height: min-content;
  }
  .coming-soon {
    position: relative;
    transform: none;
    left: 0;
    top: 20px;
  }
  .coming-soon .coming-description {
    padding: 10px;
  }
  .flex-three {
    width: 95% !important;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 10%;
  }
  .coming-soon .social {
    width: 80% !important;
  }
  .footer {
    position: relative;
    bottom: -15px;
  }
}
