@font-face {
    font-family: "headingfont";
    src: url("../fonts/NoeDisplay-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "bodyfont";
    src: url("../fonts/MaisonNeue-Light.ttf") format("truetype");
}

:root {
    --access-color: #fff;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    background: #000;
    color: #fff;
    cursor: none !important;
}
h4,
p,
a {
    font-family: "bodyfont" !important;
    font-weight: lighter !important;
}
.cursor-dot {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #fff;
    z-index: 4000;
}
.cursor-outline {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: solid 0.1px #444;
    z-index: 4000;
}
.cursor-outline.hovering-on-button {
    background-color: white;
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    z-index: 3000;
    pointer-events: none;
    transition: all 0.1s;
    transition-timing-function: ease-out;
    transition-duration: 0.1s;
    transition-delay: 0s;
    mix-blend-mode: difference;
    will-change: transform;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none !important;
}
.std-padding {
    padding: 30px;
}
.std-link {
    text-decoration: none;
    color: #fff;
    float: left;
    margin-top: 20px;
}
.ui-box {
    width: 300px;
    padding: 40px;
    /* background-color: #111; */
    border: solid 0.1px #222;
    float: left;
    margin: 10px;
}
.ui-box p {
    margin-top: 40px;
}
h5,
h4,
p {
    font-weight: lighter;
}
.sects-navigation {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}
.sects-navigation a {
    color: #fff;
    display: block;
    float: left;
    padding: 0 10px;
    text-decoration: none;
    font-size: 12px;
    color: rgba(225, 225, 225, 0.6);
    background-color: rgba(000, 000, 000, 0.6);
    position: relative;
}
.sects-navigation a.active {
    color: var(--access-color);
}
.sects-navigation a.active:before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 5px;
    left: calc(50% - 2.5px);
}
.sects-navigation a:hover:before {
    content: "";
    position: absolute;
    top: calc(100% + 10px);
    width: 5px;
    height: 5px;
    background-color: rgba(225, 225, 225, 0.6);
    border-radius: 5px;
    left: calc(50% - 2.5px);
}
.navigation {
    color: #666;
    font-size: 14px;
    height: 100px;
    line-height: 50px;
    position: relative;
    z-index: 100;
    padding: 0 40px;
}
.d-flex-left {
    display: flex;
    align-items: left;
}
.list-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    font-size: 12px;
    padding: 10px 0;
    opacity: 0.7;
}
.list-item div {
    pointer-events: none;
}
.list-item li {
    pointer-events: none;
}
.list-item:hover {
    opacity: 1;
}
.list-item i {
    margin-right: 10px;
    font-size: 15px;
    opacity: 1;
}
.list-item i {
    font-size: 20px;
}
.list-item li {
    font-size: 16px;
    opacity: 0.7;
}
.list-item:hover li {
    opacity: 1;
}
.list-item-details {
    padding: 20px 25px;
    opacity: 0.7;
    display: none;
}
.list-item-details.active {
    display: block;
}
.bb1 {
    border-bottom: solid 0.1px #222;
}
p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}
.footer-link:hover {
    color: #fff;
    opacity: 1;
}
.footer-link {
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-top: 3px;
}
body::-webkit-scrollbar {
    display: none;
}
.signature {
    font-size: 10px !important;
    margin-top: 20px;
    background-color: #000;
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    margin-top: 100px;
    border-top: solid 0.1px #222;
}
.signature p {
    font-size: 12px;
    opacity: 0.7;
}
html::-webkit-scrollbar {
    display: none;
}
footer {
    padding: 50px 0 0 0;
}
html,
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.element:hover {
    filter: invert(1);
}
.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.std-btn {
    padding: 12px 25px;
    text-decoration: none;
    font-size: 12px;
}
.std-btn.primary {
    background-color: #fff;
    color: #000;
}
.std-btn.dark {
    background-color: #000;
    color: #fff;
}
h1 {
    font-family: "headingfont" !important;
    font-size: 65px;
    opacity: 0.9;
    font-weight: 20;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s;
}
p {
    font-size: 14px;
    opacity: 0.7;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.navigation a {
    color: #fff;
    display: block;
    float: left;
    padding: 0 10px;
    text-decoration: none;
    font-size: 12px;
    color: rgba(225, 225, 225, 0.6);
    background-color: rgba(000, 000, 000, 0.6);
}
.nav-link.active {
    color: var(--access-color);
}
.nav-link:hover {
    color: var(--access-color);
    opacity: 1;
}
.navigation i {
    color: var(--access-color);
    cursor: pointer;
}
.f-right {
    float: right;
}
.justify-content-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.align-content-right {
    display: flex;
    align-items: center;
    justify-content: right;
}
.align-content-left {
    display: flex;
    align-items: center;
    justify-content: left;
}
.hero-sect {
    height: 80vh;
    margin-top: 100px;
}
#modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(000, 000, 000, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 25px;
}
#modal-wrapper.active {
    display: flex;
}
.ui-modal-body {
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 20px;
    display: none;
}
.calender-day {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
}

