:root {
  --primary-color: #fd6a03; 
  --primary-color-darker: #E36002; 
  --secondary-color:#213F61;
  --third-color: #94B7EF;
    --grey-color: #F3F2F0;
}
.fas, [class^=icon-], [class*=\ icon-], .fa-classic, .fa-solid, .far, .fa-regular {
    font-family: 'Font Awesome 6 Pro'!important;
}

.icons{
  display:none;
}
.jmodedit{
  display:none;
}

.row>* {
    padding-right: calc(var(--gutter-x)* .5);
    padding-left: calc(var(--gutter-x)* .5);
    padding-bottom: calc(var(--gutter-x)* .5);
  padding-top: calc(var(--gutter-x)* .5);
   
}
/* positon */
@supports
 (display: grid) {
  .site-grid {
    display: grid;
    grid-template-areas: ". banner banner banner banner ." ". top-a top-a top-a top-a ." ". top-b top-b top-b top-b ." ". comp comp comp comp ." ". side-r side-r side-r side-r ." ". side-l side-l side-l side-l ." ". bot-a bot-a bot-a bot-a ." ". bot-b bot-b bot-b bot-b ."". bot-c bot-c bot-c bot-c ."". bot-d bot-d bot-d bot-d .";
    grid-template-columns: [full-start] minmax(0, 1fr) [main-start] repeat(4, minmax(0, 19.875rem)) [main-end] minmax(0, 1fr) [full-end];
    grid-gap: 0 1em;
  }
  .site-grid > [class^=container-],
  .site-grid > [class*=" container-"] {
    width: 100%;
    max-width: none;
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
  }
  .site-grid > .full-width {
    grid-column: full-start/full-end;
  }
  
@media
 (min-width: 992px) {
    .site-grid {
      grid-template-areas: ". banner banner banner banner ." ". top-a top-a top-a top-a ." ". top-b top-b top-b top-b ." ". side-l comp comp side-r ." ". bot-a bot-a bot-a bot-a ." ". bot-b bot-b bot-b bot-b ."". bot-c bot-c bot-c bot-c ."". bot-d bot-d bot-d bot-d .";
    }
  }
}



/*center content*/

.container-bottom-c>*, .container-bottom-d>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0.5em 0;
}

.container-bottom-d {
  display:block !Important;
}
.container-bottom-c>*, .container-bottom-d>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0.5em 0;
}

.container-bottom-c, .container-bottom-d {
    position: relative;
}

.container-bottom-c {
    grid-area: bot-c;
}
.container-bottom-d {
    grid-area: bot-d;
}

/*fonts*/
/* roboto-condensed-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: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('/media/templates/site/cassiopeia/fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-800 - 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: 'Roboto Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('/media/templates/site/cassiopeia/fonts/roboto-condensed-v27-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


h1,h2{
  font-family: 'Roboto Condensed',sans serif !important; 
}
 h1{
       font-size: 3em;
    font-weight: 200;
     text-align:left;
}
h2{
  font-size:  3em;
}
h2,h3{
  font-weight: 200;
  text-align:left;
  }
 
body,p{
    font-family:'Roboto Condensed',sans serif !important; 
  color: #5E5E5E !important;
  text-align: justify;
}
body{
  width:100vw;
  overflow-x:hidden !Important;
}

/*deactivate card*/
.card{
  border:0px !important;
}

.card-header {
    color: var(--card-cap-color);
    background-color: unset !important;
  border-bottom: 0px solid !important;
}

.card-body{
  padding:0px !important;
}

/*basics*/
a {color:var(--primary-color);}
a:hover{color:var(--secondary-color);}
a:focus {color:var(--primary-color);}

.centertext{
text-align:center;
}

.abstandshalter{
padding:20px;
}

.flexwrapper{
  display:flex;
}

@media
 only screen and (max-width: 600px) {
  .flexwrapper{
  display:block;
}
}


