/*  ----------------------------------------------------
FONTS
-------------------------------------------------------- */
/*
@font-face {
    font-family: DINPro;
    src: url('../../fonts/DINPro.woff2') format('woff2'),
    url('../../fonts/DINPro.woff') format('woff')
}

@font-face {
    font-family: DINPro-Light;
    src: url('../../fonts/DINPro-Light.woff2') format('woff2'),
    url('../../fonts/DINPro-Light.woff') format('woff')
}

@font-face {
    font-family: DINPro-Medium;
    src: url('../../fonts/DINPro-Medium.woff2') format('woff2'),
    url('../../fonts/DINPro-Medium.woff') format('woff')
}

@font-face {
    font-family: DINPro-Bold;
    src: url('../../fonts/DINPro-Bold.woff2') format('woff2'),
    url('../../fonts/DINPro-Bold.woff') format('woff')
}

@font-face {
    font-family: DINPro-Black;
    src: url('../../fonts/DINPro-Black.woff2') format('woff2'),
    url('../../fonts/DINPro-Black.woff') format('woff')
}*/

/*  ----------------------------------------------------
2. GENERAL STYLES
-------------------------------------------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    width: 100%;
    height: 100%;
    /*font-family: DINPro, Helvetica, Arial, serif;*/
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: DINPro-Bold, Helvetica, Arial, serif;*/
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    font-weight: normal !important;
    color: #000;
}

a {
    color: #111;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

.visible {
    visibility: visible;
}

.strong {
    font-weight: 600;
}

#pageloader {
    background-color: rgba(255, 255, 255, .9);
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

#pageloader.bw {
    background-color: #000000;
}

.loader-item {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 175px;
    width: 175px;
}

.loader-item img {
    width: 175px;
}

/*  ----------------------------------------------------
BUTTONS
-------------------------------------------------------- */
.button {
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    /*font-family: DINPro-Bold, Helvetica, Arial, serif;*/
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 1px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    color: #fff;
}

.button:hover {
    color: #fff !important;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.button i {
    margin-left: 15px;
    margin-right: 0;
    font-size: 14px;
}

.button:focus {
    color: #fff;
}

.button:focus {
    outline: none;
    color: #fff;
}

