* { /* the * affects all html elements */
    box-sizing: border-box; /* makes box model change. all borders edges go all the way to edge */
    padding:0;
    margin:0;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/static/fonts/plusJakartaSans/PlusJakartaSans-Regular.ttf');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/static/fonts/plusJakartaSans/PlusJakartaSans-Bold.ttf');
    font-weight: bold;
}

body {
    background-color: #FFFFFF;
    font-family: 'Plus Jakarta Sans';
}

nav {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 99;

}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.6;

}

/**nav****************************/
#navContainer {
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F5FFFE;
    padding: 0px 20px;
}

#navContainer2 {
    margin: 0 auto;
    padding: 0px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #06100F;
}

.hamburgerButton {
    display: block;
    margin-top: 4px;
    position: relative;
    z-index: 1;
    user-select: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

.hamburgerButton span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #06100F;
    border-radius: 6px;
    z-index: 1;
    transform-origin: 0 0;
    transition: 0.4s;
}

.hamburgerButton:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: #0AC0C6;
}

.hamburgerButton.navIsActive span:nth-child(1) {
    transform: translate(0px, -2px) rotate(45deg);
}

.hamburgerButton.navIsActive span:nth-child(2) {
    transform: translateX(15px);
    opacity: 0;
}

.hamburgerButton.navIsActive span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburgerButton.navIsActive:hover span {
    background-color: #0AC0C6;
}

.secondaryNavTabBClass {
    margin-left: 5px;
}

#indexBaseNav {
    display: none;
    flex: 1 1 0%;
    justify-content: flex-end;
    font-size: 12px;
    padding: 10px 10px; /*mobile padding so easy to tap with finger.*/
    font-weight: bold;
}

#indexBaseNav2 {
    display: none;
    flex: 1 1 0%;
    justify-content: flex-end;
    font-size: 12px;
    padding: 10px 10px; /*mobile padding so easy to tap with finger.*/
    font-weight: bold;
}


#navLogoImgID {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 150px;
    height: auto;
    display: none;
}

#navLogoImgID3 {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 150px;
    height: auto;
    display: none;
}