.verticalcenter{
  position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*text*/
h1,h2{
color: var(--primary-color-darker);
}
h1 a, h2 a, h3 a, h4 a{
text-decoration:none !Important;
}

/*Color*/
.primarycolor{
  color: var(--primary-color);
}
.white{
color:white;
}

.primarybg{
  padding:40px;
background-color: var(--primary-color-darker);
}

.secondarybg{
  padding:40px;
background-color: var(--secondary-color);
}

 .tertiarybg{
   padding:40px;
background-color: var(--third-color);
   color: var(--secondary-color) !Important;
 }
.greybg{
    padding:40px;
background-color: var(--grey-color);
}

@media only screen and (max-width: 768px) {
.greybg{
    padding:10px;
}
}


/*boxen*/
.centerbox{
width:fit-content;
margin:auto;
}

.width60{
width:60%;
margin:auto;
}

@media
 only screen and (max-width: 800px) {
  .width60{
    width:100%;
}
}

.width80{
  width:80%;
margin:auto;
}
@media
 only screen and (max-width: 600px) {
.width80{
  width:100%;
}
}

/*btn*/
button{
  color: black;
  border:1px solid black;
  background:transparent;
   padding:10px 15px 10px 15px;
   border-radius:20px;
}

button:hover{
  background: rgba(0, 0, 0, 0.05);
}
button i{
  margin-right:5px;
}
.primarybtn{
    padding: 10px 40px;
    background-color:var(--primary-color-darker);
  width:fit-content;
  border-radius:20px;
  color:white;
   text-decoration:none;
  margin:2px;
  display:block;
  border:0px solid;
}
.primarybtn a{
    color:white;
    text-decoration:none;
}
.primarybtn:focus{
  color:white !Important;
}
.primarybtn:hover,primarybtn a:hover {
  opacity:0.8;
  color:white !important;
  background: var(--primary-color-darker);
}

.primarybtnoutline{
    margin-right:2px;
  margin-left:2px;
  
      padding: 10px 40px;
    background-color:transparent;
  width:fit-content;
  border-radius:20px;
  color:var(--primary-color-darker);
  border: 1px solid var(--primary-color-darker);
   text-decoration:none;
    margin:2px;
  display:block;
}
.secondarybtn{
        padding: 10px 40px;
    background-color:var(--secondary-color);
  width:fit-content;
  border-radius:20px;

}
.secondary:hover{
  opacity:0.8;
}
.secondarybtn a{
    color:var(--primary-color);
    text-decoration:none;
}

.whitebtn{
        padding: 10px 40px;
    background-color:white;
  width:fit-content;
  border-radius:20px;

}
.whitebtn a{
    color:var(--primary-color);
    text-decoration:none;
}
.btn-secondary{
   background-color:var(--primary-color);
  color:white;
  }
.btn-secondary:hover{
   background-color:var(--primary-color);
  color:white;
   opacity:0.8;
  }
.btn-secondary:focus{
     background-color:var(--primary-color);
  color:white;
   opacity:0.8;
  }
.readmore span{
  display:none;
}

/* nav always collaps */
.header{
  margin-bottom:50px;
}
.navbar .navbar-collapse{
  animation-duration: 0.5s;

}


.navbar-collapse{
   opacity: 0;
    position: relative;
}
.navbar .show{
  min-height:80vh;
   opacity: 0;
   animation: moveinmenu 0.5s forwards ;
  margin-right:unset ;
}

@keyframes moveinmenu {
  from {
      transform: translateX(100px);
    opacity: 0;
  }
  to { 
    transform: translateX(0);
    opacity: 1;}
}




.container-header .navbar-collapse.show{
  display:block;
}

.navbar-brand{
  width:100px;
  position:absolute !important;
  top:0px;
}

.brand-logo{
  display:block;
}
.container-header {
    background-color: transparent;
    color:black;
    background-image: none;
}

.container-header .navbar-toggler{
  background:var(--primary-color-darker);
}

.container-header .navbar-toggler:after{
  content:"Menu";
}
.navbar{
    background:var(--primary-color-darker);
  position: absolute;
    top: 10px;
    right: 10px;
      border-radius: 30px;
}

.navbar ul{
  display:block !important;
}

.metismenu.mod-menu .metismenu-item {
  font-size:18px !important;
}
.container-header nav{
  /*min-height:80vh;*/
}

.cargoclaimlink{
      margin-top: 20px;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px 40px;
}

.container-header .navbar-collapse.show{
 
}

/*nav toggle stays right */
.navbar{
  display:block !important;
  text-align:right;
}
.container-header .container-nav {
   /* justify-content: space-between !important;*/
      width: fit-content;
    float: right;
}

/* Footer */

.footer{

  color:#424242;
      margin-top: -10px;
}

.footer{
   background-color:#F3F2F0;
    background-image: none;
}

.footer a, .footer p, .footer hr{
 color:#424242 !important;  
}

.footer .mod-custom {
width:100%;
}

/*Screen kleiner als 200 */
@media
 only screen and (max-width: 200px) {
h1, h2, h3{
  font-size:0.8em !important;
    word-wrap: break-word !important;
}
  }

@media
 only screen and (max-width: 200px) {
p{
  font-size:0.8em !important;
  word-wrap: break-word !important;

}
  }


/*offline Login*/
.offline-card .header{
    background-color: #ad003f;
    background-image: none;
    background-image: none;
    }

    .btn-primary {
    background-color: #ad003f;
    border:0px solid;
    color:White;
}
.offline-card .logo-icon{
  display:none;
}

.offline-card .header h1 img{
  display:none !Important;
}
.offline-card .header h1{
    background-image: url(https://www.kutzner-beratung.com/images/kutzner_logo_w.png);
    height: 5vw;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

/*reveal on scroll */
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 0.5s ease-in;
}
.active.fade-left {
  animation: fade-left 0.5s ease-in;
}
.active.fade-right {
  animation: fade-right 0.5s ease-in;
}


@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*home*/
.headerwrapper{
width:100%;
  overflow-x:hidden;
}
.headerwrapper h1{

}

  .headerimage{
    height:60vh;
    width:50vw;
    border-radius: 400px 0px 0px 400px;
    position: relative;
     background-image: url("/images/home/home_titel_osl.webp");
    background-size:cover;
    background-repeat:no-repeat;
        background-position: center;
    animation: movebg 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);

  animation-iteration-count: 1;
  animation-fill-mode: both;
    }

@keyframes movebg {
  to {
    background-position-x: -150px;

  }
}


@media only screen and (max-width: 768px) {
  .headerimage{
        margin-top: 20px;
    width: 100vw;
   height: 30vh;
  }
}

.col-12{
  margin-top:4px;
  margin-bottom:4px;
}
.servicewrapper .box{
  background: var(--secondary-color);
  border-radius:30px;
  color:White;
  padding:20px;
  padding-top:50px;
  padding-bottom:50px;
  height:100%;
  margin-top:4px;
  margin-bottom:4px;
}

.servicewrapper .box p{
  color:white !Important;
}
.servicewrapper .box i{
  color:var(--third-color);
  margin-right:4px;
}

.servicewrapper .box:hover i{
  color:var(--primary-color);
  transition:1s;
}

.servicewrapper .box h3{
  padding-top:20px;
  padding-bottom:20px;
}

.servicewrapper h2{
     color:var( --secondary-color);
  position:relative;
  top:20px;
}

@media only screen and (max-width: 1500px) {
.servicewrapper h2{
  top:5px;
}
}
.flexonphone{
  display:block;
    padding-bottom:0px;
}

@media only screen and (max-width: 768px) {
.flexonphone{
  display:flex;
  padding-bottom:10px;
}
  .servicewrapper .box h3{
    padding-top:2px;
    padding-bottom:2px;
  }
}

  .aboutwrapper{
    padding-top:10vh;
    padsding-bottom:10vh;
    }
.aboutwrapper h2{
  margin-left:-180px;
}
  .circlewrapper{
    height:100%;
    width:unset;
    aspect-ratio: 1 / 1;
    border-radius:100%;
    background:url("/images/home/home_about.webp"); 
   background-size: cover;
    }

  .label{
    display:block;
     background: var(--secondary-color);
    width:fit-content;
    padding:5px 10px 5px 10px;
    border-radius:20px;
    margin-bottom:20px;
        margin-top: -100px;
  }

  .label p{
    width:fit-content;
    margin:0px !important;
    color:white !important; 
  }



@media(max-width: 900px) {
  .circlewrapper{
     height:unset;
    width:100%;
  }
}
@media only screen and (max-width: 768px) {
 .aboutwrapper h2{
  margin-left:-20vw;
}
  .label{
    margin-top:-10px;
    
  }
}

@media only screen and (max-width: 576px) {
 .aboutwrapper h2{
  margin-left:-20px;
}
    .circlewrapper{
    margin-left:-25vw;
    width:200%;
  }
  }

@media only screen and (max-width: 300px) {
   .aboutwrapper h2{
  margin-left:0px;
     margin-top:20px;
}
  
  .circlewrapper{
    width:300%;
  }
  
.label{
  display:none;
}
  }

.contactwrapper a{
  color:White !Important;
      text-decoration: none!Impoortant;
}

  .contactwrapper h2, .contactwrapper p{
    color:white !important;
  }

  .contactwrapper{
    padding:50px;
    margin-top:200px;
      }

.contactwrapper i{
      color: var(--third-color);
  margin-right:10px;
}


.formwrapper .row>* {
   
    padding-bottom: 0px;
  padding-top: 0px;
   
}
  .formwrapper{
    width:100%;
    padding: 30px 20px 30px 20px;
    border-radius:50px; 
    background-color: var(--grey-color);
    margin-top:-200px;
  }

@media only screen and (max-width: 768px) {
  .formwrapper{
  margin-top:0px;
  }
}

@media only screen and (max-width: 576px) {
    .formwrapper{
    padding: 5px;
  }
  .contactwrapper{
    padding:10px;
  }
}

/* visform*/
/*roundlabel*/
/* .visforms .form-control, .visfroms .visCSSinput {
   border-radius: 20px !important;
   border:0px solid white!important;
 }*/
/*
.form-control:focus {
    color: var(--body-color);
    background-color: var(--body-bg);
    border: 1px solid #8893aa !important;
    outline: 0;
    box-shadow: none !Important;
}*/
/*hidelabel 
.visforms .form-group label{
  display:none !Important;
}
.visCSSlabel  {
  margin-top:0px !important;
}
.mod-visform1{
  display:flex !important;
}
.visCSSinput{
  width:100% !Important;
}
.fieldset-1 div{
  margin-left:0px;
  width:100% !Important;
}
.fieldset-1{
  --gutter-x: 1em;
    --gutter-y: 0;
    display: flex !important;
    flex-wrap: wrap;
  margin-left: calc(var(--gutter-x)*-.5);
    margin-right: calc(var(--gutter-x)*-.5);
    margin-top: calc(var(--gutter-y)*-1);
}*/

.visCSSrllst{
  font-size:18px;
}
/*label above */
.visCSSinput{
  width:100% !Important;
  padding-left: .6rem;
     border-radius: 20px !important;
  background:white !important;
   border:0px solid white!important;
    padding: 10px 15px ! Important;
  margin-top:4px;
}
.visCSSinput:focus {
    color: var(--body-color);
    background-color: var(--body-bg);
    border: 1px solid #8893aa !important;
    outline: 0;
    box-shadow: none !Important;
}

.visCSSlabel{
  width:100% !important;
}
/*.visform .form-group{
  display:block;
}

.visform .form-group .col-9{
  width:100% !Important; 
}
.visform .form-group label{
  width:100%
} */
/*textarea kleiner*/
.visform textarea{
  height:150px !Important;
}
#mod-visform1, #mod-visform2{
  width:80%;
  margin:auto !important;
}
.vis_mandatory{
      color: var(--main-color) !important;
}



