.example-block {
  padding-top: 80px;
  background-color: #f6f7f7;
}
@media screen and (max-width: 769px) {
  .example-block {
    padding: 0;
  }
}
.example-block .title {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.example-block .subtitle {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #606060;
}
.example-block .example {
  display: block;
  width: 100%;
  height: auto;
  max-height: 800px;
  position: relative;
}
.example-block .example:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  background-image: url("images/ex_top.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
}
.example-block .example:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 60px;
  background-image: url("images/ex_bot.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
}
.example-block .example a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .example-block .example:before {
    height: 30px;
  }
  .example-block .example:after {
    height: 30px;
  }
}
