@charset "UTF-8";
/* CSS Document */

/* Custom css below this line */

/* Customize the scrollbars */
* {
    scrollbar-color: rgba(0,0,0,0.5);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-button {
    background: rgba(0,0,0,0.8);
    display: none;
}
::-webkit-scrollbar-track {
  background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 20px;
  border: 0 solid #111111;
}

/* Links */
a {
    color: inherit;
}
a:hover {
    text-decoration: none;
    color: #bf0060;
}
/* Use to hide recaptcha mark
.grecaptcha-badge {
    visibility: hidden;
}
*/

/* Nav-bar */
.navbar-brand img {
    max-height: 50px;
}
.nav-link {
    color: inherit;
}
.nav-link:hover, .navbar-nav .nav-link.show {
    color: #870066 !important;
}

/* Titles & Fonts */
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.font-one {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Forms */
.message-box {
    height: 150px !important;
}

/* Main Color */
.bg-main {
    background-color: #1b0031;
    color: #ffffff;
}
.btn-main {
    background-color: #1b0031;
    color: #ffffff;
}
.btn-main:hover {
    background-color: #bf0060;
    color: #ffffff;
}
.text-main {
    color: #1b0031;
}

/* Accent Color */
.bg-accent {
    background-color: #870066;
    color: #ffffff;
}
.btn-accent {
    background-color: #870066;
    color: #ffffff;
}
.btn-accent:hover {
    background-color: #bf0060;
    color: #ffffff;
}
.text-accent {
    color: #870066;
}


/* Backgrounds */
.bg-landing {
    background-image: url('../../images/img-ship.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.bg-video {
    object-fit: cover;
}


/* Styling for special screen sizes */

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}
/* Small Devices, Tablets */
@media only screen and (min-width : 576px) {

}
/* Medium Devices, Tablets */
@media only screen and (min-width : 768px) {

}
/* Large Devices, Desktops */
@media only screen and (min-width : 992px) {
    .sidebar-dashboard {
        min-height: calc(100vh - 2.3rem);
    }
    .bg-menu {
        background-color: transparent;
    }
}
/* Extra Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
