
@font-face {
    font-family: 'Pragmatica';
    src: url('fonts/Pragmatica-Book.eot');
    src: url('fonts/Pragmatica-Book.eot?#iefix') format('embedded-opentype'),
        url('fonts/Pragmatica-Book.woff2') format('woff2'),
        url('fonts/Pragmatica-Book.woff') format('woff'),
        url('fonts/Pragmatica-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blavatsky';
    src: url('fonts/Blavatsky-Regular.eot');
    src: url('fonts/Blavatsky-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Blavatsky-Regular.woff2') format('woff2'),
        url('fonts/Blavatsky-Regular.woff') format('woff'),
        url('fonts/Blavatsky-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white-font-color: #fff;
}


* {
    box-sizing:border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Pragmatica';
    font-weight: normal;
    width: auto;
    overflow-y: scroll;
    color: #F5F4F4;
    background: #72775F;
}


p.big {
    font-size: 1.4em;
    line-height: 1.7em;
}

p.normal {
    font-size: 1.2em;
    line-height: 1.4em;
}




h1, h2, h3 {
    font-family: 'Blavatsky';
    font-weight: normal;
    margin-top: 0;
}



h1 {
    display: block;
    font-size: 6em;

}



h2 {
    font-size: 4em;
    line-height: 1em;
}

h2.big {
    font-size: 6em;
    line-height: 1em;
}


header {
    position: relative;
    width: 100%;
    height: calc(100vh + 100px);
    min-height: 900px;
    background: url('/img/bg2.webp') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: var(--white-font-color);
}



header:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100px;
    background: url(/img/line-bg.webp) repeat-x;

}



header .content {
    height: 100%;
    display: flex;
    align-items: center;
    height: calc(100% - 100px);
}



.content {
    position: relative;
    width: 100%;
    padding: 0 10%;
}


.content.darken {
    background: rgba(0,0,0,0.1);
}


.row {
    position: relative;
}


.top-line {
    border-bottom: 2px solid rgba(204,185,151,0.1);
    padding: 40px 10%;
}

.logo img {
    width: 265px;
    height: 36px;
}

nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-between;
}

nav a {
    font-size: 1.6em;
    color: var(--white-font-color);
    text-decoration: none;
}

a.social {
    display: inline-block;
    width: 48px;
    height: 48px;
}

a.social img{
    width: 100%;
    height: 100%;
}

a.social:first-child:not(.menu) {
    margin-right: 20px;
}

a.social.menu {
    display: none;
}

.button {
    display: inline-block;
    font-size: 1.4em;
    color: #000;
    line-height: 1.4em;
    background: #F5F4F4;
    padding: 0.8em 2em;
    text-decoration: none;
    margin-bottom: 20px;
    white-space: nowrap;
    border-radius: 5px;
}

.buttons .button{
    margin-right: 50px;
}

.button.lined {
    border: 1px solid #000;
}


.button.wood {
    background: #CCB997;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #9a8663, #CCB997);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #9a8663, #CCB997); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
}


.button.lite.wood {
    background: none;
    color: #CCB997;
    border: 1px solid #CCB997;
}


section {
    padding-top: 100px;
}

.image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.votes_wood {
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -150px;
    width: 300px;
    height: auto;
    top: -150px;
    z-index: 97;
}

h3 {
    font-size: 48px;
    margin-bottom: 20px;
}

.emblem {
    width: 200px;
    height: auto;
}


.why-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.wolf2 {
    max-height: 600px; 
    width: auto;
}

.votes-div {
    margin-bottom: 50px;
}

.vote-image {
    margin-bottom: 20px;
}



.text {

    letter-spacing:0.14em;
    font-size: 1em;
    fill: #F5F4F4;
    text-shadow: 0 0 20px rgba(0,0,0,1);
}



#rotatingText {
    animation-name: rotate-circle;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: 300px;
    height: 300px;
}

#widgetimage {
    width: 140px;
    height: 140px;
}

@keyframes rotate-circle {
    to {
        transform: rotate(0.5turn);
    }
}

.widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    z-index: 98;
}

.widget img {
    position: absolute;
}

.widget img {
    position: absolute;

}

.widget svg {
    animation-name: rotate-circle;
    animation-direction: reverse;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

}