@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;400;700&family=Raleway:wght@400;700&display=swap');
* {
  box-sizing: border-box;
}

html {
  font-family: 'Raleway', sans-serif;
  scroll-behavior: smooth;
}

a {
  color: white;
}

a:hover, a:focus {
  opacity: 0.8;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #1A1A1A;
  color: white;
  margin: 0;
  padding: 0;
}

.red-text {
  color: #B30F14;
}

.text-smaller {
  font-size: 85%;
}

.append-both2 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.btn {
  border: 2px solid inherit;
  border-radius: 2px;
  transition: .25s;
  padding-top: .5rem;
  line-height: 1;
}
.mobile .btn {
  font-size: 14pt;
}
.btn:hover {
  box-shadow: 0 0 8px #00000050;
  opacity: 1;
  transition: .25s;
}
.btn.btn-primary {
  background: #5783DB;
  border: 2px solid #5783DB;
}
.btn.btn-primary:hover {
  background: #30487a;
}
.btn.btn-success {
  background: #33B249;
  border: 2px solid #33B249;
}
.btn.btn-success:hover {
  background: #14481d;
}

#pageHeader {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10;
  padding-right: 5px;
}
#mobileNavToggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
#mobileNavToggle svg {
  height: 3rem;
  width: 3rem;
}
.mobile #mobileNavToggle {
  display: block;
}
.mobile #pageHeader {
  height: 4rem;
}

@media only screen and (min-width: 768px) {
  #pageHeader {
    position: fixed;
  }
}

.navbar-brand {
  position: relative;
  height: 100%;
  width: 120px;
  padding: 3px;
}
.navbar-brand img {
  width: 100%;
}
.mobile .navbar-brand img {
  width: unset;
  margin-top: .25rem;
  height: calc(100% - .5rem);
}

#pageHeader a.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 4px 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 12pt;
}
#pageHeader .nav-link.btn-primary {
  border: 2px solid #5783DB;
}
#pageHeader .nav-link span {
  position: relative;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.nav-link.active {
  text-decoration: underline !important;
  pointer-events: none;
}
#mobileNavMain {
  max-width: 85vw;
  background: #B30F14;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
}
#mobileNavMain .offcanvas-body {
  background: #1A1A1A;
  clip-path: polygon(6px 0, 100% 0, 100% 100%, calc(25% + 6px) 100%);
}
#mobileNav {
  padding-left: 1rem;
}
#mobileNavMain button {
  background: none;
  outline: none;
  border: none;
}
#mobileNavMain button svg {
  fill: white;
}
#mobileNav a {
  color: white;
  margin: 1rem 0;
}
#mobileNav a:nth-child(2) {
  padding-left: .35rem;
}
#mobileNav a:nth-child(3) {
  padding-left: .7rem;
}
#mobileNav a:nth-child(4) {
  padding-left: 1.05rem;
}
#mobileNav a:nth-child(5) {
  margin-left: 1.4rem;
}

.page-footer {
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 2rem;
  margin: 0;
  background: #1A1A1A;
}
.page-footer .register-link {
  margin-bottom: 28vh;
}
.mobile .page-footer .register-link {
  margin-bottom: 25vh;
}
.page-footer .gfa-logo {
  width: 12rem;
  margin: auto;
}
.page-footer sup {
  font-size: 9pt;
}
.page-footer img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.footer-social {
  margin-bottom: .5rem;
}
.footer-social svg {
  height: 2.5rem;
  width: 2.5rem;
  margin: 0 .5rem;
}


#mainTabs {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 22rem;
  z-index: 10;
  pointer-events: visiblePainted;
  transition-delay: .25s;
}
.mobile #mainTabs {
  display: none;
}
#mainTabs.active {
  height: 100%;
  width: 100%;
  transition-delay: 0s;
}
#mainTabs .tabs {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#mainTabs .main-tab {
  position: relative;
  display: block;
  transform-origin: bottom center;
  text-align: center;
  white-space: nowrap;
  height: 10rem;
  width: 6rem;
  margin: 2rem 0;
  right: -2rem;
  background: #5783DB;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  border-radius: 2px 0 0 2px;
  border: 2px solid transparent;
  transition: .25s;
}
#mainTabs .main-tab span {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform-origin: center;
  transform: translate(25%, -50%) rotate(-90deg);
  background: inherit;
  padding: .4rem;
}
#mainTabs .main-tab.tab-2 {
  background: #33B249;
  z-index: 2;
}

