/* ==========================================================================
   Base Styles
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    background-color: #FFF;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ============================================================================================================================================
   Custom styles
   ========================================================================== */
html {
    background-color: #000;
}

   body {
    height: 100vh;
    display: flex;
    font-family: 'Oswald', sans-serif;
    color: #FFF;
    background-color: #000;
}

.container {
    position: relative;
    background: url(../img/us-bg.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    background-attachment:scroll;
    background-color: #000;
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: auto;
    max-width: 100%;;
    background-color: #000;
}

.black-bg {
    background-color: #000;
}

.yel {
    color: yellow;
}

img {
    width: 100%;
    height: auto;
}

svg {
    width: 100%;
    height: auto;
}

.display-1, .display-2 {
    font-weight: 600;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    font-weight: 700;
}

h1 {font-size: 104px; margin-bottom: 0;}
h2 {font-size: 44px;}
h3 {font-size: 34px; font-weight: 400;}
h5 {font-size: 30px; font-weight: 300;}
p {font-weight: 300; font-size: 20px;}

.mob-bg {
    background-color: none;
}
.mob-bg-red {
    background-color: none;;
}

.mob-bg-grey {
    background-color: none;;
}

/* ==========================================================================
   Helper classes
   .element {
    position: absolute;
    width: 95%;
}

.element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
   ========================================================================== */
   .res-circle {
    width: 70%;
    max-width: 250px;
    border-radius: 50%;
    background: #FFF;
    line-height: 0;
    position: relative;
    color: #000;
    margin: 0 auto;
  }
   
  .res-circle::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
   
  .circle-txt {
    position: absolute;
    bottom: 50%;
    width: 100%;
    text-align: center;
    font-size: larger;
    font-weight: 600;
  }

.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}


.invisible {
    visibility: hidden;
}


.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media only screen and (max-width: 800px) {
    /* Style adjustments for viewports that meet the condition */
    h1 {
        font-size:34px ;
    }
    .mob-bg {
        background-color: #000;
    }

    .mob-bg-red {
        background-color: rgb(150, 5, 5); 
    }

    .mob-bg-grey {
        background-color: #222;;
    }
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print 
   ========================================================================== */

@media print {

    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }


    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}