/**
 * @description
 * Generates keyframe animations
 *
 * @author drublic
 *
 * @link caniuse
 * @link spec
 *
 * @param values
 * @returns
 *   -webkit-border-radius: <values>;
 *           border-radius: <values>;
 *
 * @example
 *   .selector {
 *     ._animation(jump 1s ease-out);
 *   }
 */


/**
* @description
* Generates `appearance` for a given element
*
* @author romamatusevich
*
* @link MDN https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-appearance
* @link css-tricks http://css-tricks.com/almanac/properties/a/appearance/
* @link spec http://www.w3.org/TR/2004/CR-css3-ui-20040511/#appearance
*
* @param value
* @returns
* -webkit-appearance: <value>;
* -moz-appearance: <value>;
* appearance: <value>;
*
* @example
*   .selector {
*       ._appearance(button);
*   }
*/


/**
 * @description
 * Generates cross-browser-compatible `border-radius` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/border-radius
 * @link spec http://www.w3.org/TR/css3-background/#corners
 *
 * @param values
 * @returns
 *   -webkit-border-radius: <values>;
 *           border-radius: <values>;
 *
 * @example
 *   .selector {
 *     ._border-radius(20px 10px);
 *   }
 */


/**
 * @description
 * Generates cross-browser-compatible `box-shadow` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css-boxshadow
 * @link spec http://www.w3.org/TR/css3-background/#the-box-shadow
 *
 * @param values
 * @returns
 *   -webkit-box-shadow: <values>;
 *           box-shadow: <values>;
 *
 * @example
 *   .selector {
 *     ._box-shadow(5px 5px 10px 5px #aaa);
 *   }
 */


/**
 * @description
 * Generates cross-browser-compatible `box-sizing` output for a given element.
 *
 * @author drublic
 *
 * @link caniuse
 * @link spec
 *
 * @param type
 * @returns
 *   -webkit-box-sizing: <type>;
 *      -moz-box-sizing: <type>;
 *           box-sizing: <type>;
 *
 * @example
 *   .selector {
 *     ._box-sizing;
 *   }
 */


/**
 * @description
 * Generates a linear gradient for a given element with a fallback color.
 *
 * @author drublic
 *
 * @link caniuse
 * @link spec
 *
 * @dependency helper-gradient-angle
 * @param direction {top|left}
 * @param fallback {color}
 * @param from {color}
 * @param to {color}
 * @default 'to bottom', #ccc, #ccc, #aaa
 *
 * @returns
 *   background-color: <fallback>;
 *   background-image: -webkit-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:    -moz-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:     -ms-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:      -o-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:         linear-gradient(<direction>, <from>, <to>);
 *
 * @example
 *   .selector {
 *     ._linear-gradient(top, #ccc, #ddd, #bbb);
 *   }
 */


/**
* @description
* Implement `opacity` for a given element
*
* @author romamatusevich
*
* @link spec http://www.w3.org/TR/css3-color/#transparency
* @link MDN https://developer.mozilla.org/en-US/docs/Web/CSS/opacity
*
* @param value
* @returns
* opacity: value;
* filter: alpha(opacity = value * 100);
*
* @example
*   .selector {
*       ._opacity(0.5);
*   }
*/


/**
 * @description
 * Generates `placeholder` content for a given element
 *
 * @author romamatusevich
 *
 * @link MDN https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-placeholder
 * @link css-tricks http://css-tricks.com/snippets/css/style-placeholder-text/
 *
 * @returns
 *    &::-webkit-input-placeholder {
 *        color: <color>;
 *    }
 *    &::-moz-placeholder {
 *        color: <color>;
 *    }
 *    &:-ms-input-placeholder {
 *        color: <color>;
 *    }
 *
 * @example
 *   .selector {
 *     ._placeholder(#ccc);
 *   }
 */


/**
 * @description
 * This mixin will enable using the CSS3 value `rem`, which lets you define
 * property-sizes based on the root-element's font-size.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/rem
 * @link spec http://www.w3.org/TR/css3-values/#relative0
 *
 * @param property
 * @param value
 * @param default-font-size {int} optional
 * @returns
 *   <property>: (<value> * <default-font-size>)px;
 *   <property>: <value>;
 *
 * @example
 *   .selector {
 *     ._rem(font-size, 1.3);
 *   }
 *
 * Note: Depending on the font-size of the root-element `rem` calculates a
 * property of a current element. The fallback solution excepts a
 * `default-font-size`-argument which is 16px by default.
 */


/**
 * @description
 * Sass-mixin for CSS property `tab-size`, generates cross-browser-compatible
 * `tab-size` output.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css3-tabsize
 * @link spec http://dev.w3.org/csswg/css-text/#tab-size1
 *
 * @param value int optional
 * @default 4
 * @returns
 *   -moz-tab-size: <value>;
 *     -o-tab-size: <value>;
 *        tab-size: <value>;
 *
 * @example
 *   .selector {
 *     ._tab-size(4);
 *    }
 */


/**
 * @description
 * Generates cross-browser-compatible `transform` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/transforms2d http://caniuse.com/transforms3d
 * @link spec
 *
 * @param values
 * @returns
 *   -webkit-transform: <values>;
 *      -moz-transform: <values>;
 *        -o-transform: <values>;
 *       -ms-transform: <values>;
 *           transform: <values>;
 *
 * @example
 *   .selector {
 *     ._transform(rotate(1deg));
 *   }
 */


/**
 * @description
 * Generates cross-browser-compatible `transition` output for a given element.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css-transitions
 * @link spec
 *
 * @param values
 * @returns
 *   -webkit-transition: <values>;
 *      -moz-transition: <values>;
 *        -o-transition: <values>;
 *           transition: <values>;
 *
 * @example
 *   .selector {
 *     ._transition(background 0.3s ease-in);
 *   }
 */


/**
 * @description
 * Disables selection of content of a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/user-select-none
 *
 * @param value none|auto optional
 * @default none
 * @returns
 *   -webkit-user-select: <value>;
 *      -moz-user-select: <value>;
 *       -ms-user-select: <value>;
 *           user-select: <value>;
 *
 * @example
 *   .selector {
 *     .x-user-select;
 *   }
 */

::selection {
    background-color: #B41D24;
    color: #ffffff;
}

::-moz-selection {
    background-color: #B41D24;
    color: #ffffff;
}

::-o-selection {
    background-color: #B41D24;
    color: #ffffff;
}

::-ms-selection {
    background-color: #B41D24;
    color: #ffffff;
}

::-webkit-selection {
    background-color: #B41D24;
    color: #ffffff;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#menu-column {
    display: none;
}

#language-column {
    display: none;
}

#logo-column {
    width: 430px;
    float: left;
}

#navigation-column {
    width: calc(100% - 445px);
    float: right;
}

a {
    text-decoration: none;
}

