/*  Author:   Martin Stettler (http://dieweberei.ch/)
    Version:  01022018
*/

@font-face{
    font-family: "DIN Next W01 Light";
    src: url("../fonts/de1216be-00c2-43c0-9c45-3e7f925eb519.woff2") format("woff2"),
    url("../fonts/bc176270-17fa-4c78-a343-9fe52824e501.woff") format("woff"),
    url("../fonts/3516f91d-ac48-42cd-acfe-1be691152cc4.ttf") format("truetype"),
    url("../fonts/d1b1e866-a411-42ba-8f75-72bf28e23694.svg#d1b1e866-a411-42ba-8f75-72bf28e23694") format("svg"); }

@font-face{
    font-family: "DIN Next W01 Regular";
    src: url("../fonts/44e7b0fa-6c8d-43c2-b19e-f1e3ce9ea57c.woff2") format("woff2"),
    url("../fonts/c5a7f89e-15b6-49a9-8259-5ea665e72191.woff") format("woff"),
    url("../fonts/868c94b5-ca49-46b7-b62b-297f8d861125.ttf") format("truetype"),
    url("../fonts/e3145f65-29b5-4f7f-8c6e-2dc135021b6a.svg#e3145f65-29b5-4f7f-8c6e-2dc135021b6a") format("svg"); }

/*
This CSS resource incorporates links to font software which is the valuable copyrighted
property of Monotype Imaging and/or its suppliers. You may not attempt to copy, install,
redistribute, convert, modify or reverse engineer this font software. Please contact Monotype
Imaging with any questions regarding Web Fonts:  http://www.fonts.com
*/

/* ==========================================================================
   Fade in (https://www.abeautifulsite.net/a-clean-fade-in-effect-for-webpages)
   ========================================================================== */
body.fade-out {
    opacity: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
        transition: none; 
}

