:root {
    --primary: #4cd137;
    --bright-green: #32ff7e;
    --dark-green: #1a4c39;
    --animate-duration: 1.5s;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    height: 5000px;
}

img {
    max-width: 100%;
}


img.logo {
    max-height: 50px;
}

.center-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.align-bottom-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mt-100 {
    margin-top: 100px
}

.modal-body {
    padding: 60px 80px;
}

.modal-close-container {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
}

.modal-close-container button {
    font-size: 36px;
    color: #ffffff;
}

.modal-quote-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background: url("../img/bg/quote-bg.jpg") 50% 50%;
    color: #ffffff;
    padding: 30px 60px;
}

.modal-quote-container .quote {
    font-size: 1.3rem;
}

.modal-inhalt {
    margin-top: 200px;
}

.modal-xl {
    max-width: 80% !important;
    margin-left: auto;
    margin-right: auto;
}

.loader {
    width: 26px;
    margin-right: 6px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

#toast-container > div {
    opacity: 1;
}

.footer-links {
    flex-direction: row;
    font-size: 0.85rem;
}

.zu-arbeitsweise {
    color: var(--primary) !important;
    cursor: pointer;
}

.navbar-dark .navbar-brand {
    color: var(--primary);
}

.navbar.top .navbar-brand {
    color: #ffffff;
}

.navbar-brand {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary);
}

.navbar-brand:hover {
    color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}


/*--------------------------------------------------
[1. Start Navbar]
--------------------------------------------------*/
.navbar {
    background: #ffffff;
    padding: 25px;
}

.navbar.top {
    background: linear-gradient(135deg, rgba(22, 37, 43, 0.01) 0%, rgba(22, 37, 43, 0.01) 100%);
    padding: 25px;
}

.navbar .nav-item {
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.navbar .nav-item .nav-link {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #444444;
    font-weight: 500;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.navbar.top .nav-item .nav-link {
    color: #ffffff;
}

.navbar.top .nav-item .nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.navbar .nav-item .nav-link:hover {
    color: #4cd137 !important;
}

.navbar .btn {
    text-decoration: none;
    background: #4cd137;
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 35px;
    margin-left: 40px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

.navbar .btn:hover {
    background: #ffffff;
    color: #212332;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kooperation {
    font-size: 0.8rem;
}

/*--------------------------------------------------
[2. Start Slider]
--------------------------------------------------*/
.slider {
    background: url("../img/bg/landingpage-background.jpg") center center no-repeat;
    background-size: cover;
    height: 100vh;
    background-attachment: fixed;
    position: relative;
}

.slider .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    margin-top: 20px;
}

.slider .content h1 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.slider .content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Muli', sans-serif;
    color: #ffffff;
    margin: 10px 0 25px;
}

.slider .btn {
    text-decoration: none;
    background: #4cd137;
    color: #ffffff;
    padding: 10px 35px;
    border-radius: 35px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

.slider .btn:hover {
    background: #ffffff;
    color: #212332;
}

.slider .btn-2 {
    background: transparent;
    border: 1px solid #ffffff;
    margin-left: 15px;
}

/*--------------------------------------------------
[3. Start Welcome]
--------------------------------------------------*/
.welcome {
    padding: 130px 0;
}

.welcome h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.welcome h2 span {
    color: #4cd137;
}

.welcome p {
    font-weight: 400;
    line-height: 1.7;
    color: #888888;
    margin: 20px 0 60px;
    padding: 0;
}

.welcome ul {
    color: #888888;
}

.welcome .box {
    padding: 40px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #ffffff;
    border-bottom: 2px solid #4cd137;
    transition: all 0.5s ease-in-out;

}

.welcome .box:hover {
    box-shadow: 1px 1px 14px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-10px)
}

.welcome .box:hover .line {
    width: 100px;
}

.welcome .box .line {
    background: #4cd137;
    width: 40px;
    height: 1px;
    transition: all 0.5s ease-in-out;
}

.welcome .box .icon {
    padding: 0;
    margin: 0;
    font-size: 40px;
    color: #4cd137;
}

.welcome .box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.welcome .box p {
    margin: 0;
}

/*--------------------------------------------------
[4. Start skills]
--------------------------------------------------*/
.skills {
    padding: 130px 0;
    background: url("../img/bg/quote-bg.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
}

.skills .content {
    padding-right: 30px;
}

.skills .content span {
    color: #4cd137;
    font-size: 18px;
    font-weight: 400;
}

.skills .content h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

.skills .content p {
    font-size: 15px;
    font-weight: 400;
    color: #d1e5e7;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 40px;
    padding-right: 30px;
}

.skills .mb {
    margin-bottom: 40px;
}


/*--------------------------------------------------
[5. Start About]
--------------------------------------------------*/
.about {
    padding: 130px 0;
}

.about .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.about .heading h2 span {
    color: #4cd137;
}

.about .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #888888;
    margin: 20px 0 60px;
    padding: 0;
}

.about h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.about p {
    font-weight: 400;
    line-height: 1.7;
    color: #888888;
    margin: 20px 0 15px;
    padding: 0;
}

.about h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 8px 0;
}