.view-more {
    color: #B41D24;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    font-weight: bold;
    /* font-family: 'Roboto', sans-serif; */
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.download-wrapper .download-color .download-center .col-to-hide {
    display: none;
}

.download-wrapper .download-color .download-center .col-to-show {
    display: block;
}

#about-tabs li {
    margin: 0px 30px;
}

.news-icons {
    display: block;
    overflow: hidden;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    margin-top: 30px;
}

.news-icons li {
    display: block;
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0px 20px 0px 0px;
}

.news-icons li a.forward {
    width: 40px;
    height: 33px;
    display: block;
    background-image: url('../images/forward.png');
    background-size: 40px 33px;
}

.news-icons li a.print {
    width: 38px;
    height: 36px;
    display: block;
    background-image: url('../images/print.png');
    background-size: 38px 36px;
}

.news-button {
    margin: 80px 0px;
}

#news-image {
    width: 100%;
    margin-bottom: 30px;
}

#contact-form-wrapper,
#personnel-wrapper {
    display: none;
    margin-bottom: 60px;
}

#personnel-wrapper h1 {
    font-size: 52px;
    color: #B41D24;
    line-height: 65px;
    margin: 40px 0px;
}

.regular-button {
    display: block;
    border: none;
    background: #B41D24;
    line-height: 70px;
    color: white;
    outline: none;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.regular-button span {
    display: inline-block;
}

.regular-button span:after {
    content: "";
    display: inline-block;
    height: 19px;
    width: 11px;
    background-image: url(../images/button-arrow.png);
    background-size: 11px 19px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: 15px;
}

.regular-button:hover {
    color: white;
    background: #979797;
}

#personnel-wrapper .person {
    height: 430px;
    margin: 0px 0px 60px 0px;
}

#personnel-wrapper .person .image {
    height: 270px;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

#personnel-wrapper .person .info {
    padding: 15px 25px;
}

#personnel-wrapper .person .info p {
    font-size: 19px;
    line-height: 32px;
    color: #000000;
    margin: 0;
    padding: 0;
}

#personnel-wrapper .person .info p span {
    margin-left: 80px;
}

#personnel-wrapper .person:hover {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    background-color: #B41D24;
}

#personnel-wrapper .person:hover .info p {
    color: #ffffff;
}

#contact-form-wrapper {
    display: block;
}

#contact-map-inner {
    height: 678px;
}

.contact-box {
    background: rgba(216, 216, 216, 0.27);
    padding: 30px;
}

.contact-box h2 {
    font-size: 32px;
    line-height: 42px;
    color: #B41D24;
}

.contact-box .contact-group {
    margin: 15px 0px;
}

.contact-box .contact-group p {
    margin: 0;
    padding: 0;
    line-height: 37px;
    font-size: 24px;
    color: #000000;
}

.contact-box .contact-group p.big {
    font-size: 29px;
    line-height: 38px;
}

#contact-form {
    padding: 30px 0px;
}

#contact-form h1 {
    font-size: 65px;
    color: #B41D24;
    line-height: 65px;
}

#contact-form .form-wrap {
    overflow: hidden;
    padding: 30px 0px;
}

#contact-form .form-wrap button {
    display: block;
    border: none;
    background: #B41D24;
    line-height: 56px;
    color: white;
    outline: none;
    font-weight: bold;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

#contact-form .form-wrap button span {
    display: inline-block;
}

#contact-form .form-wrap button span:after {
    content: "";
    display: inline-block;
    height: 19px;
    width: 11px;
    background-image: url('../images/button-arrow.png');
    background-size: 11px 19px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-left: 15px;
}

#contact-form .form-wrap button:hover {
    color: white;
    background: #979797;
}

#contact-form .form-wrap .form-left {
    width: 49%;
    float: left;
}

#contact-form .form-wrap .form-left input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #979797;
    line-height: 48px;
    height: 48px;
    border-radius: 0px;
    -webkit-appearance: none;
}

#contact-form .form-wrap .form-left input::-webkit-input-placeholder,
#contact-form .form-wrap .form-left input::placeholder,
#contact-form .form-wrap .form-left input:-ms-input-placeholder {
    font-size: 19px;
    color: #000000;
    line-height: 26px;
}

#contact-form .form-wrap .form-left input:focus {
    outline: none;
    border-bottom-color: #B41D24;
}

#contact-form .form-wrap .form-left input:focus::-webkit-input-placeholder,
#contact-form .form-wrap .form-left input:focus::placeholder,
#contact-form .form-wrap .form-left input:focus:-ms-input-placeholder {
    color: #B41D24;
}

#contact-form .form-wrap .form-right {
    width: 49%;
    float: right;
}

#contact-form .form-wrap .form-right input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #979797;
    line-height: 48px;
    height: 48px;
    border-radius: 0px;
    -webkit-appearance: none;
}

#contact-form .form-wrap .form-right input::-webkit-input-placeholder,
#contact-form .form-wrap .form-right input::placeholder,
#contact-form .form-wrap .form-right input:-ms-input-placeholder {
    font-size: 19px;
    color: #000000;
    line-height: 26px;
}

#contact-form .form-wrap .form-right input:focus {
    outline: none;
    border-bottom-color: #B41D24;
}

#contact-form .form-wrap .form-right input:focus::-webkit-input-placeholder,
#contact-form .form-wrap .form-right input:focus::placeholder,
#contact-form .form-wrap .form-right input:focus:-ms-input-placeholder {
    color: #B41D24;
}

#contact-form .form-wrap .form-wide textarea {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #979797;
    height: 50px;
    border-radius: 0px;
    -webkit-appearance: none;
}

#contact-form .form-wrap .form-wide textarea::-webkit-input-placeholder,
#contact-form .form-wrap .form-wide textarea::placeholder,
#contact-form .form-wrap .form-wide textarea:-ms-input-placeholder {
    font-size: 19px;
    color: #000000;
    line-height: 26px;
}

#contact-form .form-wrap .form-wide textarea:focus {
    outline: none;
    border-bottom-color: #B41D24;
}

#contact-form .form-wrap .form-wide textarea:focus::-webkit-input-placeholder,
#contact-form .form-wrap .form-wide textarea:focus::placeholder,
#contact-form .form-wrap .form-wide textarea:focus:-ms-input-placeholder {
    color: #B41D24;
}

#contact-background {
    background-image: url('../images/contact-background.png');
}

#news-background {
    background-image: url('../images/contact-background.png');
}

#park-background {
    background-image: url('../images/park-background.png');
}

#services-background {
    background-image: url('../images/services-background.png');
}

#careers-background {
    background-image: url('../images/careers-background.png');
}

#about-background {
    background-image: url('../images/about-background.png');
}

#download-background {
    background-image: url('../images/download-background.png');
}

#park-list .park-image {
    width: 100%;
    height: auto;
}

#park-list .park-info {
    padding: 30px 0px;
}

