.hero-poster {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.img-reviews {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.toggler-btn-custom {
    all: unset;
    display: none;
    padding: 4px 7px 4px 7px;
    border-radius: 5px;
    border: 1px solid var(--bs-white);
}

.toggler-btn-custom svg {
    color: var(--bs-white);
}

@media (max-width: 991px) {
    .toggler-btn-custom {
        display: inline-block;
    }
}

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

    /* Adjust as needed */
}

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

.form-check-input {
    width: 25px;
    height: 25px;
}

.form-check-input:checked {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !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-white);
    appearance: none;
    background-color: var(--bs-secondary);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-control-custom:focus {
    outline: 0;
}

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

.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;
}

.custom-alert {
    position: fixed;
    top: 50%;
    left: -400px;
    height: 300px;
    width: 300px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    font-weight: 500;
    transition: left 0.4s ease-in-out ;
    z-index: 9999;
    box-sizing: content-box;
    transform: translateY(-50%);
}

.custom-alert.show {
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
}