.about h4 .icon {
    color: #4cd137;
    margin-right: 10px;
}

/*--------------------------------------------------
[7. Start Services]
--------------------------------------------------*/
.services {
    padding: 130px 0 100px;
}

.services h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.services h2 span {
    color: #4cd137;
}

.services p {
    font-weight: 400;
    line-height: 1.7;
    color: #888888;
    margin: 20px 0 60px;
    padding: 0;
}

.services .box {
    padding: 40px 0;
    box-shadow: 1px 1px 14px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.5s ease-in-out;
    margin-bottom: 30px;

}

.services .box:hover {
    box-shadow: 1px 1px 14px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.services .box:hover .line {
    width: 100px;
}

.services .box .line {
    background: #4cd137;
    width: 40px;
    height: 1px;
    transition: all 0.5s ease-in-out;
}

.services .box .icon {
    padding: 0;
    margin: 0;
    font-size: 40px;
    color: #4cd137;
}

.services .box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.services .box p {
    margin: 0;
}

.services .mb-30 {
    margin-bottom: 30px;
}

/*--------------------------------------------------
[10. Start More Details]
--------------------------------------------------*/
.more-details {
    padding: 130px 0;
    background: #f9f9f9;
}

.more-details p {
    color: #888888;
    line-height: 1.7;
}

/*--------------------------------------------------
[17. Start Contact]
--------------------------------------------------*/
.contact {
    padding: 130px 0;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.contact .heading h2 span {
    color: #4cd137;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #888888;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #4cd137;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    display: flex;
    margin-top: 30px;
}

.contact .content .info .icon {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
}

.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
    color: #888888;
}

.contact .content .info h4 a {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
    color: #888888;
}

/*--------------------------------------------------
[18. Start Footer]
--------------------------------------------------*/
.footer {
    padding: 20px 0;
    background: url("../img/bg/footer-bg.jpg") center center no-repeat;
    background-size: cover;
}

.footer a {
    color: var(--bright-green);
}

.footer p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------
[19. Start Page Loading]
--------------------------------------------------*/
.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../img/loader/Preloader_3.gif") center no-repeat #fff;
}