#park-list .park-info h1 {
    font-size: 32px;
    line-height: 48px;
    color: #B41D24;
}

#park-list .park-info h2 {
    font-size: 24px;
    line-height: 36px;
    color: #B41D24;
}

#park-list .park-info p {
    font-size: 16px;
    line-height: 24px;
}

#park-list .park-info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#park-list .park-info ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#park-list .park-info ul li a {
    font-size: 21px;
    color: #000000;
    line-height: 30px;
}

#park-list .park-info ul li a:hover {
    color: #B41D24;
}

#services-list .service-image {
    width: 100%;
    height: auto;
}

#services-list .service-info {
    padding: 30px 0px;
}

#services-list .service-info h1 {
    font-size: 32px;
    line-height: 48px;
    color: #B41D24;
}

#services-list .service-info h2 {
    font-size: 24px;
    line-height: 36px;
    color: #B41D24;
    margin-top: 25px;
}

#services-list .service-info p {
    font-size: 16px;
    line-height: 24px;
}

#services-list .service-info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#services-list .service-info ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#services-list .service-info ul li a {
    font-size: 21px;
    line-height: 27px;
    color: #000000;
    line-height: 38px;
}

#services-list .service-info ul li a:hover {
    color: #B41D24;
}

#downloads-list .row-hidden {
    display: none;
}

#downloads-list .row-hidden.row-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#downloads-list .download-wrapper .download-color {
    overflow: hidden;
    background-color: #cccccc;
    padding: 55px 0px 30px 0px;
}

#downloads-list .download-wrapper .download-color.active {
    background-color: #B41D24;
}

#downloads-list .download-wrapper .download-color:not(.active) .download-left h1 {
    color: black;
}

#downloads-list .download-wrapper .download-color .download-center {
    width: calc(100% - 400px);
    float: left;
}

#downloads-list .download-wrapper .download-color .download-center a {
    background-color: #F8F8F8;
    line-height: 76px;
    display: block;
    margin: 0px 0px 25px 0px;
    position: relative;
}

#downloads-list .download-wrapper .download-color .download-center a span {
    font-size: 17px;
    line-height: 30px;
    color: black;
    text-transform: uppercase;
    padding: 0px 15px;
}

#downloads-list .download-wrapper .download-color .download-center a:after {
    content: "";
    width: 47px;
    height: 40px;
    background-image: url('../images/download-icon-black.png');
    background-size: 47px 40px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

#downloads-list .download-wrapper .download-color .download-center a:hover {
    background-color: #2E2525;
}

#downloads-list .download-wrapper .download-color .download-center a:hover span {
    color: white;
}

#downloads-list .download-wrapper .download-color .download-center a:hover:after {
    background-image: url('../images/download-icon-white.png');
}

#downloads-list .download-wrapper .download-color .download-left {
    width: 250px;
    float: left;
}

#downloads-list .download-wrapper .download-color .download-left h1 {
    font-size: 32px;
    line-height: 42px;
    color: white;
    display: block;
}

#downloads-list .download-wrapper .download-color .download-right {
    width: 150px;
    float: left;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more span.more {
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    width: 55px;
    display: inline-block;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more span.less {
    font-size: 19px;
    line-height: 21px;
    color: #000000;
    width: 55px;
    display: none;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more:after {
    content: "";
    width: 41px;
    height: 26px;
    background-size: 41px 26px;
    background-image: url('../images/view-more.png');
    display: inline-block;
    margin-left: 10px;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more.download-view-less span.more {
    display: none;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more.download-view-less span.less {
    display: inline-block;
}

#downloads-list .download-wrapper .download-color .download-right .download-view-more.download-view-less:after {
    background-image: url('../images/view-less.png');
}

#downloads-list .download-info {
    padding: 30px 0px;
}

#downloads-list .download-info h1 {
    font-size: 32px;
    line-height: 48px;
    color: #B41D24;
}

#downloads-list .download-info h2 {
    font-size: 24px;
    line-height: 36px;
    color: #B41D24;
}

#downloads-list .download-info p {
    font-size: 16px;
    line-height: 24px;
}

#downloads-list .download-info.download-contacts p {
    font-size: 24px;
    line-height: 31px;
    margin: 0;
    padding: 0;
}

#downloads-list .download-info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#downloads-list .download-info ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#downloads-list .download-info ul li a {
    font-size: 21px;
    color: #000000;
    line-height: 30px;
}

#downloads-list .download-info ul li a:hover {
    color: #B41D24;
}

#about-list .history-slider .history-slider-inner {
    position: relative;
    margin: 0px 0px;
    height: 7px;
    background-color: #D8D8D8;
}

#about-list .history-slider .history-slider-inner .history-slider-drag {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background-color: #B41D24;
    position: absolute;
    left: 525px;
    top: 50%;
    transform: translateY(-50%);
}

#about-list .history-slider .history-slider-inner .history-slider-fill {
    width: 525px;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #B41D24;
    position: absolute;
}

#about-list .history-slider .history-slider-values {
    display: block;
    overflow: hidden;
    padding: 30px 0px;
}

#about-list .history-slider .history-slider-values a {
    font-size: 13px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.35);
    text-align: center;
    display: block;
}

@media only screen and (max-width: 1500px) {
    #about-list .history-slider .history-slider-values a {
        font-size: 17px;
    }
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
    #about-list .history-slider .history-slider-values a {
        font-size: 18px;
        line-height: 34px;
    }
}

@media only screen and (min-width: 1701px) {
    #about-list .history-slider .history-slider-values a {
        font-size: 21px;
        line-height: 34px;
    }
}

#about-list .history-slider .history-slider-values a.active {
    color: #B41D24;
}

#about-list h2.roads-title {
    font-size: 32px;
    line-height: 42px;
    color: black !important;
}

#about-list h2.roads-title .bigger {
    font-size: 56px;
    line-height: 74px;
    color: #B41D24;
    display: block;
}

#about-list .about-image {
    width: 100%;
    height: auto;
}

#about-list .certificate {
    margin-right: 30px;
    margin-top: 30px;
}

#about-list .about-info {
    padding: 30px 0px;
}

#about-list .about-info.about-text-no-padding {
    padding: 30px 0px 0px 0px;
}

#about-list .about-info.about-text-no-padding-top {
    padding: 0px 0px 60px 0px;
}

#about-list .about-info h1 {
    font-size: 32px;
    line-height: 48px;
    color: #B41D24;
}

#about-list .about-info h2 {
    font-size: 24px;
    line-height: 36px;
    color: #B41D24;
}

#about-list .about-info p {
    font-size: 16px;
    line-height: 24px;
}

#about-list .about-info.about-info-history h2 {
    color: black;
}

#about-list .about-info.about-info-history h2 .big {
    font-size: 48px;
    color: #B41D24;
    line-height: 79px;
    font-weight: bold;
}