#mainTabs .main-tab:hover, #mainTabs.active .main-tab.tab-2 {
  cursor: pointer;
  border-color: white;
  color: white;
  right: -2px;
  opacity: 1;
  transition: .25s;
}
#mainTabs.active .main-tab.tab-2 {
  border-left-color: transparent;
  border-radius: 0;
  border-color: transparent;
  box-shadow: none;
}

#mainTabs .tab-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}
#mainTabs.active .tab-backdrop {
  opacity: 50%;
  pointer-events: all;
  transition: .25s;
}

#mainTabs #tabRegisterForm {
  position: absolute;
  height: calc(10rem + 6px);
  bottom: calc(2rem - 4px);
  width: 60rem;
  max-width: 90vw;
  right: 0;
  border: 2px solid transparent;
  transform: translateX(110%);
  background: #33B249;
  padding: 1.5rem;
  overflow: hidden;
  transition: .25s;
}
/*
#mainTabs #tabRegisterForm form {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/
#mainTabs.active #tabRegisterForm {
  transform: translateX(0);
  border-color: white;
  border-right: none;
  right: 0;
  padding-right: 8rem;
  animation-name: showTabForm;
  animation-duration: .25s;
  animation-timing-function: linear;
}
@keyframes showTabForm {
  from { z-index: initial; transform: translateX(110%); }
  to { z-index: initial; transform: translateX(0); }
}
section .content p {
  font-weight: lighter;
  margin-bottom: 4px;
  text-indent: 8px;
  font-size: 14pt;
}
section .content ul {
  margin-bottom: 4px;
}
section .content li {
  font-size: 14pt;
}
.font-title {
  font-family: 'Josefin Sans', sans-serif !important;
}
section.section-end {
  height: fit-content !important;
  padding-bottom: 18vh;
}
.section-title .title {
  position: relative;
  width: 100%;  
}
.section-title .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  border-bottom: 4px solid #B30F14;
}
.section-title h2 {
  font-size: 3vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  text-align: center;
  font-weight: lighter;
}
.mobile .section-title h2 {
  font-size: 5vw;
}

.section-title .sub {
  width: 65%;
  text-align: end;
  padding-right: 1rem;
}
.section-title sub {
  font-size: 11pt;
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: lighter;
}
.mobile .section-title .title::after, .mobile .section-title .sub {
  width: 85%;
}

.section-statements .statement-cont {
  position: relative;
}
@media only screen and (min-width: 768px) {
	.section-statements .statement {
    position: relative;
		width: 100%;
		padding: .5rem ;
		border-radius: 20rem;
		margin-top: 4rem;
		background: #B30F14;
	}
	.section-statements .statement .text {
    padding: 4rem 4rem 4rem 4rem;
		width: fit-content;
		text-align: center;
	}
	
  .section-statements .statement .statement-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-left: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    background: #B30F14;
    transition: .5s;
  }
  .section-statements .statement-cont.animate.reveal .statement-image {
    background: transparent;
    transition: .5s;
    transition-delay: .5s
  }
  .section-statements .statement-cont:not(.animate) .statement-image {
    animation: revealStatementText .5s ease-in 1.5s 1 forwards;
  }
  
	.section-statements .statement .image-cont, .section-statements .statement-cont.animate.reveal .image-cont {
    position: absolute;
		padding: 0;
		border-radius: 50%;
    height: calc(100% - 1rem);
    top: .5rem;
    right: calc(100% - .5rem);
    transform: translateX(100%);
		aspect-ratio: 1/1;
		overflow: hidden;
    transition: 1s;
	}
  .section-statements .statement-cont.animate:not(.reveal) .image-cont {
    right: .5rem;
    transform: translateX(0)
  }
  .section-statements .statement-cont:nth-child(even):not(.animate) .image-cont {
    animation: revealStatementImageLeft 1s ease-out 1s 1 backwards;
  }
  .section-statements .statement-cont:nth-child(odd) .image-cont, .section-statements .statement-cont.animate:nth-child(odd).reveal .image-cont {
    right: unset;
    left: calc(100% - .5rem);
    transform: translateX(-100%);
  }
  .section-statements .statement-cont.animate:nth-child(odd):not(.reveal) .image-cont {
    left: .5rem;
    transform: translateX(0)
  }
  .section-statements .statement-cont:nth-child(odd):not(.animate) .image-cont {
    animation: revealStatementImageRight 1s ease-out 1s 1 backwards;
  }

	.section-statements .statement .image-cont img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		object-position: center;
	}
}

@keyframes revealStatementText {
  from { background: #B30F14 }
  to { background: transparent }
}
@keyframes revealStatementImageRight {
  from { left: 0; transform: translateX(0) }
  to { left: calc(100% - .5rem); transform: translateX(-100%); }
}
@keyframes revealStatementImageLeft {
  from { right: 0; transform: translateX(0) }
  to { right: calc(100% - .5rem); transform: translateX(100%); }
}

@media (min-width: 992px) {
  .section-statements .statement-cont .text {
		padding: 4rem 16rem 4rem 4rem;
	}
  .section-statements .statement-cont:nth-child(even) .text {
		right: 0;
		padding: 4rem 4rem 4rem 16rem;
	}
}

@media only screen and (max-width: 767px) {
	.section-statements .statement {
		margin-top: 2rem;
	}

	.section-statements .image-cont img {
		border-radius: 50%;
		display: block;
		max-width: 50%;
		margin: 10px auto;
	}

}

.section-tri-images {
  position: relative;
  width: 100%;
  aspect-ratio: 16/4;
  border: 4px solid #B30F14;
  margin: auto;
}

.section-tri-images figure {
  position: absolute;
  left: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  width: 37%;
  display: inline-block;
  padding: 0;
  
  z-index: 5;
}
.section-tri-images figure:nth-child(3) {
  width: 53%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B30F14;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
}
.section-tri-images figure:nth-child(3) img {
  clip-path: polygon(6px 0, calc(75% - 6px) 0, calc(100% - 6px) 100%, calc(25% + 6px) 100%);
}

.section-tri-images figure:nth-child(2) {
  left: unset;
  right: 0;
}
.section-tri-images figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hotel-collapse {
  background: #30487a;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition-delay: .35s;
}
.hotel-collapse:not(.collapsed) {
  border-radius: 8px 8px 0 0;
  transition-delay: 0s;
}

#hotels-collapse {
  padding: 1rem;
  padding-top: 2rem;
  background: #30487a;
  border-radius: 0 0 8px 8px;
}
#hotels-collapse img {
  width: 100%;
}
.hotel-collapse p {
  margin: 0;
}
.hotel-collapse svg {
  margin-right: 1rem;
  height: 1.5rem;
  width: 1.5rem;
}
.section-kp-quote {
  position: relative;
  margin-top: 8rem;
}
.section-kp-quote .row::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width:  70%;
  border-bottom: 4px solid #B30F14;
}

.section-kp-quote .quote {
  font-size: 18pt;
}
.section-kp-quote .signed {
  font-size: 18pt;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: lighter;
}

.section-faqs {
  margin-top: 6rem;
}
.section-faqs .accordian-header {
  margin-top: 3rem;
  position: relative;
  padding-bottom: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: lighter;
  font-size: 16pt;
  cursor: pointer;
}
.section-faqs .accordian-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  border-bottom: 1px solid #B30F14;
}

.section-faqs .accordian-button::after {
	content: "";
	transition: 0.3s;
	display: inline-block;
	width: 15px;
	height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EEEEEE' %3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
}

.section-faqs .accordian-button[aria-expanded=true]::after {
	transform: rotate(180deg)
}

.accordian-item {
  text-align: center;
}

/* Index page VVV */
#indexPage.mobile {
  margin-top: 4rem;
}
#indexPage section,
#retreatPage section {
  position: relative;
  width: 100%;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: lighter;
  font-size: 16pt;
  padding-top: 4rem;
  background: #1A1A1A;
  font-weight: lighter;
  overflow: hidden;
}
#indexPage:not(.mobile) section {
  height: 100vh;
  padding-top: 40px;
  padding-right: 8rem;
  font-family: 'Raleway', sans-serif;
}

