:root {
    --Red-900: #DB011C;
    --White: #FFFFFF;
    --Black: #000000;
    --Gray-500: #9E9E9E;
    --Gray-400: #BDBDBD;
    --Gray-100: #F5F5F5;
    --Light-Green-800: #558B2F;
    --Orange-700: #F57C00;
}

/* Fonts */

@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/Helvetica/HelveticaNeueLTProEx.eot');
    src: url('../fonts/Helvetica/HelveticaNeueLTProEx.woff') format('woff'),
    url('../fonts/Helvetica/HelveticaNeueLTProEx.ttf') format('truetype'),
    url('../fonts/Helvetica/HelveticaNeueLTProEx.svg#svgFontName') format('svg');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/Helvetica/HelveticaNeueLTProBdEx.eot');
    src: url('../fonts/Helvetica/HelveticaNeueLTProBdEx.woff') format('woff'),
    url('../fonts/Helvetica/HelveticaNeueLTProBdEx.ttf') format('truetype'),
    url('../fonts/Helvetica/HelveticaNeueLTProBdEx.svg#svgFontName') format('svg');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Helvetica Neue LT Pro';
    src: url('../fonts/Helvetica/HelveticaNeueLTProBlkEx.eot');
    src: url('../fonts/Helvetica/HelveticaNeueLTProBlkEx.woff') format('woff'),
    url('../fonts/Helvetica/HelveticaNeueLTProBlkEx.ttf') format('truetype'),
    url('../fonts/Helvetica/HelveticaNeueLTProBlkEx.svg#svgFontName') format('svg');
    font-style: normal;
    font-weight: 900;
}

