/* Font Files */

@font-face {
  font-family: mainFont;
  src: local("mainFont"), url("mainFont.ttf");
}


/* main css */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body , html{
  font-family: mainFont, sans-serif;
}

a{
  text-decoration: none;
}

li{
  list-style: none;
}

img {
  width: 100%;
  display: block;
}

input, button{
  border: none;
  outline: none;
}



/* error form style */ 

#error {
  position: relative;
  top: -5px;
  color: red;
  font-size: 14px;
  width: max-content;
  margin: 0 auto;
  padding: 0 5px 3px;
  background: #fcfefe;
  border-radius: 3px;
  border: 1px solid red;
  line-height: 1.2;
  opacity: 0;
  transition: 0.2s;
}

#error.active {
  opacity: 1;
}


/* button */

.btn_img {
  width: 55%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.div_btn{
  text-align: center;
}
.div_btn .btn{
  font-family: mainFont, sans-serif;
  font-size: 28px;
  padding: 1px 38px;
  color: #fcfefe;
  background: linear-gradient(#F43D18 , #F5801C);
  border-radius: 20px;
  box-shadow: 0 5px 15px #5858586b;
  cursor: pointer;
}


@media (min-width:576px){
  .btn_img{
    width: 280px;
  }
}




/* ================== */
/* Start hero Section */

.hero .content{
  background: url(../images/bg-hero.webp);
  background-size: cover;
  background-position: bottom;
  padding-top: 10px;
  text-align: center;
}
.hero ul li{
  margin-bottom: 10px;
  font-size: 6vw;
  line-height: 1.3;
  padding: 5px 0;
  color: #fff;
}
.hero ul li.black{
   background: url(../images/bgtextli.webp);
  background-size: cover;
  background-position: bottom;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.hero ul li.black p{
  background: linear-gradient(to bottom, #F5801E, #F44A1C); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero ul li.white{
  background: #FBFBFB;
  color: #1F383C;
}


/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
  .hero ul li {
    font-size: 5vw;
  }
}

/* ==========  md ≥ 768px  ========== */
@media (min-width:768px){

}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
.flex{
  display: flex;
}
.hero{
  width: 50%;
}

.hero ul li{
  font-size: 26px;
}


}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){

}

/* End hero Section */
/* ================== */





/* ================== */
/* Start results Section */

.results{
  background: url(../images/bg-result.webp);
  background-size: cover;
  background-position: bottom;
}

.results .top_img{
  width: 70%;
    margin: 0 auto;
}

.results .center_img{
  width: 90%;
  margin: 0 auto;
}



/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){

}

/* ==========  md ≥ 768px  ========== */
@media (min-width:768px){

}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
.results{
  width: 50%;
}
.results .top_img{
  width: 65%;
}
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){

}
/* End results Section */
/* ================== */







/* ================== */
/* Start doctor Section */

.doctor{
  background: url(../images/bg-doc.webp);
  background-size: cover;
  background-position: bottom;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.doctor .rotate{
  background: linear-gradient(#F5701A,#F44918);
  rotate: 6deg;
  width: 110%;
  position: relative;
  top: -8vw;
  text-align: center;
  padding: 3px 0 5px;

}
.doctor .rotate p{
  color: #fff;
  font-size: 6vw;
  line-height: 1.4;
  font-weight: normal;
}
.doctor ul{
  margin-bottom: 10px;
  margin-top: -10px;
}
.doctor ul li{
  font-size: 4.6vw;
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
}
.doctor ul li::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to left ,transparent , #151515 , transparent);
}
.doctor ul li:last-child::after{
  height: 0;
  width: 0;
}


/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){

}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
  .flex-reverse{
    flex-direction: row-reverse;
  }
  .doctor{
    width: 50%;
    justify-content: space-between;
  }
  .doctor .rotate p{
    font-size: 30px;
  }
  .doctor ul li{
    font-size: 26px;
  }
  .doctor .rotate{
    top: -4vw;
  }

}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){
  .doctor .rotate p{
    font-size: 32px;
  }
  .doctor ul li{
    font-size: 28px;
  }
}

/* End doctor Section */
/* ================== */








/* ================== */
/* Start how_work Section */

.how_work{
  background: url(../images/bg-how-work.webp);
  background-size: cover;
  background-position: bottom;
  text-align: center;
  padding-top: 10px;
}

.how_work .top_sec h3{
  font-size: 6.8vw;
  color: #fff;
}

.how_work .div_img{
  width: 80%;
  margin: 20px auto;
  border: 1px solid #fff;
  padding: 10px;
}
.how_work .text{
  margin-bottom: 20px;
}
.how_work .text p{
  color: #fff;
  font-size: 4.6vw;
}



/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
.how_work .top_sec h3{
  font-size: 6vw;
}
.how_work .top_sec p{
  font-size: 4.2vw;
}
.how_work .text p{
  font-size: 3.6vw;
}
.how_work .div_img{
  width: 80%;
}
}


