.ccrc-slider-wrapper{
  position:relative;
  height: 540px;
}
.ccrc-slider{
  position: absolute;
  left: 0px;
  transform: translateX(0%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  transition: transform var(fade-in, 0.8s) ease-in-out;
}
.herosidebyside{
  height: 100%;
  display: flex ;
  background-color: #faf1e6;
  color: #494949;
}
.herosidebyside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.herosidebyside.active {
  opacity: 1;
  z-index: 1;
}
.herosidebyside-text--right{
  flex-direction:row-reverse;
}
.herosidebyside-content{
  position: relative;
}
.herosidebyside-content-inner {
  align-self: center;
  flex: 1;
  padding: 30px;
  text-align:left;
}
.herosidebyside-image {
  overflow: hidden;
}
.hero__sidebyside-image-link {
  display: flex;
  height: 100%;
}
.hero-image{
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}
.herosidebyside-image .hero-image {
  opacity: 0;
  transform: scale(1.15);
  transition: none;
  animation: fade-in .5s cubic-bezier(.29,.65,.58,1) forwards;
  object-position: center center;
}
.herotop-subtitle{
  margin:0;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 1.1em;
  margin-bottom: 10px;
}
.heroanimation-contents{
  opacity: 0;
  transform: translateY(10px);
  transition: none;
  animation: fadeUp .6s cubic-bezier(.26,.54,.32,1) forwards;
}
.herotitle{
  margin:0;
  font-size: 17.2px;
  transition-delay: .2s;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 0.8;
}
.hero-btn{
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  padding: 11px 25px;
  width: auto;
  min-width: 90px;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 3px;
  color: #fff;
  background: #c7b49c;
}
.herolink .hero-btn{
  margin: 4px 15px 15px 0;
}
.herobtn-prev-next{
  cursor:pointer;
  position: absolute;
  border: none;
  color: #fff;
  background: #c7b49c;
  border-radius: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  color: #494949;
  background-color: #faf1e6;
  box-shadow: 0 5px 5px #0000001a;
  top: auto;
  bottom: -20px;
  transform: none;
  z-index: 2;
}
.herobtn-prev-next:hover{
  transform: scale(1.12);
}
.herobtn-prev-next svg{
  position: absolute;
  left: 35%;
  top: 35%;
  width: 30%;
  height: 30%;
  fill: currentColor;
}
.prev-slide{
  left: auto;
  right: 90px;
}
.next-slide{
  right: 40px;
}
@media only screen and (min-width: 769px) {
  .herosidebyside-content {
    flex: 1 1 auto;
    display: flex;
    max-width: 40%;
  }
  .herosidebyside-text--right .sidebyside-content {
    order: 2;
  }
  .herosidebyside-content-inner {
    align-self: center;
    flex: 1;
    padding: 5vw;
  }
  .herosidebyside-image {
    flex: 0 1 60%;
  }
  .herotitle,.herotop-subtitle{
    margin-bottom: 15px;
  }
  .herotitle{
    font-size: 40px;
  }
}
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}