/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
/* importamos la fuente */
.zen-dots-regular {
  font-family: "Zen Dots";
  font-weight: 400;
  font-style: normal;
}
:root{
   --rojoo: #D31F1F;
   --negro: #000;
  --rojo: hsl(0, 69%, 38%);
  --white: hsl(0, 0%, 0%);
}
*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Zen Dots';
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;

}


html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}
section{
    padding: 2rem 7%;

}
.heading{
    text-align: center;
    font-size: 4rem;
    color: #000000;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(203,0,0,0.87);

}

.heading span{
    color: var(--negro);
}
.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover{
    background: var(--negro);
}
header{
    position: absolute;
    top: 0; left: 0; right: 0;
    background: #85858500;
    padding: 0.5rem 9%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / 23%)
}

 header .logo{
    font-size:3rem;
    color: #000;
    font-weight: bolder;
 }

header .logo span{
    color: var(--negro);
}

header .navbar a{
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #fff;
}

header .navbar a:hover{
    color: #9d9a9d;
}

header .icons a{
    font-size: 3rem;
    color: #880000;
    margin-left: 1.5rem;
}

header .icons a:hover{
    color: #9d9a9d;
}

header #toggler{
    display: none;
}

header .fa-bars{
    font-size: 3rem;
    color: #880000;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    display: none;
}


.home{
    display: flex;
    align-items: center;
    min-height: 64vh;
	width: 100%;
    background: url("images/logobrn.png") no-repeat;
    background-size: cover;
    background-position: center;
    
}

.home .content{
    max-width: 80rem;
}

.home .content h3{
    font-size: 6rem;
    color: #000000;
}

.home .content span{
    font-size: 3.5rem;
    color:var(--rojoo);
    padding: 1rem 0;
    line-leight: 1.5;
}

.home .content p{
    font-size: 2rem;
    color:#00000;
    padding: 1rem 0;
    line-height: 1.5;
}
/*section carrusel*/
.carousel{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 200px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: .5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #D31F1Fcb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b51212;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}


/* time running */
.carousel .timeRunning{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #D31F1Fcb;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}


/* Responsive Design */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content{
        top: 40%;
    }

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}

/*fin section carrusel*/ 


/*section products*/


.about .row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    pad: 2rem 0;
    padding-bottom: 3rem;

}

.about2{
   display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
    justify-content: center;

}

.about .row .video-container{
    flex: 1 1 40rem;
    display: flex;
    justify-content: center;
    width: 100%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    object-fit: cover;
}

.video2-container {
    flex: 1 1 40rem;
    display: flex;
    justify-content: center;
    width: 100%;
    border: 1.5rem solid #000000;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    object-fit: cover;
    background: #000000;
}


.about .row .video-container video{
    width: 100%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    object-fit: cover;
}


.about .row .video-container h3{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;

}

.about .row .content{
    flex: 1 1 40rem;
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--rojoo);

}

.about .row .content p{
    font-size: 1.5rem;
    color: #000000;
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;

}

.icons-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{
    background: #fff;
    border: .2rem solid #d31f1f;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 25rem;
    border-radius:.5rem;
}

.icons-container .icons img{
    height: 5rem;
    margin-right: 2rem;
}

.icons-container .icons h3{
    color:var(--rojoo);
    padding-bottom: .5rem;
    font-size: 1.5rem;
}


.icons-container .icons span{
    color: #000;
    font-size: 1.3rem;
}

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;

}

.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.1);
    position: relative;
}

.products .box-container .box .discount{
    position: absolute;
    top: 1rem; left: 1rem;
    padding: .7rem 1rem;
    font-size: 2rem;
    color: #fff;
    background: rgba(189,4,7,3.00);
    z-index: 1;
    border-radius: .5rem;
}

.products .box-container .box .image{
    position: relative;
    text-align: center;
    padding-left: 2rem;
    overflow: hidden;
}