#retreatPage:not(.mobile) section {
  padding-top: 40px;
  font-family: 'Raleway', sans-serif;
}

#indexPage section .centered-content,
#retreatPage section .centered-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#indexPage section .divider {
  height: 6px;
  background: #B30F14;
  margin: auto;
  /* clip-path: polygon(0 0, 100% 0%, calc(100% - 12px) 100%, 0 20%); */
}
#indexPage section.background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#indexPage section.three-pieces .piece {
  position: relative;
  width: 100vw;
  height: 33.3333%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: unset !important;
}
#indexPage section.background.b1, #indexPage section.three-pieces .piece-1 {
  background-image: url("https://gfamedia.org/images/set-apart/2025/Header1.webp");
}
#indexPage section.background.b2, #indexPage section.three-pieces .piece-2 {
  background-image: url("https://gfamedia.org/images/set-apart/2025/Header2.webp");
}
#indexPage section.background.b3, #indexPage section.three-pieces .piece-3 {
  background-image: url("https://gfamedia.org/images/set-apart/2025/Header3.webp");
  background-position: center 25%;
}

#indexPage section.video-background .video-container {
  position: fixed !important;
  z-index: -1 !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#indexPage.mobile section.video-background {
  top: 0;
  aspect-ratio: 16/9;
}

