* {
  box-sizing: border-box;
}



a {
  text-decoration: none;
  color: inherit;
}

.buttons-ctn {
  will-change: transform;
  position: absolute;
  top: 90%;
  left: 50%;
  margin-left: -140px;
  margin-top: -30px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.button1 {
  will-change: transform;
  position: relative;
  display: inline-block;
  float: left;
  padding: 20px;
  width: 140px;
  text-align: center;
  line-height: normal;
  -webkit-transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.button2 {
  will-change: transform;
  position: relative;
  display: inline-block;
  padding: 20px;
  width: 200px;
  text-align: center;
  line-height: normal;
  -webkit-transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.button--left {
 /* background: #141414;
 color: white;*/
 background: #FEBB2C;
  color: #141414;
}
.button--right {
 /* background: #ebebeb;
 color: #141414;*/
 background: #ded5c2;
  color: #141414;
}
.button--active {
  cursor: default;
}
.button--active span {
  opacity: 0;
}

.button__content {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 60px 20px;
  text-align: center;
  width: 600px;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  color: #141414;
}
.button__content--left {
  color: #ded5c2;
}
.button__content--left a {
  color: #141414;
  background: white;
}
.button__content--right {
  color: #FEBB2C;
}
.button__content--right a {
  color: #141414;
  background: #FEBB2C;
}
.button__content--active {
  opacity: 1;
  visibility: visible;
}
.button__content a {
  display: inline-block;
  padding: 10px 20px;
}
.button__content h2 {
  color: #141414;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}
@media (max-width: 650px) {
  .button__content {
    width: 295px;
  }
}

