html, head, body {
    --sl-red: #CC0000;
    --sl-red-darker: #b50000;

    background: black;
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;

    /* --- FONT ---*/
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

.header {
    background-color: black;
    height: 48px;
    color: white;
    /*border-bottom: 1px solid #7e7e7e;*/
    display: flex;
    justify-content: center;
    box-shadow: 0 0 6px #1e1e1e;
    position: relative;

}

.header .container {
    display: flex;
    justify-content: space-between;
}

.title {
    align-content: center;
    flex-basis: 200px;
    margin-left: 15px;
    font-size: 20px;
    font-weight: bold;

    img {
        width: 30px;
        height: 30px;
        vertical-align: middle;
        margin-right: 5px;
    }

    .first {
        color: var(--sl-red);
    }

    .second {
        color: #EA5200;
    }
}

.nav {
    align-content: center;

    ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    li {
        margin: 0 10px;
        display: flex;
    }

    a {
        display: flex;
        align-items: center;

        img {
            margin-right: 5px;
        }
    }
}

.main-section {
    background: url('./assets/map-pro-ext-bg.png') no-repeat center center fixed;
    height: 400px;
    display: flex;
    justify-content: center;
    background-size: cover;
}

.main-section .container, .contact-main-section .container {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
}

.product-basic-info {
    background: #000000e3;
    width: 435px;
    border-radius: 10px;
    padding: 1rem;

    h3 {
        margin: 0;
        font-size: 28px;
    }

    .go-to-monday {
        display: flex;
        gap: 1rem;
        justify-content: center;

        &.install {
            margin-bottom: .75rem;
        }
    }

    a.btn {

        padding: 4px 16px;
        border-radius: 4px;
        display: flex;
        gap: .25rem;
        margin-bottom: 4px;

        &.install {
            background: #0073ea;

            &:hover {
                background: #0060b9;
            }
        }

        &.docs {
            background: #ba1919;

            &:hover {
                background: #8c1313;
            }
        }

        &:hover {
            text-decoration: none;
        }

        &:active {
            transform: scale(0.95) translate3d(0, 0, 0);
        }
    }
}


.app-name-and-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    img {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        box-shadow: 0 0 4px 1px gray;
    }

    h1 {
        margin: 0;
        font-size: 24px;
        font-weight: bold;
    }
}

.body {
    display: flex;
    justify-content: center;
    box-shadow: 0 0 6px #1e1e1e;

    .description-main {
        margin: 1rem 0;
        text-align: justify;
    }

    .description-features {
        display: flex;
        gap: .5rem;

        .features {
            flex-grow: 3;
        }

        .problems {
            flex-grow: 2;
        }
    }

    li:has(.in-progress) {
        opacity: 0.5;
    }

    .in-progress {
        color: var(--sl-red);
    }
}

.container {
    width: 1200px;
    /*border: 1px solid blue;*/;
    height: 100%;
}

.product-section {
    display: flex;
    margin: 2rem 0;
    gap: 1rem;
    align-items: center;

    .media {
        flex: 7;
    }

    img {
        width: 100%;
    }

    .description {
        text-align: justify;
        flex: 3;
    }
}

a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;

    &:hover {
        color: white;
        text-decoration: underline;
    }
}

.title a {
    &:hover {
        text-decoration: none;
        transform: scale(1.1);
        display: inline-block;

    }
}

footer {
    text-align: center;
    margin: 2rem 0;
}

video {
    border: 1px solid white;
}