html {
    background-image: url(../graphics/tierarztpraxis-uetendorf.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 240px 101px; }
    
body,
body.content-page {
    opacity: 1;
    -webkit-transition: 1s opacity;
    -moz-transition: 1s opacity;
    -ms-transition: 1s opacity;
        transition: 1s opacity;
    -webkit-transition-delay: 0.65s;
    -moz-transition-delay: 0.65s;
    -ms-transition-delay: 0.65s;
        transition-delay: 0.65s;
}

/**
 * Conditional CSS for Edge 12+.
 * @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
 */
@supports (-ms-ime-align:auto) {
    /* Conditional Edge styles */
    html {
        background-image: none;
    }

    body.fade-out {
        opacity: 1;
    }

    body {
        -ms-transition: 0s opacity;
        -ms-transition-delay: 0;
    }
}

/**
 * Conditional CSS for IE 8+ (and old Firefox 1.x).
 * @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
 */
@media screen\0 {
    /* Conditional IE styles */
    html {
        background-image: none;
    }

    body.fade-out {
        opacity: 1;
    }

    body {
        -ms-transition: 0s opacity;
        -ms-transition-delay: 0;
    }
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
}

html,
body,
ul {
    margin:0;
    padding:0;
    background-color: #FFF;
    font: normal 19px 'DIN Next W01 Light', Arial, sans-serif;
    line-height: 1.4;
    color: #59595b;
}

h1,
h2,
h3,
h4,
h6 {
    line-height: 1.4;
    margin: 0;
    padding: 0; }

li {
    list-style-type: none; /* for text-danger in form */
}

h1 {
    font-family: 'DIN Next W01 Light', Arial, serif;
    font-size: 54px;
    text-transform: uppercase;
}


h2,
h6 {
    font-family: 'DIN Next W01 Regular', Arial, serif;
    font-size: 38px;
}

.content-page h1,
h2 {
    color: #000;
    line-height: 1.2;
    margin-bottom: 35px;
    text-transform: none;
}

h3 {
    font-family: "DIN Next W01 Regular", Arial, sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

h4 {
    font-family: "DIN Next W01 Regular", Arial, sans-serif;
    font-size: 19px;
}

p {
    padding-bottom: 25px;
}

@media only screen and (min-width: 992px) {
    p:last-child {
        padding-bottom: 0;
    }
}

p.title {
    color: #000;
    padding-bottom: 80px;
    font-family: "DIN Next W01 Regular", Arial, sans-serif;
}

p.list-title {
    margin: 0;
    padding: 0;
}

strong {
    font-family: 'DIN Next W01 Regular', Arial, serif;
}

ul.default {
    margin-bottom: 30px;
}

ul.default li {
    list-style: none;
    padding: 0 0 0 10px;
} 

ul.default li:before {
    content: '-';
    display: block;
    height: 0;
    width: 0;
    left: -10px;
    top: 0;
    position: relative;
}

.dark-grey ul.default {
    background: transparent;
    color: #FFF;
    margin-bottom: 0;
}

@media (max-width: 767px) {

    h2 {
        font-size: 25px;
    }

    h1 {
        font-size: 50px;
    }

    p {
        line-height: 23px;
        padding-bottom: 15px;
    }

    p.title {
        padding-bottom: 22px;
    }

    ul.default {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 35px;
    }
}

a,
a.email {
    color: #59595b;
}

a:hover,
a:active,
a.email:hover,
a.email:focus,
a.email:active {
    color: #000;
    text-decoration: none;
}

a,
a:hover {
    text-decoration: none;
    -o-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -webkit-transition: color 0.3s;
        transition: color 0.3s;
}

/* Not found */
.not_found {
    margin-top: 40px;
    text-align: center;
}

h6 {
    font-size: 25px;
    padding: 40px 0 20px 0;
}

h6 b {
    font-size: 50px;
   
}

/* File icon */
section a[href$=".pdf"] {
    color: #FFF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

section a[href$=".pdf"]:hover {
    text-decoration: none;
}

section a[href$=".pdf"]:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 16px;
    background-image: url(../graphics/file-icon.svg);
    background-color: transparent;
    color: #000;
    position: relative;
    margin: 0 8px 0 0;
}

.content-page section a[href$=".pdf"] {
    text-decoration: none;
    color: #000;
}

.content-page section a[href$=".pdf"]:before {
    background: none;
    margin: 0;
    width: 0;
}

/* ==========================================================================
   Browse Happy prompt lte IE 7
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #cc0033;
    color: #FFF;
    padding: 0.5em;
}

.browsehappy a {
    color: #FFF;
    text-decoration: underline;
}

.browsehappy a:hover {
    text-decoration: none;
}

/* ==========================================================================
   HEADER & LOGO
   ========================================================================== */

header {
    height: 60px;
    position: fixed;
    top: 0;
    -webkit-transition: top 0.2s ease-in-out;
    -moz-transition: top 0.2s ease-in-out;
    -ms-transition: top 0.2s ease-in-out;
        transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 1000;
}

header .container-fluid {
    margin: 0 auto;
    padding: 0;
    padding-left: 100px;
    padding-right: 100px; }

@media (max-width: 767px) {
    header .container-fluid {
    padding-left: 20px;
    padding-right: 20px; }  
}

/* Logo */
.navbar-brand {
    position: absolute;
    margin-top: 2px;
}
        
a.navbar-brand span {
    display: block;
    text-indent: -9999px;
    width: 106px;
    height: 46px;
    background-image: url(../graphics/tierarztpraxis-uetendorf.svg);
    background-size: 106px 46px; }

.navbar-brand {
    padding: 0; }

@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }

    .collapse.in {
        display:block !important;
    }

    a.petplus-mobile span {
        display: block;
        text-indent: -9999px;
        width: 200px;
        height: 53px;
        background: url(../graphics/logo-petplus.svg) no-repeat;
        background-size: 160px 33px;
        background-position: center center;
        margin: 20px 0;
        padding: 10px 20px;
        border-radius: 10px;
        border: 1px solid #aebb96;
    }

    a.petplus,
    div.jobs {
        display: none;
    }

    li.jobs a {
        color: #FFF !important;
        margin-bottom: 20px;
    }

    li.jobs a:hover {
        background: #4d4d4d !important;
    }
}

