@font-face {
    font-family: 'MyCustomFont';
    src: url('https://help.forcepoint.com/docs/Tech_Pubs/fonts/19f2c06837305887-s.p.woff') format('woff'),
        url('https://help.forcepoint.com/docs/Tech_Pubs/fonts/29455c8220dcbd16-s.p.woff') format('woff'),
        url('https://help.forcepoint.com/docs/Tech_Pubs/fonts/91691a199189ad78-s.p.woff') format('woff'),
        url('https://help.forcepoint.com/docs/Tech_Pubs/fonts/fea3d4467cfa205e-s.p.woff') format('woff');

    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Hoves", Arial, sans-serif;

    scroll-behavior: auto;
}



body {
    overflow-x: hidden;

}

.header {
    position: relative;
    top: 0px;
    z-index: 3;
    background-color: white;
}

nav {
    max-width: 96vw;
    justify-content: space-between;
    margin: auto;
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 10;
}

nav img {
    position: relative;
}

nav ul {
    display: flex;
    width: 350px;
    justify-content: space-evenly;
}

nav ul li a {
    text-decoration: none;
    color: rgb(4, 0, 0);
    font-weight: bold;
}

nav ul li,
.part2 ul li {
    list-style: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    text-align: center;
}

.dropdown li {
    list-style: none;
    cursor: pointer;
    color: black;
    font-size: 13px;
    text-align: center;
}

nav li ul.dropdown ul li {
    display: block;
    background: #333;
    text-align: center;
}

nav li ul.dropdown {
    width: 155px;
    border-radius: 4px;
    background-color: white;
    position: absolute;
    right: 106px;
    top: 18px;
    z-index: 999;
    display: none;
    line-height: 2;
}

nav li:hover ul.dropdown {
    display: block;
}

nav li:hover ul.dropdown li:hover {
    background-color: black;
    color: white;
}

/* CSS to style the unordered list and hyperlinks inside the #links-container */
#links-container ul {
    list-style-type: none;
    /* Removes default bullets */
    padding: 0;
    /* Removes default padding */
    display: flex;
    flex-direction: column;
    width: 155px;
    background-color: white;
    position: absolute;
    z-index: 999;
    line-height: 2;
}

#links-container ul li {
    background-color: white;
}

#links-container li {
    list-style: none;
    cursor: pointer;
    color: black;
    font-size: 13px;
    text-align: center;
}

#links-container a {
    color: black;
    /* Makes the hyperlink text black */
    text-decoration: none;
    /* Removes underline from the link */
    font-size: 16px;
    /* Adjusts the font size */
    font-family: Arial, sans-serif;
    /* Adds a font family */
}

/* Optional: On hover, you can add more styles (like underline or color change) */
#links-container ul li:hover {
    background-color: black;
    /* Adds underline when hovering */
    color: white;
    /* Changes color to grey on hover */
}


#arrow1 {
    height: 10px;
}

#arrow2 {
    height: 10px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.main {
    background-image: url(images/header.png);
    height: 175px;
    width: 100vw;
    background-color: black;
    background-size: max(1200px, 100vw);
    background-repeat: no-repeat;
    position: relative;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 72px;
    color: white;
    text-align: center;
}

#redoc {
    width: 100%;
    height: 100vh;
    /* Set a fixed height or use 100% if the parent div has a height
    bottom: 60px;*/
    position: relative;

}

.Footer {
    background-color: black;
    height: 50px;
    justify-content: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.footericon {
    display: flex;
    justify-content: center;

}

.footericon a {
    color: #ffffff;
    margin: 3px 3px 3px 30px;
}

.footerterms ul {
    display: flex;
    justify-content: space-evenly;
}

.footerterms ul li {
    list-style: none;
}

.footerterms li a {
    text-decoration: none;
    position: relative;
    left: 0px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

/* Workaround to hide platform API unused tags that are displayed in the sidebar */
li[data-item-id="tag/command"],
li[data-item-id="tag/query"] {
    display: none;
}

div[data-section-id="tag/command"],
div[data-section-id="tag/query"] {
    display: none;
}

/* Workaround to hide the Info section as hideInfoSection is not working */
div .api-info {
    display: none;
}

@media only screen and (max-width:1200px) {

    h1 {
        font-size: 50px;
    }

    .navbar {
        width: 90vw;
        position: relative;
        bottom: 0;
    }
}


@media only screen and (max-width:900px) {

    .title {
        text-align: center;
        width: 500px;
    }

    .logo {
        width: 75px;
        height: 50px;
    }
}

@media screen and (max-width:600px) {

    .logo {
        width: 75px;
    }

    nav ul {
        width: 200px;
    }

    nav ul li {
        font-size: 10px;

    }

    nav li ul.dropdown {
        right: 66px;
        top: 24px;
        width: 80px;
        line-height: 2.5;
    }

    #links-container ul {
        width: 80px;
        line-height: 2.5;
    }

    #links-container li {
        font-size: 6px;
    }

    .title {
        font-size: 40px;
        width: 250px;
        text-align: left;
    }

    h2 {
        font-size: 12px;
        width: 300px;
    }


    #arrow1,
    #arrow2 {
        width: 6px;
        height: 6px;
    }

    .prod {
        height: 60px;
        width: 40px;
    }

    .option {
        width: 20px;
        height: 40px;
        font-size: 6px;
    }

    .Footer {
        height: 50px;
    }

    .footerterms ul li {
        font-size: 10px;

    }
}