#indexPage.mobile section.video-background .video-container {
  height: unset;
  top: 4rem;
  aspect-ratio: 16/9;
}
#indexPage section.video-background .video-container video {
  position: absolute;
  height: 110%;
  width: 110%;
  object-fit: cover;
  object-position: center;
  top: -5%;
  left: -5%;
}

#retreatPage section.video-background {
  height: 70vh;
}

#retreatPage section.video-background .video-container {
  position: fixed !important;
  z-index: -1 !important;
  top: 0;
  left: 0;
  height: 70%;
  width: 100%;
}

#retreatPage section.video-background .video-container video {
  position: absolute;
  height: 110%;
  width: 110%;
  object-fit: cover;
  object-position: center;
  top: -5%;
  left: -5%;
}

#indexPage section.video-background svg.scroll-down {
  position: fixed;
  width: 25px;
  bottom: 25px;
  left: calc(50% - 12px);
}

#indexPage .clip, 
#retreatPage .clip {
  position: relative;
  overflow: hidden;
  z-index: -1;
}
#indexPage .clip.video-background {
  z-index: 0;
}
#indexPage .clip .clip-item,
#retreatPage .clip .clip-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0px 0px 0px 0px);
}
#indexPage .clip .clip-obj,
#retreatPage .clip .clip-obj {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 0px;
  margin-bottom: 0px;
}
.mobile #indexPage .clip .clip-obj {
  transform: translate(-50%, -50%);
}
#indexPage:not(.mobile) .clip .clip-obj,
#retreatPage:not(.mobile) .clip .clip-obj {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#indexPage .clip .clip-obj.text,
#retreatPage .clip .clip-obj.text {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 6vw;
  line-height: 1em;
  white-space: nowrap;
}
#indexPage:not(.mobile) .clip .clip-obj:not(.text),
#retreatPage:not(.mobile) .clip .clip-obj:not(.text) {
  max-width: 35%;
  min-width: 18rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#retreatPage:not(.mobile) .clip .clip-obj:not(.text) {
  top: 35%;
}
#indexPage .angled-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0%, 0 100%, 100% 100%);
  background-color: #B30F14;
}
#indexPage .angled-image img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  clip-path: inset(0px 0px 0px 0px);
}
#indexPage .section-quote,
#retreatPage .section-quote {
  display: flex;
  flex-direction: column;
}
#indexPage .section-quote .section-header,
#retreatPage .section-quote .section-header {
  position: relative;
  padding: 4rem 0 0 0;
  margin-bottom: 10vh;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 31pt;
  text-align: right;
  line-height: 1.25;
  font-weight: lighter;
  width: 75vw;
  left: 0;
}
#indexPage .section-quote .section-header .bottom-border {
  height: 6px;
  width: 100%;
  background: #B30F14;
  /* clip-path: polygon(0 0, 100% 0%, calc(100% - 12px) 100%, 2% 10%); */
}
#retreatPage .section-quote .section-header .bottom-border,
#retreatPage .section-day .section-header .bottom-border {
  height: 4px;
  width: 100%;
  background: #B30F14;
  margin-bottom: 4px;
}
#indexPage .bottom-row {
  position: relative;
  flex-grow: 1;
  bottom: 0;
  height: 70vh;
  width: 100%;
}
#indexPage .section-day .bottom-row {
  height: fit-content;
}
#indexPage .section-quote .angled-image {
  position: relative;
  /* left: -8px; */
  clip-path: polygon(0 0, 100% 0%, 60% 100%, 0% 100%);
}
#indexPage .section-quote .angled-image img {
  clip-path: polygon(0 6px, calc(100% - 12px) 6px, calc(60% - 7px) 100%, 0% 100%);
}

