body {
    /* background-image: url("resources/bg-web.jpg"); */
    font-family: 'Quicksand', sans-serif;
}

.nav-link {
    /* padding-bottom: 20px; */
}

/* .nav-link:hover {
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: white;
    padding-bottom: 16px;
} */

.nav-link.active {
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: white;
    padding-bottom: 16px;
}

.nav-link-focus-white:focus {
    color: white;
}

.nav-link-focus-black:focus {
    color: black;
}

.nav-item {
    padding-inline: 20px;

}

.navbar-toggler-icon {
    color: "#FFFFFF";
}

.header {
    margin-block: 50px;
}

.navbar-nav {
    color: "#FFFFFF";
}

.btn-primary {
    background-color: #75562a;
    border-radius: 0px;
    font-family: Quicksand;
    border-width: 0px;
    font-size: 14px;
    padding-inline: 20px;
    padding-block: 10px;
}

.btn-primary:hover {
    background-color: #523c1d;
}

.btn-primary:active {
    background-color: #523c1d !important;

}

footer {
    margin-top: 200px;
    margin-bottom: 20px;
}

.fc .fc-toolbar-title{
    color: white;
}

.fc .fc-col-header-cell-cushion{
    color: white;
}

.fc .fc-daygrid-day-number{
    color: white;
}

.footer-left,
.footer-right {
    color: #FFFFFF;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #111;
    color: white;
}

@media screen and (max-width: 991px) {
    .mobile-padding {
        padding-inline: 30px;
    }

    .mobile-footer-padding {
        padding-bottom: 10px;
    }
}

.preloader {
    background-color: black;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}

.preloader-container {
    background-color: #212121;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaders {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #e8e8e8;
    border: 4px solid #e8e8e8;
    box-shadow: 0 0 3px #e8e8e8;
    filter: blur(.4px);
}

.shadow {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: #212121;
    top: -5px;
    left: 0;
    animation: animate 3s infinite 1.5s;
}

@keyframes animate {
    0% {
        transform: translateX(150px);
        background-color: #212121;
    }

    50% {
        transform: translateX(-10px);
        background-color: #212121;
    }

    100% {
        transform: translateX(-170px);
        background-color: #212121;
    }
}




.jelly {
    --uib-size: 40px;
    --uib-speed: .8s;
    --uib-color: white;
    position: relative;
    height: calc(var(--uib-size) / 2);
    width: var(--uib-size);
    filter: url('#uib-jelly-ooze');
    animation: rotate72317 calc(var(--uib-speed) * 2) linear infinite;
}

.jelly::before,
.jelly::after {
    content: '';
    position: absolute;
    top: 0%;
    left: 25%;
    width: 50%;
    height: 100%;
    background: var(--uib-color);
    border-radius: 100%;
}

.jelly::before {
    animation: shift-left var(--uib-speed) ease infinite;
}

.jelly::after {
    animation: shift-right var(--uib-speed) ease infinite;
}

.jelly-maker {
    width: 0;
    height: 0;
    position: absolute;
}

@keyframes rotate72317 {

    0%,
    49.999%,
    100% {
        transform: none;
    }

    50%,
    99.999% {
        transform: rotate(90deg);
    }
}

@keyframes shift-left {

    0%,
    100% {
        transform: translateX(0%);
    }

    50% {
        transform: scale(0.65) translateX(-75%);
    }
}

@keyframes shift-right {

    0%,
    100% {
        transform: translateX(0%);
    }

    50% {
        transform: scale(0.65) translateX(75%);
    }
}