/* html and body */
html, body {
    overflow-x: hidden;
}
.nav-header {
    border-bottom: 1px solid var(--color-neutral);
}

/* Main banner video container */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* background banner gif */
.banner img {
   /* filter: invert(20%) sepia(95%) saturate(4994%) hue-rotate(123deg) brightness(94%) contrast(108%); */
   filter: grayscale(100%) brightness(40%) sepia(300%) hue-rotate(50deg) saturate(500%);
}

/* Banner text overlay section */
.banner-wrapper {
    position: absolute;
    color: var(--color-2);
    text-align: center;
    padding: 2em 1em;
}
.banner-wrapper h1 {
    margin-top: 0;
}

/* Learn more button */ 
.banner-wrapper button {
    margin-top: 1em;
    border: none;
    font-size: 16px;
    padding: 0.75em 2em;
    background-color: transparent;
    border: 2px solid var(--color-2);
    color: var(--color-2);
    border-radius: 5px;
}
.banner-wrapper button:hover {
    cursor: pointer;
    background-color: var(--color-2);
    color: var(--primary-color);
}

/* about 3d design section */
.about-design-wrapper {
    padding: 1em;
    text-align: center;
}
/* About design header */
.about-design h1 {
    margin: 0 0.25em 0.5em 0.25em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--color-1);
}
.about-design img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0 10px 5px rgba(0, 0, 0, 0.15);
}
/* About design desc text */
.about-design .description {
    padding: 1em;
    text-align: left;
    font-family: Arial;
    line-height: 25px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin: 1em 0;
}
.about-design .description h4, .about-design .description ul {
    margin: 0;
}

/* Get a quote button */
.about-design button {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 100%;
    border-radius: 10px;
    padding: 0.75em 0;
    font-size: 16px;
    transition: 0.25s;
}
.about-design button:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--color-2);
    transition: 0.25s;
}


/* applications section */
.applications {
    background-color: var(--color-1);
}
.applications h1 {
    margin-top: 0;
}
.applications-wrapper {
    padding: 1em;
}
.application {
    padding: 1em 0.75em;
    text-align: center;
    border: 2px solid var(--color-2);
    margin-bottom: 1em;
    border-radius: 5px;
    color: var(--color-2);
}

/* Modeling application */
.application video, .application img {
   width: 100%;
}
.application p {
    text-align: left;
    margin-bottom: 0;
}

/* Our scanner section */
.our-scanner-wrapper {
    padding: 1em;
}
.our-scanner h1 {
    margin-top: 0;
    margin-bottom: 0.25em;
}
.our-scanner h3 {
    margin-top: 0;
}
.our-scanner img {
    width: 100%;
}
.our-scanner p, .our-scanner ul {
    font-family: Arial;
    line-height: 25px;
}
.our-scanner p {
    margin-bottom: 0;
}
.our-scanner ul {
    margin: 0;
}

/* Examples section */
.examples {
    background-color: var(--color-1);
    color: var(--color-2);
}
.examples-wrapper {
    padding: 1em;
}
.examples h1, .examples h3 {
    margin: 0;
}
.example-section {
    padding: 1em 0;
}
.example-section img {
    width: 100%;
}
.examples-wrapper p {
    font-family: Arial;
    line-height: 20px;
}