
/*this is overlay page*/
  .button_container {
    position: fixed;
    top: 30px;
    right: 60px;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
  }

  .button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
            transform: translateY(11px) translateX(0) rotate(45deg);
    background: #E25154;
  }
  .button_container.active .middle {
    opacity: 0;
    background: #E25154;
  }
  .button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
            transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #E25154;
  }

  .button_container span {
    background: #E25154;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
  }
  .button_container span:nth-of-type(2) {
    top: 11px;
  }
  .button_container span:nth-of-type(3) {
    top: 22px;
  }

  .overlay {
    position: fixed;
    background: #34485C;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    display: inline-block;
    background-image: url("../img/img-menu-bd.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .overlay.open {
    opacity: 0.98;
    visibility: visible;
    height: 100%;
  }

  .overlay nav {
    position: relative;
    width: auto;
    font-family: 'Source Sans Pro', sans-serif;
    color: #f5f5f5;
    font-size: 22px;
    font-weight: 300;
    line-height: 2.3;
    text-align: left;
    letter-spacing: 1.5px;
    text-decoration: none;
  }

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

  /*.overlay ul li {
    display: block;
    height: 10px;
    height: calc(100% / 8);
    min-height: 30px;
    position: relative;
    opacity: 0;
  }

  .overlay ul li a {
    display: block;
    position: relative;
    color: #F5F5F5;
    text-decoration: none;
    overflow: hidden;
  }*/

  .overlay a {
    display: block;
    position: relative;
    color: #F5F5F5;
    margin: 0;
    text-decoration: none;
    overflow: hidden;
  }

  .overlay a:hover {
    display: block;
    position: relative;
    font-weight: 300;
    color: #E25154;
    text-align: left;
    box-sizing: border-box;
  }

  .overlay-menu {
    position: relative;
    margin:0 auto;
  }

  .menu-photo {
    width: 360px;
    display: inline-block;
    position: absolute;
    top: 100px;
    left: 5%;
  }

  .kc-img {
    border-radius: 50%;
  }

  .menu-aboutme {
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 38%;

  }

  .menu-work {
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 70%;
  }

  .menu-aboutme-mobile {
    display: inline-block;
    position: absolute;
    display: none;
  }

  section.ok{
    position: absolute;
    top: 620px;
  }

  .scroll-down {
    opacity: 1;
    -webkit-transition: all .5s ease-in 3s;
    transition: all .5s ease-in 3s;
  }

  .scroll-down {
    position: absolute;
    bottom: 110px;
    left: 50%;
    margin-left: -16px;
    display: block;
    width: 32px;
    height: 32px;
    z-index: 2;
    background-image: url("../svg/icon-scrolldown.svg");
    background-size: initial;
    background-repeat: no-repeat;
  }

/*  .scroll-down:before {
      position: absolute;
      top: calc(50% - 8px);
      left: calc(50% - 6px);
      transform: rotate(-45deg);
      display: block;
      width: 12px;
      height: 12px;
      content: "";
      border: 2px solid #E25154;
      border-width: 0px 0 2px 2px;
}*/

/*this is animated-bubbles*/

  .bubbles {
    width: 70%;
    /*height: 550px;*/
    margin: 0 auto;
  }

  .bubble-container {
    position: absolute;
    bottom: 0;
    will-change: transform;
    -webkit-animation: bubblerise 4s infinite ease-in;
    -moz-animation: bubblerise 4s infinite ease-in;
    -ms-animation: bubblerise 4s infinite ease-in;
    animation: bubblerise 4s infinite ease-in;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  .bubble {
    width: 6px;
    height: 6px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    will-change: transform;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-animation: bubblewobble 0.4s infinite linear;
    -moz-animation: bubblewobble 0.4s infinite linear;
    -ms-animation: bubblewobble 0.4s infinite linear;
    animation: bubblewobble 0.4s infinite linear;
  }

  @-webkit-keyframes bubblerise {
    0% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
    5% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    99% {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    100% {
      bottom: 100%;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
  }
  @-moz-keyframes bubblerise {
    0% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
    5% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    99% {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    100% {
      bottom: 100%;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
  }
  @-ms-keyframes bubblerise {
    0% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
    5% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    99% {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    100% {
      bottom: 100%;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
  }
  @keyframes bubblerise {
    0% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
    5% {
      bottom: 0;
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    99% {
      filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
      opacity: 1;
    }
    100% {
      bottom: 100%;
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
      opacity: 0;
    }
  }
  /*@-webkit-keyframes bubblewobble {
    0% {
      margin-left: 0;
    }
    50% {
      margin-left: 2px;
    }
  }
  @-moz-keyframes bubblewobble {
    0% {
      margin-left: 0;
    }
    50% {
      margin-left: 2px;
    }
  }
  @-ms-keyframes bubblewobble {
    0% {
      margin-left: 0;
    }
    50% {
      margin-left: 2px;
    }
  }
  @keyframes bubblewobble {
    0% {
      margin-left: 0;
    }
    50% {
      margin-left: 2px;
    }
  }*/


/*this is sticky nav*/

  .et-hero-tabs,
  .et-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    position: relative;
    top: 0px;
    background: #f5f5f5;
    text-align: center;
    padding: 0 auto;
  }

  .et-hero-tabs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 50;
  }
  
  .et-hero-tabs-container--top {
    position: fixed;
    top: 80px;
  }

  .et-hero-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: #404040;
    letter-spacing: 0.1rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;

    width: 380px;
    object-fit: contain;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.59em;
    letter-spacing: 1.3px;
  }
  .et-hero-tab:hover {
    color: #34485C;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
  }

  .et-hero-tabs h1,
  .et-slide h1 {
    width: 580px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 0.1;
    letter-spacing: 1px;
    text-align: left;
    color: #404040;
    padding: 5px 0px 5px 10px;

  }

  .et-hero-tabs h2,
  .et-slide h2 {
    width: 400px;
    height: 25px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 3.6px;
    text-align: left;
    color: #404040;
    padding: 10px 0px 10px 10px;
  }

  .et-hero-tabs h3,
  .et-slide h3 {
    width: 556px;
    object-fit: contain;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.59em;
    letter-spacing: 1.3px;
    text-align: left;
    color: #404040;
    padding: 0px 0px 0px 10px;
    z-index: 100;
  }

  .et-hero-tabs h3 a,
  .et-slide h3 a {
    width: 556px;
    object-fit: contain;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.59em;
    letter-spacing: 1.3px;
    text-align: left;
    color: #E25154;
    padding: 0px 0px 0px 0px;
    z-index: 100;
  }

  .et-hero-tabs h3 a:hover,
  .et-slide h3 a:hover {
    color: #404040;
    z-index: 100;
  }

  .et-hero-tabs-short h3,
  .et-slide-short h3 {
    width: 300px;
    object-fit: contain;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.59em;
    letter-spacing: 1.3px;
    text-align: left;
    color: #404040;
  }

  .et-hero-tabs h4,
  .et-slide h4 {
    width: 471px;
    height: 294px;
    opacity: 0.2;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.12;
    letter-spacing: 3px;
    text-align: right;
    color: #b4bdc2;
  }

  .et-hero-tabs h5,
  .et-slide h5 {
    height: 28px;
    width: 460px;
    color: #B4BDC2;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 28px;
    text-align: center;
    margin: 0 auto;
  }

  .et-hero-tabs h6,
  .et-slide h6 {
    width: 556px;
    object-fit: contain;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.59em;
    letter-spacing: 1.3px;
    text-align: left;
    font-style: italic;
    color: #404040;
    padding: 0px 0px 0px 10px;
  }


  .et-slide img {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 5px auto;
  }

  /*.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #E25154;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }*/


/*this is details of OMEN Command Center*/

    #om-intro {
      width: 100%;
      height: 500px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 670px;
    }

    .et-slide .om-gray-line {
      width: 100%;
      margin: 20px 0 30px 0;
      border-top: 1px #B4BDC2 solid;
    }  

    .om-01 {
      float: left;
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
    }

    .om-02 {
      float: left;
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .om-03 {
      float: left;
      position: absolute;
      top: 3%;
      margin-left: 25%;
    }

    .om-04 {
      float: left;
      position: absolute;
      top: 40px;
    }

    .om-05 {
      float: left;
      position: absolute;
      top: 58%;
    }


    #om-intro-2 {
      width: 100%;
      height: 830px;
      background-color: #fff;
      position: absolute;
      top: 1060px;
    }

    #om-windows {
      width: 100%;
      height: 1550px;
      background: #EFEFEF;
      top: 1180px;
    }

    #om-windows2 {
      width: 100%;
      height: 1900px;
      background: #fff;
      top: 1130px;
    }

    #om-mobile {
      width: 100%;
      height: 1550px;
      background-color: #EFEFEF;
      position: absolute;
      top: 5290px;
    }

    #om-styleguide {
      width: 100%;
      height: 1650px;
      background-color: #fff;
      position: absolute;
      top: 6840px;
    }

    #om-testing {
      width: 100%;
      height: 1250px;
      background-color: #EFEFEF;
      position: absolute;
      top: 8490px;
    }

    #om-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 9740px;
    }

    .et-slide .om-img-01 {
      width: 400px;
      height: auto;
      position: relative;
      margin: 0px 0 30px -800px;
    }

    .et-slide .om-img-windows {
      width: 1040px;
      height: auto;
      margin-top: 0px;
    }

    .et-slide .om-img-02 {
      width: 847px;
      height: auto;
      margin-top: -200px;
      margin-bottom: -180px;
    }

    .et-slide .om-img-03 {
      width: 945px;
      height: auto;
      margin-top: 150px;
    }

    .et-slide .om-img-04 {
      width: 285px;
      height: auto;
      margin-top: -35px;
    }

    .et-slide .om-img-05 {
      width: 847px;
      height: auto;
      position: relative;
      top: 0px;
      display: block;
      margin: 15px 0 0 150px;
    }

