.mylogo-holeder{
    display: block;
    position: relative;
    width: 230px;
    height: 64px;
}

#navbar #logo  {
    padding: 0;
}

#logo svg{
    position: absolute;
    width: 100%;
}

#logo svg.logoLight * {
    fill: #fff !important;
    polygon: #fff !important;

}


@media all and (min-width:600px){
    #navbar #logo {
        padding: 0 14px;
    }
}
@media all and (max-width:600px){
    #navbar #icons {
        padding: 0;
        margin-top: 20px;
    }
}

/* ------------------HOME ---------------------------*/

#to_sections{
    position: absolute;
    width: 100%;
    bottom: 5px;
    color: white;
    text-align: center;
    font-size: 28px;
    z-index: 20;
}
#to_sections:focus,
#to_sections:hover{
    color:cyan;
}

#myImage{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #a9c5d5;
}

#myImage picture{
    display: block;
    width: 100%;
    height: 100%;
}

#myImage img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#myCover{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;


    background: linear-gradient(to bottom,
        rgba(134, 170, 214,1) 0%, rgba(255,255,255,1) 10%,
        rgba(255,255,255,1) 20%,rgba(255,255,255,0) 50%);
}


#myHome{
    position: relative;
    width: 100%;
}


#myhome-wrapper{
    box-sizing: border-box;
    position: relative;
    width: 100%;
    aspect-ratio: 10/10;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mylogo_wrapper {
    position: absolute;
    width: 90%;
    max-width: 850px;
    z-index: 40;
    padding-bottom: 100px;
}

#mylogo-text{
    position: absolute;
    text-align: center;
    padding: 0 20%;
    top: 40%;
    font-size: 1.2rem;
    color: #333;
}


@media (min-width:640px){
    #myhome-wrapper{
        aspect-ratio: 4/3;
    }

    #mylogo_wrapper {
        padding-bottom: 120px;
    }
    #mylogo-text{
        top: 42%;
        font-size: 1.4rem;
    }

}


@media (min-width:1200px){
    #myhome-wrapper{
        aspect-ratio: 16/9;
    }

    #mylogo_wrapper {
        width: 70%;
    }
    #mylogo-text{
        top: 43%;
        font-size: 1.4rem;
    }


    #myCover{
         background: linear-gradient(to bottom,
            rgba(134, 170, 214,1) 0%, rgba(255,255,255,1) 15%,
            rgba(255,255,255,0) 50%);
    }

}

@media (min-width:1440px){
    #myhome-wrapper{
        padding: 0;
        aspect-ratio: auto;
        width: 100%;
        height: 100vh;
    }
}