/* changed to 4px so visible on mobile, but needs own mobile styling */
/*Tablet munu. Typically 481 - 768*/
@media all and (min-width:4px) {
    /*  new nav menu ******************/
    #navLogoImgID {
        display: none;
        width: 150px;
        margin: 0px;
    }

    #navLogoImgID3 {
        display: none;
        width: 150px;
        margin: 0px;
    }

    #navLogoImgID2 {
        width: 35px;
        margin-top: 3px;
    }

    #navLogoImgID22 {
        width: 35px;
        margin-top: 3px;
    }

    #indexBaseNav {
        display: flex;
        flex-direction: row;
        align-content: flex-end;
    }

    #indexBaseNav2 {
        display: flex;
        flex-direction: row;
        align-content: flex-end;
    }

    .hamburgerButton {
        display: none;
        order: 2;
        margin-left: 17px;
    }

    .navTabClass {
        order: 1;
        padding: 8px 6px;
        color: #131717;
    }

    .navTabClass2 {
        order: 1;
        padding: 8px 6px;
        color: #FFFFFF;
    }

    .navTabBClass.secondaryNavTabBClass {
        border: 0;
    }

    .navTabBClass2.secondaryNavTabBClass2 {
        border: 0;
    }

    .navTabBClass {
        order: 2;
        text-decoration: none;
        padding:8px 12px;
        background: transparent;
        border: 1px solid #46D7D0;
        border-radius: 25px;
        color: #131717;
    }

    .navTabBClass2 {
        order: 2;
        text-decoration: none;
        padding:7px 12px;
        background: transparent;
        border: 1px solid #46D7D0;
        border-radius: 25px;
        color: #FFFFFF;
    }

    .secondaryNavTabBClass {
        margin-left: 15px;
        margin-right: -20px;
    }

    .secondaryNavTabBClass2 {
        margin-left: 15px;
        margin-right: -20px;
    }

    .navTabBClass.secondaryNavTabBClass {
        background: #46D7D0;
    }

    .navTabBClass2.secondaryNavTabBClass2 {
        background: #46D7D0;
    }

    .navTabBClass:hover {
        transition:all .04s;
    }

    .navTabBClass2:hover {
        transition:all .04s;
    }

    .secondaryNavTabBClass {
        margin-left: 5px;
    }

    .secondaryNavTabBClass2 {
        margin-left: 5px;
    }



    /*****************************************************************************/
    /*Index page*/
    .firstFrameIndex {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 550px;
        background: #F5FFFE;
    }

    #fFCont {
        display: none;
    }

    .firstFrameHeader {
        position: absolute;
        width: 250px;
        height: 200px;
        left: 30px;
        top: 90px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 24px;
        line-height: 40px;
        color: #0AC0C6;
    }

    .firstFrameParagraph {
        position: absolute;
        width: 285px;
        height: 80px;
        left: 30px;
        top: 220px;

        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 11px;
        line-height: 18px;
        text-align: justify;

        color: #818181;
    }

    .learnMoreAnch {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 6px 12px;
        gap: 10px;

        position: absolute;
        width: 130px;
        height: 40px;
        left: 30px;
        top: 350px;

        background: #0AC0C6;
        border-radius: 5px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        color: #FFFFFF;
        justify-content: center;
    }

    .firstFrameLogo {
        position: absolute;
        left: 80px;
        top: 410px;

        opacity: 0.2;
        transform: rotate(-25.81deg);
    }

    #firstFrameLogoID {
        width: 70px;
    }

    .secondFrameIndex {
        position: absolute;
        width: 100%;
        height: 560px;
        left: 0px;
        top: 550px;
        background: #FFFFFF;
    }

    #secondFrameSmallHeader {
        position: absolute;
        width: 143px;
        height: 25px;
        left: 30px;
        top: 590px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 25px;
        color: #0BF2FA;
    }

    #secondFrameLargeHeader {
        position: absolute;
        width: 250px;
        height: 30px;
        left: 30px;
        top: 600px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 60px;
        color: #06100F;
    }

    #secondFrameHeaderP {
        position: absolute;
        width: 340px;
        height: 60px;
        left: 270px;
        top: 595px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 16px;
        text-align: justify;
        color: #818181;
    }

    #secondFrameQ1 {
        position: absolute;
        top: 0px;
        left: 0px;
        right: 66.667%;
        height: 100%;
    }

    #secondFrameQ2 {
        position: absolute;
        top: 0px;
        left: 33.333%;
        right: 33.333%;
        height: 100%;
    }

    #secondFrameQ3 {
        position: absolute;
        top: 0px;
        left: 66.667%;
        right: 0%;
        height: 100%;
    }

    .secondFrameImgOneDiv {
        position: absolute;
        top: 150px;
        left: 30px;
        right: 30px;
        padding-top: 66.667%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .secondFramePicContainer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #secondFrameIndexPic1 {
        position: absolute;
        height: 100%;
        width: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .secondFrameImgH {
        position: absolute;
        top: calc(100% + 5px);
        left: 0px;
        right: 0px;
        height: 30px;
    }

    .secondFrameImgP {
        position: absolute;
        top: calc(100% + 40px);
        left: 0px;
        right: 0px;
        height: 100px;
    }

    .secondFrameImgTwoDiv {
        position: absolute;
        top: 150px;
        left: 30px;
        right: 30px;
        padding-top: 66.667%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    #secondFrameIndexPic2 {
        position: absolute;
        height: 100%;
        width: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .secondFrameImgThreeDiv {
        position: absolute;
        top: 150px;
        left: 30px;
        right: 30px;
        padding-top: 66.667%;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    #secondFrameIndexPic3 {
        position: absolute;
        height: 104%;
        width: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .secondFramePicH {
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 45px;
        color: #06100F;
    }

    .secondFramePicP {
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 14px;
        text-align: justify;
        color: #818181;
    }




    /*****************************************************************************/
    /*What is BuildSync page*/
    .wIFirstFrame {
        position: absolute;
        width: 100%;
        height: 400px;
        left: 0px;
        top: 0px;
        background: #06100F;
        z-index: -1;
    }

    #wITriGrad {
        position: absolute;
        left: 0px;
        width: 0px;
        height: 0px;
        border-left: 380px solid transparent;
        border-top: 380px solid linear-gradient(293.64deg, rgba(6, 16, 15, 0) 20.26%, #132624 94.27%);
    }

    .wIHeader {
        position: absolute;
        width: 300px;
        height: 81px;
        left: 30px;
        top: 90px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 24px;
        line-height: 40px;
        color: #FFFFFF;
    }

    .wIPara {
        position: absolute;
        width: 410px;
        height: 200px;
        left: 30px;
        top: 140px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 20px;
        text-align: justify;
        color: #B7B7B7;
    }

    .learnMoreAnchWI {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 6px 12px;
        gap: 10px;

        position: absolute;
        width: 130px;
        height: 40px;
        left: 30px;
        top: 330px;

        background: #0AC0C6;
        border-radius: 5px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        color: #FFFFFF;
        justify-content: center;
        z-index: 999;
    }

    .wISecondFrame {
        position: absolute;
        top: 400px;
        width: 100%;
        min-height: 40px;
        display: flex;
        flex-direction: column;
        background: url('/static/iconPics/wIPBGPic2.svg') no-repeat;
    }

    #wISFImgDeets {
        order: 1;
        width: 100%;
        height: auto;
        z-index: -1;
    }

    #wIFeatureFrame {
        order: 2;
        width: 100%;
        height: 400px;
        background: #FFFFFF;
    }

    #featureHeader {
        position: relative;
        top: 40px;
        left: 30px;
        height: 20px;
        width: 200px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 20px;
        color: #06100F;
    }

    #wIFeatureOne {
        position: relative;
        top: 55px;
        left: 30px;
        width: 345px;
        height: 50px;
        min-width: 200px;
        background: #06100F;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
    }

    #wIFeatureOne:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    .iconDiv {
        position: absolute;
        top: 10px;
        left: 15px;
        width: 30px;
        height: 30px;
        background: #0BF2FA;
        border-radius: 5px;
    }

    #wIF1Pic {
        position: absolute;
        top: 2.5px;
        left: 2.5px;
        width: 25px;
        height: auto;
    }

    #wIF1Para {
        position: absolute;
        left: 55px;
        top: 17.5px;
        height: 20px;
        width: 100%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: #FFFFFF;
    }

    #wIFeatureTwo {
        position: relative;
        top: 75px;
        left: 30px;
        width: 345px;
        height: 50px;
        min-width: 200px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
    }

    #wIFeatureTwo:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    #wIF2Pic {
        position: absolute;
        top: 2.5px;
        left: 2.5px;
        width: 25px;
        height: auto;
    }

    #wIF2Para {
        position: absolute;
        left: 55px;
        top: 17.5px;
        height: 20px;
        width: 100%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: #06100F;
    }

    #wIFeatureThree {
        position: relative;
        top: 95px;
        left: 30px;
        width: 345px;
        height: 50px;
        min-width: 200px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
    }

    #wIFeatureThree:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    #wIF3Pic {
        position: absolute;
        top: 2.5px;
        left: 2.5px;
        width: 25px;
        height: auto;
    }

    #wIF3Para {
        position: absolute;
        left: 55px;
        top: 17.5px;
        height: 20px;
        width: 100%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: #06100F;
    }

    #wIFeatureFour {
        position: relative;
        top: 115px;
        left: 30px;
        width: 345px;
        height: 50px;
        min-width: 200px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
    }

    #wIFeatureFour:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    #wIF4Pic {
        position: absolute;
        top: 2.5px;
        left: 2.5px;
        width: 25px;
        height: auto;
    }

    #wIF4Para {
        position: absolute;
        left: 55px;
        top: 17.5px;
        height: 20px;
        width: 100%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 15px;
        color: #06100F;
    }

    #hoveredFeature1 {
        position: relative;
        top: -145px;
        left: 400px;
        width: 345px;
        min-width: 250px;
        height: 260px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        visibility: visible;
        margin: 0px;
    }

    .featuredIconID {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 50px;
        height: auto;
    }

    .featuredHeaderID {
        position: absolute;
        top: 35px;
        left: 90px;
        width: 95%;
        height: 30px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 18px;
        line-height: 15px;
        color: #06100F;
    }

    .featuredParaID {
        position: absolute;
        top: 90px;
        left: 5%;
        width: 90%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 15px;
        color: #06100F;
    }

    #hoveredFeature2 {
        position: relative;
        top: -405px;
        left: 400px;
        width: 345px;
        min-width: 285px;
        height: 260px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        visibility: hidden;
    }

    #hoveredFeature3 {
        position: relative;
        top: -665px;
        left: 400px;
        width: 345px;
        min-width: 280px;
        height: 260px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        visibility: hidden;
    }

    #hoveredFeature4 {
        position: relative;
        top: -925px;
        left: 400px;
        width: 345px;
        min-width: 250px;
        height: 260px;
        background: #FFFFFF;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        visibility: hidden;
    }

    #wICalcFrame {
        order: 3;
        width: 100%;
        height: 600px;
        background: #F5FFFE;
    }

    #wICalcHeader {
        position: relative;
        top: 30px;
        justify-content: center;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 25px;
        text-align: center;
        color: #06100F;
    }

    #wI3CalcBox {
        position: relative;
        top: 45px;
        left: 30px;
        width: 691px;
        height: 300px;
        border-radius: 25px;
        background-color: #06100F;
        border: 1px solid #0AC0C6;
    }

    #wIb1Header {
        position: absolute;
        top: 12%;
        left: 5%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 26px;
        line-height: 20px;
        color: #FFFFFF;
        text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
    }

    #gcSelected {
        position: absolute;
        top: 10%;
        left: 60%;
        height: 40px;
        width: 40px;
        border: 1px solid #0AC0C6;
        border-radius: 7px;
        background: #0AC0C6;
    }

    #gcSelected:hover {
        cursor: pointer;
        opacity: 0.6;
    }

    #subSelected {
        position: absolute;
        top: 10%;
        left: 68%;
        height: 40px;
        width: 40px;
        border: 1px solid #0AC0C6;
        border-radius: 7px;
        background-color: none;
    }

    #subSelected:hover {
        cursor: pointer;
        opacity: 0.6;
    }

    .subSelectionP {
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 40px;
        text-align: center;
        color: #FFFFFF;
    }

    #num1ID {
        position: absolute;
        top: 32%;
        left: 5%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        color: #FFFFFF;
    }

    #num1 {
        position: absolute;
        top: 37%;
        left: 5%
    }

    #num2ID {
        position: absolute;
        top: 63%;
        left: 5%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        color: #FFFFFF;
    }

    #num2 {
        position: absolute;
        top: 68%;
        left: 5%
    }

    #preconSavingsBox {
        position: absolute;
        top: 28%;
        left: 60%;
        right: 5%;
        height: 22%;
        background-color: #FFFFFF;
        border-radius: 15px;
    }

    .savingsBoxHeader {
        position: absolute;
        top: 12%;
        left: 10%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 17px;
        color: #0AC0C6;
        text-align: center;
        line-height: 100%;
    }

    .savingsValueP {
        position: absolute;
        top: 40%;
        left: 10%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        color: #06100F;
        text-align: center;
        line-height: 100%;
    }

    .hoursValueP {
        position: absolute;
        top: 65%;
        left: 10%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        color: #06100F;
        text-align: center;
        line-height: 100%;
    }

    #submittalSavingsBox {
        position: absolute;
        top: 59%;
        left: 60%;
        right: 5%;
        height: 22%;
        background-color: #0AC0C6;
        border-radius: 15px;
    }

    /**** toogle switch   ****/
    .switch2 {
        position: absolute;
        top: 21%;
        left: 5%;
        width: 55px;
        height: 30px;
    }
      
    /* Hide default HTML checkbox */
    .switch2 input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-switch2 {
        width: 65px;
        height: 24px;
        position: relative;
    }
      
    .toggle-switch2 input {
        opacity: 0;
        width: 0;
        height: 0;
    }
      
    #textNotifInput.toggle-switch2 input[type="checkbox"]:checked {
        background-color: #0AC0C6 !important; /* Specify your desired background color */
    }

    /* range inputs */
    input[type=range] {
        -webkit-appearance: none;
        width: 50%;
        height: 10px;
        background: linear-gradient(to right, #0AC0C6 0%, #ddd 0%, #ddd 100%);
        border-radius: 5px;
        outline: none;
        margin: 20px 0;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background: #0AC0C6;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    input[type=range]::-webkit-slider-thumb:hover {
        background: #0AC0C6;
    }

    .slider-container {
        position: relative;
    }

    .slider-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-color: #0AC0C6;
        border-radius: 5px;
        z-index: 0;
    }

    #bookDemoLink {
        position: absolute;
        top: 112%;
        left: 50%;
        transform: translateX(-50%);
        height: 40px;
        width: 120px;
        background: linear-gradient(180deg, #06100F 0%, #0BF2FA 125%);
        border-radius: 5px;
        color: #FFFFFF;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 40px;
        text-align: center;
    }

    #bookDemoLink:hover {
        cursor: pointer;
        opacity: 0.6;
    }

    







    /*****************************************************************************/
    /*System page*/
    #hIWFirstFrame {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 500px;
        background: #06100F;
    }

    #hIWHeader {
        position: absolute;
        text-align: center;
        top: 110px;
        width: 100%;
        height: 30px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 30px;
        color: #FFFFFF;
    }

    #hIWPara {
        position: absolute;
        text-align: center;
        top: 160px;
        left: 10%;
        width: 80%;
        height: 80px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 12px;
        line-height: 15px;
        color: #B7B7B7;
    }

    #hIWLearnMoreButLoc {
        position: absolute;
        top: 280px;
        right: 54%;
        width: 130px;
        height: 40px;
        padding: 6px 21px;
        gap: 10px;
        background: #0AC0C6;
        border-radius: 5px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 25px;
        color: #FFFFFF;
        justify-content: center;
    }

    #demoButtonDiv {
        position: absolute;
        top: 280px;
        left: 54%;
        width: 130px;
        height: 40px;
        border-radius: 5px;
    }

    #hIWDemo {
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 6px;
        padding-left: 31px;
        gap: 10px;
        width: 100%;
        height: 100%;
        background: #06100F;
        border-radius: 5px;
        border: 0.5px solid #0AC0C6;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 25px;
        color: #FFFFFF;
        justify-content: center;
    }

    #demoPicIcon {
        position: absolute;
        top: 10px;
        left: 8px;
        width: 20px;
        height: auto;
    }

    #hIWdashView {
        position: absolute;
        top: 500px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 480px;
        height: 350px;
        border-radius: 20px;
        overflow: hidden;
        z-index: 2;
    }

    #hIWdashView video {
        width: 100%;
        height: auto;
        margin-top: 50px;;
    }

    #hIWSecondFrame {
        position: absolute;
        top: 500px;
        left: 0px;
        width: 100%;
        height: 900px;
        background: #FFFFFF;
    }

    #hIWSmallHeader1 {
        position: absolute;
        top: 240px;
        left: 5%;
        width: 45%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #0BF2FA;
    }

    #hIWBigHeader1 {
        position: absolute;
        top: 260px;
        left: 5%;
        width: 45%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 18px;
        color: #06100F;
    }

    #hIWPara1 {
        position: absolute;
        top: 285px;
        left: 5%;
        width: 45%;
        height: 200px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        text-align: justify;
        color: #818181;
    }

    #hIWSecondFramePic1 {
        position: absolute;
        top: 240px;
        left: 55%;
        right: 5%;
        height: 210px;
        border-radius: 10px;
        overflow: hidden;
    }

    #hIWPic2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    #hIWSmallHeader2 {
        position: absolute;
        top: 490px;
        left: 50%;
        width: 4%5;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #0BF2FA;        
    }

    #hIWBigHeader2 {
        position: absolute;
        top: 510px;
        left: 50%;
        width: 45%;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 18px;
        color: #06100F;        
    }

    #hIWPara2 {
        position: absolute;
        top: 535px;
        left: 50%;
        width: 45%;
        height: 200px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        text-align: justify;
        color: #818181;        
    }

    #hIWSecondFramePic2 {
        position: absolute;
        top: 490px;
        left: 5%;
        right: 55%;
        height: 250px;
        border-radius: 10px;    
        overflow: hidden;    
    }

    #hIWPic3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 110%;
        height: auto;
    }







    /*****************************************************************************/
    /*Contact page*/
    #contFirstFrame {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 680px;
        background: #06100F;
    }

    #contHeader {
        position: absolute;
        top: 100px;
        left: 40px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 40px;
        line-height: 30px;
        color: #FFFFFF;
    }

    #contP1 {
        position: absolute;
        top: 150px;
        left: 40px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 800;
        font-size: 24px;
        line-height: 30px;
        color: #FFFFFF;
    }

    .contactFormClass {
        border: #FFFFFF solid 1px;
        border-radius: 10px;
        height: 35px;
        width: 300px;
        background-color: #132624;
        padding-left: 15px;
        font-weight: 500;
        font-size: 15px;
        color: #FFFFFF;
    }

    .contactFormClass2 {
        border: #FFFFFF solid 1px;
        border-radius: 10px;
        height: 100px;
        width: 630px;
        background-color: #132624;
        padding-left: 15px;
        padding-top: 10px;
        font-weight: 500;
        font-size: 15px;
        color: #FFFFFF;
    }

    #contactNameInput {
        position: absolute;
        top: 37px;
        left: 30px;
    }

    #contactEmailInput {
        position: absolute;
        top: 37px;
        left: 360px;
    }

    #contactPhoneNumberInput {
        position: absolute;
        top: 115px;
        left: 30px;
    }

    #contactCompanyInput {
        position: absolute;
        top: 115px;
        left: 360px;
    }

    #contactMessageInput {
        position: absolute;
        top: 193px;
        left: 30px;
    }











    /*footer********************************
    Note that I don't want to the footer in the mobile for now. Not sure what is will look like yet.
    */
    .footer {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 60px;
        margin-top: 20px;
        background: #06100F;
        color: white;
    }

    #footerLogoID {
        position: absolute;
        top: 8px;
        left: 30px;
        width: 70px;
        height: auto;
    }

    #tOS {
        position: absolute;
        top: 30px;
        left: 30px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        text-decoration-line: underline;
        background: transparent;
        color: #0BF2FA;
        padding: 0px;
    }

    #tOS:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    #priPol {
        position: absolute;
        top: 43px;
        left: 30px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        text-decoration-line: underline;
        background: transparent;
        color: #0BF2FA;
        padding-top: 0px;
    }

    #priPol:hover {
        opacity: 0.6;
        cursor: pointer;
    }

    .footerTabClass {
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        color: #0AC0C6;
    }

    .footerTabClass:hover {
        color: #0AC0C6;
        opacity: 0.6;
        cursor: pointer;
    }

    #footerHomeID {
        position: absolute;
        top: 10px;
        right: 242px;
    }
    #footerAboutID {
        position: absolute;
        top: 10px;
        right: 180px;
    }
    #footerSystemID {
        position: absolute;
        top: 10px;
        right: 110px;
    }
    #footerContactID {
        position: absolute;
        top: 10px;
        right: 35px;
    }

    #copyrightFooter {
        position: absolute;
        top: 25px;
        right: 35px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        color: #FFFFFF;
    }

    #linkedinLogoID {
        position: absolute;
        top: 34px;
        right: 35px;
    }
    #linkedinLogoImgID {
        width: 10px;
        height: auto;
    }

    #twitterLogoID {
        position: absolute;
        top: 34px;
        right: 58px;
    }
    #twitterLogoImgID {
        width: 11px;
        height: auto;
    }

    #facebookLogoID {
        position: absolute;
        top: 34px;
        right: 84px;
    }
    #facebookLogoImgID {
        width: 5px;
        height: auto;
    }

    /*Privacy Policy********************************
    */
    #privPDiv {
        position: absolute;
        top: 90px;
        left: 0px;
        right: 0px;
        margin-left: 60px;
        margin-right: 60px;
        min-width: 500px;
        background: #F5FFFE;
    }

        /*ToS*********************************/
    #tOSDiv {
        position: absolute;
        top: 90px;
        left: 0px;
        right: 0px;
        margin-left: 60px;
        margin-right: 60px;
        min-width: 500px;
        background: #F5FFFE;
    }

}

