/* Custom font
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');

/* Colors
   ========================================================================== */

    /* rgba(255, 255, 255, 1.0); /* White */

    /* rgba(251, 251, 251, 1.0); /* 1% black */
    /* rgba(246, 246, 246, 1.0); /* 5% black */
    /* rgba(237, 237, 237, 1.0); /* 10% black */
    /* rgba(198, 198, 198, 1.0); /* 30% black */
    /* rgba(135, 135, 135, 1.0); /* 60% black */
    /* rgba(100, 100, 100, 1.0); /* 75% black */
    /* rgba(60, 60, 59, 1.0); /* 90% black */

    /* 2020 */
    /* rgba(193, 61, 67, 1.0); /* BoR Red */
    /* rgba(162, 53, 56, 1.0); /* BoR Red Dark */
    /* rgba(238, 247, 247, 1.0); /* BoR Blue Light */
    /* rgba(36, 56, 89, 1.0); /* BoR Blue dark */

    /* rgba(51, 51, 51, 1.0); /* BoR Grey dark */
    /* rgba(101, 101, 101, 1.0); /* BoR Grey */
    /* rgba(150, 150, 150, 1.0); /* BoR Grey Light */
    /* rgba(223, 232, 232, 1.0); /* BoR Grey Bright */
    /* rgba(238, 247, 247, 1.0); /* BoR Grey Brighter */

    /* rgba(243, 242, 241, 1.0); /* BoR Grey Bar */
    /* rgba(202, 202, 202, 1.0); /* BoR Grey Stroke */

/* Base elements
   ========================================================================== */
html {
    background-color: rgba(255, 255, 255, 1.0); /* White */

	font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: rgba(41, 41, 41, 1.0); /* Text Black */

    /* BoR CSS */
    -webkit-text-size-adjust: 100%;
}

body {

}

header {
    position: relative;

    height: 298px;
    width: 100%;

    display: none; /* iframe setting */
}

.wrapper {
	width: 100%;
	height: auto;

    margin: 0 auto;
	}

section {
    position: relative;

    width: 1168px;
    height: auto;

    margin: 0 auto;
    padding: 50px 0px 0px; 
}

article {
    width: 100%;
    height: auto;
}

footer {
    width: 100%;
    height: auto;

    margin: 0 auto;

    display: none; /* iframe setting */
}

footer div:first-of-type {
    width: 100%;
    height: 200px;

    background-color: rgba(223, 232, 232, 1.0); /* BoR Grey Bright */
}

footer div:last-of-type {
    width: 100%;
    height: 48px;

    background-color: rgba(51, 51, 51, 1.0); /* BoR Grey dark */
}

/* Links
   ========================================================================== */
a, a:link, a:active, a:visited {
    color: rgba(193, 61, 67, 1.0); /* BoR Red */
	outline: none;
	text-decoration:none;
	-webkit-transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-o-transition: color 0.25s ease;
	transition: color 0.25s ease;
}

a:hover { 
	color: rgba(162, 53, 56, 1.0); /* BoR Red Dark */
}

/* Navigation - Top
   ========================================================================== */
header #nav {
    width: 100%;
    height: 48px;

    background-color: rgba(51, 51, 51, 1.0); /* BoR Grey dark */
}

header #nav img {
    width: 1168px;
    height: auto;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

header nav {
    width: 100%;
    height: 85px;
}

header nav img {
    width: 1168px;
    height: auto;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

header #breadcrumbs {
    width: 100%;
    height: 165px;

    background-color: rgba(193, 61, 67, 1.0); /* BoR Red */
}

header #breadcrumbs div {
    width: 1168px;
    height: auto;

    margin: 0 auto;
    padding-top: 62px;

    color: rgba(255, 255, 255, 1.0); /* White */
    font-size: 1.85em;
}

header #breadcrumbs div img {
    width: 265px;
    height: auto;

    margin-top: 53px;
}

/* Headlines
   ========================================================================== */
h1 {
    /*font-family: 'droid_serifregular', "Times New Roman", Times, serif;
    font-weight: 300;
    font-size: 2.5em;
    letter-spacing: -1px;*/

    margin: 0;
    margin-bottom: 15px;

    color: rgba(41, 41, 41, 1.0); /* Text Black */
}

