/* Custom CSS mobile first */


/* Variables */
:root {
    /* Colors */
    --custom-bg-01-prim: #555555;
    --custom-bg-01-sec: #556b2f;
    --custom-color-01: #DBBB62;
    --custom-color-02: #CCCCCC;
    --custom-color-03: #4F515C;
    --custom-ft-01: #2e2e2e;
    --custom-nav-01: rgba(0, 0, 0, 0.8);
    --custom-nav-02: rgba(0, 0, 0, 0);

    /* Body Padding for Navbar if fixed or translucent */
    --custom-bodypadding-m: 0px;
    --custom-bodypadding-d: 0px;

    /* Font */
    --custom-font-01: font-family: opensans;

    /* Container Width */
    --custom-width-01: 1700px;
}

@font-face {
	font-family: opensans;
	src: url('../fonts/OpenSans-Light.ttf');
	font-weight: 300;
}

@font-face {
	font-family: opensans;
	src: url('../fonts/OpenSans-Regular.ttf');
	font-weight: 400;
}

@font-face {
	font-family: opensans;
	src: url('../fonts/OpenSans-Medium.ttf');
	font-weight: 500;
}

/* Root Elements */
body {
    background-color: var(--custom-bg-01) !important;
    padding-top: var(--custom-bodypadding-m);
    font-family: opensans !important;
}

/* Custom Classes */

/* Custom Border */
.cborder-bottom {
    border-bottom: 1px solid var(--custom-color-03);
}

/* Custom Button */
.cbutton {
    border-radius: 40px;
    padding: 13px 32px;
    border: none;
    background-color: var(--custom-color-02);
    color: #ffffff;
    text-decoration: none;
    transition: 0.4s;
}

.cbutton:focus {
    outline-style: none;
}

.cbutton:hover {
    background-color: var(--custom-color-01);
    color: #ffffff;
}

/* Custom Cookie */
.ccookie{
    background-color: rgb(85, 85, 85, 0.95);
    min-height: 10%; 
    position: fixed; 
    bottom: 0; 
    z-index: 101; 
    width: 100%; 
    padding-bottom: 10px;
    color: #000;
    transition: 0.4s;

}

.ccookiebuttonsettings {
    color: #ffffff;
    text-decoration: underline;
}

.ccookiebuttonsettings:hover {
    color: var(--custom-color-01);
    cursor: pointer;
}

/* Custom Container */
.ccontainer {
    width: var(--custom-width-01);
    max-width: 100%;
    margin: auto;
    padding: 0 12px;;
}

.ccontainernavmargin {
    margin-top: 100px;
}

/* Custom Font */
.cfont {
    font-size: large !important;
    font-family: var(--custom-font-01);
}

/* Custom Footer */
.cfooter {
    width: 100%;
    background-color: var(--custom-ft-01);
    color: var(--custom-color-03);
    padding: 75px 0 50px 0;
}

.cfooter p {
    margin: 0;
}

.cfooterBlock {
    margin-left: 75px;
    font-size: 1rem;
}

.cfooterBlockLink {
    text-decoration: none;
    color: var(--custom-color-03);
}

.cfooterBlockLink:visited {
    text-decoration: none;
    color: var(--custom-color-03);
}

.cfooterBlockLink:hover {
    color: var(--custom-color-01);
}

.cfooterBorder {
    border-left: 3px solid #DBBB62;
}

.cfooterCR {
    color: var(--custom-color-02);
}

.cfooterCRLink {
    color: var(--custom-color-02);
    text-decoration: none;
}

.cfooterCRLink:visited {
    color: var(--custom-color-02);
    text-decoration: none;
}

.cfooterCRLink:hover {
    color: var(--custom-color-01);
}

.cfooterHL {
    font-size: 1.5rem;
    color: var(--custom-color-02);
    margin-bottom: 20px;
}

.cfootericoninsta {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/instagram_2.svg');
    transition: 0.4s;
}

.cfootericoninsta:hover{
    background-image: url('../pics/icons/instagram_2_orange.svg');
}

