 #campaign header, #intel-abt header {
     width: 100%;
     position: fixed;
     top: 0;
     left: 0;
     background: #151515;
     z-index: 9;
}
 #campaign header .logo-rog, #intel-abt header .logo-rog {
     width: 160px;
     margin: 10px auto 10px 0;
     width: 120px; /*20211021 RCD*/
}
 #campaign header .logo-rog img, #intel-abt header .logo-rog img {
     width: 100%;
}
 #campaign header .menu, #intel-abt header .menu {
     text-align: center;
     list-style-type: none;
}
 #campaign header .menu a, #intel-abt header .menu a {
     font-size: 1em;
     font-weight: 400;
     letter-spacing: .018em;
     color: white;
     padding: .25em 1em;
     cursor: pointer;
     -moz-transition: color 0.25s ease;
     -o-transition: color 0.25s ease;
     -webkit-transition: color 0.25s ease;
     transition: color 0.25s ease;
}
 #campaign header .menu a:hover, #intel-abt header .menu a:hover {
     color: #02aee5;
}
 #campaign header .menu a.hd-active, #intel-abt header .menu a.hd-active {
     color: #02aee5;
     font-weight: bold;
     cursor: default;
}
 #campaign .hamburger, #intel-abt .hamburger {
     display: none;
}

/*RCD added*/
 #campaign .campaign-header{
     display: flex;
     max-width: 1300px;
     width: 90%;
     box-sizing: border-box;
     position: relative;
     margin: 0 auto;
     align-items: center;
     font-family: "Roboto Condensed", "Microsoft Jhenghei", "Microsoft YaHei", "Arial", sans-serif;
 }
 #campaign .campaign-header ul{
     display: flex;
     align-items: center;
 }
 #campaign .campaign-header ul a{
     text-decoration: none;
     font-size: 16px;
}

 @media screen and (max-width: 1023px) {
     #campaign header .menu a, #intel-abt header .menu a {
         padding-left: .5em;
         padding-right: .5em;
    }
}

 @media screen and (max-width: 768px) {
     #campaign .campaign-header{/*20211026*/
         width: 100%;
     }
     #campaign .hamburger span, #intel-abt .hamburger span, #campaign .hamburger:before, #intel-abt .hamburger:before, #campaign .hamburger:after, #intel-abt .hamburger:after {
         content: '';
         display: block;
         width: 24px;
         height: 3px;
         background: white;
         border-radius: 2px;
         position: absolute;
         top: 20px;
         left: 0;
         right: 0;
         margin: 0 auto;
         -moz-transition: all 0.1s ease;
         -o-transition: all 0.1s ease;
         -webkit-transition: all 0.1s ease;
         transition: all 0.1s ease;
    }
     #campaign header .hd-container, #intel-abt header .hd-container {
         width: 100%;
         padding-left: 5%;
    }
     #campaign header .logo-rog, #intel-abt header .logo-rog {
         margin-top: 8px;
         margin-bottom: 8px;
         margin-left: 5%;/*20211026*/
    }
     #campaign header .menu, #intel-abt header .menu {
         display: none;
         width: 100%;
         background: #303030;
         position: absolute;
         top: 100%;
         left: 0;
         z-index: -1;
    }
     #campaign header .menu a, #intel-abt header .menu a {
         display: block;
         font-size: 1em;
         padding: 1em 0;
         border-bottom: 1px solid #505050;
    }
     #campaign .hamburger, #intel-abt .hamburger {
         order: 3;
         display: block;
         width: 46px;
         height: 46px;
         background: #02aee5;
         margin-left: 1em;
         position: relative;
         cursor: pointer;
    }
     #campaign .hamburger:before, #intel-abt .hamburger:before {
         -moz-transform: translate(0, -0.5em);
         -o-transform: translate(0, -0.5em);
         -ms-transform: translate(0, -0.5em);
         -webkit-transform: translate(0, -0.5em);
         transform: translate(0, -0.5em);
    }
     #campaign .hamburger:after, #intel-abt .hamburger:after {
         -moz-transform: translate(0, 0.5em);
         -o-transform: translate(0, 0.5em);
         -ms-transform: translate(0, 0.5em);
         -webkit-transform: translate(0, 0.5em);
         transform: translate(0, 0.5em);
    }
     #campaign .hamburger.hd-active:before, #intel-abt .hamburger.hd-active:before {
         opacity: 1;
         -moz-transform: translate(0, 0) rotate(-45deg);
         -o-transform: translate(0, 0) rotate(-45deg);
         -ms-transform: translate(0, 0) rotate(-45deg);
         -webkit-transform: translate(0, 0) rotate(-45deg);
         transform: translate(0, 0) rotate(-45deg);
    }
     #campaign .hamburger.hd-active:after, #intel-abt .hamburger.hd-active:after {
         opacity: 1;
         -moz-transform: translate(0, 0) rotate(45deg);
         -o-transform: translate(0, 0) rotate(45deg);
         -ms-transform: translate(0, 0) rotate(45deg);
         -webkit-transform: translate(0, 0) rotate(45deg);
         transform: translate(0, 0) rotate(45deg);
    }
     #campaign .hamburger.hd-active span, #intel-abt .hamburger.hd-active span {
         opacity: 0;
    }
     #campaign .hamburger.hd-active ~ .menu, #intel-abt .hamburger.hd-active ~ .menu {
         display: block;
         -webkit-animation-delay: 0s;
         -webkit-animation-duration: 0.4s;
         -webkit-animation-name: fadeInDown;
         -webkit-animation-timing-function: ease;
         -webkit-animation-iteration-count: 1;
         -webkit-animation-fill-mode: forwards;
         -moz-animation-delay: 0s;
         -moz-animation-duration: 0.4s;
         -moz-animation-name: fadeInDown;
         -moz-animation-timing-function: ease;
         -moz-animation-iteration-count: 1;
         -moz-animation-fill-mode: forwards;
         -o-animation-delay: 0s;
         -o-animation-duration: 0.4s;
         -o-animation-name: fadeInDown;
         -o-animation-timing-function: ease;
         -o-animation-iteration-count: 1;
         -o-animation-fill-mode: forwards;
         animation-delay: 0s;
         animation-duration: 0.4s;
         animation-name: fadeInDown;
         animation-timing-function: ease;
         animation-iteration-count: 1;
         animation-fill-mode: forwards;
    }
}







