@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-page-banner {
  margin-bottom: 4rem;
  background: #EDE9E4;
}
.c-page-banner__inner {
  display: flex;
  padding-bottom: 3rem;
  gap: 4rem;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (min-width: 991px) {
  .c-page-banner__inner {
    padding-bottom: 0;
    gap: 8rem;
    flex-direction: row;
  }
}
.c-page-banner__content {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (min-width: 991px) {
  .c-page-banner__content {
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.c-page-banner__title {
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  font-size: 3rem;
  font-family: "Solway", Gotham, Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}
@media all and (min-width: 768px) {
  .c-page-banner__title {
    font-size: 3rem;
  }
}
@media all and (min-width: 1280px) {
  .c-page-banner__title {
    font-size: 4rem;
  }
}
@media all and (min-width: 991px) {
  .c-page-banner__title {
    margin-top: 4rem;
  }
}
.c-page-banner__summary {
  margin: 0;
}
.c-page-banner__share {
  display: none;
  margin-left: unset;
}
@media all and (min-width: 768px) {
  .c-page-banner__share {
    display: block;
  }
}
.c-page-banner__share .f-nav__social-link {
  background: #FFFFFF;
}
.c-page-banner__share .f-nav__social-link:hover .e-icon {
  fill: #F0634F;
}
.c-page-banner__image {
  display: flex;
  align-items: center;
}
.c-page-banner__image.is-hidden {
  display: none;
}
.c-page-banner__image--thumb {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
}
.c-page-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-page-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;
}
@media all and (min-width: 991px) {
  .c-page-banner__image {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.c-page-banner__image img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.1);
}
@media all and (min-width: 991px) {
  .c-page-banner__image img {
    max-width: 78rem;
  }
}
.c-banner-video {
  display: flex;
  align-items: center;
  position: relative;
  aspect-ratio: 1.85714286;
  border-radius: 1.2rem;
  box-shadow: 0 0.2rem 2rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media all and (min-width: 991px) {
  .c-banner-video {
    width: 100%;
    max-width: 78rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-self: center;
  }
}
.c-banner-video__frame {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
  transform: scale(1.2);
  transform-origin: center;
  background-color: transparent;
}
@media all and (min-width: 991px) {
  .c-banner-video__frame {
    transform: scale(1.06);
  }
}
.c-banner-video__toggle {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 4;
  background: #FFFFFF;
  border: 0.2rem solid #F0634F;
  border-radius: 50%;
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.c-banner-video__toggle:hover {
  background: #F0634F;
}
.c-banner-video__toggle:hover svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}
.c-banner-video__icon {
  margin-top: 0.3rem;
}
.c-banner-video__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;
}
@keyframes c-banner-loader-spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
