@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    width: 100%;
    height: 100%;
    /* background-color: rgb(29, 44, 41);  */
    /*background-color: rgb(107, 112, 111);*/ 
    background-color: rgb(54, 54, 54);
    background-image: url(../assets/NDX_images/pw_maze_black.png);
    background-repeat: repeat;
    font-family: 'Roboto', sans-serif; 
    color: #ebeebe;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.1em; 
    -webkit-font-smoothing: antialiased;
}

img {
	max-width:100%;
    height:auto;
}

/**************************************************************/
.mobileMenu{display:none}
#Menu_mobile{display:none;}
/**************************************************************/

#Main-header{
    width: 100%;
    height: 130px;
    background-color: #1a1a1a;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
}
.header_wrapper{
    max-width: 960px;
    height: 130px;
    margin: 0 auto;
    /* background-color: #ebebeb; */
}
.header_assets_box{
    width: 940px;
    margin: 0 auto;
    display: inline-flex;
    justify-content: space-between;
}
.Logo_wrapper img{
    margin-top: 20px;
    padding-left:20px;
    width: 180px;
    height: auto;
}
/************* LOGO ANIMATION ******************************/
.Logo_wrapper {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    } 

/************* LOGO ANIMATION ENDS *************************/
.RightCorner{
    padding-top: 25px;
}
.agency{
    position: relative;
    font-family: 'Michroma', sans-serif;
    color:#fa0404;
    text-align: right;
    opacity: 0.8;
}
.agency p{
    display:block;
    font-size: 0.6rem;
    opacity: 0.8;
    text-transform: uppercase;
}
.pageTitle{
    position:relative;
    font-size: 1rem;
    font-family: 'Michroma', sans-serif;
    color:#ff0009;
    text-transform: uppercase;
    opacity: 0.8;
    padding-left: 37px;
    /* border-right: 5px solid #ff0009; */
}
.pageTitle img{
    display:inline-block;
    position:absolute;
    left: 5px;
    top: -10px;
    text-align: end;
    width: 30px;
    height: auto;
    opacity: 0.7;
}

/********************** NAVIGATION ******************************/

.mobileMenu{display:none}
#Menu_mobile{display:none;}

/*********************************************************/
.navBar{
    position: absolute;
    top: 98px;
    left: 0px;
    width: 100%;
    height: 32px;
    background-color: #161719;  
}

.nav_wrapper{
    max-width: 960px;
    margin: 0px auto;
    padding-top: 0px; 
    padding-bottom: 0px;
}

.std_navigation ul{
    margin: 0px 0 0 0px;
    padding-left: 15px;
    padding-right: 50px;
    list-style: none;
}
.std_navigation ul li{
    display: inline-block;
}
.activate{
    padding: 2px 4px;
    color:#767473;
    background-color: #212121;
    opacity: 0.8;
}
.std_navigation ul li a{
    display: block;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 300;
    color: #ff0009;
    padding: 0.5rem 0.7rem;
    transition: all 0.2s linear;
}
.std_navigation ul li a:hover{
    color:#dddddd;
    font-weight: 300; 
    
}

/******************* SECTION PRESETS ***********************************/

section{
    max-width: 960px;
    height: 100%;
    padding: 0;
    margin: 0 auto;
}

.Parallelen{
    background-color: transparent;
    background-position: center top;
    background-size: contain; 
    background-repeat: no-repeat; 
    /* background-attachment:fixed;  */
}
/****************** SKEWED ITEMS ************************************/

.MBL_skewed_1{display:none;}  /** @ MBL FOCUSED UPPER **/
.MBL_skewed_2{display:none;}  /** @ MBL FOCUSED BOTTOM **/

/*************** WEB DESIGN SECTION *******************************/

#webDesign{
    position: relative;
    width: 100vw;
    height: 570px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #040405;
    color: #eef0da;
    background-image: url("../assets/DSK_BACKGRNDS/STD_BACKGRND_WEBDSGN.png");
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}
.STD_skewed_5{
    position: absolute;
    left: 0;
    top: 0;
    border-width: 0px 0 80px 960px;
    border-color: transparent  transparent transparent #161719;
    /* border-color: transparent #ebebeb transparent transparent;*/ 
    border-style: solid; 
} 

