.shadow-under-navbar {
    box-shadow: 0 4px 6px -6px #222; /* Creates a subtle shadow line at the bottom */
}

.box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(72, 78, 85, 0.6);
    box-shadow: 0 1px 1px rgba(72, 78, 85, 0.6);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.box-shadow:hover {
    -webkit-box-shadow: 0 20px 40px rgba(72, 78, 85, 0.6);
    box-shadow: 0 20px 40px rgba(72, 78, 85, 0.6);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    padding: 40px 0;
    margin-bottom: 40px;
    color: white;
    border-radius: 0 0 50px 50px;
}

.brands_slider_container {
    height: 130px;
    /* border: solid 1px #e8e8e8; */
    /* box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1); */
    /* padding-left: 97px;
    padding-right: 97px; */
    background: #fff;
}

.brands_slider {
    height: 100%;
    margin-top: 40px;
}

/* .brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 100%;
} */

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
}

.brands_nav i {
    /* color: #e5e5e5; */
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.brands_nav:hover i {
    color: #676767;
}

.brands_prev {
    left: 40px;
}

.brands_next {
    right: 40px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

input.valid {
    background-color: #ffffff;
}

input[type="checkbox"].invalid {
    accent-color: #ffdddd;
}

input[type="checkbox"].valid {
    accent-color: #ffffff;
}

select.invalid {
    background-color: #ffdddd;
}

select.valid {
    background-color: #ffffff;
}

textarea.invalid {
    background-color: #ffdddd;
}

textarea.valid {
    background-color: #ffffff;
}

.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #005aa0;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px;
    right: 30px;
    /* other styling properties */
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
}

#loader .loading {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translate(-65%, -50%);
    /* font: 14px arial; */
}
