﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
}

.modal-header {
    background-color: #cc0066;
    color: black;
}
#content-wrap {
    padding-bottom: 6rem; /* Footer height */
    padding: 15px;
}

#footerTest {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #004242;
    color: white;
    text-align: center;
    vertical-align: middle;
    padding: 25px;
    height: 6rem; /* Footer height */
}

.footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #004242;
    color: white;
    text-align: center;
    height: 100%;
    padding: 25px;
}
.footIcon{
    height:60px;
}
.body-content {
    width: 100%;
    padding: 25px;
}
.text-box-filter {
    width: 100%;
    padding: 25px;
    color: #fff;
    background-color: #e2e2e2;
}
.testHeight {
    overflow-y: scroll;
    height:250px;
    width:100%;
    border: solid;
    border-color: black;
    border-width: 1px;
    cursor: default;
}
.label-head {
    font-size: 18px;
}
.tooltip2 {
    position: relative;
    display: inline-block;
}
    .tooltip2 .tooltiptext {
        visibility: hidden;
        width: 185px;
        background-color: #cc0066;
        border-style: solid;
        border-color: #99004d;
        border-width: 1px;
        color: white;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        border-radius: 5px;
        padding: 5px 5px 5px 5px;
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 101%;
    }
        .tooltip2 .tooltiptext::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -5px;
            margin-left: 10px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent #99004d transparent transparent;
        }
.tooltip2:hover .tooltiptext {
        visibility: visible;
}

.EvalToolTip {
    position: relative;
    display: inline-block;
}

    .EvalToolTip .ttEval {
        visibility: hidden;
        width: 205px;
        background-color: #000000;
        border-style: solid;
        border-color: #000000;
        border-width: 1px;
        color: white;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        border-radius: 5px;
        padding: 5px 5px 5px 5px;
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 101%;
    }

        .EvalToolTip .ttEval::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -5px;
            margin-left: 10px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent #000000 transparent transparent;
        }

.EvalToolTip:hover .ttEval {
        visibility: visible;
}

* {
    padding: 0;
    margin: 0;
}

nav {
    margin: auto;
    background: #004242;
    padding: 5px 20px;
    z-index: 999;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    padding: 0;
    margin: 0;
    color: white;
    text-decoration: none;
}

    a:hover {
        color: #d4f9f9;
    }

.menu li {
    font-size: 16px;
    padding: 10px 5px;
}

    .menu li a {
        display: block;
    }

.logo a {
    font-size: 22px;
    font-family: 'Times New Roman';
    text-decoration: none;
    color: white;
    width: 285px;
}

.button {
    border-bottom: 1px #cc0066 solid;
}
.h5{
    font-size:20px;
}
.text-box {
    width: 50%;
    color: #fff;
    position: absolute;
    left: 2%;
    text-align: left;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .text-box h1 {
        padding-bottom: 25px;
        font-size: 24px;
    }

    .text-box p {
        padding-bottom: 25px;
        font-size: 16px;
    }

.filter-btn {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #fff;
    border: 1px solid #005c5c;
    background: #005c5c;
    padding: 10px 10px;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    border-radius: 5px
}

    .filter-btn:hover {
        text-decoration: none;
        border: 1px solid #004242;
        background: #004242;
        color: white;
    }

    .hero-btn a:hover {
        color: white;
    }





/* Mobile Menu*/
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.toggle {
    order: 1;
}

.item {
    width: 100%;
    text-align: center;
    order: 3;
    display: none;
    font-weight:600;
}

    .item.button {
        order: 2;
    }

    .item.active {
        display: block;
    }

.toggle {
    cursor: pointer;
}

.bars {
    background: white;
    display: inline-block;
    height: 2px;
    position: relative;
    width: 18px;
}

    .bars::before, .bars::after {
        background: white;
        content: "";
        display: inline-block;
        height: 2px;
        position: absolute;
        width: 18px;
    }

    .bars::before {
        top: 5px;
    }

    .bars::after {
        top: -5px;
    }






/* Tablet Menu */
@media all and (min-width:600px) {
    .menu {
        justify-content: center;
    }

    .logo {
        flex: 1;
    }

    .item.button {
        width: auto;
        order: 1;
        display: block;
    }

    .toggle {
        order: 2;
    }

    .button {
        border: 0;
    }

        .button a {
            margin-right: 20px;
            text-decoration: none;
            padding: 5px 10px;
            background: #004242;
            border: 2px solid #cc0066;
            border-radius: 25px;
            color: #cc0066;
        }

        .button.secondary a {
            background: transparent;
        }

        .button a:hover {

        }

        .button:not(.secondary) a:hover {
            background: #cc0066;
            border-color: #cc0066;
            color: #004242;
        }

        .button.secondary a:hover {
            color: black;
            background: white;
        }

    .text-box h1 {
        padding-bottom: 25px;
        font-size: 36px;
    }

    .text-box p {
        padding-bottom: 25px;
        font-size: 18px;
    }

    .filter-btn {
        display: block;
        width: 100%;
        text-decoration: none;
        color: #fff;
        border: 1px solid #005c5c;
        background: #005c5c;
        padding: 10px 14px;
        font-size: 20px;
        position: relative;
        cursor: pointer;
        border-radius: 8px;
    }
    .label-head{
        font-size:18px;
    }
    .h5{
        font-size:18px;
    }
    .footIcon {
        height: 75px;
    }
    #content-wrap {
        padding-bottom: 7rem; /* Footer height */
        padding: 15px;
    }

    #footerTest {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #004242;
        color: white;
        text-align: center;
        vertical-align: middle;
        padding: 25px;
        height: 7rem; /* Footer height */
    }
}

/* Desktop Media*/
@media all and (min-width:900px) {
    .item {
        display: block;
        width: auto;
    }

    .toggle {
        display: none;
    }

    .logo {
        order: 0;
    }

    .item {
        order: 1;
    }

    .button {
        order: 2;
    }

    .menu li {
        padding: 10px 25px;
    }

        .menu li.button {
            padding-right: 0;
        }

    .text-box h1 {
        padding-bottom: 25px;
        font-size: 56px;
    }

    .text-box p {
        padding-bottom: 25px;
        font-size: 24px;
    }

    .filter-btn {
        display: block;
        width: 100%;
        text-decoration: none;
        color: #fff;
        border: 1px solid #005c5c;
        background: #005c5c;
        padding: 10px 20px;
        font-size: 22px;
        position: relative;
        cursor: pointer;
        border-radius: 5px;
    }
    .label-head {
        font-size: 20px;
    }
    .h5{
        font-size:22px;
    }
    .footIcon {
        height: 90px;
    }
    #content-wrap {
        padding-bottom: 8rem; /* Footer height */
        padding: 15px;
    }

    #footerTest {
        position: absolute;
        bottom: 0;
        width: 100%;
        background-color: #004242;
        color: white;
        text-align: center;
        vertical-align: middle;
        padding: 25px;
        height: 8rem; /* Footer height */
    }
}


.sub-header {
    width: 100%;
    height: 30vh;
    background-image: linear-gradient(to right,#005c5c 30%, rgba(255, 255, 255, .09));
    background-size: cover;
    background-position: center;
    position: relative;
}




