/*!
 * Theme CSS Styles
 */


 @font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-MediumItalic.woff2') format('woff2'),
        url('fonts/OpenSans-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-BoldItalic.woff2') format('woff2'),
        url('fonts/OpenSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Bold.woff2') format('woff2'),
        url('fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-SemiBoldItalic.woff2') format('woff2'),
        url('fonts/OpenSans-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Medium.woff2') format('woff2'),
        url('fonts/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Italic.woff2') format('woff2'),
        url('fonts/OpenSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
        url('fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-LightItalic.woff2') format('woff2'),
        url('fonts/OpenSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Light.woff2') format('woff2'),
        url('fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




/* Schriften */

html {
    font-size: 22px;
}

body {
    font-family: 'Open Sans';
    font-weight: 400;
    line-height: 1.6;
    color: #3E4144;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans';
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
}

p {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 3.5px;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.9rem;
    padding-bottom: 20px;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.4rem;
}

a,
a:active,
a:visited,
a:focus,
a:focus-visible {
    color: #781B77;
    text-decoration: none;
}



/* Allgemein */

main, #footer {
    width: calc(100% - 525px);
}

main {
    min-height: 100vh;
}

.row {
    width: 84%;
    margin: 0 auto;
    padding-right: 8%;
}

.button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #fff !important;
    background: rgb(196,214,0);
    background: linear-gradient(127deg, rgba(196,214,0,1) 0%, rgba(214,164,0,1) 100%);
    padding: 16px 32px 16px;
    font-size: .95rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

.button:hover {
    background: rgb(196,214,0);
    background: linear-gradient(127deg, rgba(196,214,0,1) 0%, rgba(214,164,0,1) 100%);
}

.button span {
    position: relative;
}

.button.mit-icon {
    padding: 16px 57px 16px 32px;
}

.button.mit-icon span:after {
    content: '';
    height: 20px;
    width: 20px;
    display: inline-block;
    position: absolute;
    right: -30px;
    top: calc(50% - 9px);
    background-image: url(/wp-content/uploads/2023/11/Icon-ionic-ios-arrow-forward.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 400ms ease-in-out;
}

.button.rundgang-button {
    width: 180px;
    height: 180px;
    padding: 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: rgb(196,214,0);
    background: linear-gradient(127deg, rgba(196,214,0,1) 0%, rgba(214,164,0,1) 100%);
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

.button.rundgang-button span:after {
    content: '';
    height: 36px;
    width: 36px;
    display: block;
    position: relative;
    margin: 15px auto 0;
    background-image: url(/wp-content/uploads/2023/11/Icon-awesome-play-circle.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-button-wrapper {
    margin-top: 5vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cta-button-wrapper a:not(:last-child) {
    margin-right: 3vw;
}

section:not(.asp-block-007) {
    padding-top: 12vh;
}

section:last-of-type {
    padding-bottom: 12vh;
}

.section-title-wrapper .lead {
    padding-bottom: 50px;
}


/* Header / Menü */

#header {
    position: fixed;
    right: 0;
    top: 0;
    width: 525px;
    height: 100%;
    background: #000;
    color: #fff;
    padding: 65px 125px 75px 75px;
    display: flex;
    flex-direction: column;
    z-index: 9998;
}

.logged-in #header {
    top: 32px;
}

@media all and (max-width: 982px) {
    .logged-in #header {
        top: 46px;
    }
}

a.logo {
    display: block;
    width: 310px;
    margin-right: 0;
    margin-left: auto;
}

ul#primary-menu,
ul#primary-menu ul {
    padding: 0;
    list-style-type: none;
    text-align: right;
}

ul#primary-menu a {
    color: #fff !important;
}

ul#primary-menu > li:not(:last-child) {
    padding-bottom: 10px;
}

ul#primary-menu > li > a {
    font-size: 1.4rem;
    font-weight: 500;
}

.menu-wrapper {
    padding-top: 55px;
    flex-grow: 1;
}

.menu-button-wrapper {
    padding-top: 15px;
    text-align: right;
}

.menu-button-wrapper > span {
    font-size: 1.1rem;
    font-weight: 300;
    display: block;
    padding-bottom: 15px;
}

ul.sub-menu {
    display: none;
}