.STD_skewed_1{
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 0 0 960px;
    border-color: transparent  transparent transparent #040404;
    /* border-color: transparent #ebebeb transparent transparent;*/ 
    border-style: solid; 
} 

/************** MAIN WEB DESIGN CONTAINER******************************************/

 .Box_frame{
    width: 90%;
    height: 80%;
    margin: 0 auto;
    padding-top: 65px;
    padding-bottom: 15px;
}

/**************** ANIMATION *****************************/
.Box_frame {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-delay: 0.8s; 
    animation-delay: 0.8s; 
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    } 
/**************** ANIMATION ENDS *****************************/

.box_frame_header{
    width: 90%;
    margin-left: 20px;
}
.box_frame_header h1{
    font-size: 2.0rem;
    margin-top: 50px;
    line-height: 2.1rem;
}
.Brand_box{
    width: 89%;
    margin-left: 30px;
    padding-top: 25px;
    font-size: 1.2rem;
    line-height: 1.21rem;
    text-align: justify;
    padding-bottom: 0px;
}
.Brand_box p{
    margin-top: 15px;
}
.word-tag{
    color: #ffc000;
    /* color: #ff0009; */
}
.showcase_btn{
    float: right;
}

.boton-showcase{
    margin-top: 15px;
    margin-left: 10px;
    min-width: 180px;
    height: 35px;
    padding: 0 20px;
    background-color: #610000;
    border-radius: 5px;
    color: rgba(255, 255, 255,0.85);
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease all;  
}
.boton-showcase:hover{
    background-color: #880000;
    text-decoration: none;
}

/****************** HOW WE WORK ******************************************************/

#howWork{
    position: relative;
    width: 100vw;
    height: 720px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #040405;
    color: #eef0da;
    background-image: url("../assets/DSK_BACKGRNDS/HOW-WE_WORK_1.png");
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.STD_skewed_1{
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 0 0 960px;
    border-color: transparent  transparent transparent #003c3d;
    border-style: solid; 
}
.STD_skewed_7{
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 0 0 960px;
    border-color: transparent  transparent transparent #040404;
    border-style: solid; 
}
.Box_frame-step{
    width: 90%;
    height: 80%;
    margin: 0 auto;
    padding-top: 0px;
    
}
.box_frame_header-step{
    width: 95%;
    margin-left: 20px;
}
.box_frame_header-step h1{
    font-size: 2.0rem;
    margin-top: 0px;
    margin-bottom: 40px;
    line-height: 2.1rem;
}
.Brand_box-step{
    width: 85%;
    margin-left: 30px;
    padding-top: 25px;
    font-size: 1.2rem;
    line-height: 1.21rem;
    padding-bottom: 0px;
}
.Brand_box-step p{
    margin-top: 15px;
}
.word-tag{
    color: #ffc000;
    /* color: #ff0009; */
}
.box_items-step{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 20px;
}

.section_name{
    width: 300px;
    height: 35px;
    padding-left: 5px;
    border-left: 4px solid rgba(199, 0, 7, 0.68);
}
.title h1{
    font-family: 'Kanit', sans-serif;  
    font-weight: 100;
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
}
.subtitle h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 100;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform:uppercase;
}

.lap_item{
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 15px;
    padding: 5px 0 10px 0;
    border-top: thin solid rgba(87, 87, 87, 0.45);
}
.lap_item:nth-child(3){
    border-bottom: thin solid rgba(87, 87, 87, 0.45);
}

.lap_item h2{
    font-family: 'Kanit', sans-serif;
    font-size: 0.85rem;
    font-weight: 200;
    letter-spacing: 0.3rem;
}
.step_number{
    display: flex;
    align-items:flex-start;
}

.step_number img{
    width: 90px;
    height: auto;
    opacity: 0.78;
}
.step_text p{
    font-size: 0.82rem;
    font-weight: 100;
}



/*********** CTA BOX SECTION ***************************/

