/*--------------------------------------------
        DEMO-PAGE styles
        HORNIGGSBERGER GmbH
        Author: Mark Nowotny
        Author Email: mark@cookycat.com
        Version: 1.0
--------------------------------------------*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #0b151b;
    font-size: 62.5%;
    overflow: hidden;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: #0b151b;
}


#circle-back {
    position: absolute;
    display: block;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(192, 226, 227, 0.15);
    width: 300px;
    height: 300px;
    border-radius: 50%;

    filter: blur(4rem);
    -webkit-filter: blur(4rem);
    -moz-filter: blur(4rem);
    -o-filter: blur(4rem);
    -ms-filter: blur(4rem);
}

.svg-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 100%;
    margin-bottom: 15vh;
}

.logo-podlaga {
    /* width: 100%; */
    /* max-width: 677px; */
    /* height: auto; */
    aspect-ratio: 380 / 421.264;
    /* background-color: darkmagenta; */
}

.clipp-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cc-maintitle {
    fill: #c0e2e3;
    transition: 0.4s ease-in-out;
}

#cc-maintitle:hover,
#cc-maintitle:focus {
    fill: #086972;
}

@media screen and (max-width: 385px) {
    .svg-container {
        max-width: calc(100vw - 80px);
        /* max-width: 100%; */
    }
}
