.img-about {
    width: 300px;
}

@media (max-width: 640px) {
    .img-about {
        width: 100%;
    }
}

.underline-offset {
    text-decoration: underline;
    text-underline-offset: 4px;

    /* Adjust as needed */
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.form-control-custom {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--bs-light);
    appearance: none;
    background-color: var(--bs-primary);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    box-shadow: var(--bs-box-shadow-inset);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-custom::placeholder {
    color: var(--bs-light);
}

.form-control-custom:focus {
    border-color: #a1b6c6;
    outline: 0;
    box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(66, 109, 140, 0.25);
}

.advertisment-img {
    object-fit: cover;
    object-position: center;
    max-height: 350px;
}

/* popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup p {
    margin: 0;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #000;
}

.padding-first-item {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (max-width: 1200px) {
    .padding-first-item {
        padding-left: 0;
    }
}

.img-custom {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.font-family-custom {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.text-black {
    color: #000;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-block {
    background-position: center;
    background-size: cover;
}

@media (max-width: 991px) {
    body.poster {
        margin-top: 40vh;
    }
}

body.poster {
    background-attachment: fixed;
}