/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
  .how_work{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
  }
  .how_work .top_sec h3{
    font-size: 32px;
    margin-top: 10px;
  }
  .how_work .top_sec p{
    font-size: 24px;
  }
  .how_work .text p{
    font-size: 22px;
  }
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){
 .how_work .text p{
    font-size: 25px;
  }
}


/* End how_work Section */
/* ================== */









/* ================== */
/* Start form_section Section */


/* top form section */

.form_section{
  background: #49BF1E;
}
.form_section .delvery_text{
  padding: 14px 0;
}

.form_section .delvery_text p {
  color: #fff;
  text-align: center;
  font-size: 6.5vw;
  line-height: 1;
}
.form_section .delvery_text p.bg{
  background: linear-gradient(#F2981D, #BD5F12);
  padding: 2px 8px 8px;
  width: max-content;
  margin: 5px auto;
}


/* form */

.form_section .container_form{
  background: linear-gradient(#505050,#151515);
  padding-bottom: 10px;
}

.form_section .sm-p {
  font-size: 2.4vw;
  text-align: center;
  line-height: 1.5;
  color: #eeeeee;
  padding: 7px 0;
}


.form_section form{
  background: linear-gradient(#828282,#2D2D2D);
  text-align: center;
  width: 95%;
  margin: 0 auto ;
  border-radius: 18px;
  box-shadow: 5px 5px 8px #00000027;
  padding-bottom: 15px;
}
.form_section .top_form{
  padding: 12px 0;
}
.form_section .top_form p{
  font-size: 5vw;
  line-height: 1.3;
  color: #fbfdfd;
}
.form_section form .input_div{
  position: relative;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 12px;
  }

.form_section form .input_div svg{
  position: absolute;
  width: 30px;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

.form_section form .input_div .icon_Phone{
  transform:translateY(-50%) scaleX(-1);
}


.form_section form input{
  width: 100%;
  padding: 15px 40px 15px 10px;
  font-size: 18px;
  box-shadow: 5px 5px 8px #00000031;
  text-align: right;
  font-family: sans-serif;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.3s ease-in;
}
.form_section form input:focus {
  border-color: #68E03E;
}


/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
.form_section .delvery_text p{
  font-size: 6vw;
}
.form_section .sm-p{
  font-size: 2.5vw;
}
.form_section .top_form p{
  font-size: 4.8vw;
}
.form_section form .input_div{
  width: 90%;
}
}



/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
.form_section{
  display: flex;
}
.form_section .price{
  width: 50%;
}

.form_section .container_form{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form_section form{
  width: 90%;
}
.form_section .delvery_text p{
  font-size: 30px;
}
.form_section .sm-p{
  font-size: 13.5px;
}
.form_section .top_form p{
  font-size: 24px;
}

}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){
.form_section form{
  padding: 25px 20px 30px;
  width: max-content;
  min-width: 550px;
}
.form_section .sm-p{
  font-size: 16px;
}
}

/* End form_section Section */
/* ================== */






/* ================== */
/* Start footer Section */

.footer{
  background: #151515;
  padding-top: 10px;
  padding-bottom: 20px;
}
.footer .boxs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
  
}

.footer .boxs .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 33.3%;
}

.footer .boxs .box img {
  height: 24px;
  width: auto;
}

.footer .boxs .box p {
  font-size: 2.4vw;
  line-height: 1.5;
  color: #ececec;
}

/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
.footer .boxs .box img{
  height: 28px;
}
}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
  .footer .boxs .box{
    gap: 20px;
  }
.footer .boxs .box img{
  height: 40px;
}
.footer .boxs .box p{
  font-size: 18px;
}

}

/* End footer Section */
/* ================== */










/* ================== */
/* Start Thanks Page Section */


body.thanks_page_page {
  background: url(../images/thanks.webp) center/cover;
  min-height: 100vh;
}

.thanks_page {
  text-align: center;
  padding-top: 65px;
}

.thanks_page h3 {
  font-size: 20px;
  color: #fcfefe;
 background: linear-gradient(to left ,#2A2A2A , #151515);
  width: max-content;
  margin: 0 auto;
  border-radius: 15px;
  padding: 5px 15px;
}

.thanks_page p {
  font-size: 13px;
  color: #fcfefe;
    background: linear-gradient(to top ,#F43D18 , #F5801C);
  width: max-content;
    margin: 0 auto 20px;
  border-radius: 0px;
  padding: 5px 13px;
  }

.thanks_page .text img {
  width: 70px;
  margin: 0 auto 10px;
}

/* ==========  Responsive Design  ========== */


@media (min-width: 576px) {
  body.thanks_page_page {
    background: #151515;
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .thanks_page p {
    font-size: 18px;
  }

  .thanks_page h3 {
    font-size: 25px;
    margin: 0px auto 10px;
  }

  .thanks_page .text img {
    width: 100px;
  }
}




/* End Thanks Page Section */
/* ================== */