#indexPage .section-quote .btn {
  font-size: 14pt;
}

#indexPage .section-form {
  padding-right: 0;
  padding-left: 5vw;
}
#indexPage .section-form .angled-image {
  position: relative;
  right: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 40% 100%);
}
#indexPage .section-form  .angled-image img {
  clip-path: polygon(10px 6px, 100% 6px, 100% 100%, calc(40% + 6px) 100%);
}

#indexPage .section-form .text-update-signup {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-footer form p {
  background: #1A1A1A;
  padding: .5rem;
}
.page-footer form::before {
  content: "";
  display: block;
  position: absolute;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 4px solid #B30F14;
	border-top: 0;
  border-radius: 2px;
  z-index: -1;
}

.section-day {
  height: fit-content !important;
}
#indexPage .section-day {
  padding-right: 4rem;
}
.section-day strong {
  font-weight: bold !important;
}

#indexPage .section-day header,
#retreatPage .section-day header {
  width: 60vw;
  padding-top: 2rem;
  margin-bottom: 5rem;
  margin-left: calc(40vw - 1.1rem);
  text-align: left;
  border-bottom: 4px solid #B30F14;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 31pt;
  line-height: 1.25;
  font-weight: lighter;
}
#indexPage .section-day .scatter-text-animation,
#retreatPage .section-day .scatter-text-animation {
  margin-left: 0; 
  padding: 0;
}
#indexPage .section-day .scatter-text-animation:not(.animate) .focus,
#retreatPage .section-day .scatter-text-animation:not(.animate) .focus {
  left: 0;
  transform: translate(-140%, 100%);
  transition-delay: .5s;
}
#indexPage .section-day .scatter-text-animation.animate .focus,
#retreatPage .section-day .scatter-text-animation.animate .focus {
  left: 0;
  transform: translate(0, 0);
}
#indexPage .section-day .day-left::after,
#retreatPage .section-day .day-left::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% + 3px);
  transform: skew(-10deg);
  height: 100%;
  width: 6px;
  background: #B30F14;
}
#indexPage .section-day .title,
#retreatPage .section-day .title {
  height: fit-content;
}
#indexPage .section-day .details,
#retreatPage .section-day .details {
  position: relative;
  height: fit-content;
}
.mobile .section-details {
  background: #B30F14 !important;
}

#indexPage table.schedule-table tr td:first-child {
  text-align: right;
}

#indexPage .section-day p,
#retreatPage .section-day p {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 4px;
}

.table > :not(caption) > * > * {
  background: transparent;
}

#indexPage section.section-tri-videos {
  padding: calc(40px + 2rem) 0 0 0;
  display: flex;
  flex-direction: column;
}
.mobile section.section-tri-videos {
  flex-direction: row;
  height: fit-content;
}
#indexPage section.section-tri-videos header h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 31pt;
  line-height: 1.25;
  font-weight: lighter;
}
.mobile section.section-tri-videos header h3 {
  font-size: 18pt !important;
}
#indexPage section.section-tri-videos .video-container {
  position: relative;
  margin: 1rem 0 4rem 0;
  border-top: 6px solid #B30F14;
  border-bottom: 6px solid #B30F14;
  border-radius: 2px;
  flex-grow: 1;
  overflow: hidden;
}
.mobile section.section-tri-videos .video-container  {
  height: 65vh;
  border-width: 4px !important;
}

#indexPage section.section-tri-videos .video-main {
  position: absolute;
  left: 0;
  height: 100%;
  width: 33.333333%;
  background: #B30F14;
}
.mobile section.section-tri-videos .video-main {
  position: relative !important;
  width: 100% !important;
  height: 33.3333% !important;
}
#indexPage section.section-tri-videos .video-player {
  background-size: cover;
  transition: .25s;
}

