:root {
    --color-primario-light: #006b72;
    --color-primario-dark: #004f54;
    --color-dark-dark: #1d1d1b;
    --color-dark-light: #3c3c3b;
}

.fondo {
    box-sizing: border-box;
    position: relative;
    /* margin-left: 15px; */
    /* margin-right: 15px;*/
    border-radius: 11px;
    padding: 29px 68px 74px 21px;
    box-shadow: inset 0px 0px 30px 0px rgba(0,0,0,0.5);
}

.fondo-primary {
    background: linear-gradient(175deg, var(--color-primario-light), var(--color-primario-dark));
    color: #fff;
}

.fondo-dark {
    background: linear-gradient(90deg, var(--color-dark-dark), var(--color-dark-light));
    color: #fff;
}

@media(min-width: 576px) {
    .fondo {
        margin-left: 0;
        margin-right: 0;
    }   
}

@media(min-width: 992px) {
    .fondo {
        border-radius: 20px;
        padding: 43px 124px 83px 32px;
    }
}

.fondo h1 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    z-index: 10;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fondo h2 {
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    z-index: 10;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media(min-width: 991px) {
    .fondo h1 {
        font-size: 2.5rem;
    }

    .fondo h2 {
        font-size: 1.8rem;
    }
}

.logo-expo {
    display: block;
    position: absolute;
    top: 26px;
    right: 0;
    width: 57px;
    height: auto
}

.element-dots {
    display: block;
    position: absolute;
    bottom: 15px;
    left: 24px;
    width: 54px;
    height: auto;
    z-index: 1;
}

.fondo-dark .element-dots {
    left: auto;
    right: 24px;
    opacity: 0.6;
}

.element-arrows {
    display: block;
    position: absolute;
    bottom: -10px;
    right: 19px;
    width: 86px;
    height: auto;
    z-index: 1;
    opacity: 0.6;
}

.fondo-dark .element-arrows {
    left: 19px;
    right: auto;
    opacity: 0.1;
}

@media(min-width: 992px) {
    .logo-expo {
        top: 40px;
        width: 66px;
    }
    
    .element-dots {
        bottom: 15px;
        left: 24px;
        width: 68px;
    }
    
    .fondo-dark .element-dots {
        left: auto;
        right: 24px;
        opacity: 0.6;
    }
    
    .element-arrows {
        bottom: -10px;
        right: 29px;
        width: 99px;
    }
    
    .fondo-dark .element-arrows {
        left: 29px;
        right: auto;
        opacity: 0.1;
    }
}