/* ——— Indigo Digital  •  brandicameron.com ——— */


/* ———————————— GENERAL SETTINGS ———————————— */


p {
font-family: nunito, sans-serif;
font-weight: 600;
font-size: 1em;
letter-spacing: .08em;
line-height: 1.6em;
color: #ffffff;
}

h1 {
    font-family: 'Anton', sans-serif;
    text-align: center;
    font-size: 4.5em;
    letter-spacing: .02em;
    padding-top: 50px;
}

* {
margin:0;
padding:0;
}


/* ————————————  BROWSER BORDER ———————————— */


#top {
    position: fixed;
    top: 0px;
    height: 6.5px;
    background-image: radial-gradient(#004e98 50%, #7097a9);
    width: 100%;
}


#bottom {
    position: fixed;
    bottom: 0px;
    height: 6.5px;
    background-image: radial-gradient(#004e98 50%, #7097a9);
    width: 100%;
}

#left {
    position: fixed;
    left: 0px;
    width: 6.5px;
    background-image: radial-gradient(#004e98 50%, #7097a9);
    height: 100%;
}


#right {
    position: fixed;
    right: 0px;
    width: 6.5px;
    background-image: radial-gradient(#004e98 50%, #7097a9);
    height: 100%;
}

#top, #bottom, #left, #right, .extra-color-bar, #bar {
    z-index: 1000;
    animation: border-color-fade-in 4.5s;
    animation-delay: .7s;
    animation-iteration-count: infinite;
}


@keyframes border-color-fade-in {
  0% {
    background: #004e98;
  }
  50% {
    background: #7097a9;
  }

  100% {
    background: #004e98;
  }
}


@-webkit-keyframes border-color-fade-in {
  0% {
    background: #004e98;
  }
  50% {
    background: #7097a9;
  }

  100% {
    background: #004e98;
  }
}


/* ———————————— LOGO & DARK BACKGROUND ———————————— */


.logo {
    position: relative;
    width: 100%;
    max-width: 908px;;
    margin: auto;
    display: block;
    padding-top: 40px;
    z-index: 9;
}

.logo-container {
    background-color: #242424;
    width: 100%;
    height: 975px;
}



.logo-container {
    animation: bg-fade 20s;
    animation-delay: .7s;
    animation-iteration-count: infinite;
}

@keyframes bg-fade {
  30% {
    background: #242424;
  }
  80% {
    background: #072a4b;
  }

  100% {
    background: #242424;
  }
}


@-webkit-keyframes bg-fade {
   0% {
    background: #242424;
  }
  50% {
    background: #072a4b;
  }

  100% {
    background: #242424;
  }
}




/* ———————————— MISSION STATEMENT, STRIPES, CREDITS ———————————— */




.mission {
    color: #ffffff;
    font-size: 1.05em;
    font-weight: 400; 
    text-align: justify; 
    opacity: .9;
}




.mission-statement {
    position: relative;
    object-fit: scale-down;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -240px;
    max-width: 650px;
    min-width: 650px;
}


.weare {
    color: #ffffff;
    font-size: 1.10em;
    font-weight: 400;
    padding-top: 20px;
}


.stripeborder {
    width: 100%;
    height: 15px;
    background-image: linear-gradient(90deg, #ffffff 25%, #242424 25%, #242424 50%, #ffffff 50%, #ffffff 75%, #242424 75%, #242424 100%);
    background-size: 30.00px 30.00px;
    margin-top: 100px;

}

.credits {
    color: #242424;
    width: 100%;
    text-align: center;
    font-size: .7em;
    margin-top: 10px;
}





/* ———————————— BUSINESS DOCUMENTS ———————————— */



.biz-container {
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: space-around;
    flex-shrink: 1;
    margin-top: 30px;
    margin-bottom: -20px;
    
}

.biz {
width: 37%;
height: 37%;
}



/* ———————————— EMPLOYEE HANDBOOK———————————— */

.hb-cover {
    width: 100%;
    object-fit: scale-down;
}


.hb-pages {
    position: relative;
    width: 100%;
    object-fit: scale-down;
}


.handbook {padding: 0 4%;}




/* ******************** SCREEN STYLES ******************** */

@media screen and (max-width: 1024px) {
    p {font-size: 1em;}
    
    .mission-statement {
        margin-top: -260px;
        max-width: 550px;
        min-width: 550px;
        font-size: 1em;
    }
    
    .stripeborder {margin-top: 95px;}
    
    .credits {margin-top: 30px;}
    
    .biz-container {
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .biz {padding: 0 5% 5% 5%;}
    
    .biz:first-child {flex-basis: 100%;}
    .biz:nth-child(2) {flex-basis: 100%;}
}



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

    body {width: 120%;}
    .credits {padding-top: 30px; width: 85%; text-align: center; margin: auto;}
}


@media screen and (max-width: 415px) {
body {width: 250%;}
    
.mission-statement {
    margin-top: -450px; 
    font-size: 1.8em;
    max-width: 650px;
    min-width: 650px;
    }
    
.stripeborder {margin-top: 90px;}
    
.logo-container {
    background-color: #242424;
    width: 100%;
    height: 1175px;
}

}


@media screen and (max-width: 320px) {
body {width: 300%;}
}

