/* 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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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: 4px 0 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(#F3C14D, #E04B38);
  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{
  font-size: 5.4vw;
  line-height: 1.4;
  padding: 2px 0 5px;
  color: #fff;
  margin: 0 auto 8px;
  width: 95%;
  border-radius: 20px 20px 20px 20px;
}
.hero ul li{
  background: linear-gradient( #3BC254 , #256D3A);
  color: #fff;
}
.hero ul li.last{
  font-size: 5.2vw;
}


/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
  .hero ul li,
  .hero ul li.last {
    font-size: 28px;
  }
}

/* ==========  md ≥ 768px  ========== */
@media (min-width:768px){
.hero ul li{
  width: 70%;
}
}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
.flex{
  display: flex;
}
.hero{
  width: 50%;
}

.hero ul li,
.hero ul li.last{
  font-size: 20px;
}
.hero .top_img {
  margin-top: -3.7vw;
}
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){
  .hero .top_img{
    margin-top: -3.7vw;
    
  }
  .hero ul li{
    width: 75%;
  }
      .hero .top_img {
        margin-top: -4vw;
    }
}
@media (min-width:1400px){
   .hero .top_img {
        margin-top: -1.5vw;
    }

    .hero ul li,
    .hero ul li.last{
    width: 65%;
    font-size: 1.4vw;
  }
}

/* End hero Section */
/* ================== */


/* ================== */
/* Start results Section */

.results{
  background: url(../images/bg-results.webp);
  background-size: cover;
  background-position: bottom;
  position: relative;
  text-align: center;
  background-color: #E5633B;
}

.results .results_title{
    font-size: 10vw;
    color: #fff;
    line-height: 1.5;
}
.results .results_subtitle{
    font-size: 5.2vw;
    color: #fff;
    padding: 0 4.8vw 2px;
    background: linear-gradient(to left , #E2543A,#F3CD51);
  margin-bottom: 10px;
  line-height: 1.4;
  }

/* Swiper Slider Styles */
.container_results{
  position: relative;
  width: 85%;
  margin: 0 auto 0px;
}
.results-swiper {
  width: 100%;
  margin: 0 3px 10px 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.results-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.results-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.results-swiper .swiper-button-next,
.results-swiper .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #f7931e 0%, #f15a24 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(241, 90, 36, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.results-swiper .swiper-button-next{
  left: 0px;
}
.results-swiper .swiper-button-next:after,
.results-swiper .swiper-button-prev:after {
  font-size: 10px;
  font-weight: 900;
}

.results-swiper .swiper-button-next:hover,
.results-swiper .swiper-button-prev:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(241, 90, 36, 0.8), inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.results .imp{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:8px;
  color: #fff;
  margin-bottom: 10px;
}
.results .imp span{
  font-size: 5.7vw;
  background: linear-gradient(to left,#F1C74E,#EF4A38);
  padding: 0 5px 2px;
  border-radius: 10px;
  line-height: 1.3;
}
.results .imp p{
font-size: 3.4vw;
line-height: 1.2;
}


/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){
  .results .top_sec h3{
    font-size: 10vw;
  }
  .results .results_title{

  }

}

/* ==========  md ≥ 768px  ========== */
@media (min-width:768px){

}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
.results{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 0;
  padding-top: 4vw
}
.results .results_title{
  font-size: 3.8vw;
  padding: 0 1.2vw 0px;
}
.results .results_subtitle{
    font-size: 2.2vw;
        padding: 0 1.2vw 0px;
}
.results .imp span{
  font-size: 3vw;
}
.results .imp p{
font-size: 1.7vw;
}
.results .btn_img{
  width: 280px;
}
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){
.results{
  padding-top: 2vw;
}
}

@media (min-width:1500px){

}
/* End results Section */
/* ================== */


/* ================== */
/* Start doctor Section */

.doctor{
  position: relative;
  background: #ED5D37;
  text-align: center;
  overflow: hidden;
}
.doctor .btm_doc{
    background: linear-gradient(to left,#E3553B,#EEAC4B);
    padding: 15px 7% 10px;
  }
    .doctor .btm_doc li{
      color: #fff;
      font-size: 3.6vw;
      margin-bottom: 5px;
    }
  .doctor .btm_doc li.orange{
    background: linear-gradient(to left,#4AD655,#2A7E3D);
    border-radius: 5px;
  }

  .doctor .top_doctor{
    background: linear-gradient(#F3BD4C,#EDA448);
    padding-bottom: 15px;
    margin-top: -4vw;
  }

.doctor h2{
  font-size: 7.5vw;
  color: #fff;
  margin-top: -4vw;
}
.doctor h3{
  font-size: 6vw;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(to left,#EEB44B,#E5382A);
  width: max-content;
  margin: 0 auto;
  padding: 0 15px 3px;
}

.doctor .imp_doctor{
  width: 70%;
  margin: 0 auto 5px;
}
.doctor .last_doc{
  background: url(../images/last-doc.webp);
  background-size: cover;
  background-position: center;
  padding: 10px 0 0;
}

/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){

}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){

  .doctor{
    width: 50%;
  }

  .doctor h2{
    font-size: 3vw;
  }
  .doctor h3{
  font-size: 2.8vw;
}
.doctor .btm_doc li{
  font-size: 1.75vw;
}
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){

}

/* End doctor Section */
/* ================== */


/* ================== */
/* Start how_work Section */

.testimonials{
  position: relative;
}
.testimonials .btn_img{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ==========  Responsive Design  ========== */
/* ==========  sm ≥ 576px  ========== */
@media (min-width:576px){



}

/* ==========  lg ≥ 992px  ========== */
@media (min-width:992px){
  .testimonials{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
}

/* ==========  xl ≥ 1200px  ========== */
@media (min-width:1200px){

}


/* End how_work Section */
/* ================== */









/* ================== */
/* Start form_section Section */


/* top form section */


.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(#3AB44D,#215F36);
}

.form_section .sm-p {
  font-size: 2.4vw;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  padding: 7px 0;
}


.form_section form{
  background: linear-gradient(#F1BA4D, #DF4B38);
  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{
  width: 80%;
  padding: 25px 20px 30px;
  width: max-content;
  min-width: 600px;
}


}

/* End form_section Section */
/* ================== */




/* ================== */
/* Start footer Section */

.footer{
  background:#215F36;
  padding-top: 15px;
  padding-bottom: 10px;
}
.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;
}
.footer.bot_footer{
  display: flex;
  background: #121a22;
}
}

/* End footer Section */
/* ================== */