/*this is details of MarineTopia*/

    #intro {
      width: 100%;
      height: 500px;
      background-color: #E4F1EC;
      padding: 10px auto;
      position: absolute;
      top: 670px;
      z-index: 10;
    }

    .mp-01 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .mp-02 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .mp-03 {
      float: left;
      position: absolute;
      top: 30px;
    }

    #research {
      width: 100%;
      height: 870px;
      background: #085078;
      background: -webkit-linear-gradient(to right, #72d2c6, #085078);
      background: linear-gradient(to right, #72d2c6, #085078);
      position: absolute;
      top: 1170px;
    }

    .et-slide .mp-info-d {
      widows: 100%;
      height: auto;
      position: relative;
      top: 730px;
    }

    .et-slide .mp-info-m {
      widows: 100%;
      display: relative;
      opacity: 0;
    }

    .et-slide .mp-info-dd {
      widows: 100%;
      height: auto;
      position: relative;
      top: 495px;
    }

    .et-slide .mp-info-mm {
      widows: 100%;
      display: relative;
      opacity: 0;
    }

    #research-2 {
      width: 100%;
      height: 420px;
      position: relative;
      top: 120px;
      background: #085078;
      background: -webkit-linear-gradient(to bottom, #72d2c6, #085078);
      background: linear-gradient(to bottom, #72d2c6, #085078);
      position: absolute;
      top: 2040px;
    }

    #research-3 {
      width: 100%;
      height: 500px;
      background-color: #E4F1EC;
      position: absolute;
      top: 2460px;
    }

    .et-slide .persona {
      width: 350px;
      margin: -20px 0px 0 0px;
    }

    .et-slide-short {
      margin: 10px 0 0 600px;
    }

    .et-slide .logo-1{
      width: 400px;
      height: auto;
      margin: 0px 0 0 600px;
    }

    .et-slide .logo-1-1 {
      width: 400px;
      height: auto;
      margin: 10px 0 0 600px;
    }

    .et-slide .logo-2{
      width: 264px;
      height: auto;
      display: inline;
      margin: 90px 0px 0px -150px;
      position: absolute;
      top: 500px;
    }

    .et-slide .logo-3{
      width: 700px;
      height: auto;
      display: inline;
      margin: 30px -100px 0px 150px;
      box-shadow: 0 2px 4px 0 #707e8c;
    }

    /*lines*/

    .et-slide .green-line {
      width: 100%;
      position: absolute;
      top: 453px;
      border-top: 1.5px #85d8ce solid;
    }

    .et-slide .gray-line {
      width: 100%;
      margin: 40px 0 20px 0;
      border-top: 1px #B4BDC2 solid;
    }

    /*lines*/

    #branding {
      width: 100%;
      height: 3350px;
      background-color: #fff;
      position: absolute;
      top: 2960px;
    }

    #branding-2 {
      width: 100%;
      height: 800px;
      background-color: #E4F1EC;
      position: absolute;
      top: 6310px;
    }

    #branding-3 {
      width: 100%;
      height: 700px;
      background-color: #fff;
      position: absolute;
      top: 7010px;
    }

    #branding-4 {
      width: 100%;
      height: 790px;
      background-color: #E4F1EC;
      position: absolute;
      top: 7710px;
    }

    .et-slide .branding {
      width: 945px;
      height: auto;
      margin-top: 0 auto;
    }

    #poster {
      width: 100%;
      height: 1950px;
      background-color: #fff;
      position: absolute;
      top: 8440px;
    }

    #microsite {
      width: 100%;
      height: 5800px;
      background-color: #E4F1EC;
      position: absolute;
      top: 10390px;
    }

    #mp-video {
      width: 100%;
      height: 1430px;
      background-color: #fff;
      position: absolute;
      top: 16190px;
    }

    .et-slide .video-responsive {
      overflow:hidden;
      padding-bottom:56.25%;
      position:relative;
      height:0;
    }

    .video-responsive iframe{
        position: relative;
        margin-top: 50 auto;
    }

    .et-slide .mp-video {
      width: 945px;
      height: auto;
      margin: -60px 0 0 0;
    }

    #mp-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 17620px;
    }

    .et-slide .footer {
      position: absolute;
      top: 7%;
      left: 50%;
      transform: translateX(-50%);
    }

