/* ----------------------------------------------------------------
	
	Section

-----------------------------------------------------------------*/
section 
{
    padding: 0px;
    position: relative;
    z-index: 0;
    width: 100%;
    overflow: hidden;
    background-color: white;
}

/* ----------------------------------------------------------------
	
	Navbar

-----------------------------------------------------------------*/
.bg-header
{
    background-color: white;
    border-bottom: 3px solid rgb(255, 150, 98);
}

.navbar img{
    width:150px;
    height:auto;
    padding: .2rem;
}

.navbar-light .navbar-nav .nav-link 
{
    position: relative;
    font-family: "Raleway", "Helvetica", "Arial", sans-serif;
    /* padding: 11px 14px; */
    font-size: 12px;
    font-weight: 700;
    color: black;
    border-radius: 5px;
    border-width: 0px;
    border-style: solid;
    transition: all .3s ease;
    line-height: normal;
}

.navbar-nav{   
    margin-right:2rem;
}

.dropdown:hover > .dropdown-menu{
    display:block;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: white;
    border: 1px solid transparent;
    border-radius: .25rem;
    filter:opacity(30%);
}

@media (min-width:1024px) and (max-width:1219px) {
    .navbar-light .navbar-nav .nav-link
    {
        font-size: 11px;
        /* padding:0 12px; */
        letter-spacing:0px;
    }
    
    .dropdown-menu{
        font-size:11px;
    }
}

@media (max-width:768px){
    .navbar img{
        padding:0;
        margin-left: 2rem;
        width: 100px ;
        height:auto;
    }
}

.btn-register{
    border-width: 1px;
    border-style: solid;
    /* padding: 5px 1.5625rem; */
    font-size: 1rem;
    line-height: 1.3;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    color:white;
    /* background-color: #5F7D8C; */
    background-color:orange;
    text-transform:uppercase;
}

.btn-register:hover{
    background-color: #CAD0D3; 
    color:white; 
}

.a-register, .a-register:hover{
    padding: 0px;
    font-size: 14px;
    line-height: 1.3;
    font-family: Roboto, sans-serif;
    color: rgb(255, 150, 98);
    font-style: normal;
    font-weight: 400;
    text-align: center;
    background-color: transparent;
    border-radius: 0px;
    text-transform:uppercase;
    text-decoration:underline;
}


/* ----------------------------------------------------------------
    FOOTER
-----------------------------------------------------------------*/

#footer {
    clear: both;
    position: relative;
    bottom: 0;
    width: 100%
}

#footer .copyright-content {
    background-color: black;
    text-align:center;
    border-top: 0px solid #e5e5e5;
    border-top: 0px solid #ddd;
    min-height: 1px;
    padding: 5px 2rem;
    cursor:default;
}

#footer .copyright-content .copyright-text {
    color: #FFF;
    font-size: 13px;
    text-transform: uppercase;
    margin:1rem 0;
}

#footer .footer-logo{
    margin:1rem 0 ;
}

#footer .quick-link a{
    padding:0 10px;
    color:white;
}

.mt-5{
    margin-top:5rem;
}

.pt-10{
    margin-top:20px;
}

.nav-item{
    text-align: center;
}

@media (max-width:991px){
    .navbar-nav {
        margin-right: 0;
    }
}