#indexPage section.section-tri-videos .callout {
  position: absolute;
  width: 100%;
  padding: .25rem;
  text-align: center;
  top: calc(50% - 5rem);
  font-size: 28pt;
  font-weight: bold;
  text-decoration: underline;
  background: #00000090;
  transform: translateY(-50%);
  pointer-events: none;
}
.mobile section.section-tri-videos .callout {
  width: fit-content !important;
  padding: .25rem .5rem !important;
  right: 10% !important;
  top: 50% !important;
  background: #00000095 !important;
  border-radius: 2px;
  font-size: 5vw !important;
}
#indexPage section.section-tri-videos .video-main.active .callout {
  opacity: 0;
}
#indexPage section.section-tri-videos .play-video {
  top: calc(50% + 1rem);
}
.mobile section.section-tri-videos .play-video {
  top: 50% !important;
}
.video-cont {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.mobile .section-video {
  height: unset !important;
}
.mobile .section-video .video-cont {
  margin: 0;
  width: 100vw;
}
body:not(.mobile) #indexPage section.section-tri-videos .video-container:not(.playing):hover .video-main:not(.active) .video-cont {
  filter: blur(.2rem);
  transition: .25s;
}

#indexPage section.section-tri-videos .video-main:not(.active) .video-cont:hover {
  filter: blur(0) !important;
  transition: .25s;
}
#indexPage section.section-tri-videos .video-1 {
  width: 36%;
  top: 0;
  z-index: 1;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
  transition: .5s;
}
.mobile section.section-tri-videos .video-1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 36px)) !important;
}
#indexPage section.section-tri-videos .video-1 .video-cont {
  clip-path: polygon(0 0, calc(75% - 6px) 0, calc(100% - 6px) 100%, 0 100%);
}
.mobile #indexPage section.section-tri-videos .video-1 .video-cont {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4px), 0 calc(100% - 40px));
}
#indexPage section.section-tri-videos .video-2 {
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.mobile section.section-tri-videos .video-2 {
  height: calc(33.3333% + 36px) !important;
  top: -36px;
}
#indexPage section.section-tri-videos .video-3 {
  left: unset;
  right: 0;
  width: 36%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
  z-index: 2;
  transition: .5s;
}
.mobile #indexPage section.section-tri-videos .video-3 {
  clip-path: polygon(0 0, 100% 36px, 100% 100%, 0 100%) !important;
  height: calc(33.3333% + 72px) !important;
  top: -72px;
}
#indexPage section.section-tri-videos .video-3 .video-cont {
  clip-path: polygon(6px 0, 100% 0, 100% 100%, calc(25% + 6px) 100%);
}
.mobile #indexPage section.section-tri-videos .video-3 .video-cont {
  clip-path: polygon(0 4px, 100% 40px, 100% 100%, 0 100%);
}
#indexPage section.section-tri-videos .video-2.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  transition: .5s;
}
#indexPage section.section-tri-videos .video-2.active ~ .video-main {
  width: 0;
  transition: .5s;
}
#indexPage section.section-tri-videos .video-1.active, #indexPage section.section-tri-videos .video-3.active {
  width: 100%;
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: .5s;
}
#indexPage section.section-tri-videos .video-1.active .video-cont, #indexPage section.section-tri-videos .video-3.active .video-cont {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: .5s;
}
#indexPage section.section-end header,
#retreatPage section.section-end header {
  width: 60vw;
  padding-top: 2rem;
  margin-bottom: 5rem;
  margin-right: calc(40vw - 1.1rem);
  text-align: right;
  border-bottom: 4px solid #B30F14;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 31pt;
  line-height: 1.25;
  font-weight: lighter;
}
.mobile section.section-end header {
  font-size: 16pt !important;
  width: 100% !important;
  border: none !important;
  margin: 0 !important;
  
}
#indexPage section.section-end .scatter-text-animation:not(.animate) .focus,
#retreatPage section.section-end .scatter-text-animation:not(.animate) .focus {
  transform: translate(-225%, 100%);
}
#indexPage section.section-end .register-link {
  position: absolute;
  top: calc(50% + 8rem);
  left: 50%;
  transform: translate(-50%, -50%);
}
.mobile section.section-end .register-link {
  top: calc(50% + 4rem) !important;
}
#indexPage section.section-end .register-link p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 12pt;
}
#indexPage section.section-end .register-link a {
  padding: .5rem 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14pt;
  font-weight: lighter;
}
.mobile section.section-accordians .accordion-header button {
  text-align: center;
  width: 100%;
  padding: 1.75rem .5rem 1.5rem .5rem;
  background: #B30F14;
  border-color: transparent;
}
.mobile section.section-accordians .accordion-header button::after {
  background: none !important;
}
.mobile section.section-accordians .accordion-header button:hover {
  box-shadow: none;
}
.mobile section.section-accordians .accordion-collapse {
  background: #B30F14;
  padding: .5rem 1.5rem 1.5rem 1.5rem;
  font-weight: 400 !important;
}
.mobile section.section-accordians .accordion-header button svg {
  position: absolute;
  top: calc(50% - 1rem);
  right: 2rem;
  height: 2rem;
  width: 2rem;
  transform-origin: 50% 50%;
  transition: .25s;
}
.mobile section.section-accordians .accordion-header button.collapsed svg {
  rotate: -180deg;
  transition: .25s;
}
/* Index Page ^^ */

