


.home-index-slider .dandik {
    right: 30px;
}
.home-index-slider .bamdik {
    left: 30px;
}
.home-index-slider .slick-dots {
    bottom: 50px;
}
.banner-part {
    padding: 50px 0px 60px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex !important;
    align-items: center;
}
.banner-part::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background: currentColor;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border-radius: 1.5rem; */
    height: 85vh;

}
.banner-part span.text-uppercase {
    letter-spacing: 2px;
}
.banner-1 {
    background: -webkit-gradient(linear, left top, right top, from(#1c3c63), to(#ffc3d024));
    background: linear-gradient(to right, #1c3c63, #ffc3d024);
    /* border-radius: 1.5rem; */
}
.banner-2 {
    background: -webkit-gradient(linear, right top, left top, from(#1c3c63), to(#ffc3d024));
    background: linear-gradient(to left, #1c3c63, #ffc3d024);
    /* border-radius: 1.5rem; */
    height: 85vh;

}
.banner-content.content-bg{
    /* background: #FFFBF1; */
    padding: 2rem;
    border-radius: 1rem;
    color: white!important;
}

.banner-content h2 {
    text-transform: capitalize;
    margin-bottom: 22px;
    color: white!important;

}
.banner-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
    margin-top: 8px;
    color: white!important;

}
.banner-btn .btn {
    margin-right: 15px;
}
.banner-img img {
    width: 100%;
}
@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 38px;
        line-height: 48px;
    }
    .banner-img {
        display: none;
    }
    .banner-btn .btn {
        margin: 8px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .banner-content h1 {
        font-size: 32px;
        line-height: 42px;
    }
    .banner-btn .btn {
        padding: 14px 22px;
        margin-right: 10px;
    }
}
.suggest-slider li {
    margin: 0px 10px;
}
@media (max-width: 575px) {
    .suggest-slider li {
        margin: 0px 5px;
    }
}
.promo-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.promo-img a {
    width: 100%;
}
.promo-img a img {
    width: 100%;
    border-radius: 8px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.promo-img a img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .promo-img {
        margin: 12px 0px;
    }
}
.new-slider li {
    margin: 0px 12px;
}
@media (max-width: 575px) {
    .new-slider .product-card {
        width: 220px;
    }
}
.testimonial-slider .slick-slide {
    opacity: 0.3;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.testimonial-slider .slick-center {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.testimonial-slider .dandik,
.testimonial-slider .bamdik {
    opacity: 1;
    visibility: visible;
}
.testimonial-slider .dandik {
    right: 50px;
}
.testimonial-slider .bamdik {
    left: 50px;
}
.brand-slider .dandik,
.brand-slider .bamdik {
    top: 35%;
}
.blog-slider .blog-card {
    margin: 0px 15px 25px;
}
.blog-slider .dandik,
.blog-slider .bamdik {
    top: 43%;
}
@media (max-width: 767px) {
    .blog-slider .blog-card {
        margin: 0px 10px 25px;

    }
}


.custom-img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 1000ms;
}
.custom-ul {
    list-style: none;
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    padding: 0;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    max-width: 100%;
    width: 70rem;
    justify-content: center; /* Asegura que los elementos se centren dentro de la cuadrícula */
    margin-bottom: 20vh;
    margin-top: 10vh;
}


.custom-figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.custom-figure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    transform-origin: center;
    opacity: 0;
    transform: scale(2);
    transition: opacity 300ms;
}

.custom-figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    place-items: center;
    text-align: center;
    padding: 1rem;
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 600ms, transform 600ms;
}

a:is(:hover, :focus) .custom-figure::after {
    opacity: 1;
}

a:is(:hover, :focus) .custom-figcaption {
    opacity: 1;
    transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
    .custom-figcaption {
        transform: translate3d(0, 2rem, 0);
    }

    .custom-figure::after {
        border-radius: 50%;
        opacity: 1;
        transform: scale(0);
        transition: transform 900ms;
    }

    a:is(:hover, :focus) .custom-figure::after {
        transform: scale(2.5);
    }

    a:is(:hover, :focus) .custom-figcaption {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 600ms 400ms, transform 600ms 400ms;
    }

    a:is(:hover, :focus) .custom-img {
        transform: scale(1.2);
    }
}


.grid0{

    width: 95%; /* Establece el ancho al 85% */
    margin: 0 auto; /* Centra la sección horizontalmente */

}


img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block; 
}

/* Main CSS */
.custom-grid-wrapper > div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-grid-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.custom-grid-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}
.custom-grid-wrapper a:hover img {
    transform: scale(1.05);
}
.custom-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}
.custom-grid-wrapper a:hover .custom-title {
    opacity: 1;
}

.custom-grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    margin-bottom: 15vh;
    margin-top: 10vh;
}
.custom-grid-wrapper .custom-wide {
    grid-column: span 2;
}
.custom-grid-wrapper .custom-tall {
    grid-row: span 2;
}
.custom-grid-wrapper .custom-big {
    grid-column: span 2;
    grid-row: span 2;
}


.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2px;
}

.texto-pop3 p {
    font-family: "Poppins", sans-serif;
    font-size: 2px;
}
p a{
    border-bottom: 0px;

}



.contact-info {
    margin: auto;
    margin-left: 8vh;
    margin-top: 10vh;
}

.contact-info i {
    font-size: 1.5rem; /* Tamaño del ícono */
    color: #f7a501; /* Color del ícono */
}

