@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,500;1,700&display=swap');
:root {
    --colorpalette1: #212121;
    --colorpalette2: #882439;
    --colorpalette3: #d43759;
    --colorpalette4: #F7F7F7;
    --colorpalette5: #FFFFFF;
    --textgris1: #c3c7cc;
    --colornegro: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--colorpalette5);
    font-family: 'Roboto', sans-serif;
}

dl,
ol,
ul,
.row,
.col-md-4 {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

.width70 {
    width: 70%;
}

.car1 {
    width: 654px;
    height: 336px;
    margin-top: 20px;
    padding: 0;
}

.fondotextura2 {
    background: url('../img/fondovino.jpg');
    width: 100%;
    height: 300px;
}

.padding100tb {
    padding: 100px 0px;
}

.descripcion1 {
    width: 50%;
    margin: auto;
}

.titulo1 {
    font-size: 96px;
    color: var(--colorpalette1);
    text-transform: uppercase;
    font-weight: 300;
}

.titulo1 span {
    font-weight: 500;
    font-style: normal;
}

.titulo2 {
    font-size: 48px;
    color: var(--colornegro);
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    padding-top: 40px;
}

.titulo2 span {
    background: var(--colorpalette2);
    color: var(--colorpalette5);
    padding: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .25);
}

.titulo3 {
    color: var(--colornegro);
    background: var(--colorpalette5);
    padding: 10px 20px;
    width: 530px;
}

.titulo4 {
    color: var(--colornegro);
    font-size: 48px;
    font-weight: bold;
}

.titulomarca {
    color: var(--textgris1);
    font-size: 20px;
}

.tituloversion {
    color: var(--colorpalette1);
    text-transform: uppercase;
    font-size: 24px;
}

.parrafo1 {
    font-size: 18px;
    color: var(--colorpalette5);
    text-transform: uppercase;
}

.marcathumb {
    color: var(--colorpalette1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.marcathumb2 {
    color: var(--colorpalette5);
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

.subtitulo1 {
    font-size: 24px;
    color: var(--textgris1);
}

.subtitulo2 {
    font-size: 48px;
    color: var(--colorpalette5);
    text-transform: uppercase;
    padding-top: 20px;
}

.logo img {
    width: 90px;
}

.btnGeneral {
    display: block;
    margin: auto;
    background: linear-gradient(45deg, var(--colorpalette2), var(--colorpalette3));
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 70px;
    width: 300px;
    height: 70px;
    text-decoration: none;
    color: var(--colorpalette5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btnGeneral:hover {
    color: var(--colorpalette5);
    text-decoration: none;
}

.btnGeneral:before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    opacity: 0;
    background: var(--colorpalette1);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.btnGeneral:hover:before {
    animation: animatebtnGeneral .5s linear;
    width: 100%;
    height: 100%;
    opacity: 1;
    left: 0;
}

@keyframes animatebtnGeneral {
    0% {
        width: 0;
        height: 1px;
        opacity: 0;
        left: 0;
    }
    50% {
        width: 50%;
        height: 1px;
        opacity: 1;
        left: 100%;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 1;
        left: 0;
    }
}

.cuadroimg {
    width: 470px;
    height: 290px;
    background: var(--colorpalette2);
    border: 10px solid var(--colorpalette5);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .25);
    transform: rotate(-10deg);
}

.cuadroimg img {
    display: block;
    width: 410px;
    margin: auto;
}

.descripcion-car {
    position: absolute;
    top: 0;
    left: 0;
}

.icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, var(--colorpalette2), var(--colorpalette3));
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    color: var(--colorpalette5);
}

.fijo {
    position: fixed;
    top: 0;
    z-index: 9999;
}

.textIcon {
    margin-left: 10px;
}

.textIcon a,
.textIcon p {
    color: var(--colorpalette1);
}

.btnmenu {
    cursor: pointer;
    display: none;
}

.btnmenu span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--colorpalette5);
    margin-bottom: 5px;
    transition: .3s ease-in;
}

.btnmenu span:last-child {
    margin-bottom: 0px;
}

.rline1 {
    transform: translateY(7px) rotate(45deg);
}

.sline2 {
    transform: scaleX(0);
}

.rline3 {
    transform: translateY(-7px) rotate(-45deg);
}

.ul {
    width: 70%;
    display: flex;
    justify-content: flex-end;
}

.nav ul li {
    list-style: none;
}

