@-webkit-keyframes slideZooom {
  0% {
    transfrom: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
	100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes slideZooom {
  0% {
    transfrom: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
	100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.banner-slide{
  position: relative;
  z-index: 1;
  height: calc(100vh - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-bar .banner-slide {
	height: calc(100vh - 72px);
}
.swiper-slide-active .slide-bg {
  -webkit-animation-name: slideZooom;
          animation-name: slideZooom;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.slide-content {
  text-align: center;
  position: relative;
  z-index: 3;
}

.slide-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-fraction {
  width: auto;
  color: #ffffff;
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: 22px;
  margin: 0 10px;
  line-height: 1;
}

.slide-controls button {
  border: none;
  color: #b59d53;
  background-color: transparent;
  font-size: 36px;
  padding: 0;
  height: 28px;
}

.slide-controls {
  position: absolute;
  bottom: 40px;
  z-index: 3;
  width: 100%;
}

.swiper-pagination-current {
  font-weight: 900;
  font-size: 40px;
}

.slide-controls button:hover {
  border: none;
  color: #ffffff;
}
.slide-content {
  padding-bottom: 120px;
  max-width: 80%;
}

.slide-logo img {
  max-width: 110px;
  margin-bottom: 30px;
}

.slide-button {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #e7efe7;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.slide-button:hover {
  background-color: #b59d53;
  border-color: #b59d53;
}

.slide-content h1 {
  margin-bottom: 30px;
}