.products .box-container .box .image img{
    height: 25rem;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);
}



.boton {
padding: 7px; /*espacio alrededor texto*/
background-color: #d31f1f; /*color botón*/
color: #ffffff; /*color texto*/
text-decoration: none; /*decoración texto*/
text-transform: uppercase; /*capitalización texto*/
border-radius: 5px; /*bordes redondos*/
font-size: 12px;
}




/*slider*/
.slider{
 aspect-ratio: 10/ 16;
 width:300px;
 position: relative;
 display: flex;
 overflow: scroll;
 scroll-snap-type: x mandatory;
}

.slider img{
 width: 100%;
 left: 0;
 position: fixed;
 object-fit: cover;
 border-radius: 5px;
 scroll-snap-align: center;
}

.products .box-container .box .image .icons{
    position: absolute;
    bottom: -7rem; left: 0; right: 0;
    display: flex;
}

.products .box-container .box:hover .image .icons{
    bottom: 0;
}

.products .box-container .box:hover .image .icons a{
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width: 50%;
    background: var(--pink);
    color: #fff;
}

.products .box-container .box:hover .image .icons .cart-btn{
    border-left: .1rem solid #fff7;
    border-right: .1rem solid #fff7;
    width: 100%;
}

.products .box-container .box:hover .image .icons a:hover{
    background: #A10000;
}

.products .box-container .box .content{
    padding: 2rem;
    text-align: center;
}

.products .box-container .box .content h3{
    font-size: 2.5rem;
    color: #000;
}

.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: var(--rojoo);
    font-weight: bolder;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color: #000000;
    font-weight: lighter;
    text-decoration: line-through;
}

.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    padding: 3rem 2rem;
    position: relative;
    border:.1rem solid rgba(0,0,0,.1);

}


.review .box-container .box .fa-quote-right{
    position: absolute;
    bottom: 3rem; right: 3rem;
    font-size: 6rem;
    color: #eee;

}

.review .box-container .box .stars i{
    color: var(--rojoo);
    font-size: 2rem;
}

.review .box-container .box p{
    color: #999;
    font-size: 1.5rem;
    line-height: 1.5rem;
    padding-top: 2rem;
}

.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-top: 2rem;

}

.review .box-container .box .user img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.review .box-container .box .user h3{
    font-size: 2rem;
    color: #333;
}


.review .box-container .box .user span{
    font-size: 1.5rem;
    color: #00000;
}



 
 
 
 /* ======CARRUSEL======== */
 

.slider-wrapper{
    overflow: hidden;
    margin: 0 45px 40px;
}