.cfootericonlinkedin {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/linkedin.svg');
    transition: 0.4s;
}

.cfootericonlinkedin:hover{
    background-image: url('../pics/icons/linkedin_orange.svg');
}

.cfootericonxing {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/xing.svg');
    transition: 0.4s;
}

.cfootericonxing:hover{
    background-image: url('../pics/icons/xing_orange.svg');
}

.cfooterline {
    width: 100%; 
    margin: auto 0; 
    height: 1px; 
    background-color: var(--custom-color-03);
}

/* Form */
.cform {
    border-radius: 30px !important;
    box-shadow: 5px 5px 5px rgb(190, 190, 190);
}

.cform:focus {
    outline-style: none !important;
}

.cformlabel {
    color: var(--custom-color-03);
}

/* Custom Hero */
.cherocontact {
    position: relative;
}

.cheroerror {
    position: relative;
    max-width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
}

.cheroerrorhead {
    color: var(--custom-color-01);
    font-weight: 500;
    font-size: 3rem;
    line-height: 100%;
    margin-bottom: 20px;
}

.cheroerrorpicoutercontainer {
    height: 35vh;
}

.cheroerrorpicinnercontainer {
    height: 100%;
}

.cheroerrorpicture {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cheroerrortext {
    color: var(--custom-color-03);
    font-size: 1rem;
}

.cherosuccess {
    position: absolute;
    max-width: 100%;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 2;
}

.cherosuccesshead {
    color: var(--custom-color-02);
    font-weight: 500;
    font-size: 3rem;
    line-height: 100%;
    margin-bottom: 20px;
}

.cherosuccesstext{
    color: var(--custom-color-03);
    font-size: 2rem;
}

.cheroindexpiccontainer {
    position: absolute; 
    top: 0; 
    width: 100vw; 
    max-width: 100%; 
    height: 90vh; 
    max-height: 100%;
}

.cheroindexpiccontent0 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 1;
    background-image: url('../pics/h_logo1.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
}

.cheroindexpiccontent1 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 1;
    background-image: url('../pics/h_logo1.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation1;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation1 {
    0% {opacity: 0;}
    16% {opacity: 1;}
    100% {opacity: 1;}
}

.cheroindexpiccontent2 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 0;
    background-image: url('../pics/h_logo2.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation2;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation2 {
    0% {opacity: 0;}
    16% {opacity: 0;}
    32% {opacity: 1;}
    100% {opacity: 1;}
}

.cheroindexpiccontent3 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 0;
    background-image: url('../pics/h_logo3.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation3;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation3 {
    0% {opacity: 0;}
    32% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 1;}
}

.cheroindexpiccontent4 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 0;
    background-image: url('../pics/h_logo4.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation4;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation4 {
    0% {opacity: 0;}
    50% {opacity: 0;}
    66% {opacity: 1;}
    100% {opacity: 1;}
}


.cheroindexpiccontent5 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 0;
    background-image: url('../pics/h_logo5.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation5;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation5 {
    0% {opacity: 0;}
    66% {opacity: 0;}
    83% {opacity: 1;}
    100% {opacity: 1;}
}

.cheroindexpiccontent6 {
    position: relative;
    height: 75em; 
    width: 75em; 
    margin: 0 12px;
    opacity: 0;
    background-image: url('../pics/h_logo1.webp'); 
    background-position: center;
    background-repeat: no-repeat; 
    background-size: contain;
    z-index: 2;
    animation-name: cheroindexpiccontentanimation6;
    animation-duration: 12s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

@keyframes cheroindexpiccontentanimation6 {
    0% {opacity: 0;}
    83% {opacity: 0;}
    100% {opacity: 1;}
}

.chomesectionbuttondark {
    width: 100%;
    border-radius: 30px;
    margin-top: 15px;
    padding: 13px 32px 13px 32px;
    background-color: rgba(0, 0, 0, 0);
    color: #ffffff;
    border: 1px solid #ffffff;
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
}

.chomesectionbuttondark:focus {
    color: var(--custom-color-03);
}

.chomesectionbuttondark:hover {
    background-color: var(--custom-color-01);
    color: #ffffff;
    border: 1px solid var(--custom-color-01);;
}

.chomesectionbuttonlight {
    width: 100%;
    border-radius: 30px;
    margin-top: 15px;
    padding: 13px 32px 13px 32px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--custom-color-03);
    border: 1px solid var(--custom-color-03);
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
}

