@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

body,html {
    margin: unset;
    padding: unset;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    line-height: 20px;
    overflow-y: scroll;
}

html { 
  background: url(../images/bg.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.orangeBar {
    background: #ff7c08;
    width: 100%;
    min-width: 100%;
    min-height: 100px;
    height: 100px;
    position: absolute; 
    top: 100px;
}

.orangeBar > h1 {
    margin: unset;
    padding: unset;
    color: #ffffff;
    position: absolute;
    right: 150px;
    display: flex;
    align-items: center;
    height: 100px;
}

.orangeBar {
    background: #ff7c08;
    width: 100%;
    min-width: 100%;
    min-height: 100px;
    height: 100px;
    position: absolute; 
    top: 100px;
}

.darkBar { 
    background: #4e5158;
    width: 100%;
    min-width: 100%;
    min-height: 50px;
    height: auto;
    position: absolute; 
    bottom: 50px;
    padding: unset;
}

.darkBar > ul.inline {
    width: 80%;
    min-width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: flex-start;
    padding: unset;
}

.darkBar > ul.inline > li {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    min-width: 30%;
    color: #FFFFFF;
}

.darkBar > ul.inline > li > a {
    text-decoration: none;
    color: #ffffff;
}

.darkBar > ul.inline > li > a:hover {
    text-decoration: none;
    color: #ff7c08;
    transition: 1s;
}

.darkBar > ul.inline > li::before {
    content: unset;
}

.container {
    margin: auto;
    width: 80%;
    height: 100%;
}

.logo > img {
    width: 400px;
    position: relative;
    z-index: 10;
}

.contentWhite {
    background: #FFFFFF;
    width: 400px;
    height: 60%;
    min-height: 60%;
    position: relative;
    top: 5px;
    z-index: 10;
}

.contentWhite > p{
    padding: 20px;
    font-weight: bold;
}

.contentWhite > h4 {
    padding: 0px 20px;
}

li {
    list-style: none;
}

li::before {
    content: "•";
    color: #ff7c08; /* or whatever color you prefer */
    margin-right: 20px;
  }

span.orange {
    color: #ff7c08;
    margin-right: 10px;
}

@media (max-width: 1024px) {
        body,html {
            overflow: unset !important;
            overflow-x: hidden;
            width: 100%;
        }
    .darkBar > ul.inline {
        width: 100%;
        min-width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: unset;
    }
    .darkBar > ul.inline > li {
        display: flex;
        flex-wrap: wrap;
        width: 80%;
        min-width: 80%;
        color: #FFFFFF;
        margin-top: 10px;
        font-size: 10px;
        line-height: 10px;
    }
    .orangeBar > h1 {
        display: none;
    }
  }

  @media (min-width: 281px) and (max-width: 500px) {
      .container{ 
          width: 100%;
          margin: unset !important;
          overflow-y: scroll;
          padding-bottom: 100px;
      }
      .logo > img{ 
        width: 100% !important;
        margin: unset !important;
        }
    .contentWhite {
        background: #FFFFFF;
        width: 100%;
        margin: unset;
        position: relative;
        top: 5px;
        z-index: 10;
        height: auto !important;
    }

    .darkBar {
        z-index: 20;
        position: fixed;
        bottom: 0;
    }
    .darkBar > ul.inline {
        width: 100%;
        min-width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: unset;
    }
    .darkBar > ul.inline > li {
        display: flex;
        flex-wrap: wrap;
        width: 80%;
        min-width: 80%;
        color: #FFFFFF;
        margin-top: 10px;
        font-size: 10px;
        line-height: 10px;
    }
    
  }