
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header  / .header
3. Service  /.service-con
4. Need  /.need-con
5. Footer  /.footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

#    --e-global-color-primary: #ffffff;
#    --e-global-color-secondary: #000000;
#    --e-global-color-accent: #fddf79;
#    --e-global-color-text: #6d6c6c;
#	 --e-global-color-white: #ffffff;
#    --e-global-color-black: #000000;
#    --e-global-color-lime-green: #315347;
#    --e-global-color-very-dark-cyan: #10241d;
#    --e-global-color-dark-cyan: #0d1e18;
#	 --e-global-color-very-light-gray: #f9f9f9;
#	 --e-global-color-border: #e5e5e5;
#	 --e-global-color-nav-text: #3f3f3f;
#    --e-global-color-star-yellow: #fbc729;
#    --e-global-color-pure-red: #ff0000;

*/
/*------------------------------------------------------------------
# [Typography]
 
Body copy: "Plus Jakarta Sans", sans-serif;
Heading: "Plus Jakarta Sans", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
}

:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #000000;
    --e-global-color-accent: #fdde77;
    --e-global-color-text: #6d6c6c;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-lime-green: #315347;
    --e-global-color-very-dark-cyan: #10241d;
    --e-global-color-dark-cyan: #0d1e18;
	--e-global-color-very-light-gray: #f9f9f9;
	--e-global-color-border: #e5e5e5;
	--e-global-color-nav-text: #3f3f3f;
    --e-global-color-star-yellow: #fbc729;
    --e-global-color-pure-red: #ff0000;
}

h1{
    font-size: 80px;
    line-height: 84px;
    font-weight: 800;
    color: var(--e-global-color-primary);
}
h2{
    font-size: 46px;
    line-height: 50px;
    font-weight: 800;
    color: var(--e-global-color-secondary);
}
h3{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h4{
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h5{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--e-global-color-secondary);
}
h6{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-color-lime-green);
}
p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: var(--e-global-color-text);
    word-break: break-word;
}
.text-size-18{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.text-size-16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-text);
}
.primary_btn{
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.primary_btn:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.primary_btn i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.primary_btn:hover i{
    color: var(--e-global-color-white);
}
html{
    scroll-behavior: smooth;
}
.all_row {
    display: flex;
    flex-wrap: wrap;
}
.all_column {
    display: flex;
}
.all_boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.additional-icons {
    width: 50px;
    height: 50px;
}

.whatsapp-btn {
    align-items: center;
    background-color: transparent;
    border: 2px solid #315347;
    border-radius: 50px;
    color: #315347;
    display: flex;
    font-weight: 800;
    padding: 5px 1px;
    font-size: 14px;
    line-height: 16px;
    margin-right: 10px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.whatsapp-btn i {
    color: #315347;
    font-size: 2.9em;
    margin: 0 4px;
}
.whatsapp-btn i:hover {
    color: #ffffff!important;
}
.call-btns .fa-whatsapp {
    font-size: 44px !important;
}

#message {
    border: 1px solid var(--e-global-color-border);
     border-radius: 35px; width: 100%; padding: 15px;
      font-size: 14px;

}

/* Home Page */