#about-list .about-info ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#about-list .about-info ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#about-list .about-info ul li a {
    font-size: 21px;
    line-height: 27px;
    color: #000000;
    line-height: 38px;
}

#about-list .about-info ul li a:hover {
    color: #B41D24;
}

.header-background {
    position: relative;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.header-background:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.header-background .header-menu {
    position: relative;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.76);
}

.header-background .header-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

.header-background .header-menu ul li {
    display: inline-block;
    line-height: 54px;
    padding: 0px 15px;
}

.header-background .header-menu ul li a {
    display: block;
    font-size: 16px;
    line-height: 43px;
    text-transform: uppercase;
    color: black;
}

.header-background .header-menu ul li.active {
    border-bottom: 2px solid #B41D24;
}

.header-background .header-menu ul li.active a {
    color: #B41D24;
}

.header-background .header-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding-bottom: 50px;
    width: 90%;
}

.header-background .header-inner h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: normal;
    display: block;
    text-align: center;
}

.header-background .header-inner p {
    font-size: 19px;
    font-weight: normal;
    line-height: 25px;
    color: #ffffff;
    display: block;
    text-align: center;
}

.header-background .header-inner::after {
    content: "";
    width: 36px;
    height: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-image: url('../images/arrow-down.png');
    background-size: 36px 21px;
    background-repeat: no-repeat;
    display: block;
}

#mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-image: url('../images/mobile-menu-background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#mobile-menu #mobile-menu-color {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

#mobile-menu #mobile-menu-color #mobile-title {
    height: 90px;
    line-height: 78px;
    background-color: white;
    padding: 0px 15px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9999;
    border-top: 8px solid #B41D24;
}

#mobile-menu #mobile-menu-color #mobile-title #mobile-close {
    width: 33px;
    height: 33px;
    display: inline-block;
    background-image: url('../images/close-menu.png');
    background-size: 33px 33px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

#mobile-menu #mobile-menu-color #mobile-title span {
    display: inline-block;
    font-size: 28px;
    /* font-family: 'Roboto Condensed', sans-serif; */
    color: #655E5E;
    text-transform: uppercase;
    vertical-align: middle;
    margin: 0px 0px 0px 15px;
}

#mobile-menu #mobile-menu-color #mobile-body {
    margin-top: 90px;
}

#mobile-menu #mobile-menu-color #mobile-body ul {
    display: block;
    margin: 30px 0px;
    padding: 0;
    list-style-type: none;
}

#mobile-menu #mobile-menu-color #mobile-body ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#mobile-menu #mobile-menu-color #mobile-body ul li a {
    display: block;
    line-height: 65px;
    height: 65px;
    font-size: 28px;
    color: white;
    text-indent: 40px;
    text-transform: uppercase;
    padding: 0px 15px;
    position: relative;
}

#mobile-menu #mobile-menu-color #mobile-body ul li a::after {
    content: "";
    display: block;
    width: 14px;
    height: 25px;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../images/menu-arrow.png');
    background-size: 14px 25px;
    background-repeat: no-repeat;
    background-position: center center;
}

#mobile-menu #mobile-menu-color #mobile-body ul li.active a {
    background-color: rgba(180, 29, 36, 0.66);
}

#mobile-menu #mobile-menu-color #mobile-footer {
    border-top: 1px solid white;
    margin: 0px 15px;
}

#mobile-menu #mobile-menu-color #mobile-footer p {
    color: white;
    font-size: 20px;
    display: block;
    margin: 15px 40px;
}

body.opened #mobile-menu {
    display: block;
}

a:hover {
    text-decoration: none;
}

a img {
    border: 0;
}

#mobile-header-top {
    display: none;
}

.active-item {
    color: #B41D24;
}

.active-item:after {
    content: "";
    display: block;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #B41D24;
}

#header #header-top {
    background-color: #B41D24;
    color: #ffffff;
}

#header #header-top #nav-links a {
    color: #ffffff;
    display: inline-block;
    margin-right: 20px;
    line-height: 38px;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#header #header-middle {
    padding-top: 10px;
    padding-bottom: 10px;
}

#header #header-middle .menu-opener {
    width: 38px;
    height: 64px;
    background-image: url('../images/menu.png');
    background-size: 38px 36px;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
}

#header #header-middle #logo {
    width: 430px;
    height: 78px;
    display: inline-block;
}

#header #header-middle #main-navigation {
    display: inline-block;
    float: right;
}

#header #header-middle #main-navigation a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 78px;
    display: inline-block;
    padding: 0px 15px;
    font-weight: 400;
    position: relative;
    /* font-family: 'Roboto Condensed', sans-serif; */
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#header #header-middle #main-navigation a.active {
    color: #B41D24;
}

#header #header-middle #main-navigation a.active:after {
    content: "";
    display: block;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #B41D24;
}

#header #header-bottom {
    margin-bottom: 50px;
    position: relative;
}

#header #header-bottom .header-item {
    background-size: cover;
    height: 360px;
    position: relative;
}

#header #header-bottom .header-item .header-box {
    max-width: 550px;
    position: absolute;
    top: 50px;
    right: 30px;
}

#header #header-bottom .header-item .header-box .header-box-top {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
}

#header #header-bottom .header-item .header-box .header-box-top h1 {
    font-size: 65px;
    color: white;
    margin: 0;
    padding: 0;
}

#header #header-bottom .header-item .header-box .header-box-top p {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 19px;
}

#header #header-bottom .header-item .header-box .header-box-bottom a {
    background-color: #B41D24;
    display: block;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#header #header-bottom .header-item .header-box .header-box-bottom a>span {
    display: inline-block;
    line-height: 70px;
    background-image: url('../images/offer-arrow.png');
    background-size: 11px 19px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
}

#header #header-bottom #carousel-bottom-wrapper {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 9999;
}

#header #header-bottom #carousel-bottom-wrapper:after {
    content: "";
    display: block;
    clear: both;
}

#header #header-bottom #carousel-buttons {
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.14);
}

#header #header-bottom #carousel-buttons .carousel-button {
    display: block;
    width: 20%;
    float: left;
    min-height: 195px;
    box-sizing: border-box;
    padding: 20px 15px;
    color: #2F2F2F;
    -webkit-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

#header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-5-items {
    width: 20%;
}

#header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-4-items {
    width: 25%;
}

#header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-3-items {
    width: 33.33%;
}

#header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-2-items {
    width: 50%;
}

#header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-1-items {
    width: 100%;
}

#header #header-bottom #carousel-buttons .carousel-button:not(:last-child) {
    border-right: 1px solid #979797;
}

#header #header-bottom #carousel-buttons .carousel-button.active {
    background-color: #B41D24;
}

#header #header-bottom #carousel-buttons .carousel-button.active h2 {
    color: #ffffff;
}


