#objectContainer{
    & canvas {
        max-width: 100%;
        height: 100%;
        z-index: -1;
        position: fixed;
        top: 0;
        left: 0;
    }
}

#objectContainerContact{
    width: 100%;
    height: 500px;

    & p {
        font-style: italic;
        color: var(--color-muted);
        padding: 0;
        margin: 0;
    }

    & canvas {
        max-width: 100%;
        max-height: 100%;
    }
}

.main-service {
    display: flex;
    margin-top: 9rem;
    flex-direction: column;
    width: 100%;
    position: relative;

    & footer {
        display: flex;
        height: 10%;
        width: 100%;
        padding: 2rem;
        border-top: 1px solid var(--color-border);
        margin-top: 3rem;
        margin-bottom: 10rem;

        & .footer-section {
            display: flex;
            flex-direction: column;
            width: 33%;
            justify-content: end;

            & a {
                margin: 1rem 0;
            }
        }

        & .logo-wrapper {
            display: flex;
            flex-direction: row;

            & .logo-column {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;

                & .img-container {
                    width: 100%;

                    & img {
                        max-width: 50%;
                    }
                }
            }
        }
    }

    & #headline {
        font-size: 6rem;
        color: var(--color-accent);
        margin: 0 auto;
        margin-bottom: 3rem;
        text-align: center;
        width: 100%;
        margin-top: 9rem;
    }

    & #subHeadline {
        color: var(--color-muted);
        margin: 0 auto;
        font-size: 2rem;
        text-align: center;
    }

    & .__scroll-spacer-resp {
        display: none;
    }

    & .header {
        font-size: 2rem;
        color: var(--color-accent);
    }

    & .service-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 0 3rem;
        width: 100%;
        align-items: center;

        & .top, .bottom {
            display: flex;
            flex-direction: column;
            width: 90%;
            backdrop-filter: blur(10px);
            border-radius: 5rem;
            padding: 1rem;
            opacity: 0;
            margin: 2rem auto;
            padding: 2rem;
            margin: 7rem 0;
            text-align: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.527);
            border: 1px solid var(--color-border);

            & ul {
                text-align: start;
            }

            & .highlighted {
                color: var(--color-accent);
                font-size: 1.1rem;
            }

            & .text-list-outer-wrapper {
                display: flex;
                justify-content: space-between;
                width: 100%;

                & .text-list-wrapper {
                    display: flex;
                    flex-direction: column;
                    text-align: center;
                    align-items: center;
                    width: 45%;
                }
            }

            & .webs-wrapper {
                display: flex;
                width: 100%;              
                text-align: center;
                justify-content: space-evenly;
                
                & .webs-inner-wrapper {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: start;
                    width: 30%;
                    margin-top: 4rem;
                    margin-bottom: 3rem;
                }

                & .center {
                    border: 1px solid var(--color-accent-hover);
                    margin-top: 0;
                    border-radius: 5rem;
                }

                & .hosting {
                    margin-top: 0;
                    margin-bottom: 0;
                }
            }

            & .text {
                font-size: 1.0rem;
                margin: 1.5rem 0;
            }

            & .inner-wrapper {
                width: 100%;
                display: flex;
                justify-content: space-evenly;

                & .inner-container {
                    width: 50%;
                    text-align: start;
                }
            }
        }
    }

    & .cta-container {
        display: flex;
        align-items: end;
        flex-direction: column;
        justify-content: end;
        min-height: 100vh;
        margin-top: 10rem;

        & .cta-wrapper {
            margin: 0 0;
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: end;
            opacity: 0;

            & .left, .right {
                display: flex;
                flex-direction: column;
                justify-content: center;
                width: 48%;
                padding: 3rem;
            }
        }
    }

    & .contact-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 3rem;

        & .general-data {
            width: 60%;
            display: flex;
            flex-direction: column;
        }

        & .contact-form {
            width: 35%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            border-left: 1px solid var(--color-border);

            & .input-wrapper {
                width: 100%;
                display: flex;
                justify-content: space-between;
            }

            & input {
                margin-bottom: 3rem;
                min-width: 45%;
            }

            & button {
                width: 50%;
                margin: 0 auto;
            }

            & textarea {
                background: none;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                color: var(--color-text);
                height: 5rem;
                margin: 2rem 0;
                border: 1px solid var(--color-border);
            }
        }
    }
}

@media screen and (max-width: 900px) {
    .main-service {
        margin-top: 9rem;

        & .header {
            font-size: 1.5rem;
        }

        & footer {
            flex-direction: column;
            justify-content: center;

            & .footer-section {
                width: 100%;
                text-align: center;
                margin-bottom: 2rem;

                & .logo-wrapper {
                    flex-direction: column;
                }
            }    
        }

        & #headline {
            font-size: 3rem;
        }

        & #subHeadline {
            font-size: 1.5rem;
        }

        & .__scroll-spacer {
            display: none;
        }

        & .__scroll-spacer-resp {
            display: block;
        }

        & .service-container {
            padding: 0 2rem;
            margin-top: 10rem;

            & .top, .bottom {
                width: 100%;
                border-radius: 3rem;


                & .text-list-outer-wrapper {
                    flex-direction: column;
                    width: 100%;

                    & .text-list-wrapper {
                        width: 100%;
                    }
                }

                & .webs-wrapper {
                    flex-direction: column;
                    
                    & .webs-inner-wrapper {
                        margin-top: 0;
                        width: 100%;
                    }
                }

                
                & .inner-wrapper {
                    flex-direction: column;
                    justify-content: center;

                    & .inner-container {
                        width: 100%;
                    }
                }
            }
        }

        & .cta-container {
            & .cta-wrapper {
                flex-direction: column;
                justify-content: center;
                padding: 0 2rem;

                & .left, .right {
                    width: 100%;
                    background: rgba(0, 0, 0, 0.521);
                    border-radius: 3rem;
                    border: 1px solid var(--color-border);
                    margin: 2rem 0;
                    padding: 1rem;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
            }
        }
        
        & .contact-wrapper {
            flex-direction: column-reverse;

            & .contact-form {
                width: 100%;
                border: none;
                border-bottom: 1px solid var(--color-border);
                padding: 0;
                padding-bottom: 2rem;
                margin-bottom: 2rem;
            }

            & .general-data {
                width: 100%;
                justify-content: center;

                & #objectContainerContact {
                    width: 100%;
                    height: 600px;
                    margin: 0 auto;

                    & canvas {
                        width: 50%;
                    }
                }
            }
        }
    }
}