/****************************************************** TYPOGRAPHY */

html,
body {
	background-color: #f3f1ef;
}

body {
	font-family: -apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		'Roboto',
		'Oxygen',
		'Ubuntu',
		'Cantarell',
		'Fira Sans',
		'Droid Sans',
		'Helvetica Neue',
		sans-serif;
	color: #000;
	font-size: clamp(1rem, 1.25vw, 1.25rem);
}

strong {
	font-weight: 700;
	color: #463cb4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	
	color: #463cb4;
	
}

h1 {
	font-size: clamp(2.75rem, 3vw, 6rem);
	margin: 0 0 20px 0;
	line-height: 1
}

#read-more {
	color: #000;
}

#read-more:hover {
	color: #ed1c24;
}

a {
	color: #463cb4;
	text-decoration: underline;
}

p {
	line-height: 1.5;
}

section {
	margin-bottom: 2.4rem;
}

section h3 {
	color: #463cb4;
	font-size: clamp(1.25rem, 1.75vw, 1.5rem);
	font-weight: 700;
	text-transform: none;
}

/****************************************************** BUTTONS */

.btn-ActionAid {
	color: white;
	background-color: #463cb4;
	border-color: #463cb4;
}

.btn-ActionAid:hover {
	color: white;
	background-color: #463cb4;
	border-color: #463cb4;
}

.btn-ActionAid-Subtle {
	color: #666666;
	background-color: #eaeaea;
	border-color: #eaeaea;
}

.btn-ActionAid-Alt {
	color: white;
	background-color: #463cb4;
	border-color: #463cb4;
}

.btn-ActionAid-Alt:hover {
	color: white;
	background-color: #463cb4;
}

.btn {
	border-radius: unset;
}

.btn-xl {
	padding: 0.75rem 1.2rem;
	font-size: 1rem;
}

@media (min-width: 762px) {
	.btn-xl {
		font-size: 1.5rem;
	}
}

/******************************************************* LOGO   */

.logo {
	/* width: 178px; */
	background-color: #fff;
	padding: 18px;
}



.full-page-background {
	position: relative;
}

header {
	margin-bottom: 4rem;
}

@media (max-width: 767px) {
	/* .full-page-background > .custom-container {
		position: absolute;
		top: 68px;
	} */

	header {
		background-color: white;
		margin-bottom: 0;
	}


}

.logo>img {
	width: 100px;
}

@media (min-width: 767px) {
	.logo>img {
		width: 180px;
	}


}



/*

.logo:after {
	content: ' ';
	position: absolute;
	left: 30px;
	bottom: -25px;
	border-top: 25px solid #ed1c24;
	border-right: 25px solid transparent;
	border-left: 25px solid transparent;
	border-bottom: none;
}

.logo > img {
	max-width: 120px;
}

@media (min-width: 763px) {
	.logo {
		background-color: #ed1c24;
		padding: 18px 30px 20px 30px;
		border-radius: 0 0 7px 7px;
		display: inline-block;
	}

	.logo:after {
		content: ' ';
		position: absolute;
		left: 30px;
		bottom: -25px;
		border-top: 25px solid #ed1c24;
		border-right: 25px solid transparent;
		border-left: 25px solid transparent;
		border-bottom: none;
	}

	.logo > img {
		max-width: 175px;
	}
} */

/******************************************************* STEP PROGRESS */

.step-progress ul {
	display: flex;
}

.step-progress ul li {
	display: flex;
	align-items: center;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	position: relative;
	color: #dcd8d3;
}

.step-progress ul li:first-child {
	margin-left: unset;
	position: relative;
}

.step-progress ul li:last-child {
	margin-right: unset;
}

.step-line:after {
	content: '';
	position: absolute;
	right: -2.25rem;
	top: calc(50% - 1px);
	width: 1rem;
	height: 1px;
	background-color: #b9b0a7;
}

.step-progress .numIcon {
	background-color: #dcd8d3;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: block;
	text-align: center;
	color: #fff;
	font-weight: normal;
	line-height: 30px;
	margin-right: 0.5rem;
}

.step-progress li.active .numIcon {
	background-color: #48c2c7;
}

.step-progress li.active {
	color: #000000;
}

/******************************************************* FORMS */

.form-label {
	color: #797171;
	font-size: 0.9rem;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
	background-color: #fff;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
	color: #212529;
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
	border-color: rgba(0, 0, 0, 0.25);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type='number'] {
	-moz-appearance: textfield;
}

.form-control {
	border-radius: 0 !important;
	border-color: #989ea1;
}

.form-control:focus {
	box-shadow: none;
	border-color: #463cb4;
}

.invalid-feedback {
	text-align: right;
	font-size: 13px;
}

.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #00ada8;
}

.form-check-input:hover,
.form-check-label:hover {
	cursor: pointer;
}

.was-validated .form-check-input:valid:checked {
	background-color: #463cb4;
}

/******************************************************* LAYOUT */

.custom-container {
	max-width: 970px;
	width: 100%;
	margin: 0 auto;
}

@media only screen and (max-width: 762px) {
	.custom-container {
		width: 100%;
	}
}

.bg-white {
	background-color: white;
}

.gift-aid-callout {
	background-color: #eae7f0;
}

.data-protection-callout {
	background-color: #dcf3f4;
}

.gift-link-callout {
	background-color: #f3f1ef;
}

.hidden-start {
	display: none;
}

.overflow-container {
	margin-left: -1rem !important;
	margin-right: -1rem !important;
	max-width: unset !important;
	width: unset !important;
}

