.rapid-red {
    color: #9b2423
}

.bg-rapid-red {
    background-color: #9b2423
}

.rapid-red-contrast {
    color: #fbefef
}

.near-white-contrast {
    color: #515151
}

.sticky {
	position: sticky
}

.cust-aspect-ratio--4x3 {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
}

.cust-aspect-ratio--object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will crop the image to fit the container */
}

.cust-v-mid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the content */
    text-align: center; /* Centers text */
}

.cust-outlined-text {
	text-shadow: 
		-1px -1px 0 #111,
		1px -1px 0 #111,
		-1px  1px 0 #111,
		1px  1px 0 #111;
}

@media screen and (min-width: 30em) {
	
	.w-15-ns {
		width: 15%
	}
	
	.w-35-ns {
		width: 35%
	}
	
}

@media screen and (min-width: 30em) and (max-width:60em) {
	
    .w-15-m {
        width: 15%
    }
	
	.w-35-m {
		width: 35%
	}
	
}

@media screen and (min-width: 60em) {
	
    .w-15-l {
        width: 15%
    }
	
	.w-35-l {
		width: 35%
	}
	
}