ul.sub-menu li {
    padding-top: 5px;
}


/* Mobile Header */

.mobile-header {
    height: 100px;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
}

.logged-in .mobile-header {
    top: 32px;
}

@media all and (max-width: 982px) {
    .logged-in .mobile-header {
        top: 46px;
    }
}

.mobile-logo-wrapper {
    display: inline-block;
}
  
.menu-trigger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 50px;
    cursor: pointer;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .3s;
    position: relative;
}

.menu-trigger span + span {
    margin-top: 10px;
}

.menu-trigger.active span:nth-child(1) {
    animation: ease .7s top forwards;
}

.menu-trigger.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}

.menu-trigger.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}

.menu-trigger.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}

.menu-trigger.active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}

.menu-trigger.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
0% {
    top: 0;
    transform: rotate(0);
}
50% {
    top: 14px;
    transform: rotate(0);
}
100% {
    top: 14px;
    transform: rotate(45deg);
}
}

@keyframes top-2 {
0% {
    top: 14px;
    transform: rotate(45deg);
}
50% {
    top: 14px;
    transform: rotate(0deg);
}
100% {
    top: 0;
    transform: rotate(0deg);
}
}

@keyframes bottom {
0% {
    bottom: 0;
    transform: rotate(0);
}
50% {
    bottom: 14px;
    transform: rotate(0);
}
100% {
    bottom: 14px;
    transform: rotate(135deg);
}
}

@keyframes bottom-2 {
0% {
    bottom: 14px;
    transform: rotate(135deg);
}
50% {
    bottom: 14px;
    transform: rotate(0);
}
100% {
    bottom: 0;
    transform: rotate(0);
}
}

@keyframes scaled {
50% {
    transform: scale(0);
}
100% {
    transform: scale(0);
}
}

@keyframes scaled-2 {
0% {
    transform: scale(0);
}
50% {
    transform: scale(0);
}
100% {
    transform: scale(1);
}
}




/* Hero Section */

.asp-block-007 {
    height: 100vh;
    padding: 15vh 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.asp-block-007::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .2);
}

.asp-block-007 h1 {
    color: #fff;
    text-transform: uppercase;
}

.asp-block-007 .lead {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 2.5px;
    max-width: 1000px;
}

.home .asp-block-007 .lead {
    max-width: 700px;
}

.asp-block-007 .page-title-row,
.asp-block-007 .page-title-row .col {
    height: 100%;
}


/* Bilder Links zu Unterseiten */

.links-blocks-row {
    display: flex;
    flex-wrap: wrap;
}

.links-blocks-row .col:not(:only-child) {
    width: 46%;
    margin-right: 8%;
}

.links-blocks-row .col {
    margin-bottom: 8vh;
    position: relative;
}

.sdag-block-links {
    margin-bottom: -8vh;
}

.links-blocks-row .col:only-child {
    width: 100%;
}

.links-blocks-row .col:only-child,
.links-blocks-row .col:nth-child(2n) {
    margin-right:0 !important;
}

.links-blocks-row .col a.links-block {
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-end;
    justify-content: flex-start;
    height: 34vh;
}

.links-blocks-row .col:only-child a.links-block {
    height: 44vh;
}

.links-block-details {
    z-index: 9;
}

.links-block-details h4 {
    font-weight: 600;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-left: 25px;
    z-index: 9;
}

.links-blocks-row .col a.links-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .2);
    pointer-events: none;
}



/* Info Section */

.info-blocks-row {
    display: flex;
    flex-wrap: wrap;
}

.info-blocks-row .col {
    width: 30.66%;
    margin-right: 4%;
    background: rgba(196, 214, 0, .2);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3vh 1.5vw;
}

.info-blocks-row .col:nth-child(3n) {
    margin-right: 0;
}

.info-img-wrapper {
    background: rgb(196,214,0);
    background: linear-gradient(127deg, rgba(196,214,0,1) 0%, rgba(214,164,0,1) 100%);
    width: 5vw;
    height: 5vw;
    padding: .75vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2vh;
}

.info-img-wrapper img {
    height: 100%;
    width: auto;
}

.info-blocks-row h4 {
    font-size: 95%;
    color: #000;
    font-weight: 400;
}

