*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
}
:root{
  --main_color:#CE5FA1;
  --title_color:#27477D;
  --p_color:#888c92;
  --white_color:#fff;
  --border-color: rgba(255, 255, 255, 0.1);
}

body{
  direction: rtl;
}

section{
  padding: 100px 0 ;
}

*::selection{
  background-color: var(--main_color);
  color: var(--title_color);
}

html{
  scroll-behavior: smooth;
}


h1,h2,h3,h4,h5,h6{
  color: var(--title_color);
}
span{
  color: var(--main_color);
}
p{
  color: var(--p_color);
}

.top_sec{
  text-align: center;
  margin-bottom: 50px;
  padding: 0 30px;
}
.top_sec h3{
  width: max-content;
  margin: 0 auto 10px;
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--main_color);
  font-size: 25px;
}
.top_sec h4{
  font-size: 40px;
  font-weight: 600;
  color: var(--title_color);
  margin-bottom: 20px;
 }

 .top_sec p{
  font-size: 20px;
  width: 50%;
  margin: auto;
 }

.btns{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.btn{
  background-color: var(--main_color);
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white_color);
  transition: 0.3s;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.btn::after{

  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #000;
  border-radius: 30px;
  z-index: -1;
}
.btn:hover::after{
  width: 100%;
  border-radius: 30px;  
  z-index: -1;  
}
.btn_no_Bg{
  color: var(--white_color);
  text-transform: capitalize;
  text-decoration: underline;
  transition: 0.3s;
}
.btn_no_Bg:hover{
  color: var(--main_color);
}



.container{
  width: 80%;
  margin: auto;
  max-width: 1500px;
}
@media (max-width:1300px) {
  .container{
      width: 85%;
  }
}
@media (max-width:1200px) {
  .container{
      width: 90%;
  }
}


.top_section{
  text-align: center;
  margin-bottom: 100px;
}
.top_section h2{
  font-size: 30px;
}


/* Start Home */

.hero_sec{
  background: #f5faff;
  background: linear-gradient(#1e2b44b2,#1e2b44b2),url(../img/bg_home.jpg);
  background-size: cover;
  background-position: center;
  padding: 50px 0 100px;

}
.hero_sec .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.hero_sec .container .div_img{

  width: 48%;
  border: 8px solid #ffffffb4;
  border-radius: 30px;
  padding: 20px 20px 0 20px;
  overflow: hidden;
}
.hero_sec .container .div_img img{
  position: relative;
  bottom: -5px;
}

.hero_sec .container .div_text{
  /* hatem */
  padding-top: 100px;
  width: 50%;
}

.hero_sec h3{
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  background: var(--title_color);
  border-radius: 30px;
  padding: 12px 20px;
  width: max-content;
}
.hero_sec h1{
  font-size: 45px;
  margin-bottom: 30px;
  color: var(--main_color);
}
.hero_sec p{
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 20px;
  color: #d4d4d4;
}


.hero_sec .content{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero_sec .div_text .content .box{
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero_sec .div_text .content .box img{
  width: 180px;
}
.hero_sec .div_text .content .box h4{
  color: #fff;
  font-size: 23px;
}



/* hero animation */
.hero .shape{
  position: absolute;
}

.hero .shape3{
  top: 20px;
  right:  0px;
  animation: movetop3 linear infinite 2.5s;
  width: 80px;
}

.hero .shape4{
  bottom: 80px;
  left: 0;
  z-index: 100;
  width: 100px;
  animation: movetop4 linear infinite 3s;
}

@keyframes movetop3{
  0%{
      top: 30px;
  }
  50%{
      top: 50px;
  }
  100%{
      top: 30px;
  }
}
@keyframes movetop4{
  0%{
      bottom: 80px;
  }
  50%{
      bottom: 40px;
  }
  100%{
      bottom: 80px;
  }
}




@media (max-width:1200px) {
  .hero_sec h1{
      font-size: 40px;
  }
  .hero_sec h3{
      font-size: 18px;
  }
}
@media (max-width:1000px){
  .hero_sec .container{
      flex-direction: column;
  }
  .hero_sec .container .div_text{
      width: 100%;
      margin-bottom: 50px;
  }
  .hero_sec .container .div_img{
      width: 60%;
  }
}

@media (max-width:500px){
  .hero_sec h1{
      font-size: 30px;
  }
  .hero_sec h3{
      font-size: 16px;
      padding: 8px 12px;
  }
  .hero_sec p{
      font-size: 15px;
      line-height: 1.5;
  }
  .hero_sec .div_text .content .box h4{
      font-size: 18px;
  }
  .hero_sec .div_text .content .box img{
      width: 140px;
  }
  .hero_sec .btn{
      padding: 14px 28px;
      font-size: 15px;
  }
  .hero_sec .container .div_img{
      width: 100%;
  }
  .hero_sec{
      padding-top: 0;
  }
  .hero .shape3{
      width: 55px;
  }
  .hero .shape4{
      width: 50px;
  }

}



/* End Home */



/* 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 */


/* Start Services */

.services{
  padding-top: 0;
}
.top_sec_serv{
  background: linear-gradient(#27477d9d,#27477d9d),url(../img/serv_bg.jpg);
  text-align: center;
  padding: 120px 0  300px;
  background-position: center;
  background-size: cover;
}
.top_sec_serv h4{
  color: #fff;
}
.top_sec_serv p{
  color: #fff;
}

.services .content{
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  position: relative;
  margin-top: -200px;
}
.services .content .box{
  width: 31%;
  -webkit-box-shadow: 0px 6px 13px 0px rgba(39, 71, 125, 0.1);
  box-shadow: 0px 6px 13px 0px rgba(39, 71, 125, 0.1),
  -0px -6px 13px 0px rgba(39, 71, 125, 0.059);
  background-color: var(--white_color);
  text-align: center;
  padding-top: 43px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 60px;
}

.services .content .box h3{
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 25px;
  padding: 0 20px;
  line-height: 1.5;
}
.services .content .box p{
  line-height: 1.6;
  padding: 0 30px;
  margin-bottom: 80px;
}



.services .img_icons{
  position: relative;
}
.services .img_icons .icons{
  text-align: center;
  position: absolute;
  z-index: 10;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}
.services .img_icons .icons .sm_icon{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 5px solid #fff;
  display: block;
  text-align: center;
  line-height: 57px;
  background: var(--title_color);
  position: relative;
  top: 25px;
  transition: 0.3s;
}
.services .img_icons .icons .sm_icon svg{
  width: 70%;
}

.services .img_icons .icons .big_icon{
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 100%;
  background: var(--main_color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 8px solid #fff;
  transition: 0.3s;
}

.services .img_icons .icons .big_icon img{
  width: 50%;
}

.services .box:hover .icons .big_icon{
  background: var(--title_color);
}
.services .box:hover .icons .sm_icon{
  background: var(--main_color);
}


.services .img_box{
  overflow: hidden;
  position: relative;
}
.services .img_box .m_img{
  width: 100%;
  scale: 1;
  transition: 0.3s ease-in-out;
  height: 300px;
  object-fit: cover;
}
.services .box:hover .img_box .m_img{
  scale: 1.1;
}
.services .img_box .shape{
  position: absolute;
  top: 0;
  z-index: 1;
}
.services .btn{
  font-size: 14px;
}


.services .img_box::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--theme-color)), color-stop(70%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to top, var(--main_color) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.6;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 1;
}
.services .box:hover .img_box::after{
  height: 100%;
  width: 100%;
}

.services .btns{
  display: flex;
  justify-content: center;
  align-items: center;
}


.services.hifa{
  background: #eff5ff;
  padding-top: 50px;
}
.services.hifa .container{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.services .card{
  width: 200px;
  height: 200px;
  padding: 20px;
  background: #CE5FA121;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: 0;
  transition: 0.3s ease-in-out;
  border: 2px solid transparent;
  border: 2px solid white;
  margin-bottom: 50px;

}
.services .card:hover{
  top: -10px;
  border-color: #fff;
  scale: 1.01;
  box-shadow: 5px 5px 12px #9191916b;
  background: #CE5FA1;
}
.services .card img{
  width: 100px;
}
.services .card h4{
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}


@media (max-width:1400px){
  .services .content .box h3{
      font-size: 25px;
  }
}
@media (max-width:1320px){
  .services .content .box h3{
      font-size: 22px;
      margin-bottom: 15px;
  }
  .services .content .box{
      width: 32%;
  }
  .services .content .box p{
      font-size: 14px;
      line-height: 1.6;
      padding: 0 20px;
  }
  .services .img_box .m_img{
      height: 250px;
  }
  .services .img_icons .icons .big_icon{
      width: 130px;
      height: 130px;
  }
  .top_sec p{
      width: 50%;
  }
}
@media (max-width:1000px){
  .services .content .box{
      width: 47%;
  }
  .top_sec h4{
      font-size: 30px;
  }
}
@media (max-width:650px){
  .services .content .box{
      width: 100%;
  }
  .top_sec_serv.top_sec{
      padding: 100px 30px  220px;
  }
  .top_sec p{
      width: 100%;
      font-size: 14px;
      line-height: 1.5;
  }
  .top_sec h4{
      font-size: 25px;
      line-height: 1.5;
  }
  .top_sec h3{
      font-size: 26px;
  }

/* start sev hifa */

  .services.hifa .container{
      gap: 0;
      justify-content: space-between;
  }
  .services .card{
      width: 47%;
      margin-bottom: 30px;
      height: auto;

  }
  .services .card h4{
      font-size: 17px;
  }
}
@media (max-width:650px){
  .services .card h4{
      font-size: 14px;
  }
}
@media (max-width:350px){
  .top_sec h3{
      font-size: 22px;
  }
  .top_sec h4{
      font-size: 20px;
  }
}


/* End Services */

/* سكشن قبل وبعد */

.before_after_Slider .container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.before_after_Slider .box{
  width: 500px;
  height: 350px;
  border-radius: 20px;
  border: 5px solid #CE5FA181;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease-in-out;
}
.before_after_Slider .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.before_after_Slider .box:hover img{
  scale: 1.1;
}
.before_after_Slider .box:hover{
  border-color: var(--title_color);
}
.before_after_Slider .box::after{
  content: "تجميل الانف";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  color: #fff;
  font-weight: bold;
  background: var(--title_color);
  font-size: 18px;
  border-radius: 15px 15px 0 0px ;
}

.before_after_Slider .box:nth-child(1)::after{
  content: "شد الوجة";
}
.before_after_Slider .box:nth-child(2)::after{
  content: "حقن بوتوكس";
}
.before_after_Slider .box:nth-child(3)::after{
  content: "تجميل الانف";
}
.before_after_Slider .box:nth-child(4)::after{
  content: "شد الجسم";
}

@media (max-width:1250px) {
  .before_after_Slider .box{
      width: 400px;
      height: 300px;
  }
  .top_sec h4{
      font-size: 30px;
  }
}
@media (max-width:950px){
  .before_after_Slider .box{
      width: 250px;
      height: 180px;
      
  }
  .top_sec p{
      width: 80%;
  }
  
}

@media (max-width:650px){
  .before_after_Slider .box{
      width: 100%;
      height: 240px;
  }

  .top_sec p{
      width: 100%;
      font-size: 14px;
      line-height: 1.5;
  }
  .top_sec h4{
      font-size: 25px;
      line-height: 1.5;
  }
  .top_sec h3{
      font-size: 26px;
  }
}

/* Start Team section */ 
.teams {
  background: url(../img/teambg.png);
  background-size: cover;
  background-position: center;
}
.teams .container{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

.teams .container .card{
  width: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  transition: 0.3s ease-in-out;
  position: relative;
  top: 0;
  padding-bottom: 20px;
}
.teams .container .card:hover{
  scale: 1.03;
  top: -10px;
}
.teams .container .card img{
  border-radius: 10px;
  margin-bottom: 20px;
}
.teams .container .card h3{
  font-size: 25px;
  margin-bottom: 20px;
}
.teams .container .card p{
  font-size: 20px;
}
.teams .container .card .btn{
  padding: 12px  25px;
  font-size: 14px;
}
.teams .container .card .btn i{
  font-size: 20px;
}
.teams .container .card .text{
  padding: 0 10px ;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
}

.teams .container .card:hover .btn::after{
  width: 100%;
  border-radius: 30px;  
  z-index: -1;  
}
@media (max-width:1000px) {
  .teams .container{
      margin-top: 50px;
  }
  .teams .container .card{
      width: 32%;
  }
  .teams .container .card h3{
      font-size: 18px;
  }
  .teams .container .card p{
      font-size: 14px;
  }
  .teams .container .card .btn{
      padding: 12px;
  }
}
@media (max-width:750px){
  .teams .container .card{
      width: 47%;
      margin-bottom: 40px;
  }
}
@media (max-width:450px){
  .teams .container .card{
      width: 100%;
      margin-bottom: 30px;
  }
}

/* End Team section */ 







/* Start why_us */ 


.why_us{
  background: url(../img/whyus_bg.jpg);
  background-size: cover;
  background-position: center;
}

.why_us .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.why_us .div_text{
  width: 50%;
}
.why_us .div_text h4{
  font-size: 25px;
}
.why_us .div_text h2{
  font-size: 40px;
  margin: 15px 0 25px;
}
.why_us .div_text p{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.why_us .div_text .icon{
  width: 110px;
  height: 110px;
  background: var(--main_color);
  border-radius: 100%;
  padding: 20px;
}

.why_us .div_text ul li{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.why_us .div_text ul li .text{
  width: calc(100% - 110px);
}
.why_us .div_text ul li .text p{
  margin-bottom: 0;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 14px;
}
.why_us .div_text ul li .text h3{
  font-size: 25px;
}


.why_us .div_img{
  width: 40%;
  position: relative;
  margin-bottom: 100px;
}

.why_us .div_img img{
  border: 15px solid #fff;
  width: 100%;
  box-shadow: 8px 8px 15px #6c6c6c3f;
}
.why_us .div_img .img0{
  position: relative;
  z-index: 10;
  rotate: 5deg;
  box-shadow: 8px 8px 15px #6c6c6c64;

}
.why_us .div_img .img1{
  position: absolute;
  top: 90%;
  left: -50px;
  width: 40%;
  rotate: 5deg;
  
}

.why_us .div_img .img2{
  position: absolute;
  top: 100%;
  right: -30px;
  width: 45%;
  rotate: -20deg;
}


@media (max-width:1200px) {
  .why_us .div_text ul li .text h3{
      font-size: 22px;
  }
  .why_us .div_img .img1{
      left: 0px;
  }
}
@media (max-width:1000px){
  .why_us  .container{
      flex-direction: column;
  }
  .why_us .div_text{
      width: 100%;
      margin-bottom: 50px;
  }
  .why_us .div_img .img1{
      left: -40px;
  }
  .why_us .div_img{
      width: 60%;
  }
  .why_us .div_text ul li{
      width: 80%;
  }
}
@media (max-width:500px){
  .why_us .div_text h4{
      font-size: 26px;
  }
  .why_us .div_text h2{
      font-size: 25px;
  }
  .why_us .div_text p{
      font-size: 14px;
      line-height: 1.5;
  }
  .why_us .div_text ul li{
      width: 100%;
  }
  .why_us .div_text ul li .text h3{
      font-size: 18px;
  }
  .why_us .div_text ul li .text p{
      font-size: 13px;
  }
  .why_us .div_img{
      width: 75%;
  }
  .why_us .div_text .icon{
      width: 90px;
      height: 90px;
  }
}

/* End why_us */ 

/* blog section */

.blog{
  background: #ffffff;
}
.blog .boxs{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog .boxs .box{
  width: 31%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 5px 5px 12px #9191914b;
  transition: 0.3s ease-in-out;
}
.blog .boxs .box:hover{
  box-shadow: 5px 5px 22px #5d5d5db8;
}

.blog .boxs .box .div_img{
  position: relative;
  padding: 20px;
  border-radius: 10px;
}
.blog .boxs .box .div_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  scale: 1;
  transition: 0.3s ease;
  border-radius: 10px;
}
.blog .boxs .box .div_img .img_serv{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}
.blog .boxs .box:hover .div_img img{
  scale: 1.1;
}

.blog .boxs .box .content{
  padding: 0px 15px 40px;
}
.blog .boxs .box h2{
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog .boxs .box p{
  margin-bottom: 30px;
  line-height: 1.6;
}
@media(max-width:1000px){

  .blog .boxs .box{
      width: 49%;
      margin-bottom: 30px;
  }
}
@media(max-width:500px){
 

  .blog .boxs {
      justify-content: center;
  }
  .blog .boxs .box{
      width: 90%;
      margin-bottom: 30px;
  }
  .blog .boxs .box .div_img .img_serv{
      height: 170px;
  }
  .blog .boxs .box p{
      font-size: 16px;
  }
  .blog .boxs .box h2{
      font-size: 23px;
      margin-bottom: 12px;
      font-weight: 500;
  }
}




/* Start Blog

.blog{
  background: #E0EFFB;
}
.blog .boxs{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog .boxs .box{
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 5px 5px 12px #9191914b;
  transition: 0.3s ease-in-out;
}
.blog .boxs .box:hover{
  box-shadow: 5px 5px 22px #5d5d5db8;
}

.blog .boxs .box .div_img{
  position: relative;
  margin-bottom: 30px;
}
.blog .boxs .box .div_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  scale: 1;
  transition: 0.3s ease;
}
.blog .boxs .box .div_img .img_serv{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}
.blog .boxs .box:hover .div_img img{
  scale: 1.1;
}

.blog .boxs .box .content{
  padding: 0px 15px 40px;
}
.blog .boxs .box h2{
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog .boxs .box p{
  margin-bottom: 30px;
  line-height: 1.6;
}






@media (max-width:1200px) {
  .blog .boxs .box{
      width: 31%;
  }
  .blog .boxs .box h2{
      font-size: 24px;
  }
  .blog .btn{
      padding: 16px 32px;
      font-size: 16px;
  }
}
@media (max-width:1000px){
  .blog .boxs .box{
      width: 48%;
      margin-bottom: 50px;
  }
}
@media (max-width:600px){
  .blog .boxs .box{
      width: 100%;
      margin-bottom: 50px;
  }
  .blog .boxs .box h2{
      font-size: 20px;
  }
  .blog .boxs .box p{
      font-size: 14px;
      line-height: 1.5;
  }
}
 */

/* End Blog */

/* div Video */ 

.video_div{
  position: fixed;
  top: 0vh;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  opacity: 0;
  scale: 0.2;
}
.video_div.active{
  top: 0vh;
  opacity: 1;
  z-index: 1000;
  scale: 1;
}
.video_div span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000009f;
  z-index: -1;
}
.video_div p{
  position: absolute;
  top: 100px;
  right: 80px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: var(--main-color);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  transition: 0.3s;
  z-index: 1000;
}
.video_div p:hover{
  color: red;
}
@media (max-width:750px) {

  .video_div{
    padding: 0 5%;
  }
  
  .video_div video{
    width: 80%;
    height: auto;
  }
  .video_div p{
    right: 20px;
  }}