.nav ul li a {
    display: block;
    text-decoration: none;
    color: var(--colorpalette5);
    padding: 15px 20px;
    text-transform: uppercase;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
}

.nav ul li a:hover {
    color: var(--colornegro);
}

.nav ul li a:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    left: 0;
    background: var(--colorpalette5);
    opacity: 0;
    top: 0;
    transition: .5s;
    z-index: -1;
}

.nav ul li a:hover:before {
    animation: animateitem .5s linear;
    width: 100%;
    left: 0;
    opacity: 1;
}

@keyframes animateitem {
    0% {
        width: 3px;
        left: 0;
        opacity: 0;
    }
    50% {
        width: 3px;
        left: 100%;
        opacity: 1;
    }
    100% {
        width: 100%;
        left: 0;
        opacity: 1;
    }
}

.nav ul li a.active {
    background: var(--colorpalette5);
    color: var(--colornegro);
}

.txtSearch {
    -webkit-appearance: none;
    background: none;
    border: none;
    border-bottom: 1px solid var(--colorpalette5);
    width: 80%;
    opacity: 1;
    transition: .5s;
    color: var(--colorpalette5);
}

.txtSearch:focus {
    outline: none;
    border-bottom: 1px solid var(--colorpalette5);
}

.txtSearch::placeholder {
    color: var(--colorpalette5);
}

.iconSearch {
    width: 30%;
    position: relative;
}

.iconoS {
    width: 30px;
    height: 30px;
    background: var(--colorpalette5);
    border-radius: 50%;
    margin-right: 40px;
    color: var(--colornegro);
    text-align: center;
    line-height: 30px;
    position: relative;
    z-index: 1;
}

#resultadoBusqueda {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: var(--colorpalette5);
    z-index: 99999;
    transition: .5s;
}

#resultadoBusqueda a {
    display: block;
    text-align: center;
    padding: 10px 0px;
    color: var(--colornegro);
    position: relative;
    z-index: 1;
}

#resultadoBusqueda a:hover {
    color: var(--colorpalette5);
}

#resultadoBusqueda a:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--colorpalette2), var(--colorpalette3));
    transform: scaleX(0);
    transition: .5s;
    z-index: -1;
}

#resultadoBusqueda a:hover:before {
    width: 100%;
    transform: scaleX(1);
}

.mBusqueda {
    display: block;
}

.btnMas {
    color: var(--colornegro);
    text-align: center;
}

.btnMas:hover {
    color: var(--colorpalette5);
}

.circle-info {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* box-shadow: 0 0 16px 0 rgba(51, 51, 51, 0.06); */
    background: var(--colorpalette4);
}

.movilSlider {
    display: none;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
}

.content-swiper-thumbs {
    width: 60%;
    margin: auto;
    height: 600px;
}

.swiper-container2 {
    width: 100%;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-container2 .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-top {
    height: 80%;
    width: 100%;
}

.gallery-top .swiper-wrapper .swiper-slide {
    background-size: 65%;
    background-repeat: no-repeat;
    background-position-y: 100px;
}

.gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-wrapper .swiper-slide {
    background-size: 60%;
    background-repeat: no-repeat;
    background-position-x: 0px;
}

.gallery-thumbs .swiper-wrapper .swiper-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--colorpalette3);
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.social-icons a {
    text-decoration: none;
    color: var(--colorpalette1);
    margin: 0px 40px;
    font-size: 24px;
}

.social-icons a:first-child {
    margin-left: 0px;
}

.section-thumbnailGallery {
    position: relative;
}


/* .bg-slider{
    position: absolute;
    background: url('../img/bgslider.jpg');
    background-repeat: no-repeat;
    background-position-y: -400px;
    display: block;
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    filter: blur(3px);
    } */


/* .bg-footer {
    background: #FFF url('../img/footer-bg-2.mp4') center bottom no-repeat;
    background-size: cover;
    height: 770px;
} */

.imgBancosMovil {
    display: none;
}

.banner,
.banner-ofertas {
    margin-top: 110px;
}

#content,
.section-thumbnailGallery {
    margin-top: 130px;
}

