@charset "utf-8";

:root {
  	--base-color: #21509d;
	--blau: #21509d;
	--hellblau: #dee5f0;
	--kuerbis: #e0723c;
	--schwarz: #000;
	--weiss: #fff;
  	--main-font: 'Roboto Slab';
  	--alt-font: 'Roboto Slab';
}

.bg-blau { background-color: var(--blau); }
.bg-hellblau { background-color: var(--hellblau); }
.bg-kuerbis { background-color: var(--kuerbis); }
.bg-schwarz { background-color: var(--schwarz); }
.bg-weiss { background-color: var(--weiss); }

.text-blau, .btn-link.text-blau, a.text-blau-hover:hover { color: var(--blau); }
.text-hellblau, .btn-link.text-hellblau, a.text-hellblau-hover:hover { color: var(--hellblau); }
.text-kuerbis, .btn-link.text-kuerbis, a.text-kuerbis-hover:hover { color: var(--kuerbis); }
.text-schwarz, .btn-link.text-schwarz, a.text-schwarz-hover:hover { color: var(--schwarz); }
.text-weiss, .btn-link.text-weiss, a.text-weiss-hover:hover { color: var(--weiss); }

.border-blau { border-color: var(--blau); }
.border-hellblau { border-color: var(--hellblau); }
.border-kuerbis { border-color: var(--kuerbis); }
.border-hellblau { border-color: var(--hellblau); }
.border-schwarz { border-color: var(--schwarz); }
.border-weiss { border-color: var(--weiss); }

.btn.btn-blau { background: var(--blau); border-color: var(--blau); color: var(--weiss); }
.btn.btn-blau:hover, .btn.btn-blau:focus { background: transparent; border-color: var(--blau); color: var(--blau); text-decoration: none; }

.btn.btn-hellblau { background: var(--hellblau); border-color: var(--hellblau); color: var(--blau); }
.btn.btn-hellblau:hover, .btn.btn-hellblau:focus { background: transparent; border-color: var(--blau); color: var(--blau); text-decoration: none; }

.btn.btn-kuerbis { background: var(--kuerbis); border-color: var(--kuerbis); color: var(--weiss); }
.btn.btn-kuerbis:hover, .btn.btn-kuerbis:focus { background: transparent; border-color: var(--kuerbis); color: var(--kuerbis); text-decoration: none; }

.btn.btn-schwarz { background: var(--schwarz); border-color: var(--schwarz); color: var(--weiss); }
.btn.btn-schwarz:hover, .btn.btn-schwarz:focus { background: transparent; border-color: var(--schwarz); color: var(--schwarz); text-decoration: none; }

.btn.btn-weiss { background: var(--weiss); border-color: var(--weiss); color: var(--schwarz); }
.btn.btn-weiss:hover, .btn.btn-weiss:focus { background: transparent; border-color: var(--weiss); color: var(--weiss); text-decoration: none; }

.alt-font {
	font-family: var(--alt-font);
	font-weight: 800;
}

.main-font {
	font-family: var(--main-font);
	font-weight: 400;
}

@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 100;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-100.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-100.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 200;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-200.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-200.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-300.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-regular.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-500.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-600.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-600.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-700.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-800.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-800.woff') format('woff');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: local(''),
       url('../fonts/roboto-slab-v24-latin-900.woff2') format('woff2'),
       url('../fonts/roboto-slab-v24-latin-900.woff') format('woff');
}

a, a:active, a:focus {
	color: inherit;
	text-decoration: none;
}

a:hover, a:active {
	color: inherit;
	text-decoration: underline;
}

.form-control, .form-select, .file-upload-input {
    border: 2px solid var(--weiss);
}

.scroll-top-arrow, .scroll-top-arrow:focus {
	color: var(--weiss);
	background: var(--kuerbis);
	line-height: 50px;
	display: none;
	height: 50px;
	width: 50px;
	padding: 0;
	position: fixed;
	right: 35px;
	text-align: center;
	text-decoration: none;
	bottom: 35px;
	z-index: 10006;
	border-radius: 100%;
}

.scroll-top-arrow:hover {
	background: var(--blau);
	color: var(--weiss);
	border-color: var(--blau);
}

/* POFO List-Style #3 */

.list-style-3 {
	list-style: none;
	margin: 0;
	padding: 0;
}

