@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header, .header.navbar-fixed-sticky {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
 .header-home.navbar-fixed-sticky {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* backdrop-filter: blur(10px); */
}

.header.navbar-fixed-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    animation: slideDown 1s ease-out;
}

.header.navbar-fixed-sticky  {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
}

/* Contact us Page form */

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-form p {
    margin: 0;
}

.custom-form .form-field input[type="text"],
.custom-form .form-field input[type="email"],
.custom-form .form-field input[type="url"],
.custom-form .form-field input[type="password"],
.custom-form .form-field input[type="search"],
.custom-form .form-field input[type="number"],
.custom-form .form-field input[type="tel"],
.custom-form .form-field input[type="range"],
.custom-form .form-field input[type="date"],
.custom-form .form-field input[type="month"],
.custom-form .form-field input[type="week"],
.custom-form .form-field input[type="time"],
.custom-form .form-field input[type="datetime"],
.custom-form .form-field input[type="datetime-local"],
.custom-form .form-field input[type="color"],
.custom-form .form-field textarea {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    border-radius: 3px;
    background: #fff;
    color: #101010;
    border: 1px solid #5B3220;
}
.custom-form .form-field input[type="text"]:hover, 
.custom-form .form-field input[type="email"]:hover, 
.custom-form .form-field input[type="url"]:hover, 
.custom-form .form-field input[type="password"]:hover, 
.custom-form .form-field input[type="search"]:hover, 
.custom-form .form-field input[type="number"]:hover, 
.custom-form .form-field input[type="tel"]:hover, 
.custom-form .form-field input[type="range"]:hover, 
.custom-form .form-field input[type="date"]:hover, 
.custom-form .form-field input[type="month"]:hover, 
.custom-form .form-field input[type="week"]:hover, 
.custom-form .form-field input[type="time"]:hover, 
.custom-form .form-field input[type="datetime"]:hover, 
.custom-form .form-field input[type="datetime-local"]:hover, 
.custom-form .form-field input[type="color"]:hover, 
.custom-form .form-field textarea:hover, 
.custom-form .form-field input[type="text"]:focus, 
.custom-form .form-field input[type="email"]:focus, 
.custom-form .form-field input[type="url"]:focus, 
.custom-form .form-field input[type="password"]:focus, 
.custom-form .form-field input[type="search"]:focus, 
.custom-form .form-field input[type="number"]:focus, 
.custom-form .form-field input[type="tel"]:focus, 
.custom-form .form-field input[type="range"]:focus, 
.custom-form .form-field input[type="date"]:focus, 
.custom-form .form-field input[type="month"]:focus, 
.custom-form .form-field input[type="week"]:focus, 
.custom-form .form-field input[type="time"]:focus, 
.custom-form .form-field input[type="datetime"]:focus, 
.custom-form .form-field input[type="datetime-local"]:focus, 
.custom-form .form-field input[type="color"]:focus, 
.custom-form .form-field textarea:focus 
{
        border: 1px solid #FBB321;
}

.custom-form .submit-button input[type="submit"]{
    padding: 15px 20px;
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.custom-form .form-field textarea{
    max-height: 130px;
}
.all-header, .all-footer{
display: none;
}