/*******************************************************************************************************************/
/* Allgemein */

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    padding-bottom: 50px;
}

/* Masonry and Cards */
/* ---- button ---- */

.button {
    display: inline-block;
    padding: 0.5em 1.0em;
    background: #EEE;
    border: none;
    border-radius: 7px;
    background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2) );
    color: #222;
    font-family: sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.button:hover {
    background-color: #8CF;
    color: #222;
}

.button:active,
.button.is-checked {
    background-color: #28F;
}

.button.is-checked {
    color: white;
}

.button:active {
    box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group {
    margin-bottom: 20px;
}

.button-group:after {
    content: '';
    display: block;
    clear: both;
}

.button-group .button {
    float: left;
    border-radius: 0;
    margin-left: 0;
    margin-right: 1px;
}

.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }

/* ---- grid ---- */

.grid {
    border: 0px solid #333;
}

/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .element-item ---- */

.grid-item {
    position: relative;
    float: left;
    width: 100px;
    height: 100px;
    margin: 5px;
    /*padding: 10px;
    background: red;
    color: white;
    font-size: 50px;*/
}

.grid-item--width2 { width: 210px; }
.grid-item--height2 { height: 210px; }

.grid-item:nth-child(10n+0) { background: hsl(   0, 100%, 50%); }
.grid-item:nth-child(10n+1) { background: hsl(  36, 100%, 50%); }
.grid-item:nth-child(10n+2) { background: hsl(  72, 100%, 50%); }
.grid-item:nth-child(10n+3) { background: hsl( 108, 100%, 50%); }
.grid-item:nth-child(10n+4) { background: hsl( 144, 100%, 50%); }
.grid-item:nth-child(10n+5) { background: hsl( 180, 100%, 50%); }
.grid-item:nth-child(10n+6) { background: hsl( 216, 100%, 50%); }
.grid-item:nth-child(10n+7) { background: hsl( 252, 100%, 50%); }
.grid-item:nth-child(10n+8) { background: hsl( 288, 100%, 50%); }
.grid-item:nth-child(10n+9) { background: hsl( 324, 100%, 50%); }


/* === card component ======
 * Variation of the panel component
 * version 2018.10.30
 * https://codepen.io/jstneg/pen/EVKYZj
 */
