/*--------------------------------------------------------------
1. Basic Bootstrap Overrides
---------------------------------------------------------------*/

:root {
	/* Colors */
	--bs-body-color: #000;
	--bs-body-bg: #fff;
	--bs-primary: #C22839;
	--bs-secondary: #383838;

	/* Typography */
	--bs-body-font-family: "Poppins", sans-serif;
	--bs-body-font-size: 1.25rem;
	--bs-body-line-height: 1.6;

	/* Spacing scale (0–5) */
	--spacer: 1rem;
	--spacer-half: .5rem;
	--spacer-2: 2rem;
}

.container {
	max-width: 1300px;
}

.g-6,
.gy-6 {
	--bs-gutter-y: 6rem;
}

.g-6,
.gx-6 {
	--bs-gutter-x: 6rem;
}

.fs-6 {
	font-size: .9rem !important;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

/*--------------------------------------------------------------
1. Bootstrap Button Overrides
---------------------------------------------------------------*/

.btn {
	font-size: 1.3125rem;
	padding: 1.25rem 2.75rem;
	border-radius: 8px;
}

.btn-sm {
	font-size: 1.1rem;
	padding: .75rem 2rem;
}

.btn-primary {
	background-color: #C22839;
	border-color: #C22839;
	color: #ffffff;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #aa1d2d;
	border-color: #C22839;
	color: #ffffff;
}

.btn-secondary {
	background-color: #383838;
	border-color: #383838;
	color: #ffffff;
	font-size: 1.3125rem;
	padding: 1rem 2rem;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #232323;
	border-color: #383838;
	color: #ffffff;
}

/*--------------------------------------------------------------
3. Responsive Typography
---------------------------------------------------------------*/

h1 {
	font-size: clamp(1.75rem, 1.6196rem + 0.4348vw, 2rem);
	color: #fff;
}

h2 {
	font-size: clamp(1.75rem, 1.6037rem + 0.4878vw, 2rem);
	color: #313131;
}

p {
	font-size: clamp(1.125rem, 1.0598rem + 0.2174vw, 1.25rem);
}

/*--------------------------------------------------------------
4. Layout and Styles
---------------------------------------------------------------*/

.hero {
	background-image: url("../../img/hero-bg.webp");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 660px;
}

.hero-laptop {
	transform: translate(0px, 14px);
}

.card-section {
	background-color: #F1F1F1;
	border-top: 1px solid #DADADA;
	border-bottom: 1px solid #DADADA;

	& h2 {
		font-size: clamp(2.375rem, 2.2772rem + 0.3261vw, 2.5625rem);
	}
}

.card-section .card {
	border-radius: 10px;
	border-top: 20px solid #1D5388;
	box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.10);
	border-left: 0px;
	border-right: 0px;
	border-bottom: 0px;

	& .card-body {
		padding: 50px 50px 20px;

		& h3 {
			color: #313131;
			font-size: clamp(2.5rem, 2.4022rem + 0.3261vw, 2.6875rem);

			& span {
				color: #C22839;
				font-weight: 500;
				font-size: clamp(1.75rem, 1.587rem + 0.5435vw, 2.0625rem);
				display: block;
			}
		}
	}

	& .card-footer {
		background-color: #C6C6C6;
		border-top: 0px;
	}
}

.plan-card {
	position: relative;
	padding-right: 3rem;
	text-align: left;
	background-color: #F9F9F9;

	& .form-check-input {
		position: absolute;
		top: 50%;
		right: 2rem;
		transform: translateY(-50%);
		margin: 0;
	}
}

.form-check-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 2rem;
	height: 2rem;
	border: 2px solid #A3AFB7;
	border-radius: 50%;
	background-color: #fff;
	background-image: none !important;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	cursor: pointer;
}

.form-check-input:checked {
	background-color: #fff;
	box-shadow: inset 0 0 0 0.6rem #000;
	border-color: #A3AFB7;
}


.form-control {
	background-color: #F9F9F9;
	border: 1px solid #A3AFB7;
	border-radius: 10px;
	padding: 20px 25px;
}

.form-control::placeholder {
	font-size: 20px;
	color: #9EA6AE;
	opacity: 1;
}

.form-control::-webkit-input-placeholder {
	font-size: 20px;
	color: #9EA6AE;
}

.form-control::-moz-placeholder {
	font-size: 20px;
	color: #9EA6AE;
}

.form-control:-ms-input-placeholder {
	font-size: 20px;
	color: #9EA6AE;
}

.form-control::-ms-input-placeholder {
	font-size: 20px;
	color: #9EA6AE;
}

.form-select {
	background-color: #F9F9F9;
	border: 1px solid #A3AFB7;
	border-radius: 10px;
	padding: 17px 25px;
	font-size: 20px;
	color: #212529;
}

.form-select option:first-child {
	color: #9EA6AE;
}

.form-select:not(:focus):not(:hover):invalid {
	color: #9EA6AE;
}

.invalid-feedback {
	font-size: .575em;
}


footer {
	background-color: #F1F1F1;

	& p {
		font-size: 16px;

		& span {
			color: #A00021;
			font-weight: 600;
		}
	}

	& a {
		color: #A00021;
		font-size: 16px;
	}
}

.copy {
	background-color: #202020;
	color: #fff;

	& p {
		font-size: 12px;
		margin-bottom: .5rem;
	}

	& a {
		font-size: 12px;
		text-decoration: underline;
		color: #fff;
	}
}

// `sm` applies to x-small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {

.row {
	margin-left: auto;
	margin-right: auto;
}

}

// `md` applies to small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) {}

// `lg` applies to medium devices (tablets, less than 992px)
@media (max-width: 991.98px) {}

// `xl` applies to large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) {}

// `xxl` applies to x-large devices (large desktops, less than 1400px)
@media (max-width: 1399.98px) {}


/*--------------------------------------------------------------
5. Print Styles
---------------------------------------------------------------*/
@media print {
	body {
		font-size: 12pt;
		color: #000;
		background: #fff;
	}

	.no-print,
	nav,
	footer {
		display: none !important;
	}
}