/***********************

NOR267.COM

***********************/

@font-face{ font-family: 'Courier'; src: url('cour.eot'); src: url('cour.woff2'); src: url('cour.woff'); font-weight: 400; font-style: normal; }

html,body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* height:100%; NOP */
    min-height: 100%;
    font-family: 'Courier', sans-serif;
    color: #231f20;
    font-size: 10px; line-height: 12px;
    letter-spacing: 0;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-variant-numeric: lining-nums;
    background-color: #FFFFFF;
}
* {
    text-decoration: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-print-color-adjust: exact;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
img, svg { display: block; vertical-align: middle; }
::-moz-selection { color: #231f20; background: #FFFFFF; }
::selection { color: #231f20; background: #FFFFFF; }

/* CLASSES GERAIS */
*.clear { clear: both; }
.noScroll { overflow: hidden; max-height: 100%; }
.noselect {
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
    -webkit-user-drag: none; 
    user-drag: none;
}
*.pointer, *.toggle{ cursor: pointer; }
*.textCenter{text-align: center; }
*.disabled, *.disabled *{cursor: not-allowed;}

/* TEXTO */
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: 'Courier', sans-serif;
    letter-spacing: 0;
    color: #231f20;
}
a,a:link,a:visited,a:focus,a:hover,a:active{ color: inherit; text-decoration: none; }
a:hover{color: #808080;}

@keyframes animate_header {
    0% {
        top: 50%;
        -ms-transform: translateY(-50%); transform: translateY(-50%);
    }
    100% {
        top: -4.2vw;
        -ms-transform: translateY(0); transform: translateY(0);
    }
}
@keyframes animate_footer {
    0% {
        bottom: 50%;
        -ms-transform: translateY(50%); transform: translateY(50%);
    }
    100% {
        bottom: -9.8vw;
        -ms-transform: translateY(0); transform: translateY(0);
    }
}
@keyframes animate_wrapper {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

header, footer{
    position: fixed;
    left: 0;
    right: 0;
    animation-iteration-count: 1;
    animation-delay: 0.2s;
    animation-duration: 1.7s;
    animation-fill-mode: forwards;
    z-index: 2;
}
header{
    top: 50%;
    -ms-transform: translateY(-50%); transform: translateY(-50%);
    animation-name: animate_header;
}
footer{
    bottom: 50%;
    -ms-transform: translateY(50%); transform: translateY(50%);
    animation-name: animate_footer;
}
header img, footer img {
    position: relative;
    width: 100%;
}
.wrapper{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #FFFFFF;
    -ms-display: flex; display: flex;
    -ms-justify-content: center; justify-content: center;
    -ms-align-content: center; align-content: center;
    -ms-align-items: center; align-items: center;
    z-index: 1;
    opacity: 0;
    animation-iteration-count: 1;
    animation-delay: 1.4s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-name: animate_wrapper;
}
.wrapper .text{
    -ms-display: flex; display: flex;
    -ms-justify-content: center; justify-content: center;
    -ms-flex-direction: column; flex-direction: column;
}
h1, h2{
    background-color:#231f20;
    color: #FFFFFF;
    padding: 6px 12px 2px 12px;
    font-size: 16px;
    line-height: 18px;
    -ms-align-self: flex-start; align-self: flex-start;
}
h1:first-of-type{
    padding: 7px 12px 2px 12px;
}
h2:last-of-type{
    padding: 6px 12px 3px 12px;
}
h2:nth-of-type(2){
    padding: 8px 12px 0px 12px;
}
h1 a, h2 a{
    -ms-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}

@media(min-width:1280px){
    h1, h2{
        padding: 10px 16px 4px 16px;
        font-size: 22px;
        line-height: 22px;
    }
    h1:first-of-type{
        padding: 14px 16px 4px 16px;
    }
    h2:last-of-type{
        padding: 10px 16px 8px 16px;
    }
    h2:nth-of-type(2){
        padding: 12px 16px 2px 16px;
    }
}
