:root {
    --primary: #7baf37;
}

.footer-section {
    background-color: #97D843;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.section-dark::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50% 50% 0 0;
    z-index: 999999999;
    box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.1);
}

.footer-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #EEEEEE;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.1);
}

/* Lottie flotante */
.lottie-float {
    z-index: 9999999;
    width: 220px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    display: flex;
    position: fixed;
    bottom: -40px;
    right: 40px;
}


/* Boton flotante */
.btn-flotante {
    z-index: 999999999999;
    display: flex;
    align-items: center;
    font-size: 13px;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 20px;
    background-color: rgb(77, 206, 77);
    padding: 15px;
    position: fixed;
    bottom: 60px;
    right: 40px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-flotante img {
    padding: auto;
    height: 30px;
}

.btn-flotante:hover {
    background-color: rgb(77, 206, 77);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-7px);
    color: #ffffff !important;
}

.presentation-title {
    font-size: 50px !important;
}

@media only screen and (max-width: 600px) {

    .btn-flotante {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0px 8px 15px rgba(255, 255, 255, 0);
        background-color: transparent;
    }

    .btn-flotante img {
        padding: 0;
        height: 60px;
        width: 60px;
    }

    .btn-flotante span {
        display: none;
    }

    .btn-flotante span:hover {
        display: flex;
    }

    .lottie-float {
        display: none;
    }

    .presentation-title {
        font-size: 40px !important;
    }
}

.dropdown-item:hover {
    background-color: var(--primary) !important;
}

#myVideo-arbio {
    width: 100%;
    height: 1120px;
    object-fit: cover;
    position: absolute;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.opacidad {
    width: 100%;
    height: 1120px;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    background-color: #000000d7 !important;
}

.down-link:hover {
   transform: scale(1.05);
   font-weight: 500 !important;
}