.chomesectionbuttonlight:focus {
    color: var(--custom-color-03);
}

.chomesectionbuttonlight:hover {
    background-color: var(--custom-color-01);
    color: #ffffff;
    border: 1px solid var(--custom-color-01);;
}

.chomesectioncontainer {
    min-height: 30vh;
}

.chomesectionheadlinedark {
    padding-bottom: 15px;
    font-size: 2rem;
    color: var(--custom-color-02);
}

.chomesectionheadlinelight {
    padding-bottom: 15px;
    font-size: 2rem;
    color: #ffffff;
}

.chomesectiontextdark {
    color: var(--custom-color-03);
    font-weight: 300;
}

.chomesectiontextlight {
    color: #ffffff;
    font-weight: 300;
}

.cimpdsgvo {
    min-height: 90vh; 
    background-color: #4F515C; 
    color: #ffffff;
}

.cimpdsgvo a:link {
    text-decoration: none;
    color: var(--custom-color-02);
}

.cimpdsgvo a:visited {
    text-decoration: none;
    color: var(--custom-color-02);
}

.cimpdsgvo a:hover {
    text-decoration: none;
    color: var(--custom-color-01);
    transition: 0.5s;
}

/* Custom Kontakt */
.ckontactcontainer {
    margin-left: auto;
}

.ckontaktDSlink {
    color: var(--custom-color-03);
}

.ckontaktDSlink:hover {
    color: var(--custom-color-01);
}

.ckontaktDSlink:visited {
    color: var(--custom-color-03);
}

/* Custom Link */

.clinkstd {
    color: var(--custom-color-03);
}

.clinkstd:hover {
    color: var(--custom-color-01);
}

.clinkstd:visited {
    color: var(--custom-color-03);
}

/* Custom Navbar */
.cnavcontainer {
    background-color: var(--custom-nav-02);
    transition: 0.5s;
}

.cnavcontainer.active {
    background-color: var(--custom-nav-01);
    transition: 0.4s;
}

.cnaviconburger {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/burgermenu.svg');
    transition: 0.4s;
}

.cnaviconburger[aria-expanded="true"] {
    background-image: url('../pics/icons/burgermenu_orange.svg');
}

.cnaviconmail {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/mail.svg');
    transition: 0.4s;
}

.cnaviconmail:hover {
    background-image: url('../pics/icons/mail_orange.svg');
}

.cnavicontel {
    height: 30px;
    width: 30px;
    background-image: url('../pics/icons/phone.svg');
    transition: 0.4s;
}

.cnavicontel:hover {
    background-image: url('../pics/icons/phone_orange.svg');
}

.cnavlink {
    color: var(--custom-color-03);
    font-weight: 500;
}

.cnavlink:visited {
    color: var(--custom-color-03);
    text-decoration: none;
    font-weight: 500;
}

.cnavlink:hover {
    color: var(--custom-color-01);
    text-decoration: none;
    font-weight: 500;
}

.cnavlinkactive {
    color: var(--custom-color-01);
    font-weight: 500;
}

.cnavlinkactive:visited {
    color: var(--custom-color-01);
    text-decoration: none;
    font-weight: 500;
}

.cnavlinkactive:hover {
    color: var(--custom-color-01);
    text-decoration: none;
    font-weight: 500;
}

.cnavlogo {
    height: 48px;
    max-width: 50vw;
}

.cnavtoggler {
    box-shadow: none !important;
}

/* Custo ReCaptccha */
.grecaptcha-badge { 
    z-index: 100;
}