.contact-info h5 {
    font-size: 1.1rem; /* Tamaño del título */

}

.contact-info p {
    margin-bottom: 0.25rem; /* Ajuste del margen inferior */
}



.product__details__pic {
    text-align: center;

    padding: 40px 0 60px;
    margin-bottom: 100px;
}

.product__details__pic .nav-tabs {
    border-bottom: none;
    width: 70%;
    background: #dfbe91;
}

.product__details__pic .nav-tabs .nav-item {
    margin-bottom: 10px;
}

.product__details__pic .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
}

.product__details__pic .nav-tabs .nav-item .nav-link {
    padding: 0;
    display: block;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
    height: 120px;
    width: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic i {
    height: 56px;
    width: 56px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
    line-height: 48px;
    display: inline-block;
    text-align: center;
}

.product__details__pic .nav-tabs .nav-item.show .nav-link,
.product__details__pic .nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent;
}

.product__details__breadcrumb {
    margin-bottom: 30px;
}

.product__details__breadcrumb a {
    font-size: 15px;
    color: #111111;
    margin-right: 18px;
    display: inline-block;
    position: relative;
}

.product__details__breadcrumb a:after {
    position: absolute;
    right: -14px;
    top: 0;
    content: "";
    font-family: "FontAwesome";
}

.product__details__breadcrumb span {
    font-size: 15px;
    color: #b7b7b7;
    display: inline-block;
}

.product__details__pic__item {
    position: relative;
}

.product__details__pic__item a {
    height: 56px;
    width: 56px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
    line-height: 48px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -28px;
    margin-left: -28px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
}

.input-group.cantContent {
    max-width:20%;


}
.input-group.cantContent input {
    border-color: #F5F5F5!important
}
.input-group.cantContent .btn-outline-secondary {
    background-color:#F5F5F5!important;
    border-color: #F5F5F5!important

}

.input-group.cantContent .btn-outline-secondary:hover {
    color:gray!important;
    border-color: gray!important

}



@media only screen and (max-width: 767px) {
    .product__details__pic .nav-tabs {
        width: auto;
        margin-bottom: 40px;
        display: flex;
        -ms-flex-wrap: wrap;
    }

}

.tab-pane.active {
    display: block;

}




/*----------------------------------------------------------tienda----------------------------------------------*/


/*----------------------------------------------------------CAROUSEL PRODUCTOS----------------------------------------------*/
.main-carousel {
    position: relative;
    width: 95%;
    margin: 0 auto;
    min-height: 300px;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
}

.bg {
    position: fixed;
    top: -4rem;
    left: -12rem;
    z-index: -1;
    opacity: 0;
}

.bg2 {
    position: fixed;
    bottom: -2rem;
    right: -3rem;
    z-index: -1;
    width: 9.375rem;
    opacity: 0;
}

.main-carousel > div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}

.main-carousel > div h3 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    /* font-family: "Roboto", sans-serif; */
    font-weight: 900;
    font-size: clamp(2.5375rem, 3.25rem + 0.65vw, 3rem);
    color: #1c3c63;
    line-height: 1;
    /* background-color: #005baa;
    background-image: linear-gradient(45deg, #005baa, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent; */
}

.main-carousel > div hr {
    display: block;
    background: #1c3c63;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
    opacity: 1;
}

.main-carousel > div p {
    line-height: 1.6;
}

/* .gradient-background {
  background: linear-gradient(to top, rgb(255 251 241), #203a4300, #2c536400);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
} */

.gradient-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-background.swiper-slide-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400);
    z-index: 1;
}


.gradient-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400);
    /* background: linear-gradient(to top, #fffbf1, rgb(255 251 241 / 39%), rgb(255 251 241 / 5%)); */
    z-index: 1;
}

.gradient-background > div {
    position: relative;
    z-index: 2;
}


.main-carousel a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    background: #f7a501;
    border-radius: 0.525rem;
    transition: 0.3s ease-in-out;
}

.main-carousel > div > a {
    border: 2px solid #c2c2c2;
    margin-top: 2.188rem;
    padding: 0.625rem 1.875rem;
}

.main-carousel > div > a:hover {
    border: 0.125rem solid #f7a501;
    color: #f7a501;
}

.swiper {
    width: 100%;
    padding-top: 3.125rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}

.swiper-slide h4 {
    color: #39404a;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    padding: 1rem 1rem 0;
    text-transform: uppercase;
}

.swiper-slide p {
    color: #39404a;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding: 0 1rem;
    line-height: 1.6;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 19px!important;

}

.swiper-slide a {
    margin: 1.25rem 1.563rem 3.438rem 1.563rem;
    padding: 0.438em 1.875rem;
    font-size: 0.9rem;
}

.swiper-slide a:hover {
    color: #f7a501;
}

.swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 0.625rem;
}

.swiper-slide-active div {
    display: block;
    opacity: 1;
    margin-bottom: 0;
    border-radius: 0;
    margin-left: 0;
}


.desc-content {
    display: block;
    opacity: 1;
    margin-bottom: 4rem !important;
    background: rgb(255 251 241);
    border-radius: 5px !important;
    margin-left: 1.2rem !important;
    padding: 0 .6rem;
}


.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    .main-carousel {
        display: flex;
        align-items: center;
    }

    .main-carousel .bg,
    .main-carousel .bg2 {
        opacity: 0.1;
    }
}
@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 85%;
    }
}


.slick-slide img {
    display: block;
    max-width: 170px;
    max-height: 210px;
}