/*this is details of Drawall*/

    #dw-intro {
      width: 100%;
      height: 400px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 670px;
    }

    .et-slide .dw-gray-line {
      width: 100%;
      margin: 20px 0 20px 0;
      border-top: 1px #B4BDC2 solid;
    }

    .dw-01 {
      float: left;
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
    }

    .dw-02 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .dw-03 {
      float: left;
      position: absolute;
      top: 23%;
    }

    .dw-04 {
      float: left;
      position: absolute;
      top: 40px;
    }

    .dw-05 {
      float: left;
      position: absolute;
      top: 58%;
    }

    .dw-06 {
      display: inline-block;
      position: absolute;
      top: 200px;
      left: 270px;
    }

    .dw-07 {
      display: inline-block;
      position: absolute;
      top: 700px;
      left: 660px;
    }



    #dw-intro-2 {
      width: 100%;
      height: 550px;
      background-color: #fff;
      position: absolute;
      top: 1070px;
    }

    #dw-research {
      width: 100%;
      height: 1250px;
      background: #fff;
      top: 800px;
    }

    #dw-branding {
      width: 100%;
      height: 400px;
      background-color: #EFEFEF;
      position: absolute;
      top: 2750px;
    }

    #dw-branding-2 {
      width: 100%;
      height: 800px;
      background-color: #fff;
      position: absolute;
      top: 3150px;
    }

    #dw-branding-3 {
      width: 100%;
      height: 700px;
      background-color: #fff;
      position: absolute;
      top: 3950px;
    }

    #dw-branding-4 {
      width: 100%;
      height: 700px;
      background-color: #fff;
      position: absolute;
      top: 4650px;
    }

    #dw-branding-5 {
      width: 100%;
      height: 800px;
      background-color: #fff;
      position: absolute;
      top: 5350px;
    }

    #dw-interactive {
      width: 100%;
      height: 780px;
      background-color: #EFEFEF;
      position: absolute;
      top: 6150px;
    }

    #dw-interactive-2 {
      width: 100%;
      height: 1750px;
      background-color: #fff;
      position: absolute;
      top: 6930px;
    }

    #dw-interactive-3 {
      width: 100%;
      height: 780px;
      background-color: #EFEFEF;
      position: absolute;
      top: 8650px;
    }

    #dw-interactive-4 {
      width: 100%;
      height: 1100px;
      background-color: #fff;
      position: absolute;
      top: 9420px;
    }

    #dw-interactive-5 {
      width: 100%;
      height: 1800px;
      background-color: #fff;
      position: absolute;
      top: 10450px;
    }

    #dw-poster {
      width: 100%;
      height: 1400px;
      background-color: #EFEFEF;
      position: absolute;
      top: 12250px;
    }

    #dw-video {
      width: 100%;
      height: 1470px;
      background-color: #fff;
      position: absolute;
      top: 13650px;
    }

    iframe {
      position: relative;
      top: 0px;
      margin: 0 auto;
    }

    .et-slide .video {
      width: 945px;
      height: auto;
      margin: -60px 0 0 0;
    }

    #dw-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 15120px;
    }


    .et-slide .dw-img-01 {
      width: 458px;
      height: auto;
      position: relative;
      margin: 0px 0 30px 300px;
    }

    .et-slide .dw-img-persona {
      width: 847px;
      height: auto;
      margin-top: -50px;
    }

    .et-slide .dw-img-02 {
      width: 847px;
      height: auto;
      margin-top: -60px;
      margin-bottom: -180px;
    }

    .et-slide .dw-img-022 {
      width: 847px;
      height: auto;
      margin-top: -200px;
      margin-bottom: -180px;
    }

    .et-slide .dw-img-03 {
      width: 945px;
      height: auto;
      margin-top: 150px;
    }

    .et-slide .dw-img-04 {
      width: 285px;
      height: auto;
      margin-top: -35px;
    }

    .et-slide .dw-img-05 {
      width: 847px;
      height: auto;
      position: relative;
      top: 10px;
      display: block;
      margin: 15px 0 0 150px;
    }

    .et-slide .dw-img-06 {
      width: 847px;
      height: auto;
      position: relative;
      top: 150px;
      margin: 10px 0 0 0px;
    }

    .et-slide .dw-img-07 {
      width: 360px;
      height: auto;
      position: absolute;
      top: 10px;
      margin: 0px 0 0 600px;
    }

    .et-slide .dw-img-08 {
      width: 360px;
      height: auto;
      position: absolute;
      top: 450px;
      margin: 0px 0 0 200px;
    }

    .et-slide .dw-img-09 {
      width: 847px;
      height: auto;
      position: relative;
      top: 0px;
      display: block;
      margin: 40px 0 0 150px;
    }