.list-style-3 li {
	position: relative;
	padding: 0 0 0 30px;
	margin: 0 0 10px 0;
}

.list-style-3 li:before {
	content: "";
	width: 15px;
	height: 3px;
	background-color: var(--blau);
	position: absolute;
	top: 14px;
	left: 0;
}

header.header-appear nav.bootsnav.header-light-transparent .navbar-nav > li.active > a, 
header.header-appear nav.bootsnav.header-light .navbar-nav > li.active > a, 
header nav.navbar .navbar-nav > li.active > a, 
nav.navbar.bootsnav ul.nav > li.active > a {
	color: var(--blau);
	border-bottom: 5px solid var(--blau);
}

.portfolio-filter-tab-1 li {
	margin: 0 25px;
	display: inline-block;
	float: none;
}

.portfolio-filter-tab-1 li {
	background: var(--weiss);
	border: none;
	padding: 0 0 2px 0;
	display: inline;
	color: var(--blau);
	margin: 0;
}

.portfolio-filter-tab-1 li:hover, 
.portfolio-filter-tab-1 li:focus,
.portfolio-filter-tab-1 li.active {
	background: var(--blau);
	color: var(--weiss);
}

/* Hamburger */
.navbar-toggler-icon {
  background-image: none!important;
  background-color: var(--bs-gray-800);
  height: 3px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-toggler-icon::before {
  display: block;
  background-color: var(--bs-gray-800);
  height: 3px;
  content: "";
  position: relative;
  top: -7px;
  transition: all 0.15s ease-out;/*taken down to hide quicker*/
  transform-origin: center;
}

.navbar-toggler-icon::after {
  display: block;
  background-color: var(--bs-gray-800);
  height: 3px;
  content: "";
  position: relative;
  top: 4px;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.navbar-dark .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after {
  background-color: var(--bs-gray-100);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-90deg) translateX(7px);
}

/* Mobile Navi */

@media (max-width: 991px) {

#navi-anders {
	font-size: 20px;
	box-shadow: 0px 20px 30px -10px rgba(0,0,0,0.3);
}

.title-extra-large {font-size: 70px; line-height:70px}

}

header nav .navbar-nav > li {
	color: var(--blau);
	font-size: 14px;
	font-weight: 800;
	margin: 0 11px;
	padding: 5px 0px 5px;
	text-transform: uppercase;
}

header nav .navbar-nav.text-normal > li > a {
	font-weight: 800;
	font-size: 14px;
}

header a.logo img {
	max-height: 40px;
}

.logo-holder img {
	max-height: 40px;
}

.footer-logo {
	max-height: 100px;
}

.text-middle-line {
	position: relative;
	white-space: nowrap;
}

.text-outside-line {
	position: relative;
}

.text-outside-line::before {
	border-top: 5px solid;
	content: "";
	height: 0;
	left: auto;
	position: absolute;
	right: -60px;
	top: 50%;
	width: 40px;
	opacity: .4;
}

.text-outside-line::after {
	border-top: 5px solid;
	content: "";
	height: 0;
	left: auto;
	position: absolute;
	left: -60px;
	top: 50%;
	width: 40px;
	opacity: .4;
}

.text-outside-line-left {
	position: relative;
}

.text-outside-line-left::before {
	border-top: 5px solid;
	content: "";
	height: 0;
	left: auto;
	position: absolute;
	left: -100%;
	top: 50%;
	width: 90%;
	opacity: .2;
}

.text-startside-line {
	position: relative;
	padding-left: 35px;
}

.text-startside-line:before {
	border-top: 5px solid;
	content: "";
	height: 0;
	left: auto;
	position: absolute;
	left: 0;
	top: 45%;
	width: 25px;
	opacity: .7;
}

.text-outside-line-full {
	position: relative;
	display: inline-block;
}

.text-outside-line-full::before {
	content: "";
	position: absolute;
	top: 50%;
	height: 5px;
	width: 99%;
	display: block;
	border-bottom: 5px solid;
	right: 100%;
	margin-right: 25px;
	opacity: .15;
}

.text-outside-line-full::after {
	content: "";
	position: absolute;
	top: 50%;
	height: 5px;
	width: 99%;
	display: block;
	border-bottom: 5px solid;
	left: 100%;
	margin-left: 25px;
	opacity: .15;
}

.text-middle-line:before {
	border-bottom: 5px solid;
	position: absolute;
	content: "";
	width: 100%;
	top: 53%;
	opacity: 0.35;
}