.header {
    padding: 16px 0px;
    position: fixed;
    top: 0;
    z-index: 5;
    background: white;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0px 0px 8px -2px rgb(107 123 139 / 19%);
}
.header .logo img {
    width: 170px;
}
.navbar-collapse .navbar-nav{
    text-align: center;
    align-items: center; 
    display: inherit;
}
.navbar-expand-lg{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 6px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav .nav-item a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    color: #315347 !important;
    font-weight: 800;
}
.navbar-nav li:last-child {
    margin-right: 0;
    padding-right: 0;
    margin-left: 0;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    top: 61px;
    min-width: 212px;
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 10%);
    background-color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--e-global-color-nav-text) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .drop-down-pages li:first-child a::before {
    content: '';
    width: 24px;
    height: 12px;
    position: absolute;
    background-image: url(../images/nav-node.png);
    top: -12px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:first-child a:hover::before {
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages .active:first-child > a::before{
    background-image: url(../images/nav-node-hover.png);
}
.navbar-nav .drop-down-pages li:last-child{
    margin: 0;
    border: none;
    display: block !important;
}
.navbar-nav .nav-item .dropdown-item:hover{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.dropdown-item.active,
.dropdown-item:active {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a:hover {
    border-radius: 0;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 10px 10px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 10px 10px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 10px 10px;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.header .last_list {
    display: flex;
    align-items: center;
    padding-left: 35px;
}
.header .last_list .log_in{
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    min-width: 198px;
    height: 52px;
    padding: 18px;
    border-radius: 35px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: var(--e-global-color-secondary) !important;
    background-color: var(--e-global-color-accent) !important;
    transition: all 0.3s ease-in-out;
}
.header .last_list .log_in i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.header .last_list .log_in:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-lime-green) !important;
}
.header .last_list .log_in:hover i{
    color: var(--e-global-color-white);
}
.phone-number {
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.phone-number .header-phone {
    height: 40px;
    width: 40px;
    line-height: 38px;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.header .phone-number .number {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.header .phone-number:hover .header-phone {
    transform: translateY(-5px);
}
.header .phone-number:hover .number {
    color: var(--e-global-color-lime-green);
}

.no-outline {
    border: none;
}

.no-outline:focus {
    outline: none;
}

/* Project */

.other-services-con {
    padding: 0 0 125px 0;
    background-color: var(--e-global-color-white);
}
.other-services-con .other-services_content{
    margin-bottom: 14px;
}
.other-services-con .other-services_content{
    margin-top: 60px;
    padding-top: 60px;
}
.other-services-con .other-services_content h2{
    margin-bottom: 35px;
}
.other-services-con .other-services_content p{
    margin-bottom: 52px;
}
.other-services-con .carousel-box {
    margin: 0;
}
.other-services-con .carousel-box img{
    border-radius: 20px;
}
.other-services-con .carousel-box .content{
    margin: 15px;
    width: 91%;
    padding: 20px 70px 20px 15px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    position: absolute;
    background-color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.other-services-con .carousel-box .content{
    width: 84%;
}
.other-services-con .carousel-inbox:hover .content{
    background-color: var(--e-global-color-lime-green);
}
.other-services-con .carousel-inbox .content h4{
    margin-bottom: 4px;
    transition: all 0.8s ease-in-out;
}
.other-services-con .carousel-inbox .content p{
    transition: all 0.8s ease-in-out;
}
.other-services-con .carousel-inbox:hover .content h4,
.other-services-con .carousel-inbox:hover .content p {
    color: var(--e-global-color-white);
}
.other-services-con .carousel-box .content i{
    font-size: 16px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    top: 23%;
    right: 15px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.other-services-con .carousel-box .content i {
    top: 42%;
}
.other-services-con .carousel-box .content i:hover{
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
}
.other-services-con .carousel-box img{
    display: inline-block;
    width: auto;
}

/* Need */

.need-con {
    padding: 125px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.need-con:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgb(0 0 0 / 50%), transparent);
}
.need-con .need_content h6 {
    margin-bottom: 16px;
    color: var(--e-global-color-accent);
}
.need-con .need_content h2 {
    margin-bottom: 36px;
}
.need-con .need_content .primary_btn {
    padding: 20px 34px 22px;
}

/* Footer */

.footer-con .footer_lowerportion{
    background: var(--e-global-color-very-dark-cyan);
}
.footer-con .middle_portion .logo-content {
    padding: 80px 52px 75px;
    background: var(--e-global-color-accent);
}
.footer-con .middle_portion .logo-content .footer-logo {
    margin-bottom: 30px;
}
.footer-con .middle_portion .logo-content .footer-logo img{
    width: 170px;
}
.footer-con .middle_portion .logo-content .text{
    position: relative;
    margin-bottom: 11px;
    padding-left: 30px;
    display: inline-block;
}
.footer-con .middle_portion .logo-content i{
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    left: 0;
    top: 6px;
    color: var(--e-global-color-black);
}
.footer-con .middle_portion .logo-content a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500px;
    margin-left: 0 !important;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.footer-con .middle_portion .logo-content a:hover {
    color: var(--e-global-color-lime-green);
}
.footer-con .middle_portion .links {
    padding: 74px 0;
}
.footer-con .middle_portion h4{
    margin-bottom: 20px;
    color: var(--e-global-color-white);
}
.footer-con .middle_portion li{
    margin-bottom: 8px;
}
.footer-con .middle_portion li:last-child{
    margin-bottom: 0 !important;
}
.footer-con .middle_portion li i{
    font-size: 10px;
    line-height: 10px;
    top: -2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion li a{
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-left: 13px;
    text-decoration: none;
    color: var(--e-global-color-white);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion li a:hover{
    color: var(--e-global-color-accent);
}
.footer-con .middle_portion .icon {
    padding: 74px 0 74px 30px;
}
.footer-con .middle_portion .icon h4{
    margin-bottom: 24px;
}
.footer-con .middle_portion form {
    margin-bottom: 25px;
}
.footer-con .middle_portion input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 18px 55px 18px 24px;
    width: 100%;
    position: relative;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    border-radius: 30px;
    overflow: visible;
    outline: none;
}
.footer-con .middle_portion input:focus {
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .middle_portion button {
    font-size: 16px;
    width: 48px;
    height: 48px;
    top: 4px;
    right: 4px;
    border: none;
    float: right;
    position: absolute;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border-radius: 100%;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.footer-con .middle_portion button:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.footer-con .middle_portion .social-icons li{
    margin: 0 4px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons a{
    margin-left: 0 !important;
}
.footer-con .middle_portion .social-icons i{
    font-size: 14px;
    height: 46px;
    width: 46px;
    line-height: 44px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.footer-con .middle_portion .social-icons i:hover {
    transform: translateY(-5px);
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.footer-con .middle_portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-con .middle_portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-con .copyright p{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-dark-cyan);
}
.footer-con .list-unstyled .active{
        color: #fdde77 !important;
    }

/* Sub banner */

.sub_banner .sub_banner_con {
    padding: 145px 0 155px;
   
}

.sub_banner .sub_banner_con h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 800;
    margin-bottom: 26px;
}
.sub_banner .sub_banner_con p {
    margin-bottom: 38px;
}
.sub_banner .sub_banner_con .box {
    padding: 10px 35px 14px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 45%);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.sub_banner .sub_banner_con .box a span:hover {
    color: var(--e-global-color-accent);
}
.sub_banner .sub_banner_con .box .arrow {
    font-size: 10px;
    top: -1px;
    margin: 0 15px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
}
.sub_banner .sub_banner_con .box .box_span {
    color: var(--e-global-color-accent);
}

/* Contact Page */

/* Contact info */

.contactinfo-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-very-light-gray);
}
.contactinfo-con .contact_content h6{
    margin-bottom: 14px;
}
.contactinfo-con .contact_content h2{
    margin-bottom: 35px;
}
.contactinfo-con .contact_content p{
    margin-bottom: 52px;
}
.contactinfo-con .contact-box {
    width: 100%;
    padding: 46px 50px;
    border-radius: 20px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 20px 50px rgb(49 83 71 / 10%);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box:hover {
    border: 1px solid var(--e-global-color-lime-green);
}
.contactinfo-con .contact-box .contact-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box:hover .contact-icon {
    transform: translateY(-5px);
}
.contactinfo-con .contact-box h3 {
    margin-bottom: 10px;
}
.contactinfo-con .contact-box a {
    display: inline-block;
    color: var(--e-global-color-text);
    transition: all 0.8s ease-in-out;
}
.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-lime-green);
}

/* Contact Form */

.contactform-con {
    background-color: var(--e-global-color-lime-green);
}
.contactform-con::before {
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(../images/anfrage-bg.png);
}
.contactform-con .contact-sideimage {
    position: absolute;
    left: 0;
    bottom: 0;
}
.contactform-con .contact-sideimage img {
    opacity: 5%;
}
.contactform-con .contact_content{
    padding: 118px 45px 125px 0;
    position: relative;
    z-index: 1;
}
.contactform-con .contact_content h6{
    margin-bottom: 15px;
    color: var(--e-global-color-accent);
}
.contactform-con .contact_content h2{
    margin-bottom: 40px;
}
.contactform-con .contact_content .form-group{
    margin-bottom: 22px;
}
.contactform-con .contact_content .input1 {
    float: left;
    margin-right: 18px;
}
.contactform-con .contact_content input,
.contactform-con .contact_content textarea {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 51px;
    width: 100% !important;
    padding: 10px 10px 12px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-accent);
    border-radius: 35px;
    overflow: visible;
    outline: none;
}
.contactform-con .contact_content textarea {
    height: 117px;
    width: 100% !important;
    padding: 16px 22px;
    border-radius: 20px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contactform-con .contact_content .message {
    margin-bottom: 24px;
}
.contactform-con .contact_content input:focus,
.contactform-con .contact_content textarea:focus {
    box-shadow: 2px 3px 42px rgb(55 225 197 / 16%);
    border: 1px solid var(--e-global-color-accent);
}
.contactform-con .contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 20px 35px 22px;
    width: 100%;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.contactform-con .contact_content .submit_now i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.contactform-con .contact_content .submit_now:hover {
    background-color: var(--e-global-color-white);
}
.contactform-con .contact_content input::placeholder,
.contactform-con .contact_content textarea::placeholder{
    color: var(--e-global-color-text);
}
.contactform-con .contact_content form span {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 5px;
    position: absolute;
    display: block;
    color: #fff;
}
.contactform-con .contact_content form span.error {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    margin-top: 2px;
    position: absolute;
    display: block;
    color: var(--e-global-color-accent);
}


.contactform-con .contact_wrapper {
    display: none;
}

/* Map */

.map-con iframe {
    width: 100%;
    height: 684px;
    margin-bottom: -8px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}

/* Project Page */

/* Project */

.projectpage-con {
    padding-bottom: 100px;
}
.projectpage-con .project-box {
    margin-bottom: 40px;
}

/* Work */

.work-con {
    padding: 125px 0;
    background-color: var(--e-global-color-white);
}
.work-con .work_content h6{
    margin-bottom: 14px;
}
.work-con .work_content h2{
    margin-bottom: 35px;
}
.work-con .work_content p{
    margin-bottom: 52px;
}
.work-con .work-box {
    text-align: center;
}
.work-con .work-box .image {
    position: relative;
}
.work-con .work-box .work-icon {
    width: 130px;
    height: 130px;
    line-height: 125px;
    margin-bottom: 45px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.work-con .work-box .work-icon::before {
    content: "";
    width: 200px;
    height: 1px;
    left: 110px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    border: 1px dashed var(--e-global-color-lime-green);
}
.work-con .box4 .work-icon::before {
    display: none;
}
.work-con .work-box span {
    font-size: 16px;
    font-weight: 700;
    bottom: 30px;
    width: 39px;
    height: 39px;
    line-height: 39px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.work-con .work-box:hover span {
    transform: translateY(-5px);
}
.work-con .work-box h3 {
    margin-bottom: 12px;
}

/* Project Form */

.projectform-con {
    padding: 130px 0 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/projectform-backgroundimage.jpg);
}
.projectform-con .project_content {
    width: 503px;
    padding: 58px 37px 60px;
    border-radius: 30px;
    text-align: center;
    background-color: var(--e-global-color-white);
}
.projectform-con .project_content h6{
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
}
.projectform-con .project_content h2{
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 36px;
}
.projectform-con .project_content .form-group{
    text-align: left;
    margin-bottom: 22px;
}
.projectform-con .project_content .input1 {
    float: left;
    margin-right: 18px;
}
.projectform-con .project_content input,
.projectform-con .project_content select {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    width: 100%;
    padding: 10px 10px 12px 22px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-border);
    border-radius: 35px;
    box-shadow: none;
    overflow: visible;
    outline: none;
}
.projectform-con .project_content .small-input {
    width: 205px;
}
.projectform-con .project_content select {
    background-repeat: no-repeat !important;
    background-position: 90.3% 23px !important;
    background-image: url(../images/dropdown-arrow.png) !important;
}
.projectform-con .project_content select option{
    color: var(--e-global-color-text);
}
.projectform-con .project_content input:focus,
.projectform-con .project_content select:focus {
    box-shadow: none;
    border: 1px solid var(--e-global-color-accent);
}
.projectform-con .project_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 20px 35px 22px;
    width: 100%;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background-color: var(--e-global-color-accent);
    border: none;
    overflow: visible;
    outline: none;
    transition: all 0.8s ease-in-out;
}
.projectform-con .project_content .submit_now i {
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.8s ease-in-out;
    color: var(--e-global-color-black);
}
.projectform-con .project_content .submit_now:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.projectform-con .project_content .submit_now:hover i {
    color: var(--e-global-color-white);
}
.projectform-con .project_content input::placeholder,
.projectform-con .project_content select::placeholder{
    color: var(--e-global-color-text);
}
.projectform-con .project_content form span {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 20px;
    position: absolute;
    display: block;
    color: #fff;
}
.projectform-con .project_content form span.error {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    margin-top: 2px;
    position: absolute;
    display: block;
    color: var(--e-global-color-pure-red)!important;
}

/* Faq */

.faq-con {
    padding: 125px 0 140px;
    background-color: var(--e-global-color-very-light-gray);
}
.faq-con .faq_content h6{
    margin-bottom: 14px;
}
.faq-con .faq_content h2{
    margin-bottom: 35px;
}
.faq-con .faq_content p{
    margin-bottom: 52px;
}
.faq-con h5 {
    margin-bottom: 0;
}
.faq-con .accordion-card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 12px;
    background-color: var(--e-global-color-white);
    box-shadow: 0 1px 58px rgb(0 0 0 / 3%);
}
.faq-con .accordion-card:last-child {
    margin-bottom: 0;
}
.faq-con .accordion-card .btn-link h5 {
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed h5 {
    color: var(--e-global-color-secondary);
}
.faq-con .accordion-card:has(.btn-link) {
    border: 1px solid var(--e-global-color-accent);
}
.faq-con .accordion-card:has(.collapsed) {
    border: 1px solid var(--e-global-color-white);
}
.faq-con .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-con .accordian-inner .card-header a {
    padding: 20px 45px 22px 26px;
}
.faq-con .accordian-inner .card-body {
    padding: 0 26px 20px;
}
.faq-con .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-con .accordian-inner .accordion-card i {
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-con .accordian-inner .accordion-card .btn {
    text-decoration: none;
    text-align: left;
    display: block;
    border-radius: 10px;
}
.faq-con .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-con .accordion-card .btn-link:before {
    content: "\f063";
    font-size: 15px;
    top: 23px;
    right: 22px;
    position: absolute;
    font-family: 'FontAwesome';
    color: var(--e-global-color-accent);
}
.faq-con .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-secondary);
}

/* Team Page */

/* Team */

.team-con {
    padding: 125px 0 70px;
    background-color: var(--e-global-color-white);
}
.team-con .team_content h6{
    margin-bottom: 14px;
}
.team-con .team_content h2{
    margin-bottom: 35px;
}
.team-con .team_content p{
    margin-bottom: 52px;
}
.team-con .team-box {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box figure {
    margin: 0 auto 26px;
    overflow: hidden;
}
.team-con .team-box figure img {
    border-radius: 20px;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box h4 {
    margin-bottom: 8px;
}
.team-con .team-box span {
    display: block;
    margin-bottom: 22px;
}
.team-con .team-box li {
    margin: 0 3px;
    display: inline-block;
    transition: all 0.8s ease-in-out;
}
.team-con .team-box i {
    font-size: 14px;
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.team-con .team-box li:hover {
    transform: translateY(-5px);
}
.team-con .team-box li:first-child {
    margin-left: 0;
}
.team-con .team-box li:last-child {
    margin-right: 0;
}
.team-con .team-box:hover i {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}

/* Vorteile */

.vorteile-con {
    padding: 130px 0 154px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/vorteile-backgroundimage.jpg);
}
.vorteile-con .about_wrapper .about-image {
    position: absolute;
    left: 0;
    top: 0;
}
.vorteile-con .about_wrapper .about-image img {
    border-radius: 30px;
}
.vorteile-con .about_wrapper .icon {
    height: 105px;
    width: 105px;
    line-height: 105px;
    top: 210px;
    right: 40px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    background-color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.vorteile-con .about_wrapper .icon:hover {
    transform: translateY(-5px);
}
.vorteile-con .about_content{ 
    padding-top: 50px;
}
.vorteile-con .about_content h6{
    margin-bottom: 14px;
    color: var(--e-global-color-accent);
}
.vorteile-con .about_content h2{
    margin-bottom: 40px;
}
.vorteile-con .about_content .text{
    margin-bottom: 36px;
}
.vorteile-con .about_content .propertise {
    margin-bottom: 25px;
}
.vorteile-con .about_content ul{
    display: inline-block;
}
.vorteile-con .about_content .list1{
    padding-right: 30px;
}
.vorteile-con .about_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.vorteile-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
}
.vorteile-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-white);
}
.vorteile-con .about_content .primary_btn {
    padding: 20px 35px 22px;
}
.vorteile-con .about_content .primary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.vorteile-con .about_content .primary_btn:hover i {
    color: var(--e-global-color-secondary);
}

/* Service */

.service-con {
    padding: 125px 0 205px;
    background-color: var(--e-global-color-very-light-gray);
}
.service-con .service_content h6{
    margin-bottom: 14px;
}
.service-con .service_content h2{
    margin-bottom: 35px;
}
.service-con .service_content p{
    margin-bottom: 52px;
}
.service-con .owl-stage-outer {
    padding-left: 2px;
}
.service-con .owl-stage {
    display: flex;
}
.service-con .owl-item{
    width: 100%;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.service-con .owl-item:hover{
    border: 1px solid var(--e-global-color-lime-green);
}
.service-con .service-box .service-icon {
    width: 88px;
    height: 88px;
    line-height: 88px;
    margin-bottom: 28px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    background-color: var(--e-global-color-lime-green);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box:hover .service-icon {
    transform: translateY(-5px);
}
.service-con .service-box h3 {
    margin-bottom: 16px;
    padding-right: 70px;
}
.service-con .service-box p {
    margin-bottom: 32px;
}
.service-con .service-box .read_more {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    padding: 13px 24px 15px;
    text-align: center;
    border-radius: 35px;
    position: relative;
    display: inline-block;
    color: var(--e-global-color-black);
    background: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box .read_more i {
    font-family: 'FontAwesome';
    font-size: 10px;
    line-height: 10px;
    margin-left: 10px;
    color: var(--e-global-color-black);
    transition: all 0.8s ease-in-out;
}
.service-con .service-box:hover .read_more {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.service-con .service-box:hover .read_more i {
    color: var(--e-global-color-white);
}
.service-con .service-box .read_more:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.service-con .service-box .read_more:hover i {
    color: var(--e-global-color-white);
}
.service-con .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 58px !important;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
}

.service-con .service-box  {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
}
.service-con .service-box .read_more {
    align-self: flex-start !important;
}


.service-con .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
}
.service-con .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: var(--e-global-color-lime-green);
}
.service-con .owl-carousel .owl-dots .owl-dot.active span {
    width: 17px;
    height: 17px;
    top: 0;
    position: relative;
    background-color: var(--e-global-color-lime-green);
}
.service-con .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}
.service-con .owl-carousel .owl-item img {
    display: inline-block;
    width: auto !important;
}

/* Service Page */

.servicepage-con {
    padding-bottom: 110px;
}
.servicepage-con .service-box{
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 34px 28px;
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}
.servicepage-con .service-box:hover{
    border: 1px solid var(--e-global-color-lime-green);
}

/* About */

.serviceabout-con {
    padding: 130px 0;
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con::before {
    content: "";
    width: 52%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/vorteile2.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.serviceabout-con .serviceabout-sideimage {
    position: absolute;
    right: 0;
    bottom: 0;
}
.serviceabout-con .serviceabout-sideimage img {
    opacity: 10%;
}
.serviceabout-con .about_content{
    z-index: 1;
}
.serviceabout-con .content {
    position: relative;
    padding: 84px 68px 90px;
    border-radius: 20px;
    background-color: var(--e-global-color-accent);
}
.serviceabout-con .about_content h6{
    margin-bottom: 18px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content h2{
    margin-bottom: 36px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .text{
    margin-bottom: 30px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .propertise {
    margin-bottom: 25px;
}
.serviceabout-con .about_content ul{
    display: inline-block;
}
.serviceabout-con .about_content .list1{
    padding-right: 15px;
}
.serviceabout-con .about_content ul li {
    position: relative;
    margin-bottom: 10px;
}
.serviceabout-con .about_content ul li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    top: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con .about_content ul li p {
    padding-left: 28px;
    color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .primary_btn {
    padding: 20px 36px 22px;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.serviceabout-con .about_content .primary_btn i {
    color: var(--e-global-color-white);
}
.serviceabout-con .about_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
}
.serviceabout-con .about_content .primary_btn:hover i {
    color: var(--e-global-color-white);
}
.serviceabout-con .about_wrapper{
    display: none;
}

/* Service Need */

.serviceneed-con {
    padding: 165px 0 170px;
    background-image: url(../images/angebot.png);
}
.serviceneed-con:before {
    background-image: linear-gradient(to right, rgb(0 0 0 / 30%), rgb(0 0 0 / 30%));
}
.serviceneed-con .need_content h2 {
    margin-bottom: 56px;
}
.serviceneed-con .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
}
.serviceneed-con .phone-number .number {
    font-size: 26px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 15px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.serviceneed-con .phone-number .number:hover {
    color: var(--e-global-color-accent);
}

/* Banner */
.banner4-con {
    background-color: var(--e-global-color-lime-green);
}
.banner4-con::before,
.banner4-con::after {
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.banner4-con::before {
    left: 0;
    background-image: url(../images/banner4-leftbackground.jpg);
}
.banner4-con::after {
    right: 0;
    background-image: url(../images/haus-con1.jpeg);
}
.banner4-con .icons {
    position: absolute;
    left: -152px;
    top: 42%;
    z-index: 2;
}
.banner4-con .icons li {
    margin: 18px 0;
    transition: all 0.3s ease-in-out;
}
.banner4-con .icons li:first-child {
    margin-top: 0;
}
.banner4-con .icons li:last-child {
    margin-bottom: 0;
}
.banner4-con .icons li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 100%;
    text-align: center;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.banner4-con .icons li a:hover i {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content {
    z-index: 1;
    position: relative;
    padding: 257px 105px 250px 0;
}
.banner4-con .banner_content h6{
    font-size: 20px;
    line-height: 20px;
    padding-left: 55px;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: 0;
    color: var(--e-global-color-white);
}
.banner4-con .banner_content h6::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 35px;
    height: 2px;
    position: absolute;
    background-color: var(--e-global-color-accent);
}
.banner4-con .banner_content h1{
    font-size: 76px;
    line-height: 80px;
    margin-bottom: 30px;
}
.banner4-con .banner_content h1 span{
    color: var(--e-global-color-accent) !important;
}
.banner4-con .banner_content .text1{
    line-height: 30px;
    margin-bottom: 38px;
    padding-right: 100px;
}
.banner4-con .banner_content .primary_btn {
    padding: 20px 35px 22px;
    margin-right: 18px;
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content .primary_btn i{
    color: var(--e-global-color-secondary);
}
.banner4-con .banner_content .primary_btn:hover {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner4-con .banner_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn {
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn i{
    color: var(--e-global-color-white);
}
.banner4-con .banner_content .secondary_btn:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}
.banner4-con .banner_content .secondary_btn:hover i{
    color: var(--e-global-color-secondary);
}
.banner4-con .banner_content .icons {
    display: none;
}

/* Topbar */

.top-bar-con {
    background-color: var(--e-global-color-lime-green);
}
.top-bar-con .top-bar-box{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-con .top-bar-box ul li:last-child {
    margin-bottom: 0 !important;
}
.top-bar-con .top-bar-box ul,
.top-bar-con .top-bar-box .info,
.top-bar-con .top-bar-box .top-bar-social {
    display: flex;
    align-items: center;
}
.top-bar-con .top-bar-box .info {
    padding-right: 35px;
}
.top-bar-con .top-bar-box .info:last-child {
    padding-right: 0;
}
.top-bar-con .top-bar-box .info i{
    font-size: 16px;
    color: var(--e-global-color-accent);
    transition: all 0.8s ease-in-out;
}
.top-bar-con .top-bar-box .info a,
.top-bar-con .top-bar-box .info p{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-left: 14px;
    color: var(--e-global-color-white);
    transition: all 0.8s ease-in-out;
}
.top-bar-con .top-bar-box .info a:hover {
    color: var(--e-global-color-accent);
}
.top-bar-con .top-bar-box .social-icons li {
    display: inline-block;
    margin: 0 10px;
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons li:first-child {
    margin-left: 0;
}
.top-bar-con .top-bar-box .social-icons li:last-child {
    margin-right: 0;
}
.top-bar-con .top-bar-box .social-icons i {
    font-size: 14px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.top-bar-con .top-bar-box .social-icons a:hover i{
    color: var(--e-global-color-accent);
}

.carousel-box {
    
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    transition: background-color 0.3s ease;
}

.carousel-box-track {
    display: flex;
    transition: transform 0.3s ease;
    .carousel-under-box {
        display: flex;
        overflow: hidden;
        margin: 0;
    }
}
.arrow-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fddf79;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.arrow-circle i {
    font-size: 16px;
    color: #000000;
}

.service-card:hover .service-content {
    background: #315347;
}

.service-card:hover .service-text h4,
.service-card:hover .service-text p {
    color: #ffffff;
}

.service-card:hover .arrow-circle {
    background: #ffffff;
}

.carousel-arrow {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #315347;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    color: #000000;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow:disabled {
    opacity: 0.3;
}


/* Datenschutz */
.datenschutz li {
    padding-left: 26px !important;
} 

/* Project PopUp Style */

.project_modal .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.project_modal .fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.project_modal .fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.project_modal .modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.project_modal .modal.show .modal-dialog {
    transform: translate(0,0);
}
.project_modal .modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.project_modal .modal-content {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--e-global-color-white);
    box-shadow: 1px 21px 46px rgb(0 0 100 / 25%);
    border-radius: 0;
    border: none;
}
.project_modal .modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border-bottom: none;
}
.project_modal .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.project_modal .modal-header .btn-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.project_modal .modal-header button {
    background: var(--e-global-color-accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.project_modal .btn-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.project_modal button.btn-close {
    border: 0;}
.project_modal button {
    text-transform: none;
    overflow: visible;
}
.project_modal .modal-header button i {
    color: var(--e-global-color-black);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.project_modal .fa-x:before {
    content: "\58";
}
.project_modal .blog-model-con {
    display: none;
}
.project_modal .blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.project_modal .modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.project_modal .modal-body .blog-box-item {
    display: flex;
    align-items: center;
    border-radius: 0;
}
.project_modal .blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}
.project_modal .modal-body .blog-img{
    float: left;
    width: 100%;
}
.project_modal .modal-body .blog-img figure {
    position: relative;
}
.project_modal .img-fluid {
    width: 100%;
    border-radius: 20px;
}
.project_modal .modal-content .project_content{
    padding: 40px 0 40px 20px;
}
.project_modal .modal-content .project_content h4{
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--e-global-color-secondary);
}
.project_modal .modal-content .project_content .text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties{
    margin-bottom: 20px;
}
.project_modal .modal-content .project_content .properties ul{
    padding-left: 25px;
}
.project_modal .modal-content .project_content .properties li {
    margin-bottom: 8px;
    position: relative;
    color: var(--e-global-color-text);
}
.project_modal .modal-content .project_content .properties li:last-child {
    margin-bottom: 0;
}
.project_modal .modal-content .project_content .properties ul li .circle {
    font-size: 9px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    top: 4px;
    left: -25px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
    transition: all 0.3s ease-in-out;
}
.project_modal .modal-content .project_content .primary_btn{
    padding: 18px 30px 20px;
}
.project_modal .modal-content .project_content .primary_btn:hover{
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-lime-green);
}
.project_modal .modal-content .project_content .primary_btn:hover i{
    color: var(--e-global-color-white);
}

/* 404 Page */

.error_page{
    height: 100vh;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--e-global-color-very-light-gray);
}
.error_page .error_content h1 {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .text2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--e-global-color-text);
}
.error_page .error_content .back_home {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    padding: 21px 30px;
    text-align: center;
    border-radius: 35px;
    display: inline-block;
    position: relative;
    color: var(--e-global-color-secondary);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.error_page .error_content .back_home:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-lime-green);
}
.error_page .error_content .back_home i{
    font-size: 12px;
    margin-left: 14px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-secondary);
}
.error_page .error_content .back_home:hover i{
    color: var(--e-global-color-white);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: var(--e-global-color-accent);
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 100%;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
.call-btns {
    position: fixed;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center!;
    width: 100% !important;
    z-index: 10;
    padding: 0px 20px;
    }
.call-btns .phone-number a:hover, .call-btns #whatsapp-btn:hover {
        background-color: #315347 !important;
    }

#whatsapp-btn, #phone-btn {
    background-color: white;
    visibility: visible;
    text-decoration: none; 
    padding: 10px 18px;
}
#phone-btn {
    padding: 10px 18px;
    visibility: visible;
    text-decoration: none; 
}

@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgb(42 42 42 / 40%)
}
to {
    box-shadow: 0 0 0 35px rgba(250, 87, 51, .01)
}
}

/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--e-global-color-accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--e-global-color-accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/*------------------------------------------------------ Hausmeisterservice -------------------------------------------------------*/
.banner4-con::before {
    left: 0;
    background-image: url(../images/banner4-leftbackground.jpg);
}
.banner4-con::after {
    right: 0;
    background-image: url(../images/haus-con1.jpeg);
}
.hausmeisterservice1-con {
    background-image: url(../images/haus-con2.png);
}
.hausmeisterservice1-con:before {
    background-image: linear-gradient(to right, rgb(0 0 0 / 60%), transparent);
}
.anfrage-con {
    background-image: url(../images/anfrage-bg.png);
}


/*------------------------------------------------------ Treppenreinigung -------------------------------------------------------*/
.treppen_banner_con { 
    background-image: url(../images/banner-treppen.png); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}  
.sub_banner .treppen_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
} 
.sub_banner_con, .home4_banner_outer {
        margin-top: 50px;
} 
.treppenreinigung_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/haus-con2.png);
}

/*------------------------------------------------------ Fensterreinigung -------------------------------------------------------*/
 .fenster_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-fenster.png);
}  

    .sub_banner .fenster_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

/*------------------------------------------------------ Gartenservice -------------------------------------------------------*/
 .garten_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-garten.png);
}  

    .sub_banner .garten_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

.gartenarbeiten_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/haus-con2.png);
}