/*
#header #header-bottom #carousel-buttons .carousel-button.active.header-1n:before {
  background-image: url('../images/header-icon1-white.png');
}
#header #header-bottom #carousel-buttons .carousel-button.active.header-2n:before {
  background-image: url('../images/header-icon2-white.png');
}
#header #header-bottom #carousel-buttons .carousel-button.active.header-3n:before {
  background-image: url('../images/header-icon3-white.png');
}
#header #header-bottom #carousel-buttons .carousel-button.active.header-4n:before {
  background-image: url('../images/header-icon4-white.png');
}
#header #header-bottom #carousel-buttons .carousel-button.active.header-5n:before {
  background-image: url('../images/header-icon5-white.png');
}
*/

#header #header-bottom #carousel-buttons .carousel-button span.icon {
    content: "";
    width: 90px;
    height: 90px;
    display: block;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}

#header #header-bottom #carousel-buttons .carousel-button h2 {
    margin: 0;
    padding: 0;
    font-size: 13px;
    text-transform: uppercase;
}


/*
#header #header-bottom #carousel-buttons .carousel-button.header-1n:before {
  width: 78px;
  height: 90px;
  background-size: 78px 54px;
  background-image: url('../images/header-icon1.png');
}
#header #header-bottom #carousel-buttons .carousel-button.header-2n:before {
  width: 73px;
  height: 90px;
  background-size: 73px 63px;
  background-image: url('../images/header-icon2.png');
}
#header #header-bottom #carousel-buttons .carousel-button.header-3n:before {
  width: 72px;
  height: 90px;
  background-size: 72px 56px;
  background-image: url('../images/header-icon3.png');
}
#header #header-bottom #carousel-buttons .carousel-button.header-4n:before {
  width: 76px;
  height: 90px;
  background-size: 76px 76px;
  background-image: url('../images/header-icon4.png');
}
#header #header-bottom #carousel-buttons .carousel-button.header-5n:before {
  width: 83px;
  height: 90px;
  background-size: 83px 66px;
  background-image: url('../images/header-icon5.png');
}
*/

#header #header-bottom #carousel-buttons.carousel-buttons-small .carousel-button {
    min-height: 187px;
}

#header #header-bottom #carousel-buttons.carousel-buttons-small .carousel-button:before {
    width: 40px;
    height: 40px;
    background-size: contain;
}

#header #header-bottom #carousel-buttons.carousel-buttons-small .carousel-button h2 {
    font-size: 15px;
    margin-top: 10px;
}

#careers-list {
    margin: 60px 0px;
}

#careers-list h1 {
    font-size: 52px;
    color: #B41D24;
    line-height: 69px;
    display: block;
    text-align: center;
}

#careers-list p.main {
    display: block;
    text-align: center;
    font-size: 19px;
    line-height: 25px;
    color: #000000;
}

#careers-list .career-item {
    -webkit-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

#careers-list .career-item .image {
    height: 480px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
}

#careers-list .career-item .info {
    padding: 15px 30px;
}

#careers-list .career-item .info h2 {
    font-size: 32px;
    color: #B41D24;
    line-height: 35px;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

#careers-list .career-item .info p {
    color: #000000;
    font-size: 19px;
    line-height: 26px;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

#careers-list .career-item .info a {
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

#careers-list .career-item:hover {
    background-color: #B41D24;
}

#careers-list .career-item:hover .info h2 {
    color: #ffffff;
}

#careers-list .career-item:hover .info p {
    color: #ffffff;
}

#careers-list .career-item:hover .info a {
    color: #ffffff;
}

#homepage-about {
    margin-top: 140px;
}

#homepage-about.careers-about {
    margin-top: 40px;
}

#homepage-about h1 {
    font-size: 32px;
    color: #B41D24;
}

#homepage-about h2 {
    font-size: 24px;
    color: #B41D24;
}

#homepage-about .text {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}

#homepage-about .text .view-more {
    color: #B41D24;
    font-size: 15px;
    line-height: 19px;
    display: inline-block;
    font-weight: bold;
    /* font-family: 'Roboto', sans-serif; */
}

#homepage-about #about-texts {
    background-color: rgba(216, 216, 216, 0.27);
    padding: 30px 20px;
    overflow: hidden;
}

@media only screen and (min-width: 1580px) {
    #homepage-about #about-texts .left {
        width: 55%;
        float: left;
    }
}

#homepage-about #about-texts .left ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#homepage-about #about-texts .left ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#homepage-about #about-texts .left ul li a {
    font-size: 19px;
    color: #000000;
    display: block;
    line-height: 30px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#homepage-about #about-texts .right {
    margin-top: 30px;
}

@media only screen and (min-width: 1580px) {
    #homepage-about #about-texts .right {
        width: 40%;
        float: right;
        margin-top: 0;
    }
}

#homepage-about #about-texts .right p {
    font-size: 19px;
    color: #000000;
    line-height: 24px;
    margin: 0;
    padding: 0;
}

#homepage-lastyear {
    min-height: 495px;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 30px 0px;
}

#homepage-lastyear h1 {
    font-size: 52px;
    color: white;
    display: block;
    text-align: center;
    font-weight: normal;
    margin: 60px 0px 60px 0px;
}

#homepage-lastyear h2 {
    font-size: 32px;
    text-align: center;
    line-height: 43px;
    color: #ffffff;
}

#homepage-lastyear h3 {
    font-size: 48px;
    line-height: 63px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
}

#homepage-lastyear h3 small {
    font-size: 32px;
}

#online-portal {
    height: 792px;
    background-image: url('../images/background2.png');
    background-size: cover;
    position: relative;
}

#online-portal .box {
    max-width: 550px;
    position: absolute;
    top: 50px;
    right: 30px;
}

#online-portal .box .box-top {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
}

#online-portal .box .box-top h1 {
    font-size: 52px;
    color: white;
    margin: 0;
    padding: 0;
}

#online-portal .box .box-top p {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 19px;
}

#online-portal .box .box-top ul {
    display: block;
    list-style-type: none;
    margin: 30px 0px;
    padding: 0;
}

#online-portal .box .box-top ul li {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: white;
    font-size: 19px;
    line-height: 44px;
    position: relative;
    padding-left: 30px;
}

#online-portal .box .box-top ul li:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #B41D24;
}

#online-portal .box .box-bottom a {
    background-color: #B41D24;
    display: block;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: bold;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#online-portal .box .box-bottom a span {
    display: inline-block;
    line-height: 70px;
    background-image: url('../images/offer-arrow.png');
    background-size: 11px 19px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
}

#homepage-news #single-news h1 {
    font-size: 32px;
    color: #B41D24;
    line-height: 34px;
    text-align: left;
    margin-bottom: 30px;
}

#homepage-news #single-news p {
    font-size: 19px;
    line-height: 32px;
}

#homepage-news {
    margin: 30px 0px;
}