.info-blocks-row h4 strong,
.info-blocks-row h4 b {
    font-weight: 500;
    display: block;
}


/* Gallery Section */

img.slide-arrow {
    position: absolute;
    top: calc(50% - 25px);
    left: 25px;
    height: 50px;
    width: auto;
    z-index: 9;
    cursor: pointer;
}

img.slide-arrow.next-arrow {
    left: auto;
    right: 25px;
}

.gallery-item {
    position: relative;
    height: 0;
    display: block;
    padding-top: 48vh;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Inhalt Sections */

.sdag-block-content .half-half-row {
    display: flex;
    flex-wrap: wrap;
}

.sdag-block-content .half-half-row .col {
    width: 46%;
    margin-right: 8%;
}

.sdag-block-content .half-half-row .col:last-child {
    margin-right: 0;
}

.black-box {
    background: #000;
    color: #fff;
    padding: 1vw 2.5vh;
    margin-top: 15px;
}

.black-box h4 {
    color: #fff;
    font-size: 1rem;
}


/* Über uns */

figure.wp-block-image.size-full {
    margin: 0 !important;
    width: 100%;
}

.sdag-block-team {
    margin-bottom: -4vh;
}

.team-col {
    display: flex;
    flex-wrap: wrap;
}

.team-item {
    width: 29.33%;
    margin-right: 6%;
    margin-bottom: 4vh;
}

.team-item:nth-child(3n) {
    margin-right: 0;
}

h4.team-name {
    font-size: 1rem;
    text-transform: uppercase;
}

.team-contact {
    padding-top: 10px;
}

.team-contact a:not(:last-child) {
    margin-right: 10px;
}


/* Kontakt */

.contact-row {
    display: flex;
    flex-wrap: wrap;
    font-size: 90%;
}

.contact-row .col {
    width: 46%;
    margin-right: 8%;
}

.contact-row .col:last-child {
    margin-right: 0;
}

.contact-row h4 {
    font-size: 1rem;
    font-weight: 600;
}

.contact-row a {
    color: #3E4144;
}

.direction-note {
    font-size: 90%;
}

.map-row {
    margin-top: 25px;
}

div#map {
    margin-top: 25px;
    height: 40vh;
}


/* Gravity Forms */

.gform_wrapper.gravity-theme {
    max-width: 750px;
}

.gform_wrapper.gravity-theme .gform_validation_errors,
.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
    display: none !important;
}

.gform_wrapper.gravity-theme .gfield_label {
    display: none !important;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 3% !important;
    grid-row-gap: 3vh !important;
}

.gform_wrapper.gravity-theme input:not(.gform_button),
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select {
    border-radius: 0 !important;
    border-width: 2px !important;
    border-color: #3E4144;
    font-size: 85% !important;
    padding: 10px 15px !important;
}

.gform_wrapper.gravity-theme input:not(.gform_button)::-ms-input-placeholder,
.gform_wrapper.gravity-theme textarea::-ms-input-placeholder,
.gform_wrapper.gravity-theme select::-ms-input-placeholder {
    color: #3E4144;
}
  
.gform_wrapper.gravity-theme input:not(.gform_button)::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder,
.gform_wrapper.gravity-theme select::placeholder {
    color: #3E4144;
}

.gform_wrapper.gravity-theme .gfield_error input:not(.gform_button),
.gform_wrapper.gravity-theme .gfield_error textarea,
.gform_wrapper.gravity-theme .gfield_error select {
    border-color: #c02b0a !important;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border: 2px solid #3E4144 !important;
}

.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
    justify-content: flex-end;
}

.gform_wrapper.gravity-theme .gform_button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #fff !important;
    background-color: #000;
    padding: 16px 32px 16px;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
    min-width: 180px;
    overflow: hidden;
    cursor: pointer;
}

.gform_button:hover:before {
    transform: rotate(45deg);
}


/* Impressum, Datenschutz, 404 */

section.error-404.not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#imprint h1 {
    text-transform: uppercase;
    margin-bottom: 4vh;
}

/* Footer */

#footer {
    background: #000;
    color: #fff;
    font-size: 80%;
}

#footer a {
    color: #fff;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5vh 4% 5vh 0 !important;
}

