/* ==========================================================================
   Default styles
   ========================================================================== */
html,
button,
input,
select,
textarea,
a {
    font-family: 'PT Sans', sans-serif;
    color: #545456;
	vertical-align: top;
    font-size: 16px;
    line-height: 24px;
}

h2 {
    color: #384ea0;
}

a:not(.button) {
    text-decoration: none;
    border-bottom: 1px solid;
}

#header {
    height: 172px;
    padding: 50px 5vw 0 5vw;
    margin-bottom: 150px;
    border-bottom: 1px solid #545456;
    text-align: center;
    background: #f2f2f2;
}

#logo {
    height: 280px;
}

#container {
    padding-bottom: 100px;
}

#footer {
    position: fixed;
    bottom: 0;
    height: 65px;
    width: 100vw;
    border-top: 1px solid #545456;
    background: #f2f2f2;
}

.block {
    display: flex;
    width: 90vw;
    max-width: 1100px;
    margin: 0 auto;
    
}

.col1_2 {
    padding: 0 25px;
}

.nowrap {
    white-space: nowrap;
}

/* ==========================================================================
   Media queries
   ========================================================================== */
@media only screen and (max-width: 960px) {
    #container {
        padding-bottom: 0;
    }
    
    #footer {
        position: static;    
    }
    
    .block {
        display: block;
    }
    
    .col1_2 {
        padding: 0 0 25px 0;
    }
}


/* ==========================================================================
   IE overrides
   ========================================================================== */
.no-js #header {
    background-image: none;
}



/* ==========================================================================
   Browser fixes
   ========================================================================== */
select {
   background: #fff  url(../img/arrows.svg) no-repeat right center !important;
	-moz-appearance: none !important; 
	-webkit-appearance: none !important; 
	appearance: none !important;
}

select::-ms-expand {
    display: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus{ 
    outline: none; 
}

button::-moz-focus-inner {
  border: 0;
}

::-moz-selection {
    background: #b3d4fc;
}

::selection {
    background: #b3d4fc;
}