@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');

*{
    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;
}

/******************** STD HEADER******************************/

#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{
    /* display:block; */
    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;
    overflow-x: hidden; 
    /* background-attachment:fixed;  */
}
/****************** SKEWED ITEMS ************************************/

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


/*************** WILLKOMMEN SECTION *******************************/

#Willkommen{
    position: relative;
    width: 100vw;
    height: 480px;
    margin-top: 0px;
    margin-bottom: 0px;
    /* background-color: #040405; */
    background-color: rgb(29 28 28 / 85%);
    color: #eef0da;
    background-image: url("../assets/NDX_STD_BACKGRNDS/BANNER_SLIDER_1.png");
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.STD_skewed_1{
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 0 0 100vw;
    border-color: transparent  transparent transparent #00141c;
    /* border-color: transparent #ebebeb transparent transparent;*/ 
    border-style: solid; 
}
.cta_text h2 {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    -webkit-animation-delay: 1.2s; 
    animation-delay: 1.2s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes bounceInLeft {
    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 bounceInLeft {
    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;
    }
    }   
.cta_text h2{
    margin-top: 0px;
    margin-left: 50px;
    padding-top: 120px;
    font-size: 2.4rem;
    line-height: 2.4rem;
    
}
.cta_text p {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-delay: 2s; 
    animation-delay: 2s;
    -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;
    }
    } 
.cta_text p{
    width: 45%;
    margin-top: 10px;
    margin-left: 50px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.2rem;
    
 }

/************************ FOCUSED SECTION  *******************************/

#Focused{
    position: relative;
    max-width: 960px;
    height: 480px;
    margin: 0 auto;
    color: rgb(184 184 184);
    background-color: #ebebeb;
    background-image: url("../assets/NDX_STD_BACKGRNDS/BANNER_SLIDER_6.png");
    background-repeat: no-repeat;
}
.STD_skewed_2 {
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 100vw 0 0;
    border-color: transparent #670803 transparent transparent;
    /* border-color: transparent #ebebeb transparent transparent;*/ 
    border-style: solid; 
}
#Focused h2{
    width: 60%;
    margin-left: 180px;
    padding-top: 60px;
    font-size: 2.2rem;
    line-height: 2.2rem;
    
}
#Focused p{
    width: 64%;
    margin-top: 10px;
    margin-left: 180px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.15rem;
    text-align: justify;
    
}
.text-tag{
    color:#fefefe;
    font-weight: 300;
}
.Frase{
    position: relative;
    width: 100%;
    margin-top: 5px;
    margin-left: 70px;
}
.Frase p{
    display:inline-block;
    padding-top: 0px;
    padding-left: 0px;
    font-size: 1.1rem;
	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-frase{
    position: absolute;
    left: 115px;
    top: 7px;
    font-size: 3rem;
    color: rgb(3 109 134);
}

/********************* SERVICES SECTION ***************************/

#Services{
    position: relative;
    max-width: 960px;
    height: 480px; 
    margin: 0 auto;
    /* color: #ebeebe; */
    color: rgb(243, 241, 241); 
    background-color: #1a1a1a;
    background-image: url("../assets/NDX_STD_BACKGRNDS/BANNER_SLIDER_7.png");
    background-repeat: no-repeat;
}
.STD_skewed_3 {
    position: absolute;
    left: 0;
    bottom: 0;
    border-width: 80px 960px 0 0;
    border-color: transparent #040404 transparent transparent;
    /* border-color: transparent #040404 transparent transparent; */
    border-style: solid; 
}
.services_main_container{
    margin: 0 auto;
    max-width: 780px;
    height: 480px; 
}
.services_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    padding-top: 30px;
}
.service_box{
    height: 330px;
}


.box_header h2{
    margin-left: 0px;
    padding-bottom: 10px;
    font-size: 1.7rem;
    line-height: 1.8rem;
}
.service_box h3{
    padding-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.1rem;
    /* color:#e03f04; */
}
.box_header p{
    margin-top: 10px; 
    margin-left: 0px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.1rem;
    text-align: justify;
}
.Subtitle{
    font-size: 1.3rem;
}

.boton{
    margin-top: 15px;
    margin-left: 0px;
    min-width: 150px;
    height: 35px;
    padding: 0 15px;
    background-color: #e03f04;
    border-radius: 5px;
    color: rgba(255, 255, 255,0.95);
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    cursor:pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease all;
}
.btn-icon{ 
    font-size: 1rem;
    color: rgba(255, 255, 255,0.7);
}

.btn-tag{ font-size: 0.8rem}

.boton:hover{
    background-color: rgba(224, 63, 4, 0.7);
    text-decoration: none;
}
.word-tag{
    /* color:#ff4504; */
    color:#ffa704;
    font-weight: 500;
}

/*********** 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;
}
/******************************************************/
.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.1rem;
	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);
} 

/********************* MAIN CTA COPY PREGUNTAS **************************************/

.mkt_cta_box{
    padding-top: 20px;
    background-color: transparent;
}
.mkt_cta_box p{
    font-size: 1.5rem;
    font-weight: 300;
    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); */
}
.footer_main_wrapper img{
    width: 170px;
    height: auto;
    opacity: 0.75;
}
.footer_grid_container{
    padding-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}
.logos{
    margin-top: 0px;
    padding-left: 40px;
}
.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;
}











