*{
        margin: 0px !important; 
}
body{
        margin: 0px;
        padding: 0px;
        scroll-behavior: smooth;
}
html {
        scroll-behavior: smooth;
}
#go-to-top{
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 100;
}

.scrollbar-property::-webkit-scrollbar {
        width: 0.4em;
        height: 0.4em;
}
.scrollbar-property::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        padding: 2px;
}
.scrollbar-property::-webkit-scrollbar-thumb {
        background-color: #00A4EF;
        border-radius: 4px;
}

#nav-inner{
        position: fixed;
        z-index: 30;
        width: 100vw;
        background-color: rgb(255,255,255);
        border-bottom: 2px solid #00A4EF; 
}
#nav-drawer{
        margin-top: 65px;
        position: absolute;
        height: 100vh;
        width: 100vw;
        z-index: 100;
        position: fixed;
        transition-duration: 1s;
        background-color: rgba(255, 255, 255, 0.95);
        left: 100vw ;
        display: none;

}
.nav-drawer-show{
        transition-duration: 1s;
        left: 10vw !important;
}
#nav-drawer-open-button, #nav-drawer-close-button{
        display: none;
}

#inner-links{
        margin-left: auto !important;
        float: right;
}

.my-nav-link{
        padding: 10px;
        color: black;
        font-size: 15px;
        text-decoration: none !important;
}
.my-nav-link:hover{
        color: black !important;
        padding-bottom: 3px;
        border-bottom: 3px solid #00A4EF;
}
#nav-brand-heading{
        font-size: 25px;
}


#footer{
        border-top: 3px solid #00A4EF;
        background-color: rgba(0,0,0,0.95);
        background-image: url("../svg/wave.svg");
        background-size: cover; 
}


.feature-card{
        height: 200px;
        box-shadow:
                rgba(0, 0, 0, 0.024) 0px 0px 0px 1px,
                rgba(0, 0, 0, 0.05) 0px 1px 0px 0px,
                rgba(0, 0, 0, 0.03) 0px 0px 4px 0px,
                rgba(0, 0, 0, 0.1) 0px 10px 20px 0px;
        border-radius: 10px;
        border-bottom: 2px solid #00A4EF;
        transform:
                perspective(800px)
                translate3d(0px, 0px, -20px)
                rotateX(2deg)
                scale(0.95, 0.95);
        transition: 0.4s ease-in-out transform;
}
.feature-card:hover{
        transform: translate3d(0px, 0px, -25px);
}

/* MEDIA QUERY */
@media only screen and (max-width: 770px) {
        #nav-drawer-open-button, #nav-drawer-close-button, #nav-drawer{
                display: block; 
        }
        #inner-links{
                display: none;
        }
}