@media (min-width: 992px) {

    header {
        height: 90px; }

    .navbar,
    .navbar-nav,
    .navbar-collapse {
        border: 0;
        background: transparent;
    }

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

    .navbar-header  {
        -webkit-transition: transform 0.5s;
        -moz-transition: transform 0.5s;
            transition: transform 0.5s;
    }

    .nav-up {
        /*top: -100px;*/
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
            transform: translateY(-100px);
        -webkit-transition: transform 0.5s;
        -moz-transition: transform 0.5s;
            transition: transform 0.5s;
    }

    .navbar {
        margin: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .navbar-nav {
        margin: 25px 0 20px 0;
    }

    .navbar-brand {
        margin-top: 20px;
    }

    li a.petplus-mobile,
    li.jobs {
        display: none;
    }
    
    a.petplus {
        position: absolute;
        right: 20px;
        margin-top: 20px;
        padding: 10px 20px;
        border-radius: 10px;
        border: 1px solid #aebb96;
    }

    a.petplus:hover {
        border: 1px solid #000;
    }

    a.petplus span {
        display: block;
        text-indent: -9999px;
        width: 160px;
        height: 33px;
        background: url(../graphics/logo-petplus.svg) no-repeat;
    }

    .jobs {
        position: absolute;
        right: 20px;
        margin-top: 32px;
    }

}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar,
.navbar-nav,
.navbar-collapse {
    border: 0;
    border-radius: 0;
    background: #FFF;
}

/* Centered Navbar: https://www.codeply.com/go/1lrdvNH9GI */
.navbar .navbar-nav {
    display: inline-block;
    float: none; }

.navbar .navbar-collapse { /* Check also line 135 */
    text-align: center; }

/* Toggle */
.navbar-toggle {
    padding: 9px 10px;
    margin-top: 10px;
    margin-right: 7px;
    border: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #FFF !important; /* for Safari */
}

#nav-icon {
    width: 26px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 6px;
}

#nav-icon span:nth-child(4) {
    top: 12px;
}

#nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
        transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Navigation colors */
.navbar-default .navbar-nav > li > a {
    color: #000;
    border: 0;
    padding: 10px 15px;
    font-size: 22px;
    font-family: 'DIN Next W01 Regular', Arial, serif;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #b1b3b6;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #b1b3b6;
    background-color: transparent;
}

/* Latest */
a.important {
    -webkit-animation: color-change 3s infinite;
    -ms-animation: color-change 3s infinite;
    animation: color-change 3s infinite;
}

@-webkit-keyframes color-change {
    0% {
        color: #000;
    }

    50% {
        color: #859964;
    }

    100% {
        color: #000;
    }
}

@-o-keyframes color-change {
    0% {
        color: #000;
    }

    50% {
        color: #859964;
    }

    100% {
        color: #000;
    }
}

@keyframes color-change {
    0% {
        color: #000;
    }

    50% {
        color: #859964;
    }

    100% {
        color: #000;
    }
}


/* ==========================================================================
   CONTENT
   ========================================================================== */

/* Carousels Fullscreen/Background  */
html,
body {
    height: 100%;
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.fill {
    width:100%;
    height:100%;
    background-position:center;
    background-size:cover;
}

#carousel-1 .fill.pic-1 {
    background-image: url(../images/tierarztpraxis-uetendorf-1-640.jpg);    
}

#carousel-1 .fill.pic-2 {
    background-image: url(../images/tierarztpraxis-uetendorf-2-640.jpg);    
}

#carousel-1 .fill.pic-3 {
    background-image: url(../images/tierarztpraxis-uetendorf-3-640.jpg);    
}

#carousel-1 .fill.pic-4 {
    background-image: url(../images/tierarztpraxis-uetendorf-4-640.jpg);    
}

