@font-face {
  font-family: Tajawal-Light;
  src: url(../fonts/Tajawal-Light.ttf);
}
@font-face {
  font-family: Tajawal-Regular;
  src: url(../fonts/Tajawal-Regular.ttf);
}
@font-face {
  font-family: Tajawal-Medium;
  src: url(../fonts/Tajawal-Medium.ttf);
}
@font-face {
  font-family: Tajawal-Bold;
  src: url(../fonts/Tajawal-Bold.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins-Bold.ttf);
}
:root {
  --main-color: #ebc37e;
  --second-color: #463e30;
  --third-color: #807768;
  --off-white-color: #fffaf2;
  --title-color: #463e30;
  --text-color: #807768;
  --btn-hover-bg-color: #ebc37e;
  --text-size: 18px;
  --title-size: 22px;
  --sec-title-size: 32px;
}
body,
html {
  position: relative;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: start;
  font-size: var(--text-size);
  font-family: Tajawal-Medium;
  color: var(--text-color);
  background-color: #fffefc;
  line-height: 1.9;
}
img{
  max-width: 100%;
}
a {
  color: var(--text-color);
  text-decoration: none;
  transition: 0.5s all;
}
a:hover {
  color: var(--main-color);
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.phone {
  direction: ltr;
  text-align: right;
  letter-spacing: 5px;
  font-size: 24px !important;
  line-height: 1;
}
/* sections */
section {
  padding-top: 120px;
  padding-bottom: 120px;
}
/* hero sectoin */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--off-white-color);
}
#hero .hero-content {
  text-align: center;
  justify-content: center;
  text-align: center;
}
#hero .hero-content .logo {
  height: 500px;
}
#hero .hero-content .logo img {
  max-height: 100%;
  filter: drop-shadow(0px 0px 60px rgba(240 169 103 / 50%));
}
#hero .hero-content .hero-title {
  font-size: 60px;
  color: var(--main-color);
  font-family: Tajawal-Bold;
  margin-top: -50px;
  margin-bottom: 15px;
}
#hero .hero-content .hero-subtitle {
  color: var(--second-color);
  font-size: 36px;
  margin-bottom: 15px;
  font-family: Tajawal-Bold;
}
#hero .hero-content .hero-desc {
  font-size: 18px;
  color: var(--second-color);
}
/* discount section */
#discount {
  background-color: #f9f4ec;
}
#discount .counter .counter-num {
  filter: drop-shadow(0px 10px 60px rgba(240 169 103 / 75%));
}
/* footer */
footer {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #fffaf2;
}
footer .logo {
  margin-bottom: 15px;
}
footer .logo img {
  width: 200px;
  filter: drop-shadow(0px 0px 60px rgba(240 169 103 / 50%));
}
footer .title {
  color: var(--main-color);
}
/* copyright */
#copyright {
  position: relative;
  padding: 10px 0;
  font-size: 16px;
  background-color: #fffaf2;
}

#copyright a {
  color: var(--text-color);
}
#copyright a:hover {
  color: var(--main-color);
}
#copyright p {
  margin-bottom: 0;
}

#totop {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--second-color);
  left: 21px;
  right: auto;
  bottom: 12px;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  z-index: 10;
  transition: 0.5s all ease-in-out;
}
#totop:hover {
  color: var(--main-color);
  -webkit-filter: drop-shadow(0px 10px 6px rgba(245, 150, 30, 60%));
  filter: drop-shadow(0px 10px 6px rgba(245, 150, 30, 60%));
}
