.shablon{
  padding: 104px 0 80px;
  background: linear-gradient(90deg, #edf1ff 0%, #fff6e4 100%);
  min-height: 100vh;
  position: relative;
}
.shablon__container{
  display: flex;
  justify-content: space-between;
}
.shablon__for-lastphoto{
  position: absolute;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.shablon__left-block{
  border: 4px solid #fff;
  box-shadow: 0px 16px 44px rgba(0, 0, 0, 0.08);
  border-radius: 8px 8px 0px 0px;
  width: 368px;
}
.shablon__for-image{
  border: 4px solid #fff;
  box-shadow: 0px 16px 44px rgba(0, 0, 0, 0.08);
  border-radius: 8px 8px 0px 0px;
  width: 368px;
  position:relative ;
}
.shablon__for-image:last-child{
  margin-left: 80px;

}
.shablon__left-img{
  max-width: 100%;
  height: auto;
  width: 317px;
  height: 654px;
}
.shablon__right-block{
  width: 64%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.shablon__text{
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  font-size: 34px;
  max-width: 760px;
  letter-spacing: 0px;
  text-align: left;
}
.shablon__link{
  padding: 24px 40px;
  margin-right: auto;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  background: #0099ff;
  border-radius: 96px;
  text-align: center;
  font-weight: 500;
  line-height: 170%;
  transition: all 0.2s;
  margin-bottom: 100px;
}
.shablon__link:hover{
  background: (0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), #0099ff;
  box-shadow: 0px 8px 16px rgba(81, 187, 229, 0.883);
}
.shablon__thirth-img{
  width: 368px;
  height: 408px;
  max-width: 100%;
  height: auto;
  margin-top: auto;
  overflow: hidden;
}
.shablon__fourth-img{
  position: absolute;
  bottom: 0px;
  width: 368px;
  height: 506px;
  overflow: hidden;
}
.shablon__adaptive-div{
  display: none;
}

@media(max-width:1000px){
  .shablon{
    position: relative;
  }
   .shablon__for-lastphoto{
    position:unset;
  } 
  .shablon__container{
    display: flex;
    flex-direction: column;
  }
  .shablon__for-image{
    display: none;
    position: absolute;
  }
  .shablon__right-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .shablon__text{
    text-align: center;
    font-size: 22px;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .shablon__link{
    padding: 24px 40px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }
 
}