body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
    /* SEAMLESS PJAX FADE CSS */
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

body.pjax-fade-out {
    opacity: 0 !important;
}

/* Hide Scrollbar for carousels */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* CUSTOM DAY/NIGHT ANIMATED TOGGLE SWITCH */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch .theme-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196f3;
    transition: 0.4s;
    z-index: 0;
    overflow: hidden;
    border-radius: 34px;
}

.sun-moon {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: yellow;
    transition: 0.4s;
    border-radius: 50%;
}

.theme-checkbox:checked+.theme-slider {
    background-color: black;
}

.theme-checkbox:checked+.theme-slider .sun-moon {
    transform: translateX(26px);
    background-color: white;
}

/* Grid lines */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    pointer-events: none;
    z-index: 0;
}

.grid-line-light {
    border-right: 1px solid var(--tw-colors-site-gridLight);
}

.grid-line-dark {
    border-right: 1px solid var(--tw-colors-site-gridDark);
}

.grid-overlay div:first-child {
    border-left: 1px solid transparent;
}