body {
    /* body top margin so body content isnt' obscured by header */
    margin: 100px 0px 0px 0px;
	font-family: roboto, Arial, Helvetica, sans-serif;
    font-size: 16px;
	line-height: 140%;
}

p { font-family: roboto, Arial, Helvetica, sans-serif;  line-height: 140%; color: black; max-width: 700px; }
ul li { font-family: roboto, Arial, Helvetica, sans-serif;  line-height: 140%; color: black; max-width: 700px; }

.header {
 font-family: VERDANA, Helvetica, sans-serif, Arial;
 font-weight: bold;
 background:white;
 /*background-image: linear-gradient(to right, #000a98, #00B8FF); */
 color: black;
 font-size: 16px;
 height:40px;
 padding: 10px 0px 0px 10px;
 text-align:left;
}


  
.button3 {
  display: inline-block;
  border-radius: 8px;
  background-color: black;
  border: none;
  color: white;
  text-align: left;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  border: white 2px solid;
 
  font-weight: bold;
  padding: 3px 10px 3px 10px;
 /* width: 100px;  */  
  transition: all 0.5s;
  cursor: pointer;
  margin: -12px 0px 0px 0px;
}

.button3 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button3 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button3:hover {  background: black; }

.button3:hover span {  padding-right: 15px;  color: red; }

.button3:hover span:after {  opacity: 1;  right: 0; }


div#clear {	clear:both;	margin-top:-1px;}



* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 0px 5px 10px 15px;
  height: 200px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


a { border-bottom: none; underline: none; text-decoration: none; color: red; }
a:hover { border-bottom: none; text-decoration: none; color: black;  } 


.head {	font-size: 4.0vw; font-family: oswald; font-weight: 700; line-height: 110%; color: red; text-align: left; underline: none; text-decoration: none;
	}

h1 { font-family: Oswald; font-weight: 700; line-height: 110%; font-size: 36px;padding: 0px; color: red;}   
h2 { font-family: Oswald; font-weight: 700; line-height: 33px; font-size: 32px;}   
h3 { font-family: Oswald; font-weight: 700; line-height: 100%; font-size: 24px;}  

h4{ font-family: oswald; color: white; font-size: 18px; border-left: 24px solid red; padding: 4px; width: 295px; background: black; font-weight: 700;} 

/* h4 { font-family: Oswald; font-weight: 400; line-height: 120%; font-size: 14px;} */


h5 { font-family: Oswald; font-weight: 700; line-height: 100%; font-size: 12px;}


.color { color:#03C; }


/* ########## Fixed header ########## */
#ddfixedheader {
    position: fixed;
    display: flex;
    left: 0;
    top: 0;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background:#D8D2CD;
    border-bottom: 5px solid purple;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    font-family:Oswald; font-weight: 400;font-size:22px; color: red;
    /* use Google font */
    transition: all .5s;
}

#ddfixedheader a {   font-family: Oswald; font-size: 22px; color: red; }


#ddfixedheader, #ddfixedheader * {
    box-sizing: border-box;
}

/* ########## Left logo DIV area ########## */
#ddfixedheader #logoarea {
    width: 130px;
    margin-right: 10px;
	padding: 10px 0px 0px 20px;
}

#ddfixedheader #logo img {
    width: 100%;
    height: auto;
    transition: all -.5s;
}

/* ########## Uneven Line Menu ########## */
div.uneven-hamburger-icon {
    width: 37px;
    /* keep width/height ratio to 1.56 if changing dimensions */
    height: 24px;
    position: relative;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    display: none;
    margin-right: 25px;
    justify-content: space-between;
}

div.uneven-hamburger-icon > div {
    width: 80%;
    height: 3px;
    background: black;
    transform-origin: 0 50%;
    transition: all .5s;
}

div.uneven-hamburger-icon > div.line1 {
    width: 100%;
}

/* ########## Center UL Menu inside Fixed Header ########## */

#ddfixedheader ul#ddmainulmenu {
    margin-left: auto;
    margin-right: 10px;
    position: relative;
}

