@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

*{
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0px;
    padding: 0px;
}

h1, h2, b,
strong, strong > span {
    font-weight: bold;
}
h3, h4 {
     font-weight: bold;
}

html, body{ overflow-x: hidden }

.flex{ display: flex !important }

.fullCenter{
    justify-content: center;
    align-items: center;
}

.col1{ flex:1 }

.col2{ flex:2 }

a { text-decoration: none }

li { list-style: none }


header {
    padding: 20px 0;
}

header .max-content {
    align-items: center;
    justify-content: space-between;
}
img.logo {
    width: 200px;
}
/* Menu */
.barra-superior{
    display: none;
    width: 100%;
}
.barra-superior .hamburguesa{
    cursor: pointer;
    background: #caba9f;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.barra-superior .hamburguesa span{
    display: block;
    width: 25px;
    height: 4px;
    background: #613119;
    margin: 3px;
    margin-top: 0px;
}
.redes-header img {
    width: 30px;
}
@media (max-width: 1150px) {
    main {
        margin-top:80px;
    }
    .barra-superior{
        display: block;
        margin-left: 82vw;
        margin-top: 15px;
    }
    header .redes-header {
        display: none;
    }
    header ul {
        position: absolute;
        top: 80px;
        width: 200px;
        height: auto !important;
        left: -200px;
        transition: all .5s;
        flex-flow: column;
        background-color: #fff;
        z-index: 99;
        text-align: center;
    }
    header {
        position: fixed;
        width: 100%;
        height: 80px;
        padding: 0;
        z-index: 999999;
        background: #fff;
        box-shadow: 0px 0px 10px #e9e9e9;
    }
    header ul.mostrar {
        left:0;
    }
    header ul li {
        border-bottom: solid 1px #efefef;
        width: 100%;
        display: block;
        padding: 15px 0px;
        order: 2;
    }
    header ul a {
        font-size: 14px;
    }
    img.logo {
        width: 130px;
        position: absolute;
        right: 0;
        left: 0;
        top: 7px;
        margin: 0 auto;
    }
}

.btn, button, input[type="submit"] {
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    color: #fff;
    border: solid 2px;
    border-radius: 5px;
    padding: 10px 40px;
    background-color: transparent;
    transition: all linear 0.4s;
    font-weight: 300;
    text-align: center;
}
.btn:hover, button:hover, input[type="submit"]:hover {
    background-color: white;
    color: #000;
}

.btn--verde, input[type="submit"] {
    background-color: #01a99d;
    border-color: #01a99d;
}

.btn--cafe {
    background-color: #67340c;
    border-color: #67340c;
}

.btn--cafe-claro {
    background-color: #8c623a;
    border-color: #8c623a;
    font-weight: 300;
}

.btn-secundary {
    display: block;
    background-color: #caba9f;
    margin-top: 10px;
    border-color: #caba9f;
    color: #614e43;
    width: 80px;
}
.btn-detail {
    background-color: #caba9f;
    color: #86614f;
    border-color: #caba9f;
}

form input[type="text"],
form input[type="number"],
form input[type="tel"],
form input[type="email"],
textarea {
    outline: 0px;
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
    padding: 13px 8px;
    border: none;
    color: #a5a5a5;
    font-weight: 300;
}
textarea {
    resize: none;
}

.max-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.dropdownmenu li,.dropdownmenu ul {
    margin: 0;
    padding: 0
}

.dropdownmenu ul {
    background: #000200;
    list-style: none;
    width: 100%
}

.dropdownmenu li {
    float: left;
    position: relative;
    width: auto
}

.dropdownmenu a {
    color: #666666;
    display: block;
    padding: 10px 20px;
    text-align: center;
    font-size: 17px;
    text-decoration: none;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease
}
.current-menu-item a{
    color:#cdb99b;
}
.current-menu-item {
    border-bottom: solid 2px #cdb99b;
}
.sub-menu {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 35px;
    visibility: hidden;
    z-index: 1
}

li:hover ul.sub-menu {
    opacity: 1;
    top: 40px;
    visibility: visible;
    width: 200px;
    left: 20px;
    background-color: #fff;
    border-radius: 7px;
    z-index: 9999;
}

.sub-menu li {
    float: none;
    width: 100%
}

.sub-menu a:hover {
    background: #fff;
    color: #000
}
.sub-menu a {
    font-size: 16px;
    text-align: left;
    border-bottom: solid 1px;
}
@media (max-width: 1150px) {
    .dropdownmenu ul {
        display:flex;
        flex-flow: column;
        width: auto
    }
    .dropdownmenu a {
        font-size: 17px;
        width: 122px
    }
}

section.slider-home .cycle-pager {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    z-index: 999;
}

.cycle-pager {
    text-align: center;
    font-size: 26px;
    margin-top: 20px;
    color: #67340c;
    cursor: pointer;
}

span.cycle-pager-active {
    color: #fff;
}

h2.title {
    color: #67340c;
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}
@media (max-width: 600px) {
    section.slider-home .cycle-pager {
        bottom: -5px;
    }
}