/*--------------------------------------------------
[20. Start Media Query]
--------------------------------------------------*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    img.logo {
        max-height: 36px;
    }

    .slider .container .content h1 {
        font-size: 2.3rem;
    }

    .slider .container .content h2 {
        font-size: 1.5rem;
        margin-top: 20px;
    }


    .navbar {
        background: #ffffff !important;
    }

    .navbar .nav-item {
        margin: 30px 0 0 30px;
    }

    .navbar .nav-item .nav-link {
        color: #555555;
    }

    .navbar-dark .navbar-toggler {
        color: #4cd137 !important;
        border-color: #4cd137;
        background: #4cd137;
        border-radius: 5px;
        opacity: 1;
    }

    .navbar .btn {
        margin-left: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .slider .content {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-45%, -50%);
        color: #ffffff;
        margin-top: 20px;
    }

    .welcome .box {
        margin-bottom: 30px;
    }

    .welcome {
        padding: 130px 0 100px;
    }

    .skills .box-2 {
        margin-top: 30px;
    }

    .about img {
        margin-bottom: 30px;
    }

    .some-facts {
        padding: 115px;
    }

    .some-facts .items {
        margin: 15px 0;
    }

    .portfolio .button-group {
        padding: 5px;
    }

    .more-details img {
        margin-bottom: 30px;
    }

    .team {
        padding: 130px 0 100px;
    }

    .team .box {
        margin-bottom: 30px;
    }

    .price {
        padding: 130px 0 100px;
    }

    .price .box {
        margin-bottom: 30px;
    }

    .blog {
        padding: 130px 0 100px;
    }

    .blog .box {
        margin-bottom: 30px;
    }

    .clients {
        padding: 130px 0 100px;
    }

    .clients img {
        margin: 15px 0;
    }

    .contact .content .info {
        margin-bottom: 30px;
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .navbar {
        padding: 25px;
        background: #ffffff !important;
    }

    .navbar .nav-item {
        margin: 30px 0 0 30px;
    }

    .navbar .nav-item .nav-link {
        color: #555555;
    }

    .navbar-dark .navbar-toggler {
        color: #4cd137 !important;
        border-color: #4cd137;
        background: #4cd137;
        border-radius: 5px;
        opacity: 1;
    }

    .navbar .btn {
        margin-left: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .slider .content {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-45%, -50%);
        color: #ffffff;
        margin-top: 20px;
    }

    .slider .content h1 {
        margin: 0;
        padding: 0;
        font-size: 60px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .welcome .box {
        margin-bottom: 30px;
    }

    .welcome {
        padding: 130px 0 100px;
    }

    .skills .box-2 {
        margin-top: 30px;
    }

    .about img {
        margin-bottom: 30px;
    }

    .video-area img {
        margin-top: 30px;
        width: 100%;
    }

    .some-facts {
        padding: 115px;
    }

    .some-facts .items {
        margin: 15px 0;
    }

    .more-details img {
        margin-bottom: 30px;
    }

    .team {
        padding: 130px 0 100px;
    }

    .team .box {
        margin-bottom: 30px;
    }

    .price {
        padding: 130px 0 100px;
    }

    .price .box {
        margin-bottom: 30px;
    }

    .blog {
        padding: 130px 0 100px;
    }

    .blog .box {
        margin-bottom: 30px;
    }

    .clients img {
        margin: 15px 0;
    }

    .contact .content .info {
        margin-bottom: 30px;
    }

    .footer {
        padding: 80px 0;
    }

    .footer-links {
        flex-direction: column;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .navbar {
        padding: 25px;
        background: #ffffff !important;
    }

    .navbar-brand {
        color: var(--primary) !important;
    }

    .navbar .nav-item {
        margin: 30px 0 0 30px;
    }

    .navbar .nav-item .nav-link {
        color: #444444 !important;
        text-align: start;
    }

    .navbar-dark .navbar-toggler {
        color: #4cd137 !important;
        border-color: #4cd137;
        background: #4cd137;
        border-radius: 5px;
        opacity: 1;
    }

    .navbar .btn {
        margin-left: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .slider .content {
        position: absolute;
        top: 55%;
        left: 45%;
        transform: translate(-45%, -50%);
        color: #ffffff;
        margin-top: 20px;
    }

    .skills .box-2 {
        margin-top: 30px;
    }

    .about img {
        margin-bottom: 30px;
    }

    .video-area img {
        margin-top: 30px;
    }

    .some-facts {
        padding: 115px;
    }

    .some-facts .items {
        margin: 15px 0;
    }

    .more-details img {
        margin-bottom: 30px;
    }

    .team {
        padding: 130px 0 100px;
    }

    .team .box {
        margin-bottom: 30px;
    }

    .price {
        padding: 130px 0 100px;
    }

    .price .box {
        margin-bottom: 30px;
    }

    .modal-body {
        padding: 60px 30px
    }

    .modal-quote-container .quote {
        font-size: 0.9rem;
    }
}