#ddfixedheader ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#ddfixedheader ul#ddmainulmenu a {
    text-decoration: none;
    padding: 5px 8px;
    display: inline-block;
    color: #484848;
}

#ddfixedheader ul#ddmainulmenu > li {
    /* top level LIs */
    display: inline-block;
    position: relative;
}

#ddfixedheader ul#ddmainulmenu li > a {
    /* top level LI links */
    border-bottom: 5px solid #eee;
}

#ddfixedheader ul#ddmainulmenu > li:hover > a {
    /* top level LI links */
    background: #eee;
    border-bottom-color: gray;
}

#ddfixedheader ul#ddmainulmenu li > a:after {
    /* Arrow beneath top level LI links  */
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #eee;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#ddfixedheader ul#ddmainulmenu li:hover > a:after {
    /* Arrow beneath top level LI links hover style */
    border-top-color: gray;
}

#ddfixedheader ul#ddmainulmenu li > a:only-child {
    /* style for top level LI links with no sub UL */
    border-bottom: none;
}

#ddfixedheader ul#ddmainulmenu li > a:only-child:after {
    /* style for top level LI links with no sub UL */
    display: none;
}

#ddfixedheader ul#ddmainulmenu > li > a:hover {
    background: #eee;
    color: black;
}

#ddfixedheader ul#ddmainulmenu > li ul {
    /* sub ULs style */
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid gray;
    background: white;
    overflow: hidden;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 4px 4px 2px rgba(0,0,0,.1);
    transform: translateY(10%);
    transition: opacity .3s, transform .3s, visibility 0s .3s;
}

#ddfixedheader ul#ddmainulmenu > li:hover > a {
    color: black;
}

#ddfixedheader ul#ddmainulmenu > li:hover ul {
    opacity: 1;
    overflow: auto;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity .5s, -webkit-transform .5s, visibility 0s;
    transition: opacity .5s, transform .5s, visibility 0s;
}

#ddfixedheader ul#ddmainulmenu > li ul a {
    display: block;
    padding: 10px;
}

#ddfixedheader ul#ddmainulmenu > li ul a:hover {
    background: #eee;
    color: black;
}

/* ########## Right DIV containing search and social icons ########## */
#ddfixedheader #rightarea {
    font-size: 20px;
}

#ddfixedheader #rightarea ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#ddfixedheader #rightarea ul li{
    display: inline;
}

#ddfixedheader #rightarea ul li > *{
    padding: 10px;
}

#ddfixedheader #rightarea ul li label {
    cursor: pointer;
}

/* ########## Fixed header when user begins to scroll down ########## */
html.collapseheader #ddfixedheader {
    position: fixed;
    border-bottom-width: 0;
    border-bottom-color: white;
    box-shadow: 0 2px 2px #eee;
    opacity: .9;
}

/* ########## Logo area when user begins to scroll down ########## */
html.collapseheader #ddfixedheader #logoarea {
    width: 110px;
}

html.collapseheader #ddfixedheader #logo img {
    width: 110px;
}

/* ########## Shared style for mobilemenucontainer and ddsearchcontainer DIVs ########## */
div#ddmobilemenucontainer, div#ddsearchcontainer {
    position: fixed;
    width: 100%;
    z-index: 10000;
    display: block;
    background: purple;
    left: -100%;
    /* initially position container out of view */
    top: 90px;
    /* shift container downwards so the header is still visible when search is shown */
    bottom: 0;
    padding-top: 20px;
    opacity: 0;
    cursor: crosshair;
    text-align: center;
    font-family:Oswald; font-weight: 400;font-size:17px;
    /* use google font */
    -webkit-transform: scale(.9) translate3d(-0, -50px, 0);
    transform: scale(.9) translate3d(-0, -50px, 0);
    -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s .5s;
    transition: transform .5s, opacity .5s, left 0s .5s;
}

/* ######### Mobile Menu Container DIV style ######### */
div#ddmobilemenucontainer {
    text-align: left;
    overflow: auto;
}