.button-square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.button-circle {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.button.button-red {
    background-color: #e31d1a;
}

.button.button-red:hover {
    background-color: #cc080f !important;
}

.button.button-gray {
    background-color: #dadada;
    color: #111 !important;
}

.button.button-black {
    background-color: #000000;
}

.button.button-black:hover {
    background-color: #444 !important;
}

.button.button-white {
    background-color: #ffffff;
    color: #111 !important;
}

.button.button-transparent {
    background-color: transparent;
    color: #111 !important;
}

.button-transparent:hover {
    color: transparent !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*  ----------------------------------------------------
FORM
-------------------------------------------------------- */
label {
    font-weight: 400 !important;
    font-size: 13px;
    color: #dadada;
}

.input-square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.input-rounded {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.input-circle {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.help-block {
    font-size: 13px;
    color: #aaa;
}

/*  --------------------------------------------------------
NAVBAR
-------------------------------------------------------- */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
    transition: background .5s ease-in-out, padding .5s ease-in-out;
}

.navbar-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    margin-top: 20px;
}

.navbar .navbar-brand {
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 24px;
}

.navbar .navbar-brand img {
    float: left;
    margin-right: 10px;
    margin-top: -5px;
}

.navbar .container-fluid .navbar-brand img {
    margin-left: 20px;
}

.navbar .container .navbar-brand img {
    margin-left: 0;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    background-color: transparent;
}

.navbar .navbar-text {
    color: #111;
}

.top-nav-collapse {
    padding: 10px 0;
    background: #fff !important;
}

.top-nav-collapse .navbar-brand {
    color: #555 !important;
}

.navbar.navbar-center {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@media (max-width: 767px) {
    .navbar {
        padding: 0 !important;
        margin: 0;
    }

    .navbar.top-nav-collapse .navbar-nav li a {
        color: #fff !important;
    }

    .navbar.top-nav-collapse .navbar-brand,
    .navbar .navbar-brand {
        color: #555 !important;
    }

    .navbar .navbar-brand img {
        margin-left: 0 !important;
    }

    .navbar.navbar-center {
        border: 1px solid #fff;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
}

nav.navbar .navbar-header .navbar-brand {
    -ms-flex-align: center;
    align-items: center;
    background: #fefefe;
    -webkit-box-shadow: rgb(0 0 0 / 10%) 0 0 20px;
    box-shadow: rgb(0 0 0 / 10%) 0 0 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    width: 10.272rem;
    height: auto;
    padding: 0;
    z-index: 2;
}

nav.top-nav-collapse .navbar-header .navbar-brand {
    transform: translateY(-110%);
}

nav.navbar .navbar-header .navbar-brand-scrolled {
    top: 1.3rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .5s ease-in-out;
    transition: opacity .2s ease-in-out, transform .5s ease-in-out;
    width: 16rem;
}

nav.top-nav-collapse .navbar-header .navbar-brand-scrolled {
    opacity: 1;
}

nav.navbar .navbar-header .navbar-brand img {
    padding: 1rem;
    float: none;
    margin: 0;
}

@media (max-width: 767px) {
    nav.navbar .navbar-header .navbar-brand {
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: auto;
    }

    .navbar-brand-scrolled {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 24px;
    }

    nav.top-nav-collapse .navbar-header .navbar-brand {
        -webkit-transform: translate(-50%, -110%);
        transform: translate(-50%, -110%);
    }

    nav.navbar .navbar-header .navbar-brand-scrolled {
        top: 2.3rem;
    }
}

.top-nav-collapse {
    -webkit-box-shadow: rgb(3 24 36 / 10%) 0 0 20px !important;
    box-shadow: rgb(3 24 36 / 10%) 0 0 20px !important;
    border: none !important;
}

/*
.request-wrapper {
    padding: 2.4rem;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    min-height: 400px;
}
*/
/*  --------------------------------------------------------
HEADER
-------------------------------------------------------- */
.header-default {
    background-image: url('../../img/other/header.jpg');
    background-color: transparent !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .header-default {
        height: 600px;
    }
}

header h1 {
    text-shadow: 2px 2px #111;
    font-size: 90px;
}

@media (max-width: 992px) {
    header h1 {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 40px;
    }
}

.header-brand {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    left: -10px;
    height: 50px;
    transform: skew(
            -16deg
    );
    background-color: white;
    width: 120px;
}

.header-brand img {
    margin-left: 36px;
    margin-right: 0;
    margin-top: -12px;
    transform: skew(
            16deg
    );
    height: 70px;
}

.header-slogan-container {
    position: absolute;
    transform: skew(
            -16deg
    );
    background-color: rgb(238, 32, 41);
    width: 180px;
    top: 0;
    right: -125px;
    height: inherit;
}

.header-slogan {
    background-color: white;
    position: absolute;
    height: 40px;
    bottom: 0;
    width: 100%;
    outline-offset: -1px;
    outline: white solid 1px !important;
}

.header-slogan img {
    margin-left: 5px;
    margin-right: 100px;
    margin-top: 10px;
    transform: skew(
            16deg
    );
}

.container-stamp {
    position: absolute;
    top: 0;
    width: 100%;
}

.container-claim {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media screen and (min-width: 600px) {
    .header-brand {
        height: 70px;
        width: 150px;
    }

    .header-brand img {
        margin-left: 46px;
        margin-right: 0;
        margin-top: 0;
    }

    .header-slogan-container {
        right: -86px;
    }

    .header-slogan {
        height: 50px;
    }

    .header-slogan img {
        margin-left: 20px;
        margin-right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .header-default {
        padding-top: 50px;
    }
}

.btn.bg-red:hover {
    background-color: #cc080f !important;
}

/*  --------------------------------------------------------
FOOTER
-------------------------------------------------------- */
#footer {
    /*font-family: DINPro-Light, Helvetica, Arial, serif;*/
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
}

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
    text-transform: uppercase;
}

.contact-footer {
    background-color: rgba(214, 214, 214, 0.5);
    color: #152934;
    padding: 4rem 0;
}

.column-title {
    color: #031824;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .01rem;
    text-transform: uppercase;
}

.contact-card {
    color: #031824;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

.contact-card-title {
    font-weight: 600;
}

@media (min-width: 1024px) {
    .contact-title {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .column-title {
        margin-bottom: 2.4rem;
    }
}

#footer .copyright {
    border-top: 1px solid rgba(214, 214, 214, .5);
    width: 100%;
    position: relative;
    font-size: 12px;
    color: #8b949b;
    display: block;
}

.footer-legal-trademark {
    text-align: right;
    font-size: 1.4rem;
    font-weight: 300;
    padding-right: 15px;
}

.footer-legal-trademark a {
    margin-bottom: 1.2rem;
    margin-right: 1.6rem;
    padding-right: 1.6rem;
    font-size: 1.4rem;
}

.footer-legal-trademark a:not(:last-of-type) {
    border-right: 1px solid #111;
}

@media (max-width: 767px) {
    .footer-legal-trademark a {
        display: block;
        text-align: left !important;
        border: none !important;
    }
}

.footer-legal-trademark a:hover {
    color: #8b949b;
}

.contact-card__anchor {
    -webkit-font-smoothing: antialiased;
    color: #ed1c24;
    display: block;
    /*font-family: DINPro, Helvetica, Arial, serif;*/
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: .8rem 0 0;
    padding: 0;
    text-decoration: none;
    transition: color 250ms ease 0s;
}

.contact-card__anchor:hover {
    color: #cc080f;
}

/*  --------------------------------------------------------
FORM
-------------------------------------------------------- */

.form-control {
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    /*font-family: DINPro-Bold, Helvetica, Arial, serif;*/
    height: 45px;
    background-color: #fff;
    border: 1px solid rgba(3, 24, 36, 0.24);
    border-bottom: 1px solid #5C6971;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 0 white;
    box-shadow: inset 0 -1px 0 0 white;
    color: #111;
    padding: 1.9rem 2.4rem 0.6rem 2.4rem;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.form-control:focus {
    border: 1px solid rgba(3, 24, 36, 0.24);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f7f7f7;
}

.form-group {
    position: relative;
}

.form-group > label {
    z-index: 2;
    top: 12px;
    left: 24px;
    position: absolute;
    background-color: transparent;
    font-size: 1.1em;
    transition: 0.2s;
    color: #111;
    max-width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.form-group.label-animate > label {
    top: 5px !important;
    left: 24px !important;
    font-size: 0.8em;
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    /*font-family: DINPro-Light, Helvetica, Arial, serif;*/
}

.form-control.error {
    border-bottom: 1px solid #ed1c24;
}

.form-group .error {
    color: #ed1c24;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control.selectize-control {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.form-control.selectize-dropdown {
    height: auto;
    padding: 0;
}

.selectize-control .selectize-input {
    background: #fff none !important;
    height: 45px !important;
    border: 1px solid rgba(3, 24, 36, 0.24) !important;
    border-bottom: 1px solid #5C6971 !important;
    border-radius: 3px !important;
    -webkit-box-shadow: inset 0 -1px 0 0 white !important;
    box-shadow: inset 0 -1px 0 0 white !important;
    color: #111 !important;
    padding: 1.9rem 2.4rem 0.6rem 2.4rem !important;
    -webkit-transition: all .2s ease-in-out !important;
    -moz-transition: all .2s ease-in-out !important;
    transition: all .2s ease-in-out !important;
}

.selectize-control .selectize-input.focus {
    border: 1px solid rgba(3, 24, 36, 0.24) !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: #f7f7f7 !important;
}

.selectize-dropdown-content .option {
    min-height: 25px;
}

.form-control.selectized.error + .selectize-control .selectize-input {
    border-bottom: 1px solid #ed1c24 !important;
    color: #ed1c24 !important;
}

.selectize-control .selectize-input.disabled {
    background-color: #eee !important;
}

input[type=file]::-webkit-file-upload-button {
    display: none;
}

input[type=file] {
    color: transparent;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
    outline: none;
}

.link-alternate {
    color: #ed1c24;
    font-family: 'BridgestoneType', Arial, Helvetica, sans-serif;
    /*font-family: DINPro-Bold, Helvetica, Arial, serif;*/
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    max-height: 2.375rem;
    overflow: hidden;
    text-decoration: none;
    transition: color 250ms ease 0s;
}

/*  --------------------------------------------------------
MODAL
-------------------------------------------------------- */
.modal-content {
    border-radius: 0;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*  --------------------------------------------------------
PAGINATION
-------------------------------------------------------- */
.previous-next > .current {
    border-bottom: 2px solid;
    font-size: 20px;
    border-left: none;
    padding-left: 4px;
    padding-right: 4px;
}

.previous-next span {
    color: #ed1c24;
    font-weight: bold;
    cursor: pointer;
}

.previous-next a {
    font-size: 20px;
    color: #111;
    cursor: pointer;
    padding-left: 4px;
    padding-right: 4px;
}

/*  --------------------------------------------------------
TABLE
-------------------------------------------------------- */
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    vertical-align: middle;
}

/*  --------------------------------------------------------
LIST
-------------------------------------------------------- */
ol {
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 40px;
}

ol li {
    padding: 0 0 2rem 0;
    counter-increment: my-awesome-counter;
    position: relative;
}

ol li::before {
    content: counter(my-awesome-counter);
    color: #fff;
    position: absolute;
    --size: 22px;
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    width: var(--size);
    height: var(--size);
    top: 0;
    background: #111;
    border-radius: 50%;
    text-align: center;
    z-index: 2;
}

ol li:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #111;
    position: absolute;
    top: 0;
    left: -22px;
    z-index: 1;
}

ol li:last-child {
    padding-bottom: 0;
}

/*  --------------------------------------------------------
CHECKBOX
-------------------------------------------------------- */
.checkbox-container {
    white-space: normal !important;
    overflow: unset !important;
    left: 0 !important;
    display: block;
    position: relative !important;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #e31d1a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*  --------------------------------------------------------
reCAPTCHA
-------------------------------------------------------- */
.grecaptcha-badge {
    z-index: 1;
    bottom: 65px !important;
}