#homepage-news h1 {
    font-size: 52px;
    line-height: 69px;
    display: block;
    text-align: left;
    color: #B41D24;
}

#homepage-news .big-news p {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin: 20px 0px;
    padding: 0;
}

#homepage-news .view-more {
    color: #B41D24;
    font-size: 15px;
    line-height: 19px;
    display: inline-block;
    font-weight: bold;
    /* font-family: 'Roboto', sans-serif; */
}

#homepage-news h2 {
    margin: 15px 0px 15px 0px;
}

#homepage-news h2 a {
    font-size: 24px;
    color: #B41D24;
    line-height: 32px;
    display: block;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#homepage-news a.image-link img {
    width: 100%;
    height: auto;
}

#footer {
    padding: 60px 0px 30px 0px;
}

#footer #info-left {
    border-right: 1px solid #979797;
}

#footer #info-left h1 {
    font-size: 24px;
    line-height: 31px;
    color: #000000;
}

#footer #info-left p {
    font-size: 19px;
    color: black;
    line-height: 37px;
    margin: 0;
    padding: 0;
}

#footer #info-left .info-group {
    margin-bottom: 20px;
}

#footer #info-left .social {
    margin: 0px 0px 20px 0px;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    display: block;
}

#footer #info-left .social li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: block;
    float: left;
    margin-right: 15px;
}

#footer #info-left .social li a {
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid #000000;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#footer #info-left .social li a.facebook {
    background-size: 10px 22px;
    background-image: url('../images/facebook-icon.png');
}

#footer #info-left .social li a.skype {
    background-size: 21px 21px;
    background-image: url('../images/skype-icon.png');
}

#footer #info-left .social li a.linkedin {
    background-size: 21px 21px;
    background-image: url('../images/linkedin-icon.png');
}

#footer #links-right h2 {
    font-size: 19px;
    color: #000000;
    line-height: 26px;
    margin-bottom: 20px;
}

#footer #links-right ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#footer #links-right ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#footer #links-right ul li a {
    font-size: 19px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#footer .copy {
    display: block;
    text-align: right;
}

#header #header-middle #main-navigation a:after {
    content: "";
    display: block;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: transparent;
}

@media (hover: hover) {
    #header #header-top #nav-links a:hover {
        text-decoration: none;
    }
    #header #header-top #nav-links a:hover:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2px;
        height: 2px;
        background: rgba(255, 255, 255, 0.9);
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    #header #header-middle #main-navigation a:hover {
        color: #B41D24;
    }
    #header #header-middle #main-navigation a:hover:after {
        content: "";
        display: block;
        right: 0;
        left: 0;
        bottom: 0;
        height: 2px;
        background-color: #B41D24;
    }
    #header #header-bottom .header-item .header-box .header-box-bottom a:hover {
        background-color: #5c0f12;
    }
    #online-portal .box .box-bottom a:hover {
        background-color: #5c0f12;
    }
    #header #header-bottom #carousel-buttons .carousel-button:not(.active):hover {
        text-decoration: none;
        background-color: rgba(200, 200, 200, 0.2);
    }
    #homepage-about #about-texts .left ul li a:hover {
        color: #B41D24;
    }
    #homepage-news h2 a:hover {
        color: #000000;
    }
    #footer #links-right ul li a:hover {
        color: #B41D24;
    }
    #footer #info-left .social li a:hover {
        background-color: rgba(220, 220, 220, 0.8);
    }
}

@media only screen and (min-width: 2900px) {
    .header-background .header-inner h1 {
        max-width: 1900px;
        margin: 0 auto;
    }
    .regular-button span {
        font-size: 26px;
        line-height: 80px;
        text-transform: lowercase;
    }
    #footer #links-right h2 {
        font-size: 27px;
    }
    #header #header-middle #main-navigation a {
        font-size: 19px;
        padding: 0px 25px;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        font-size: 21px;
    }
    .header-background {
        height: 850px;
    }
    .header-background .header-inner h1 {
        font-size: 64px;
        line-height: 64px;
    }
    .header-background .header-inner p {
        font-size: 27px;
        line-height: 27px;
        max-width: 1900px;
        margin: 30px auto;
    }
    #footer #info-left h1 {
        font-size: 27px;
    }
}

@media only screen and (min-width: 2400px) and (max-width: 2899px) {
    .header-background .header-inner h1 {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 1700px) and (max-width: 2399px) {
    .header-background .header-inner h1 {
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1450px) {
    #logo-column {
        width: 300px;
    }
    #navigation-column {
        width: calc(100% - 315px);
    }
    #logo-link {
        display: block;
        line-height: 80px;
    }
    #header #header-middle #logo {
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 1280px) {
    #header #header-middle #logo {
        width: 260px;
        height: auto;
        display: block;
        margin: 15px auto;
    }
    #navigation-column {
        display: none;
    }
    #logo-column {
        width: 50%;
    }
    #menu-column {
        display: block;
        width: 25%;
        float: left;
    }
    #header #header-top {
        display: none;
    }
    #mobile-header-top {
        display: block;
        height: 8px;
        background-color: #B41D24;
    }
    #language-column {
        display: block;
        width: 25%;
        float: right;
        line-height: 80px;
        margin-top: 11px;
    }
    #language-column .ui-select {
        float: right;
        width: 80px;
        display: block;
    }
    #language-column .ui-select .ui-selectbox {
        border: none;
    }
    #language-column .ui-select .ui-selectbox .text {
        text-transform: uppercase;
    }
    #language-column .ui-select .ui-selectbox .arrow {
        background-image: url('../images/select-arrow-black.png');
    }
}

@media only screen and (max-width: 1200px) {
    #homepage-news h2 a {
        font-size: 23px;
        line-height: 26px;
    }
    #about-list h2.roads-title .bigger {
        font-size: 40px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 1080px) {
    #personnel-wrapper .person .info p span {
        margin-left: 0px;
    }
}

