/* =global
--------------------------------------------------------------- */
.wrapper {
	width: 90%;
	max-width: 1410px;
	margin: 0 auto;
}
.hyphenate {
	-webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto
}

/* =header
--------------------------------------------------------------- */
.wrapper--header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 0 clamp(16px, 5.815603vw, 82px); 
}
.logo--govis {
	width: 45.744681%; /* 430 * 1.5 / 1410 */
	max-width: 19.545455em; /* 430/22 */
}
.logo--backslash {
	width: 27.12766%; /* 255 * 1.5 / 1410 */
	max-width: 11.590909em; /* 255/22 */
}
.logo svg {
	display: block;
	height: auto;
	width: 100%;
}


/* =intro
--------------------------------------------------------------- */
.intro {
	position: relative;
	background-color: var(--second-color);
	color: var(--bs-selected-theme-color);
}
.intro__img {
	min-height: 13em;
    object-fit: cover;
	clip-path: polygon(0 0,100% 0,100% calc(100% - 2rem),0 100%);
}
.intro__txt {
	padding: calc(var(--base-margin) * 1.5) 0;
}
.intro__title {
	display: flex;
	flex-direction: column;
	margin: 0 0 0.25em;
}
.intro__desc {
	font-size: var(--font-size__large);
	max-width: 1200px;
	margin: 0;
}
.intro__btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 2em 0;
	font-size: clamp(10px,1.702128vw,24px); /* 24/1410 */
}
.intro__btn a {
	position: relative;
	flex-direction: column;
	width: 8.333333em; /* 200/24 */
	height: 8.333333em; /* 200/24 */
	border-radius: 50%;
	box-shadow: var(--shadow-md);
}
.intro__btn a svg {
	font-size: 2em;
	margin: 0 0 0.1em 0.15em;
	color: var(--fg-color);;
}
.intro__btn a:hover {
	box-shadow: var(--shadow-sm);
}

/* =content
--------------------------------------------------------------- */

/* Allgemein */
.section {
	position: relative;
	padding: 3.5em 0;
}
.section--bg::after {
	content: "";
	position: absolute;
	width: 100vw;
	left: 50%;
    right: 50%;
    top: 0;
    bottom: 0;
    margin: 0 -50vw;
	background-color: var(--second-color);
	z-index: -1;
}
.section--bg-black {
	color: #fff;
}
.section--bg-black::after {
	background-color: #262626;
}
.section--bg-third-color::after {
	background-color: var(--third-color);
}
.section--bg-hi-lo-lo-hi {
	padding: calc(3.5em + 2rem) 0;
}
.section--bg-hi-lo-lo-hi::after {
	clip-path: polygon(0 0,100% 2rem,100% calc(100% - 2rem),0 100%);    
}
.section--bg-hi-hi-hi-lo {
	padding-bottom: calc(3em + 2rem);
}
.section--bg-hi-hi-hi-lo::after {
	clip-path: polygon(0 0,100% 0, 100% 100%, 0 calc(100% - 2rem));   
}
.section--bg-lo-hi-hi-hi {
	padding-top: calc(3em + 2rem);
}
.section--bg-lo-hi-hi-hi::after {
	clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%);
}
.section--narrow {
	max-width: 930px;
	margin: 0 auto;
}
.section__title {
	margin: 0 0 calc(var(--base-margin) * 1.75);
	text-align: center;
}

/* Package */
.section--package {
	text-align: center;
}
.card__fig {
	margin: 0 0 calc(var(--base-margin) * 1.5);
}
.package__lst {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2em;
	list-style: none;
}
.package__lst > * {
	margin: 0;
}
.package__content {
	font-size: var(--font-size__small);
}
.package__fig svg {
    width: 100%;
    max-width: 180px;
    height: auto;
}

/* Description */
.section--desc .section__title {
	text-align: left;
	margin: 0 0 calc(var(--base-margin) * 0.75);
}

