/********** Template CSS **********/
:root {
    --primary: #FF7800;
    --secondary: #A1D400;
    --tertiary: #FDCD00;
    --cuartiary: #0071D0;
    --quintiary: #F062A3;
    --light: #ffffff;
    --dark: #222222;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 700;
    font-family: "Roboto", sans-serif !important;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #fff;
}

.btn-primary,
.btn-secondary {
        padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: 8px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
    background-color: #ffffff;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--cuartiary);
    font-weight: 600;
    outline: none;
    font-size: 24px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: url(../img/header-page.png) top left no-repeat;
    background-size: cover;
    position: relative;
    top: 95px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
    color: var(--cuartiary);
}

.page-header .breadcrumb-item a:hover {
    color: var(--light);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}

.breadcrumb-item.active {
    color: var(--dark);
}


/*** Facts ***/
.facts {
    background-color: #FF7800;
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background-color: #A1D400;
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #FDCD00;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background-color: #A1D400;
    color: #ffffff;
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 3rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: -75px;
    left: 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    margin-bottom: 40px;
}


.team-item .team-text h4 {
    transition: .5s;
    color: var(--secondary);
    font-size: 30px;
}

.team-item .team-text h4:hover {
    color: var(--primary)
}

.team-item .team-social .btn {
    background-color: var(--primary);
    color: #fff;
}


