html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
/*  margin-bottom: 60px;*/
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/* Navbar Base */
/* NAVBAR BASE */
.navbar {
    background: linear-gradient(135deg, #000, #1b1b1b);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    width:100%;
    margin: auto;
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */
.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.nav-left img{
    width :200px;
    height:96px;
}
.logo span {
    color: #aaa;
}

/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
}

/* NAV LINKS DESKTOP */
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    
}
    .nav-links a {
        color: #fff !important;
    }
    .nav-links a,
    .dropdown span {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        cursor: pointer;
    }

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top:22px;
    left: 0;
    min-width: 180px;
    background: #111;
   
    border-radius: 6px;
    display: none;
    flex-direction: column;
}

    .dropdown-menu a {
        padding: 12px 16px;
        
    }
    .dropdown-menu a:hover {
        border: 1px solid white;
        border-radius:6px;
        box-shadow:0px 0px 2px 2px #fff;
    }
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 18px;
}

    .menu-toggle span {
        width: 22px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
    }


.navbar a,
.navbar a:visited,
.navbar a:hover,
.navbar a:active,
.navbar a:focus,
.navbar .dropdown span,
.navbar .dropdown span:hover,
.navbar .dropdown span:active,
.navbar .dropdown span:focus {
    color: #ffffff;
    text-decoration: none;
}

/* ACTIVE NAV ITEM */
.nav-links a.active,
.dropdown.active > span {
    font-weight: 600;
    position: relative;
}

    .nav-links a.active::after,
    .dropdown.active > span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }


/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        max-width: 280px;
        height: calc(100vh - 64px);
        background: linear-gradient(180deg, #000, #1a1a1a);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.35s ease;
    }

        .nav-links.open {
            right: 0;
        }

    .dropdown-menu {
        position: static;
        background: #111;
        width: 100%;
    }
}
/*
@media (max-width: 520px) {






}*/