h2 {
    display: inline-block;

    margin: 0;
    margin-bottom: 5px;

    text-transform: uppercase;

    color: rgba(41, 41, 41, 1.0); /* Text Black */
}

h3 {
    /*font-family: 'droid_serifregular', "Times New Roman", Times, serif;
    font-weight: 300;*/
    margin: 0;
}

h4 {
    margin: 0;

}

img {
    width: 100%;
}

/* Form elements - select, input
   ========================================================================== */
select, input {
    width: calc(100% - 25px);
    height: 40px;

	outline: none;
    padding: 5px 15px 3px 45px;

	border: 0px;
    background-color: rgba(255, 255, 255, 1.0); /* White */
}

option {
    outline: 0;
	border: 0px;

    background-color: rgba(255, 255, 255, 1.0); /* White */
}

select {
    /*width: 400px !important;*/
    height: 40px;

    padding: 5px 15px 3px 45px;

    background-image: url('/images/select_arrow.png');
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-appearance: none;       
    -moz-appearance: none;    
    -o-appearance: none;    
    appearance: none;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-outer-spin-button { 
    margin: 0; 

    -webkit-appearance: none;       
    -moz-appearance: none;    
    -o-appearance: none;    
    appearance: none;
}

input[type="number"] {
    /*width: 150px;*/
}

.answer_33 input[type="number"], .answer_50 input[type="number"], .answer_66 input[type="number"] {
    width: 100%;
}

input[type="radio"], input[type="checkbox"] {
    width: auto;
    height: auto;
}

/* Custom dot color in radio */
input[type="radio"]:checked:before {
    position: relative;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;

    content: "";
    display: block;

    border-radius: 50%;
    background-color: rgba(52, 89, 95, 1.0); /* BoR Stroke - Grey dark */
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 0.8em;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.8em;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 0.8em;
}

input:-o-input-placeholder, textarea:-o-input-placeholder {
    font-size: 0.8em;
}

::placeholder {
    color: rgba(155, 183, 187, 1.0); /* BOR Grey */
}

/* Form elements - Buttons
   ========================================================================== */
button {
    float: right;

    width: auto;
    height: auto;

	outline: none;
    padding: 10px 25px;
    margin-left: 25px;
	border: 0px;

	color: rgba(255, 255, 255, 1.0); /* White */
    font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.0em;

    text-align: center;
	text-decoration: none;
    cursor: pointer;

	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
	transition: background 0.25s ease;

    background-color: rgba(193, 61, 67, 1.0); /* BoR Red */
}

button:hover {
    /* background-color: rgba(162, 53, 56, 1.0); /* BoR Red Dark */
}

button:active {
	position: relative;
	top: 1px;
}

button i, button svg {
    margin-left: -8px;
    margin-right: 8px;
}

textarea {
    width: 350px;
    min-height: 100px;

	border: 0px;
	outline: none;
    padding: 0.8em;

    background-color: rgba(246, 246, 246, 1.0); /* 5% black */

    resize: vertical;
}

.button_grey {
	background-color: rgba(198, 198, 198, 1.0); /* BOR Grey Hover */
	color: rgba(255, 255, 255, 1.0);

	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
	transition: background 0.25s ease;
}

.button_grey:hover {
	background-color: rgba(155, 183, 187, 1.0); /* BOR Grey */

	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
	transition: background 0.25s ease;
}

.checkbox_half {
    width: calc(100% - 25px);
    padding: 15px 0px 13px 45px;
}

.checkbox_third {
    width: calc(100% - 25px);
    padding: 15px 0px 13px 45px;
}

/* Miscellaneous
   ========================================================================== */
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

fieldset, p {
    border: 0;
    margin: 0;
    padding: 0;
}

b {
    font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
}

/* Allowing padding to be used as inner-padding */
div, aside, section, article, input, textarea {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* Ultra thin lines */
hr {
    height: 1px;
    border: 0;
    border-top: 1px solid ;
    color: rgba(198, 198, 198, 1.0); /* 30% black */

    margin: 25px 0px 0px 0px;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}