@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@media only screen and (min-width:1600px) {
    .container {
        max-width: 1540px !important;
    }
}

@media only screen and (min-width:1800px) {
    .container {
        max-width: 1680px !important;
    }
}



:root {
    --theme-primary: #C90016;
    --theme-primary-hover: #C9001690;
    --theme-secondary: #9A9A9A;
    --body-text: #4D4D4D;
    --white: #fff;
    --hover-white: #EBEAEA;
    --shade-white: #EBEAEA;
    --light-border: #E9E9E9;
    --body-color: #F3F3F3;
    --box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02);
    --item-spacing: 16px;
    --radius: 10px;
    --link-radius: 25px;
    --section-space: 100px;
    --timing-function: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-timing-function: 0.5s ease-in-out;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    background-color: var(--body-color);
    color: var(--body-text);
}

button {
    cursor: pointer;
    padding: 0;
    background: none;
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* Fonts CSS Start */

.mini-title {
    font-size: 16px;
}

.sub-heading {
    font-size: 16px;
}


.title {
    font-size: 35px;
    line-height: 45px;
    font-weight: 400;
}

.heading {
    font-size: 25px;
    line-height: 35px;
    font-weight: 400;
}

.heading span {
    font-weight: 600;
}

.mini-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.mini-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.sub-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

/* Fonts CSS End */

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 79;
    background: var(--white);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

header ul {
    margin: 0px;
}

.header-trigger-and-hamburger {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.desktop-links {
    display: none;
}

.hamburger-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
}

.hamburger-trigger span {
    height: 2px;
    display: block;
    background-color: var(--theme-primary);
    transition: all var(--timing-function);
    transform: translate3d(0px, 0px, 0.0001px);
}

.hamburger-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.first-hamburger {
    width: 30px;
}

.second-hamburger {
    width: 21px;
}

.active-hamburger .first-hamburger {
    transform: rotate(44deg) translate3d(0px, 10px, 0.0001px);
}

.active-hamburger .second-hamburger {
    width: 30px;
    transform: rotate(-45deg) translate3d(-5px, -7px, 0.0001px);
}

.header-links {
    display: none;
}

.full-screen-menu-footer {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

.full-screen-menu-footer li a {
    font-size: 16px;
    line-height: 20px;
    color: var(--body-text);
}

/* Menu CSS Start */

.full-screen-menu {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background: #FFF;
    z-index: 50;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow-y: auto;
    transition: all var(--timing-function);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.active-full-screen-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0.0001px);
}

.full-screen-menu ul {
    padding: 0;
    margin: 0;
}

.full-screen-menu ul li {
    font-size: 20px;
    line-height: 30px;
}

.location-link {
    font-size: 16px !important;
    line-height: 25px !important;
}

.full-screen-menu .full-screen-menu-contact-links li {
    font-size: 16px;
    line-height: 20px;
}

.full-screen-links-wrapper-title span {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.location-link a {
    color: var(--black);
}

.location-link a span {
    display: block;
    font-weight: 600;
}

.full-screen-menu-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.full-screen-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.full-screen-menu-contact-links {
    margin-top: 10px !important;
}


.full-screen-menu-list a {
    color: var(--black);
}

.full-screen-list-link-holder {
    padding-left: 10px;
    padding-top: 10px;
    opacity: 0;
    transition: opacity var(--timing-function);
}

.full-screen-list-link a {
    font-size: 18px;
    line-height: 24px !important;

}

.full-screen-list-link-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.full-screen-list-link-toggle span {
    color: var(--body-text);
}

.active-full-screen-link {
    color: var(--theme-primary);
}

.active-full-screen-link .line {
    opacity: 1 !important;
    max-width: 100% !important;
}

.full-screen-list-link-toggle svg {
    transition: transform var(--timing-function);
}

.full-screen-list-link {
    max-height: 30px;
    overflow: hidden;
    transition: max-height var(--timing-function);
}

.active-full-screen-list-link {
    max-height: 10000px;
}

.active-full-screen-list-link .full-screen-list-link-toggle svg {
    transform: rotate(180deg);
}

.active-full-screen-list-link .full-screen-list-link-holder {
    opacity: 1;
}

/* Menu CSS End */

.theme-link {
    color: var(--white);
    text-decoration: none;
    background-color: var(--theme-primary);
    padding: 5px 20px;
    border-radius: var(--link-radius);
    transition: all var(--timing-function);
}

.theme-link br {
    display: none !important;
}

.theme-link-transparent {
    padding: 5px 20px;
    border-radius: var(--link-radius);
    transition: all var(--timing-function);
    background-color: transparent;
    color: var(--theme-primary);
    text-decoration: none;
    border: 1px solid var(--theme-primary);
}

.theme-link-transparent-white {
    padding: 5px 20px;
    border-radius: var(--link-radius);
    transition: all var(--timing-function);
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--white);
}

.theme-link-arrow {
    padding: 2px 5px 2px 20px;
    display: inline-flex;
    align-items: center;
    gap: var(--item-spacing);
}

.theme-link-in-line {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.theme-link-in-line span {
    color: var(--theme-primary);
}

.theme-link-arrow-white {
    background-color: var(--white);
}

.theme-link-arrow-white span {
    color: var(--theme-primary);
}

.theme-link-arrow-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-link-arrow-icon-red {
    background: var(--theme-primary);
}

.theme-link-arrow-icon svg {
    max-width: 60%;
    max-height: 60%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-container img {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 100%;
}

.title-and-sub-title .sub-title {
    color: var(--theme-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 5px
}

/* Footer CSS Start */

footer {
    padding-top: 50px;
}

.single-blog footer, .page-template-page-blog footer {
    border-top: 1px solid var(--gray-border);
}

.socials-container {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 30px
}

.footer-links-holder {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-navigation-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 16px;
    color: var(--orange);
}

.footer-navigations ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-navigations ul li a {
    font-size: 14px;
    line-height: 18px;
    color: var(--black);
}

.address-list li a span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-bottom-content {
    margin-top: 30px;
    padding: 15px 0px;
    border-top: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom-content a {
    font-size: 14px;
    line-height: 18px;
    color: var(--body-text);
}

.imprint-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.line-link {
    position: relative;
    width: fit-content;
}

.line-link a {
    transition: color var(--timing-function);
}

.line-link .line {
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    height: 1px;
    background: var(--theme-primary);
    width: 100%;
    max-width: 0%;
    transition: all var(--timing-function);
    transform: translate3d(0px, 0px, 0.00001px);
    will-change: max-width;
}

.active-line-link a {
    color: var(--theme-primary) !important;
}

.active-line-link .line {
    max-width: 100%;
}

.line {
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    height: 2px;
    background: var(--theme-primary);
    width: 100%;
    max-width: 0%;
    transition: all var(--timing-function);
    will-change: max-width;
}


.copyright-and-imprints {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.imprint-links .seperator {
    display: none;
}

.made-by-link span {
    font-weight: 600;
    color: var(--theme-primary);
}

/* Footer CSS End */

/* Utils CSS Start */

.auto-size-image {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
}

.is-hidden {
    display: none !important;
}

/* Utils CSS End */

/* Immobilie Form CSS Start */

.fixed-immobilie-form {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.73);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    transform: translate3d(0px, 0px, 0.0001px);
    padding-top: 100px;
    padding-bottom: 100px;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--timing-function), opacity var(--timing-function);
    will-change: opacity;
}

.active-fixed-immobilie-form {
    transform: translate3d(0px, 0px, 0.0001px);
    opacity: 1;
    pointer-events: auto;
}

.immobilie-content-holder {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-border);
    padding: 15px 20px 25px 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.immobilie-form-holder {
    margin-top: 20px;
}

.immobilie-form-title-and-sub-title span {
    display: block;
    text-align: center;
}

.immobilie-form-closer {
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Immobilie Form CSS End */

/* 404 CSS Start */

.not-found-texts-and-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.not-found-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* 404 CSS End */

/* Animations CSS Start */

.item-animation {
    transform: translate3d(0px, 20px, 0.0001px);
    opacity: 0;
    transition: opacity var(--animation-timing-function), transform var(--animation-timing-function);
}

.item-animation-fade {
    opacity: 0;
    transition: opacity var(--animation-timing-function);
}

.item-animation-block {
    transform: translate3d(0px, 20px, 0.0001px);
    opacity: 0;
    transition: opacity var(--animation-timing-function), transform var(--animation-timing-function);
    display: block;
}

.animate-second {
    transition-delay: .3s;
}

.animate-third {
    transition-delay: .6s;
}

.animate-fourth {
    transition-delay: .9s;
}

.animate-fifth {
    transition-delay: 1.2s;
}

.in-view .item-animation, .in-view .item-animation-block {
    opacity: 1;
    transform: translate3d(0px, 0px, 0.0001px);
}

.in-view .item-animation-fade {
    opacity: 1;
}

/* Animations CSS End */

@media only screen and (min-width:992px) {

    :root {
        --section-space: 150px
    }

    /* 404 CSS Desktop Start*/

    .not-found-texts-and-link {
        gap: 40px;
    }

    /* 404 CSS Desktop End */

    .hamburger-trigger {
        display: none;
    }

    .logo-container img {
        max-height: 75px;
    }

    .title {
        font-size: 40px;
        line-height: 50px;
        white-space: pre-line;
    }

    body {
        font-size: 16px;
        line-height: 22px;
    }

    .heading {
        font-size: 30px;
        line-height: 40px;
    }

    .mini-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .theme-link {
        padding: 9px 25px;
    }

    .theme-link-arrow-icon {
        width: 35px;
        height: 35px;
    }

    .theme-link-arrow {
        padding: 4px 4px 4px 20px;
    }

    .theme-link-transparent, .theme-link-transparent-white {
        padding: 9px 25px;
    }

    .footer-top-content {
        display: flex;
        justify-content: space-between;
    }

    .footer-logo-and-socials {
        width: 30%;
    }

    .footer-links-holder {
        flex-direction: row;
        margin-top: 0px;
    }

    .copyright-and-imprints {
        flex-direction: row;
    }

    .imprint-links {
        flex-direction: row;
        gap: 5px;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 100px;
    }

    footer {
        padding-top: 75px;
    }

    .imprint-links .seperator {
        display: block;
    }

    .imprint-links .line-link {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .title-and-sub-title-wrapper {
        width: 65%;
    }

    /* Immobilie Form CSS Start */

    .immobilie-content-holder {
        padding: 25px 20px;
        width: 80%;
        margin-left: 10%;
    }

    .immobilie-form-closer {
        top: 25px;
        right: 20px;
    }

    /* Immobilie Form CSS End */

    /* Header Desktop CSS Start */

    .hamburger-box {
        display: none !important;
    }


    .desktop-links {
        display: flex;
    }

    .desktop-list {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .desktop-list-link a {
        color: var(--body-text);
        transition: color var(--timing-function);
    }

    .active-desktop-link a {
        color: var(--theme-primary);
    }

    .active-desktop-link a .line {
        max-width: 100%;
    }

    .header-dropdown-wrapper {
        position: absolute;
        top: 50px;
        right: 0px;
        background: var(--white);
        border: 1px solid var(--light-border);
        border-radius: var(--radius);
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        transform: translate3d(0px, -30px, 0.0001px);
        pointer-events: none;
        transition: opacity var(--timing-function), transform var(--timing-function);
        will-change: transform, opacity;
        width: 300px;
    }

    .active-header-dropdown-wrapper .header-dropdown-wrapper {
        opacity: 1;
        transform: translate3d(0px, 0px, 0.0001px);
        pointer-events: all;
    }

    .header-dropdown-wrapper ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .dropdown-desktop-list {
        position: relative;
    }

    .header-dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-dropdown-toggle span {
        color: var(--body-text);
        transition: color var(--timing-function);
    }

    .header-dropdown-toggle svg {
        transition: transform var(--timing-function);
    }

    .header-dropdown-toggle svg path {
        transition: fill var(--timing-function);
    }

    .active-header-dropdown-wrapper .header-dropdown-toggle span {
        color: var(--theme-primary);
    }

    .active-header-dropdown-wrapper .header-dropdown-toggle svg {
        transform: rotate(-180deg);
    }

    .active-header-dropdown-wrapper .header-dropdown-toggle svg path {
        fill: var(--theme-primary);
    }

    .line-link {
        position: relative;
    }

    .hamburger-and-form-trigger button {
        max-width: 100%;
        word-break: break-word;
    }


    /* Header Desktop CSS End */



}

@media only screen and (min-width:1200px) {
    .title {
        font-size: 45px;
        line-height: 55px;
    }

    .footer-links-holder {
        gap: 80px;
    }

    .footer-bottom-content {
        margin-top: 150px;
    }

    /* Immobilie Form CSS Start */

    .immobilie-content-holder {
        padding: 35px 30px;
    }

    /* Immobilie Form CSS End */

    /* Header Desktop CSS Start */

    .hamburger-and-form-trigger button {
        max-width: unset;
        word-break: unset;
    }

    .desktop-list {
        gap: 40px;
    }

    /* Header Desktop CSS End */
}

@media only screen and (min-width:1400px) {
    .title {
        font-size: 50px;
        line-height: 60px;
    }

    .heading {
        font-size: 35px;
        line-height: 45px;
    }

    .mini-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-links-holder {
        gap: 100px;
    }

    /* Immobilie Form CSS Start */

    .immobilie-content-holder {
        padding: 40px 30px;
        width: 65%;
        margin-left: 17.5%;
    }

    /* Immobilie Form CSS End */

    /* Header Desktop CSS Start */

    .desktop-list {
        gap: 50px;
    }

    /* Header Desktop CSS End */

}

@media only screen and (min-width:1600px) {
    .title {
        font-size: 55px;
        line-height: 65px;
    }

    .heading {
        font-size: 40px;
        line-height: 50px;
    }

    .footer-links-holder {
        gap: 150px;
    }



    /* Header Desktop CSS Start */

    .desktop-list {
        gap: 65px;
    }

    /* Header Desktop CSS End */
}

@media only screen and (min-width:1800px) {
    .title {
        font-size: 60px;
        line-height: 70px;
    }

    .mini-heading {
        font-size: 25px;
        line-height: 35px;
    }
}

@media only screen and (min-width:992px) and (hover:hover) {
    .theme-link:hover {
        background-color: var(--theme-primary-hover);
        color: var(--white);
    }

    .theme-link:hover span {
        color: var(--white);
    }

    .theme-link-arrow-icon svg {
        transition: transform var(--timing-function);
        transform: translate3d(0px, 0px, 0.0001px);
    }

    .theme-link-arrow:hover .theme-link-arrow-icon svg {
        transform: translate3d(3px, -3px, 0.0001px);
    }

    .theme-link-transparent:hover {
        background-color: var(--theme-primary-hover);
        color: var(--white);
    }

    .theme-link-arrow-white:hover {
        background-color: var(--hover-white);
    }

    .theme-link-arrow-white:hover span {
        color: var(--theme-primary);
    }

    .theme-link-in-line svg {
        transition: transform var(--timing-function);
        transform: translate3d(0px, 0px, 0.0001px);
    }

    .theme-link-in-line:hover svg {
        transform: translate3d(5px, 0px, 0.0001px);
    }

    .line-link:hover a {
        color: var(--theme-primary) !important;
    }

    .line-link a:hover .line {
        max-width: 100%;
    }

    .theme-link-transparent-white {
        transition: background-color var(--timing-function), border var(--timing-function);
    }

    .theme-link-transparent-white span {
        transition: color var(--timing-function);
    }

    .theme-link-transparent-white:hover {
        border: 1px solid var(--theme-primary);
        background-color: var(--hover-white);
    }

    .theme-link-transparent-white:hover span {
        color: var(--theme-primary);
    }

}

/* Spacings CSS Start */

.spacing-top {
    padding-top: var(--section-space);
}

.spacing-bottom {
    padding-bottom: var(--section-space);
}

.margin-spacing-top {
    margin-top: var(--section-space);
}

.margin-spacing-bottom {
    margin-bottom: var(--section-space);
}

/* Spacings CSS End */