﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body-us {
    background: #fff;
    width: 100%;
}
.section-us {
    background: #ffff;
    margin: auto;
    width: 90%;
    margin-top: 30px;
}
.title-us {
    font-size: 30px;
    color: rgb(2, 23, 43);
    margin: 20px;
    border-bottom: 1px solid #e4e4e4;
    text-align:center;
}
.title-us2 {
    font-size: 25px;
    color: rgb(2, 23, 43);
    margin: 20px;
}
.title-us3 {
    font-size: 15px;
    color: rgb(2, 23, 43);
    margin: 30px 0 0 0;
    font-weight:700;
}
.us {
    display: flex;
}
.us-text {
    width: 60%;
    padding: 0 10% 0 0;
}
.us-paragraph {
    font-size: 18px;
    color: rgb(94, 94, 94);
    text-align: justify;
    margin: 20px;
}
.text-paragraph {
    margin: 10px 0;
}
/*responsive*/
@media only screen and (max-width:1000px) {
    .us-text {
        width: 100%;
        padding: 20px;
    }
}
/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.body-product {
    overflow: hidden;
    background-color: var(--bg);
}

:root {
    --primary: #18253c;
    --secondary: #c00000;
    --bg: #0e1523;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.slider {
    /*   background-color: var(--bg);*/
    padding: 1rem;
    display: flex;
    margin: 7rem auto;
    /*    display: grid;
    grid-template-columns: repeat(5,1fr);
    place-items: center;
    grid-gap: 2rem;
    font: normal 1rem sans-serif;*/
}
.card {
    position: relative;
    left: 0;
    overflow: hidden;
    min-width: 21rem;
    height: 30rem;
    background-color: #fff;
    color: #fff;
    border-radius: 1rem;
    border: .1rem solid transparent;
    transition: .5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
    /*@media screen and (max-width: 768px){
    .card{
        min-width: 21rem;
    }
}*/
    .card:not(:first-child) {
        margin-left: 2rem;
    }

    .card:first-child {
        margin-left: .4rem;
    }

    .card:hover {
        border: .1rem solid var(--secondary);
        /*transition: .5s ease-in-out;*/
        transform: scale(1.05);
    }

    .card::before, .card::after {
        position: absolute;
        content: "";
        background-color: var(--secondary);
        border-radius: 50%;
        transition: .5s ease-in-out;
        z-index: 100;
    }
.card::before {
    top: -6%;
    right: -6%;
    width: 9rem;
    height: 9rem;
}
.card::after {
    bottom: -6%;
    left: -6%;
    width: 5rem;
    height: 5rem;
}
.card:hover::before {
    transform: scale(1.8);
}
.card:hover::after {
    transform: scale(0);
}
.card-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.card-img,
.card-title {
    transform: translateY(4rem);
    transition: .5s ease-in-out;
}
.card-img {
    align-items: center;
    width: 100%;
    object-fit: cover;
    height: 20rem;
}
.card-title {
    font-size: 1rem;
    color: #000;
    transition-delay: .2s;
    text-transform: uppercase;
}
.card-body,
.card-footer {
    transform: translateY(8rem);
    transition: .5s ease-in-out;
}
.card-body {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition-delay: .2s;
}
.card:hover .card-img,
.card:hover .card-title,
.card:hover .card-body,
.card:hover .card-footer {
    transform: translateY(0);
}
.card-footer {
    transition-delay: .3s;
    margin-bottom: 10px;
}
.star {
    font-size: 1.4rem;
    color: red;
}
.card-price {
    color: #000;
    font: bolder 1.5rem sans-serif;
}
.btn {
    padding: 1rem 2rem;
    background-color: unset;
    border: none;
    outline: none;
    border-radius: 2rem;
    color: #000;
    cursor: pointer;
}
.btn-sucess {
    color: #fff;
    background-color: var(--secondary);
}
.btn-border {
    border: .1rem solid var(--secondary);
}
/*Flechas*/
.arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font: 800 1.5rem sans-serif;
    text-align: center;
    line-height: 3rem;
    user-select: none;
    cursor: pointer;
    z-index: 300;
}
.arrow:active {
    background-color: #ddd;
}
.left {
    left: 1rem;
}
.right {
    right: 1rem;
}