/*----------------------------------------------------------
COLORS
----------------------------------------------------------*/
:root
{
    --qs-orange: #FB743E;
    --qs-blue: #383E56;
    --qs-green-dark: #9FB8AD;
    --qs-green-light: #C5D7BD;
}

/*----------------------------------------------------------
HEADER
----------------------------------------------------------*/
html, body
{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
header
{
    background-image: url("assets/bg.jpg");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.logo
{
    -webkit-filter: drop-shadow( 0px 0px 30px black);
    filter: drop-shadow( 0px 0px 30px black);
    width: 100%;
}

/*----------------------------------------------------------
H1
----------------------------------------------------------*/

h1
{
    font-family: Futura, Arial, sans-serif;
    font-weight: normal;
    margin-bottom: .7em;
}
.wir-ihr h1,
.leistungen h1,
.modal h1
{
    color: var(--qs-green-dark);
}
.wir-ihr h1 .and,
.leistungen h1 .and,
.modal h1 .and
{
    color: var(--qs-orange);
}
.modal h1
{
    text-align: center;
}
.team-netzwerk h1
{
    color: var(--qs-orange);
    text-align: center;
}
.team-netzwerk h1 .and
{
    color: var(--qs-green-dark);
}
.gruss-kuss h1
{
    color: var(--qs-blue);
}
.gruss-kuss h1 .and
{
    color: var(--qs-orange);
}

/*----------------------------------------------------------
P
----------------------------------------------------------*/

p
{
    font-family: Helvetica, Arial, sans-serif;
    color: var(--qs-blue);
}

/*----------------------------------------------------------
BUTTONS
----------------------------------------------------------*/

.btn-outline-primary
{
    color: var(--qs-orange);
    border-color: var(--qs-orange);
}
.btn-outline-primary:hover
{
    background-color: var(--qs-orange);
    border-color: var(--qs-orange);
}

/*----------------------------------------------------------
PICTURES
----------------------------------------------------------*/

section .content-pic
{
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/*----------------------------------------------------------
TEAM & NETZWERK
----------------------------------------------------------*/

section.team-netzwerk
{
    background-color: var(--qs-blue);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.teamer
{
    text-align: center;
}
.teamer img
{
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 30%;
    margin-bottom: 2em;
}
.teamer h2
{
    color: white;
    font-size: 20pt;
    font-family: Helvetica, Arial sans-serif;
}
.teamer h3
{
    color: var(--qs-green-dark);
    font-size: 16pt;
    font-family: Helvetica, Arial sans-serif;
}
.teamer h4
{
    color: var(--qs-orange);
    font-size: 16pt;
    font-family: Helvetica, Arial sans-serif;
}
.teamer h4 .and
{
    color: var(--qs-green-dark);
}
.team-netzwerk p
{
    color: white;
    text-align: center;
}
@media (max-width: 1200px)
{
    .teamer img
    {
        width: 50%;
    }
    .teamer h2 
    {
        font-size: 18pt;
    }
    .teamer h3,
    .teamer h4 
    {
        font-size: 14pt;
    }
}
@media (max-width: 992px)
{
    .teamer h2 
    {
        font-size: 16pt;
    }
    .teamer h3,
    .teamer h4 
    {
        font-size: 12pt;
    }
}
@media (max-width: 768px)
{
    .teamer img
    {
        width: 40%;
    }
}
@media (max-width: 576px)
{
    .teamer img
    {
        width: 60%;
    }
}

/*----------------------------------------------------------
GRUß & KUSS
----------------------------------------------------------*/

section.gruss-kuss
{
    background-color: var(--qs-green-light);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
 .gruss-kuss a,
 .gruss-kuss a:hover
 {
     color: var(--qs-orange);
     text-decoration: none;
     cursor: pointer;
 }

/*----------------------------------------------------------
FOOTER
----------------------------------------------------------*/

footer
{
    background-color: var(--qs-orange);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: white;
    text-align: center;
}
footer a,
footer a:hover,
footer a:visited
{
    color: white;
    text-decoration: none;
    cursor: pointer;
}
footer .and
{
    color: var(--qs-green-light);
}

/*----------------------------------------------------------
MODAL
----------------------------------------------------------*/

.modal img,
.carousel-item,
.carousel-inner,
.carousel,
.modal-content,
.modal-dialog,
.modal
{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal .carousel-inner
{
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/*----------------------------------------------------------
CABLES
----------------------------------------------------------*/

.cables
{
    min-height: 200px;
    overflow: hidden;
    position: relative;
    transform: scale(1);
}
.cable_left,
.cable_right
{
    width: 50.7vw;
    height: 3.5vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(100px - calc(3.5vw / 2));
}
.cable_left
{
    background-image: url("assets/cable_left.png");
    left: 0;
}
.cable_right
{
    background-image: url("assets/cable_right.png");
    right: 0;
}
@media (max-width: 1200px)
{
    .cables
    {
        transform: scale(1.3);
    }
}
@media (max-width: 992px)
{
    .cables
    {
        transform: scale(1.5);
    }
}
@media (max-width: 768px)
{
    .cables
    {
        transform: scale(2);
    }
}
@media (max-width: 576px)
{
    .cables
    {
        transform: scale(3);
    }
}


/*----------------------------------------------------------
IMPRESSUM & DATENSCHUTZ
----------------------------------------------------------*/

body.impressum
{
    background-color: var(--qs-blue);
}
body.impressum .col-12
{
    background-color: white;
    border-radius: 8px;
}