@charset "UTF-8";
/* CSS Document */
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Times New Roman", Georgia, Serif;
   
}

#brand {
	float: left;
	line-height: 50px;
	color: red;
	font-size: 25px;
	font-weight: bolder;
    margin: 0 0 0 20px;
    
}
#brand a {
	float: left;
	line-height: 50px;
	color: red;
	font-size: 25px;
	font-weight: bolder;
    margin: 0 0 0 6px;
}
.style-logo {
    margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 98%;
}

.style-nav{
	margin-left: auto;
	margin-right: auto;
	width: 90%;
   	display: block;

}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

nav ul{
    display:flex;
    flex-direction: column;
}
nav ul li{
    list-style-type: none;
    
   
}
nav ul li a{
	padding-top: 2rem;
	padding-right: 2rem;
	padding-left: 1rem;
	padding-bottom: 2px;
	display: block;
	text-decoration: none;
	color: white;
    border-color: #818181;
    border-style: solid;
    
    
   }
nav ul li a:hover{
    background:rgba(0,0,0, .25);
    
}
nav ul li:hover{
    background:rgba(0,0,0, .25);
}

    .has-childern ul li a{
        padding-left:5rem;
        color:red;
        border-color: white;
        border-style: solid;
    }

.has-childern ul li a:hover {
     
    background:rgba(255,0,0, .25);
     
}


.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}

.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

.col:before, .col:after {
	content: "";
	display: table;
}

.col:after {
	clear: both;
}



