/**************************************************************/
/*MAIN*********************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Outfit', 'sans-serif';
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

.shadow {
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/**************************************************************/
/*FONT*********************************************************/

/* outfit-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/outfit-v15-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/outfit-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/outfit-v15-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/outfit-v15-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/outfit-v15-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/outfit-v15-latin-regular.svg#Outfit') format('svg');
    /* Legacy iOS */
}

/* outfit-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/outfit-v15-latin-600.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/outfit-v15-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/outfit-v15-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/outfit-v15-latin-600.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/outfit-v15-latin-600.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/outfit-v15-latin-600.svg#Outfit') format('svg');
    /* Legacy iOS */
}

/**************************************************************/
/*TEXT*********************************************************/

h1,
h2,
h3,
h4,
h5,
a {
    font-weight: 600;
    margin-bottom: 1.6rem;
}

h1,
h2 {
    text-transform: uppercase;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 2.0rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.6rem;
}

h5 {
    font-size: 1.4rem;
}

p {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
}

li {
    list-style: none;
}

a:hover {
    color: #333333;
    transition: 0.5s;
}

footer a:hover {
    color: #950344;
    transition: 0.5s;
}

/**************************************************************/
/*LAYOUT*******************************************************/

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
}

hr {
    border-top: 4px dotted #333333;
    margin-top: 2.0rem;
    margin-bottom: 2.0rem;
}

/**************************************************************/
/*COLORS*******************************************************/

.pink {
    color: #950344;
}

.pink-bg {
    background-color: #950344;
}

.darkgrey {
    color: #333333;
}

.darkgrey-bg {
    background-color: #333333;
}

.lightgrey {
    color: #fcfcfc;
}

.lightgrey-bg {
    background-color: #fcfcfc;
}

.white {
    color: #ffffff;
}

.white-bg {
    background-color: #ffffff;
}

/**************************************************************/
/*ANIMATION****************************************************/

.scale:hover {
    transform: scale(111%);
    transition: 0.5s;        
}

/**************************************************************/
/*JS ANIMATION*************************************************/

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

/**************************************************************/
/*LANDSCAPE****************************************************/

/*LANDSCAPE MAIN***********************************************/

