

@font-face {
	font-family: 'Myriad Pro Semibold';
	src: url('../fonts/Myriad Pro Semibold.eot');
	src: url('../fonts/Myriad Pro Semibold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Myriad Pro Semibold.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
  }
  
  @font-face {
	font-family: 'MyriadPro-Semibold';
	src: url('../fonts/MyriadPro-Semibold.svg#MyriadPro-Semibold') format('svg'),
		 url('../fonts/MyriadPro-Semibold.ttf') format('truetype'),
		 url('../fonts/MyriadPro-Semibold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
  }







/* CSS RESET */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	vertical-align: baseline;
	font-family: 'Rosario-Regular', Arial, Helvetica, sans-serif;
	
	font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
	display: block;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
a{
	text-decoration: none;
	margin: 0;
  	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
  width: 100%;
  display: block;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

html{
	scroll-behavior: smooth;
}




/* BASE STYLES */

:root{
	--main-color: #C1272D;
	--dark-color: #6E6C6C;
	--light-color: #F2F4F4;
}

.scroll-margin {
    scroll-margin-top: 80px;
}


h1{
	font-size: 2.25rem;
	margin-bottom: 24px;
	text-align: center;
}

h2{
	font-size: 1.375rem;
	color: var(--dark-color);
	margin-bottom: 100px;
	font-weight: normal;
	text-align: center;
}

h3{
	font-size: 1.56rem;
	margin: 28px 0 8px 0;
	
	text-align: center;
}

.padding_sect{
	padding: 0 2rem;
}





/* MAIN STYLES */




/* NAV */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	background: white;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-bottom: 2px solid var(--main-color);
	z-index: 1000000;
}

/* NAVIGATION */
.navbar {
	max-width: 1364px;
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-line-pack: center;
	-webkit-align-content: center;
	        align-content: center;
	height: 100px;
	overflow: hidden;
	padding: 0 1.5rem;
	/* gap: 50px;
	*/
}
.logo{
	width: 100%;
	max-width: 150px;
}
.navbar ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-grid-column-align: end;
	justify-self: end;
}
.navbar ul li a{
	font-family: 'MyriadPro-Semibold', Arial, Helvetica, sans-serif;
	font-size: 20px;
	
	color: black;
	margin-left:37px;
	
	padding-bottom: 0.2rem;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
  white-space: nowrap;
}
.navbar ul li a:hover{
	color: var(--main-color);
}
/* Scroll Spy */



.navigation li a.active {
  color: var(--main-color);
  
}
/* scroll SPy end */


li a.imp_dat{
	display: none;
}


/* MOBILE MENU & ANIMATION */
.menu-toggle .bar{
	width: 25px;
	height: 3px;
	background-color: black;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-toggle {
	-ms-grid-column-align: end;
	justify-self: end;
	margin-right: 15px;
	top: 30%;
	display: none;
	z-index: 10000
}
.menu-toggle:hover{
	cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(2){
	opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1){
	-webkit-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
	background-color: var(--main-color);
}
#mobile-menu.is-active .bar:nth-child(3){
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
	background-color: var(--main-color);
}


/* NAV END --> */


/* HERO*/

.hero>img{
	border-bottom: 3px solid var(--main-color);
	max-height: 762px;
}

.header_mob{
	display: none;
}

/* HERO ENDE ---> */


/* LEISTUNGEN */

#leistungen{
	padding: 100px 2rem;
}

.leistungen_container{
	max-width: 1364px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align:start;
	-webkit-align-items:flex-start ;
	    -ms-flex-align:start;
	        align-items:flex-start ;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 110px;
}

.leistungen_card{
	width: 100%;
	max-width: 308px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}

.leistungen_card img{
	max-width: 64px;
	height: 60px;
}

.leistungen_card p{
	font-size: 17px;
}

/* LEISTUNGEN ENDE ---> */


/* REFERENZEN */

#referenzen{
	padding: 100px 0 30px 0rem;
	background-color: var(--light-color);
}


.tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-evenly;
	-webkit-justify-content: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	max-width: 1364px;
	margin: 0 auto;
	
  }
  
  .tabs label {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	margin-bottom: 50px;
	cursor: pointer;
	/* background: var(--dark-color); */
	font-size: 18px;
	color: black;
	font-weight: bold;
	letter-spacing: 1px;
	-webkit-transition: background ease 0.2s;
	-o-transition: background ease 0.2s;
	transition: background ease 0.2s;
	
  }

  .tabs label:hover{
	background-color: var(--main-color);
	color: white;
  }
  
  .tabs .tab {
	-webkit-box-ordinal-group: 100;
	-webkit-order: 99;
	    -ms-flex-order: 99;
	        order: 99;
	/* flex-grow: 1; */
	width: 100%;

	display: none;
	/* padding: 1rem; */
	/* background: #fff; */
  }



  .tab_container{
	max-width: 1300px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 60px;
  }

  .tab_container img{
	max-width: 360px;
  }


  
  .tabs input[type=radio] {
	display: none;
  }
  
  .tabs input[type=radio]:checked + label {
	background: var(--main-color);
	color: white;
  }
  
  .tabs input[type=radio]:checked + label + .tab {
	display: block;
  }

  
  @media (max-width: 45em) {
	.tabs .tab,
  .tabs label {
	  -webkit-box-ordinal-group: initial;
	  -webkit-order: initial;
	      -ms-flex-order: initial;
	          order: initial;
	}
  
	.tabs label {
	  width: 100%;
	  margin-right: 0;
	  margin-top: 0.2rem;
	}
  }


  /* CTA */

  .cta{
	min-height: 75px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
	background-color: white;
	padding: 10px;
	margin: 50px 0 0 0;
  }

  .cta p{
	font-weight: bold;
	font-size: 2rem;
	text-align: center;

  }

  /* REFERENZEN ENDE ---> */


  /* KONTAKT */

  #kontakt{
	padding: 100px 0rem 0px 0;
  }


  .kontakt_container{
	max-width: 1364px;
	margin: 0 auto;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 90px;
  }

  .kontakt_card{
	width: 100%;
	max-width: 250px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	text-align: center;
  }

  .kontakt_card img{

	max-width: 80px;
  }

  .kontakt_card h3{
	margin: 18px 0 10px 0;
  }

  .kontakt_card p{
	font-size: 17px;
	font-weight: bold;
	color: var(--dark-color);
  }

  .kontakt_card a{
	font-size: 17px;
	font-weight: bold;
	color: var(--dark-color);
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
  }

  .kontakt_card a:hover{
	color: var(--main-color);
  }

  .whats{
	margin-top: 10px;
  }



  .cta2{
	max-width: 700px;
	text-align: center;
	margin: 120px auto 110px auto;
	padding: 0 2rem;
	font-size: 1.375rem;
	color: var(--dark-color);

  }


  footer{
	min-height: 80px;
	background-color: var(--main-color);
	color: white;
	font-weight: bold;
	letter-spacing: 1px;
	margin: 100px 0 0 0;
	font-size: 17px;
	
  }

  .footer_container{
	min-height: 80px;
	max-width: 1364px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-align: center;
	
	-webkit-align-items: center;
	
	    -ms-flex-align: center;
	
	        align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  footer a{
	font-size: 17px;
	font-weight: bold;
	color: white;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	
  }

  footer a:hover{
	color: black;
  }


  /* Social Footer */


  .social_container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
  }


  .social_icons{
	/* display: flex; */
	display: none;
  }

  .social_icons a{
	margin: 0 8px;
  }

  .instagram{
	width: 18px;
	height: 18px;
	content: url('../img/insta_icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.instagram:hover{
	width: 18px;
	height: 18px;
	content: url('../img/insta_icon_mo.svg');
}
.facebook{
	width: 18px;
	height: 18px;
	content: url('../img/face_icon.svg');
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.facebook:hover{
	width: 18px;
	height: 18px;
	content: url('../img/face_icon_mo.svg');
}



/* IMPRESSUM */


.impressum{
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: var(--dark-color);
	padding:2rem 1rem;
	z-index: 1;
	margin-top: 4rem;
}
.impressum p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	text-align: justify;
}
.impressum span{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--main-color);
}
.impressum a{
	font-size: 1.05rem;
	color: var(--dark-color);
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.impressum a:hover{
	color: #c5472091;
}
/* IMPRESSUM ENDE ---> */



/* DATENSCHUTZ */


.datenschutz{
	max-width: 1364px;
	margin: 0 auto;
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 6;
	grid-area: datenschutz;
	color: var(--dark-color);
	padding:2rem 1rem;
	z-index: 1;
	margin-top: 4rem;
}
.datenschutz p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	text-align: justify;
}
.datenschutz span{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--main-color);
}
.datenschutz a{
	font-size: 1.05rem;
	color: var(--dark-color);
	-webkit-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.datenschutz a:hover{
	color: #c5472091;
}
/* DATENSCHUTZ ENDE ---> */