/*visform datenschutz anpassen, dazu Klassen bei Visform Feld ergänzen */

.visforms .datenschutzlabel{
display:none ;
  }
.visforms .datenschutzinput .datenschutzlabel{
  display:block !Important;
      color: #ad4801;
  order:2;
  width:100%
}
.datenschutzinput{
  margin-right:10px;
  display:Flex;
}

.visform .btn:focus{
border:1px solid black;
      background-color: var( --third-color);
  }

.visform .btn{
      padding: 10px 15px 10px 15px; 
  /*padding: 10px 40px;*/
    background-color: var( --third-color);
    color:white;
    width: fit-content;
    border-radius: 20px;
    color: var(--secondary-color);
  width:100%;
    border:0px solid;
        border-radius:20px;
  text-align:center;

}
.visforms a, .contactpagewrapper .visforms a{
  color:  #ad4801 !Important;
}
.visCustomText{
  text-align:center;
  margin-top:10px;
}
/*visform error*/
.visforms .errorcontainer {
  position:relative;
  text-align:Right;
      height: 0px;
    margin-bottom: 0rem;
  color:black;
  padding-top:0px !important;
}

.error:before{
  content:" ";
  font-family: "Font Awesome 6 Pro";
      font-weight: bold;
}

.visform:not(.bt5):not(.uikit3) p.errorcontainer:after{
  display:none !Important;
}
.visform .errorcontainer .error {
  position:relative;
    background-color: var( --primary-color) !Important;
  padding:5px;
}

