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

.full {
    background-color: #000000; 
    color: #FFFFFF; 
    font-family:"Montserrat", sans-serif;
    justify-content: flex-start;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; 
}

header {
    text-align: left;
    max-width: 800px;
    padding: 20px;
    margin-left: 50px;
    background-color: rgba(0, 0, 0, 0.7); 
    border-radius: 8px;
}


header {
    text-align: left;
    max-width: 800px;
    padding: 20px;
}

header h1 {
    font-size: 2.2em;
    color: #FFFFFF; 
    margin-bottom: 10px;
}

header p {
    color: #51C4BD; 
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Sitemap styling */
.Sitemap {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

/* Main list items (first level) */
.Sitemap > li {
    margin: 15px 0;
    font-size: 1.3em;
    position: relative;
    padding-left: 20px; /* Add some space for the line */
}

/* Adding connecting line for main items */
.Sitemap > li::before {
    content: '';
    position: absolute;
    left: -20px; /* Align with the start of the text */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #666666; /* Line color */
}

/* Adding line before the text */
.Sitemap > li > a {
    color: #FFFFFF; /* White links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.Sitemap > li > a:hover {
    color: #51C4BD; /* Teal on hover */
}

/* Nested lists (second level) */
.Sitemap ul {
    margin-left: 20px;
    list-style: none;
    padding-left: 15px;
    position: relative;
    border-left: 2px solid #666666; /* Vertical line for nested items */
}

.Sitemap ul li {
    margin: 8px 0;
    font-size: 1.1em;
    position: relative;
}

/* Styling nested items with branching lines */
.Sitemap ul li::before {
    content: '';
    position: absolute;
    left: -20px; /* Align with the start of the text */
    top: 10px;
    width: 15px;
    height: 2px;
    background-color: #666666; /* Horizontal branch */
}

.Sitemap ul li a {
    color: #A0A0A0; /* Lighter gray for nested links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.Sitemap ul li a:hover {
    color: #51C4BD; /* Teal on hover for nested links */
}

.Sitemap > li >  a {
    color: #FFFFFF; /* White links by default */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.Sitemap > li:nth-of-type(1) > a,  /* Home */
.Sitemap > li:nth-of-type(2) > a,  /* About Us */
.Sitemap > li:nth-of-type(3) > a,  /* Application */
.Sitemap > li:nth-of-type(4) > a,  /* Solutions */
.Sitemap > li:nth-of-type(5) > a,  /* Insights */
.Sitemap > li:nth-of-type(6) > a,  /* Career */
.Sitemap > li:nth-of-type(7) > a { /* Contact-us */
    color: #51C4BD;
}
h1:hover {
    color: #fff;
    text-shadow: 0 0 15px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 0 0 100px #03e9f4;
}