@media only screen and (max-width: 1024px) {
    #downloads-list .download-wrapper .download-color .download-left h1 {
        padding-left: 15px;
    }
    #downloads-list .download-wrapper .download-color .download-center,
    #downloads-list .download-wrapper .download-color .download-right,
    #downloads-list .download-wrapper .download-color .download-left {
        width: 100%;
    }
    #downloads-list .download-wrapper .download-color .download-right .download-view-more span.more {
        width: auto;
    }
    #downloads-list .download-wrapper .download-color .download-right {
        text-align: center;
    }
    #downloads-list .download-wrapper .download-color .download-right .download-view-more span.less,
    #downloads-list .download-wrapper .download-color .download-right .download-view-more span.more,
    #downloads-list .download-wrapper .download-color .download-right .download-view-more:after {
        vertical-align: middle;
    }
    #homepage-news .news-item {
        margin-bottom: 30px;
    }
    #header #header-middle #main-navigation {
        display: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        font-size: 14px;
    }
    #homepage-lastyear {
        padding-bottom: 60px;
        height: auto;
    }
    #homepage-news h2 a {
        font-size: 24px;
        line-height: 27px;
    }
    #header #header-bottom .header-item .header-box .header-box-top h1 {
        font-size: 35px;
    }
    #header #header-bottom .header-item .header-box .header-box-top p {
        font-size: 15px;
        margin: 30px 0px;
    }
    #about-texts {
        margin: 30px 0px;
    }
    #homepage-lastyear h1 {
        font-size: 34px;
    }
    #homepage-lastyear h2 {
        font-size: 26px;
    }
    #homepage-lastyear h2 {
        font-size: 21px;
        line-height: 24px;
    }
    #homepage-lastyear h3 {
        font-size: 37px;
        line-height: 42px;
    }
    #homepage-about h1,
    #homepage-news h1 {
        font-size: 36px;
        line-height: 52px;
    }
    #homepage-about #about-texts .left ul li a,
    #homepage-about .text,
    #homepage-news .big-news p {
        font-size: 16px;
        line-height: 24px;
    }
    #homepage-about #about-texts .right p {
        font-size: 18px;
        line-height: 21px;
    }
    #online-portal,
    #header #header-bottom .header-item {
        height: 550px;
    }
    #footer #info-left {
        border-right: 0;
        margin-bottom: 30px;
    }
    #footer #links-right h2 {
        font-size: 24px;
    }
    #footer #links-right ul li a {
        font-size: 16px;
        line-height: 20px;
    }
    #footer .copy {
        margin-top: 30px;
        font-size: 16px;
        font-weight: normal;
    }
    #footer #info-left .info-wrap {
        overflow: hidden;
    }
    #footer #info-left .info-group {
        width: 50%;
        float: left;
    }
    #header #header-bottom #carousel-buttons .carousel-button:before {
        margin: 0 auto;
        background-position: center center;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    #careers-list .career-item {
        background-color: #B41D24;
    }
    #careers-list .career-item .info a,
    #careers-list .career-item .info p,
    #careers-list .career-item .info h2 {
        color: white;
    }
    .news-button {
        margin: 0px 0px;
    }
    .header-background {
        height: 450px;
    }
    #downloads-list .download-wrapper .download-color .download-left h1 {
        text-align: center;
    }
    /*
    .history-slider {
        display: none;
    }
*/
    .header-background .header-inner h1 {
        line-height: 60px;
    }
    #links-right {
        border-top: 1px solid #b4b4b4;
        border-bottom: 1px solid #b4b4b4;
        padding-bottom: 30px;
    }
    #footer .copy {
        text-align: left;
    }
    #about-list .about-info.about-text-no-padding-top {
        padding: 0px 0px 15px 0px;
    }
    #park-list .park-info #services-list .service-info,
    #about-list .about-info {
        padding: 30px 0px;
    }
    #about-list h2.roads-title .bigger {
        font-weight: bold;
    }
    #about-list h2.roads-title {
        line-height: 40px;
    }
    #about-list .about-info.about-gray {
        background-color: rgba(216, 216, 216, 0.27);
        padding: 15px 15px 30px 15px;
        margin-bottom: 30px;
    }
    #about-list .about-info.about-gray ul {
        overflow: hidden;
    }
    #about-list .about-info.about-gray ul li {
        display: block;
    }
    #about-list .about-info.about-gray ul li:nth-child(odd) {
        width: 48%;
        float: left;
    }
    #about-list .about-info.about-gray ul li:nth-child(even) {
        width: 48%;
        float: right;
    }
    #downloads-list .download-info.download-gray {
        background-color: rgba(216, 216, 216, 0.27);
        padding: 15px 15px 30px 15px;
        margin-bottom: 30px;
    }
    .header-background .header-menu {
        display: none;
    }
    .header-background #contact-menu {
        display: block;
    }
    #personnel-wrapper h1,
    #contact-form h1 {
        font-size: 42px;
        line-height: 42px;
    }
    #personnel-wrapper .person .info p span {
        margin-left: 0;
    }
    .header-background .header-menu ul li {
        display: block;
    }
    .contact-box .contact-group p {
        font-size: 24px;
    }
    .contact-box .contact-group p.big {
        font-size: 29px;
    }
    #contact-form .form-wrap .form-right,
    #contact-form .form-wrap .form-left {
        width: 100%;
        float: none;
        padding: 15px 0px;
    }
    #contact-form .form-wrap {
        padding: 0px 0px;
    }
    #footer #links-right h2 {
        margin-top: 30px;
    }
    #logo-link {
        max-width: 100%;
        margin: 0 auto;
    }
    #header #header-middle #logo {
        max-width: 100%;
        height: auto;
    }
    #homepage-lastyear h2 {
        max-width: 350px;
        margin: 0 auto;
    }
    #homepage-lastyear h3 {
        margin-bottom: 60px;
    }
    #header #header-bottom #carousel-buttons .carousel-button:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }
    #header #header-bottom #carousel-buttons .carousel-button {
        border-right: none;
    }
    /*
    #mobile-header-top {
        display: block;
        height: 8px;
        background-color: @dark-red;
    }
*/
    #logo-link {
        display: block;
    }
    #header #header-bottom #carousel-bottom-wrapper .container {
        max-width: 98%;
    }
    #header #header-bottom #carousel-buttons {
        display: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        font-size: 15px;
    }
    #header #header-bottom #carousel-buttons .carousel-button {
        width: 100%;
        float: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-5-items {
        width: 100%;
        float: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-4-items {
        width: 100%;
        float: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-3-items {
        width: 100%;
        float: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-2-items {
        width: 100%;
        float: none;
    }
    #header #header-bottom #carousel-buttons .carousel-button.carousel-buttons-1-items {
        width: 100%;
        float: none;
    }
    #homepage-about #about-texts .left,
    #homepage-about #about-texts .right {
        float: none;
        width: auto;
    }
    #homepage-about #about-texts .right {
        margin-top: 60px;
    }
    #header #header-bottom #carousel-buttons .carousel-button {
        position: relative;
        min-height: auto;
    }
    #header #header-bottom #carousel-buttons .carousel-button::before {
        position: absolute;
        left: 10px;
        top: 10px;
        bottom: 10px;
        width: 90px !important;
        height: auto !important;
        background-size: contain !important;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        text-align: left;
        text-indent: 100px;
    }
    #online-portal,
    #header #header-bottom .header-item {
        height: 700px;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        font-size: 21px;
    }
    #header #header-bottom .header-item .header-box {
        left: 18px;
        right: 18px;
        top: 18px;
        max-width: none;
    }
    #header #header-bottom .header-item {
        height: 670px;
    }
    .header-background .header-inner h1 {
        font-size: 42px;
        line-height: 42px;
    }
    #services-list .service-info h2,
    #services-list .service-info h1 {
        font-size: 32px;
        line-height: 32px;
    }
    #services-list .service-info p {
        font-size: 22px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 560px) {
    #menu-column {
        width: 15%;
    }
    #logo-column {
        width: 60%;
    }
    #language-column {
        width: 25%;
    }
    #careers-list .career-item .image {
        height: 300px;
    }
    #careers-list .career-item .info h2,
    #careers-list h1,
    #homepage-about h1,
    #homepage-news h1 {
        font-size: 32px;
        line-height: 32px;
    }
    #about-list .about-info h1 {
        font-size: 42px;
        line-height: 42px;
    }
    #about-list .about-info.about-gray ul li:nth-child(odd),
    #about-list .about-info.about-gray ul li:nth-child(even) {
        float: none;
        width: 100%;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        font-size: 15px;
    }
    #online-portal .box {
        top: 15px;
        left: 15px;
        bottom: 15px;
        right: 15px;
    }
    #header #header-bottom #carousel-buttons .carousel-button::before {
        top: 15px;
        left: 15px;
        bottom: 15px;
    }
    #header #header-bottom .header-item .header-box .header-box-top p {
        margin: 10px 0px;
    }
    #online-portal .box .box-top h1 {
        font-size: 45px;
    }
    #online-portal .box .box-top ul li {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    #online-portal .box .box-top ul li:before {
        top: 4px;
        transform: none;
    }
    #footer .copy {
        text-align: left;
    }
    #footer #info-left .info-group {
        width: 100%;
        float: none;
    }
    #footer #info-left .social {
        margin: 20px 0px 20px 0px;
    }
    #homepage-lastyear h1 {
        max-width: 70%;
        margin: 40px auto;
    }
    #homepage-lastyear {
        padding-bottom: 0px;
    }
    #mobile-menu #mobile-menu-color #mobile-body ul li a {
        font-size: 24px;
    }
}