/* Custom Texts */
.csloganleft {
    color: var(--custom-color-02);
    font-size: 1.75rem;
    font-weight: 500;
}

.csloganright {
    color: var(--custom-color-03);
    font-size: 1.25rem;
    font-weight: 400;
}

.customfooter {
    background-color: var(--custom-color-03);
    color: var(--custom-color-02);
    padding: 50px 16px 15px 16px;
    transition: 1s;
}

.customfooter p {
    margin: 0;
    font-size: large;
}

.customfooter span {
    color: var(--custom-color-01);
}

.customfooter a:link {
    text-decoration: none;
    color: var(--custom-color-02);
}

.customfooter a:visited {
    text-decoration: none;
    color: var(--custom-color-02);
}

.customfooter a:hover {
    text-decoration: none;
    color: var(--custom-color-01);
    transition: 0.75s;
}

/* Custom Video Fullscreen */
.cvideobgcontact {
    height: 35vh;
}

.cvideobghome {
    height: 100vh;
}

.footerfirstmargin {
    margin-left: 0px;
}

.uvisioncopyright {
    transition: 0.1s;
    color: #DBBB62 !important;
}

.uvisioncopyright:hover {
    color: #bb942a !important;
    transition: 0.75s;
}


/* Change navbar styling on big viewports */
@media (min-width: 768px) {
    .chomesectionbuttondark {
        width: auto;
    }

    .chomesectionbuttonlight {
        width: auto;
    }
}

@media (min-width: 992px) {
    /* Desktop Root Elements */
    body {
        padding-top: var(--custom-bodypadding-d);
    }

    /* Custom Classes */

    /* Custom Container */
    .ccontainernavmargin {
        margin-top: 150px;
    }

    /* Custom Hero */
    .cherocontact {
        position: absolute;
        max-width: 100%;
        top: 200px;
        left: 0;
        right: 0;
        z-index: 2;
    }

    .cheroerror {
        position: absolute;
        top: 250px;
        padding-left: 100px;
    }

    .cheroerrorpicoutercontainer {
        height: 100vh;
    }

    .cheroindexpiccontent0 {
        background-image: url('../pics/logo1.webp'); 
    }

    .cheroindexpiccontent1 {
        background-image: url('../pics/logo1.webp'); 
    }

    .cheroindexpiccontent2 {
        background-image: url('../pics/logo2.webp'); 
    }

    .cheroindexpiccontent3 {
        background-image: url('../pics/logo3.webp'); 
    }

    .cheroindexpiccontent4 {
        background-image: url('../pics/logo4.webp'); 
    }

    .cheroindexpiccontent5 {
        background-image: url('../pics/logo5.webp'); 
    }

    .cheroindexpiccontent6 {
        background-image: url('../pics/logo1.webp'); 
    }

    .cherosuccess {
        top: 40%;
    }

    .cherosuccesshead {
        font-size: 4rem;
    }
    
    .cherosuccesstext{
        font-size: 3rem;
    }

    .chomesectioncontainer {
        min-height: 70vh;
    }

    .chomesectionheadlinedark {
        font-size: 2.75rem;
    }

    .chomesectionheadlinelight {
        font-size: 2.75rem;
    }

    .chomesectiontextdark {
        text-align: justify;
    }

    .chomesectiontextlight {
        text-align: justify;
    }

    /* Custom Kontakt */
    .ckontactcontainer {
        margin-left: auto;
        width: 500px;
    }

    .cnavcontainer {
        background-color: var(--custom-nav-02);
    }

    .cnavcontainer.active {
        background-color: var(--custom-nav-01);
    }

    .cnavlogo {
        height: 48px;
    }

    /* Custom Texts */
    .csloganleft {
        font-size: 2.5rem;
    }

    .csloganright {
        font-size: 2rem;
    }

    /* Custom Video Fullscreen */
    .cvideobgcontact {
        height: 100vh;
    }

}

@media (min-width: 1200px) {

    .footerfirstmargin {
        margin-left: 15px;
    }
    
}