.section{
  position: relative;
  max-width: calc(100% - 40px);
  width: 860px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 100px 0;
}
.section-fluid{
  position: relative;
  width: 100%;
  display: block;
}

.img-wrap{
  position: absolute;
  top: 100px;
  left: 0;
  width: 400px;
  height: 600px;
  display: inline-block;
  z-index: 9;
  transition: all 550ms linear;
  transition-delay: 100ms;
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("travelbookpic.png");
  opacity: 0;
}
.for-color-1:checked ~ .img-wrap.chair-1{
  opacity: 1;
  animation: shake 0.7s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0) rotate(-1deg);
  }  
  20%, 80% {
    transform: translate3d(2px, 0, 0) rotate(2deg);
  }
  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0) rotate(-3deg);
  }
  40%, 60% {
    transform: translate3d(3px, 0, 0) rotate(3deg);
  }
}

.info-wrap{
  position: relative;
  margin-left: 450px;
  z-index: 10;
  display: block;
  text-align: left;
}

.main-title{
  text-transform: uppercase !important;
  color: #e25822;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 10px;
}

h2{
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  color: #e25822;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 10px;
}