.visform input.error, .visform textarea.error, .visform select.error {
    border: 1px dotted var(--primary-color) !important;
}

.datenschutzinput .error:before{
  content:" " !Important;
}

.visform .requirednote{
  display:none !Important;
}



/*downloads*/
.downloadwrapper{
  margin-top:50px;
  margin-bottom:20vh;
}
.downloadwrapper .box {
    border-radius: 30px;
    color: White;
    padding: 30px 20px;
    height: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
}

.downloadwrapper .box:hover {
  opacity:0.7;
  transition:0.3s;
}

.downloadwrapper .primaryoutlinebg{
  border: 1px solid var( --primary-color-darker);
  color:var( --primary-color-darker);
}

.downloadwrapper .secondaryoutlinebg{
  border:1px solid var( --secondary-color);
  color:var( --secondary-color);
}
.downloadwrapper a{
  text-decoration:none !Important;
}

/*about*/
  .quotecircle{
    padding:20px;
    margin:Auto;
    width:fit-content;
    background:var(--third-color);
    border-radius:200px;
    aspect-ratio: 1 / 1;
    text-align:center;
    color:var(--secondary-color);
    margin-bottom:-50px;
    z-index:2;
    position:relative;
      }
  .quotewrapper{
    border-radius:20px;
  }

    .quotewrapper p{
        color:var(--secondary-color) !important;
    font-size:1.2em; 

  }

