.preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999 !important;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: white;
    text-align: center;
    padding-top: 25%;
}

body {
    background-color: var(--bs-light);
font-family: 'Martel', serif;
}

.btn, .btn-close {
    box-shadow: none !important;
    outline: none !important;
}

.drow-btn {
    border-radius: 0px !important;
    padding: 4px 12px;
    background-color: transparent!important;
    border: 2px solid transparent !important;
    color:black!important;

}

.drow-btn::after {

    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--bs-dark);
    transition: all 0.3s ease;
}

.drow-btn:hover::after {
    width: 100%;
}

.main {
    border: 1px solid var(-bs-gray-400);
    background-color: var(--bs-white);
    box-shadow: 0 0 12px var(--bs-gray-200);
}

.drow-link {
    color: var(--bs-dark);
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 12px;

    transition: all 0.3s ease;
}

.drow-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--bs-dark);
    transition: all 0.3s ease;
}

.drow-link:hover::after {
    width: 100%;
}



.current::after {
    content: '';
    display: block;
    width: 100%;

    height: 2px;
    background-color: var(--bs-dark);
    transition: all 0.3s ease;
}

.img {
    width: 100%;
    display: ineline;
    height: 400px;
    overflow: hidden;
    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.img .legend {
    position: absolute;
    bottom: -10px;
    left: 0;
    color: white;
    width: 100%;
    height: 15%;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.6s ease;
    text-transform: uppercase;
}

.img:hover .legend {
    opacity: 1;
}

.img:hover {
    filter: grayscale(0%);
    box-shadow: 0 0 12px 6px var(--bs-gray-400);
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-top {
    position: sticky !important;
    background-color: white;
    z-index: +1;
}

.grayable {

    transition: all 0.6s ease;
    filter: grayscale(100%);
}

.grayable:hover {
    filter: grayscale(0%);
    box-shadow: 0 0 12px 6px var(--bs-gray-400);
}

.form-control {
    outline: none !important;

    border: none;
    border: 2px solid transparent;
    border-radius: 0px;
    background-color: var(--bs-gray-100);
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0);
}

.form-control:active,
.form-control:focus {
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid black;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
}