/* Functions */
.functions__lst {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75em 1.5em;
	list-style: none;
	max-width: 1170px;
	margin: 0 auto 3em;
}
.functions__lst li {
	margin: 0;
}
.functions__lst li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0.5em 1em;
	border: 1px solid #8A8A8A;
	text-decoration: none;
	color: inherit;
	transition: border-color .15s;
}
.functions__lst li a svg {
	flex: 0 0 24px;
	margin: 0 0 0 1em;
	opacity: .4;
}
.functions__lst li a:hover {
	border-color: #000;
}
.functions__lst li a:hover svg {
	opacity: 1;
}

/* Features */
.section--features {
	margin: 3em 0;
}
.features__lst {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5em 3em;
	max-width: 1170px;
	margin: 0 auto;
	list-style: none;
}
.features__lst li {
	margin: 0;
	display: flex;
	height: 100%;
	padding: 0.5em;
	border-bottom: 1px solid #CCCCCC;
	text-decoration: none;
	color: inherit;
}
.features__lst li svg {
	flex: 0 0 auto;
	margin: 0 1.5em 0 0;
}

/* Testimonials */
.testimonials__lst {
	list-style: none;
}
.testimonials__lst li {
	margin: 0;
}
.testimonial {
	text-align: center;
}
.testimonial__title {
	display: flex;
	flex-direction: column;
}
.testimonial__name {
	margin: 0 0 .25em;
}
.testimonial__kunde {
	margin: .25em 0 0;
	font-size: var(--font-size__small);
	font-weight: normal;
}
.testimonial__content {
    padding: 0 1.5em;
}
.testimonial__desc {
	font-size: var(--font-size__small);
}
.testimonial__img {
	align-self: center;
	width: 50%;
    max-width: 200px;
    border-radius: 50%;
}
.section--testimonials .swiper-button-next:after, 
.section--testimonials .swiper-button-prev:after {
    font-size: 2em;
    color: #B1AB9B;
}
.section--testimonials .swiper-button-prev, 
.section--testimonials .swiper-rtl .swiper-button-next {
    left: -1em
}
.section--testimonials .swiper-button-next, 
.section--testimonials .swiper-rtl .swiper-button-prev {
    right: -1em;
}
.section--portfolio ::selection {
  background: inherit;
  color: inherit;
}

/* Teaser */
.section--teaser {
	max-width: 1100px;
    margin: 0 auto;
	text-align: center;
}
.section--teaser .section__title {
	margin: 0 0 calc(var(--base-margin) / 2);
}
.section--teaser .btn svg {
	margin: 0 0 0 0.5em;
	font-size: 1.5em;
    color: #fff;
}

/* Referenzen */
.referenzen__lst {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    list-style: none;
}
.referenzen__lst li {
    margin: 0;
}
.referenz__content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    padding: 0.9em 1.818182em;
    color: #fff;
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 34%,rgba(0,0,0,1) 90%);
    pointer-events: none;
}
.referenz__content>* {
    transition: transform .2s
}
.referenz:hover .referenz__content>* {
    transform: translateX(0.5rem);
}
.referenz__title {
	font-size: var(--font-size__base);
    font-weight: normal;
    text-align: left;
}
.referenz__fig {
    aspect-ratio: 3/2;
}
.referenz__fig img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover
}

/* =footer
--------------------------------------------------------------- */
.footer {
	padding: 1.5em 0;
    color: var(--bg-color);
    background-color: var(--fg-color);
}
.wrapper--footer {
    font-size: var(--font-size__small);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.wrapper--footer>* {
    width: 100%;
    margin-top: 1.5em;
}
@media screen and (min-width: 37.5em) {
	.wrapper--footer>* {
	    width: 48.9361702128%;
	}
}
@media screen and (min-width: 75em) {
	.wrapper--footer>* {
	    width: 23.4042553191%;
	}
}
.footer__link-lst--row {
    display: flex;
    font-size: var(--font-size__base);
}
.footer a {
    text-decoration: none;
}
.footer__subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}