.card-list .card-item{
    color: #fff;
    user-select: none;
    padding: 20px;
    border-radius: 5px;
    background: rgba(255,255,255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(30px);
    height: 65rem;
}

h2.user-name {
    color: #000;
    font-size: 2.7rem;
}
.card-list .card-item .user-image{
    /*width: 100%;*/
    height: 250px;
    margin-bottom: 40px;
    padding: 2px;
}

.card-list .card-item .user-profession{
    font-size: 1.7rem;
    color: #000000;
    font-weight: 500;
    margin: 14px 0 40px;
}



.card-list .card-item .message-button{
    font-size: 1.5rem;
    padding: 7px;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    background: #D31F1F;
    transition: 0.5s ease;
}

.card-list .card-item .message-button:hover{
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid #fff;
}

.slider-wrapper .swiper-pagination-bullet{
    background: #fff;
    height: 15px;
    width: 15px;
}

 .slider-wrapper .swiper-slider-button{
    color: #fff;
    margin-top: -22px;
    transition: 0.2s ease;

 }


 .slider-wrapper .swiper-slider-button:hover{
    color: #4658ff;
 }

button {
    padding: 7px;
    background-color: #d31f1f;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    
}

 /* ======MEDIA QUERIES======== */

 @media (max-widht:768px){
    .slider-wrapper{
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slider-button{
        display: none;
    }
 }



 /* ======MEDIA QUERIES======== */

 @media (max-widht:768px){
    .slider-wrapper{
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slider-button{
        display: none;
		color: #D31F1F;
    }
 }


.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.contact .row form{
    flex: 1 1 40rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border:.1rem solid rgba(0,0,0,.1);
    background: #fff;
    border-radius: .5rem;
}

.contact .row  .image{
    flex: 1 1 40rem;

}

.contact.row .image img{
    width: 100%;
}

.contact .row form .box{
    pad: 1rem;
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
    border:.1rem solid rgba(0,0,0,.1);
    border-radius:.5rem;
    margin:.7rem 0;
    width: 100%;
}

.contact .row form .box:focus{
    border-color: var(--rojoo);
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
}


.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer .box-container .box{
    flex: 1 1 25rem;
}

.footer .box-container .box h3{
    color: #000;
    font-size: 2.5rem;
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    color: #000;
    font-size: 1.5rem;
    padding: 1rem 0;
}


.footer .box-container .box  a:hover{
    color: var(--rojoo);
    text-decoration: underline;
}

.footer .box-container .box img{
    margin-top: 1rem;
}

.footer .credit{
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: #FFF;
    border-top: .1rem solid rgba(0,0,0,.1);
}

.footer .credit span{
    color: var(--rojoo);
}

.credit{
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
    font-size: 1.5rem;
    color: #000;
    border-top: .1rem solid rgba(0, 0, 0, .1);
    background: #f1f1f1;
}
.credit span {
    color: #D31F1F;
}


/* media queries*/
@media (max-width:1080px){
    
html{
    font-size: 55%
}

header{
    padding: 2rem;
}
section{
    padding: 2rem;
}
    .home {
        background-position: center;
        background-size: cover;
        display: flex;
        min-height:34vh;
        top: 25rem;
    }
}


@media (max-width:800px){
    html .fa-bars{
        display: block;
    }
    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header #toggler:checked ~ .navbar{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);;
    }
    header .navbar a{
        margin: 1.5rem;
        padding: 1.5rem;
        background: #d31f1f;
        border: .1rem solid rgb(0, 0, 0, .1);
        display: block;
    }
    
    header {
        padding: 5rem;
        bottom: 100rem;
    }
    
    .home.content h3{
        font-size: 5rem;

    }
    .home.content span{
        font-size: 2.5rem;
        
    }
    .icons-container .icons h3{
        
        font-size: 2rem;
    }
    
    
    .icons-container .icons span{
        font-size: 1.7rem;
    }
    
     .home {
        background-position: center;
        background-size: cover;
        display: flex;
        min-height: 35vh;
        top: 25rem;
    }

}


@media (max-width:720px){
    
    html{
        font-size: 50%
    }
    .heading{
        font-size: 3rem;
    }
    .home {
        background-position: center;
        background-size: cover;
        display: flex;
        min-height: 22vh;
        top: 25rem;
        
    }
    header {
        padding: 5rem;
        bottom: 102rem;
    }
   
    img {
        width: auto;
    }
    .about2{
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
    justify-content: center;
    }
    .about .row .video-container{
    flex: 1 1 40rem;
    display: flex;
    justify-content: center;
    }
}    

@media (max-width: 400px){
    
    html{
        font-size: 50%
    }
    .heading{
        font-size: 3rem;
    }
    .home {
        background-position: center;
        background-size: cover;
        display: flex;
        min-height: 25vh;
        top: 20rem;
        
    }
    header {
        padding: 5rem;
        bottom: 100rem;
    }
   
    }
@media (max-width: 399px){
    
    html{
        font-size: 50%
    }
    .heading{
        font-size: 3rem;
    }

    header {
        padding: 2rem;
        bottom: 79rem;
    }
    .home {
        background-position: center;
        background-size: cover;
        display: flex;
        min-height: 26.5vh;
        top: 20rem;
        
    }
   
    }