@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*, h1, h2, h3, h4, p {
    font-family: "Raleway", sans-serif !important;
}

a {
    color:black;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
    pointer-events: none; /* Ensures clicks go through the overlay to the image */
}
.custom-radio-button {
    position: relative;
    padding-left: 25px; /* Space for custom radio indicator */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-radio-button input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.custom-radio-button span:first-of-type::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #fff;
}

.custom-radio-button span:first-of-type::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
}

.custom-radio-button.checked span::before {
    border-color: #dc3545;
}

.custom-radio-button.checked span::after {
    background-color: #dc3545;
}

.custom-radio-button.checked {
    font-weight: bold;
}
.card, .accordion-item, .card-img, .btn {
    border-radius: 0 !important;
}

.image-stack {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* This is a 16:9 aspect ratio, will be updated dynamically */
}

.aspect-ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-image {
    z-index: 0;
}

.stacked-image {
    z-index: 1;
}

.stacked-image:nth-child(3) { /* Adjust the z-index for each overlay image */
    z-index: 2;
}

.stacked-image:nth-child(4) {
    z-index: 3;
}

.stacked-image:nth-child(5) {
    z-index: 4;
}

.stacked-image:nth-child(6) {
    z-index: 5;
}

.stacked-image:nth-child(7) {
    z-index: 6;
}

.stacked-image:nth-child(8) {
    z-index: 7;
}

.stacked-image:nth-child(9) {
    z-index: 8;
}