div#ddmobilemenucontainer, div#ddmobilemenucontainer * {
    box-sizing: border-box;
}

    /* ########## Accordion Menu main UL style ########## */

div#ddmobilemenucontainer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 350px;
    position: relative;
    margin: 0 auto;
}

div#ddmobilemenucontainer ul li {
    display: block;
    posiion: relative;
}

div#ddmobilemenucontainer ul li a {
    width: 100%;
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    box-sizing: border-box;
}

div#ddmobilemenucontainer ul li a:hover {
    background: rgba(255,255,255,1);
    color: black;
}

div#ddmobilemenucontainer ul li a.header {
    /* style for accordion headers */
    background: navy;
    color: white;
    outline: none;
}

div#ddmobilemenucontainer ul li a span.accordionarrow {
    /* style for right arrow span added to headers */
    position: absolute;
    right: 10px;
    transition: all .2s;
}

div#ddmobilemenucontainer ul li a.header.active {
    /* style for accordion header when expanded */
    background: black;
}

div#ddmobilemenucontainer ul li a.active span.accordionarrow {
    /* style for right arrow span when header expanded */
    transform: rotate(90deg);
}

div#ddmobilemenucontainer > ul ul {
    /* hide sub ULs inside accordion by default */
    display: none;
}

div#ddmobilemenucontainer > ul li ul a {
    padding-left: 30px;
}

/* ########## DD Search Container DIV ########## */
div#ddsearchcontainer div {
    padding: 5px;
    color: white;
}

div#ddsearchcontainer form {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: all .5s 0s;
    transition: all .5s 0s;
}

div#ddsearchcontainer form input[type="text"] {
    width: 90%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 10px;
    border: none;
    border-bottom: 2px solid gray;
    outline: none;
    font-size: 3em;
    background: #eee;
}

/* ########## Uneven Hamburger Icon style ########## */
html.openddmobilemenu div.uneven-hamburger-icon div.line1 {
    width: 80%;
    transform: rotate(45deg);
	
}

html.openddmobilemenu div.uneven-hamburger-icon div.line2 {
    opacity: 0;
    transform: translate3d(-10px,0,0);
}

html.openddmobilemenu div.uneven-hamburger-icon div.line3 {
    transform: rotate(-45deg);
}

/* ########## Mobile Menu and Search Containers style when visible ########## */
html.openddmobilemenu div#ddmobilemenucontainer, html.opensearch div#ddsearchcontainer {
    left: 0;
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s 0s;
    transition: transform .5s, opacity .5s, left 0s 0s;
}

html.opensearch div#ddsearchcontainer form {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all .5s .5s;
}

/* ########## Media Query Breakpoints ########## */
@media (max-width: 900px) 
	

	
	
	

{
    #ddfixedheader ul#ddmainulmenu {
        display: none;
    }

    div.uneven-hamburger-icon {
        display: flex;
        margin-left: auto;
    }
	
	
/* ########## Left logo DIV area ########## */
#ddfixedheader #logoarea {
    width: 140px;
    margin-right: 10px;
	padding: 5px 0px 0px 20px;
}

#ddfixedheader #logo img {
    width: 100%;
    height: auto;
    transition: all -.5s;
}

	
	
	
	
h1 { font-family: Oswald; font-weight: 700; line-height: 110%; font-size: 24px; padding: 0px; color: red;}   
h2 { font-family: Oswald; font-weight: 700; line-height: 110%; font-size: 16px;}   
h3 { font-family: Oswald; font-weight: 700; line-height: 120%; font-size: 14px;}  
h4 { font-family: Oswald; font-weight: 700; line-height: 120%; font-size: 14px;} 
h5 { font-family: Oswald; font-weight: 700; line-height: 100%; font-size: 10px;}
	
}

@media (max-width: 480px) {
	
		
    #ddfixedheader #rightarea ul li:not(:first-of-type) {
        display: none;
    }

    div#ddsearchcontainer form input[type="text"] {
        width: 95%;
    }
}
