@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700,800");

.ar_blog-card{
  /* position: absolute; */
  display: flex;

  height: 400px;
  width: 100%;
  max-width: 1000px;
  /* margin: auto; */
  border-radius: 25px;
  background: white;
  box-shadow: 0px 10px 50px rgba(252,56,56,.3);
}
.ar_inner-part{
  position: absolute;
  display: flex;
  height: 400px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
#imgTap:checked ~ .ar_inner-part {
  padding: 0;
  transition: .1s ease-in;
}
.ar_inner-part .img{
  height: 380px;
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 2px 3px 15px rgba(252,56,56,.1);
}
#imgTap:checked ~ .ar_inner-part .img{
  height: 370px;
  width: 820px;
  z-index: 99;
  margin-top: 10px;
  transition: .3s .2s ease-in;
}
.img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  transition: .6s;
}
#tap-1:checked ~ .ar_inner-part .img-1{
  opacity: 1;
  transition-delay: .2s;
}
.ar_content{
  padding: 0 20px 0 10px;
  width: 600px;
  margin-left: 50px;
  opacity: 0;
  transition: .6s;
}
#imgTap:checked ~ .ar_inner-part .content{
  display: none;
}
#tap-1:checked ~ .ar_inner-part .content-1
{
  opacity: 1;
  margin-left: 0px;
  z-index: 100;
  transition-delay: .3s;
}
.ar_content span{
  display: block;
  color: #7b7992;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500
}
.ar_content .title{
  font-size: 16px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.ar_content .text{
  color: #4e4a67;
  font-size: 16px;
  width: 440px;
  /* margin-left: 50px; */
  margin-bottom: 50px;
  line-height: 1.5em;
  text-align: justify;
}
.ar_content .title-1{
  font-size: 16px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 60px;
}

.ar_content .title-2{
  font-size: 18px;
  font-weight: 600;
  color: #29292b;
  margin-bottom: 60px;
}
.ar_content .text-1{
  color: #4e4a67;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 1.5em;
  text-align: justify;
}

.ar_content button{
  display: inline-flex;
  padding: 5px 10px;
  border: none;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff0e6;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  border: 1px solid #fd3535;
  background: linear-gradient(147deg, #fe8a39  0%, #fd3838 74%);
}
.ar_content button:hover{
  background: linear-gradient(147deg, #fe791b 0%, #fd1c1c 74%);
}
.ar_sliders{
  position: absolute;
  bottom: 25px;
  left: 29%;
  transform: translateX(-50%);
  z-index: 12;
}
#imgTap:checked ~ .ar_sliders{
  display: none;
}
.ar_sliders .tap{
  position: relative;
  height: 8px;
  width: 30px;
  background: #d9d9d9;
  border-radius: 5px;
  display: inline-flex;
  margin: 0 3px; /*Top, bottom*/
  cursor: pointer;
}
.ar_sliders .tap:hover{
  background: #cccccc;
}
.ar_sliders .tap:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: -100%;
  background: linear-gradient(147deg,#f6b323 0%, #f23b26 74%);
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform .6s;
  transform-origin: left;
}
input[type="radio"],
input[type="checkbox"]{
  display: none;
}
#tap-1:checked ~ .ar_sliders .tap-1:before{
  transform: scaleX(1);
  width: 100%;
}
