
/** about-section **/

.about-section{
  position: relative;
}

.about-section .image-box {
    position: relative;
    display: block;
    margin-right: 27px;
    padding-right: 142px;
    padding-bottom: 35px;
}

 .about-section .image-box .image-1{
  position: relative;
  display: block;
  border-radius: 300px 300px 300px 10px;
  overflow: hidden;
 } 

.about-section .image-box img{
  position: relative;
  width: 100%;
}

.about-section .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .image-2 img{
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .image-2:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  right: 16px;
  bottom: 16px;
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .rotate-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 57px;
  top: 58px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  border: dashed;
  border-width: 1px;
  z-index: 2;
}

.about-section .image-box .rotate-box .curved-circle{
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section .image-box .rotate-box .icon-box img{
  display: inline-block;
  width: auto;
}

.about-section .content-box{
  position: relative;
  display: block;
}

.about-section .content-box h2{
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.about-section .content-box p span{
  font-weight: 700;
}

.about-section .content-box .inner-box{
  position: relative;
  display: block;
  background: #FDF7F9;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  border-top: solid;
  border-top-width: 3px;
  padding: 35px 40px;
}

.funfact-block-one{
  position: relative;
  display: block;
}

.funfact-block-one:before{
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 15px;
}

.funfact-block:last-child .funfact-block-one:before{
  display: none;
}

.funfact-block-one .count-outer{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}

.funfact-block-one p{
  color: var(--title-color);
}

.funfact-block-one .count-outer .symble{
  position: relative;
  top: -10px;
}



/** rtl-css **/

.rtl .about-section .image-box{
  margin-right: 0px;
  margin-left: 117px;
}

.rtl .funfact-block-one:before{
  right: inherit;
  left: 15px;
}





.recovery-section {
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  margin: 0 0 0 0;
  background: #eeeeeecc;
}

.recovery-content {
  max-width: 750px;
  margin: 0 auto 60px;
  animation: fadeUp 1s ease;
}

.recovery-content h2 {
  font-size: 44px;
  margin-bottom: 15px;
  color: #000000;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.recovery-content .sub {
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
}

.recovery-content .main {
  font-size: 20px;
  line-height: 1.6;
}

.helpline-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.helpline-card {
    background: rgb(0 0 0);
    padding: 0px 30px;
    border-radius: 15px;
    min-width: 230px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: fadeUp 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
}

.helpline-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgb(255 127 41);
}
.helpline-card:hover h4, .helpline-card:hover a{ color:#000;}



.helpline-card h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

.helpline-card a {
  font-size: 22px;
  font-weight: bold;
  color: #ff7f29;
  text-decoration: none;
}

.helpline-card span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}















/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .about-section .image-box{
    margin: 0px;
    margin-bottom: 30px;
  }

  .rtl .about-section .image-box{
    margin-left: 0px;
  }

  .funfact-block-one{
    margin-bottom: 30px;
  }

  .funfact-block-one:before{
    display: none;
  }

  .about-section .content-box .inner-box{
    padding-bottom: 5px;
  }
}

@media only screen and (max-width: 767px){
  .about-section .content-box h2{
    font-size: 30px;
    line-height: 40px;
  }

  .about-section{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .about-section .image-box{
    padding: 0px;
  }

  .about-section .image-box .image-2{
    position: relative;
    margin-top: 30px;
  }

  .about-section .content-box .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 499px){

}











































