@charset "UTF-8";
/* CSS doc for tvpro staff 072620 */

/* basic page css */

/*******info from w3 styles  start******/


/* hamburger driopdown wetalkproduction  080520*/

.topnav {
overflow: hidden;
background-color: black;
color: white;
border-radius:20px;
}

.topnav a {
float: left;
display: block;
background-color: black;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
border-radius:20px;
}

.active {
background-color: #4CAF50;
color: white;
border-radius:20px;
}

.topnav .icon {
display: none;
}

.dropdown {
float: left;
overflow: hidden;
background-color: black;
color: white;
}

.dropdown .dropbtn {
font-size: 17px;    
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
border-radius:20px;
}

.dropdown-content {
display: none;
position: absolute;
background-color: white;
color: black;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius:20px;
}

.dropdown-content a {
float: none;
background-color: white;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
border-radius:20px;
}

.topnav a:hover, .dropdown:hover .dropbtn {
background-color: red;
color: white;
border-radius:20px;
}

.dropdown-content a:hover {
background-color: red;
color: white;
border-radius:20px;
}

.dropdown:hover .dropdown-content {
display: block;
border-radius:20px;
}

/******* MEDIA MEDIA MEDIA ******/

@media screen and (max-width: 600px) {
.topnav a:not(:first-child), .dropdown .dropbtn {
display: none;
border-radius:20px;
  }
.topnav a.icon {
float: right;
display: block;
background-color: white;
color: black;
  }
}

@media screen and (max-width: 600px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
border-radius:20px;
  }
.topnav.responsive a {
float: none;
display: block;
text-align: left;
border-radius:20px;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
border-radius:20px;
  }
}

/* end  hamburger driopdown wetalkproduction */	

/* Responsive layout - when the screen is less than 
400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.topnav a {
float: none;
width: 100%;
  }
   
}


