@charset "utf-8";
/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: rgba(0,79,206,1.00);
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #ecf0f1;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: rgba(0,40,104,1.00);
    color: #fff;
    top: 10pc;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: #ecf0f1;
    color: #fff;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
#hero {
    padding-left: 0px;
    padding-right: 0px;
	color: #4C0FBD;
    position: relative;
    background-size: auto auto;
}
#hero h2 {
    position: absolute;
    text-shadow: 4px 6px rgba(180,138,96,1.00);
    bottom: 21%;
    left: 21%;
    font-size: 2rem;
    color: rgba(223,225,212,1.00);
}

#hero h1 {
    position: absolute;
    color: rgba(223,225,212,1.00);
    text-shadow: 6px 10px rgba(180,138,96,1.00);
    font-size: 3rem;
    top: 12%;
    left: 17%;
    bottom: 0%;
}

@media screen and (min-width:576px){
#hero h1 {
}
#hero h2 {
    bottom: 0%;
}


}

@media screen and (min-width:769px){
#hero h2 {
    bottom: 0%;
    left: 26%;
    font-size: 2rem;
}

}

@media screen and (min-width:960px){
#hero h2 {
    font-size: 3rem;
    bottom: 0%;
    left: 23%;
}
#hero h1 {
    font-size: 4rem;
}


}

@media screen and (min-width:1200px){
#hero h1 {
    font-size: 6rem;
    left: 25%;
    top: 9%;
}
#hero h2 {
    font-size: 5rem;
    bottom: 26%;
    left: 12%;
}


}
