@charset "utf-8";
/* CSS Document */

/*	--------------------------------------------------------------------------------------------------------  VARIABLES  */

:root{
    /*	----------------------------------------------------------  SIZES  */
    --full-width: 100%;
    --inner-width: 4200px;

    --header-height: 0;

    /*	---------------------------------------------------------  COLORS  */
    --bg-color-test: rgba(255,0,0,0.1);

    /*	----------------------------------------------------------  FONTS  */
    --montserrat: 'Montserrat', 'Arial';

    /*  --thin: 		100;  */
    /*  --extralight:   200;  */
    --light: 		300;
    --regular: 		400;
    --medium: 		500;
    --semibold: 	600;
    --bold: 		700;
    --black: 		800;
    /*  --extrablack:   900;  */
}

/*	-----------------------------------------------------------------------------------------------------------  BASICS  */

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;

    padding:0;
    margin:0;

    font-family: var(--montserrat), sans-serif;
    font-style: normal;
    font-size: 93.75%;
    color: rgba(0,0,0,1);

    background-color: rgba(0,0,0,1);
}

html{
    /*	force scrollbars  */
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/*	---------------------------------------------------------------------------------------------------  GENERIC RESETS  */

h1, h2, h3, h4, h5, h6, p, td, ul, li, figure, button {
    margin:0;
    padding:0;
    font-weight:normal;
    border:0;
    outline:0;
    background-color:transparent;
}


/*	----------------------------------------------------------------------------------------------------------  FLEXBOX  */
.flx{
    display: flex;
}

.flxR{
    display:flex;
    flex-flow:row;
    flex-wrap:nowrap;
}

.flxC{
    display:flex;
    flex-flow:column;
    flex-wrap:nowrap;
}

.flxJCA	{ justify-content:space-around; }
.flxJCB	{ justify-content:space-between; }
.flxJCC	{ justify-content:center; }
.flxJCE	{ justify-content:flex-end; }
.flxJCS	{ justify-content:flex-start; }

.flxAIC	{ align-items:center; }
.flxAIE	{ align-items:flex-end; }
.flxAIS	{ align-items:flex-start; }
.flxWrp	{ flex-wrap:wrap; }


/*	-------------------------------------------------------------------------------------------------------------  GRID  */

.grd{
    display: grid;
}



/*  --------------------------------------------------------------------------------------------------------------  HEADER  */

.khsce_hdrWrp{
    width: 100%;
    height: auto;

    position: fixed;
    top: 10%;
    left: 0;
    z-index: 10;

    padding: 0 25px;
}

.khsce_hdr{
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.khsce_logoGrilltD{
    display: none;
}
.khsce_logoGrilltM{
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}
@media screen and (min-width: 666px){
    .khsce_logoGrilltD{
        display: block;
        width: 100%;
        height: auto;
    }
    .khsce_logoGrilltM{
        display: none;
    }

}


.khsce_mainWrp{
    width: 100%;
    max-width: 1920px;
    height: 100vh;

    background-image: url("../../assets/media/images/schiweks_background_temp001_1920x1280.jpg");
    background-size: cover;
    background-position: center center;

    opacity: 0.5;
}




.khsce_ftrWrp{
    width: 100%;

    position: fixed;
    bottom: 10%;
    left: 0;
    z-index: 20;

    padding: 0 50px;
}
@media screen and (min-width: 666px){
    .khsce_ftrWrp{
        padding: 0 25px;
    }
}

.khsce_ftr{
    width: 100%;
    max-width: 1000px;
}
@media screen and (min-width: 666px){
    .khsce_ftr{
        justify-content: flex-end;
    }

}

.khsce_ftr p a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.4;

    font-size: 1.35rem;

    transition: all 0.7s;
}
.khsce_ftr p a[href^="https"]{
    font-weight: var(--bold);
}
.khsce_ftr p a:hover, .khsce_ftr p a:active, .khsce_ftr p a:focus{ color: #007dc5; }

.khsce_instagram{
    width: 30px;
    height: auto;

    display: block;
    margin: 15px 0 0 0;
}