/*this is details of AAU*/

    #aau-intro {
      width: 100%;
      height: 400px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 670px;
    }

    .aau-01 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .aau-02 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .aau-03 {
      float: left;
      position: absolute;
      top: 40px;
    }


    #aau-research {
      width: 100%;
      height: 1150px;
      background: #fff;
      position: absolute;
      top: 1070px;
    }

    #aau-research-2 {
      width: 100%;
      height: 3750px;
      background: #EFEFEF;
      position: absolute;
      top: 2200px;
    }

    #aau-userflow {
      width: 100%;
      height: 2600px;
      background-color: #fff;
      position: absolute;
      top: 5930px;
    }

    #aau-wireframe {
      width: 100%;
      height: 550px;
      background-color: #EFEFEF;
      position: absolute;
      top: 8530px;
    }

    #aau-wireframe-2 {
      width: 100%;
      height: 2100px;
      background-color: #fff;
      position: absolute;
      top: 9080px;
    }

    #aau-usertesting {
      width: 100%;
      height: 680px;
      background-color: #EFEFEF;
      position: absolute;
      top: 11150px;
    }

    #aau-prototyping {
      width: 100%;
      height: 2650px;
      background-color: #fff;
      position: absolute;
      top: 11820px;
    }

    #aau-video {
      width: 100%;
      height: 680px;
      background-color: #fff;
      position: absolute;
      top: 14430px;
    }

    iframe {
      position: relative;
      top: 0px;
      margin: 0 auto;
    }

    #aau-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 15110px;
    }


    .et-slide .aau-img-01 {
      width: 847px;
      height: auto;
      position: relative;
      top: 80px;
      margin: 5px 0 5px 0;
    }

    .et-slide .aau-img-02 {
      width: 847px;
      height: auto;
      top: 10px;
      margin: 5px 0 5px 0;
    }

