@-webkit-keyframes zoom {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoom {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}


html, body, .full-menu, .content {
  width: 100%;
  height: 100%;
}

.full-menu, .content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  background-image: url(https://s3.amazonaws.com/StartupStockPhotos/20140808_StartupStockPhotos/96.jpg);
  background-size: cover;
  font-size: 3em;
}

.full-menu {
  position: fixed;
  background-color: #fff;
  /* background-image: url('../img/menu-bg.jpg'); */
  opacity: 0.5;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: all 400ms ease-in;
}
.full-menu li, .fdc-ul-list li {
  font-size: 3.2em;
  color: #c9c9c9;
  /* opacity: 0; */
  -webkit-transform: translateY(2%);
          transform: translateY(2%);
  transition: all 300ms ease-in;
  cursor: pointer;
  font-family: 'slickerregular';
  text-transform: uppercase;
  font-weight: bold;
  list-style-type: none;
}
.full-menu li:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 0%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: width 200ms ease-in;
}
.full-menu li:hover:after {
  width: 100%;
}
.full-menu ul {
  list-style: none;
}
.full-menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  z-index: 0;
}
.full-menu.active .home {
  transition-delay: .3s;
}
.full-menu.active .about {
  transition-delay: .4s;
}
.full-menu.active .works {
  transition-delay: .5s;
}
.full-menu.active .contact {
  transition-delay: .6s;
}
.full-menu.active li {
  opacity: 0.4;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.full-menu.active li.active{
  opacity: 1;
}
.full-menu.active li:hover {
  -webkit-animation: zoom 200ms ease-in;
          animation: zoom 200ms ease-in;
}

.hamburguer {
  position: fixed;
  width: 1em;
  height: 1em;
  margin: 0em;
  z-index: 1;
  cursor: pointer;
  right: 0;
}
.hamburguer:hover {
  -webkit-animation: zoom 300ms ease-in;
          animation: zoom 300ms ease-in;
}

.lines {
  background-color: #000;
  width: 100%;
  height: 4px;
  margin: 4px 0;
  transition: all 450ms ease-in;
}

.close-hamburguer .lines {
  cursor: pointer;
}
.close-hamburguer .line-top {
  -webkit-transform: translateY(200%) rotate(45deg);
          transform: translateY(200%) rotate(45deg);
}
.close-hamburguer .line-mid {
  opacity: 0;
}
.close-hamburguer .line-bottom {
  -webkit-transform: translateY(-200%) rotate(135deg);
          transform: translateY(-200%) rotate(135deg);
}
.fdc-ul-list{
  padding-left: 0px;
  position: relative;
  left: 30%;
  text-align: left;
}
.fdc-full-menu.active{
  z-index: 3;
}
.fdc-col img{
  width: 100%;
}
.fdc-col{
  width: 100%;
}
.fdc-col.fdc-right img{
  width: 54.2%;
  position: absolute;
  right: 0;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(255,255,255, 1);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  width: 100%;
  float: left; 
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 30px;
  font-size: 48px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}
.fdc-new-menu{
  position: fixed;
  right: 30px;
  top: 12px;
  z-index: 100;
  width: 1.5em;
  height: 1.5em;
  background: #dedede;
  border-radius: 100%;
}
.fdc-ul-list li.active{
  color: #000
}
.fdc-ul-list li ul li{
  font-size: 1em;
  transition: 0.5s;
}
.fdc-menu-bl{
  width: 1em;
  height: 1em;
  margin: auto;
  position: relative;
  top: 7px;
}
/*16-04-2019*/

.topnav {
  /* overflow: auto; */
  /* background-color: #333; */
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 1;
}
.topnav li.topnav-right {
  float: right;
  padding: 5px 15px;
}
.topnav li {
  float: left;
  display: block;
  color: #333a44;
  text-align: center;
  padding: 0px 16px;
  text-decoration: none;
  font-size: 14px;
  width: auto;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase
}

.topnav li:hover {
  background-color: transparent;
  color: #898989;
}



.topnav .icon {
  display: none;
}
.fdc-header{
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: 90px;
}
.fdc-header .navbar-nav{
  padding:20px 0px 0px;
}
.fdc-header nav.navbar.navbar-inverse{
  padding: 10px 0px 0px;
}
@media screen and (max-width: 600px) {
  /* .topnav li:not(:first-child) {display: none;} */
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive li {
    float: none;
    display: block;
    text-align: left;
  }
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 14px;
  border: none;
  outline: none;
  color: #333a44;
  padding: 0;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #fff;
  min-width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-left: -60px;
  border: 2px solid #dedede;
}

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

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