/*this is to show logo as just pic vs full logo so nav doesn't overlap*/
@media all and (min-width:570px) {
    /*  new nav menu ******************/
    #navLogoImgID {
        display: block;
        width: 150px;
        margin: 0px;
    }

    #navLogoImgID3 {
        display: block;
        width: 150px;
        margin: 0px;
    }

    #navLogoImgID2 {
        display: none;
    }

    #navLogoImgID22 {
        display: none;
    }



    /* How it Works ********************/
    #hIWSmallHeader1 {
        font-size: 14px;
        line-height: 16px;
    }

    #hIWBigHeader1 {
        font-size: 18px;
        line-height: 20px;
    }

    #hIWPara1 {
        font-size: 14px;
        line-height: 18px;
    }

    #hIWSmallHeader2 {
        font-size: 14px;
        line-height: 16px;       
    }

    #hIWBigHeader2 {
        font-size: 18px;
        line-height: 20px;    
    }

    #hIWPara2 {
        font-size: 14px;
        line-height: 18px;     
    }






/* small screen/laptops: Typically 768 - 1024 */
@media all and (min-width: 768px) {
    /* new nav menu **************/
    #navLogoImgID {
        display: block;
        width: 180px;
        margin: 0px;
    }

    #navLogoImgID3 {
        display: block;
        width: 180px;
        margin: 0px;
    }

    .hamburgerButton {
        display: none;
    }

    #indexBaseNav {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        font-size: 16px;
        padding: 14px 0px;
    }

    #indexBaseNav2 {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        font-size: 16px;
        padding: 14px 0px;
    }

    .navTabClass {
        padding: 8px 10px;
        order: 1;
        display: flex;
    }

    .navTabClass2 {
        padding: 8px 10px;
        order: 1;
        display: flex;
    }

    .navTabBClass {
        order: 2;
        text-decoration: none;
        background: transparent;
        border: 1px solid #46D7D0;
        border-radius: 25px;
    }

    .navTabBClass2 {
        order: 2;
        text-decoration: none;
        padding:7px 15px;
        background: transparent;
        border: 1px solid #46D7D0;
        border-radius: 25px;
    }

    .navTabBClass.secondaryNavTabBClass {
        background: #46D7D0;
        margin-right: 0px;
    }

    .navTabBClass2.secondaryNavTabBClass2 {
        background: #46D7D0;
        margin-right: 0px;
    }

    .navTabBClass:hover {
        transition:all .04s;
    }

    .navTabBClass2:hover {
        transition:all .04s;
    }

    .secondaryNavTabBClass {
        margin-left: 5px;
    }

    .secondaryNavTabBClass2 {
        margin-left: 5px;
    }
    /*End Nav*************************************************/





    /*Index page*************************************************/
    .firstFrameIndex {
        height: 600px;
    }

    #fFCont {
        display: block;
        position: absolute;
        left: 410px;
        right: 0px;
        top: 140px;
        height: 284px;
    }

    #firstFrameIndexPicDiv {
        position: absolute;
        left: 50%;
        top: 0px;
        transform: translateX(-50%);
        width: 355px;
        height: 100%;
    }

    #fFrameIndexP1 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 35%;
        height: auto;
    }

    #fFrameIndexP2 {
        position: absolute;
        top: 46%;
        left: 0px;
        width: 35%;
        height: auto;
    }

    #fFrameIndexP3 {
        position: absolute;
        top: 0px;
        left: 28%;
        width: 44%;
        height: auto;
    }

    #fFrameIndexP4 {
        position: absolute;
        top: 31.5%;
        left: 28%;
        width: 44%;
        height: auto;
    }

    #fFrameIndexP5 {
        position: absolute;
        top: 63.5%;
        left: 28%;
        width: 44%;
        height: auto;
    }

    #fFrameIndexP6 {
        position: absolute;
        top: 0px;
        left: 65.5%;
        width: 36.5%;
        height: auto;
    }

    #fFrameIndexP7 {
        position: absolute;
        top: 46.5%;
        left: 65.5%;
        width: 36.5%;
        height: auto;
    }

    .firstFrameHeader {
        position: absolute;
        width: 310px;
        height: 200px;
        left: 40px;
        top: 100px;
        font-size: 28px;
        line-height: 45px;
    }

    .firstFrameParagraph {
        position: absolute;
        width: 360px;
        height: 80px;
        left: 40px;
        top: 245px;
        font-size: 12px;
        line-height: 20px;
    }

    .learnMoreAnch {
        padding: 12px 24px;

        position: absolute;
        width: 181px;
        height: 49px;
        left: 40px;
        top: 375px;
        font-size: 20px;
        line-height: 25px;
    }

    .firstFrameLogo {
        position: absolute;
        left: 95px;
        top: 430px;
    }

    .secondFrameIndex {
        position: absolute;
        width: 100%;
        height: 660px;
        left: 0px;
        top: 600px;
        background: #FFFFFF;
    }

    #secondFrameSmallHeader {
        position: absolute;
        width: 250px;
        height: 25px;
        left: 40px;
        top: 640px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
        color: #0BF2FA;
    }

    #secondFrameLargeHeader {
        position: absolute;
        width: 478px;
        height: 60px;
        left: 40px;
        top: 660px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 32px;
        line-height: 60px;
        color: #06100F;
    }

    #secondFrameHeaderP {
        position: absolute;
        min-width: 370px;
        height: 60px;
        left: 350px;
        top: 645px;
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 15.5px;
        text-align: justify;
        color: #818181;
    }

    .secondFrameImgH {
        position: absolute;
        top: calc(100% + 15px);
        left: 0px;
        right: 0px;
        height: 30px;
    }

    .secondFrameImgP {
        position: absolute;
        top: calc(100% + 45px);
        left: 0px;
        right: 0px;
        height: 100px;
    }

    .secondFramePicH {
        font-size: 26px;
        line-height: 20px;

    }

    .secondFramePicP {
        font-size: 12px;
        line-height: 18px;
    }




    /*****************************************************************************/
    /*What page*/
    .wIFirstFrame {
        height: 400px;
    }

    .wIHeader {
        left: 40px;
        top: 100px;
        font-size: 28px;
    }

    .wIPara {
        width: 540px;
        height: 200px;
        left: 40px;
        top: 150px;
        font-size: 12px;
        line-height: 22px;
    }

    .learnMoreAnchWI {
        left: 40px;
        top: 335px;
        padding: 12px 24px;
        width: 181px;
        height: 49px;
        font-size: 20px;
        line-height: 25px;
    }

    #wIFeatureFrame {
        height: 450px;
    }

    #featureHeader {
        left: 50px;
        width: 240px;
        font-size: 22px;
        line-height: 22px;
    }

    #wIFeatureOne {
        top: 60px;
        left: 50px;
        height: 55px;
        width: 44%;
    }
    
    .iconDiv {
        width: 32.5px;
        height: 32.5px;
    }

    #wIF1Pic {
        width: 27.5px;
    }

    #wIF1Para {
        left: 65px;
        top: 18px;
        font-size: 17px;
        line-height: 17px;
    }

    #wIFeatureTwo {
        top: 80px;
        left: 50px;
        height: 55px;
        width: 44%;
    }

    #wIF2Pic {
        width: 27.5px;
    }

    #wIF2Para {
        left: 65px;
        top: 18px;
        font-size: 17px;
        line-height: 17px;
    }

    #wIFeatureThree {
        top: 100px;
        left: 50px;
        height: 55px;
        width: 44%;
    }

    #wIF3Pic {
        width: 27.5px;
    }

    #wIF3Para {
        left: 65px;
        top: 18px;
        font-size: 17px;
        line-height: 17px;
    }

    #wIFeatureFour {
        top: 120px;
        left: 50px;
        height: 55px;
        width: 44%;
    }

    #wIF4Pic {
        width: 27.5px;
    }

    #wIF4Para {
        left: 65px;
        top: 18px;
        font-size: 17px;
        line-height: 17px;
    }

    #hoveredFeature1 {
        top: -160px;
        left: 52%;
        width: 42%;
        height: 280px;
    }

    .featuredIconID {
        top: 10px;
        left: 15px;
        width: 55px;
    }

    .featuredHeaderID {
        top: 40px;
        left: 90px;
        font-size: 21px;
    }

    .featuredParaID {
        top: 100px;
        left: 7.5%;
        width: 85%;
        font-size: 15px;
        line-height: 20px;
    }

    #hoveredFeature2 {
        top: -440px;
        left: 52%;
        width: 42%;
        height: 280px;
    }

    #hoveredFeature3 {
        top: -720px;
        left: 52%;
        width: 42%;
        height: 280px;
    }

    #hoveredFeature4 {
        top: -1000px;
        left: 52%;
        width: 42%;
        height: 280px;
    }


    #wICalcFrame {
        order: 3;
        width: 100%;
        height: 680px;
    }

    #wICalcHeader {
        top: 35px;
        font-size: 26px;
        line-height: 25px;
    }

    #wI3CalcBox {
        top: 70px;
        left: 50%;
        transform: translateX(-50%);        
        width: 85%;
        height: 350px;
    }

    #wIb1Header {
        font-size: 30px;
    }

    #bookDemoLink {
        height: 50px;
        width: 150px;
        font-size: 19px;
        line-height: 50px;
    }


    /*****************************************************************************/
    /*System page*/
    #hIWFirstFrame {
        height: 570px;
    }

    #hIWHeader {
        top: 120px;
        font-size: 36px;
        line-height: 36px;
    }

    #hIWPara {
        top: 170px;
        left: 15%;
        width: 70%;
        height: 100px;
        font-size: 14px;
        line-height: 18px;
    }

    #hIWLearnMoreButLoc {
        top: 290px;
        right: 53%;
    }

    #demoButtonDiv {
        top: 290px;
        left: 53%;
    }

    #hIWdashView {
        top: 580px;
        width: 650px;
        height: 464px;
    }

    #hIWSecondFrame {
        top: 570px;
        height: 1100px;
    }

    #hIWSmallHeader1 {
        top: 270px;
        left: 7.5%;
        width: 42.5%;
        font-size: 17px;
        line-height: 28px;
    }

    #hIWBigHeader1 {
        top: 295px;
        left: 7.5%;
        width: 42.5%;
        font-size: 19px;
        line-height: 20px;
    }

    #hIWPara1 {
        top: 320px;
        left: 7.5%;
        width: 42.5%;
        height: 200px;
        font-size: 18px;
        line-height: 22px;
    }

    #hIWSecondFramePic1 {
        top: 270px;
        height: 290px;
        border-radius: 10px;
        overflow: hidden;
    }

    #hIWSmallHeader2 {
        top: 580px;
        width: 42.5%;
        font-size: 17px;
        line-height: 28px;      
    }

    #hIWBigHeader2 {
        top: 605px;
        width: 42.5%;
        font-size: 19px;
        line-height: 20px;       
    }

    #hIWPara2 {
        top: 635px;
        width: 42.5%;
        height: 200px;
        font-size: 18px;
        line-height: 22px;   
    }

    #hIWSecondFramePic2 {
        top: 580px;
        left: 5%;
        right: 55%;
        height: 340px;  
    }







    /*****************************************************************************/
    /*Contact page*/


}




