* {
  --webkit-box-sising: border-box;
  --moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Arabic", sans-serif;

  /* font-family: "Cairo", sans-serif !important; */
  /* font-family: "drmohsen", sans-serif !important; */

  position: relative;
  min-height: 100vh;
}
ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
main {
  background: #efefef;
  width: 100%;
  min-height: 100vh;
  direction: rtl;
}
main .container {
  padding: 15px;
  display: flex;
  /* justify-content: center; */
}
.contentContainer {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.contentContainer_img {
  margin: auto;
  margin-bottom: 30px;
}
.contentContainer_img img {
  max-width: 100%;
}
.contentContainer h1 {
  font-size: 38px;
  font-weight: 700;
}
.contentContainer p {
  font-size: 20px;
}
.codeBox {
  /* width: 100%; */
  margin: auto;
  margin-bottom: 20px;
  position: relative;
}
.codeBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.blurr {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: calc(100% - 0px);
    background: rgb(20 18 18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.codeBox input {
  padding: 15px 0;
  border: none;
  outline: none;
  background: transparent;
  border: 2px dashed #000;
  font-size: 50px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.buttonsCopy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.buttonsCopy button {
  width: 100%;
  background: transparent;
  border: 1px solid #000;
  outline: none;
  border-radius: 50px;
  font-size: 24px;
  padding: 10px;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
.buttonsCopy button:hover {
  background: #000;
  color: #fff;
}
.buttonsCopy a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 50px;
  line-height: 1.5;
  font-size: 24px;
  background: #000;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.buttonsCopy a:hover {
  color: yellow;
}
.infoCoupon {
  margin-top: 20px;
}
.infoCoupon ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.infoCoupon ul li p {
  line-height: 27px;
}
.infoCoupon ul li span {
  font-weight: bold;
  color: #2980b9;
}
.couponContent p {
  font-size: 16px;
}
footer {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 -3px 10px 3px rgba(0, 0, 0, 0.2);
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
footer ul li a {
  text-decoration: none;
  color: #000;
}

@media (max-width: 994px) {
  .codeBox input {
    width: 100%;
    font-size: 32px;
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .contentContainer h1 {
    font-size: 24px;
    font-weight: 700;
  }
  .contentContainer p {
    font-size: 16px;
  }
  .buttonsCopy button {
    line-height: 1;
    font-size: 22px;
    padding: 12px;
  }
  .buttonsCopy a {
    line-height: 1;
    font-size: 18px;
    padding: 12px;
  }
  .couponContent p {
    font-size: 14px;
  }
}
/* .main{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
} */
