@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');


:root {
  --primary: #F8B810;
  --primary-dark: #E59443;
  --primary-light: #FAD97B;
  --white: #ffffff;
  --gray-1: #8C8C8C;
  --black: #000000;
  --black-1: #161616;
  --black-21: #212121;
  --black-2a: #2A2822;
}


body {
  direction: rtl;
  text-align: right;
  font-family: 'Varela Round', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white)
}

.layout{
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./img/hero.png');
  background-size: cover;
  background-position: 50% 0%;
  background-repeat: no-repeat;
}

@font-face {
  font-family: arab-dances;
  src: url('./font/ArabDances.ttf');
}

.font-arab-dances {
  font-family: arab-dances;
}

.img-shadow {
  filter: drop-shadow(16px 18px 100px rgba(3, 16, 28, .5));
}


.img-gray{
  filter: invert(50%);
  object-fit: contain;
}


.timing{
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./img/timing.png');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1920px) {
  .timing-top-img {
    width: 9%;
    height: auto;
  }
}
@media screen and (min-width: 3300px) {
  .timing-top-img {
    height: 420px;
    width: auto;
  }
}



.invest-box {
  background-color: var(--primary); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  padding: 40px 20px;
  height: 275px;
}

.invest-img {
  width: 40%;
  height: auto;
}

.invest-title {
  color: white;
  font-size: 24px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 1280px) { 
  .invest-box {
    border-radius: 30px;
    padding: 30px 20px;
    height: 250px;
  }

  .invest-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .invest-box {
    height: 200px;
  }
  
}

@media (max-width: 768px) { 
  .invest-title {
    font-size: 16px;
  }
  .invest-box {
    height: 220px;
  }
}

@media (max-width: 640px) { 
  .invest-title {
    font-size: 14px;
  }
  .invest-box {
    height: 150px;
  }
  .invest-img {
    height: 55px;
    width: auto;
  }
}




.real-card {
  width: fit-content;
  margin: 0 auto;
  background-color: var(--primary);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  filter: drop-shadow(10px 10px 16px var(--primary));
}

@media (max-width: 1024px) { 
  .real-card {
    border-radius: 15px;
  }
}

.form-title {
  color: white;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 768px) { 
  .form-title {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .form-title {
    font-size: 16px;
  }
}

.input-group {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.input-box {
  background-color: white;
  border-radius: 50px;
  height: auto;
  min-width: 101px;
  width: 100%;
  padding: 4px 12px;
  display: flex;
  align-items: center;
}

.input-box input {
  border: none;
  background: transparent;
  font-size: 10px;
  color: var(--gray-1);
  outline: none;
  width: 100%;
  direction: rtl;
}

.submit-btn {
  background-color: var(--black-21);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 4px 32px;
  font-size: 10px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}