/* large screen laptops/desktops: Typically 1025+ */
@media all and (min-width: 1025px) {

    /*Index page*************************************************/
    .firstFrameIndex {
        height: 640px;
    }

    #fFCont {
        left: 530px;
        height: 380px;
    }

    #firstFrameIndexPicDiv {
        width: 475px;
    }

    .firstFrameHeader {
        position: absolute;
        width: 370px;
        left: 50px;
        top: 110px;
        font-size: 36px;
        line-height: 45px;
    }

    .firstFrameParagraph {
        position: absolute;
        width: 460px;
        height: 80px;
        left: 50px;
        top: 260px;
        font-size: 15px;
        line-height: 20px;
    }

    .learnMoreAnch {
        position: absolute;
        left: 50px;
        top: 390px;
    }

    .firstFrameLogo {
        position: absolute;
        left: 110px;
        top: 450px;
    }

    #firstFrameLogoID {
        width: 100px;
        height: auto;
    }

    .secondFrameIndex {
        height: 700px;
        top: 640px;
    }

    #secondFrameSmallHeader {
        position: absolute;
        left: 50px;
        top: 680px;
        font-size: 26px;
    }

    #secondFrameLargeHeader {
        position: absolute;
        left: 50px;
        top: 700px;
        font-size: 40px;
    }

    #secondFrameHeaderP {
        position: absolute;
        min-width: 530px;
        height: 60px;
        left: 440px;
        top: 685px;
        font-size: 16px;
        line-height: 22px;
    }

    .secondFramePicH {
        font-size: 30px;
        line-height: 20px;
    }

    .secondFramePicP {
        font-size: 14px;
        line-height: 18px;
    }





     /*What Is page*************************************************/
    .wIFirstFrame {
        height: 420px;
    }

    .wIHeader {
        left: 50px;
        top: 110px;
        width: 400px;
        font-size: 36px;
    }

    .wIPara {
        width: 680px;
        left: 50px;
        top: 170px;
        font-size: 16px;
    }

    .learnMoreAnchWI {
        left: 50px;
        top: 350px;
    }

    #wIFeatureFrame {
        height: 500px;
    }

    #featureHeader {
        left: 60px;
        width: 340px;
        font-size: 28px;
        line-height: 28px;
    }

    #wIFeatureOne {
        top: 65px;
        left: 60px;
        height: 65px;
        width: 44%;
    }
    
    .iconDiv {
        top: 15px;
        left: 20px;
        width: 35px;
        height: 35px;
    }

    #wIF1Para {
        left: 75px;
        top: 21px;
        font-size: 20px;
        line-height: 20px;
    }

    #wIFeatureTwo {
        top: 80px;
        left: 60px;
        height: 65px;
        width: 44%;
    }

    #wIF2Para {
        left: 75px;
        top: 21px;
        font-size: 20px;
        line-height: 20px;
    }

    #wIFeatureThree {
        top: 100px;
        left: 60px;
        height: 65px;
        width: 44%;
    }

    #wIF3Pic {
        width: 27.5px;
    }

    #wIF3Para {
        left: 75px;
        top: 21px;
        font-size: 20px;
        line-height: 20px;
    }

    #wIFeatureFour {
        top: 120px;
        left: 60px;
        height: 65px;
        width: 44%;
    }

    #wIF4Pic {
        width: 27.5px;
    }

    #wIF4Para {
        left: 75px;
        top: 21px;
        font-size: 20px;
        line-height: 20px;
    }

    #hoveredFeature1 {
        top: -195px;
        width: 42%;
        height: 315px;
    }

    .featuredIconID {
        top: 15px;
        left: 25px;
        width: 60px;
    }

    .featuredHeaderID {
        top: 45px;
        left: 115px;
        font-size: 26px;
    }

    .featuredParaID {
        top: 120px;
        font-size: 18px;
    }

    #hoveredFeature2 {
        top: -510px;
        width: 42%;
        height: 315px;
    }

    #hoveredFeature3 {
        top: -825px;
        width: 42%;
        height: 315px;
    }

    #hoveredFeature4 {
        top: -1140px;
        width: 42%;
        height: 315px;
    }

    #wICalcFrame {
        height: 760px;
    }

    #wICalcHeader {
        font-size: 30px;
    }

    #wI3CalcBox {
        top: 80px;
        width: 872px;
        height: 350px;
    }

    #wIb1Header {
        font-size: 34px;
    }






    /*****************************************************************************/
    /*System page*/
    #hIWFirstFrame {
        height: 650px;
    }

    #hIWHeader {
        top: 130px;
        font-size: 42px;
        line-height: 42px;
    }

    #hIWPara {
        top: 180px;
        left: 15%;
        width: 70%;
        font-size: 15px;
        line-height: 20px;
    }

    #hIWdashView {
        top: 670px;
        width: 900px;
        height: 643px;
    }

    #hIWSecondFrame {
        top: 650px;
        height: 1350px;
    }

    #hIWSmallHeader1 {
        top: 370px;
        left: 10%;
        width: 40%;
        font-size: 20px;
        line-height: 24px;
    }

    #hIWBigHeader1 {
        top: 405px;
        left: 10%;
        width: 40%;
        font-size: 24px;
        line-height: 24px;
    }

    #hIWPara1 {
        top: 440px;
        left: 10%;
        width: 40%;
        height: 200px;
        font-size: 20px;
        line-height: 26px;
    }

    #hIWSecondFramePic1 {
        top: 370px;
        height: 370px;
    }

    #hIWSmallHeader2 {
        top: 750px;
        width: 40%;
        right: 10%;
        font-size: 20px;
        line-height: 24px;     
    }

    #hIWBigHeader2 {
        top: 785px;
        width: 40%;
        right: 10%;
        font-size: 24px;
        line-height: 24px;       
    }

    #hIWPara2 {
        top: 815px;
        width: 40%;
        right: 10%;
        height: 200px;
        font-size: 20px;
        line-height: 26px;  
    }

    #hIWSecondFramePic2 {
        top: 750px;
        left: 5%;
        right: 55%;
        height: 440px;  
    }



}