.footer-logo-col {
    text-align: right;
}

.footer-logo {
    margin-right: 0;
    width: 260px;
    display: inline-block;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.footer-contact a {
    display: block;
}

.footer-contact a:not(:last-child) {
    margin-bottom: 15px;
}





/* ----- Responsive ----- */

@media all and (max-width: 1700px) {

    html {
        font-size: 20px;
    }

    #header {
        width: 475px;
        padding: 65px 100px 75px 65px;
    }

    main, #footer {
        width: calc(100% - 475px);
    }

    .row {
        padding-right: 4%;
    }

    a.logo {
        width: 295px;
    }

    .button.mit-icon span:after {
        height: 18px;
        width: 18px;
        right: -30px;
        top: calc(50% - 8px);
    }

    .button.rundgang-button {
        width: 170px;
        height: 170px;
    }

    .button.rundgang-button span:after {
        height: 34px;
        width: 34px;
    }

    .footer-logo {
        width: 240px;
    }

    a.contact-icon-footer img,
    a.team-mail img {
        max-height: 19px;
    }

    img.slide-arrow {
        top: calc(50% - 21px);
        height: 42px;
    }

}


@media all and (max-width: 1599px) {

    html {
        font-size: 18px;
    }

    #header {
        width: 425px;
        padding: 65px 75px 75px 50px;
    }

    main, #footer {
        width: calc(100% - 425px);
    }

    a.logo {
        width: 275px;
    }

    .button.mit-icon span:after {
        height: 16px;
        width: 16px;
        right: -30px;
        top: calc(50% - 7px);
    }

    .button.rundgang-button {
        width: 160px;
        height: 160px;
    }

    .button.rundgang-button span:after {
        height: 32px;
        width: 32px;
    }

    .footer-logo {
        width: 220px;
    }

    a.contact-icon-footer img,
    a.team-mail img {
        max-height: 16px;
    }

    img.slide-arrow {
        top: calc(50% - 20px);
        height: 40px;
    }

}



@media all and (max-width: 1400px) {

    html {
        font-size: 17px;
    }

    #header {
        width: 375px;
        padding: 65px 65px 75px 40px;
    }

    main, #footer {
        width: calc(100% - 375px);
    }

    .row, #footer {
        padding-right: 0 !important;
    }

    a.logo {
        width: 260px;
    }

    .button.rundgang-button {
        width: 150px;
        height: 150px;
    }

    .footer-logo {
        width: 210px;
    }

    a.contact-icon-footer img,
    a.team-mail img {
        max-height: 15px;
    }

    img.slide-arrow {
        top: calc(50% - 18px);
        height: 36px;
    }

}


@media all and (max-width: 1024px) {

    html {
        font-size: 16px;
    }

    #header {
        right: -375px;
        transition: all 300ms ease-in-out;
    }

    #header.active {
        right: 0;
    }

    main {
        padding-top: 100px;
    }

    .row {
        width: 90%;
    }

    .no-scroll {
        overflow: hidden;
    }

    main, #footer {
        width: 100%;
        transition: all 350ms ease-in-out;
    }

    main.active, #footer.active {
        transform: translate(-375px,0);
    }

    .mobile-header {
        display: flex;
    }

    .logo-wrapper {
        display: none;
    }

    a.logo {
        width: auto;
        height: auto !important;
    }

    a.logo img {
        width: auto;
        height: 75px !important;
    }

    ul#primary-menu > li > a {
        font-size: 1.5rem;
    }

    ul.sub-menu a {
        font-size: 1.1rem;
    }

    .asp-block-007 {
        height: calc(100vh - 100px);
    }

    .button.mit-icon {
        padding: 16px 47px 16px 22px;
    }

    .info-img-wrapper {
        width: 6vw;
        height: 6vw;
    }

    .footer-logo {
        width: 165px;
    }

    .gform_wrapper.gravity-theme input:not(.gform_button),
    .gform_wrapper.gravity-theme textarea,
    .gform_wrapper.gravity-theme select {
        font-size: 95% !important;
    }

}