#img1{
  background: url("/images/home/about_1.webp"); 
  background-size:cover;
  width:90%; 
  height:80%;
  border-radius:20px;
  min-height:40vh;
 }
  #img2{
      background: url("/images/home/about_3.webp"); 
     background-size:cover;
    width:50%; 
    min-height:30vh;
    border-radius:20px;
  }

   #img3{
      background: url("/images/home/about_3.webp"); 
     background-size:cover;
    width:80%; 
    height:300px;
    border-radius:20px;
     display:none;
     margin-top:20vh;
  }
  

  @media only screen and (max-width: 768px) {
   .orderfirst{
    order:1 !Important;
  }
    .orderlast{
      order:2
        }
    #img2{
      display:none;
}
        #img3{
      display:block;
}
    #text1{
      margin-top:-5vh;
       } 
 }  

/*error*/

@media only screen and (max-width: 768px) {

    .errorwrapper .my-auto h1, .errorwrapper .my-auto h3 {
   text-align:center !important;
    }
     .errorwrapper .my-auto a {
margin:auto;
    }
}
  
  .errorwrapper h1{
    font-size:5em;
    }
  .ship{
    max-height:40vh;
  }

/*contact us*/
.contactpagewrapper a{
  color:White !Important;
      text-decoration: none!Impoortant;
}

  .contactpagewrapper h2, .contactpagewrapper p{
    color:white !important;
  }

  .contactpagewrapper{
    padding:50px;
    margin-bottom:150px;
      }

.contactpagewrapper i{
      color: var(--third-color);
  margin-right:10px;
}

.contactpagewrapper .formwrapper{
      margin-bottom: -200px;
  margin-top:0px;
}


/*fokusrahmen*/
button:focus, a:focus, li:focus, .navbar:focus{
  border:1px solid #A25822 !important; 
}

.tomainbtn{
  position:absolute !important;
  top:10px;
  left:10px;
  background:white;
  color:black !important;
  padding:10px;
  border:1px solid !important;
  z-index:200;
      transform: scale(0);
  border-radius:20px !important;
}
.tomainbtn:focus{
      transform: scale(1);
}

.row {
   list-style-type: none;
}