/* VVV Form Content VVV */

input {
  width: 100%;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  outline: none;
  border: none;
  padding: .5rem;
  height: 2.5rem;
}

/* ^^^ Form Content ^^^ */


/* VVV Scattering Text Animation VVV */
.scatter-text-animation {
  position: relative;
  margin-left: auto;
  width: fit-content;
  right: 0;
}
.scatter-text-animation span {
  position: relative;
  display: inline-block;
  transition: 1s;
  opacity: 0;
}
.scatter-text-animation span:not(.focus) {
  transform: translate(0, -200%);
}

.scatter-text-animation:not(.animate) span.focus {
  position: relative;
  opacity: 1;
  white-space: nowrap;
  width: fit-content;
  left: 100%;
  transform: translateX(-100%);
  transition: 1s;
}
.scatter-text-animation .after {
  display: inline-block;
}
.scatter-text-animation .after span {
  transform: translate(0, 200%);
}

.scatter-text-animation.animate span.focus, .scatter-text-animation span.focus {
  left: 0;
  transform: translateX(0);
  opacity: 1;
  transition: 1s;
}
.scatter-text-animation:not(.animate) span.focus {
  transition-delay: .35s;
}
.scatter-text-animation.animate span:not(.focus) {
  transform: translate(0, 0);
  opacity: 1;
  transition: .75s;
}