/*this is details of Petitclay*/

    #pe-intro {
      width: 100%;
      height: 400px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 670px;
    }


    .pe-01 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .pe-02 {
      float: left;
      position: absolute;
      top: 60%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .pe-03 {
      float: left;
      position: absolute;
      top: 40px;
    }

    #pe-branding {
      width: 100%;
      height: 4900px;
      background: #fff;
      position: absolute;
      top: 1070px;
    }

    #pe-poster {
      width: 100%;
      height: 850px;
      background-color: #EFEFEF;
      position: absolute;
      top: 5970px;
    }

    #pe-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 6820px;
    }

    .et-slide .pe-img-01 {
      width: 847px;
      height: auto;
      position: relative;
      top: -10px;
      margin: 15px 0 15px 0;
    }

    .et-slide .pe-img-02 {
      width: 847px;
      height: auto;
      top: 10px;
      margin: 15px 0 15px 0;
    }

    .et-slide .pe-img-03 {
      width: 457px;
      height: auto;
      position: relative;
      display: block;
      top: 0px;
      left: 340px; 
      margin: 5px 0 5px 0;
    }

/*this is details of Motion Graphics*/

    #motion-mp {
      width: 100%;
      height: 500px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 670px;
    }

    #motion-mp-2 {
      width: 100%;
      height: 1430px;
      background-color: #fff;
      position: absolute;
      top: 1170px;
    }

    #motion-dw {
      width: 100%;
      height: 400px;
      background-color: #EFEFEF;
      padding: 10px auto;
      position: absolute;
      top: 2600px;
    }

    #motion-dw-2 {
      width: 100%;
      height: 1450px;
      background-color: #fff;
      position: absolute;
      top: 3000px;
    }

    .mo-01 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .mo-02 {
      float: left;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin-left: 600px;
    }

    .mo-03 {
      float: left;
      position: absolute;
      top: 30px;
    }

    .et-slide .mo-video {
      width: 945px;
      height: auto;
      margin: -60px 0 0 0;
    }

    #motion-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 4450px;
    }