@media (min-width: 641px) {
    #carousel-1 .fill.pic-1 {
        background-image: url(../images/tierarztpraxis-uetendorf-1-1024.jpg);    
    }

    #carousel-1 .fill.pic-2 {
        background-image: url(../images/tierarztpraxis-uetendorf-2-1024.jpg);    
    }

    #carousel-1 .fill.pic-3 {
        background-image: url(../images/tierarztpraxis-uetendorf-3-1024.jpg);    
    }

    #carousel-1 .fill.pic-4 {
        background-image: url(../images/tierarztpraxis-uetendorf-4-1024.jpg);    
    }
}

@media (min-width: 1025px) {
    #carousel-1 .fill.pic-1 {
        background-image: url(../images/tierarztpraxis-uetendorf-1-1280.jpg);    
    }

    #carousel-1 .fill.pic-2 {
        background-image: url(../images/tierarztpraxis-uetendorf-2-1280.jpg);    
    }

    #carousel-1 .fill.pic-3 {
        background-image: url(../images/tierarztpraxis-uetendorf-3-1280.jpg);    
    }

    #carousel-1 .fill.pic-4 {
        background-image: url(../images/tierarztpraxis-uetendorf-4-1280.jpg);    
    }
}

@media (min-width: 1281px) {
    #carousel-1 .fill.pic-1 {
        background-image: url(../images/tierarztpraxis-uetendorf-1-2000.jpg);    
    }

    #carousel-1 .fill.pic-2 {
        background-image: url(../images/tierarztpraxis-uetendorf-2-2000.jpg);    
    }

    #carousel-1 .fill.pic-3 {
        background-image: url(../images/tierarztpraxis-uetendorf-3-2000.jpg);    
    }

    #carousel-1 .fill.pic-4 {
        background-image: url(../images/tierarztpraxis-uetendorf-4-2000.jpg);    
    }
}

/* keep full widget on smaller screens */
@media (max-width: 767px) { 
    body {
        padding-left: 0;
        padding-right: 0;
    }

    #carousel-3 .carousel-control .icon-prev,
    #carousel-3 .carousel-control .icon-next {
      position: absolute;
      top: 75px;
      z-index: 5;
      display: inline-block;
    }
    #carousel-3 .carousel-control .icon-prev {
      left: 25px;
      margin-left: -10px;
    }
    #carousel-3 .carousel-control .icon-next {
      right: 25px;
      margin-right: -10px;
    }
    #carousel-3 .carousel-control .icon-prev,
    #carousel-3 .carousel-control .icon-next {
      width: 15px;
      height: 9px;
      margin-top: -10px;
    }
    #carousel-3 .carousel-control .icon-prev:before {
        content: url(../graphics/arrow_left.png) !important;
    }
    #carousel-3 .carousel-control .icon-next:before {
      content: url(../graphics/arrow_right.png) !important;
    }
}

.carousel {
    position: relative;
}

.carousel-control {
    width: 45%;
    opacity: 1;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
    filter: none; /* IE9 */
}

.carousel-control.left {
    left: 0;
}

.carousel-control.right {
    right: 0;
}



@media (min-width: 768px) { 
    .carousel-control.left {
        cursor: url(../graphics/arrow_left.png), auto !important;
    }

.carousel-control.right {
        cursor: url(../graphics/arrow_right.png), auto !important;
    }

    #carousel-3 .carousel-control .icon-prev,
    #carousel-3 .carousel-control .icon-next {
        display: none;
    }
}

/* Claim */
.claim {
    position: absolute; 
    top: 45%; 
    left: 0;
    text-align: center; 
    width: 100%;
    color: #FFF;
}

.latest {
    position: absolute;
    top: 80px;
    right: 15px;
    width: 130px;
    height: 130px;
    transition: all .5s ease-in-out;
    z-index: 1200;
}

.latest:hover { 
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}

.latest span {
    width: 130px;
    height: 130px;
    display: block;
    background: url(../graphics/corona.svg);
    background-size: 100% 100%;
}