@media all and (max-width: 982px) {

    .asp-block-007 {
        padding: 9vh 0;
        height: calc(68vh - 100px);
    }

    section:not(.asp-block-007) {
        padding-top: 9vh;
    }

    section:last-of-type {
        padding-bottom: 9vh;
    }

    .links-blocks-row .col a.links-block {
        height: 22vh;
    }

    .links-blocks-row .col:not(:only-child) {
        width: 47%;
        margin-right: 6%;
    }

    .links-blocks-row .col {
        margin-bottom: 4vh;
    }

    .sdag-block-links {
        margin-bottom: -4vh;
    }

    .links-blocks-row .col:only-child a.links-block {
        height: 28vh;
    }

    .section-title-wrapper .lead {
        padding-bottom: 35px;
    }

    .info-img-wrapper {
        width: 8vw;
        height: 8vw;
    }

    .cta-button-wrapper {
        margin-top: 4vh;
    }

    .gallery-item {
        padding-top: 32vh;
    }

    .footer-row {
        padding: 3vh 0 3vh 0 !important;
    }

    div#map {
        height: 28vh;
    }

    .team-item {
        width: 30.66%;
        margin-right: 4%;
    }

    .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 3% !important;
        grid-row-gap: 2vh !important;
    }

}


@media all and (max-width: 600px) {

    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }

    a.logo img {
        width: auto;
        height: 65px !important;
    }

    .menu-trigger {
        width: 45px;
    }

    .mobile-header {
        height: 90px;
    }

    ul#primary-menu, ul#primary-menu ul {
        text-align: center;
        margin: 0;
    }

    main {
        padding-top: 90px;
    }

    .asp-block-007 {
        padding: 8vh 0;
        height: calc(100vh - 90px);
    }

    h1 {
        font-size: 2.3rem;
        letter-spacing: 3px;
    }

    .asp-block-007 .lead {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .button.rundgang-button {
        left: calc(50% - 75px);
    }

    #header {
        width: 100%;
        padding: 85px 5% 95px 5%;
    }

    .menu-button-wrapper {
        padding-top: 15px;
        text-align: center;
    }

    main.active, #footer.active {
        transform: translate(0,0);
    }

    .links-blocks-row .col {
        margin-bottom: 3vh;
    }

    .sdag-block-links {
        margin-bottom: -3vh;
    }

    .links-blocks-row .col:not(:only-child) {
        width: 100%;
        margin-right: 0;
    }

    .info-blocks-row .col {
        width: 100%;
        margin-right: 0;
        padding: 3vh 1.5vw;
        margin-bottom: 3vh;
    }

    .asp-block-001 {
        margin-bottom: -3vh;
    }

    .info-img-wrapper {
        width: 60px;
        height: 60px;
    }

    .info-blocks-row h4 {
        font-size: 100%;
        line-height: 1.5;
    }

    .links-blocks-row .col a.links-block {
        height: 28vh;
    }

    .links-blocks-row .col:only-child a.links-block {
        height: 28vh;
    }

    .gform_wrapper.gravity-theme input:not(.gform_button),
    .gform_wrapper.gravity-theme textarea {
        padding: 8px 15px !important;
    }

    .gform_wrapper.gravity-theme select {
        padding: 12px 15px !important;
    }

    .sdag-block-content .half-half-row .col {
        width: 100%;
        margin-right: 0;
    }

    .black-box {
        padding: 15px 15px;
        margin-top: 25px;
    }

    .gallery-item {
        padding-top: 28vh;
    }

    .team-item {
        width: 100%;
        margin-right: 0;
    }

    h4.team-name {
        text-align: center;
    }

    .team-contact {
        text-align: center;
    }

    .col.footer-legal-col {
        width: 100%;
        margin-top: 30px;
        text-align: center;
        order: 4;
    }

    .footer-logo-col {
        text-align: center;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
    }

    .col.footer-address-col {
        order: 2;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .col.footer-contact-col {
        order: 3;
        width: 100%
    }

    .footer-contact a:not(:last-child) {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .footer-contact {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer-row {
        padding: 5vh 0 5vh 0 !important;
    }

    #footer {
        font-size: 95%;
    }

    .contact-row .col {
        width: 100%;
        margin-right: 0;
    }

    .contact-row .col:first-child{
        margin-bottom: 30px;
    }

    div#map {
        height: 300px;
    }

}