@charset "utf-8";
/* CSS Document */

/*for screen width <790px hamburger menu*/
	
.contactbar {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;	
	align-items: center;
	padding: 0 10px;
	background-color: grey;     /*fallback for IE which doesn't support CSS variables*/
	background-color: var(--optc-red);
	height: 40px;
}	
.contactbar {
	border-bottom: thin solid white;
	}	
.contactbar a {
	color: var(--optc-yellow);
	font-size: 0.8em;
}
.contactbar a:hover {
	color: var(--optc-yellow);
}
img.fb, img.insta {
	padding: 0px 15px;
	height: 25px;
	width: auto;
}
img.fb:hover, img.insta:hover {
	opacity: 0.6;
}

.topbar {
	display: inline-block;
	width: 100%;
	padding: 0px;
}
.logo {
	height: 100px;
	width: auto;
	margin: 0;
	padding: 10px 0 0 30px;
}
.topnav {
	overflow: hidden;
	display: inline-block;
	float: right;
	padding: 0px;
}
.topnav a {
	float: left;
	display: block;
	color: white;
  	text-align: center;
 	 padding: 18px 15px 17px 15px;
  	text-decoration: none;
  	font-size: 16px;
}
.topbarlogo{
	display: inline-block;
	width: 40%;
}
.topbarlogo.responsive {
	display: none;
}
.topnav.responsive {
	width: 100%;
}
.topnav.responsive a.nav-home {
	display: block;
}
.topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
	color: white;
}
.topnav a.nav-home {
	display: none;
}
.topnav a.icon.open {
    float: right;
    display: block;
	color: var(--optc-red);
	padding: 0px 20px 0 0;
	font-size: 60px;
}
.topnav a.icon.close {
    display: none;
}
.menu-arrow {
	display: inline;	
}
.topnav.responsive .dropbtn a {
	padding: 0px;
	margin: 0px;
	border-bottom: none;
}
.topnav.responsive a.icon.close {
    float: right;
   	display: block;
	background-color: var(--grey-mid);
	color: white;
}
.topnav.responsive a.icon.open {
    display: none;
}
a.icon {
	font-size:26px;
	padding: 15px 15px 8px 15px;
}
.topnav, .topnav.responsive, a.icon {
	background-color: white;
}
.topnav.responsive {
	background-color: var(--grey-mid);
}	
.topnav a.icon:hover {
	background-color: white;
}
.topnav a:hover, .dropdown:hover .dropbtn {
  	background-color: var(--optc-red);
  	color: var(--optc-yellow);
	cursor: pointer;
}
.dropdown {
    float: left;
}
.dropdown .dropbtn {
	display: none;
    font-size: 16px;    
    border: none;
	background-color: transparent;
    font-family: inherit;
	padding: 21px 15px;
}
.dropbtn a {
	padding: 0px;
	margin: 0px;
	border-bottom: none;
}
.dropdown-content {
    display: none;
    position: absolute;
	background-color: var(--optc-red);
    min-width: 160px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.29);
    z-index: 1;
}
.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
	border-bottom: 0.5px solid var(--grey-mid);
    text-decoration: none;
    display: block;
    text-align: left;
}		
.dropdown-content a:hover {
    color: var(--optc-yellow);
}
.dropdown:hover .dropdown-content {
    display: block;
}
.topnav.responsive {
	position: relative;
}
.topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
}
.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
	border-bottom:  thin solid var(--grey-lt);
	padding: 15px 15px;
}
.topnav.responsive a.icon {
	border-bottom:  none;
	padding: 9px 15px 5px 15px;
}
	
.topnav.responsive .dropbtn {
	border-bottom:  thin solid var(--grey-lt);	
	padding: 15px 15px;
}
.topnav.responsive .dropdown {
	float: none;
}
.topnav.responsive .dropbtn:hover {
	border-bottom:  thin solid var(--grey-lt);
}
.topnav.responsive .dropdown-content {
	position: relative;
}
.topnav.responsive .dropdown-content a {
	padding-left: 30px;
	border-bottom:  thin solid var(--grey-lt);
}
.topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
	border-bottom:  thin solid var(--grey-lt);
}
	