@media (min-width: 768px) {
	.overflow-container {
		margin-left: -3rem !important;
		margin-right: -3rem !important;
	}
}

/****************************************************** SPLASH  */
#Splash {
	height: 100vh;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #333333;
}

#Splash header {
	position: absolute;
	z-index: 10;
	padding: 0px 24px;
}

@media (min-width: 768px) {
	#Splash header {
		padding: 0px 50px;
	}
}

#Splash .grid {
	display: grid;
	grid-template-columns: 1fr;
	height: 100%;
	/* gap: 32px;
	padding: 32px; */
}

@media (min-width: 1024px) {
	#Splash .grid {
		grid-template-columns: 1fr 1fr;
		/* gap: 50px;
		padding: 50px; */
	}
}

#Splash #SponsorAChild,
#Donate .wrapper {
	height: 100%;
	position: relative;
	overflow: hidden;
}

#Splash #Donate .wrapper .feature-image {
	background: rgb(33, 35, 36) url('images/donate.jpg') no-repeat center;
	background-size: cover;
}

#Splash #SponsorAChild .wrapper .feature-image {
	background: url('images/sponsor-a-child.jpg') no-repeat center;
	background-size: cover;
}

#Splash .wrapper .feature-image {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(1);
	opacity: 0.8;
	transition: all 0.5s ease;
}

#Splash .wrapper .feature-image:hover {
	transform: scale(1.2);
	opacity: 1;
}

#Splash .content {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
}

@media (min-width: 768px) {
	#Splash .content {
		bottom: 50px;
		left: 50px;
		max-width: 60%;
	}
}

#Splash .content p {
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #333333;
}

@media (min-width: 768px) {
	#Splash .content p {
		font-size: 1.5rem;
		line-height: 1.3;

		margin-bottom: 2rem;
	}
}

#Splash button {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#Splash .content > .content-container {
	padding: 16px;
	background: white;
	position: relative;
}
@media (min-width: 768px) {
	#Splash .content > .content-container {
		padding: 32px;
	}
}

.price-sticker {
	width: 125px;
	height: 125px;
	background-color: #ed1c24;
	border-radius: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	-webkit-transform: rotate(7deg);
	transform: rotate(7deg);
	text-align: center;
	position: absolute;
	right: -44px;
	top: -36px;
}

.price-sticker-inner {
	font-size: 24px;
}

.price-sticker-inner strong {
	font-size: 28px;
}

label {
	position: relative;
}

/* label > em {
	position: absolute;
	right: -8px;
	color: #ed1d24;
} */

/****************************************************** SECTION DIVIDER  */

.section-divider {
	display: flex;
	align-items: center;
	margin: 16px 0;
}

.section-divider-text {
	color: #97b0bf;
	margin-right: 12px;
}

.section-divider-line {
	flex: auto;
	height: 1px;
	background-color: #d9e1e7;
}

.custom-check-button label {
	width: 100%;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border: solid 1px black;
	font-size: 1.25rem;
}

.custom-check-button .btn-secondary {
	background-color: white;
	color: #000;
	border-color: #000;
	border-width: 1px;
}
.custom-check-button .btn-secondary:hover {
	background-color: #463cb4;
	color: #fff;
	border-color: #463cb4;
	border-width: 1px;
}

.custom-check-button .btn-check:checked + .btn-secondary {
	background-color: white;
	color: #463cb4;
	border-color: #463cb4;
	border-width: 3px;
	outline: none;
	box-shadow: unset;
}

/****************************************************** FULL PAGE BACKGROUND IMAGE  */
@media (min-width: 768px) {
	.full-page-background {
		height: 100vh;
		overflow-x: hidden;
		background: url(images/lab-background.jpg) no-repeat center center fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	.hero-img {
		display: none;
		position: relative;
	}
}

.outline-style {
	/* border: solid 3px #000000; */
	/* box-shadow: 5px 5px 0px 0px #000000; */
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px; */
	box-shadow: rgba(0, 0, 0, 0.1) 25px 20px 25px -5px, rgba(0, 0, 0, 0.04) 10px 10px 10px -5px;
}

.show-toggle {
	text-decoration: underline;
	cursor: pointer;
}

.show-toggle:hover {
	color: #463cb4;
}

.form-check-input[type='checkbox'] {
	border-radius: 0;
	border: 2px solid #212529;
	width: 2rem;
	height: 2rem;
	margin-left: -3rem;
}

.form-check-input:checked {
	background-color: #463cb4;
	border-color: #463cb4;
}

.form-check-input:focus {
	box-shadow: none;
}

.form-check {
	padding-left: 3rem;
}

.form-select {
	border-radius: 0;
}

.form-select:focus {
	box-shadow: unset;
	border-color: unset;
}

#ManualAddressBtn {
	text-decoration: underline;
	font-weight: 700;
}

#ManualAddressBtn:hover {
	cursor: pointer;
	text-decoration: unset;
}

small {
	font-size: 13px;
}

.section-heading {
	/* font-size: clamp(2rem, 2.5vw, 4rem);
	margin: 0 0 20px 0;
	line-height: 1.2; */
	color: #463cb4;
		font-size: clamp(1.25rem, 1.75vw, 1.5rem);
		font-weight: 700;
		text-transform: none;
}

.sub-section-heading {
	font-size: clamp(1.25rem, 1.75vw, 1.5rem);
	font-weight: 700;
	text-transform: none;
}

.sub-section {
	margin-bottom: 2rem;
}

small {
	line-height: 1.2;
}