.scatter-text-animation:not(.animate) span:not(.focus):nth-child(1) {
  transition-delay: 0s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(2) {
  transition-delay: .1s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(3) {
  transition-delay: .2s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(4) {
  transition-delay: .3s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(5) {
  transition-delay: .4s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(6) {
  transition-delay: .5s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(7) {
  transition-delay: .6s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(8) {
  transition-delay: .7s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(9) {
  transition-delay: .8s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(10) {
  transition-delay: .9s;
}
.scatter-text-animation:not(.animate) span:not(.focus):nth-child(11) {
  transition-delay: 1s;
}

.scatter-text-animation.animate span:not(.focus):nth-child(1) {
  transition-delay: 1s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(2) {
  transition-delay: .9s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(3) {
  transition-delay: .8s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(4) {
  transition-delay: .7s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(5) {
  transition-delay: .6s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(6) {
  transition-delay: .5s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(7) {
  transition-delay: .4s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(8) {
  transition-delay: .3s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(9) {
  transition-delay: .2s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(10) {
  transition-delay: .1s;
}
.scatter-text-animation.animate span:not(.focus):nth-child(11) {
  transition-delay: 0s;
}

.scatter-text-animation:not(.animate) .after span {
  transition-delay: 1s;
}

.scatter-text-animation:not(.animate) .after span:nth-child(1) {
  transition-delay: 0s;
}
.scatter-text-animation:not(.animate) .after span:nth-child(2) {
  transition-delay: .2s;
}
.scatter-text-animation:not(.animate) .after span:nth-child(3) {
  transition-delay: .4s;
}
.scatter-text-animation:not(.animate) .after span:nth-child(4) {
  transition-delay: .6s;
}
.scatter-text-animation:not(.animate) .after span:nth-child(5) {
  transition-delay: .8s;
}

.scatter-text-animation.animate .after span:nth-child(1) {
  transition-delay: .8s;
}
.scatter-text-animation.animate .after span:nth-child(2) {
  transition-delay: .6s;
}
.scatter-text-animation.animate .after span:nth-child(3) {
  transition-delay: .4s;
}
.scatter-text-animation.animate .after span:nth-child(4) {
  transition-delay: .2s;
}
.scatter-text-animation.animate .after span:nth-child(5) {
  transition-delay: 0s;
}

/* ^^^ Scattering Text Animation ^^^ */

/* VVV Video Player VVV */
section.section-video {
  height: 80vh !important;
  aspect-ratio: 16/9;
  margin: auto;
}
.mobile .section-video {
  height: unset;
  width: 100%;
}
.section-video .video-cont {
  width: 80%;
  margin: auto;
}
.video-player {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
  
#indexPage.mobile section.section-video {
  aspect-ratio: 16/9;
}

#indexPage section.section-video .video-player {
  top: 40px;
  height: calc(100% - 40px);
  opacity: .8;
}
section.section-video .callout {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2vw;
  text-decoration: underline;
  font-family: 'Raleway', sans-serif;
  font-weight: initial;
  padding: 1rem 6rem;
  width: 100%;
  border-radius: 2px;
  pointer-events: none;
  text-align: center;
  transition: .25s;
}
.mobile .section-video .callout {
  /* top: 2rem; */
  transform: translate(-50%, calc(50% - 3rem));
  width: 100%;
  padding: 0;
  font-size: 5vw;
  text-shadow: 0 0 8px black;
}
.active .callout {
  opacity: 0;
  transition: .25s;
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 6rem;
  width: 6rem;
  background: #00000050;
  border: 4px solid white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 4px black;
  transition: .25s;
}
.play-video::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-25%, -50%);
  height: 0;
  width: 0;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  border-left: 1.5rem solid white;
}
.mobile .play-video {
  height: 3rem;
  width: 3rem;
  border-width: 2px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.mobile .section-video .play-video {
  transform: translate(-50%, calc(-50% + 2rem));
}
.mobile .play-video::after {
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  border-left: .5rem solid white;
}
.play-video:hover {
  background: #00000090;
  box-shadow: 0 0 8px black;
  transition: .25s;
}
section.section-video iframe {
  height: 85% !important;
  width: 85%;
  position: relative;
  top: calc(50% + 20px) !important;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  border: 4px solid #B30F14;
}
/* ^^^  Video Player ^^^ */

/* VIDEOS PAGE/VIDEO GRID */

@media (max-width: 767px) {
  .video-grid-main {
    position: relative;
  }
  .stop-video {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    background: #00000075;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }
  .stop-video svg {
    display: none;
  }
  .video-grid-main .video-player {
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid #B30F14;
  }
  .video-grid-main.playing {
    z-index: 100;
  }
  .video-grid-video.active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 10;
  }
  .video-grid-main.playing .stop-video {
    pointer-events: all;
    opacity: 1;
    cursor: pointer;
    transition: .3s;
  }
}

@media (min-width: 768px) {
  .video-grid-main {
    position: relative;
    background: #B30F14 !important;
    aspect-ratio: 16/9;
  }
  .stop-video {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    width: fit-content;
    height: fit-content;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }
  .stop-video svg {
    display: block;
  }
  .video-grid-video {
    padding: 0;
    width: 33.333333%;
    border: 3px solid #B30F14;
    aspect-ratio: 16/9;
    background: blue;
    box-shadow: inset 0 0 3px yellow;
    transition: .3s;
  }
  .video-grid-main.playing .stop-video {
    pointer-events: all;
    opacity: 1;
    cursor: pointer;
    transition: .3s;
  }
  .video-grid-main:not(.playing):hover .video-player {
    filter: blur(.05rem);
    transition: .3s;
  }
  .video-grid-video:hover .video-player {
    filter: blur(0rem) !important;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(2) {
    position: absolute;
    top: 0;
    left: 33.333333%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(3) {
    position: absolute;
    top: 0;
    left: 66.666666%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(4) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(5) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 33.333333%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(6) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 66.666666%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(7) {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(8) {
    position: absolute;
    bottom: 0;
    left: 33.333333%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video:nth-child(9) {
    position: absolute;
    bottom: 0;
    left: 66.666666%;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video.active {
    width: 100%;
    left: 0;
    transform: translate(0);
    z-index: 9;
    transition: .3s;
  }
  .video-grid-main.animate .video-grid-video.active:nth-child(4),
  .video-grid-main.animate .video-grid-video.active:nth-child(5),
  .video-grid-main.animate .video-grid-video.active:nth-child(6) {
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ^^^ VIDEOS PAGE/VIDEO GRID ^^^ */