/*this is details of 3D Cards*/

    #card {
      width: 100%;
      height: 900px;
      background-color: #EFEFEF;
      position: absolute;
      top: 670px;
    }

    #thank-you-note-card {
      width: 100%;
      height: 970px;
      background-color: #fff;
      position: absolute;
      top: 1570px;
    }

    .card-align {
      float: left;
      position: absolute;
      top: 30px;
    }

    .et-slide .card {
      width: 555px;
      height: auto;
      margin: 0 5px;
      box-shadow: 3px 3px 4px 0 #707e8c;
    }

    #card-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 2540px;
    }

/*this is details of City Stickers*/

  /*this is slider image*/

    .slider-container {
      width: 1140px;
      margin: auto;
      position: relative;
      margin: 70px 0 0 0;
    }

    .slider-container .fade {
        animation-name: fade;
        animation-duration: 0.5s;
    }

    @keyframes fade {
        from {opacity: 0.4}
        to {opacity: 1}
    }

    .slider-container .prev,
    .slider-container .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #B4BDC2;
        font-weight: bold;
        padding: 10px;
        font-size: 30px;
        text-decoration: none;
    }

    .slider-container .prev {
        left: 0px;
    }

    .slider-container .next {
        right: 0px;
    }

    .slider-container .prev:hover{
        color: #E25154;
        /*background: rgba(0, 0, 0, 0.6);*/
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        cursor: pointer;
    }
    .slider-container .next:hover {
        color: #E25154;
        /*background: rgba(0, 0, 0, 0.6);*/
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        cursor: pointer;
    }

    .slider-container .slider-bullets {
        text-align: center;
    }

    .slider-container .slider-bullets .dots {
        display: inline-block;
        padding: 5px;
        width: 10px;
        height: 10px;
        background-color: #B4BDC2;
        border-radius: 50%;
    }

    .slider-container .slider-bullets .dots:hover {
        background-color: #E25154;
        cursor: pointer;
    }

    .slider-container .slider-bullets .active {
        background-color: #E25154;
    }

  .et-slide .row {
    margin: 0 auto; 
  }

  #citystickers {
    width: 100%;
    height: 700px;
    background-color: #EFEFEF;
    padding: 5px 0 5px 0;
    position: absolute;
    top: 670px;
  }

  #cities {
    width: 100%;
    height: 7450px;
    background-color: #EFEFEF;
    position: absolute;
    top: 1330px;
  }

  .ct-01 {
    position: absolute;
    top: 30px;
  }

  #ct-footer {
    width: 100%;
    height: 70px;
    background-color: #34485C;
    position: absolute;
    top: 8760px;
  }

  .et-slide .ct-img-01 {
    width: 945px;
    top: 10px;
  }

/*this is details of Infographics*/

    #info-version-01 {
      width: 100%;
      height: 2050px;
      background-color: #EFEFEF;
      position: absolute;
      top: 670px;
    }

    #info-version-02 {
      width: 100%;
      height: 1650px;
      background-color: #fff;
      position: absolute;
      top: 2720px;
    }

    .info-align {
      float: left;
      position: absolute;
      top: 30px;
    }

    .et-slide .info {
      width: 945px;
      height: auto;
      margin: 0 auto;
    }

    #info-footer {
      width: 100%;
      height: 70px;
      background-color: #34485C;
      position: absolute;
      top: 4370px;
    }

@media only screen and (min-width: 1140px) {

}   

@media only screen and (min-width: 760px) and (max-width: 1140px) {

}

@media only screen and (max-width: 760px) {

  /*this is overlay page*/

    .button_container span {
      height: 3px;
      width: 100%;
    }

    .button_container span:nth-of-type(2) {
      top: 11px;
    }

    .button_container span:nth-of-type(3) {
      top: 22px;
    }


  /*this is details of OMEN Command Center*/

    .om-03 {
      float: left;
      position: absolute;
      top: 5%;
      margin-left: 0%;
    }

}