/*------------------------------------------------------ Winterdienst -------------------------------------------------------*/
 .winterdienst_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-winterdienst.png);
}  

    .sub_banner .winterdienst_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}
.winterdienst_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/winterdienst_bg.png);
}

/*------------------------------------------------------ Entrümpelung -------------------------------------------------------*/
 .entrümpelung_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-entrümpelung.png);
}  

    .sub_banner .entrümpelung_banner_con::before {
    content: "";
    left: 0;

    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

.entruempelung_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/entruempelung_bg.png);
}

/*------------------------------------------------------ Kontakt -------------------------------------------------------*/
 .kontakt_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-kontakt.png);
}  

    .sub_banner .kontakt_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

/*------------------------------------------------------ Datenschutz -------------------------------------------------------*/
 .datenschutz_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-datenschutz.png);
}  

    .sub_banner .datenschutz_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

/*------------------------------------------------------ Impressum -------------------------------------------------------*/
 .impressum_banner_con { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/banner-impressum.png);
}  

    .sub_banner .impressum_banner_con::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to right, rgb(0 0 0 / 80%), transparent);
}

@media (max-width: 768px) {
    .projectform-con .project_content form span {
        font-size: 14px;
        line-height: 20px;
    }
}

.project_modal .modal.fade .modal-dialog {
    max-width: 900px !important;
}