#calendarBody {
    width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35px, 7fr));
    gap: 5px;
    text-align: center;
    font-size: 14px;
}
.calendar-header {
    width: 300px;
    height: 45px;
    display: flex;
    align-items: center;
    float: left;
    justify-content: center;
    float: left;
    margin-bottom: 20px;
}
.calendar-th {
    width: 40px;
    margin-bottom: 10px;
}
.day {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    float: left;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    border-radius: 50px;
    float: left;
}
.day.disable {
    opacity: 0.2;
    pointer-events: none;
}
.day.prev {
    opacity: 0.4;
    pointer-events: none;
}
.day.active {
    background: #000;
    cursor: pointer;
    color: #fff;
    opacity: 1;
}
.day:hover {
    background: #000;
    cursor: pointer;
    color: #fff;
    opacity: 1;
}
.calendarNav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendarNav i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
}
.justify-content-left {
    display: flex;
    align-items: left;
}
.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
}
.half-sect {
    width: 100%;
    height: 40vh;
}
.f-left {
    float: left;
}
.calendarNav i:hover {
    opacity: 1;
}
#currentMonth {
    width: calc(100% - 100px);
    text-align: center;
}
.bi-arrow-left,
.bi-arrow-right {
    cursor: pointer;
}
.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.view-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
}
a {
    cursor: pointer;
}
.scroll-top-indicator-wrapper {
    position: fixed;
    top: calc(50% - 50px);
    right: 40px;
    width: 5px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
}
.scroll-top-indicator {
    width: 5px;
    height: 0;
    background: #fff;
}

