#steps-block{
    /* padding: 0 30px; */
    margin: 30px 0;
    background-color: var(--card);
    border-radius: 15px;
    padding: 80px 0;
}

#steps-block .title-block span {
  background-color: var(--primary);
  color: var(--card);
  font-size: 32px;
  padding: 5px 15px;
  border-radius: 10px;
  transform: rotate(-3deg);
  line-height: 50px;
  display: inline-block;
  width: fit-content;
  position: relative;
  /* top: -6px; */
  margin-bottom: 12px;
  text-transform: uppercase;
}


#steps-block .container{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#steps-block .steps_left{
  max-width: 570px;
}

#steps-block .steps_left .p2{
  color: var(--main_text);
  margin-top: 15px;
  margin-bottom: 40px;
}

#steps-block .steps_left .steps_video{
  width: 100%;
  height: 310px;
  max-width: 570px;
  position: relative;
  border-radius: 15px;
  border: 1px solid var(--stroke);
  overflow: hidden;
	cursor:pointer;
	display: block;
}
#steps-block .steps_left .steps_video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#steps-block .steps_left .steps_video iframe{
  width: 100%;
  height: 100%;
}

#steps-block .steps_left .steps_video img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#steps-block .steps_right{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

#steps-block .steps_right .step{
  display: flex;
  gap: 24px;
}

#steps-block .steps_right .step:first-child{
  margin-top: 30px;
}

#steps-block .steps_right .step .step_num{
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: var(--primary);
}

#steps-block .steps_right .step .step_num h6{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--card);
  font-weight: 600;
  font-family: "Geologica";
}

#steps-block .steps_right .step .step_cont h6{
  margin-bottom: 10px;
  font-family: "Geologica";
  font-weight: 600;
}

#steps-block .bottom-pagination-documents .swiper-pagination-progressbar {
  background: var(--stroke) !important;
}

#steps-block .steps_right .step .step_cont .punkt_content{
	 margin-left: 30px;
  li, p{
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--main_text);
  }
}

#steps-block .steps_left .steps_video svg{
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#steps-block .steps_left .steps_video{
  cursor: pointer;
}
#steps-block .steps_left .steps_video svg{
  circle{
    transition: all 0.3s ease-in;
  }
  path{
    transition: all 0.3s ease-in;
  }
}

#steps-block .steps_left .steps_video.video-hiden{
  img, svg{
    display: none;
  }
}


#steps-block .steps_left .steps_video:hover svg{
  circle{
    fill: var(--head);
    transition: all 0.3s ease-in;
  }
  path{
    fill: var(--primary);
    transition: all 0.3s ease-in;
  }
}

@media (max-width: 1200px) {
  #steps-block .container{
    flex-direction: column;
  }
  #steps-block .steps_left{
    max-width: none;
  }
  #steps-block .title-block{
    max-width: 570px;
  }
  #steps-block .steps_left .steps_video{
    max-width: none;
  }
  
}



@media (max-width: 700px) {
  #steps-block{
    padding: 40px 0;
  }    
  #steps-block .steps_right{
    gap: 30px;
  }
  #steps-block .title-block{
    font-size: 30px;
  }
  #steps-block .title-block span {
    font-size: 22px;
    padding: 0 15px;
    line-height: 50px;
    margin-bottom: 12px;
  }
  #steps-block .steps_right .step .step_num {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  #steps-block .container{
    gap: 20px;
  }
  #steps-block .steps_right .step:first-child {
    margin-top: 10px;
  }
  #steps-block .steps_left .p2{
    margin-bottom: 20px;
  }
  .container{
    padding: 0 15px;
  }
}

@media (max-width: 450px) {
  #steps-block .title-block{
    font-size: 20px;
  }
  #steps-block .title-block span{
    font-size: 18px;
    line-height: 40px;
  }
  #steps-block .steps_right .step{
    gap: 15px;
  }
  #steps-block .steps_right .step .step_cont h6{
    font-size: 15px;
  }
  #steps-block .steps_right .step{
    flex-direction: column;
  }
  #steps-block .steps_right .step .step_num{
    margin: 0 auto;
    margin-top: 10px;
  }
}
