/* Hope for America Style Guide Implementation */
:root {
    /* Main Colors from Style Guide */
    --color-off-white: #F5F5DC;
    --color-medium-blue: #4A90E2;
    --color-dark-blue: #1D2838;
    --color-bright-orange: #de5426;
    --color-light-gray: #E0E0E0;
    --color-bright-cyan: #00BFFF;
    --color-vibrant-red: #DC143C;
}

html, 
body {
	overflow-x: hidden;
	margin: 0;
	scroll-behavior: smooth;
}

body a {
	text-decoration: none;
}

.crusade-utah-2025-section {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/* Distressed/Torn Paper Background Effect */
.crusade-utah-2025-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,0,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,0,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Typography Scale from Style Guide */
.crusade-utah-2025-section h1 {
    font-size: 72px !important; /* Primary Titles - Very Large */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.9;
}

.crusade-utah-2025-section h2 {
    font-size: 56px !important; /* Secondary Titles */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.85;
    text-align: center !important;
}

.crusade-utah-2025-section h3 {
    font-size: 24px !important; /* Small Titles */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.crusade-utah-2025-section p,
.crusade-utah-2025-section .body-copy {
    font-size: 16px !important; /* Body Copy */
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Poppins-Medium';
}

.crusade-utah-2025-section h1, 
.crusade-utah-2025-section h2, 
.crusade-utah-2025-section h3, 
.crusade-utah-2025-section h4, 
.crusade-utah-2025-section h5, 
.crusade-utah-2025-section h6 {
	font-family: 'Oswald-SemiBold';
}

.crusade-utah-2025-section h1.alternate-title, 
.crusade-utah-2025-section h2.alternate-title, 
.crusade-utah-2025-section h3.alternate-title, 
.crusade-utah-2025-section h4.alternate-title, 
.crusade-utah-2025-section h5.alternate-title, 
.crusade-utah-2025-section h6.alternate-title {
	font-family: 'Brice-BoldSemiExpanded';
	font-weight: 600;
}

/* Button Styling */
.crusade-utah-2025-section .button {
    min-width: 150px;
    background-color: var(--color-medium-blue) !important;
    padding: 12px 30px;
    color: var(--color-off-white) !important;
    font-size: 24px;
    line-height: 27px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
	text-align: center;
}

.crusade-utah-2025-section .button:hover {
    background-color: var(--color-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.crusade-utah-2025-section .special-guests-button {
    min-width: 150px;
    background-color: var(--color-medium-blue);
    padding: 12px 30px;
    color: var(--color-off-white);
    font-size: 24px;
    line-height: 1.125;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    display: table;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.crusade-utah-2025-section .special-guests-button:hover {
    background-color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@-webkit-keyframes pulsate {
    0%   { box-shadow: 0 0 0 var(--color-vibrant-red); }
    25%  { box-shadow: 0 0 10px var(--color-vibrant-red); }
    50%  { box-shadow: 0 0 20px var(--color-vibrant-red); }
    75%  { box-shadow: 0 0 30px var(--color-vibrant-red); }
    100% { box-shadow: 0 0 40px var(--color-vibrant-red); }
}


.crusade-utah-2025-section.crusade-hero-banner {
	background: linear-gradient(135deg, var(--color-medium-blue) 0%, var(--color-dark-blue) 50%, var(--color-bright-orange) 100%);
	min-height: 65vh;
    display: flex;
    justify-content: center;
    background-image: url('../images/utahSiteHeader.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

.crusade-utah-2025-section .crusade-hero-icon-link {
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: 99;
}

.crusade-utah-2025-section .menu-burger {
	width: 60px;
	height: 45px;
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 223;
	color: #fff;
	cursor: pointer;

	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	cursor: pointer;

}

.crusade-utah-2025-section .menu-burger span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #FFF;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.crusade-utah-2025-section .menu-burger span:nth-child(1) {
  top: 0px;
}

.crusade-utah-2025-section .menu-burger span:nth-child(2),.crusade-utah-2025-section .menu-burger span:nth-child(3) {
  top: 18px;
}

.crusade-utah-2025-section .menu-burger span:nth-child(4) {
  top: 36px;
}

.crusade-utah-2025-section .menu-burger.menu-open {
  position: fixed;
}

.crusade-utah-2025-section .menu-burger.menu-open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.crusade-utah-2025-section .menu-burger.menu-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.crusade-utah-2025-section .menu-burger.menu-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.crusade-utah-2025-section .menu-burger.menu-open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.crusade-utah-2025-section .menu-outter-container {
	position: fixed;
	top: 0;
	right: -130%;
	min-width: 315px;
	width: 30%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 25px;
	z-index: 222;
	transition: right 0.4s linear 
}

.crusade-utah-2025-section .menu-outter-container .menu-container ul {
    list-style: none;
}

.crusade-utah-2025-section .menu-outter-container .menu-container ul li {
    margin-bottom: 20px;
}

.crusade-utah-2025-section .menu-outter-container .menu-container ul li a {
    font-size: 21px;
    line-height: 27px;
    font-family: 'Oswald-SemiBold';
    text-transform: uppercase;
    color: #fff;
}

.crusade-utah-2025-section .menu-outter-container .menu-container ul li a:hover {
    text-decoration: underline;    
    text-underline-offset: 5px;
}

.crusade-utah-2025-section .menu-outter-container.menu-open {
	right: 0%;
}

.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-left {
	position: absolute;
	bottom: 0;
	left: -40px;
	z-index: 1;
	max-width: 500px;
}

.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-wrapper {
	position: relative;
	max-width: 980px;
	width: 100%;
	text-align: center;
	z-index: 9;    
	display: flex	;
	align-items: end;
	justify-content: flex-start;
}

.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-wrapper .crusade-hero-logo-img {
	width: 100%;
	margin-bottom: 30px;
}

.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-right {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	max-width: 660px;
}

.crusade-utah-2025-section.crusade-hero-banner .animation-container {
	overflow: hidden;
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 100%;
	z-index: 3;
}

.crusade-utah-2025-section.crusade-hero-banner .text {
	white-space: nowrap;
	font-family: 'Poppins-Medium';
	color: var(--color-off-white);
	font-size: 19px;
	line-height: 27px;
	animation: slide-right 30s linear infinite; /* Adjust animation duration as needed */
}

@keyframes slide-right {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-150%);
	}
}

.crusade-utah-2025-section.crusade-video-section {
	background: var(--color-dark-blue);
	min-height: 750px;
	z-index: 4;
    /* background-image: url('../images/video-section-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center; */
	position: relative;
}

.crusade-utah-2025-section.crusade-video-section .lost-one-img{
    position: absolute;
    right: 120px;
    top: -150px;
    max-width: 320px;
    width: 100%;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper {
	max-width: 1290px;
	margin: 0 auto;
	padding: 135px 0;
}

.crusade-utah-2025-section.get-involved-section {
	background-image: url('../images/harvest-crusade-utah-bg-flag.jpg');
    background-size: cover;
    background-position-x: right;
}

.crusade-utah-2025-section.get-involved-section .get-involved-title {
	color: var(--color-off-white);
    text-shadow: 2px 2px black;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row {
	display: flex;
	flex-direction: row;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 {
	width: 65.5%;
	margin-right: 30px;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 {
	width: calc(34.5% - 30px);
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2 .title, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 .title {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2 p, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 p {
	margin-bottom: 30px;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2 .button, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 .button {
	margin-bottom: 15px;
}

.crusade-utah-2025-section.event-details-section {
	background-color: var(--color-off-white);
	position: relative;
}	



.crusade-utah-2025-section.event-details-section .event-details-section-wrapper {
	max-width: 1290px;
	margin: 0 auto;
	padding: 40px 0;
	z-index: 9;
}

.crusade-utah-2025-section.special-guests-section {
	background-color: var(--color-off-white);
	position: relative;
	
	background-image: url('../images/harvest-crusade-utah-bg-orange.jpg');
	background-size: cover;
	background-position: center;
}

/* .crusade-utah-2025-section.special-guests-section:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url('../images/special-guest-left.png');
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
} */

.crusade-utah-2025-section.get-involved-section {
	background-color: var(--color-off-white);
}

.crusade-utah-2025-section.get-involved-section .get-involved-section-wrapper {
	max-width: 1290px;
    margin: 0 auto;
    padding: 135px 0;
}

.crusade-utah-2025-section.get-involved-section #get-involved-content-section {
	background-image: url('../images/blue-pattern-big.jpg');
    background-size: 60px;
    background-repeat: repeat;
    position: relative;
    border: 16px solid #E0E0E0;
}

.crusade-utah-2025-section.get-involved-section #get-involved-content-section:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(29,40,56, 0.8);
}

.crusade-utah-2025-section.get-involved-section #get-involved-content-section .role {
    z-index: 9;
    position: relative;
    margin-bottom: 20px;
}

.crusade-utah-2025-section.get-involved-section #get-involved-content-section .role h3, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .role p {
    color: var(--color-off-white);
}

.crusade-utah-2025-section.get-involved-section #get-involved-content-section .role .button {
    margin-left: 0 !important;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper {
	max-width: 1290px;
	margin: 0 auto;
	padding: 120px 0;
	z-index: 9;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row {
	display: flex;
	flex-direction: row;
	z-index: 9;
    position: relative;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 {
	width: 50%;
	margin-right: 50px;
	display: none;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 h2 {
	font-size: 100px;
	line-height: 1.2;
	padding-left: 100px;
	margin-block: unset;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .sticky {
    position: fixed;
    top: 0;
    z-index: 1000; /* Ensure it's above other content */
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .sticky-bottom {
    position: absolute;
    bottom: 0;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 h2 span {
	font-size: 48px;
	line-height: 1.2;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .section-column-2 {
	position: relative;
	z-index: 9;
	width: calc(100%);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .section-column-2 .guest-card:after {
	background: var(--color-vibrant-red);
	background: linear-gradient(0deg, rgba(220,20,60,0.9) 0%, rgba(220,20,60,0.6) 20%, rgba(255,107,53,0) 90%);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 5;
	opacity: 0;
	transition: opacity ease-in 0.3s;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .section-column-2 .guest-card:hover:after {
	opacity: 0;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card {
	background-color: var(--color-dark-blue);
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	min-height: 480px;
    overflow: hidden;
	background-position: right top;
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 20px;
	width: 30%;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card:hover {
	background-color: var(--color-bright-orange);
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-1 {
	background-image: url('../images/chris-tomlin.png');
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-2 {
	background-image: url('../images/phil-wickham.png');
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-3 {
	background-image: url('../images/brooke-ligertwood.png');
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-4 {
	background-image: url('../images/harvest-worship.png');
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4 {
	font-size: 44px;
	line-height: 1.2;
	color: var(--color-dark-blue);
	padding-left: 30px;	
	z-index: 2;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-1 h4 {
	padding-left: 85px;	
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-2 h4 {
	padding-left: 55px;	
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-3 h4 {
	padding-left: 45px;	
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card.guest-4 h4 {
	padding-left: 45px;	
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4 span {
	background-image: url('../images/name-background.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	padding: 5px 10px;
	display: inline-block;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4 span.guest-first-name {
	z-index: 1;
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4 span.guest-last-name {
	z-index: 2;
	transform: rotate(-14deg);
}

.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card img {
    z-index: 1;
    position: absolute;
    right: 0;
    top: 0;
}



.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-description {
	width: calc(70% - 20px);
	display: flex;
	align-content: center;
    flex-wrap: wrap;
}
.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-description p {
	color: var(--color-off-white);
	font-size: 22px !important;
	line-height: 1.2;
	text-align: center;
	text-align: left;
}

.crusade-utah-2025-section.special-guests-section .jesus-loves-you {
	position: absolute;
	left: 50px;
	bottom: -40px;
	z-index: 2;
}

.crusade-utah-2025-section.cta-section {
	background-color: var(--color-bright-orange);
	min-height: 650px;
	z-index: 1;
    background-image: url('../images/cta-section.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper {
	max-width: 1250px;
	padding: 55px 0 80px 0;	
	margin: 0 auto;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .section-title {
	font-size: 48px;
	line-height: 1.2;
	text-align: center;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .section-subtitle {
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container{
	display: flex;
	flex-direction: row;	
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta {
	width: calc(33.33% - 36.66px);
	margin-right: 55px;	
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta:last-of-type {
	margin-right: 0;	
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta img {
	width: 100%;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container {
	display: inline-block;
	z-index: 2;
	padding-left: 10px;
	padding-right: 10px;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container h3 {
	text-align: center;
	font-size: 44px;
	line-height: 1.2;
	color: var(--color-dark-blue);	
	z-index: 2;
	background-image: url('../images/name-background.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	padding: 5px 20px;
	width: fit-content;
    margin: -20px auto 20px;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container .cta-link {
	font-size: 21px;
	line-height: 27px;
	font-family: 'Oswald-SemiBold';
	color: var(--color-off-white);
	position: relative;
	display: inline;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container .cta-link:after {
	
	content: '';
	position: absolute;
	right: -30px;
	top: 5px;
	height: 21px;
	width: 21px;
	background-image: url('../images/arrow.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
	transition: right ease-in 0.2s;
}

.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .cta-link-wrapper:hover .text-container .cta-link:after {
	right: -36px;
}

.crusade-utah-2025-section.contact-section {
	background: linear-gradient(135deg, var(--color-vibrant-red) 0%, var(--color-bright-orange) 100%);
	min-height: 500px;
	z-index: 1;
    /* background-image: url('../images/contact-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center; */
	padding: 80px 0;
	position: relative;
}

.crusade-utah-2025-section.contact-section::after {
	content: '';
	content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(29,40,56, 0.4);
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper {
	max-width: 625px;
	margin: 0 auto;
	padding: 40px 35px 50px;	
	background-color: var(--color-dark-blue);
	position: relative;
	z-index: 2;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper h2 {
	text-align: center;
	max-width: 495px;
	margin: 0 auto;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper>p {
	text-align: center;
	max-width: 495px;
	margin: 0 auto;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form label {
	display: block;
    font-family: 'Oswald-SemiBold';
    color: #FF6B35;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form input {
    width: 100%;
    font-size: 22px;
    line-height: 1.2;
    padding: 5px 15px !important;
    margin-bottom: 15px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form input.button {
    border: 0;
    width: fit-content;
    margin: 0 auto;
    display: block;
    padding: 12px 30px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form input[type=submit] {
	min-width: 150px;
	background-color: var(--color-vibrant-red);
	padding: 12px 30px !important;
	color: var(--color-off-white);
	font-size: 24px;
	line-height: 27px;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	font-family: 'Poppins-Medium';
	cursor: pointer;
    border: 0;
    width: fit-content;
    margin: 20px auto 10px;
    display: block;
    padding: 12px 30px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form input[type=submit]:hover {
    animation: pulsate 1s ease-out infinite;
	background-color: rgba(0, 0, 0, 0.4);
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form ul.multi-container {
    list-style: none;
    padding-left: 0;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form ul.multi-container li label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form ul.multi-container li label input {
    width: fit-content;
    margin: 10px 20px 10px 0;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form ul.multi-container li label span {
    margin-top: 10px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form .rc-anchor {
    margin-bottom: 20px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper form .wpcf7-not-valid-tip,
.crusade-utah-2025-section.contact-section .contact-section-wrapper form .wpcf7-response-output {
    font-family: 'Poppins-Medium';
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    margin-top: -5px;
    display: block;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper .wpcf7 .screen-reader-response p {
    font-size: 14px;
    line-height: 20px;
}

.crusade-utah-2025-section.contact-section .contact-section-wrapper .wpcf7 .screen-reader-response ul li::marker {
  color: #fff;
} 

.crusade-utah-2025-section.contact-section .contact-section-wrapper .wpcf7 .screen-reader-response ul li, 
.crusade-utah-2025-section.contact-section .contact-section-wrapper .wpcf7 .screen-reader-response ul li a {
    font-family: 'Poppins-Medium';
    color: #fff;
    font-size: 12px;
    line-height: 18px;
}

.crusade-utah-2025-section.contact-section h3 {
	text-align: center;
	max-width: 495px;
	margin: 20px auto 10px;
    font-size: 35px;
    line-height: 1.2;
}

.crusade-utah-2025-section.contact-section .social-media-container {
	text-align: center;
	margin: 10px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.crusade-utah-2025-section.contact-section .social-media-container .social-media-item {
	width: 30px;
	height: 30px;
	padding: 5px;
	margin-right: 10px;
}

.crusade-utah-2025-section.contact-section .social-media-container .social-media-item:hover {
	width: 32px;
	height: 32px;
	padding: 4px;
}

.crusade-utah-2025-section.contact-section .social-media-container .social-media-item img {
	max-width: 30px;
	max-height: 30px;
}

.crusade-utah-2025-section.contact-section .social-media-container .social-media-item a:hover img {
	max-width: 32px;
	max-height: 32px;
}

.crusade-utah-2025-section.social-share-section #media-downloads-social h3 {
	color: #fff;
    font-size: 28px !important;
	margin-top: 0;
}

.crusade-utah-2025-section.social-share-section #media-downloads-documents h3 {
	color: #fff;
	margin-block-start: 0;
	margin-block-end: 0;
}

.crusade-utah-2025-section.social-share-section #media-downloads-documents p {
	color: #fff;
}

.crusade-utah-2025-section.social-share-section {	
	background-image: url('../images/orange-pattern-big.jpg');
	background-size: 60px;
	background-repeat: repeat;
}

.crusade-utah-2025-section.social-share-section .container.large.full-width {
	margin-bottom: 40px;
}

.crusade-utah-2025-section.social-share-section .page-content {
    max-width: 1290px !important;
    margin: 0 auto;
    padding: 40px;
}

.crusade-utah-2025-section.social-share-section .quotes-container {
	padding: 0 8px 24px 0;
}

.crusade-utah-2025-section.social-share-section .card .social-preview {
    margin-bottom: 20px;
}

.crusade-utah-2025-section.social-share-section .card .social-preview img {
    max-width: 320px;
}

.crusade-utah-2025-section.social-share-section .card .media-link .button {
	display: block;
    margin-top: 16px;
    margin-bottom: 0;
}

.crusade-utah-2025-section.social-share-section .previous-page .button--icon, 
.crusade-utah-2025-section.social-share-section .next-page .button--icon {
	color: var(--color-off-white);
}

.crusade-utah-2025-section.footer-section  {
    background-color: var(--color-dark-blue);
    position: relative;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .row .col {
    align-content: center;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .row .col1 {
    width: calc(20% - 20px);
    margin-right: 30px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .row .col2 {
    width: calc(60% - 20px);
    margin-right: 30px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .row .col3 {
    width: calc(20% - 20px);
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .footer-logo {
    max-width: 220px;
    width: 100%;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .social-media-container {
	text-align: center;
	margin: 10px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .social-media-container .social-media-item {
	width: 30px;
	height: 30px;
	padding: 5px;
	margin-right: 10px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .social-media-container .social-media-item:hover {
	width: 32px;
	height: 32px;
	padding: 4px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .social-media-container .social-media-item img {
	max-width: 30px;
	max-height: 30px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .social-media-container .social-media-item a:hover img {
	max-width: 32px;
	max-height: 32px;
}

.crusade-utah-2025-section.footer-section .footer-section-wrapper .copyright-text {
    font-size: 16px;
}

/* Text Color Updates for Different Sections */
.crusade-utah-2025-section.special-guests-section h2,
.crusade-utah-2025-section.special-guests-section h3,
.crusade-utah-2025-section.special-guests-section p {
    color: var(--color-off-white);
}

.crusade-utah-2025-section.crusade-video-section h2,
.crusade-utah-2025-section.crusade-video-section p {
    color: var(--color-off-white);
}

.crusade-utah-2025-section.cta-section h2,
.crusade-utah-2025-section.cta-section h3,
.crusade-utah-2025-section.cta-section p {
    color: var(--color-off-white);
}

.crusade-utah-2025-section.contact-section h2,
.crusade-utah-2025-section.contact-section h3,
.crusade-utah-2025-section.contact-section p {
    color: var(--color-off-white);
}

.crusade-utah-2025-section.footer-section p {
    color: var(--color-off-white);
}

/* Time of event style */
.crusade-utah-2025-section-time h1 {
    font-size: 50px !important;
    margin-bottom: 30px !important;
    margin-top: -20px !important;
    color: var(--color-off-white);
}

/* FAQ Section Styles */
.outside {
    background: var(--color-medium-blue);
    border-top: 1px solid var(--color-off-white);
    width: 100%;
    display: block;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.outside:hover {
    background: var(--color-bright-cyan);
	cursor: pointer;
}

.answer {
    position: relative;
    z-index: 99;
    background: var(--color-off-white);
    padding: 15px;
    border: 1px solid var(--color-light-gray);
}

.answer p {
    color: var(--color-dark-blue) !important;
	word-break: break-word;
}

#faqs h2 {
    margin: 40px 0 5px !important;
    display: block;
}

.inside h3 {
    font-size: 24px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: var(--color-off-white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inside .answer {
    display: none;
	cursor: default;
}

.chevron {
    font-size: 16px;
    transition: transform 0.2s;
}

.rotate {
    transform: rotate(180deg);
}

/* Event Details Section Styles */
.event-details {
    padding: 0;
}

#general-info a {
    text-decoration: underline;
    color: var(--color-off-white);
}

/* Prayers Form Section */
.crusade-utah-2025-section.prayers-form-section {
    background: linear-gradient(to bottom, var(--color-dark-blue) 25%, var(--color-medium-blue) 75%) !important;
    min-height: 500px !important;
    z-index: 1 !important;
    position: relative;
}

.crusade-utah-2025-section.prayers-form-section h3 {
    text-align: left !important;
    margin: 0 !important;
    padding-top: 20px;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper {
    max-width: 1290px !important;
}

section.section.bg-white .page-content {
    max-width: 1180px !important;
    margin: auto !important;
    background-color: var(--color-dark-blue) !important;
}

/* Utility Classes */
.hide {
    display: none;
}

#popdown {
    display: none !important;
}

body #page {
    margin-top: 0;
}

.dsNoHover {
    pointer-events: none;
}

.crusade-subpage-wrapper {
    text-align: center;
    font-size: 26px;
}

.col1 .inner-col {
    padding-top: 30px;
    text-align: center;
}

#copyUrlIcon {
    background-color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 25px;
    padding: 1px;
    cursor: pointer;
}

#copyUrlIcon:hover {
    background-color: var(--color-bright-orange);
}

#successMessage {
    margin-top: 10px;
    color: white;
    font-weight: bold;
}

.crusade-utah-2025-section .button {
    margin-bottom: 40px;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 {
    text-align: left;
    width: 100% !important;
    padding-right: 30px;
}

.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1, 
.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 {
    text-align: right;
}

@media (max-width: 1290px) {
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper {
		padding: 90px 30px;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper {
		padding: 90px 30px 150px;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper {
		padding: 55px 30px 80px 30px;
	}
	
	.crusade-utah-2025-section.event-details-section .event-details-section-wrapper {
		width: 90%;
		margin-left: 5%;
	}
}

@media (max-width: 1024px) {
	.crusade-utah-2025-section.crusade-hero-banner { 
		background-image: url('../images/utahSiteHeader-mobile.jpg');
		background-position-y: top;
        min-height: 70vh;
		background-size: contain;
		background-color: var(--color-dark-blue);
	}
	.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-wrapper {
		justify-content: center;
	}

    .col1 .inner-col {
        padding-bottom: 30px;
    }  
    .crusade-utah-2025-section .special-guests-button {
        margin: 12px auto;
    }
    .crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2, 
    .crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    .crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1, 
    .crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 {
        text-align: center;
    }
    .crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1 img, 
    .crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 img {
        width: 100%;
		max-width: 408px;
    }
    .crusade-utah-2025-section.prayers-form-section h3 {
        text-align: center !important;
        max-width: none !important;
    }
    .event-details {
        padding: 0 !important;
    }
	.crusade-utah-2025-section .crusade-hero-icon-link {
		left: 30px;
		top: 30px;
	}
	.crusade-utah-2025-section .menu-outter-container {
		width: 50%;
	}
	.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-right {
		max-width: 40%;
	}
	.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-left {
		max-width: 45%;	
	}
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper {
		max-width: 720px;
	}
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row, 
	.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row {
		flex-direction: column-reverse;
	    align-content: center;
	    flex-wrap: wrap;
	}
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1, 
	.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 {
		width: 100%;
		margin-right: 0;
	}
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col2, 
	.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col2 {
		width: 100%;
		margin-right: 0;
		margin-bottom: 50px;
		text-align: center;
	}
	.crusade-utah-2025-section.crusade-video-section .lost-one-img {
		right: 20px;
		top: -110px;
		max-width: 240px;
	}
	/* .crusade-utah-2025-section.special-guests-section:after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		height: 100%;
		width: 100%;
		background-image: url('../images/special-guest-bottom.png');
		background-position: bottom center;
		background-size: contain;
		background-repeat: no-repeat;
		z-index: 1;
	} */
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row {
		flex-direction: column;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 {
		width: 100%;
		margin: 0 auto;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col2 {
		width: 100%;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 h2 {
	    padding-left: 0;
	    text-align: center;
	    margin-bottom: 30px;
	    font-size: 64px;
	    line-height: 1.2;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .sticky {
	    position: relative;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .sticky-bottom {
	    position: relative;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .col1 h2 span {
		font-size: 32px;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .section-column-2 {
	    max-width: 650px;
    	margin: 0 auto;
		flex-direction: column;
		margin-bottom: 40px;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card {
		min-height: 420px;
		width: 100%;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-description {
		width: 100%;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4.alternate-title {
		padding-left: 10px;
	}
	.crusade-utah-2025-section.special-guests-section .jesus-loves-you {
		max-width: 150px;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta {
		width: calc(33.33% - 20px);
		margin-right: 30px;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container h3 {
		font-size: 28px;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container p {
		font-size: 16px;
    	line-height: 1.2;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta .text-container .cta-link {
		font-size: 18px;
		line-height: 24px;
	}
	.crusade-utah-2025-section.contact-section {
		padding: 80px 0 100px;
	}
	.crusade-utah-2025-section.contact-section .contact-section-wrapper {
		margin: 0 auto;
		padding-left: 30px;
        padding-right: 30px;
	}
	.crusade-utah-2025-section.footer-section .footer-section-wrapper {
		margin: 0 auto;
		padding-left: 30px;
        padding-right: 30px;
	}
	.crusade-utah-2025-section.footer-section .footer-section-wrapper .row {
	    flex-direction: column;
	}
	.crusade-utah-2025-section.footer-section .footer-section-wrapper .row .col {
	    text-align: center;
	    width: 100%;
	    margin-right: 0;
	    margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.crusade-utah-2025-section .crusade-hero-icon-link img {
		max-width: 60px;
	}
	.crusade-utah-2025-section .menu-burger {
	    width: 40px;
    	height: 30px;
    	top: 40px;
    	right: 40px;
	}
	.crusade-utah-2025-section .menu-burger span {
	    height: 6px;
	}
	.crusade-utah-2025-section .menu-burger span:nth-child(2), 
	.crusade-utah-2025-section .menu-burger span:nth-child(3) {
		top: 15px;
	}
	.crusade-utah-2025-section .menu-burger span:nth-child(4) {
		top: 30px;
	}
	.crusade-utah-2025-section .menu-outter-container {
		width: 100%;
	}
	.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-right {
		max-width: 60%;
	}
	.crusade-utah-2025-section.crusade-hero-banner .crusade-hero-left {
		max-width: 60%;	
	}
	.crusade-utah-2025-section.crusade-video-section .lost-one-img {
		right: 10px;
		top: -75px;
		max-width: 180px;
	}
	.crusade-utah-2025-section.crusade-video-section .crusade-video-section-wrapper .row .col1 iframe, 
	.crusade-utah-2025-section.get-involved-section #get-involved-content-section .row .col1 iframe {
		height: 260px !important;
	}
	.crusade-utah-2025-section.special-guests-section .special-guests-section-wrapper .row .guest-card h4 {
		font-size: 34px;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container {
		flex-direction: column;
	}
	.crusade-utah-2025-section.cta-section .cta-section-wrapper .ctas-container .cta {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.crusade-utah-2025-section.contact-section h3 {
		font-size: 28px;
	}
	.crusade-utah-2025-section.footer-section .footer-section-wrapper {
		flex-direction: column;
	}
	.crusade-utah-2025-section.footer-section .footer-section-wrapper .footer-logo {
		margin-bottom: 20px;
	}
}

/* START Prayers Page */

.crusade-utah-2025-section.prayers-form-section .crusade-hero-icon-link {
	position: absolute;
	top: 30px;
	left: 30px;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper {
	max-width: 625px;
	margin: 0 auto;
	padding: 40px 35px 50px;	
	background-color: var(--color-dark-blue);
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper h2 {
	text-align: center;
	max-width: 495px;
	margin: 0 auto 10px;
	text-transform: uppercase;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper>p {
	text-align: center;
	max-width: 495px;
	margin: 0 auto 20px;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form label {
	display: block;
    font-family: 'Oswald-SemiBold';
    color: #FF6B35;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form input {
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 8px;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form textarea {
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px;
    margin-bottom: 15px;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form #post_online {
    margin-left: 5px;
    margin-top: 10px;
    width: fit-content;
    -ms-transform: scale(2);
    -moz-transform: scale(2);
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form input.button {
    border: 0;
    width: fit-content;
    margin: 15px auto 5px;
    display: block;
}

.crusade-utah-2025-section.prayers-form-section .prayers-form-section-wrapper form .info {
    font-size: 12px;
    line-height: 1.2;
    margin-top: -5px;
    margin-bottom: 0;
}

.crusade-utah-2025-section.prayers-form-section h3 {
	text-align: center;
	max-width: 495px;
	margin: 0 auto;
}

.crusade-utah-2025-section.prayers-section {
	background-color: var(--color-vibrant-red);
	background: linear-gradient(90deg, rgba(220,20,60,1) 0%, rgba(220,20,60,1) 40%, rgba(255,107,53,1) 100%);
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper {
	max-width: 1080px;
	margin: 0 auto;
	padding: 80px 0px 80px;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper h2 {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid {
	display: grid; 
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 30px; 
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid .prayer-post {
	padding: 30px; 
	background-color: var(--color-dark-blue);
	border-radius: 5px;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid .prayer-post .prayer-content {
    font-family: 'Poppins-Medium';
    color: #fff;
    font-size: 19px;
    line-height: 27px;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid .prayer-post .prayer-for {
    display: block;
    font-family: 'Oswald-SemiBold';
    color: #FF6B35;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .pagination .page-numbers {
    font-family: 'Oswald-SemiBold';
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    margin-right: 5px;
    text-transform: uppercase;
    padding: 5px;
}

.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .pagination .page-numbers.current, 
.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .pagination .page-numbers:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1024px) {
	.crusade-utah-2025-section.prayers-section .prayers-section-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}

	.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.crusade-utah-2025-section.prayers-section .prayers-section-wrapper .grid {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* END Prayers Page */


/* START Stripe Form Section */

.crusade-utah-2025-section.stripe-form-section {
	padding: 40px 12px 80px;
}
.crusade-utah-2025-section.stripe-form-section.crusade-hero-banner {
	background-size: cover;
}
.crusade-utah-2025-section.stripe-form-section .crusade-hero-wrapper {
	flex-direction: column;
	align-items: center;
}

.crusade-utah-2025-section.stripe-form-section h1, 
.crusade-utah-2025-section.stripe-form-section h2, 
.crusade-utah-2025-section.stripe-form-section h3, 
.crusade-utah-2025-section.stripe-form-section h4, 
.crusade-utah-2025-section.stripe-form-section h5 {
	color: var(--color-off-white);
}

.crusade-utah-2025-section.stripe-form-section p, 
.crusade-utah-2025-section.stripe-form-section .body-copy {
	color: var(--color-off-white);
}

.crusade-utah-2025-section.stripe-form-section::before {
	background: rgba(0, 0, 0, 0.7);
}

.crusade-utah-2025-section.stripe-form-section form {
	margin: 0 auto;
    padding: 40px 35px 50px;
    background-color: var(--color-dark-blue);
    position: relative;
	text-align: left;
}

.crusade-utah-2025-section.stripe-form-section form label {
	display: block;
    font-family: 'Oswald-SemiBold';
    color: #FF6B35;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.crusade-utah-2025-section.stripe-form-section form .donation-amount-container {
	display: flex;
	gap: 12px;
	width: 100%;
}

.crusade-utah-2025-section.stripe-form-section form .donation-amount-container label {
	cursor: pointer;
	font-size: 22px;
}

.crusade-utah-2025-section.stripe-form-section form .donation-amount-container label input {
	cursor: pointer;
}

.crusade-utah-2025-section.stripe-form-section form label.send-book {
	cursor: pointer;
}

.crusade-utah-2025-section.stripe-form-section form input[type="text"], 
.crusade-utah-2025-section.stripe-form-section form input[type="number"], 
.crusade-utah-2025-section.stripe-form-section form input[type="tel"], 
.crusade-utah-2025-section.stripe-form-section form input[type="email"] {
	width: 100%;
	font-size: 22px;
    line-height: 1.2;
    padding: 5px 15px !important;
    margin-bottom: 15px;
}

.crusade-utah-2025-section.stripe-form-section form #card-element {
	width: 100%;
	padding: 10px;
	background-color: var(--color-off-white);
	border-radius: 5px;
}

.crusade-utah-2025-section.stripe-form-section form button {
	min-width: 150px;
    background-color: var(--color-medium-blue) !important;
    padding: 12px 30px;
    color: var(--color-off-white) !important;
    font-size: 24px;
    line-height: 27px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Poppins-Medium';
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.crusade-utah-2025-section.stripe-form-section form button:hover {
	background-color: var(--color-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.crusade-utah-2025-section.stripe-form-section form #payment-message {
	margin-top: 24px; 
	display: block; 
	font-family: 'Oswald-SemiBold'; 
	color: var(--color-vibrant-red); 
	font-size: 16px; line-height: 1.2; 
	margin-bottom: 5px; text-transform: uppercase; 
	text-align: center;
	letter-spacing: 1px;
}

.crusade-utah-2025-section.stripe-form-section form .required-asterisk {
	color: var(--color-vibrant-red);
	font-size: 16px;
	line-height: 1.2;
	margin-left: 5px;
}

.crusade-utah-2025-section.stripe-form-section form h2 .required-asterisk, 
.crusade-utah-2025-section.stripe-form-section form h3 .required-asterisk, 
.crusade-utah-2025-section.stripe-form-section form h4 .required-asterisk, 
.crusade-utah-2025-section.stripe-form-section form h5 .required-asterisk {
	font-size: 22px;
}

.crusade-utah-2025-section.stripe-form-section form .book-image {
	max-width: 120px;
}

.legal-disclosure-section {
	background-color: var(--color-dark-blue);
	position: relative;
	border-bottom: 1px solid var(--color-off-white);
}

.legal-disclosure-section .legal-disclosure-wrapper {
	max-width: 980px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.legal-disclosure-section p, 
.legal-disclosure-section ul li, 
.legal-disclosure-section h3 {
	color: var(--color-off-white);
}

.legal-disclosure-section ul li {
	font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Poppins-Medium';
}

.legal-disclosure-section .candid-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	gap: 16px;
}

@media (max-width: 1024px) {
	.crusade-utah-2025-section.stripe-form-section {
		padding: 0 0 40px;
	}
	.crusade-utah-2025-section.stripe-form-section .crusade-hero-wrapper {
		padding: 12px;
	}
	.crusade-utah-2025-section.stripe-form-section form .donation-amount-container {
		flex-direction: column;
		gap: 0px;
	}
	.legal-disclosure-section .legal-disclosure-wrapper {
		padding: 12px;
	}
	.legal-disclosure-section .candid-section {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 40px;
	}
}

/* END Stripe Form Section */