.team-item .team-social .btn:hover {
    background-color: var(--cuartiary);
    color: #fff;
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item h1 {
    font-size: 52px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
    color: #222222;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--cuartiary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--cuartiary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--light);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #ffffff;
    background: #FF7800;
}

.copyright a {
    color: #ffffff;
}

.copyright a:hover {
    color: #FDCD00;
}

.nav-shop__circle {
    font-size: 12px;
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0px 5px;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: 100px;
}

.logo {
    width: 100%;
    max-width: 250px;
    height: 85px;
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 175px;
}

.input-number {
    text-align: center !important;
}

.form-control {
    height: 54px !important;
    text-align: left;
    color: #FF7800 !important;
    padding: 10px 20px;
    margin-top: 10px;
}

.quantity-left-minus, .quantity-right-plus {
    border: 1px solid #DFE4FD;
    border-radius: 0;
    height: 54px !important;
    width: 50px;
    margin-top: 10px;
}

.price {
    font-size: 36px;
    color: #FF7800 !important;
}

.title-productlist {
    font-size: 24px;
    color: #FF7800 !important;
}

.carousel {
    position: relative;
  }
  
  .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    min-height: 45.5vw;
    margin-bottom: 50px;
    top: 0px;
    transition:all 1.2s ease;
    &.slick-initialized {
      opacity: 1;
      visibility: visible;
    }
  }
  
  .carousel-inner > .carousel-item {
    position: relative;
    display: none;
    animation: 0.6s ease-in-out;
    height: 50vw;
  }
  
  .carousel-item > .carousel-img {
    width: 100%;
    min-height: 40vh;
  height: 1080px;
  }

  .carousel-item > .carousel-video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 1920px;
    min-height: 1080px;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  .carousel-inner > .active,
  .carousel-inner > .next {
    display: block;
  }
  
  .carousel-inner > .next {
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .carousel-inner > .to-left {
    animation-name: left;
  }
  
  .carousel-inner > .from-right {
    animation-name: right;
  }
  
  .carousel-inner > .to-right {
    animation-name: right;
    animation-direction: reverse;
  }
  
  .carousel-inner > .from-left {
    animation-name: left;
    animation-direction: reverse;
  }
  
  .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    cursor: pointer;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
  }

  iframe {
    position: relative;
    pointer-events: none;
  }

  figure {
    position: relative;
    height: 100%;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none;
    }
  }
  
  .carousel-control-prev:hover,
  .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
  }
  
  .carousel-control-prev {
    left: 0;
  }
  
  .carousel-control-next {
    right: 0;
  }
  
  .carousel-control-prev-icon {
    font-family: 'FontAwesome';
    content: "\f053";
    font-size: 30px;
    color: rgba(255,255,255,0.8);
}
  
  .carousel-control-next-icon {
    font-family: 'FontAwesome';
    content: "\f054";
    font-size: 30px;
    color: rgba(255,255,255,0.8);
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .sr-only-focusable:active,
  .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
  
  @keyframes left {
    from {
      left: 0;
    }
  
    to {
      left: -100%;
    }
  }
  
  @keyframes right {
    from {
      left: 100%;
    }
  
    to {
      left: 0;
    }
  }
  
  

  .text-primary {
    color: var(--primary) !important;
  }

  .text-secondary {
    color: var(--secondary) !important;
  }

  .text-tertiary {
    color: var(--tertiary) !important;
  }

  .text-cuartiary {
    color: var(--cuartiary) !important;
  }

  .text-quintiary {
    color: var(--quintiary) !important;
  }

  .text-light {
    color: #fff;
  }

  .bg-secondary {
    background-color: var(--primary) !important;
  }


  .product-details-image {
    max-height: 800px;
    object-fit: cover;
}
.thumbnail {
    width: 120px;
    height: 120px;
    margin: 0 10px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.thumbnail:hover, .thumbnail.active {
    opacity: 1;
}


.beneficios-img::after {
    position:absolute;
    z-index:1;
    width:150px;
    height:150px;
    background:url(../img/beneficio-img.png);
    content:"";
    top:1000px;
    right:450px;
    animation: swing; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 3s; /* don't forget to set a duration! */
    animation-delay: 1s;
    animation-iteration-count: infinite;
}


.tienda-img::before {
    position:absolute;
    z-index:1;
    width:100px;
    height:100px;
    background:url(../img/tienda-img.png);
    content:"";
    top:1070px;
    left:355px;
    animation: bounceIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

.tienda-img::after {
    position:absolute;
    z-index:1;
    width:100px;
    height:100px;
    background:url(../img/tienda-img2.png);
    content:"";
    top:950px;
    right:365px;
    animation: bounceIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

.clubpiojolin-img {
    animation: flipInY; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 3s; /* don't forget to set a duration! */
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

.carousel::before {
    position:absolute;
    z-index:1;
    width:450px;
    height:300px;
    background:url(../img/header-img1.svg);
    content:"";
    top:630px;
    left:0px;
    animation: fadeInUpBig; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}

.carousel::after {
    position:absolute;
    z-index:1;
    width:450px;
    height:300px;
    background:url(../img/header-img2.svg);
    content:"";
    top:650px;
    right:0px;
    animation: fadeInUpBig; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}

.testimonial::before {
    position:absolute;
    z-index:0;
    width:1732px;
    height:707.5px;
    background:url(../img/testimonial-img1.svg);
    content:"";
    top:2455px;
    right:0px;
}

.testimonial::after {
    position:absolute;
    z-index:0;
    width:1732px;
    height:764.5px;
    background:url(../img/testimonial-img2.svg);
    content:"";
    top:2474px;
    right:0px;
    opacity: 0.3;
}

/*
.footer::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    left:0px;
    top:3950px;
}

.footer::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:3950px;
    right:0px;
}

.footer-about::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:2911px;
    left:0px;
    }

.footer-about::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:2911px;
    right:0px;
}

.footer-faqs::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1317px;
    left:0px;
    }

.footer-faqs::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1317px;
    right:0px;
}

.footer-gallery::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1292px;
    left:0px;
    }

.footer-gallery::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1292px;
    right:0px;
}

.footer-contacto::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1198px;
    left:0px;
    }

.footer-contacto::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1198px;
    right:0px;
}

.footer-checkout::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1295px;
    left:0px;
    }

.footer-checkout::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1295px;
    right:0px;
}

.footer-product-details::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1752px;
    left:0px;
    }

.footer-product-details::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1752px;
    right:0px;
}

.footer-cart::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1265px;
    left:0px;
    }

.footer-cart::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1265px;
    right:0px;
}

.footer-bookofreclamations::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1927px;
    left:0px;
    }

.footer-bookofreclamations::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1927px;
    right:0px;
}

.footer-register::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1782px;
    left:0px;
    }

.footer-register::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1782px;
    right:0px;
}

.footer-resetpassword::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:935px;
    left:0px;
    }

.footer-resetpassword::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:935px;
    right:0px;
}

.footer-changepassword::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:1087px;
    left:0px;
    }

.footer-changepassword::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:1087px;
    right:0px;
}

.footer-profile::before {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img1.svg);
    content:"";
    top:2415px;
    left:0px;
    }

.footer-profile::after {
    position:absolute;
    z-index:1;
    width:180px;
    height:400px;
    background:url(../img/footer-img2.svg);
    content:"";
    top:2415px;
    right:0px;
}
    */

.float-l {
    float: left !important;
}

.aboutus {
    padding-top: 100px !important;
}

.mision-img::before {
    position:absolute;
    z-index:1;
    width:750px;
    height:400px;
    background:url(../img/about-mision-img.svg);
    content:"";
    top:1850px;
    left:170px;
}

.mision-img::after {
    position:absolute;
    z-index:1;
    width:100px;
    height:100px;
    background:url(../img/mision-img.png);
    content:"";
    top:2000px;
    right:530px;
    animation: fadeOutRight; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

.vision-img::after {
    position:absolute;
    z-index:1;
    width:100px;
    height:100px;
    background:url(../img/vision-img.png);
    content:"";
    top:2500px;
    left:450px;
    animation: zoomIn; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

.vision-img::before {
    position:absolute;
    z-index:1;
    width:750px;
    height:400px;
    background:url(../img/about-vision-img.svg);
    content:"";
    top:2340px;
    right:170px;
}

.form-select {
    padding: 1rem .75rem;
    color: var(--dark);
    height: 54px;
    margin-top: 10px;
}

.bg-orange {
    background-color: #FF7800;
    width: 1732px;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.cart-img {
    width:150px;
    height:150px;
    position: absolute;
    bottom: 0px;
    animation: fadeOutRight; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 3s; /* don't forget to set a duration! */
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

.header-content {
    position: absolute;
    z-index: 999;
    top: 350px;
    left: 100px;
}

.cart-wrapper {
    background-color: #f8f9fa;
    min-height: 50vh;
    padding: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
}

.quantity-input {
        height: 54px !important;
    text-align: center;
    color: #FF7800 !important;
    padding: 10px 20px;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border: 1px solid #DFE4FD;
    font-size: 24px;
}

.product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-card {
    background: white;
    border-radius: 12px;
    position: sticky;
    top: 20px;
}

.remove-btn {
    color: #FF7800;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    color: #0071D0;
}

.quantity-btn {
    border: 1px solid #DFE4FD;
    border-radius: 0;
    height: 54px !important;
    width: 50px;
    background-color: inherit;
    font-weight: 900;
    color: #555;
    font-size: 1rem;
    padding-top: 10px;
}

.quantity-btn:hover {
    background: #e5e7eb;
}

.discount-badge {
    background: #A1D400;
    color: #222;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.cart-img-menu {
    width: 80px;
    height: 80px;
    float: left;
}

.roboto {
    font-family: "Roboto", sans-serif !important;
    font-weight: 900 !important;
  }

  .tab-product-details {
    height: 250px;
  }
  

  .nav-tabs .nav-link {
    font-size: 18px;
  }

   .text-visit {
    font-size: 15px;
    font-family: "Roboto", sans-serif !important;
   }

   .url-primary {
    color: var(--cuartiary);
    display: flex;
    justify-content: center;
    margin-top: 20px;
   }

   .url-primary:hover {
    color: var(--primary);
   }

   .text-register {
    color: var(--dark);
    display: flex;
    justify-content: center;
   }

   .url-register {
    color: var(--cuartiary);
    margin-left: 5px;
   }

   .url-register:hover {
    color: var(--primary);
   }

   .amex {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAeCAMAAABdem3zAAAAA3NCSVQICAjb4U/gAAACi1BMVEUAAAAAAAAAdKIAdqcGdqoDeqkDeKoDe6sFeqoFeqwCeqoGe6wGeasGeqwGe6wFeqwFeqwFeqsGe6oFeawEeqwEeqwFe6wHeaoFe6oFeasFe6wFeawHe6wIfKwJfKwKfa0Lfa0Mfq0Of64Pf64QgK8RgK8Sga8TgbAUgrAVgrAWg7EXg7EYhLEZhLIahbIbhbIdhrMfh7QgiLQhiLQjirUkirUli7YnjLYojLcqjbcsj7gtj7kukLkvkLkwkbkxkboykrozkro0k7s1k7s2lLs3lLw4lbw5lbw6lr07lr08l709l75Amb9Bmr9Dm8BFnMBHncFIncFJnsJKnsJLn8JMn8NNoMNOocRPocRQosRRosVUpMZVpMZWpcZXpcdYpsdZp8dap8dbqMheqclgqslhq8pjrMpkrMtnrsxpr8xqr81tsc5vss5wss9xs89ztNB0tdB1ttF6uNJ8udN9utN+utR/u9SAu9SBvNWCvNWDvdWEvdWGvtaHv9aIv9eKwNeMwdiPw9mQw9mRxNqTxdqUxtuVx9uWx9yXyNyYyNyZyd2ayd2byt2cyt6dy96fzN+gzN+hzd+izeCjzuCkzuCn0OGp0eKq0eKr0uOs0+Ot0+Ov1OSw1eSy1uWz1uW01+W32Oa62ui72+i82+i+3Om/3enC3urE3+vF4OvH4ezI4uzJ4u3K4+3L4+3N5O7O5e7P5e/R5u/S5/DT5/DV6PHW6fHX6fHY6vHa6/Lb7PPc7PPd7fPe7fTf7vTg7vTi7/Xj8PXk8fbm8vbn8vfo8/fp8/fq9Pjr9Pjs9fjt9fnu9vnv9vnw9/rx9/ry+Prz+Pv0+fv1+fv2+vz4+/z5+/37/P38/f7+/v7///+B6xdgAAAAHHRSTlMAARYaJ0FIT1pcYG6YmZyssrPDys3T2tvt9PX+1nJQbwAAAnFJREFUOMtjYOAWESMWiAqwMzBwyZAEOBn4SdMgzCBImgYJUjVI0UeDkoGBrq6BgZ6MhgECqAA56nJ6ICZIWN3AQAeuoevIrvOHDuy6ZLl1366ru3ft2nVl167dJ08cOXHo/P6Dl3Yd33Nm15mdJw+thGnQO2ei2nzDRaZp405Zmd2KxhYWW2TMTeUmJOWv0NOPKVJ1uNEi4329LByuoXKaabvZNZcQw8u5IUANrYuX7pA5eNSxJCk/OPfGBe2ZKotbnAw6kTSs8Axslpnh0mtRr74YqME7LGaHjI6G4uakfOfGG21q3c5hLf7TNDMQGhqUMjN9vFz6O2TCjgA11M+Zs13m4oXIvKT8bOs+i7DMNJks/xuhcggNKQ3b+vfGpS65kLTqVNyRpLi4uP1xl6d09jRPPF+blHC29WB+SsX5PXF1cA0lE/1lWiZOnFg2saZrIgxkgojiyr6JZTLxQFZ5ycSJpRTHdOAmMMiM2Agk103esGnTxiWzwELTVwOJyes29aFqiFtrCQR+x05FuVpaWqcfA3I8FlQDyandjpaWh5KtLI3RNCxTA8ZypHewb7vNrvWKk2QW7wiIzU3YteusXtXWrQvllm+diK5BRl6+4JyW2omJ2qkRiqtknN2VF+UCxWbmKCi5b3GU1fRE16B+4cK5RCe3pH6z6bP3nZOZsyYoMzftwsWrp4+skZt/4kA1mqfjVqgAgcORw/Z23kejg86r7JxXm1AIFOqzVdFLAEoahaNqiDgMBplZQGKNjC6QbD0MA3vmAomN5XTLcaQASQZe0jSIM3CQpoGPgZFHmgT1QkwMDAzMrOxEAjYWBgYAvI9h1MHdhQIAAAAASUVORK5CYII=") #fff;
}

.visa {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAeCAMAAABdem3zAAAAA3NCSVQICAjb4U/gAAABvFBMVEUAAADQ0NDa2tra2trZ2dnY2Nja2trt7e3t7e0mM3onNHspNXkqN30rN30sOH4tN3ovO4AwPIAyPoE1QYM3Q4Q4Q4U4RIU5RYY8R4g9SIhCTYtDToxGUY5HUo5JU49JVJBOWJJQW5RSXJVTXZZVX5dXYZhYYplaY5pfaJ1kbaBlbqFoaZFocaNpcqNqc6RtdqZvd6dzcpV0fKp2f6x5ga18g698hK99hK99hbB+hrCAh7GDi7OHjrWIj7aJkLeNk7mNlLqOlbqRl7yUmr6WnL6YnsCbocKepMSjqMekqceprsqrsMysscytss2uss2xts+xttC0uNG1udK1utK2utK3u9O6vdS7v9W8wNa9wda9wdfBxNnDx9rEx9vFyNzFydvHy93Kzd/Mz+DR0+LS1OPT1uTVnV/V1+XX2ebY2NjZuJbZ2+faoVza3Ojc3+rf4evf4ezi5O7j5e7n6fHp6/Lq6/Lr7PPsmC3snTfs7fPunjnu7/Tu7/Xw8fbx8vfy8/f09fj09fn19vn29/r3z5332LH39/r42LD42bL42bP5+fv76tX77dz7+/v7+/387dv9/f7+9ev//v3///9+dhG/AAAACXRSTlMAGxuq7e7u+vsOT6YMAAABbklEQVQ4y+WUV1cTYRQAlwSIsxoLltgLKgZ7AwV777FiL9gT1x4FGxpb0Gg0On/YBx83D+wz8z7nu+fe800QpNKtpTHSmk4FQUt7pu4YqWfaW4L0BBOQSQdt9SRCvS0omYjSOBZ+fB0d/f5T/VQoDHi6cF4b1/Zt6d9fUZ+cLFyMvfDny6vhN3/1EOwegW4/LAHgpb6bBpNr8ZE2PBz+rQvIvrgJ2+2DdaeOba7pXoBbceHAxHvfHIRNHoHjLobLqlZnkIeDcaHIlAeuh6Jb4bb9EG58rh6G4nTWNNnSHFYNZcnrcsKK1d4Qpl63MY9lrmRmE6GHcCdc0Q7mqt5ZAfM9C7uKvfA0LlyASSzUt7Daz+pIyGw7+c+JuPAxCxzV+7DHrq5tOzqhbxA6crlcSE+TS+dhVk0vwRk7AFhb64a76lIWva7EhKEoKqvvo6jqs6sD526UNYoeq5ajR78a4/k/JM5M4pAlTGUqSBrjf5znrWNE0ZcCAAAAAElFTkSuQmCC") #fff;
}

.mastercard {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAeCAMAAABdem3zAAAAA3NCSVQICAjb4U/gAAACc1BMVEUAAADQ0NDa2tra2trZ2dnY2Nja2trt7e3t7e3MAADMAQHMBATNCQnOCwvODAzODg7PDwnPERHRGxvSFgfSHh7SHx/SIB7THhDTJCTTJibTJyfUKSnVIAXVLS3VMDDWMjLWNTXWNjbXIQDXLyLXNS7XNzfXOzvYLxbYPT3YPj7Y2NjZOy/ZRUXaSEjaSUnbLQDbLgDbS0vbTU3cSj/cU1PdNADdSjTdVVXdVlbeNwDeW1vfYmLgUDPgZWXgZmbgaGjhXkvhamrhbW3ia2Lib2/jXDfja1njdXXkeHjkeXnke3vlgIDlgYHmg4PmhITmhobnh4fniIjni4voVgDojIzokJDqXADqaiTqlpbqmJjqmZnqmprrnJzrn5/tpqbuqqrura3urq7vsbHvsrLvs7PwbADwbQDwtLTwtbXwt7fxvLzycgDyjULyvr7yv7/zdQDzmVvzn2fzxMTzxcXzx8f2fwD21tb3gQD3x6/3ybL32Nj4hAD43t7439/44OD5iQD54eH54uL65ub65+f76+v7+/v88vL89PT99/f9+Pj9+fn+lwD+/f3/mQD/mgT/nQv/nw//oRT/oRX/oRb/ohj/qCf/qSn/qSr/qy3/rDH/rjX/rjb/sT7/sj//s0L/tEX/tUf/tUj/tkn/t0v/uVD/uVH/u1X/vFj/vVr/vl7/v2H/w2n/xGz/x3P/yHb/yXr/zob/z4j/0Iv/1Zj/1pr/153/2J7/26X/3q7/4LL/4LP/4bX/4bb/5cD/5sL/58P/58T/58X/6sz/7NH/7dL/8d7/8t//9OX/9eb/9ef/9ur/9+v/+vT/+/X//Pj//fz///90HdR0AAAACXRSTlMAGxuq7e7u+vsOT6YMAAABmElEQVQ4y2NgYGJm0SISsDAzMTAwsrG3XiAStLKzMTIwc1wgAbAzM7C2kqKhlZVB6wJJQItSDS3R5orSmo7pPUD2+d2r506bvWzLKdwaOr14OSFAMuXCzqm9ENC//hwODc2KnHDAVdCLALNOYNXQLo9QzylgGoykY+YZbBqckNSrpKamdSPpWINFQw03kgZhJSUlSyQNfUcxNfjzyfFISUDUi5WCQO+EOZOgGmZswNSgY3VBpyPOxJZf1d4uWdxZW9k45+SBtStWTVowffH8o/MxNUgHNsY0entmxrW5R6VnhNb6NlVu6p247uCOs3sOH941DYuG9MTa3JCiGp+S+CzdrrziBOuK5b1L9x8/tG3vko0bsWjQafCKaIhNqon0qyvzqApyKZMtPLZl8/bTR1Zv3Xd6JRYnBeiJChkJGqppWIgoKKi7mTnIVC9YPHnhnHlTJiyaM3EDgWANz87OLicQrCgRx6VvYJBPIOJQk4ZNWD3BpIGS+DhdCSc+0pM3JAOpkpCBaJOnSS5mSC7ISCwqgYUriYUxAINRRW57ksG5AAAAAElFTkSuQmCC") #fff;
}

.discover {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAeCAMAAABdem3zAAAAA3NCSVQICAjb4U/gAAACLlBMVEUAAADQ0NDa2tra2trZ2dnY2Nja2trt7e3t7e3vzbDvzbEBAQECAgIDAwMTExMUFBQWFhYYGBgZGRkeHh4jIyMmJiYnJycpKSksLCwtLS0uLi4wMDAzMzM0NDQ3Nzc6Ojo8PDw/Pz9CQkJDQ0NHR0dJSUlKSkpMTExOTk5PT09RUVFWVlZYWFhcXFxgYGBiYmJjY2Nra2tsbGxtbW1wcHBxcXF0dHR1dXV2dnZ3d3d4eHh8fHx9fX1+fn6AgICBgYGCgoKDg4OLi4uMjIyPj4+VlZWWlpabm5udnZ2enp6fn5+hoaGjo6OoqKirq6usrKyvr6+wsLCysrKzs7O4uLi7u7u8vLy9vb2/v7/AwMDBwcHExMTGxsbHx8fJycnLy8vQ0NDR0dHS0tLU1NTW1tbY2NjZ2dnb29vd3d3f39/h4eHi4uLn5+fo6Ojp6enr6+vs7Ozt7e3v7+/x8fHy8vL1giD1giH1gyP1hCT1iS31ii71izD1jDL2kTv2kjz2kz/2lED2lkP2lkT2l0X2mUn2pmH2pmL3m033n1X3oVf3pF73pV739/f4q2n4q2r4rWz4r3D4r3H4sXT4s3f5uoT5u4b5vov5+fn6xJb6yJ36yqD6zKT6+vr7zqj70a372Ln7+/v83sT838b84Mj84sv848785M/85dD89O78/Pz959X96Nb969z9/f3+8+r+9e7+9u/+9/H++PP++vb++vf+/Pn+/Pr+/fz+/v7////OeAUcAAAAC3RSTlMAGxuq7e7u+vv7+w/+RoMAAAGnSURBVDjLY2BgYmZJJRKwMDMxMDCysS/YSSRYwM7GyMDMsZMEwM7MwLqAFA0LWBlSd5IEUumkwc7A0HPBTuvcTAN13535FuqWJTsXdrdP2+IZuHOnR6iNgYHVDgMDsySEBin3QE2NnWJpKk6x8T1iDsku6UvKSktL+4Kld84RzBb3Co9ZyRPnJYikIXHnAr5ssTR9hYCVIfIg8UmlILBCOMFfa6e4jWvQWh5/e0kUDTuFMsTSpvvI6gUog8QngzVsdDRVC9spbu7st5bbmL8ASUNEipEi0ElRRQEyhYL+K/2Tl5cD1U/cmSMgsXOneHRe3krenSpuCA26ckp2xTu1s2xFZSJ3JqiJqKbvXNrbOWPrzp0m3jt36sjJyS2Q35ms0rNz53wSg3VRI2kaVlc1kKRhVU0pSRoWVZaSpGF2RSkpGjZNAMcM0RoW15aSomE9JOKJ1bB1VnUpCRq2z6srLSVew+ZZyMoJalgzpbq0lGgNG+Z2lGKAplQcxcy6uV3lpVhAKyuWgmzLwqktpTgAJzNaUblt2cz+xnocoLmNiw1YuJJYGAMAEKBGzN/0FVAAAAAASUVORK5CYII=") #fff;
}

.text-paymetod {
    display: block;
    text-align: center;
    color: var(--dark);
}

.card-row {
  text-align: center;
  margin: 20px 25px 10px;
}

.card-row span {
  width: 48px;
  height: 30px;
  margin: 0 3px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
}

.card-image {
  background-repeat: no-repeat;
  padding-right: 50px;
  background-position: right 2px center;
  background-size: auto 90%
}

.btn-lg {
    color: #fff;
    background-color: #FF7800;
    border-color: #FF7800;
}

.btn-lg:hover {
    color: #fff;
    background-color: #0071D0;
    border-color: #0071D0;
}

.social-links {
    display: flex;
}

.btn-subscribe {
            color: #fff;
    background-color: #FF7800;
    border-color: #FF7800;
    }
    .btn-subscribe:hover {
            color: #fff;
    background-color: #0071D0;
    border-color: #0071D0;
    }
    
  .title-datatable {
        text-align: center !important;
    }

    .text-datatable {
        text-align: center !important;
    }
  .accordion-button {
    font-size: 22px;
  }
  .list-group h6 {
    font-size: 20px;
  }
  .product-card h6 {
    font-size: 20px;
  }


@media (max-width: 430px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 335px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 335px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 860px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2535px !important;
    }

    .bg-orange {
        width: 430px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 100vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 81% !important;
    }
    .testimonial::before {
        width: 430px !important;
        height: 765px !important;
        background: url(../img/testimonial-img1-430x765.svg);
        top: 4196px !important;
    }
    .testimonial::after {
        width: 430px !important;
        height: 765px !important;
        background: url(../img/testimonial-img2-430x765.svg);
        top: 4196px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 145px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 80px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }    
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -130px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 10px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: 0px !important;
        right: -5px !important;
    }
    .mision-img::before {
        width: 429px !important;
        height: 228.8px !important;
        left: 0 !important;
        top: 3150px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3045px !important;
    }
    .vision-img::before {
        width: 429px !important;
        height: 228.8px !important;
        left: 0 !important;
        top: 3925px !important;
    }
    .vision-img::after {
        left: 160px !important;
        top: 3600px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 24px !important;
    }
    .list-group small {
        font-size: 20px !important;
    }
    .list-group span {
        font-size: 24px !important;
    }
    .list-group strong {
        font-size: 24px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
}

@media (max-width: 414px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 850px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2480px !important;
    }

    .bg-orange {
        width: 414px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 100vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 81% !important;
    }
    .testimonial::before {
        width: 414px !important;
        height: 813px !important;
        background: url(../img/testimonial-img1-414x813.svg);
        top: 4138px !important;
    }
    .testimonial::after {
        width: 414px !important;
        height: 813px !important;
        background: url(../img/testimonial-img2-414x813.svg);
        top: 4138px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 145px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 80px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }    
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -115px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 10px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: 0px !important;
        right: -5px !important;
    }
    .mision-img::before {
        width: 413px !important;
        height: 220px !important;
        left: 0 !important;
        top: 3260px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3155px !important;
    }
    .vision-img::before {
        width: 413px !important;
        height: 220px !important;
        left: 0 !important;
        top: 4090px !important;
    }
    .vision-img::after {
        left: 160px !important;
        top: 3720px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 24px !important;
    }
    .list-group small {
        font-size: 20px !important;
    }
    .list-group span {
        font-size: 24px !important;
    }
    .list-group strong {
        font-size: 24px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
}

@media (max-width: 412px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 850px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2470px !important;
    }

    .bg-orange {
        width: 412px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 100vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 81% !important;
    }
    .testimonial::before {
        width: 412px !important;
        height: 813px !important;
        background: url(../img/testimonial-img1-412x813.svg);
        top: 4130px !important;
    }
    .testimonial::after {
        width: 412px !important;
        height: 813px !important;
        background: url(../img/testimonial-img2-412x813.svg);
        top: 4130px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 145px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 80px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }    
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -115px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 10px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: 0px !important;
        right: -5px !important;
    }
    .mision-img::before {
        width: 411px !important;
        height: 219px !important;
        left: 0 !important;
        top: 3260px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3155px !important;
    }
    .vision-img::before {
        width: 411px !important;
        height: 219px !important;
        left: 0 !important;
        top: 4090px !important;
    }
    .vision-img::after {
        left: 160px !important;
        top: 3720px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 24px !important;
    }
    .list-group small {
        font-size: 20px !important;
    }
    .list-group span {
        font-size: 24px !important;
    }
    .list-group strong {
        font-size: 24px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
}

@media (max-width: 390px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 330px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 330px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 885px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2450px !important;
    }

    .bg-orange {
        width: 390px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 110vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 79% !important;
    }
    .testimonial::before {
        width: 390px !important;
        height: 843px !important;
        background: url(../img/testimonial-img1-390x843.svg);
        top: 4141px !important;
    }
    .testimonial::after {
        width: 390px !important;
        height: 843px !important;
        background: url(../img/testimonial-img2-390x843.svg);
        top: 4141px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 130px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 75px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }    
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -100px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 5px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: 0px !important;
        right: -5px !important;
    }
    .mision-img::before {
        width: 389px !important;
        height: 207px !important;
        left: 0 !important;
        top: 3330px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3220px !important;
    }
    .vision-img::before {
        width: 389px !important;
        height: 207px !important;
        left: 0 !important;
        top: 4150px !important;
    }
    .vision-img::after {
        left: 145px !important;
        top: 3783px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 24px !important;
    }
    .list-group small {
        font-size: 20px !important;
    }
    .list-group span {
        font-size: 24px !important;
    }
    .list-group strong {
        font-size: 24px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
}

@media (max-width: 375px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 315px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 860px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2390px !important;
    }

    .bg-orange {
        width: 375px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 110vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 79% !important;
    }
    .testimonial::before {
        width: 375px !important;
        height: 843px !important;
        background: url(../img/testimonial-img1-375x843.svg);
        top: 4080px !important;
    }
    .testimonial::after {
        width: 375px !important;
        height: 843px !important;
        background: url(../img/testimonial-img2-375x843.svg);
        top: 4080px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 118px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 23px !important;
        right: 62px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }    
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -93px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 5px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: 0px !important;
        right: -5px !important;
    }
    .mision-img::before {
        width: 374px !important;
        height: 199px !important;
        left: 0 !important;
        top: 3310px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3220px !important;
    }
    .vision-img::before {
        width: 374px !important;
        height: 199px !important;
        left: 0 !important;
        top: 4125px !important;
    }
    .vision-img::after {
        left: 140px !important;
        top: 3783px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 80px !important;
        height: 80px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 22px !important;
    }
    .list-group small {
        font-size: 18px !important;
    }
    .list-group span {
        font-size: 22px !important;
    }
    .list-group strong {
        font-size: 22px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
}

@media (max-width: 360px) { 

    .carousel {
        top: 115px !important;
    }

    .carousel::before {
        width: 150px !important;
        height: 100px !important;
        top: 335px !important;
        z-index: 1000;
    }

    .carousel::after {
        width: 150px !important;
        height: 100px !important;
        top: 335px !important;
        z-index: 999;
    }

    .tienda-img::before {
        left: 15px !important;
        top: 870px !important;
    }

    .tienda-img::after {
        right: 20px !important;
        top: 2360px !important;
    }

    .bg-orange {
        width: 360px !important;
    }

    .btn-primary {
        width: 100% !important;
    }

    .btn-secondary {
        width: 100% !important;
    }

    .service {
        padding-top: 120px !important;
    }
    .header-content {
        top: 6% !important;
        left: 5% !important;
        padding: 25px !important;
        width: 90%;
    }
    .carousel-inner > .carousel-item {
        height: 120vw !important;
    }
    .header-content h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .header-content p {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .service .nav .nav-link.active h5,
    .service .nav .nav-link h5 {
        font-size: 30px !important;
    }
    .service .nav .nav-link.active,
    .service .nav .nav-link {
justify-content: center !important;
    }
    .service p {
        font-size: 20px !important;
    }
    .service h2 {
        font-size: 40px !important;
    }
    .tab-pane h3 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .tab-pane p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .tienda-img p {
        font-size: 20px !important;
        text-align: center !important;
        margin-top: 25px !important;
    }
    .testimonial-item h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .testimonial-item p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .team-text h4 {
        text-align: center !important;
        font-size: 28px !important;
    }
    .team-item .team-text {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    .team-item .team-text .team-social {
        width: 100% !important;
    }
    .team-item {
        margin-bottom: 36px !important;
    }
    .testimonial p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .testimonial-text {
        font-size: 20px !important;
        text-align: center !important;
    }
    .testimonial-item h4 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .testimonial-item span {
        font-size: 20px !important;
        text-align: center !important;
    }
    .feature p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .feature h1 {
        font-size: 40px !important;
        text-align: center !important;
    }
    .feature-box i {
        text-align: center !important;
        display: block !important;
    }
    .feature-box h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .feature-box p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .footer h4 {
        text-align: center !important;
        font-size: 30px !important;
    }
    .footer p {
        text-align: center !important;
        font-size: 20px !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .social-links .btn-square {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    .footer .btn.btn-link {
        text-align: center !important;
        font-size: 24px !important;
    }
    .clubpiojolin-img {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #float-cta {
        bottom: 85px !important;
        left: 77% !important;
    }
    .testimonial::before {
        width: 360px !important;
        height: 873px !important;
        background: url(../img/testimonial-img1-360x873.svg);
        top: 4054px !important;
    }
    .testimonial::after {
        width: 360px !important;
        height: 873px !important;
        background: url(../img/testimonial-img2-360x873.svg);
        top: 4054px !important;
    }
    .footer::before {
        top: 6455px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .footer::after {
        top: 7755px !important;
        width: 90px !important;
        height: 200px !important;
    }
    .btn-cart-mobile {
        position: absolute !important;
        top: 28px !important;
        right: 109px !important;
        width: 40px !important;
        height: 40px !important;
    }
    .btn-user-mobile {
        position: absolute !important;
        top: 28px !important;
        right: 60px !important;
        width: 40px !important;
        height: 40px !important;
    }   
    .btn-cart-mobile small {
        font-size: 18px !important;
    }
    .btn-user-mobile small {
        font-size: 18px !important;
    }
    .navbar {
        justify-content: start !important;
    }
    .navbar-light .navbar-toggler {
        position: relative !important;
        right: -80px !important;
    }
    .logo {
        max-width: 200px !important;
        height: 68px !important;
        margin-left: 5px !important;
    }
    .carousel-inner {
        top: -20px !important;
    }
    .nav-shop__circle {
        top: -7px !important;
        right: -8px !important;
    }
    .mision-img::before {
        width: 359px !important;
        height: 191px !important;
        left: 0 !important;
        top: 3295px !important;
    }
    .mision-img::after {
        right: 185px !important;
        top: 3200px !important;
    }
    .vision-img::before {
        width: 359px !important;
        height: 191px !important;
        left: 0 !important;
        top: 4105px !important;
    }
    .vision-img::after {
        left: 125px !important;
        top: 3745px !important;
    }
    .page-header {
        background: url(../img/header-page-mobile.png) top left no-repeat !important;
    }
    .aboutus p {
        text-align: center !important;
        font-size: 20px !important;
        display: block !important;
    }
    .aboutus h1 {
        text-align: center !important;
        font-size: 40px !important;
    }
    .about-value i {
        font-size: 20px !important;
    }
    .about-value h4 {
        font-size: 36px !important;
    }
    .about-value span {
        font-size: 20px !important;
    }
    .facts h1 {
        font-size: 56px !important;
        margin-bottom: 0px !important;
    }
    .facts span {
        font-size: 36px !important;
    }
    .accordion-button {
        font-size: 30px !important;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 20px !important;
    }
    .project-item, .project-item .project-img {
        padding: 15px !important;
        margin-bottom: 35px !important;
    }
    .project-item .project-title {
        left: 0 !important;
        justify-content: center !important;
    }
    .project-item .project-title h4 {
        font-size: 24px !important;
    }
    .form-floating>label {
        font-size: 20px !important;
    }
    .form-select {
        font-size: 20px !important;
    }
    .thumbnail {
        width: 70px !important;
        height: 70px !important;
    }
    .aboutus h3 {
        font-size: 36px !important;
        text-align: center !important;
    }
    .aboutus p {
        font-size: 20px !important;
        text-align: center !important;
    }
    .aboutus .price {
        font-size: 48px !important;
    }
    .aboutus .title-productlist {
        font-size: 30px !important;
    }
    li {
        font-size: 20px !important;
    }
    label {
        font-size: 20px !important;
        text-align: center !important;
    }
    .input-group {
        width: 250px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .nav-tabs .nav-link {
        font-size: 30px !important;
    }
    .tab-product-details {
        height: auto !important;
    }
    .product-image {
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
    }
    .product-card h6 {
        font-size: 30px !important;
        text-align: center !important;
    }
    .product-card small {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
    }
    .input-group>.form-control {
        font-size: 24px !important;
    }
    .quantity-input {
        width: 150px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 24px !important;
        margin-top: 10px !important;
    }
    .product-card span {
        font-size: 48px !important;
        text-align: center !important;
        display: block !important;
        margin-top: 10px !important;
    }
    .product-card i {
        text-align: center !important;
        display: block !important;
        font-size: 30px !important;
    }
    .aboutus h4 {
        font-size: 40px !important;
    }
    .card h6 {
        font-size: 26px !important;
    }
    .card small {
        font-size: 20px !important;
    }
    .card span {
        font-size: 24px !important;
    }
    .card-footer span {
        font-size: 24px !important;
    }
    .card-footer strong {
        font-size: 24px !important;
    }
   small {
        font-size: 24px !important;
    }
    .bi-shield-check {
        padding-top: 6px !important;
        font-size: 20px !important;
    }
    .card-row span {
        width: 60px !important;
        height: 38px !important;
    }
    .order-md-last h4 {
        font-size: 30px !important;
    }
    .badge {
        font-size: 24px !important;
    }
    .list-group h6 {
        font-size: 18px !important;
    }
    .list-group small {
        font-size: 14px !important;
    }
    .list-group span {
        font-size: 14px !important;
    }
    .list-group strong {
        font-size: 18px !important;
    }
    .url-primary {
        font-size: 20px !important;
    }
    .text-register {
        font-size: 20px !important
    }
    .btn-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 24px !important;
    }
    .order-md-last h2 {
        font-size: 48px !important;
    }
    .offcanvas-end {
        width: 330px !important;
    }
}