/* Start About */


.about .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about .container .div_text{
  width: 50%;
}
.about .container .div_text h5{
  font-size: 25px;
  position: relative;
  padding-bottom: 10px;
}
.about .container .div_text h5::after{
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 70px;
  height: 2px;
  background: var(--main_color);
}

.about .container .div_text h2{
  font-size: 50px;
  margin: 35px 0 25px;
}

.about .container .div_text p{
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 25px;
}

.about .call{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 20px 15px 50px;
  border-right: 4px solid var(--main_color);
  width: max-content;
  background: #f5f9fb;
  box-shadow: -5px 5px 8px hsl(39.18deg 41.88% 54.12% / 32%);
  margin-bottom: 30px;
}
.about .call .icons svg{
  width: 80px;
  fill: var(--main_color);
}
.about .call .text p{
  color: #222;
  font-weight: 600;
  font-size: 17px;
}
.about .call .text a{
  font-size: 35px;
  color: var(--title_color);
  font-weight: bold;
}





.about .container .div_img{
  width: 45%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: flex-end;
  gap: 5%;
}
.about .container .div_img p{
  position: absolute;
}

.about .container .div_img img{
  border-radius: 10px;
}

.about .container .div_img .big_img{
  width: 60%;
  position: relative;
}
.about .container .div_img .btn_video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: var(--main_color);
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.about .container .div_img .btn_video svg{
  width: 40px;
  position: relative;
  top: 20px;
}
.about .container .div_img .btn_video:hover{
  background: var(--title_color);
}

.about .container .div_img .sm_img{
  width: 35%;
}







@media (max-width:1250px) {
  .about .container .div_text h2{
      font-size: 35px;
  }
  .about .container .div_text p{
      font-size: 16px;
  }
  .about .call{
      gap: 15px;
  }
  .about .call .text p{
      font-size: 16px;
      margin-bottom: 15px;
  }
  .about .call .text a{
      font-size: 25px;
  }
  .about .call .icons svg{
      width: 70px;
  }
}
@media (max-width:1000px) {
  .about .container{
      flex-direction: column;
  }
  .about .container .div_text{
      width: 100%;
  }
  .about .container .div_img{
      width: 60%;
  }
}
@media (max-width:500px){
  .about .container .div_img{
      width: 100%;
      margin-top: 30px;
  }
  .about .container .div_text p{
      font-size: 14px;
  }
  .about .call .text p{
      font-size: 13px;
  }
  .about .call .text a{
      font-size: 22px;
  }
  .about .call{
      padding: 12px 15px 12px 30px;
      margin-bottom: 10px;
  }
  .about .container .div_text h2{
      font-size: 25px;
      margin: 25px 0 15px;
  }
  .about .container .div_text h5{
      font-size: 20px;
  }
  .about .btn{
      font-size: 14px;
  }
}

/* End About */
/* Start sc_sm_Section */
.sc_sm_Section {
  background: #f5faff;
}
.sc_sm_Section .container{
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  position: relative;
}

.sc_sm_Section .box{
  width: 33%;
  text-align: center;
  z-index: 10;

}

.sc_sm_Section .box .divimg{
  background-color: #fff;
  padding: 50px;
  border-radius: 35%;
  box-shadow: 5px 8px 8px #0000007a;

  box-shadow: 0px 20px 20px rgba(8, 36, 91, 0.145);
  width: 60%;
  margin: auto;
  margin-bottom: 33px ;
  position: relative;
}
.sc_sm_Section .box .divimg::after{
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--title_color);
  color: #fff;
}
.sc_sm_Section .box:nth-child(1) .divimg::after{
  content: '1';
}
.sc_sm_Section .box:nth-child(2) .divimg::after{
  content: '1';
}
.sc_sm_Section .box:nth-child(3) .divimg::after{
  content: '2';
}
.sc_sm_Section .box:nth-child(4) .divimg::after{
  content: '3';
}

.sc_sm_Section .box h5{
  font-size: 20px;
  line-height: 1.6;
}

.sc_sm_Section .shape222{
  position: absolute;
  width: 650px;
  top: 35%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;

}


@media (max-width:1200px) {
  .sc_sm_Section .box .divimg{
      padding: 35px;
  }
  .sc_sm_Section .box h5{
      font-size: 18px;
  }
}
@media (max-width:1000px){

  .sc_sm_Section .shape222{
      display: none;
  }
  .sc_sm_Section .box .divimg{
      width: 100%;
  }
  .sc_sm_Section .box h5{
      font-size: 16px;
  }
  .sc_sm_Section .container {
      gap: 50px;

  }
}
@media (max-width:500px){
  .sc_sm_Section .box{
      width: 100%;
      margin-bottom: 50px;
  }
  .sc_sm_Section .box .divimg{
      padding: 50px;
      width: 60%;
      margin: auto;
      margin-bottom: 30px;
  }
  .sc_sm_Section .container{
      gap: 0;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .sc_sm_Section .box h5{
      font-size: 14px;
  }
}

/* End sc_sm_Section */