@media only screen and (max-width: 420px) {
    #header #header-middle .menu-opener {
        width: 36px;
        background-size: contain;
    }
    #header #header-bottom #carousel-buttons .carousel-button h2 {
        text-indent: 60px;
        font-size: 13px;
    }
    #header #header-bottom #carousel-buttons .carousel-button::before {
        width: 53px !important;
    }
    .header-background .header-inner h1 {
        font-size: 42px;
        line-height: 42px;
    }
    #about-list h2.roads-title .bigger {
        font-size: 45px;
        line-height: 45px;
    }
    #footer .copy {
        margin-top: 30px;
    }
    #park-list .park-info p,
    #careers-list .career-item .info p,
    #downloads-list .download-info p,
    #about-list .about-info p {
        font-size: 16px;
        line-height: 29px;
    }
    #about-list h2.roads-title {
        font-size: 30px;
        line-height: 30px;
    }
    .header-background .header-menu ul li a {
        font-size: 18px;
    }
    #personnel-wrapper h1,
    #contact-form h1 {
        font-size: 32px;
        line-height: 36px;
    }
    #contact-map-inner {
        height: 400px;
    }
    #downloads-list .download-wrapper .download-color .download-center a span {
        font-size: 18px;
    }
    #downloads-list .download-wrapper .download-color .download-left h1 {
        font-size: 32px;
        line-height: 40px;
    }
    #downloads-list .download-wrapper .download-color .download-center a {
        margin: 0px 0px 10px 0px;
    }
    #park-list .park-info h1,
    #downloads-list .download-info h1 {
        font-size: 42px;
        line-height: 42px;
    }
    #downloads-list .download-info {
        padding: 30px 0px;
    }
    .header-background .header-inner h1 {
        font-size: 32px;
        line-height: 32px;
    }
    #menu-column {
        width: 15%;
    }
    #language-column {
        width: 20%;
    }
    #logo-column {
        width: 60%;
    }
}


/** ui select **/

.ui-select {
    position: relative;
}

.ui-select select {
    /*   visibility: hidden; */
}

.ui-select .ui-selectwrap {
    position: relative;
    overflow: hidden;
    height: 0px;
    line-height: 0px;
}

.ui-select .ui-selectwrap select {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
}

.ui-select .ui-selectbox {
    height: 38px;
    border: 1px solid #979797;
    display: block;
    position: relative;
    color: black;
    cursor: default;
}

.ui-select .ui-selectbox .arrow {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 37px;
    height: 38px;
    background-image: url('../images/select-arrow.png');
    background-size: 19px 11px;
    background-repeat: no-repeat;
    background-position: center center;
}

.ui-select .ui-selectbox .text {
    font-size: 16px;
    line-height: 38px;
    padding: 0px 10px;
}

.ui-select .ui-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /*
  border-left: 1px solid #979797;
  border-right: 1px solid #979797;
  border-bottom: 1px solid #979797;
*/
    z-index: 9999;
    background-color: white;
}

.ui-select.open .ui-dropdown {
    display: block;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}

.ui-select .ui-dropdown>ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.ui-select .ui-dropdown>ul>li {
    display: block;
}

.ui-select .ui-dropdown>ul>li>a {
    display: block;
    font-size: 18px;
    line-height: 45px;
    padding: 0px 10px;
    color: black;
    transition: all 0.2s ease;
    cursor: default;
}

.ui-select.ui-select-medium .ui-selectbox {
    height: 50px;
}

.ui-select.ui-select-medium .ui-selectbox .text {
    line-height: 50px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.ui-select.ui-select-medium .ui-dropdown>ul>li>a {
    font-size: 14px;
    line-height: 50px;
}

.ui-select.ui-select-small .ui-selectbox {
    height: 40px;
}

.ui-select .ui-dropdown>ul>li:hover {
    background-color: #B41D24;
}

.ui-select .ui-dropdown>ul>li:hover a {
    color: white;
}

.ui-select .ui-dropdown>ul>li a {
    text-transform: uppercase;
}

#language-select {
    width: 160px;
    float: right;
}

#language-select .ui-selectbox {
    border: none;
}

#language-select .ui-selectbox .text {
    color: white;
    text-transform: uppercase;
}

#news-select {
    margin-top: 15px;
    width: 250px;
    float: right;
}

#news-select .ui-selectbox {
    height: 50px;
}

#news-select .ui-selectbox .text {
    line-height: 50px;
    font-size: 21px;
    text-transform: uppercase;
    color: #464646;
}

#news-select .ui-selectbox .arrow {
    background-image: url('../images/select-arrow-black.png');
}

@media only screen and (max-width: 576px) {
    #news-select {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
}

#homepage-news .view-more:hover {
    color: black;
}

#contact-form-alert p {
    margin: 0;
}

#page-not-found {
    padding: 60px 0;
}

#page-not-found h1 {
    display: block;
    font-size: 52px;
    font-weight: normal;
}

#page-not-found img {
    max-height: 160px;
    margin-top: 40px;
    opacity: 0.9;
}