 * {
         font-family: "Winky Sans", sans-serif;
         font-optical-sizing: auto;
         font-style: normal;
 }

#footer {
    min-height: 75px;
}


.line {
    border-bottom: 2px solid #AE3431;
    margin-top: 5px;
    width: 100%;
}

.grey-transparent {
    background-color: #D9D9D9;
}

button {
    border-radius: 0;
}

.right-align {
    margin: 0;
    right: 0;
    margin-left: auto;
    padding: 0;
}
#login-box {
    width: auto;
    height: fit-content;
    padding: 0;
    margin: 0;
    text-align: center;

}

.red-button {
    background-color: #AE3431;
    border-radius: 0;
    border-color: transparent;
    width: 125px;
}

 .red-button:hover {
     background-color: #601c1a;
 }
#l1-btn {
    border-radius: 0;
    border-color: transparent;
    width: 125px;
}

#m1-btn {
    border-radius: 0;
    border-color: transparent;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
}

.bg-blue {
    background-color: #192338;
}

#navbar-custom {
    text-decoration: none;
}


nav ul {
    margin: 0;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 30px;
}
nav ul li:hover {
    cursor: pointer;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

nav ul li a:hover {
    transition: 0.25s;
    text-decoration: none;
    color: #b3b3b3;
}


/* Dropdown Button */
.droptext {
    text-decoration: none;
    color: #fff;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 10px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}


#facebook {
    text-decoration: none;
}


/*Carousel*/

 .carousel-item img {
     opacity: 10;
 }

 .carousel--img {
     width: 100%;
     height: 100%;
    object-fit: cover;
     overflow: clip;
 }


 .overlay {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     height: 100%;
     width: 100%;
     opacity: 0;
     transition: .5s ease;
     background-color: rgba(34, 34, 34, 0.78);
 }

 .container:hover .overlay {
     opacity: 1;
 }

 .carousel--text {
     color: white;
     font-size: 20px;
     position: absolute;
     top: 50%;
     left: 50%;
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
     text-align: center;