html,
body {
    height: 100%;
}

.logo {
    fill: #FFFF;
    height: 4em;
    display: inline-block;
    content: var(--urllogo);
}

.navbar {
    width: 100%;
    min-height: 4rem !important;
    border-bottom: 0.25rem solid var(--color2);
    top: 0;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0;
}

.container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0 !important;
    display: flex;
}

.fondo {
    background-image: var(--urlfondo);
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
}

.row {
    width: 100vw;
}

.login-panel {
    height: 100%;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.btn-login {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 8px 20px 0 rgba(0, 0, 0, 0.30);
    color: white;
    border-radius: 10px;
    background-color: var(--color1);
    font-weight: 400;
    border: 0;
    padding-top: 13px;
    padding-bottom: 13px;
}

.btn-login:hover {
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    color: var(--color1);
    background-color: var(--color2);
    border: 2px solid var(--color1);
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 260px solid transparent;
    z-index: 99;
    border-right: 260px solid var(--color1);
    position: absolute;
    bottom: 0;
    right: 0;
}

.navbar {
    padding-bottom: 0;
    padding-top: 0;
}

.arrow-left {
    width: 0;
    height: 0;
    border-top: 280px solid transparent;
    z-index: 99;
    border-right: 280px solid var(--color2);
    position: absolute;
    bottom: 0;
    right: 0;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 130px solid transparent;
    z-index: 99;
    border-top: 130px solid var(--color1);
    position: absolute;
    top: 14%;
    right: 0;
}

.footer {
    border-top: 4px solid var(--color2);
    text-align: center;
    color: black;
    justify-content: center;
    font-weight: 500;
    position: absolute;
    width: 100%;
    background-color: white;
    font-size: 11px;
    z-index: 100;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px;
}

#footer {
    margin-bottom: 0;
}

.carousel-item1 {
    content: var(--urlpic1);
}

.carousel-item2 {
    content: var(--urlpic2);
}

.carousel-item3 {
    content: var(--urlpic3);
}

.carousel {
    width: 100%;
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

@media (max-width: 855px) {

    .arrow-right {
        border-top: 220px solid transparent;
        border-right: 220px solid var(--color1);
    }

    .arrow-left {
        border-top: 240px solid transparent;
        border-right: 240px solid var(--color2);
    }

    .carousel-item1 {
        content: var(--urlpic1mobile1)
    }

    .carousel-item2 {
        content: var(--urlpic1mobile2)
    }

    .carousel-item3 {
        content: var(--urlpic1mobile3)
    }

}

@media (max-width: 400px) {
    .carousel-item1 {
        margin-top: 10%;
    }

    .carousel-item2 {
        margin-top: 10%;
    }

    .carousel-item3 {
        margin-top: 10%;
    }

    .arrow-left {
        display: none;
    }

    .arrow-right {
        display: none;
    }

    .arrow-right-footer {
        width: 0;
        height: 0;
        border-top: 280px solid transparent;
        z-index: 99;
        border-right:280px solid var(--color1);
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .arrow-left-footer {
        width: 0;
        height: 0;
        border-top: 300px solid transparent;
        z-index: 99;
        border-right: 300px solid var(--color2);
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .footer {
        bottom: 0;
    }

}