.card{ background-color: #fff; border: 1px solid transparent; border-radius: 6px; }
.card > .card-link{ color: #333; }
.card > .card-link:hover{  text-decoration: none; }
.card > .card-link .card-img img{ border-radius: 6px 6px 0 0; }
.card .card-img{ position: relative; padding: 0; display: table; }
.card .card-img .card-caption{
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
}
.card .card-body{ display: table; width: 100%; padding: 12px; }
.card .card-header{ border-radius: 6px 6px 0 0; padding: 8px; }
.card .card-footer{ border-radius: 0 0 6px 6px; padding: 8px; }
.card .card-left{ position: relative; float: left; padding: 0 0 8px 0; }
.card .card-right{ position: relative; float: left; padding: 8px 0 0 0; }
.card .card-body h1:first-child,
.card .card-body h2:first-child,
.card .card-body h3:first-child,
.card .card-body h4:first-child,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4{ margin-top: 0; }
.card .card-body .heading{ display: block;  }
.card .card-body .heading:last-child{ margin-bottom: 0; }

.card .card-body .lead{ text-align: center; }

@media( min-width: 768px ){
    .card .card-left{ float: left; padding: 0 8px 0 0; }
    .card .card-right{ float: left; padding: 0 0 0 8px; }

    .card .card-4-8 .card-left{ width: 33.33333333%; }
    .card .card-4-8 .card-right{ width: 66.66666667%; }

    .card .card-5-7 .card-left{ width: 41.66666667%; }
    .card .card-5-7 .card-right{ width: 58.33333333%; }

    .card .card-6-6 .card-left{ width: 50%; }
    .card .card-6-6 .card-right{ width: 50%; }

    .card .card-7-5 .card-left{ width: 58.33333333%; }
    .card .card-7-5 .card-right{ width: 41.66666667%; }

    .card .card-8-4 .card-left{ width: 66.66666667%; }
    .card .card-8-4 .card-right{ width: 33.33333333%; }
}

/* -- default theme ------ */
.card-default{
    border-color: #ddd;
    background-color: #fff;
    margin-bottom: 24px;
}
.card-default > .card-header,
.card-default > .card-footer{ color: #333; background-color: #ddd; }
.card-default > .card-header{ border-bottom: 1px solid #ddd; padding: 8px; }
.card-default > .card-footer{ border-top: 1px solid #ddd; padding: 8px; }
.card-default > .card-body{  }
.card-default > .card-img:first-child img{ border-radius: 6px 6px 0 0; }
.card-default > .card-left{ padding-right: 4px; }
.card-default > .card-right{ padding-left: 4px; }
.card-default p:last-child{ margin-bottom: 0; }
.card-default .card-caption { color: #fff; text-align: center; text-transform: uppercase; }


/* -- price theme ------ */
.card-price{ border-color: #999; background-color: #ededed; margin-bottom: 24px; }
.card-price > .card-heading,
.card-price > .card-footer{ color: #333; background-color: #fdfdfd; }
.card-price > .card-heading{ border-bottom: 1px solid #ddd; padding: 8px; }
.card-price > .card-footer{ border-top: 1px solid #ddd; padding: 8px; }
.card-price > .card-img:first-child img{ border-radius: 6px 6px 0 0; }
.card-price > .card-left{ padding-right: 4px; }
.card-price > .card-right{ padding-left: 4px; }
.card-price .card-caption { color: #fff; text-align: center; text-transform: uppercase; }
.card-price p:last-child{ margin-bottom: 0; }

.card-price .price{
    text-align: center;
    color: #337ab7;
    font-size: 3em;
    text-transform: uppercase;
    line-height: 0.7em;
    margin: 24px 0 16px;
}
.card-price .price small{ font-size: 0.4em; color: #66a5da; }
.card-price .details{ list-style: none; margin-bottom: 24px; padding: 0 18px; }
.card-price .details li{ text-align: center; margin-bottom: 8px; }
.card-price .buy-now{ text-transform: uppercase; }
.card-price table .price{ font-size: 1.2em; font-weight: 700; text-align: left; }
.card-price table .note{ color: #666; font-size: 0.8em; }

/* Cookie Consient CSS */
.cc-revoke,
.cc-window {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    line-height: 1em;
}

.cc-btn {
    border-radius: 4px;
}
.cc-row {
    background: transparent !important;
    margin: 20px 0 20px 0;
}
.cc-window.cc-floating {
    max-width: 100%;
}

.home-page {
    margin-top: 0;
}

.wrapper {
    display: block;
}

#slogan {
    position: absolute;
    right: 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 99999;
    background: #333;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #a90000;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#dismiss:hover {
    background: #fff;
    color: #a90000;
}

.overlay {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #333;
}

#sidebar .sidebar-footer {
    padding-left: 20px;
    padding-top: 200px;
    width: 70%;
    color: #a90000;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px 10px 10px 25px;
    color: #ddd;
    font-size: 1.1em;
    display: block;
    font-weight: 700;
}
#sidebar ul li a:hover {
    color: #ddd;
    background: #444;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #ddd;
    background: #333;
}


#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\f107';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'FontAwesome';
    font-size: 1.0em;
}
#sidebar a[aria-expanded="true"]::before {
    content: '\f106';
}

#sidebar a.siteButton2 {
    padding-left: 60px !important;
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 40px !important;
    background: #444;
    font-weight: 100 !important;
    border-bottom: 1px solid #555;
}

.btn-sidebar {
    color: #fff;
    background-color: #999;
    border-color: #777;
}

a {
    color: #000;
}

a.hover {
    color: #a90000 !important;
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: inherit;
}

.img-responsive {
    margin-right: 10px;
}

.margin-top10 {
    margin-top: 10px;
}
.margin-right10 {
    margin-right: 10px;
}
.margin-bottom10 {
    margin-bottom: 10px;
}
.margin-left10 {
    margin-left: 10px;
}
.margin-top30 {
    margin-top: 30px;
}

.list-inline {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-left: -5px;
    padding-left: 0;
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

.text-right {
    text-align: right;
}

/*******************************************************************************************************************/
/*Header/Navigation -> Start*/

.main-header {
    background: #fff none repeat scroll 0 0;
    padding-top: 10px;
    position: relative;
    transform: translate3d(0px, 0px, 0px);
    z-index: 1040;
}

.main-header.sticked {
    background: #fff none repeat scroll 0 0;
    left: 0;
    padding-top: 10px;
    position: fixed;
    top: -125px;
    width: 100%;
    z-index: 90000;
}



/*******************************************************************************************************************/
/*Logo / Slogan*/
.ored_logo {
    margin-top: -28px;
    margin-left: -15px;
    width: 80px;
}

.slogan-identifier {
    color: #000;
    float: right;
    font-size: 24px;
    font-weight: 100;
    margin-right: 0px;
    margin-top: 35px;
    text-align: right;
}



/*******************************************************************************************************************/
/*Sprachwahl*/

.language_nav {
    font-size: 12px;
    margin-top: -5px;
}

.language_nav ul {
    margin-bottom: 0;
}

.language_nav ul > li {
    padding-left: 25px;
    padding-right: 0px;
}

.language_nav ul > li a {
    color: #808080;
}

.language_nav ul .language-selector span:nth-of-type(1) {
    padding-right: 7px;
}

.language_nav ul .language-selector span:nth-of-type(2) {
    border-left-color: #e6e6e6;
    border-left-style: solid;
    border-left-width: 1px;
    padding-left: 7px;
}

.language_nav .language-selector .dropdown-menu li a span::before {
    background: #e6e6e6 none repeat scroll 0 0;
    content: "";
    height: 26px;
    left: -10px;
    position: absolute;
    top: -5px;
    width: 1px;
}

.language_nav .language-selector .dropdown-menu li a span {
    margin-left: 20px;
    margin-right: -3px;
    position: relative;
}

.language_nav .language-selector .dropdown-menu {
    border-color: rgba(0, 0, 0, 0.15);
    border-left: 0 none -moz-use-text-color;
    border-right: 0 none -moz-use-text-color;
    box-shadow: none;
    left: auto;
    margin-top: 5px;
    min-width: 235px;
    padding: 0;
    right: 0;
}

.language_nav .language-selector .dropdown-menu li a {
    color: #808080;
    font-size: 12px;
    padding-bottom: 3px;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 3px;
    text-align: right;
}

.language_nav .language-selector .dropdown-menu li a span::before {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #e6e6e6;
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    content: "";
    height: 26px;
    left: -10px;
    position: absolute;
    top: -5px;
    width: 1px;
}



/*******************************************************************************************************************/
/*Suche*/

.form-control.wsearch {
    border-width: 0 0 1px 0;
    margin: 0 -10px 0 0;
    box-shadow: none;
    border-radius: 0;
    border-color: #333;
}

.form-control.wsearch:focus {
    border-width: 0 0 1px 0;
    border-color: #a90000;
    box-shadow: none;
    width: 600px;
}

.wsearch {
    background-color: #fff;
    right: 0;
    position: absolute;
}

.main-header .main_search_form {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #f8f8f8;
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    position: absolute;
    right: 0;
    transition-delay: 0s;
    transition-duration: 1s;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.32, 0, 0.32, 1);
    width: 210px;
}

.main-header .nav-search {
    border-bottom-color: #ccc;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin-top: 15px;
    padding: 0;
}

.main-header .nav-search input {
    -moz-border--colors: none;
    background-color: #f8f8f8;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    border-image-slice: 100% 100% 100% 100%;
    border-image-source: none;
    border-image-width: 1 1 1 1;
    border-color: -moz-use-text-color;
    border-style: none;
    border-width: medium;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 0;
    padding-top: 0;
}

.main-header .nav-search button {
    -moz-border-colors: none;
    background-attachment: scroll;
    background-clip: border-box;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    border-image-slice: 100% 100% 100% 100%;
    border-image-source: none;
    border-image-width: 1 1 1 1;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    border-color: -moz-use-text-color;
    border-style: none;
    border-width: medium;
    color: #4d4d4d;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 15px;
    width: 30px;
}
.nav-search {
    -moz-border-colors: none;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    border-image-slice: 100% 100% 100% 100%;
    border-image-source: none;
    border-image-width: 1 1 1 1;
    border-color: -moz-use-text-color;
    border-style: none;
    border-width: medium;
}



/*******************************************************************************************************************/
/*Dropdown-Menü*/
.dropdown-menu > li > a {
    clear: both;
    color: #333;
    display: block;
    font-weight: 100;
    line-height: 1.66667;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
    white-space: nowrap;
}

.dropdown-menu {
    -moz-border-colors: none;
    background-clip: padding-box;
    background-color: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    border-image-slice: 100% 100% 100% 100%;
    border-image-source: none;
    border-image-width: 1 1 1 1;
    border-left-color: rgba(0, 0, 0, 0.15);
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: rgba(0, 0, 0, 0.15);
    border-right-style: solid;
    border-right-width: 1px;
    border-top-color: rgba(0, 0, 0, 0.15);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-style: solid;
    border-top-width: 1px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    display: none;
    float: left;
    font-size: 14px;
    left: 0;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 2px;
    min-width: 160px;
    padding-bottom: 5px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000;
}

.nav > li > form > button {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav > li > form > button:hover,
.nav > li > form > button:focus {
    background-color: #eee;
}

.navbar {
    min-height: 70px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}

.navbar-default .navbar-nav > li > form > button {
    color: #333;
    border: none;
    background-color: transparent;
    font-weight: 700;
    font-size: 1.3em;
}
.navbar-default .navbar-nav>li>a {
    color: #333;
    font-weight: 700;
    font-size: 1.3em;
}
.navbar-nav {
    /* margin-left: -60px;
    transition: margin-left 1s; */
}

.navbar-brand {
    background: url(/android-chrome-512x512.png) center / contain no-repeat;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    width: 200px; /* no height needed ... image will resize automagically */
    height: 120px;
    margin-top: -30px;
}

.navbar-nav > li > form > button {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 20px;
}

.navbar-default .navbar-nav > li > form > button:hover,
.navbar-default .navbar-nav > li > form > button:focus {
    color: #333;
    background-color: transparent;
}
.navbar-default .navbar-nav > .active > form > button,
.navbar-default .navbar-nav > .active > form > button:hover,
.navbar-default .navbar-nav > .active > form > button:focus {
    color: #555;
    background-color: #e7e7e7;
}

.dropdown-menu > li > form > button {
    clear: both;
    color: #808080;
    display: block;
    font-weight: 100;
    font-size: 12px;
    line-height: 1.66667;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 3px;
    white-space: nowrap;
    background-color: transparent;
    width: 100%;
    text-align: left;
}

.dropdown-menu > li > form > button:hover,
.dropdown-menu > li > form > button:focus {
    color: #262626;
    background-color: #f5f5f5;
    width: 100%;
    text-align: left;
}

.dropdown-menu > .active > form > button,
.dropdown-menu > .active > form > button:hover,
.dropdown-menu > .active > form > button:focus {
    color: #fff;
    background-color: #337ab7;
    outline: 0;
}



/*******************************************************************************************************************/
/*Breadcrumbs*/
.breadcrumb {
    background-color: #fff;
    margin-bottom: 10px;
}

.breadcrumb > li {
    display: inline-flex;
}

#breadc {
    margin: 0px 0px 0px 0px;
    background: transparent;
    z-index: 1500;
}

/*******************************************************************************************************************/
/*Footer*/
.footer {
    font-size: 1.2rem;
    color: #333;
    position: relative;
}

.footer #top-link {
    bottom: 20px;
    position: absolute;
    right: 30px;
}

.footer .social-media {
    font-size: 16px;
}

.footer .social-media {
    border-bottom: 1px solid #d9d9d9;
    font-size: 14px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
}

.footer .social-media ul {
    text-align: right;
}

.footer .copyright-column {
    padding-bottom: 15px;
    padding-right: 40px;
    padding-top: 15px;
}

/*******************************************************************************************************************/
/*Twitter*/
.tweetbox {
    background: none repeat scroll 0 0 #666;
    border-radius: 4px;
    padding: 15px;
    color: #fff;
    font-size: 1.3em;
    box-sizing: border-box; cursor: pointer; overflow: hidden;
}

.tweetbox a {
    color: #fff;
}

/*******************************************************************************************************************/
/*Facebook*/
.fb-like-box, .fb-like-box span, .fb-like-box.fb_iframe_widget span iframe {
    width: 100% !important;
}

/*OWL CSS */
.owl-item img {
    width: 100%;
    height: auto;
}
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #fff;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
}
.owl-prev:hover, .owl-next:hover {
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}
.owl-next {
    right: 0px;
}
.owl-controls {
    text-align: center;
}
.owl-controls .owl-page {
    display: inline-block;
}
.owl-controls .owl-page span {
    background-color: #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    width: 12px;
    filter: Alpha(Opacity=500);/*IE7 fix*/
    opacity: 0.5;
}
.owl-controls .owl-page.active span, .owl-controls .owl-page:hover span {
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}
.carousel-caption {
    text-align: left;
    background-color: rgba(0,0,0,0.5);
}

/*Screens CSS */
@media screen and (max-width:767px) {
    .main-header .brand_wrap .slogan-identifier {
        font-size: 16px;
        float: none;
        display: block;
    }
    .slogan-identifier {
        margin-top: 30px
    }
    .carousel-caption {
        left: 0%;
        right: 15%;
        padding: 30px;
    }
    .navbar-nav {
        margin-left: 0px;
    }
    .footer .copyright-column {
        padding-left: 0;
    }
    .footer .copyright-column ul li {
        padding-bottom: 20px;
        display: block
    }
    #slogan{
        visibility: hidden;
    }

}
@media(min-width:768px) {
    .carousel-caption {
        left: 0%;
        right: 15%;
        padding: 30px;
    }
}
@media(min-width:992px) {
    .carousel-caption {
        left: 0%;
        right: 15%;
        padding: 30px;
    }
    .navbar-nav > li > form > button {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
@media(min-width:1200px){
    .carousel-caption {
        left: 0%;
        right: 15%;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-nav .open .dropdown-menu > li > form > button,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > form > button {
        line-height: 20px;
    }
    .navbar-nav .open .dropdown-menu > li > form > button:hover,
    .navbar-nav .open .dropdown-menu > li > form > button:focus {
        background-image: none;
    }
    .main-header .main_search_form {
        visibility: hidden;
    }
    #slogan {
        visibility: hidden;
    }
}