#CTA_Box{
    max-width: 960px;
    height: 220px;
    margin: 0 auto;
    background-color: #1a1a1a;
    background-image: url("../assets/NDX_STD_BACKGRNDS/DESK_SCAPE-1.png");
    background-repeat: no-repeat;
}
.CTA_box_wrapper{
    margin: 0 auto;
    max-width: 800px;
    height: 220px;
    /* background-color: rgba(0, 255, 255, 0.2); */
}
.CTA_box_grid{
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

/***************** CTA QUOTE *********************************/

.Slogan{
    position: relative;
    width: 100%;
    margin-top: -5px;
    margin-left: 80px;
}
.Slogan p{
    display:inline-block;
    padding-top: 30px;
    padding-left: 0px;
    font-size: 1.2rem;
	font-weight: 200;
	line-height: 1.4rem;
    letter-spacing: 1px;
    color: #fff;
}
.author-tag{
    color: #f6f7ea;
    font-weight: 200;
    font-size: 0.8rem;
}
.author-tag-2{
    padding-left: 5px;
    color: #f6f7ea;
    font-weight: 200;
    font-size: 0.6rem;
}
.btn-quote{
    position: absolute;
    left: -60px;
    top: 28px;
    font-size: 3rem;
    color: rgba(255, 0, 0, 0.7);
} 

/****************** MKT CTA COPY ***************************************/

.mkt_cta_box{
    padding-top: 20px;
    background-color: transparent;
}
.mkt_cta_box p{
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.75rem;
    color: rgba(255, 255, 255,0.85);
}
/********************************************/
.btn-red-tag{ font-size: 0.9rem}

/*******************************************/
.letUs{
    padding-left: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boton-cta{
    margin-top: 15px;
    margin-left: 10px;
    min-width: 180px;
    height: 35px;
    padding: 0 20px;
    background-color: #c70007cc;
    border-radius: 5px;
    color: rgba(255, 255, 255,0.85);
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease all;  
}
.boton-cta:hover{
    background-color: #9e0107cc;
    text-decoration: none;
}

.Copy_SN{
    background-color: #070707; 
    padding: 10px;
    text-align: center;
    width: 100%;
    height: auto;
}
.CopyRight{     
    color:rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}
.copySymbol{
    color:rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/********************* FOOTER ****************************/

#Footer{
    width: 100%;
    height: 100%;
    background-image: url("../assets/NDX_images/dark_mosaic.png");
    background-repeat: repeat;
    background-color: #000000; 
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='105' viewBox='0 0 80 105'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='death-star' fill='%23151516' fill-opacity='0.27'%3E%3Cpath d='M20 10a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm15 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zM20 75a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zm30-65a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm0 65a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zM35 10a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zM5 45a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zm60 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */ 
}
.shadow_screen{
    width: 100%;
    height: 50px;
    background-image: url("../assets/NDX_images/shadow_screen.png");
    background-repeat: repeat-x;
    z-index: 99;
}
.footer_main_wrapper{
    margin: 0 auto;
    max-width: 800px;
    height: 160px;
    color:#b9b7b7;
    font-weight: 300;
    /* background-color: rgba(0, 255, 255, 0.2); */
}
.logos{
    margin-top: 0px;
    padding-left: 40px;
}
/* .footer_main_wrapper img{
    width: 170px;
    height: auto;
    opacity: 0.75;
} */
.PKO img{
    width: 170px;
    height: auto;
    opacity: 0.75;
}
/* .FRK{
    padding-top: 15px;
    padding-left: 55px;
} */
.FRK img{
    width: 50px;
    height: auto;
    opacity: 0.75;
}
.footer_grid_container{
    padding-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.footer_contact-ref{
    margin-top: -25px;
    color:#b9b7b7;
}
.place{
    font-size: 0.8rem;
}
.footer-item{
    padding-bottom: 10px;
    display: inline-block;
    text-decoration: none;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.btn-icon-footer{
    padding-right: 10px; 
    font-size: 1.2rem;
    color: rgb(113 115 117);
}
.footer-snetwork{
    margin-top: 15px;
    text-decoration: none;
    font-size: 1.7rem;
}
.footer-snetwork a{
    color:rgb(113 115 117);
}
.footer-snetwork a:hover{
    color:#ff0009;
}
.Sub_menu{
    margin-top: -25px;
    color:#b9b7b7;
}
.FRM-Sub-Extended {
    padding-bottom: 5px;
}
.Sub_menu a{
    color:#b9b7b7;
    font-size: 0.7rem;
    line-height: 0.8rem;
}
.Sub_menu a:hover{
    color:#ff0009;
}