.campaign {
    position: absolute;
    top: 230px;
    right: 15px;
    width: 130px;
    height: 130px;
    transition: all .5s ease-in-out;
    z-index: 1200;
}

.campaign:hover { 
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}

.campaign span {
    width: 130px;
    height: 130px;
    display: block;
    background: url(../graphics/katzen-chip.svg);
    background-size: 100% 100%;
}

@media (min-width: 992px) {

    .latest,
    .campaign {
        top: 20px;
        right: 20px;
    }

    .campaign {
        top: 170px;
    }
    
}

@media (min-width: 1280px) {

    .latest,
    .campaign {
        top: 20px;
        right: 50px;
    }

    .campaign {
        right: 200px;
    }
    
}

.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
        animation-fill-mode: both;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -ms-animation-duration: 3s;
    -o-animation-duration: 3s;
        animation-duration: 3s;
    webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
        animation-delay: 1s;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Fade in */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.enter {
    position: absolute;
    bottom: 100px;
    left: 50%;
    margin-left: -20px;
}

/* Kompetenzen (section_1) */
.container-fluid,
.container,
.row,
.col-sm-12,
.col-sm-10,
.col-sm-6 {
    margin: 0;
    padding: 0;
}

/* Custom links */
a.arrow-link:before {
    content: url(../graphics/arrow-email.svg);
    padding-right: 5px;
}

@media screen and (max-width: 991px) {
    .anchor {
        display: block;
        height: 55px;
        margin-top: -55px; 
        visibility: hidden;
    }
}

/* Praxis (section_2) */
section#section_2,
section#section_latest {
    background: #4d4d4d;    
}

section#section_2,
section#section_2 h2,
section#section_latest,
section#section_latest h2,
section#section_latest a {
    color: #FFF;    
}

section#section_latest {
    border-top: 1px solid #4d4d4d;
}

/* Section career */
.bg-light-grey {
    background: #dadada;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a.btn-black {
    font-family: 'DIN Next W01 Regular', Arial, serif;
    background: #000;
    color: #FFF;
    border-radius: 20px;
    padding: 10px 20px;
}

a.btn-black:hover {
    background: #4d4d4d;
}

/* Team (section_3) */
/* https://codepen.io/N3los/pen/BLAOPR */    
/* for IE & Edge: https://medium.com/@primozcigler/neat-trick-for-css-object-fit-fallback-on-edge-and-other-browsers-afbc53bbb2c3 */   

@media screen and (min-width: 768px) {
    .team {
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
            display: flex;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }

    .team .team-item {
        -webkit-flex: 0 0 50%;
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }

    .team .team-image-wrapper {
        width: 100%;
        height: 100%; }

    .team .team-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%; }

    .team .team-cv {
        height: 100%;
        min-height: 800px; }
}

#carousel-3 .carousel-indicators {
    display: none;
    width: auto;
    padding-left: 0;
    margin-left: 100px; }

@media (min-width: 768px) {
    #carousel-3 .carousel-indicators {
        display: block;
        bottom: 25px; }   
}

@media (min-width: 768px) and (max-width: 991px) {
    #carousel-3 .carousel-indicators {
        margin-left: 40px; }   
}

#carousel-3 .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #000;
    border-radius: 10px; }

#carousel-3 .carousel-indicators .active {
    background-color: #000; }

.textarea,
.team-cv-inside {
    padding: 0 15px;
    margin: 30px 0 15px 0;
}

.text-half {
    color: #000;
    padding: 20px 15px 0 15px;
    margin: 0 0 70px 0;
}

@media (min-width: 768px) {
    
    .textarea,
    .team-cv-inside {
        padding: 0 40px;
        margin: 40px 0;
    }

    .text-half {
        padding: 0 40px;
        margin: 0 0 100px 0;
    }
}

@media (min-width: 992px) {

    .textarea,
    .team-cv-inside {
        padding: 0 100px;
        margin: 100px 0;
    }

    .text-half {
        padding: 0 100px;
        margin: 0 0 100px 0;
    }
}

