.codrops-header {
  margin: 0 auto;
  padding: 2em 0 0;
  text-align: center;
}

.codrops-header h1 {
  margin: 0;
  font-size: 2.5em;
}


.codrops-header h1 span {
  display: block;
  padding: 0 0 0.6em 0.1em;
  font-size: 0.6em;
  opacity: 0.7;
}

/* To Navigation Style */
.codrops-top {
  width: 100%;
  font-size: 0.69em;
  line-height: 2.2;
  background: #fff;
}

.codrops-top a {
  display: inline-block;
  padding: 0 1em;
  text-decoration: none;
}

.codrops-top span.right {
  float: right;
}

.codrops-top span.right a {
  display: block;
  float: left;
}

.codrops-icon:before {
  margin: 0 4px;
  text-transform: none;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
  content: "\e001";
}

.codrops-icon-prev:before {
  content: "\e004";
}

.codrops-demos {
  margin: 30px auto 0;
  padding: 30px 0;
}

.codrops-demos a,
section button {
  display: inline-block;
  background: #a9a9a9;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.codrops-demos a:hover,
.codrops-demos a:active,
.codrops-demos a.current-demo {
  background: #777;
}

section {
  padding: 1em 2em 5em;
  text-align: center;
  font-size: 1.5em;
}

section p {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.related a img {
  max-width: 100%;
}

.related a h3 {
  margin: 0;
  padding: 0.5em 0 0.3em;
  max-width: 300px;
  text-align: left;
  font-size: 65%;
}

@media screen and (max-width: 25em) {
  .codrops-icon span {
    display: none;
  }
}

/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
}

/* Overlay closing cross */
.overlay .overlay-close {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
  background: transparent;
}

/* Menu style */
.overlay nav {
  text-align: right;
  padding: 0 10%;
  position: relative;
  top: 50%;
  height: auto;
  font-size: 54px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}

.overlay ul li {
  display: block;
  height: 20%;
  height: calc(100% / 5);
  min-height: 54px;
}

.overlay ul li a {
  display: block;
  color: #ffffff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 0;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .overlay ul li a {
    font-size: 30px;
  }
}

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #ea3f43;
}

/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 34px;
  }
}

/*Burger menu*/
* {
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  box-sizing: border-box;
}

#hamburger span {
  display: block;
  background: #ffffff;
  border-radius: 2px;
}

#cross span {
  display: block;
  background: #ffffff;
  border-radius: 2px;
}

#menuNavHolder {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100px;
  height: 100px;
}

.icon-logo.active {
  -webkit-filter: invert(1);
          filter: invert(1);
}

#menu-toggle {
  width: 100px;
  height: 100px;
  top: 15px;
  right: 15px;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
  border-radius: 5px;
}

#menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}

#menu-toggle #hamburger span {
  width: 60px;
  height: 4px;
  position: relative;
  top: 24px;
  left: 20px;
  margin: 10px 0;
}

#menu-toggle #hamburger span:nth-child(1) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

#menu-toggle #hamburger span:nth-child(2) {
  -webkit-transition-delay: .625s;
          transition-delay: .625s;
}

#menu-toggle #hamburger span:nth-child(3) {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
}

#menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0;
}

#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 4px;
  position: absolute;
  top: 10%;
  left: 48px;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 4px;
  position: absolute;
  left: 10%;
  top: 48px;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
  -webkit-transition-delay: .125s;
          transition-delay: .125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

#menu-toggle.open #cross span:nth-child(1) {
  height: 80%;
  -webkit-transition-delay: .625s;
          transition-delay: .625s;
}

#menu-toggle.open #cross span:nth-child(2) {
  width: 80%;
  -webkit-transition-delay: .375s;
          transition-delay: .375s;
}

@font-face {
  font-family: 'Ogilvy Sans';
  src: url("../fonts/OgilvySans-Light.eot");
  src: url("../fonts/OgilvySans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OgilvySans-Light.woff2") format("woff2"), url("../fonts/OgilvySans-Light.woff") format("woff"), url("../fonts/OgilvySans-Light.ttf") format("truetype"), url("../fonts/OgilvySans-Light.svg#OgilvySans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Ogilvy Sans';
  src: url("../fonts/OgilvySans-Bold.eot");
  src: url("../fonts/OgilvySans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OgilvySans-Bold.woff2") format("woff2"), url("../fonts/OgilvySans-Bold.woff") format("woff"), url("../fonts/OgilvySans-Bold.ttf") format("truetype"), url("../fonts/OgilvySans-Bold.svg#OgilvySans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url("../fonts/OgilvySerif-Regular.eot");
  src: url("../fonts/OgilvySerif-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OgilvySerif-Regular.woff2") format("woff2"), url("../fonts/OgilvySerif-Regular.woff") format("woff"), url("../fonts/OgilvySerif-Regular.ttf") format("truetype"), url("../fonts/OgilvySerif-Regular.svg#OgilvySerif-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url("../fonts/OgilvySerif-Bold.eot");
  src: url("../fonts/OgilvySerif-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OgilvySerif-Bold.woff2") format("woff2"), url("../fonts/OgilvySerif-Bold.woff") format("woff"), url("../fonts/OgilvySerif-Bold.ttf") format("truetype"), url("../fonts/OgilvySerif-Bold.svg#OgilvySerif-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

h1 {
  font-family: 'Ogilvy Serif', Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.6;
  padding: 20px 0;
}

h2 {
  font-family: 'Ogilvy Serif', Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.6;
  padding: 20px 0;
}

p, div {
  font-family: 'Ogilvy Sans', Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
}

span, label {
  font-family: 'Ogilvy Sans', Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
}

a {
  font-family: 'Ogilvy Sans', Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none !important;
  line-height: 1.6;
}

a:hover {
  font-family: 'Ogilvy Sans', Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none !important;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
  line-height: 1.6;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

#menu-container {
  position: relative;
  /*max-width: 1440px;*/
  width: 100%;
  margin: 0 auto;
  z-index: 20;
}

.duc-logo-brand-home {
  position: absolute;
  top: 40px;
  left: 30px;
  display: block;
}

@media (min-width: 640px) {
  .duc-logo-brand-home {
    position: absolute;
    top: 35px;
    left: 30px;
  }
}

.duc-logo-brand-home img {
  width: 100%;
  max-width: 150px;
}

.duc-logo-brand {
  position: absolute;
  top: 35px;
  left: 30px;
}

.duc-logo-brand img {
  width: 100%;
}