@keyframes slideInFromRight {
    0% {
        transform: translateY(20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.mr-1 {
    margin-right: 10px;
}

.onFocus {
    opacity: 0;
    transform: translateY(20%);
    animation: slideInFromRight 1.5s forwards 2s;
    animation-delay: 1s;
}

.reveal {
    animation-play-state: running;
}

.onFocus:not(.reveal) {
    animation-play-state: paused;
}

.onNavigation {
    opacity: 0;
    transform: translateY(20%);
    animation: slideInFromRight 1.5s forwards 2s;
    animation-delay: 1s;
}

.reveal {
    animation-play-state: running;
}
.show {
    animation-play-state: running;
}

.onFocus:not(.reveal) {
    animation-play-state: paused;
}
.calendarSect {
    display: none;
}
.calendarSect.active {
    display: block;
}
.desktop {
    display: block;
}
.mobile {
    display: none;
}
.calendar-sect {
    color: #000;
    height: 450px;
    width: 300px !important;
    float: left;
}
.sects-navigation .col-md-10 {
    padding-left: 50px;
}
.p-right-30 {
    padding-right: 30px;
}
.list-menu {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    color: #000;
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}
.list-menu div {
    position: fixed;
    width: 20px;
    height: 4px;
    background-color: #fff;
    transition: 0.3s;
    border: solid 1px #000;
}
.list-menu div:first-child {
    margin-top: -10px;
    margin-left: -2px;
    width: 18px;
}
.list-menu div:last-child {
    margin-top: 10px;
    margin-left: -6px;
    width: 14px;
    transitions: 0.3s;
}
.list-menu.on-press div {
    margin-top: 0;
    background: #fff;
    margin-left: 0;
    width: 20px;
    transform: rotate(-45deg);
}
.list-menu.on-press div:first-child {
    margin-top: 0;
    background: #fff;
    margin-left: 0;
    width: 20px;
    transform: rotate(45deg);
}
.list-menu.on-press div:last-child {
    width: 0;
    background: #fff;
    display: none;
}
.ui-mobile-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 25px;
    background-color: #000;
}
.ui-mobile-menu.active {
    display: block;
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}
input {
    background-color: transparent !important;
    border: none !important;
}
.ui-mobile-menu a {
    width: 100%;
    float: left;
    padding: 14px 0;
    border-bottom: solid 0.1px #222;
    font-weight: lighter;
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    animation: slideIn 0.5s forwards;
}
.ui-mobile-menu a:hover {
    opacity: 1 !important;
}
.ui-mobile-menu a:last-child {
    border-bottom: none;
}
.list-item-lg {
    width: 100% !important;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 0.1px #222;
    opacity: 0.7;
}
.list-item-lg:hover {
    opacity: 1;
}
.list-item-lg:last-child {
    border-bottom: none;
}
.list-item-lg h4 {
    margin: 0;
    font-size: 16px;
}
.list-item-lg span {
    display: flex;
    align-items: center;
}
label {
    font-size: 14px;
}
.round-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 0.1px #000;
    background: #000;
    color: #fff;
}
.input-group {
    width: 100%;
    border: solid 0.1px #eee;
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.input-group input,
select {
    width: calc(100% - 40px);
    font-size: 14px;
    border: none !important;
    outline: none;
    box-shadow: none;
}
.input-group i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ui-project-thumbnail {
    /* width: 100%; */
    height: 400px;
    background-color: #111;
    margin: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 100;
    padding: 20px;
}
.ui-project-thumbnail h3 {
    font-weight: 100;
}

.ui-container {
    width: 100%;
    height: 400px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    display: flex;

    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.ui-slide {
    flex: 0 0 80%;
    height: 400px;
    scroll-snap-align: start;
}
.inner-success-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.timeslots {
    display: block;
    width: 100%;
    background-color: #000;
}
.timeslots li {
    padding: 5px 10px;
    border: solid .1px #000;
    border-radius: 4px;
    float: left;
    font-size: 12px;
    list-style: none;
    margin-right: 4px;
    margin-top: 4px;
}
.timeslots li:hover {
    background-color: #000;
    color: #fff;
}
.timeslots li.active {
    background-color: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .inner-success-wrapper {
        width: 100%;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .navigation {
        padding: 15px 25px;
    }
    .justify-content-center {
        display: block;
    }
    h1 {
        font-size: 45px;
    }
    .cursor-dot {
        display: none;
    }
    .cursor-outline {
        display: none;
    }
    footer {
        padding: 30px;
        width: 100%;
    }
    footer .col-md-3 {
        width: 100%;
        margin-bottom: 40px;
    }
    .d-flex-left {
        display: block;
    }
    .offset-1 {
        margin-left: 0 !important;
    }
    .calendar-sect {
        color: #000;
        height: 270px;
        width: 350px !important;
    }
    .sects-navigation .col-md-10 {
        padding-left: 25px;
    }
    .half-sect {
        padding: 25px;
        min-height: 70vh;
    }
    .ui-modal-body {
        width: 380px;
        padding: 40px;
    }
    .p-right-30 {
        padding-right: 0;
    }
    .ui-box {
        width: calc(100% - 20px);
        padding: 40px;
        border: solid 0.1px #222;
        float: left;
        margin: 10px;
    }
    .ui-modal-body {
        border-radius: 0;
        width: 100%;
        height: 100%;
        padding: 40px 0;
    }
    #modal-wrapper {
        padding: 0;
        z-index: 3000;
    }
    .center-calendar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    #calendarBody {
        width: 350px;
        grid-template-columns: repeat(auto-fill, minmax(40px, 7fr));
    }
    .calendar-header {
        width: 350px;
    }
    .list-item-details {
        padding: 20px 20px 20px 0 !important;
    }
    .faq-box {
        padding: 0 0 0 25px !important;
        transition: 0.2s;
    }
    .faq-box.active {
        background-color: #111;
        color: #fff;
    }
    #calendarModal {
        border-radius: 20px 20px 0 0;
        padding: 30px 0;
        margin-top: 20px;
    }
}