/* widescreens */
@media all and (min-width: 1300px) {

    /*Index page*************************************************/
    .secondFrameIndex {
        height: 760px;
    }

    #fFCont {
        top: 120px;
        left: 530px;
        height: 480px;
    }

    #firstFrameIndexPicDiv {
        width: 600px;
    }




    /*****************************************************************************/
    /*****************************************************************************/
    /*System page*/
    #hIWFirstFrame {
        height: 655px;
    }

    #hIWHeader {
        top: 140px;
        font-size: 48px;
        line-height: 48px;
    }

    #hIWPara {
        top: 190px;
        left: 17.5%;
        width: 65%;
        font-size: 16px;
        line-height: 20px;
    }

    #hIWLearnMoreButLoc {
        top: 300px;
        right: 53%;
    }

    #demoButtonDiv {
        top: 300px;
        left: 53%;
    }

    #hIWdashView {
        top: 680px;
        width: 900px;
        height: 643px;
    }

    #hIWSecondFrame {
        top: 655px;
        height: 1500px;
    }

    #hIWSmallHeader1 {
        top: 375px;
        left: 15%;
        width: 35%;
        font-size: 22px;
        line-height: 24px;
    }

    #hIWBigHeader1 {
        top: 410px;
        left: 15%;
        width: 35%;
        font-size: 28px;
        line-height: 28px;
    }

    #hIWPara1 {
        top: 445px;
        left: 15%;
        width: 35%;
        height: 200px;
        font-size: 22px;
        line-height: 28px;
    }

    #hIWSecondFramePic1 {
        top: 375px;
        height: 460px;
    }

    #hIWSmallHeader2 {
        top: 840px;
        width: 35%;
        right: 15%;
        font-size: 22px;
        line-height: 24px;    
    }

    #hIWBigHeader2 {
        top: 875px;
        width: 35%;
        right: 15%;
        font-size: 28px;
        line-height: 28px;    
    }

    #hIWPara2 {
        top: 910px;
        width: 35%;
        right: 15%;
        font-size: 22px;
        line-height: 28px;
    }

    #hIWSecondFramePic2 {
        top: 840px;
        height: 520px;  
    }




}





