@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@300;400;700;900&family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');

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

body{
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2em; 
    -webkit-font-smoothing: antialiased;
    
}

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

/***************************************************/
.container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto
}
.header{
    background-color: rgb(255, 255, 255);
    color: #333;
    padding: 1.2rem 0;

    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    /*** instead of width: 100%*******/
    z-index: 999;

}
.header img{
    width: 300px;
    height: auto;
}
.btn-menu{
    display: none;
}
.header a{
    font-size: 13px;
    text-decoration: none;
    color: #aaacad;
}
.logo-nav-spliter{
    display: flex;
    justify-content:space-between;
}

.navigation ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.navigation ul li{
    display: inline-block;
}
.navigation ul li a{
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.2s linear;
}
.navigation ul li a:hover{
    color: #f78e1e;
}

/***********************************************************************/

section{
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
}

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

/***************************************************************/

#Willkommen{
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    background-image: url("../assets/NDX_images/ITBKGRND_2.jpg");
}

.Section_prime{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px; 
    padding-bottom: 50px;
    /* background-color: rgb(151, 150, 150); */
} 

.Section_prime h1{
    font-family: 'Titillium Web', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255, 255, 0.75);
    letter-spacing: 0.5rem;
    line-height: 3.4rem;
    text-align:center;
}

.Section_prime h1 span{
    display: inline-block;
    color: #f78e1e;
}

.fadeInRight {
    /* animation: fadeInRight 2000ms ease-in-out; */
   animation:  theInnovate 800ms ease  1 normal forwards;
}
@keyframes theInnovate {
    0% {
      transform: scale(0.5);
    }
    
    100% {
      transform: scale(0.95);
    }
  }

  
/************* SCROLLING BUTON ANIMATION ****************************************/

.scroll{
    margin: 15px auto 0;
    width: 30px;
    height: 70px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    display: flex;
    justify-content: center; 
    animation: Inside 2s ease 4s 1 normal both;
}
@keyframes Inside {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
.scroll::before{
    content:"";
    color: #fff;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255);
    border-radius: 50%; 
    opacity: 1;
    animation: mouse 1s infinite;
}

@keyframes mouse{
    0%{
        opacity: 1;
        margin-top: 20px;
    }
    70%{
        opacity: 0.5;
    }
    100%{
        opacity: 0;
        margin-top: 40px;
    }
}

/***************OUR PREMIUM BRANDS **************************************/

#Marken{
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    background-image: url("../assets/NDX_images/NEW_ITBKGRND_16.jpg"); 
}

.Section_container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px; 
    /* background-color: rgb(151, 150, 150);*/
}

.Section_container h2{
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.85rem;
    font-weight: 600;
    color: rgba(255,255, 255, 0.9);
    letter-spacing: 0.6rem;
    line-height: 2.8rem;
    text-align:center;
    padding-bottom: 0px;
}

.Section_container span{
    color: #f78e1e;
}
.brands_Subtitle {
    margin: 20px 30px 0 30px;
    text-align:center;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.95rem;
    text-transform: none;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #fff;
}
.Section_container p{
    text-align:center;
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #fff;
} 

.Box_frame{
    display:flex;
    justify-content: center; 
    height: 100%;
    margin-top: 50px;
    text-align: center;
}

.Brand_box_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px 25px;
    padding-bottom: 100px;
}

.Brand_specs{
    background-color: rgba(128, 126, 126, 0.6);
    backdrop-filter: blur(2px);
    width: 250px; 
    padding: 20px 15px 15px 15px;
    border-left: thin solid #929191;
    border-top: thin solid #929191;
    border-radius: 5px;
}

.animado{
    opacity: 0;
    transition: all 2s;
}

.Brand_specs a{
    border: none;
    
}
/**********************************************************/
/* .Brand_specs button{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color:transparent;
    border-top: thin solid rgba(255, 255, 255, 0.4);
    border-right: thin solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    padding: 2px 2px 4px 4px;
}

.Brand_specs button a{
    color:#fff;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
} */

