/* Scroll Edit */

body::-webkit-scrollbar {
    width: 6px; /* Ancho de la barra de desplazamiento */
    background: #eff2f5;
}

/* Estilo para el scrollbar thumb (la barra movediza) */
body::-webkit-scrollbar-thumb {
    background: #073b4c;
    /* height: 1px !important; */
}

.font-weight-light {
    font-weight: 300;
}

.li-tags-filter.active{
    background: #a8ddb3;
    border-radius: 30px;
    cursor: pointer;
    padding: 5px 20px;
}

.scrolltotop{
    right: 0.5%;
    bottom: 11%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #f5f5f5;
}

/* Thick red border */
hr.new4 {
    border: 1px solid rgb(0, 25, 253);
}

.bg-lightgradient {
    background: #fafafa;
}

.bg-greygradient {
    background: #fafafa;
}

.vert-divider-info {
    position: absolute;
    top: 10%;
    width: 1px;
    height: 90%;
    background-color: #0b214759;
}

.bg-grey {
    background: rgb(252, 252, 252);
}

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: right;
}

.bg-arblue {
    background: #073b4c;
}

.vert-divider {
    position: absolute;
    top: 0%;
    width: 1px;
    height: 100%;
    background-color: #0b214759;
}

.nunito {
    font-family: 'Nunito', sans-serif;
}

.text-arblue {
    color: #073b4c !important;
}

.text-money {
    color: #079a7d !important;
}

.text-lightblue {
    color: rgb(5 120 235);
}

.text-arbluelight {
    color: rgb(222 235 247);
}

a.text-whiteimp {
    color: rgb(238, 244, 250) !important;
}

.text-warncard {
    color: #95fff0;
}

.bg-warncard {
    background: #c4dad7;
}

.bg-lowcard {
    background: #eee;
    border-radius: 10px;
    border: 0.1px solid #FFB657;
    box-shadow: 0px 1px 2px;
}

.box-shdw {
    box-shadow: 0px 1px 3px;
}

.w-15 {
    width: 15%;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-24 {
    font-size: 24px;
}

.fs-30 {
    font-size: 30px;
}

.mt-1r {
    margin-top: 1rem;
}

.mt-2r {
    margin-top: 2rem;
}

.mt-3r {
    margin-top: 3rem;
}

.mt-4r {
    margin-top: 4rem;
}

.mt-5r {
    margin-top: 5rem;
}

.col-divider {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: 3.33333333%;
}

.border-aqua {
    border: 1px solid #4cbfa6;
}

.border-bottom-cy {
    border-bottom: 4px solid #4cbfa6;
}

.border-top-cy {
    border-top: 4px solid #4cbfa6;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-top-80 {
    margin-top: 80px;
}

.scale-hov {
    display: block;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .scale-hov img {
    display: block;
    width: 100%;
    height: auto;
}

.scale-hov:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.icon-color {
    color: rgb(5 120 235);
}

.zoom-effect {
    background-size: 100%;
    animation: zoom 10s ease-in-out infinite;
}

.zoom-effect-container {
    position: relative;
    overflow: hidden;
}

h1.text-shdw {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    animation: zoom 10s ease-in-out infinite;
    transition: opacity 2s ease-in-out; /* Suave transición de opacidad */
    opacity: 0;
}

#hero-section-1 {
    z-index: 1;
}

#hero-section-2 {
    z-index: 0;
}

#hero-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Asegura que el texto esté por encima de las imágenes */
    transition: opacity 2s ease-in-out;
    opacity: 1;
}

.p-icon {
    padding: 0.688rem;
}


@keyframes zoom {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 105%; /* Ajusta este valor según el nivel de zoom deseado */
    }
    100% {
        background-size: 100%;
    }
}

@keyframes colorChange {
    0% {
        background-color: orange;
        box-shadow: 0 0 10px orange;
    }
    50% {
        background-color: darkorange;
        box-shadow: 0 0 20px darkorange;
    }
    100% {
        background-color: orange;
        box-shadow: 0 0 10px orange;
    }
}

.separator {
    background-color: orange;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 5px;
    animation: colorChange 2s infinite;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 0 10px orange;
}

.separator .text {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

@media (min-width: 320px) and (max-width: 576.98px) {
    .fullscreen-menu.fm-show {
        width: 100%;
    }
    .d-none-sm {
        display: none;
    }
    .mb-li-sm {
        margin-bottom: 3.5px !important;
    }
    .owl-carousel.owl-dots-overlay .owl-dots {
        width: 65%;
    }
    .owl-carousel .owl-dots .owl-dot {
        width: 16px !important;
        height: 16px !important;
    }
    .column-sm {
        flex-direction: column;
    }
    .fs-10-sm {
        font-size: 10px !important;
    }
    .fs-11-sm {
        font-size: 11px !important;
    }
    .fs-12-sm {
        font-size: 12px !important;
    }
    .fs-13-sm {
        font-size: 13px !important;
    }
    .fs-14-sm {
        font-size: 14px !important;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .text-center-sm {
        text-align: center;
    }
    .mt-sm-menu {
        margin-top: 1.3rem;
    }
    .mt-sm-1r {
        margin-top: 1rem;
    }
    .mt-sm-2r {
        margin-top: 2rem;
    }
    .mt-sm-3r {
        margin-top: 3rem;
    }
    .mt-sm-4r {
        margin-top: 4rem;
    }
    .mt-sm-5r {
        margin-top: 5rem;
    }
    .box-shdw {
        box-shadow: none !important;
    }
    .w-100-sm {
        width: 100% !important;
    }
    .scrolltotop{
        right: 2%;
        bottom: 12%;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .d-none-md {
        display: none;
    }
    .box-shdw {
        box-shadow: none !important;
    }
    .scrolltotop{
        right: 1%;
        bottom: 12%;
    }
    .mb-li-md {
        margin-bottom: 4.5px !important;
    }
}

@media (min-width: 992px) {
    .d-none-lg {
        display: none !important;
    }
}