/* page career */
body.content-page {
    padding-top: 55px;
    color: #000 !important;
}

.light-grey {
    background: #ececec;
    color: #000 !important;
}

.grey {
    background: #dadada;   
}

.dark-grey,
.dark-grey h2 {
    background: #4d4d4d;
    color: #FFF !important;
}

.dark-grey .border-top {
    border: 1px solid #FFF;
}

.unit {
    padding: 50px 15px;
}

@media (min-width: 768px) {
    body.content-page {
        padding-top: 95px;
    }
    .unit {
        padding: 50px 40px;
    }
}

@media (min-width: 992px) {
    .unit {
        padding: 50px 100px;
    }
}

.border-top {
    border-top: 1px solid #000;
    margin-top: 50px;
    margin-bottom: 50px;
}

a.btn-light {
    font-family: 'DIN Next W01 Regular', Arial, serif;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 30px;
    text-decoration: none;
}

a.btn-light:hover {
    background: #4d4d4d;
    color: #FFF !important;
    border: 1px solid #4d4d4d;
}

.title-area {
    padding-right: 10%;
}

.title-area h2 {
    font-family: 'DIN Next W01 Regular', Arial, serif;
    font-weight: normal;
    font-size: 19px;
}

.title-area h2 i {
    font-family: 'DIN Next W01 Regular', Arial, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 35px;
    display: block;
}

.bg-white {
    display: none;
}

.content-page h1 {
    padding: 2.5vw 15px;
}
h2.no-1,
h2.no-2 {
    display: flex;
    align-items: center;
}

h2.no-1:before,
h2.no-2:before {
    display: inline-block;
    content: '';
    background: url(../graphics/no-1.svg) no-repeat;
    width: 35px;
    height: 35px;
    margin: -8px 10px 0 0;
}

h2.no-2:before {
    background: url(../graphics/no-2.svg) no-repeat;
}

a.text-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

a.text-link:hover {
    text-decoration: none;
}

@media (min-width: 768px) {

    .content-page h1 {
        padding: 5vw;
    }

    h2.no-1:before,
    h2.no-2:before {
        width: 50px;
        height: 50px;
        margin: -8px 20px 0 0;
    }

    .title-area {
        padding-right: 20%;
    }

    .row.display-flex {
      display: flex;
      flex-wrap: wrap;
    }

    .row.display-flex > [class*='col-'] {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .bg-white {
        display: inline-block;
        background: #FFF;
        padding: 5vw 0;
    }

    .bg-white img {
        width: 165px;
        height: auto;
    }

    .image-contain img,
    .image-contain picture {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Kontakt */
#section_4 {
    background: #dadada;
    color: #000;

}

.container-fluid {
    position: relative;
}

#links,
#user_info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    display: none;
    z-index: 1000;
}

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    filter: alpha(opacity=100);
    opacity: 1;
}

.close:hover {
   filter: alpha(opacity=60);
    opacity: 0.6;
    -o-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

footer .textarea {
    margin-bottom: 40px;
}

.bottom-line {
    position: relative;
    border-top: 1px solid #59595b;
    padding: 60px 0 20px 0;
}

.bottom-line p {
    margin: 0;
}

.top {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 40px;
    height: 40px;
    bottom: 8px;
}

.imprint {
    padding: 0px;
    font-size: 13px;
    line-height: 18px;
    text-align: right;
}

footer a,
.imprint a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    color: #59595b;
}

.imprint a:active,
.imprint a:visited {
    color: #000;
}

@media (max-width: 600px) {

   .bottom-line {
        padding: 40px 0 60px 0;
    }

    .top {
       bottom: 0;
    }

    .imprint {
        text-align: center;
    }
}

.hidden {
    display: none;
}

/* ==========================================================================
   SELECTION
   ========================================================================== */

::-moz-selection {
    text-shadow: none;
    background: #000;
    color: #FFF;
}

::selection {
    text-shadow: none;
    background: #000;
    color: #FFF;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #000;
}