/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    .estilo-grid {
        text-align: left !important;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  .estilo-grid {
        text-align: left !important;
    }
}

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    animation: shadow-pulse 1s infinite;
}

.whatsapp-icon {
    margin-top: 13px;
}

.main-header__right__content__number:hover {
    color: #F2A516 !important;
}

.main-timeline {
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    height: 1100px;
}

.main-timeline::-webkit-scrollbar {
    height: 8px;
    background-color: transparent;
    border-radius: 4px;
}

.main-timeline::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

.main-timeline:hover {
    &::-webkit-scrollbar {
        background-color: #aaa;
    }

    &::-webkit-scrollbar-thumb {
        background: #F2A516;
    }
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline:before {
    content: '';
    height: 2px;
    width: 2550px;
    border: 2px dashed #a3a3ad;
    /* transform: translateX(-50%); */
    position: absolute;
    left: 40px;
    top: 50%;
}

.main-timeline .timeline {
    max-height: 450px;
    padding: 0 35px 0 27px;
    margin: 0 10px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    transform: translateY(634px);
}

.main-timeline .timeline-content {
    background: linear-gradient(#d9d9d9, #e7e7e7);
    width: 450px;
    max-height: 400px;
    text-align: center;
    padding: 15px 40px 15px 40px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.6);
    display: block;
    position: relative;
}

.main-timeline .timeline-content img {
    height: 200px;
    object-fit: contain;
    border-radius: 3px;
}

.main-timeline .timeline-content .timeline-img {
    box-shadow: 5px 5px 5px #c7c7c7;
    width: fit-content;
    height: 200px;
    margin: 15px auto;
    border-radius: 3px;
    display: flex;
    align-items: end;
    justify-content: end;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
    content: "";
    background: #F2A516;
    /*background: linear-gradient(to bottom,#647cde,#78b0fa);*/
    width: 45px;
    height: 45px;
    transform: rotate(-45deg);
    position: absolute;
    top: -108px;
    right: 13px;
    z-index: 1;
}

.main-timeline .timeline-content:after {
    background: #fff;
    transform: rotate(-45deg) scale(0.6);
}

.main-timeline .timeline-icon {
    color: #fff;
    background: #F2A516;
    /*background: linear-gradient(to right,#617de0,#78b1f8);*/
    font-size: 23px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    bottom: -40px;
    left: 50%;
}

.main-timeline .timeline-icon i {
    transform: rotate(45deg);
}

.main-timeline .timeline-year {
    color: #fff;
    background: #F2A516;
    /*background: linear-gradient(to bottom,#617de0,#617de0,#78b1f8);*/
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 100%;
    border-radius: 5px 0 0 0;
    position: absolute;
    right: 0;
    top: -50px;
}

.main-timeline .timeline-year:after {
    content: '';
    background: linear-gradient(to top left, #F2A516 49%, transparent 50%);
    height: 33px;
    width: 33px;
    position: absolute;
    right: 0;
    top: -33px;
}

.main-timeline .title {
    color: #000;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 7px 0;
}

.main-timeline .description {
    color: #333;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 0;
}

.main-timeline .timeline:nth-child(even) {
    padding: 0 27px 0 35px;
    margin: 0 0 20px 10px;
    justify-content: end;
    transform: translateY(10px);
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    padding: 30px 40px 15px 40px;
    border-radius: 5px 5px 0 0;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before,
.main-timeline .timeline:nth-child(even) .timeline-content:after {
    right: auto;
    left: 13px;
    top: auto;
    bottom: -108px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    bottom: auto;
    top: 0;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
    top: auto;
    bottom: -50px;
    border-radius: 0 0 5px 0;
}

.main-timeline .timeline:nth-child(even) .timeline-year:after {
    /* transform: rotateY(180deg); */
    right: auto;
    top: auto;
    left: 0;
    bottom: -33px;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+2) .timeline-icon {
    background: #D90B31;
    /*background:linear-gradient(to left,#f53b57,#ef5777);*/
}

.main-timeline .timeline:nth-child(4n+2) .timeline-year {
    background: #D90B31;
    /*background:linear-gradient(to bottom,#f53b57,#f53b57,#ef5777);*/
}

.main-timeline .timeline:nth-child(4n+2) .timeline-year:after {
    background: linear-gradient(to right bottom, #D90B31 49%, transparent 50%);
}

.main-timeline .timeline:nth-child(4n+3) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+3) .timeline-icon {
    background: #F2A516;
    /*background:linear-gradient(to bottom,#227e22 ,#63a211);*/
}

.main-timeline .timeline:nth-child(4n+3) .timeline-year {
    background: #F2A516;
    /*background:linear-gradient(to bottom,#227e22,#227e22,#63a211);*/
}

.main-timeline .timeline:nth-child(4n+3) .timeline-year:after {
    background: linear-gradient(to top left, #F2A516 49%, transparent 50%);
}

.main-timeline .timeline:nth-child(4n+4) .timeline-content:before,
.main-timeline .timeline:nth-child(4n+4) .timeline-icon {
    background: #D90B31;
    /*background:linear-gradient(to left,#7d5ac2 ,#b493fe);*/
}

.main-timeline .timeline:nth-child(4n+4) .timeline-year {
    background: #D90B31;
    /*background:linear-gradient(to bottom,#7d5ac2,#7d5ac2,#b493fe);*/
}

.main-timeline .timeline:nth-child(4n+4) .timeline-year:after {
    background: linear-gradient(to right bottom, #D90B31 49%, transparent 50%);
}

/*NAV*/
.mobile-nav__content {
    background-color: #D90B31;
}

.mobile-nav__content .mobile-nav__contact li > i {
    background-color: #F2A516;
}

.mobile-nav__content .logo-box img {
    filter: contrast(15);
}

/*END NAV*/

/*INDEX*/
.main-header--two {
    background-color: #D90B31;
}

.main-header--two.active {
    background-color: #D90B31;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
    color: #F2A516 !important;
}

.main-header--two:not(.sticky-header--cloned) {
    position: relative;
}

.imagen-publicidad {
    height: 215px !important;
}

.imagen-publicidad-formato {
    background-position: left bottom;
}

.main-slider-two__bg::before {
    background-color: transparent !important;
}

.textos-naranjas {
    color: #F2A516 !important;
}

.textos-blancos {
    color: #FFFFFF !important;
}

.fondo-verde {
    background-color: #D90B31;
}

.boton-eligenos:hover {
    color: #000;
}

.boton-eligenos::before {
    background-color: #F2A516 !important;
}

/*END INDEX*/

/*PAQUETERIA*/
.paquetes-fondo {
    height: 100%;
}

.paquetes-container {
    padding-left: 15px;
    padding-right: 15px;
}

.paquete-card {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 10px 10px 5px #c7c7c7;
}

.paquetes-imagen {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    background-position: center center;
    z-index: -1;
    filter: grayscale(100%);
}

.paquete-header {
    padding: 15px 5px;
    color: #000 !important;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.8px;
    background: #D90B31;
    align-items: center;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-wrap: wrap;
}

.paquete-titulo {
    font-size: 20px;
    line-height: 100%;
    padding: 0;
}

.paquete-precio {
    padding: 0;
    font-size: 18px;
    color: #F2A516 !important;
    margin-left: 3px;
    margin-right: 6px;
    line-height: 100%;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
}

.paquete-descripcion {
    background: var(--laboix-white, #fff);
    padding: 15px 10px 25px;
    text-align: center;
    font-size: 15px;
    line-height: 23px;
    height: 140px;
}

.paquete-catacteristicas-container {
    background: var(--laboix-white, #fff);
    padding: 10px 0;
}

.paquete-caracteristicas {
    background: var(--laboix-white, #fff);
    padding: 0 0px;
    text-align: center;
}

.paquete-caracteristica + .paquete-caracteristica {
    margin-top: 12px !important;
}

.paquete-caracteristica {
    display: inline-block;
    margin: 0 20px;
    font-size: 20px
}

.estilo-grid {
    text-align: center;
}

.scroll-vertical {
    overflow: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.scroll-vertical > * {
    margin-top: 0;
}

.scroll-vertical::-webkit-scrollbar {
    width: 4px;
    background-color: #aaa;
    border-radius: 4px;
}

.scroll-vertical::-webkit-scrollbar-thumb {
    background: #D90B31;
    border-radius: 4px;
}

/*END PAQUETERIA*/

/*SERVICIOS*/
.accrodion-title {
    padding: 10px 70px 10px 10px !important;
}

.categorias-imagen-contenedor {
    padding: 3px;
    box-shadow: inset 2px 2px #c7c7c7;
    border-radius: 13px;
}

.categorias-imagen {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.alphabet li {
    display: inline-block;
}

.alphabet li a {
    font-weight: bold;
    color: #000;
}

.alphabet li a:not(.view-all) {
    opacity: .3;
}

.alphabet .view-all {
    margin-right: 1rem;
}

.alphabetGral li {
    display: inline-block;
}

.alphabetGral li a {
    font-weight: bold;
    color: #000;
}

.alphabetGral li a:not(.view-all) {
    opacity: .3;
}

.alphabetGral .view-all {
    margin-right: 1rem;
}

@media(max-width: 425px) {
    .alphabetGral li.todos {
        display: block;
    }

    .alphabetGral li.todos a {
        font-size: 20px;
    }

    .alphabet li.todos {
        display: block;
    }

    .alphabet li.todos a {
        font-size: 20px;
    }

    .alphabetGral li {
        margin: 0 5px;
    }

    .alphabet li {
        margin: 0 5px;
    }

    .alphabet li a:not(.view-all) {
        font-size: 24px;
    }

    .alphabetGral li a:not(.view-all) {
        font-size: 24px;
    }
}

.card-servicios {
    padding: 5px 10px;
    margin-bottom: 15px;
}

.card-servicios a {
    color: var(--laboix-base, #021936);
}

.servicio-imagen-contenedor {
    padding: 5px;
    box-shadow: inset 4px 4px #c7c7c7;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 0.5px #c7c7c7;
}

.servicio-imagen {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.servicio-precio {
    margin-top: 10px;
    color: #F2A516;
    font-size: 35px;
}

.service-sidebar__title {
    border-radius: 20px 20px 0 0;
}

.service-sidebar__nav {
    border-radius: 0 0 20px 20px;
}

.servicio-contenido {
    padding: 0 10px;
}

.servicio-contenido p {
    text-align: justify;
}

.servicio-contenido a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
}

.servicio-contenido .ql-font-Lexend {
    font-family: 'Lexend' !important;
}

.servicio-contenido .ql-font-Urbanist {
    font-family: 'Urbanist' !important;
}

.servicio-contenido .ql-font-Poppins {
    font-family: 'Poppins' !important;
}

.servicio-contenido .ql-font-Roboto {
    font-family: 'Roboto' !important;
}

.servicio-contenido .ql-font-sans-serif {
    font-family: 'sans-serif' !important;
}

/*END SERVICIOS*/

.altura-50-anios {
    max-height: 600px;
    padding: 40px 0 !important;
}

@media screen and (min-width: 1441px) {
    .container-us {
        max-width: 90% !important;
    }

    .imagen-publicidad {
        height: calc(22vw) !important;
    }
}

@media screen and (max-width: 1440px) {
    .imagen-publicidad {
        height: 295px !important;
    }
}

@media screen and (max-width: 1024px) {
    .imagen-publicidad {
        height: 157px !important;
    }
}

@media screen and (max-width:768px) {
    .timeline-container {
        padding: 10px 0;
    }

    .main-timeline:before {
        width: 1900px;
        left: 50px;
    }

    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even) {
        width: 1500px;
        padding: 0 0 27px 40px;
        margin: 0 0 30px 0;
    }

    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 35px 15px 35px 15px;
        width: 350px;
    }

    .main-timeline .timeline-content img {
        height: 150px;
        border-radius: 3px;
    }

    .main-timeline .timeline-content .timeline-img {
        box-shadow: 3px 3px 3px #c7c7c7;
        width: fit-content;
        height: 150px;
        margin: 15px auto;
        border-radius: 3px;
    }

    .main-timeline .title {
        font-size: 17px;
        letter-spacing: 0.5px;
    }

    .main-timeline .description {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .main-timeline .timeline:nth-child(even) {
        transform: translateY(40px);
    }

    .imagen-publicidad {
        height: 46px !important;
    }
}

@media screen and (max-width:576px) {
    .main-timeline {
        display: block;
        width: 100%;
        padding: 80px 10px;
    }

    .main-timeline:before {
        height: 145%;
        width: 2px;
        transform: translateX(-50%);
        position: absolute;
        top: 30px;
        left: 100%;
    }

    .main-timeline::-webkit-scrollbar {
        width: 4px;
        border-radius: 2px;
    }

    .main-timeline::-webkit-scrollbar-thumb {
        border-radius: 2px;
    }

    .main-timeline .timeline {
        height: 300px;
        width: 100%;
        transform: none;
        padding: 0 0 5px 5px;
        margin: 0 0 20px 0;
    }

    .main-timeline .timeline:nth-child(even) {
        transform: none;
        width: 100%;
        padding: 0 0 5px 5px;
        margin: 0 0 20px 0;
        justify-content: start;
    }

    .main-timeline .timeline-content {
        height: 250px;
        padding: 25px 10px;
        width: 100%;
    }

    .main-timeline .timeline-content:before,
    .main-timeline .timeline-content:after {
        display: none;
    }

    .main-timeline .timeline-content img {
        height: 100px;
        border-radius: 2px;
    }

    .main-timeline .timeline-content .timeline-img {
        box-shadow: 3px 3px 3px #c7c7c7;
        height: 100px;
        margin: 5px auto;
        border-radius: 2px;
    }

    .main-timeline .timeline-year {
        height: 30px;
        top: -30px;
        line-height: 30px;
        font-size: 18px;
    }

    .main-timeline .timeline-year:after {
        background: linear-gradient(to right bottom, #F2A516 49%, transparent 50%);
        top: 0;
        right: -13px;
        width: 13px;
        height: 13px;
    }

    .main-timeline .timeline-icon {
        font-size: 16px;
        line-height: 25px;
        height: 25px;
        width: 25px;
        bottom: -25px;
        left: 45%;
    }

    .main-timeline .timeline:nth-child(even) .timeline-content {
        border-radius: 0 0 5px 5px;
        width: 100%;
        padding: 25px 10px;
    }

    .main-timeline .timeline:nth-child(even) .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:after {
        left: auto;
        bottom: auto;
        top: -88px;
        right: 13px;
    }

    .main-timeline .timeline:nth-child(even) .timeline-icon {
        top: auto;
        bottom: -25px;
        left: 45%;
    }

    .main-timeline .timeline:nth-child(even) .timeline-year {
        bottom: auto;
        border-radius: 5px 0 0 0;
        right: 0;
        top: -30px;
    }

    .main-timeline .timeline:nth-child(even) .timeline-year:after {
        background: linear-gradient(to right bottom, #D90B31 49%, transparent 50%);
        top: 0;
        right: -13px;
        width: 13px;
        height: 13px;
        bottom: auto;
        left: auto;
    }

    .main-timeline .timeline:nth-child(4n+3) .timeline-year:after {
        background: linear-gradient(to right bottom, #F2A516 49%, transparent 50%);
    }

    .main-timeline .title {
        font-size: 14px;
    }

    .main-timeline .description {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 18px;
    }

    .paquetes-imagen {
        height: 100px;
    }

    .imagen-publicidad {
        height: 25px !important;
    }
}

/*GENERAL*/
.abreviado {
    display: none;
}


/* FORM VALIDATION */
.input-control.correct input {
    border-color: #09c372;
}

.input-control.error input {
    border-color: #ff3860;
}

.input-control.warning input {
    border-color: #f7b84b;
}

.input-control.correct textarea {
    border-color: #09c372;
}

.input-control.error textarea {
    border-color: #ff3860;
}

.input-control.correct select {
    border-color: #09c372;
}

.input-control.error select {
    border-color: #ff3860;
}

.input-control .error {
    color: #ff3860;
    font-size: 12px;
    height: 13px;
}

/* FORM VALIDATION ENDS */
