html, body {
    scroll-behavior: smooth;
    --scroll-duration: 1s;
    overflow-x: clip;
}
.header,
.screenshots {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.features {
    background-color: #028090;
}
.features > div > p.fs-2 {
    color: #71c8fd;
}
.text-darkblue {
    color: #028090;
}
.InfratieLogo,
.OKStateLogo {
    width: 250px;
    height: auto;
}
.DatabaseIcon,
.ServerIcon,
.DashboardIcon,
.AnalysisIcon,
.ManagementIcon,
.GISIcon {
    width: 150px;
    height: auto;
}
ul {
    list-style-type: none;
}
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.nav-item .nav-link.active {
    color: #028090;
    transition: color ease-in-out .2s;
}
.nav-item {
    border: none;
    position: relative;
}
.nav-item:hover {
    border: none;
}
.nav-item::after,
.nav-item:has(a.active)::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    left: 50%;
    bottom:0;
    background-color: #028090;
    transition: all ease-in-out .2s;
}
.nav-item:hover::after,
.nav-item:has(a.active)::after {
    width: 30%;
    left: 35%;
}

.fixed-top {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#login {
    display: none;
}



/* Chat Button */

.chat-btn {
    position: fixed;
    right: 14px;
    bottom: 30px;
    cursor: pointer
}

.chat-btn .fa-xmark {
    display: none
}

.chat-btn i {
    transition: all 0.9s ease
}

#check:checked~.chat-btn i {
    display: block;
    pointer-events: auto;
    transform: rotate(180deg)
}

#check:checked~.chat-btn .fa-comment {
    display: none
}

.chat-btn i {
    font-size: 22px;
    color: #fff !important
}

/* .chat-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #028090;
    color: #fff;
    font-size: 22px;
    border: none
} */

.wrapper {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 300px;
    background-color: #fff;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.4s
}

#check:checked~.wrapper {
    opacity: 1
}

.chatheader {
    padding: 13px;
    background-color: #028090;
    border-radius: 5px 5px 0px 0px;
    /* margin-bottom: 10px; */
    color: #fff
}

.chat-form {
    padding: 15px
}

.chat-form input,
textarea,
button {
    margin-bottom: 10px
}

.chat-form textarea {
    resize: none
}

.form-control:focus,
.btn:focus {
    box-shadow: none
}

/* .btn,
.btn:focus,
.btn:hover {
    background-color: blue;
    border: blue
} */

#check {
    display: none !important
}

.wrapper .chatheader .fa-solid.fa-xmark {
    cursor: pointer;
}

.overlay {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.alert {
    --bs-alert-padding-x: 1.25rem;
    --bs-alert-padding-y: 1.25rem;
}

.yellowtext {
    color: #DFBF3B; !important;
}

.about_subhead {
    color: #00707F;
    font-size: 1.5rem !important;
    font-weight: normal !important;
}

@media (min-width: 992px) {
    #login {
        position: absolute !important;
        right: 0 !important;
        padding-right: 0.25rem !important;
        display: block;
    }
    .nav-item::after,
    .nav-item:has(a.active)::after {
        content: '';
        position: absolute;
        width: 0px;
        height: 3px;
        left: 50%;
        bottom:0;
        background-color: #028090;
        transition: all ease-in-out .2s;
    }
    .nav-item:hover::after,
    .nav-item:has(a.active)::after {
        width: 100%;
        left: 0;
    }
    .navbar-brand {
        display: none;
    }
}