@keyframes loadingSpin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
	p {
		font-size: 1.4em;

		//	Tablet
	    .minWidth(768px, {
	    	font-size: 1.6em;
	    });

	    //	Desktop
	    .minWidth(1280px, {
	    	font-size: 1.8em;
	    });
	}
*/
.c-homepage-banner {
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 991px) {
  .c-homepage-banner {
    height: 48rem;
  }
}
.c-homepage-banner__wrapper {
  height: 100%;
  position: relative;
}
.c-homepage-banner__content {
  display: flex;
  width: 100%;
  padding: 4rem 0 3.2rem 0;
  gap: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__content {
    width: 40rem;
    padding: 3rem;
    align-items: flex-start;
    position: absolute;
    left: 4rem;
    bottom: 0;
    text-align: left;
    z-index: 2;
  }
}
@media all and (min-width: 1280px) {
  .c-homepage-banner__content {
    left: 8rem;
  }
}
.c-homepage-banner__title {
  margin: 0 0 1.2rem 0;
  color: #312F2F;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__title {
    margin: 0 0 1.6rem 0;
  }
}
.c-homepage-banner__summary {
  margin: 0 0 2rem 0;
  color: #312F2F;
  font-size: 1.6rem;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__summary {
    margin: 0 0 1.6rem 0;
  }
}
.c-homepage-banner__button.e-btn {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: none;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__button.e-btn {
    font-size: 1.8rem;
  }
}
.c-homepage-banner__video {
  display: flex;
  width: 100%;
  height: 100%;
  background: #000000;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__video {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-homepage-banner__video.is-hidden {
  display: none;
}
.c-homepage-banner__frame {
  display: flex;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.77777778;
  pointer-events: none;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__frame {
    width: 100vw;
    height: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.c-homepage-banner__control {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: absolute;
  bottom: 1rem;
  left: 4rem;
  right: unset;
  background: #FFFFFF;
  border: 0.2rem solid #F0634F;
  border-radius: 50%;
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media all and (min-width: 991px) {
  .c-homepage-banner__control {
    right: 8rem;
    left: unset;
  }
}
.c-homepage-banner__control:hover {
  background: #F0634F;
}
.c-homepage-banner__control:hover svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}
@media all and (max-width: 599px) {
  .c-homepage-banner__control--mobile {
    right: unset;
    left: 2rem;
  }
}
@media all and (min-width: 991px) {
  .c-homepage-banner__control--mobile {
    display: none;
  }
}
.c-homepage-banner__control--desktop {
  display: none;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__control--desktop {
    display: flex;
  }
}
.c-homepage-banner__icon {
  margin-top: 0.2rem;
}
.c-homepage-banner__icon svg {
  transition: fill 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1rem;
  color: #F0634F;
  fill: #F0634F;
}
.c-homepage-banner__image {
  width: 100%;
  height: 100%;
  position: relative;
}
@media all and (min-width: 991px) {
  .c-homepage-banner__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-homepage-banner__image--thumb::after {
  width: 5rem;
  height: 5rem;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border: 0.3rem solid #FFFFFF;
  border-top: 0.3rem solid #F0634F;
  border-radius: 50%;
  background: transparent;
  animation: c-banner-loader-spin 0.8s linear infinite;
}
.c-homepage-banner__image--thumb::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-homepage-banner__image.is-hidden {
  display: none;
}
.c-homepage-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes c-banner-loader-spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
