/*
Theme Name:         Sage Starter Theme
Theme URI:          https://roots.io/sage/
Description:        Theme for xxxx by Southvision
Version:            1.06
Author:             Southvision
Author URI:         https://southvision.de/
Text Domain:        sage

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/


/* montserrat-300 - 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: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-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: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-italic - 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: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700 - 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: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

img {
	width: 100%;
	height: auto;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
    overflow: hidden;
}


.contactBtnWrap{
    text-align: right;
}


.contactBtn{
    width: 8.5rem;
}

.textWrap {
    text-align: right;
}

.textInnerWrap {
    text-transform: uppercase;
    font-weight: 300;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    max-width: 32rem;
    padding: 5rem 2rem;
    position: relative;
    color: white;
    text-align: center;
}

.textInnerWrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding-bottom: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: -1;
    border-radius: 100%;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.textInnerWrap strong{
    font-size: 2.4rem;
    font-weight: 700;
}


.sliderImgWrap {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.sliderWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

header .container-fluid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}   

header .container-fluid:before,
header .container-fluid:after {
    display: none;
}   


.contactBtn {
    cursor: pointer;
}


.contactBarWrap {
    padding: 7rem 10rem 7rem 3rem;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    pointer-events: none;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    text-align: right;
}

.contactBarWrap.toggled{
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    pointer-events: all;
}

.contactBarClose{
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    cursor: pointer;
    z-index: 1;
    font-size: 3rem;
    border-radius: 100%;
    border: 1px solid #000;
}

.contactBarHeadlineWrap{
    text-align: right;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.contactBarHeadlineWrap strong{
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 2.4rem;
}

.contactPersonImgWrap{
    margin-bottom: 3rem;
    max-width: 30rem;
    display: inline-block;
}

.contactPersonWrap{
    margin-top: 5rem;
}

.contactPersonWrap a{
    color: #000;
}

.contactDetailsWrap {
    font-size: 1.8rem;
}

section.landingPage .textWrap p {
    margin-bottom: 0;
}

@media (max-width: 991px){
	html {
		font-size: 9px;
	}
}
	
@media(max-width: 767px){
    section.landingPage .textWrap {
        margin-top: 7rem;
    }
}