/*countdown*/

/*
#campaign {
    background-image: url(../images/bg_01.jpg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
}
.logo-set {
    margin-top: 6em;
}
*/
.sec_countdown h2 {
    font-size: 6em;
    line-height: 1.2em;
}
.logo-set .slogan {
    font-size: 1.2em;
}
.sec_countdown .tagline {
    font-size: 2em;
}
.sec_countdown p {
    font-size: 1.2em;
    line-height: 1.5em;
}
.sec_countdown .btn-cta {
    font-size: 1.6em;
    text-decoration: none;
}
.sec_countdown .flex-box .item-time {
    font-size: 6em;
}
.sec_countdown .flex-box .item::after {
    font-size: 5em;
}
.sec_countdown .flex-box .item-desc {
    margin-bottom: 1em;
    font-size: 1.6em;
}



 @media screen and (max-width: 768px) {
.sec_countdown h2 {
    font-size: 3.5em;
}
.sec_countdown .tagline {
    font-size: 1.3em;
}
.sec_countdown .flex-box .item-time {
    font-size: 3em;
}
.sec_countdown .flex-box .item::after {
    font-size: 2em;
    right: -5%;
}
.sec_countdown .flex-box .item-desc {
    font-size: 1.2em;
}
}


 @media screen and (max-width: 550px) {
.sec_countdown h2 {
    font-size: 2.5em;
}
.sec_countdown .tagline {
    font-size: 1.1em;
}
.sec_countdown .flex-box .item-time {
    font-size: 2em;
}
.sec_countdown .flex-box .item::after {
    font-size: 1em;
}
}




/*campaign*/
#campaign {
    color: #fff;
    background: #000;
}
.sec_hero{
    margin-top: 50px;
}
.sec_hero .container{
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
}
 @media screen and (max-width: 1200px) {
.sec_hero .container{
    max-width: 1160px;
}
}
