/***********************************************************/

.Brand_specs img{
    text-align: center;
    z-index: 100;
}
.Brand_specs h4{
    /* font-family: Arial, Helvetica, sans-serif; */
    margin-top: -15px;
    margin-bottom: 10px;
    color:rgb(240, 240, 240);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    padding-top: 20px;
    -webkit-font-smoothing: antialiased;
}

/**** ABOUT US ****************************************/

#Uberuns{
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    background-image: url("../assets/NDX_images/ITBKGRND_4.jpg");
}

.Section_container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px; 
}

.Box_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    padding-bottom: 130px;
}

.text_container {
    margin-top: 30px;
}
.text_container p{
    text-align: left;
    font-family: 'Titillium Web', sans-serif;
    text-transform:none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #fff;
}

.whoArewe span{
    color: #f78e1e;
}
.whoArewe p{
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255,255, 255, 0.9);
    letter-spacing: 0.25rem;
    text-align:center;
    text-transform: none;
}
.orange-title img{
    width: 140px;
    height: auto;
}
.orange_title{
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

/******************** MARKETS ********************************************/

#Markte{
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    background-image: url("../assets/NDX_images/NEW_ITBKGRND_4.jpg");  
}
.Section_container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px; 
}

.Box_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    padding-bottom: 100px;
}
.text_container p{
    font-size: 1rem;
    margin-top: 0px;
    text-align: left;
}
.text_container span{
    color: #f78e1e;
    font-size: 0.97rem;
    font-weight: 600; 
}
.features{
    margin-left: 15px;
    color:#fff;
    padding: 12px 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.industries span{
    color: #f78e1e;
}

.Markets{
    margin: 40px auto 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    opacity: 0.95; 
}
.Markets img{
    width: 350px;
    height: auto;

}

/*************** COVERAGE *************************************************/

#Coverage{
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    background-image: url("../assets/NDX_images/NEW_ITBKGRND_15.jpg");  
}
.Section_container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px; 
}

.Box_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    padding-bottom: 100px;
}
.text_container p{
    font-size: 1rem;
    margin-top: 0px;
    text-align: left;
}
.text_container span{
    color: #f78e1e;
    font-size: 0.97rem;
    font-weight: 600; 
}
.country_features{
    margin-left: 15px;
    color:#fff;
    padding: 12px 0;
    font-weight: 200;
    letter-spacing: 0.1rem;
}
.country_features span{
    display:inline-block;
    padding: 10px 0;
}
.coverage_map img{
    max-width: 350px;
    height: auto;
}

.coverage_map{
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
} 


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

#Footer{
    width: 100%;
    height: 100%;
    background-color: rgb(17, 17, 17);
}

.Section_footer_container{
    width: 100%;
    height: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 40px; 
}

.Footer_Box_grid{
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    column-gap: 10px;
    padding-bottom: 40px;
}
.footer_logos img{
    width: 190px;
    height: auto;
    opacity: 0.85;
}
.footer_address{
   padding-top: 15px;
}

.footer_address p{
    padding: 5px 0;
    font-size: 0.95rem;
    color:#666;
}
.footer_address span{
    margin-right: 15px;
    color:#666;
    font-size: 1.6rem;
}

.footer_contact{
    padding-top: 15px;
 }
.cta_statement P{
    font-size: 1rem;
    color: #666;
}
a{
    font-size: 0.8rem;
    text-decoration: none;
    color:rgba(255, 255, 255, 0.95);  
}
a:hover{
   color: #fdfdfd; 
}
button{
    background-color: #f78e1e;
    margin-top: 15px;
    padding: 8px 15px;
    border: none; 
    border-radius: 4px;
}
button:hover{
    background-color: #f78e1e;
}
.ssl-cert{
    margin-top: 10px;
    float:right;
}

.Copy_SN{
    background-color: #000000; 
    padding: 10px;
    text-align: center;
    width: 100%;
    height: auto;
}
.CopyRight{     
    color:#666;
    font-size: 0.8rem;
}





























