.text-bottom-line {
	width: 1px;
	border-top: 30px solid;
	margin-left: auto;
	margin-right: auto;
}

.text-middle-line-deep-pink:before {
	border-bottom: 5px solid var(--base-color);
	position: absolute;
	content: "";
	width: 100%;
	margin-top: 5px;
	margin-left: -20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.text-decoration-line-through-black,.text-decoration-line-through-deep-pink {
	position: relative;
}

.text-decoration-line-through-deep-pink:before {
	background: var(--base-color);
}

.text-decoration-line-through-black:before {
	background: #000;
}

.text-decoration-line-through-black::before,.text-decoration-line-through-deep-pink:before {
	content: "";
	height: 5px;
	left: -10px;
	position: absolute;
	top: 52%;
	width: calc(100% + 20px);
	-webkit-transform: translateY(-52%);
	-moz-transform: translateY(-52%);
	-ms-transform: translateY(-52%);
	-o-transform: translateY(-52%);
	transform: translateY(-52%);
}

.white-move .swiper-slide, 
.black-move .swiper-slide, 
.white-move.swiper-vertical-pagination .swiper-slide, 
.black-move.swiper-vertical-pagination .swiper-slide {
	cursor: -webkit-grab; 
	cursor: -moz-grab; 
	cursor: grab;
}

/* Usercentrics */ 
div.quform-input .uc-text-embedding.consent-not-exists  {
	padding: 30px;
	color: var(--weiss);
	background: var(--kuerbis);
}

.shadow-3d {
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	transition: 0.2s;
}
.shadow-3d:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}

.text-verlauf {
	color: #fff;
	background-image: linear-gradient(90deg, #21509d 25%, #18376e 75%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

span.email:before {
	content: 'info@andersgmbh.de';
}

.text-unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.text-trennung {
-webkit-hyphens: auto;
   -moz-hyphens: auto;
    -ms-hyphens: auto;
     -o-hyphens: auto;
        hyphens: auto;
-webkit-hyphenate-limit-lines: 5;
   -moz-hyphenate-limit-lines: 5;
    -ms-hyphenate-limit-lines: 5;
        hyphenate-limit-lines: 5;
-webkit-hyphenate-limit-chars: 10;
   -moz-hyphenate-limit-chars: 10;
    -ms-hyphenate-limit-chars: 10;
        hyphenate-limit-chars: 10;
      word-wrap: break-word;
  overflow-wrap: break-word;
}

/* File-Upload-Formular */

.custom-file-upload-hidden {
	display: none;
	visibility: hidden;
	position: absolute;
	left: -9999px;
}

.custom-file-upload {
	display: block;
	width: auto;
}

.custom-file-upload label {
	display: block;
	margin-bottom: 5px;
}

.file-upload-wrapper {
	position: relative;
	margin-bottom: 0.5rem;
	display: table;
	width: 100%;
}

.file-upload-input {
	width: calc(100% - 175px);
	background-color: var(--weiss);
	border: 2px solid var(--weiss);
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	float: left;
	height: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-bottom: 0;
}

.file-upload-button {
	cursor: pointer;
	display: inline-block;
	color: white;
	padding: 11px;
	border: none;
	margin-left: -2px;
	background-color: var(--schwarz);
	float: left;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	width: 177px;
	height: 50px;
	white-space: nowrap;
	line-height: 1;
}

.file-upload-button:hover {
	background-color: var(--blau);
}

/* Checkbox Radiobuttons Selectboxes */

.control-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.control {
	display: block;
	position: relative;
	padding-left: 45px;
	margin-bottom: 15px;
	cursor: pointer;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.control__indicator {
	position: absolute;
	top: 8px;
	left: 0;
	height: 30px;
	width: 30px;
	background: #fff;
	border: 0;
}

.control--radio .control__indicator {
	border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #fff;
}

.control input:checked ~ .control__indicator {
	background: var(--blau);
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: var(--blau);
}

.control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}

.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.control input:checked ~ .control__indicator:after {
	display: block;
}

.control--checkbox .control__indicator:after {
	left: 10px;
	top: 3px;
	width: 10px;
	height: 20px;
	border: solid var(--weiss);
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
	left: 7px;
	top: 7px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
}

 /* Customize the label (the container) */
.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border: 2px solid #000;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #c0c0c0;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 