@media screen and (orientation: landscape) {

    /*Main*****************************************************/

    .landscape {
        display: inline-block;
    }

    .portrait {
        display: none;
    }

    /*Body/Wrapper*********************************************/

    body,
    .wrapper {
        width: 100%;
    }

    /*Header***************************************************/

    header {
        width: 100%;
        min-height: 3rem;
        position: fixed;
    }

    .bildmarke {
        width: 2%;
        margin-left: 2%;
        margin-top: 0.6rem;
    }

    .menu {
        display: none;
    }

    /*Navigation***********************************************/

    .navigation-landscape {
        width: 90%;
        height: 3rem;
    }

    .navigation-landscape ul {
        width: 19%;
        height: 3rem;
        padding-top: 1.2rem;
        display: inline-block;
        text-align: center;
    }

    .navigation-portrait {
        display: none;
    }

    .navigation-portrait ul {
        display: none;
    }

    .navigation-portrait ul li {
        display: none;
    }

    .navigation-portrait ul li a {
        display: none;
    }
    
    /*Mainimg**************************************************/

    .mainimg {
        width: 100%;
        min-height: 10rem;
        overflow: hidden;
    }

    .mainimg img {
        width: 100%;
    }
    
    .slider{
        width: 100%;
    }

    /*Section**************************************************/

    .section {
        width: 100%;
        display: inline-block;
        padding: 2%;
        margin-top: -1rem;
        border-top: 1rem solid #950344;
    }

    /*Boxen/Elements*******************************************/

    .box-title {
        width: 100%;
    }

    .box-content {
        width: 100%;
        display: inline-block;
    }

    .box-main {
        width: 61.8%;
        margin-left: 19.1%;
        display: inline-block;
    }

    .box-highlights {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .box-highlight {
        width: 33%;
        margin: 1%;
        padding: 2%;
        display: inline-block;
        border-radius: 5px;
    }

    .box-images {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .box-images img {
        width: 33%;
        padding: 1%;
        display: inline-block;
        border-radius: 20px;
    }

    .box-image {
        width: 100%;
        border-radius: 5px;
    }

    .box-contact {
        width: 100%;
        border-radius: 5px;
        padding: 2%;
    }

    .box-contact p {
        width: 61.8%;
        margin-left: 19.1%;
    }

    .box-contact-logo {
        width: 15%;
        margin-bottom: 1rem;
    }

    .socials {
        width: 80%;
        margin-left: 10%;
        display: flex;
        justify-content: center;
    }

    .socials img {
        width: 40%;
        padding: 1%;
        display: inline-block;
    }

    /*Footer***************************************************/

    footer {
        width: 100%;
        height: 6rem;
        padding: 2%;
    }

    .navigation-footer {
        width: 50%;
        height: 3rem;
        margin-left: 25%;
    }

    .navigation-footer ul {
        width: 48%;
        height: 3rem;
        padding-top: 0.6rem;
        display: inline-block;
    }

}

/*LANDSCAPE GRAND**********************************************/

@media screen and (orientation: landscape) and (min-width: 1680px) {
    
    /*Header***************************************************/

    .bildmarke {
        width: 1.5%;
        margin-left: 2%;
        margin-top: 0.6rem;
    }
    
    /*Mainimg**************************************************/

    .mainimg {
        min-height: 48rem;
    }
    
}

/*LANDSCAPE SMALL**********************************************/

@media screen and (orientation: landscape) and (max-width: 1024px) {
    
    /*Header***************************************************/
    
    header {
        min-height: 1rem;
        padding: 1%;
    }
    
    .bildmarke {
        width: 3.5%;
        margin-left: 2%;
        margin-top: 0.6rem;
    }
    
    .menu{
        width: 8%;
        margin-top: 0.6rem;
        margin-right: 2%;
        display: inline-block;
        float: right;
    }
    
    /*Navigation***********************************************/

    .navigation-landscape {
        display: none;
    }

    .navigation-landscape ul {
        display: none;
    }

    .navigation-landscape ul li {
        display: none;
    }

    .navigation-landscape ul li a {
        display: none;
    }

    .navigation-portrait {
        display: none;
        z-index: 50;
        position: fixed;
        width: 100%;
        margin-top: 6rem;
        padding: 5%;
    }

    .navigation-portrait ul {
        width: 32.5%;
        padding-top: 1.2rem;
        padding-bottom: 0rem;
        display: inline-block;
        text-align: center;
    }
    
    .navigation-portrait ul li{
        display: inline-block;
    }
    
    .navigation-portrait ul li a{
        display: inline-block;
    }
    
    /*Boxen/Elements*******************************************/

    .box-title {
        margin-top: 1rem;
    }
    
    .box-main {
        width: 100%;
        margin-left: 0%;
    }
    
    .box-contact p {
        width: 100%;
        margin-left: 0%;
    }
    
    .box-contact-logo{
        width: 30%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .socials {
        width: 100%;
        margin-left: 0%;
        display: flex;
        justify-content: center;
    }

    .socials img {
        width: 45%;
        padding: 1%;
        display: inline-block;
    }
    
}

/**************************************************************/
/*PORTRAIT*****************************************************/

/*PORTRAIT MAIN************************************************/

@media screen and (orientation: portrait) {

    /*Main*****************************************************/

    .landscape {
        display: none;
    }

    .portrait {
        display: inline-block;
    }

    /*Body/Wrapper*********************************************/

    body,
    .wrapper {
        width: 100%;
    }

    /*Header***************************************************/

    header {
        position: fixed;
        width: 100%;
        min-height: 5rem;
    }

    .bildmarke {
        width: 12%;
        margin-left: 5%;
        margin-top: 0.8rem;
    }

    .menu {
        width: 24%;
        margin-top: 1.2rem;
        margin-right: 5%;
        display: inline-block;
        float: right;
    }

    /*Navigation***********************************************/

    .navigation-landscape {
        display: none;
    }

    .navigation-landscape ul {
        display: none;
    }

    .navigation-landscape ul li {
        display: none;
    }

    .navigation-landscape ul li a {
        display: none;
    }

    .navigation-portrait {
        display: none;
        z-index: 50;
        position: fixed;
        width: 100%;
        margin-top: 7rem;
        padding: 5%;
    }

    .navigation-portrait ul {
        width: 100%;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
        display: inline-block;
        text-align: center;
    }

    /*Mainimg**************************************************/

    .mainimg {
        width: 100%;
        min-height: 10rem;
        margin-top: 3rem;
        overflow: hidden;
    }

    .mainimg img {
        width: 100%;
    }
    
    .slider{
        width: 100%;
    }

    /*Section**************************************************/

    .section {
        width: 100%;
        display: inline-block;
        padding: 5%;
        margin-top: -1rem;
        border-top: 1rem solid #950344;
    }

    /*Boxen/Elements*******************************************/

    .box-title {
        width: 100%;
        margin-top: 1rem;
    }

    .box-content {
        width: 100%;
        display: inline-block;
    }

    .box-main {
        width: 100%;
        margin-left: 0%;
        display: inline-block;
    }

    .box-highlights {
        width: 100%;
        display: inline-block;
    }

    .box-highlight {
        width: 100%;
        margin: 0%;
        margin-bottom: 1rem;
        padding: 5%;
        display: inline-block;
        border-radius: 5px;
    }

    .box-images {
        width: 100%;
        display: inline-block;
    }

    .box-images img {
        width: 100%;
        padding: 0%;
        margin-bottom: 1rem;
        display: inline-block;
        border-radius: 5px;
    }

    .box-image {
        width: 100%;
        border-radius: 5px;
    }

    .box-contact {
        width: 100%;
        border-radius: 5px;
        padding: 5%;
    }

    .box-contact p {
        width: 100%;
    }

    .box-contact-logo {
        width: 50%;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .socials {
        width: 100%;
        display: inline-block;
    }

    .socials img {
        width: 28%;
        padding: 2%;
        margin: 2%;
        display: inline-block;
    }

    /*Footer***************************************************/

    footer {
        width: 100%;
        height: 6rem;
        padding: 2%;
    }

    .navigation-footer {
        display: none;
    }

    .navigation-footer ul {
        display: none;
    }

}

/*PORTRAIT IPAD************************************************/

@media screen and (orientation: portrait) and (min-width: 768px) {
    
    /*Header***************************************************/

    header {
        min-height: 3rem;
    }

    .bildmarke {
        width: 5%;
        margin-top: 0.8rem;
    }

    .menu {
        width: 12%;
        margin-top: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    /*Boxen/Elements*******************************************/
    
    .box-highlights {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .box-highlight {
        width: 33%;
        margin: 1%;
        padding: 2%;
        display: inline-block;
        border-radius: 5px;
    }

    .box-images {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .box-images img {
        width: 33%;
        padding: 1%;
        display: inline-block;
        border-radius: 5px;
    }
    
    .socials {
        width: 100%;
        margin-left: 0%;
        display: flex;
        justify-content: center;
    }

    .socials img {
        width: 65%;
        padding: 1%;
        display: inline-block;
    }
    
}

/*PORTRAIT SURFACE DUO*****************************************/

@media screen and (orientation: portrait) and (min-width: 540px) and (max-width: 767px) {
    
    /*Header***************************************************/

    .bildmarke {
        margin-top: 0.5rem;
    }

    .menu {
        margin-top: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    /*Mainimg**************************************************/

    .mainimg {
        height: 32rem;
    }
    
}