@import url("css/fonts.css");
@import url("css/variables.css");

@import url("css/templates/header.css");
@import url("css/templates/footer.css");

@import url("css/shared/formulare.css");

@import url("css/modules/abstandsblock.css");
@import url("css/modules/akkordeonblock.css");
@import url("css/modules/ankerblock.css");
@import url("css/modules/anamneseblock.css");
@import url("css/modules/bildblock.css");
@import url("css/modules/jobblock.css");
@import url("css/modules/leistungenblock.css");
@import url("css/modules/steckbriefblock.css");
@import url("css/modules/teamblock.css");
@import url("css/modules/textblock.css");

html {
    font-size: var(--fontsize-base);
}

body {
    font-family: Asap, Helvetica, Arial, sans-serif;
    color: var(--gw-blue-dark);
    background-color: white;
    margin: 0;
}

a[href^="tel"]:not(.btn) {
  color: inherit;
  text-decoration: none;
}
a[href^="tel"]:not(.btn):hover {
    text-decoration: none;
}

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.maxwidth,
.maxwidth-s,
.maxwidth-m,
.maxwidth-l,
.maxwidth-xl {
    position: relative;
    width: 100%;
    max-width: var(--maxwidth-l);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

.maxwidth-s {
    max-width: var(--maxwidth-s);
}
.maxwidth-m {
    max-width: var(--maxwidth-m);
}
.maxwidth-l {
    max-width: var(--maxwidth-l);
}
.maxwidth-xl {
    max-width: var(--maxwidth-xl);
}

.btn {
    display: inline-block;
    color: var(--btn-default-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 1.5rem;
    background-color: var(--btn-default-bg-color);
    border-radius: var(--btn-border-radius);
    transition: background 0.3s;
}
.btn:hover {
    background-color: var(--gw-blue);
}

.btn-sm {
    font-size: 0.9rem;
}

.btn-lg {
    padding: 0.6rem 3rem;
}

.btn-green {
    background-color: var(--gw-green);
}
.btn-green:hover {
    background-color: var(--gw-blue-green);
}

main h1, main .h1,
main h2, main .h2,
main h3, main .h3,
main h4, main .h4 {
    color: var(--headline-color);
}

main h2, main .h2 {
    font-size: 1.5rem;
}

main article {
    line-height: 1.5;
    margin-top: 3rem;
    margin-bottom: 3rem;
}