@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: url(../imagenes/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    min-height: 100vh;
    align-items: center;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu2 {
    position: absolute;
    top: 100%; 
    left: 0;
    right: 0;
 }

.logo {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
}

.menu .navegacion ul li {
    position: relative;
    float: left;
}

.menu .navegacion ul li a {
    font-size: 18px;
    padding: 20px;
    color: #fff9c4;
    display: block;
    font-weight: bold;
}

.menu .navegacion ul li a:hover {
    color: #8bc34a;
}

.icons {
    display: flex;
}

.icons i {
    font-size: 25px;
    color: #fff9c4;
    margin-right: 15px;
    cursor: pointer;
}

.icons :hover {
    color: #8bc34a;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-txt {
    width: 40%;
}

.header-txt p {
    font-size: 18px;
    color: #fff9c4;
    font-weight: 500;
    margin-bottom: 25px;
}

.navegacion .submenu-cont {
    display: none;
    position: absolute;
    background-color: rgba(93, 64, 55, 0.5);
    padding: 0.5px;
}

.navegacion .submenu:hover .submenu-cont {
    display: block;
}

.navegacion .submenu-cont li {
    margin-bottom: -15px;
}

.images {
    width: 100%;
    height: 600px;
    position: absolute;
    right: 0;
  }

.swiper {
    width: 100%;
    padding: 150px 0 50px 0;
}

.swiper-slide {
    width: 550px;
    height: 420px;
    background-color: rgba(93, 64, 55, 0.8);
    box-shadow: 0 0 20px rgba(255, 249, 196, 1);
    padding: 40px;
    text-align: center;
}

.incon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.incon i {
    font-size: 20px;
    color: #FFD54F;
}

.incon img {
    width: 350px;
}

.product-content {
    display: flex;
    justify-content: space-between;
}

.product-txt {
    flex: 50%;
    text-align: left;
}

.product-txt span {
    font-size: 25px;
    color: #FFD54F;
    font-weight: bold;
}

.product-txt h3 {
    font-size: 20px;
    color: #FFF9C4;
    text-transform: uppercase;
}

.product-img {
    flex-basis: 50%;
    text-align: right;
}

.product-img img {
    width: 250px;
}

.btn-1 {
    display: inline-block;
    padding: 13 px 55px;
    border: 1px solid #FFD54F;
    border-radius: 25px;
    color: #FFD54F;
    background-color: #5D4037;
    margin-top: 50px;
    font-size: 20px;
}