/* Banner Image */
.mybanner {
  min-width: 100%;
}

/* Menu */

/* Override the lila background with orange */
.container-header {
    background-color: #ff6600;
    background-image: none;
}

/* Text should now be white */
.container-header .mod-menu {
    color: #fff;
}

/* We add padding and radius so that on hover there is a nice background */
.container-header .mod-menu a {
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px; 
    padding: 3px 15px;
    color: #fff;
}

/* On hover there should be a black background*/
.container-header .mod-menu a:hover {
    background-color: #000;
}


/* We need to change the color of the Hamburger Menu because white on white is not good */
.container-header .navbar-toggler {
    color: #fff;
    border: 1px solid #fff;
}

.back-to-top-link {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 10000;
    padding: .5em;
    color: #ff6600;
    pointer-events: all;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: .25rem;
    opacity: 0;
    transition: opacity .2s ease-in;
}
.back-to-top-link:hover, .back-to-top-link:focus {
  color: var(--white, white);
  background-color: #000;
  border-color: var(--white, white);
}

a {
  color: #ff6600;
  text-decoration: underline;
}
a:hover {
  color: #000;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
.header {
    background-color: #ff6600;
	border-bottom: 10px solid #000;
	padding: 5px;
	border-bottom-right-radius: 150px 100px;
 /*   border-bottom-right-radius: 50px 70px; */

}