@media (max-width: 1281px) {
    .descripcion1 {
        width: 80%;
    }
    .cuadroimg {
        width: 350px;
        height: 180px;
    }
    .cuadroimg img {
        width: 290px;
    }
    .width60R {
        width: 60%;
    }
    .nav ul li a {
        padding: 10px 20px;
        font-size: 8px;
    }
    .content-swiper-thumbs {
        width: 85%;
        height: 550px;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 1112px) {}

@media (max-width: 991px) {
    .gallery-top .swiper-wrapper .swiper-slide {
        background-position-y: 140px;
    }
    /* .bg-footer {
        height: 500px;
    } */
    .marcathumb {
        font-size: 14px;
    }
    .width60R {
        width: 80%;
    }
    .btnmenu {
        display: block;
        width: 20%;
        padding-left: 20px;
    }
    .nav {
        position: relative;
    }
    .ul {
        width: 100%;
        position: absolute;
        display: block;
        position: absolute;
        left: -100%;
        top: 100%;
        z-index: 3;
        background: var(--colorpalette2);
        transition: .5s;
    }
    .mMenu {
        left: 0;
    }
    .nav ul li a {
        text-align: center;
        font-size: 12px;
        color: var(--colorpalette5);
    }
    .nav ul li a:hover {
        color: var(--colorpalette5);
    }
    .nav ul li a:before {
        content: '';
        position: absolute;
        width: 3px;
        height: 100%;
        left: 0;
        background: linear-gradient(45deg, var(--colorpalette2), var(--colorpalette3));
        opacity: 0;
        top: 0;
        transition: .5s;
        z-index: -1;
    }
    .nav ul li a:hover:before {
        animation: animateitem .5s linear;
        width: 100%;
        left: 0;
        opacity: 1;
    }
    .iconSearch {
        width: 80%;
        position: static;
    }
    .iconoS {
        margin: 10px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .titulo1,
    .titulo3 {
        font-size: 28px;
    }
    .titulo3 {
        width: 400px;
    }
    .car1 {
        width: 480px;
        height: 226px;
        padding: 0;
    }
    .circle-info {
        margin: 10px 0px;
    }
    .desktopSlider {
        display: none;
    }
    .movilSlider {
        display: block;
    }
    .gallery-top .swiper-wrapper .swiper-slide {
        background-position-y: 180px;
    }
    .gallery-thumbs .swiper-wrapper .swiper-slide {
        background-position-x: 20px;
    }
    .logo img {}
    .marcathumb {
        display: none;
    }
    .marcathumb2 {
        display: block;
    }
    .datosContacto {
        margin: 5px 0px;
    }
    .iconoS {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .titulo1,
    .titulo4,
    .subtitulo2 {
        font-size: 24px;
    }
    .subtitulo1 {
        font-size: 18px;
    }
    .subtitulo2 {
        padding-top: 20px;
    }
    .car1 {
        width: 420px;
        height: 226px;
    }
    .content-swiper-thumbs {
        height: 400px;
    }
    .gallery-top .swiper-wrapper .swiper-slide {
        background-position-y: 150px;
    }
    .gallery-thumbs .swiper-wrapper .swiper-slide {
        background-size: 80%;
        background-position-x: 0px;
    }
    /* .bg-footer {
        height: 300px;
    } */
    .logo img {}
    .justificar-inicio {
        justify-content: start;
    }
    .horariospan {
        display: block;
    }
    .linehora {
        display: none;
    }
    .imgBancosMovil {
        display: block;
    }
    .imgBancosDesktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .subtitulo2 {
        font-size: 14px;
        padding-top: 10px;
    }
    .fondotextura2 {
        height: 100px;
    }
    .titulo2,
    .fonts24 {
        font-size: 24px;
    }
    .titulo3 {
        width: 280px;
        font-size: 18px;
    }
    .parrafo1 {
        font-size: 10px;
    }
    .btnGeneral {
        font-size: 20px;
        line-height: 50px;
        width: 200px;
        height: 50px;
    }
    .titulomarca {
        font-size: 16px;
    }
    .tituloversion {
        font-size: 18px;
    }
    .cuadroimg {
        width: 200px;
        height: 120px;
    }
    .cuadroimg img {
        width: 150px;
    }
    .content-swiper-thumbs {
        height: 300px;
    }
    .gallery-top .swiper-wrapper .swiper-slide {
        background-position-y: 120px;
    }
    .gallery-thumbs .swiper-wrapper .swiper-slide {
        background-position-x: 10px;
    }
    .width90 {
        width: 90%;
    }
    .car1 {
        width: 250px;
        height: 126px;
    }
    .social-icons a {
        margin: 0px 20px;
    }
    .icon {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
    .icon i,
    .textIcon a,
    .textIcon p {
        font-size: 12px;
    }
    /* .bg-footer {
        height: 200px;
    } */
    #resultadoBusqueda a {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .logo img {}
}