html {
    height: 100% !important;
    background: var(--Red-900, #DB011C);
    color: var(--Black, #000000);
    font-size: 16px;
}

body {
    min-height: 100%;
    display: flex !important;
    background: url('../img/bg_hda.jpg') 50% 50% no-repeat var(--White, #FFFFFF);
    background-position: center top;
    background-size: 100% auto;
    background-color: var(--Red-900, #DB011C);
    overflow-x: hidden;
    color: var(--Black, #000);
    flex-direction: column;
    font-family: "Helvetica Neue LT Pro";
    font-size: 16px;
    line-height: 1em;
    position: relative;
}

.bg {
    width: 40%;
    position: absolute;
    right: 0;
    top: 92px;
    height: 4px;
    background: #fff;
}

.box {
    background: var(--White,#ffffff);
    color: var(--Black, #000);
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    padding: 80px 100px;
}

.box h3 {
    text-align: center;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1.75em;
}

.box-opacity {
    background: rgba(0, 0, 0, 0.60);
    color: var(--White, #ffffff);
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

.select.selectize-control.single .selectize-input,
input[type=text],
input[type=email],
input[type=password] {
    width: 100%;
    background-color: var(--White, #ffffff);
    color: var(--Black, #000);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.125em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55em;
    padding: 17px 36px;
    border: 1px solid var(--Gray-400, #BDBDBD);
    background: var(--White, #FFF);
}

input:-webkit-autofill::first-line,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    font-size: 1.125em;
    font-family: "Helvetica Neue LT Pro";
}

input[type=submit] {
    padding: 28px 40px;
    justify-content: center;
    background: var(--Red-900, #DB011C);
    width: 100%;
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--Red-900, #DB011C)
}

input[type=submit]:hover {
    background: var(--White, #FFF);
    color: var(--Red-900, #DB011C);
}

input.error {
    border-color: var(--Red-900, #DB011C);
}

a.button-red {
    padding: 27px 40px;
    justify-content: center;
    background: var(--Red-900, #DB011C);
    width: 100%;
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--Red-900, #DB011C);
    text-decoration: none;
    display: inline-block;
}

a.button-red:hover {
    background: var(--White, #FFF);
    color: var(--Red-900, #DB011C);
}

a.button-white {
    padding: 27px 40px;
    justify-content: center;
    background: var(--White, #FFF);
    width: 100%;
    color: var(--Red-900, #DB011C);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--Red-900, #DB011C);
    text-decoration: none;
    display: inline-block;
}

a.button-white:hover {
    background: var(--Red-900, #DB011C);
    color: var(--White, #FFF);
}

input ::placeholder,
input ::-ms-input-placeholder {
    color: var(--Gray-500, #9E9E9E);
}

input:focus-visible {
    outline: none;
}

.form-check-input[type=checkbox] {
    border-color: var(--Gray-400, #BDBDBD);;
    border-radius: 0;
}

.form-check-input:checked {
    background-color: var(--Red-900, #DB011C);;
    border-color: var(--Gray-400, #BDBDBD);;
}

.form-select:focus,
.form-check-input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--Gray-400, #BDBDBD);;
}

.form-check-input:active {
    filter: none;
}

label {
    color: var(--Black, #000);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375em;
    padding-left: 12px;
}

label.error {
    color: var(--Red-900, #DB011C) !important;
    text-align: center;
    padding: 1em 0 0 0;
    font-size: 0.9em;
    width: 100%;
}

label.ok {
    color: var(--Light-Green-800, #558B2) !important;
    text-align: center;
    padding: 1em 0 0 0;
    font-size: 0.9em;
    width: 100%;
}

label a {
    text-decoration: underline;
    color: var(--Black, #000);
}
label a:hover {
    text-decoration: none;
}

input[type=password]:disabled,
input[type=email]:disabled,
input[type=text]:disabled {
    color: var(--Color-8, #747474);
    background-color: #f5f5f5;
}

.select .selectize-input>input {
    height: 1rem;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
    font-size: 1rem;
    line-height: 1rem;
}

.selectize-dropdown .selected {
    background: var(--Red-900, #DB011C);
}


/* login page */
#login .box {
    height: 100%;
}

#login label {
    color: var(--White, #FFF);
}

#register .logo,
#login .logo {
    text-align: center;
    padding: 100px 0 95px 0;
}

#login .login-box form .row {
    padding-bottom: 1.75em;
}

#login .login-box form .row:last-of-type {
    padding-bottom: 0;
}

#login .login-box form .row .info {
    text-align: center;
    line-height: 1.5em;
}

#login .forgot {
    text-align: right;
}

#login .forgot a {
    color: var(--White, #FFF);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375em;
    text-decoration: none;
}

#login .forgot a:hover {
    text-decoration: underline;
}

#login .register-text {
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 2em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25em;
    padding: 17px 0 45px 0;
}

#login .box-register {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

#login .box-register h3 {
    margin-bottom: 0.5em;
}

#login form .errors label.error{
    padding: 0 0 1.5em 0;
}

#login form .errors label.ok{
    padding: 0 0 1.5em 0;
}

.footer .box-red {
    color: var(--White, #FFF);
    border: 1px solid var(--White, #FFF);
    background: rgba(183, 28, 28, 0.80);
    text-align: center;
    padding: 16px;
    width: 100%;
}

.footer .box-red a {
    color: var(--White, #FFF);
    text-decoration: underline;
}

.footer .box-red a:hover {
    text-decoration: none;
}

.footer {
    padding-top: 2em;
    padding-bottom: 1em;
    font-size: 1em;
}

.footer .row {
    padding-bottom: 1em;
}

.footer .box span {
    display: inline-block;
    padding: 0 16px;
}

.footer .footer-bottom {
    font-size: 0.9em;
}

/* register */

#register .info {
    text-align: center;
    color: var(--Black, #000);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em; /* 140% */
    padding-bottom: 1.75em;
}

#register .info a {
    color: var(--Black, #000);
}

#register .info a:hover {
    text-decoration: none;
}

#register h3 {
    font-size: 1.75em;
    margin-bottom: 1.75em;
}

#register form .row {
    padding-bottom: 1.75em;
}

#register form .row-small {
    padding-bottom: 1em;
}

#register form .row:last-of-type {
    padding-bottom: 0;
}

header {
    width: 100%;
    /*max-width: 1780px;*/
    margin: 0 auto;
    padding-bottom: 30px;
}

header .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

/* Navigation */

.navbar {
    padding: 79px 0px 0 30px;
    width: 100%;
    --bs-navbar-active-color: var(--mlw-menu-color);
    font-family: "Helvetica Neue LT Pro Blk";
    --bs-navbar-brand-margin-end: 107px;
    --bs-navbar-color: #fff;
    overflow-x: hidden;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: #fff;
}

.navbar-nav {
    --bs-nav-link-color: var(--mlw-menu-color);
    --bs-nav-link-hover-color: var(--mlw-menu-color);
}

.navbar .navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar .navbar-brand img {
    max-width: 290px;
    position: relative;
    top: -32px;
}

.navbar-nav .up {
    position: absolute;
    right: 0px;
    top: -76px;
    width: 100%;
    transform: skew(10deg);
    display: flex;
    justify-content: flex-end;
    margin-right: 60px;
    background: url('../img/avatar.png') 100% 50% no-repeat;
    margin-right: 15px;
    padding-right: 100px;
    height: 60px;
}

.navbar-nav .up .name {
    color: var(--White, #FFF);
    text-align: right;
    leading-trim: both;
    text-edge: cap;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 162.5% */
    text-transform: uppercase;
    line-height: 1.625em;
}

.navbar-nav .up .name span {
    font-weight: 400;
    text-transform: none;
}

.navbar-nav .up a.nav-link {
    display: inline;
    padding: 0 !important;
    margin: 0 30px;
    font-size: 0.9em;
    font-family: 'Helvetica Neue LT Pro Lt';
    background: none;
    border: 0;
}

.navbar-nav .up a.nav-link span {
    transform: skew(0deg);
}

.navbar-nav .up a.nav-link.active,
.navbar-nav .up a.nav-link:hover {
    border: 0;
    color: #000;
    background: none;
}


.navbar-nav .down {
    display: flex;
    padding-right: 10px;
    border-top: 4px solid #fff;
}

.navbar-nav a.nav-link {
    color: var(--White, #FFF);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding: 21px 27px 21px 26px !important;
    border-image: linear-gradient(180deg, #FFF 0%, rgba(217, 217, 217, 0.00) 100%) 1 100%;
    border-width: 0px 0px 0px 1px;
    border-style: solid;
}

.navbar-nav a.nav-link.active,
.navbar-nav a.nav-link:hover {
    color: var(--White, #FFF);
    background: linear-gradient(180deg, #FFF 0%, rgba(217, 217, 217, 0.00) 100%);
}

.navbar-nav a.nav-link span {
    transform: skew(10deg);
    display: block;
}

.bg-body-tertiary {
    --bs-bg-opacity: 0;
}

#navbarNavAltMarkup {
    /*margin-right: -50%;*/
    transform: skew(-10deg);
    /*border-top: 4px solid #fff;*/
    width: 100%;
    justify-content: flex-end;
}

#navbarNavAltMarkup .navbar-nav {
    border-image: linear-gradient(180deg, #FFF 0%, rgba(217, 217, 217, 0.00) 100%) 1 100%;
    border-width: 0px 0px 0px 1px;
    border-style: solid;
}

@media (max-width: 1250px) {
    /*.navbar-nav a.nav-link {*/
    /*    padding: 21px 30px 21px 29px !important;*/
    /*}*/
}

@media (max-width: 1199px) {
    .navbar-nav a.nav-link {
        padding: 21px 20px 21px 19px !important;
        font-size: 0.9em;
    }

    .navbar-nav .up a.nav-link {
        margin: 0 20px;
        font-size: 0.8em;
    }

    .navbar-nav .up {
        padding-top: 6px;
    }

    .navbar-nav .up .name {
        font-size: 0.9em;
    }
}

@media (max-width: 991px) {
    .navbar {
        --bs-navbar-brand-margin-end: 10px;
        padding-left: 0;
    }

    .navbar-toggler {
        margin-top: -30px;
        margin-right: 30px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-nav .down,
    .navbar-nav .up {
        flex-direction: column;
    }

    .navbar-nav .up {
        margin-bottom: 30px;
    }

    navbar-nav a {
        width: 100%;
    }

    #navbarNavAltMarkup {
        transform: none;
        border-top: 0;
    }

    .navbar-brand {
        padding-left: 30px;
    }

    .navbar-nav a.nav-link span {
        transform: none;
    }

    .navbar-nav a.nav-link {
        border: none;
        text-align: center;
        border-bottom: 1px solid #fff;
    }

    #navbarNavAltMarkup .navbar-nav {
        border: none;
    }

    a.nav-link.active,
    .navbar-nav a.nav-link:hover {
        background: none;
        color: #000;
    }

    .navbar-nav .up a.nav-link {
        padding: 21px 0 21px 0 !important;
        font-size: 0.9em;
        font-family: "Helvetica Neue LT Pro Blk";
        margin: 0;
        border-bottom: 1px solid #fff;
    }

    .navbar-nav .up a.nav-link.active, .navbar-nav .up a.nav-link:hover {
        border-bottom: 1px solid #fff;
    }


    .navbar-nav .up {
        display: none;
    }

}

#banner {
    background: var(--White, #FFFFFF);
    height: 152px;
    transform: skew(-11deg);
    margin-left: 115px;
    margin-bottom: 57px;
}

#banner .row {
    height: 100%;
    align-items: center;
    margin-right: 10px;
}

#banner .about {
    transform: skew(11deg);
    border-radius: 150px;
    background: url('../img/about-us-logo.png') no-repeat 50% 50% var(--Red-900, #DB011C);
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

#banner .text {
    transform: skew(11deg);
    color: var(--Black, #000);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.125em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.11em;
    text-transform: uppercase;
}

#banner .text span {
    color: var(--Red-900, #DB011C);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 4.5em;
    font-style: normal;
    font-weight: 900;
    line-height: 0.65em; /* 44.444% */
}

#banner .solution {
    transform: skew(11deg);
}

#banner .row .row {
    justify-content: center;
}

#banner .form_fill {
    text-align: center;
    font-size: 2em;
    color: var(--Red-900, #DB011C);
}

#banner .form_fill a {
    text-decoration: none;
    font-weight: bold;
    color: var(--Red-900, #DB011C);
}

#banner .form_fill a:hover {
    text-decoration: underline;
}

#statistics {
    margin-bottom: 49px;
}

#statistics .box {
    transform: skew(-11deg);
}

#statistics .row {
    margin-right: 35px;
    margin-left: 59px;
}

#statistics .row .box {
    height: 216px;
}

#statistics .number {
    transform: skew(-11deg);
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: var(--Red-900, #DB011C);
    width: 33px;
    height: 28px;
    position: absolute;
    top: 27px;
    left: 27px;
}

#statistics .number span {
    transform: skew(11deg);
    display: block;
}

#statistics .box {
    padding: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#statistics .text {
    transform: skew(11deg);
    color: var(--Black, #000);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em; /* 140% */
    text-transform: uppercase;
    padding-top: 1em;
}

#statistics .text b {
    color: var(--Red-900, #DB011C);
    font-size: 2.4em;
    line-height: 1.2em;
}

#statistics .text span {
    color: var(--Red-900, #DB011C);
    font-size: 0.9em;
    line-height: 1.55em;
}

#banner2 {
    height: 438px;
    transform: skew(-11deg);
    margin-bottom: 30px;
}

#banner2 .row {
    padding-right: 119px;
}

#banner2 .box {
    height: 438px;
    background: url('../img/banner2.jpg') no-repeat 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner2 .text {
    transform: skew(11deg);
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.2em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
}


#banner2 .text a {
    color: #fff;
}

#banner2 .text a:hover {
    color: #fff;
}

#banner2 .text b.red {
    color: #cd0a0a;
}

#banner2 .text span {
    font-size: 1em;
    line-height: 1.16em;
    padding-bottom: 20px;
    display: inline-block;
}

#banner2 .text h4 {
    font-family: "Helvetica Neue LT Pro";
    font-size:1.75em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em; /* 130% */
    text-transform: uppercase;
    padding-bottom: 28px;
}

#banner2 .text .warunki {
    width: 80%;
    text-align: left;
    margin: 0 auto;
}

#banner2 .text h4 b {
    font-weight: 900;
}

footer.page {
    padding-top: 30px;
}

footer.page .milwaukee {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 94px;
    margin-bottom: 60px;
    color: var(--White, #FFF);
    font-size: 2em;
    font-style: normal;
    font-weight: 400;
    line-height: 0.77em;
}

footer.page .milwaukee b {
    font-weight: 700;
    line-height: 28px;
}

footer.page .milwaukee img {
    padding-right: 48px;
}

footer.page .links {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55em;
    padding-bottom: 60px;
}

footer.page .links img {
    margin-left: 20px;
}

footer.page .links img.right {
    padding-right: 20px;
}

section.faq-list .accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius:0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-active-bg: none;
    --bs-accordion-btn-focus-box-shadow: none;
}

section.faq-list .accordion-item {

    color: var(--Black, #000);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    text-align: left;
    /*border-bottom: 1px solid var(--Color-4, #E2E2E2);*/
}

section.faq-list .accordion-button {
    border-bottom: none;
    padding-top: 0.75em;
    padding-bottom: 0.75em;

    color: var(--Black, #000);
    font-size: 0.75em;
    font-style: normal;
    font-weight: 700;
    line-height: 1.33em;
}

section.faq-list .accordion-body {
    border: 1px solid var(--Gray-400, #BDBDBD);
    padding: 2.4em;
    margin-bottom: 0.8em;
}

section.contact .text{
    font-size: 1.25em;
    line-height: normal;
}

section.gallery .box {
    padding: 0;
    background: none;
    box-shadow: none;
}

section.gallery .box .image {
    max-width: 300px;
}

section.gallery .box h3 {
    color: var(--White, #FFF);
    font-size: 1.75em;
    margin-bottom: 1em;
}

section.gallery .box .text {
    color: var(--White, #FFF);
    font-family: "Helvetica Neue LT Pro";
    font-size: 1.25em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em; /* 140% */
    margin-bottom: 3em;
}

section.gallery .links {
    padding: 3.75em 0;
    display: flex;
    justify-content: center;
}

section.gallery .links a {
    width: 2.3em;
    height: 2.3em;
    font-size: 1.25em;
    color: var(--Red-900, #DB011C);
    text-align: center;
    font-style: normal;
    font-weight: 900;
    line-height: 2.3em;
    text-transform: uppercase;
    background: var(--White, #FFF);
    display: inline-block;
    margin: 0 4px;
    text-decoration: none;
}

section.gallery .links a.active,
section.gallery .links a:hover {
    background: var(--Black, #000);
    color: var(--White, #FFF);
}

section.gallery .links span {
    width: 1.5em;
    height: 2.3em;
    color: var(--White, #FFF);
    text-align: center;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 900;
    line-height: 2.3em;
    text-transform: uppercase;
}

section.error .box {
    font-size: 1.3em;
    text-align: center;
}

section.account form .row {
    padding-bottom: 1.75em;
}

section.account form h4 {
    color: var(--Red-900);
    font-size: 1.4em;
    padding-bottom: 1em;
}

section.account form .row:last-of-type {
    padding-bottom: 0;
}

section.account form .row .info {
    text-align: center;
    line-height: 1.5em;
}

#cookieNotice {
    position: fixed;
    bottom: 10px;
    width: 96%;
    left: 2%;
    color: var(--White, #FFF);
    border: 1px solid var(--White, #FFF);
    background: rgba(0, 0, 0, 0.60);
    text-align: center;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.9em;
    line-height: 1.3em;
}

#cookieNotice a {
    text-decoration: underline;
    color: var(--White, #FFF);
}
#cookieNotice a:hover {
    text-decoration: none;
}


#cookieNoticeButton input {
    padding: 10px 20px;
    justify-content: center;
    background: var(--Red-900, #DB011C);
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Helvetica Neue LT Pro";
    font-size: 1em;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: 1px solid var(--Red-900, #DB011C);
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
}

#cookieNoticeButton input:hover {
    color: var(--Red-900, #DB011C);
    background: var(--White, #FFF);
}

@media (max-width: 1399px) {
    #login .forgot a {
        font-size: 0.9em;
        line-height: 1.7em;
    }

    #login label {
        font-size: 0.9em;
        padding-left: 11px;
        line-height: 1.7em;
    }

    #banner .text {
        font-size: 0.93em;
    }
}

@media (max-width: 1199px) {
    .footer {
        font-size: 0.9em;
    }

    #banner .text span {
        display: none;
    }

    #banner .solution img {
        width: 120%;
    }

    #statistics .number {
        font-size: 1.2em;
        height: 25px;
    }

    #statistics .text {
        font-size: 1em;
    }

    footer.page {
        font-size: 0.9em;
    }
}

@media (max-width: 991px) {
    .bg {
        display: none;
    }

    #banner .about {
        width: 90px;
        height: 90px;
        background-size: cover ;
    }

    #banner .text {
        font-size: 0.8em;
    }

    #statistics .number {
        font-size: 1em;
        height: 20px;
        width: 25px;
    }

    #statistics .text {
        font-size: 0.7em;
    }

    #banner2 .text {
        font-size: 1.1em;
    }

    footer.page {
        font-size: 0.7em;
    }

    footer.page .links img {
        margin-left: 10px;
        width: 70%;
    }

    footer.page .links img.right {
        padding-right: 10px;
    }
}

.info_ok {
    color: #3e8f3e;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}