@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
# Normalize
# Forms
# Links
# Transitions
# Utilities
# Header
# Panel Side Mobile
# Footer
# Animaciones

# Home
    ## Hero
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'superclarendonbold';
    src: url('../../assets/fonts/2164-font-webfont.woff2') format('woff2'),
         url('../../assets/fonts/2164-font-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: "Libre Baskerville", serif;
    background: #f4f0e2;
    color: #000;
    font-size: 16px;
    position: relative;
    padding-right: 0 !important;
}

p {
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'superclarendonbold';
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input:focus,
select:focus {
  outline: 0;
}

input:focus-visible,
select:focus-visible {
  outline: 0;
}

button,
input,
select,
textarea {
  color: #a4a4a4;
  font-size: 16px;
  line-height: 1.875;
  word-break: break-word;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  width: 100%;
  color: #a4a4a4;
  border: none;
  background: transparent;
  border-bottom: 1px solid #a4a4a4;
  padding: 8px 10px;
  box-sizing: border-box;
  outline: none;
  font-size: 1.125rem;
  font-weight: 500;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #a4a4a4;
}

select {
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 1px solid #a4a4a4;
}

textarea {
  width: 100%;
  height: 130px;
  vertical-align: top;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a4a4a4;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #a4a4a4;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #a4a4a4;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #a4a4a4;
}
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #798981;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
# Transitions
--------------------------------------------------------------*/
a, .Web-Header, .Web-Header.Sticky, .cta, img, .menu,
.panel-overlay, .cta {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: normal;
    color: #a4a4a4;
}

/*--------------------------------------------------------------
# Animaciones
--------------------------------------------------------------*/
.viewScroll {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
}

@keyframes reveal {
    0% {
        /*opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);*/

/*        opacity: 0;*/
/*        translate: 0 100px;*/
    
        visibility: hidden;
        transform: translate3d(0, 100px, 0);
    }

    100% {
        /*opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);*/

        /*opacity: 1;
        translate: 0 0;*/

        visibility: visible;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.Main-Wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.main-border::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 2;
}

.main-border::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #f4f4f4;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 2;    
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

.cta {
    font-family: "Libre Baskerville", serif;
    border: 1px solid #798981;
    background-color: transparent;
    padding: 7px 38px;
    color: #798981;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 30px;
    position: relative;
    text-transform: uppercase;
}

/*.cta::after {
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 16 9"%3E%3Cpath fill="white" d="M12.5 5h-9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h9c.28 0 .5.22.5.5s-.22.5-.5.5"%2F%3E%3Cpath fill="white" d="M10 8.5a.47.47 0 0 1-.35-.15c-.2-.2-.2-.51 0-.71l3.15-3.15l-3.15-3.15c-.2-.2-.2-.51 0-.71c.2-.2.51-.2.71 0l3.5 3.5c.2.2.2.51 0 .71l-3.5 3.5c-.1.1-.23.15-.35.15Z"%2F%3E%3C%2Fsvg%3E');
    position: absolute;
    top: 50%;
    transform: translateY(-12px);
    right: 24px;
    line-height: normal;
}*/

.cta:hover{
    background-color: #798981;
    color: #fff;
    text-decoration: none;
}

.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}

.panel-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.img-rounded {
    border-radius: 20px;
}

.section {
    padding: 120px 0;
}

.cl-amarillo {
    color: #FFB900;
}

button.scrollTopStick {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 0;
    position: fixed;
    bottom: 100px;
    right: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #798981;
    transition: all 0.3s ease-out 0.1s;
    -webkit-transition: all 0.3s ease-out 0.1s;
    -moz-transition: all 0.3s ease-out 0.1s;
    -o-transition: all 0.3s ease-out 0.1s;
}

button.scrollTopStick.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: 2px 2px 7px 2px rgb(0 0 0 / 17%);
    -webkit-box-shadow: 2px 2px 7px 2px rgb(0 0 0 / 17%);
    -moz-box-shadow: 2px 3px 45px 0px rgba(0, 0, 0, 0.33);
    cursor: pointer;
    z-index: 999;
}

.BoxBotonWhatsappFlotante {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
}

.BoxBotonWhatsappFlotante .BtnLink {
    background: linear-gradient(180deg, rgba(95, 252, 123, 1) 0%, rgba(40, 209, 70, 1) 100%);
    width: 60px;
    height: 60px;
    background-size: contain;
    border-radius: 50%;
    box-shadow: 0px 5px 5px rgb(0 0 0 / 20%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 575px) {
    .BoxBotonWhatsappFlotante {
        right: 12px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.Web-Header {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
}
.main-header .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}
.header-row > [class^=col-header] {
    display: flex;
    align-items: stretch;
    position: static;
}
.header-row .col-header {
    flex-basis: 0;
    flex-grow: 0.65;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
}
.header-row .col-header.col-logo {
    flex-grow: 0.4;
}
.header-row .col-header.col-nav {
    -ms-flex-pack: center;
    justify-content: center;
    flex-grow: 0.2;
}
.header-row .col-header.col-redes {
    flex-grow: 0.4;
    justify-content: flex-end;
    align-items: center;
}
.header-redes {
    line-height: 0;
}
.header-redes > a {
    display: inline-block;
    margin-left: 10px;
}
.main-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
}
.main-navigation > ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}
.main-navigation ul {
    font-weight: normal;
    font-size: 0.938rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}
.main-navigation > ul > li {
    margin: 0px 21px;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.main-navigation ul > li > a {
    font-family: 'gothammedium';
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #009fe3;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 4px;
}
/*.menu-burger {
    position: relative;
    width: 32px;
    height: 100%;
    max-height: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
    display: flex;
}
.menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #798981;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}*/
.ic-facebook {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009fe3' d='M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4z'/%3E%3C/svg%3E");
}
.ic-twitter {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009fe3' fill-rule='evenodd' d='M15.022 3.343c.508-.087 1.077-.116 1.613-.025a4.85 4.85 0 0 1 2.54 1.273c.456.01.905-.08 1.302-.208a5.36 5.36 0 0 0 1.098-.501l.009-.006a.75.75 0 0 1 1.042 1.037c-.207.315-.496.877-.819 1.507l-.155.301c-.185.36-.375.724-.552 1.036c-.111.196-.23.395-.35.567v.274A12.34 12.34 0 0 1 8.287 21.03a12.32 12.32 0 0 1-6.694-1.97a.75.75 0 0 1 .5-1.375a7.471 7.471 0 0 0 4.033-.642a4.858 4.858 0 0 1-2.61-2.922a.75.75 0 0 1 .147-.722l.01-.01A4.848 4.848 0 0 1 2.05 9.793v-.052a.75.75 0 0 1 .553-.724A4.84 4.84 0 0 1 2.09 6.84a4.9 4.9 0 0 1 .65-2.442a.75.75 0 0 1 1.232-.1a10.89 10.89 0 0 0 7.006 3.93a4.85 4.85 0 0 1 2.562-4.406c.402-.214.934-.385 1.482-.479m-11.28 7.548a3.35 3.35 0 0 0 2.503 2.164a.75.75 0 0 1 .072 1.453c-.272.083-.551.14-.834.173a3.358 3.358 0 0 0 2.59 1.3a.75.75 0 0 1 .45 1.339a8.97 8.97 0 0 1-3.548 1.695a10.82 10.82 0 0 0 3.313.515h.009A10.838 10.838 0 0 0 19.25 8.607v-.535a.75.75 0 0 1 .186-.495c.07-.079.19-.261.36-.56c.16-.282.338-.622.523-.981l.033-.066a4.992 4.992 0 0 1-1.593.097a.75.75 0 0 1-.47-.237a3.35 3.35 0 0 0-1.904-1.032a3.42 3.42 0 0 0-1.11.025a3.605 3.605 0 0 0-1.028.323a3.35 3.35 0 0 0-1.678 3.74a.75.75 0 0 1-.767.925a12.39 12.39 0 0 1-8.149-3.627a3.41 3.41 0 0 0-.063.657v.002a3.34 3.34 0 0 0 1.486 2.785A.75.75 0 0 1 4.64 11a4.798 4.798 0 0 1-.897-.11' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.ic-instagram {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009fe3' d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3'/%3E%3C/svg%3E");
}

.logo {
    max-width: 100%;
    height: auto;
}

.cta-wsp {}
.btnBurger {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.menu-text {
    color: #798981;
    font-size: 0.875rem;
    line-height: 0.875rem;
}
.menu-burger {
    position: relative;
    width: 32px;
    height: 32px;
    max-height: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-left: 16px;
    cursor: pointer;
    display: flex;
}
.menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #798981;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

/*--------------------------------------------------------------
# Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: #798981;
    overflow-x: hidden;
    z-index: 50;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}
.side-panel.side-panel-open {
    visibility: visible;
    opacity: 1;
}
.side-panel_inner {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-panel_head {
    padding: 14px 0 13px;
    border-bottom: 1px solid #d2d2cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side-panel_body {}
.side-panel_body nav ul li {
    text-align: center;
    line-height: 0;
}
.side-panel_body nav ul li a {
    font-family: 'superclarendonbold';
    color: #e4e6cb;
    text-decoration: none;
    font-size: 2.5rem;
    line-height: 5.313rem;
}
.side-panel-redes {
    margin-top: 24px;
    line-height: 0;
}
.side-panel-redes > a {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background-color: #e8e7dd;
}

.cta-header.active {
    border: 1px solid #e4e6cb;
    color: #e4e6cb;
}
#openSideMenu.active .menu-text {
    color: #e4e6cb;
}
#openSideMenu.active .menu-burger span {
    background-color: #e4e6cb;
}
#openSideMenu.active .menu-burger  span:first-child {
    transform: translateY(10px) rotate(45deg);
}
#openSideMenu.active .menu-burger  span:nth-child(2) {
    display: none;
}
#openSideMenu.active .menu-burger  span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.Web-Header.Sticky {
    position: fixed;
    background-color: #798981;
    padding: 16px 0;
}
.Web-Header.Sticky .cta-header {
    border: 1px solid #e4e6cb;
    color: #e4e6cb;
}
.Web-Header.Sticky #openSideMenu .menu-text {
    color: #e4e6cb;
}
.Web-Header.Sticky #openSideMenu .menu-burger span {
    background-color: #e4e6cb;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Web-Footer {
    color: #fff;
    padding: 48px 0 0;
}
.widget-footer-1 {
    display: flex;
    justify-content: center;
}
.logo-footer {
    position: absolute;
    top: 38px;
    right: 338px;
}

.widget-footer-2 {
    margin-bottom: 64px;
}

.footer-redes {
    line-height: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 134px;
}
.footer-redes > a {
    display: inline-flex;
    align-items: center;
    color: #798981;
    font-size: 1.75rem;
    line-height: 1.625rem;
}

.footer-redes > a > .ic {
    margin-right: 20px;
}

.ic--baseline-whatsapp {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23798981' d='M19.05 4.91A9.816 9.816 0 0 0 12.04 2c-5.46 0-9.91 4.45-9.91 9.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21c5.46 0 9.91-4.45 9.91-9.91c0-2.65-1.03-5.14-2.9-7.01m-7.01 15.24c-1.48 0-2.93-.4-4.2-1.15l-.3-.18l-3.12.82l.83-3.04l-.2-.31a8.264 8.264 0 0 1-1.26-4.38c0-4.54 3.7-8.24 8.24-8.24c2.2 0 4.27.86 5.82 2.42a8.183 8.183 0 0 1 2.41 5.83c.02 4.54-3.68 8.23-8.22 8.23m4.52-6.16c-.25-.12-1.47-.72-1.69-.81c-.23-.08-.39-.12-.56.12c-.17.25-.64.81-.78.97c-.14.17-.29.19-.54.06c-.25-.12-1.05-.39-1.99-1.23c-.74-.66-1.23-1.47-1.38-1.72c-.14-.25-.02-.38.11-.51c.11-.11.25-.29.37-.43s.17-.25.25-.41c.08-.17.04-.31-.02-.43s-.56-1.34-.76-1.84c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31c-.22.25-.86.85-.86 2.07c0 1.22.89 2.4 1.01 2.56c.12.17 1.75 2.67 4.23 3.74c.59.26 1.05.41 1.41.52c.59.19 1.13.16 1.56.1c.48-.07 1.47-.6 1.67-1.18c.21-.58.21-1.07.14-1.18s-.22-.16-.47-.28'/%3E%3C/svg%3E");
}

.mdi--instagram {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23798981' d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4zm9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8A1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5a5 5 0 0 1-5 5a5 5 0 0 1-5-5a5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3a3 3 0 0 0 3 3a3 3 0 0 0 3-3a3 3 0 0 0-3-3'/%3E%3C/svg%3E");
}

.footer-copy {
    border-top: 1px solid #819087;
    padding: 29px 0;
}

.footer-copy .text-copy {
    text-align: center;
    font-size: 0.875rem;
    line-height: 0.875rem;
    color: #798981;
    margin: 0;
}

.iso-lave {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 575px) {
    .iso-lave {
        position: relative;
        top: 0;
        transform: translateY(0%);
        margin-bottom: 1rem;
    }
}

/*--------------------------------------------------------------
## Hero
--------------------------------------------------------------*/
.hero {
    /*background-image: url('../../assets/img/hero.jpg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;  */  
}
.section.hero {
    padding: 97px 0 0;
}

.hero .box-content .logo {
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
}

.hero .box-content h2 {
    font-family: 'conceptbold';
    font-size: 2rem;
    line-height: 2rem;
}
.hero .box-content h1 {
    font-family: 'akira_expandedsuper_bold';
    font-size: 2rem;
    line-height: 2rem;
}
.hero .box-content h1 .cl-amarillo {
    font-size: 1.5rem;
}
.hero .box-content .cta {
    margin: 48px 0;
}
.hero-item p {
    font-size: 0.875rem;
    font-weight: 700;
}
.material-symbols--circle {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFB900' d='M12 22q-2.075 0-3.9-.788t-3.175-2.137q-1.35-1.35-2.137-3.175T2 12q0-2.075.788-3.9t2.137-3.175q1.35-1.35 3.175-2.137T12 2q2.075 0 3.9.788t3.175 2.137q1.35 1.35 2.138 3.175T22 12q0 2.075-.788 3.9t-2.137 3.175q-1.35 1.35-3.175 2.138T12 22'/%3E%3C/svg%3E");
}

/*--------------------------------------------------------------
## Section
--------------------------------------------------------------*/
.section01 .box-heading::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50px);
    width: 100px;
    height: 3px;
    background-color: #FFB900;
}
.box-heading h2 {
    font-size: 1.375rem;
    line-height: 1.688rem;
    font-weight: 700;
}
.section01 .box-heading h2 {
    margin-bottom: 96px;
}

/*--------------------------------------------------------------
## Somos
--------------------------------------------------------------*/
.section.somos {
    padding: 90px 0 100px;
}

.section.somos .box-content.box-heading {
    max-width: 425px;
}

.box-heading h1 {
    color: #798981;
    font-size: 3.25rem;
    line-height: 3.5rem;
}

/*--------------------------------------------------------------
## Nuestra Actitud
--------------------------------------------------------------*/
.section.nuestra-actitud {
    background-color: #e4e6cb;
}

.section.nuestra-actitud .row > .col-md-6 .box-content {
    max-width: 568px;
}

.section.nuestra-actitud .row .col-md-6:nth-child(2) .box-content {
    margin-left: 48px;
    max-width: 415px;
}

.box-content h2 {
    color: #798981;
    font-size: 3.25rem;
    line-height: 3.5rem;
}

.box-content p {
    margin-bottom: 42px;
}

.box-thumb {
    max-width: 740px;
}

.bold {
    font-weight: 700;
}

/*--------------------------------------------------------------
## Items Frase
--------------------------------------------------------------*/
.nuestra-actitud-items {
    background-color: #e4e6cb;
    padding-bottom: 120px;
}

.item-frase {
    position: relative;
}

.item-frase::after {
    content: '';
    position: absolute;
    top: -25px;
    right: 0;
    width: 1px;
    height: 115px;
    background-color: #798981;
}

.item-frase:nth-of-type(3)::after {
    content: '';
    visibility: hidden;
}

.item-frase h5 {
    font-family: 'superclarendonbold';
    font-size: 1.75rem;
    line-height: 2rem;
    color: #798981;
    text-align: center;
}

/*--------------------------------------------------------------
## Banner Image
--------------------------------------------------------------*/
.banner-image {
    position: relative;
    height: 372px;
    background-image: url(../../assets/img/banner-image-v2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-01.png);
}

.banner-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-02.png);
}

.shape-circle {
    background-image: url(../../assets/img/shape-circle.png);
    background-size: contain;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: absolute;
    top: -40px;
    right: 64px;
    padding: 40px 50px;
}

/*--------------------------------------------------------------
## Propósito
--------------------------------------------------------------*/
.section.proposito {
    background-color: #e4e6cb;
}

.section.proposito .box-content p {
    max-width: 625px;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
## Banner Image 02
--------------------------------------------------------------*/
.banner-image-02 {
    background-color: #e4e6cb;
    position: relative;    
}

.container-banner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.banner-image-02::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-01.png);
}

.banner-image-02::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-02.png);
}

/*--------------------------------------------------------------
## Efecto Vino
--------------------------------------------------------------*/
.section.efecto-vino {
    background-color: #e4e6cb;
}

.section.efecto-vino .row > .col-md-6 .box-content {
    max-width: 420px;
}

.section.efecto-vino .row .col-md-6:nth-child(2) .box-content {
    margin-left: auto;
    max-width: 580px;
}

/*--------------------------------------------------------------
## Banner Frase
--------------------------------------------------------------*/
.banner-frase {
    position: relative;
    background-image: url('../../assets/img/banner-frase.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 158px 0;
}

.banner-frase::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-01.png);
}

.banner-frase::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-03.png);
}

.blockquote {
    color: #e4e6cb;
    font-size: 2.5rem;
    line-height: 3.75rem;
    max-width: 1270px;
    margin: auto;
}

/*--------------------------------------------------------------
## La Caída de los mitos
--------------------------------------------------------------*/
.section.la-caida .box-content .text {
    max-width: 570px;
    margin: auto;
}

/*--------------------------------------------------------------
## Vinos
--------------------------------------------------------------*/
.vinos {
    padding-bottom: 120px;
}

.box-vino img {
    margin-bottom: 64px;
}

.vino-detail {
    position: relative;
    padding: 0 45px 59px;
    min-height: 340px;
}

.box-vino h2 {
    font-size: 3.25rem;
    line-height: 3.5rem;
    color: #798981;
    margin-bottom: 2rem;
}

.box-vino .cta {
    font-size: 1.125rem;
    color: #000;
    padding: 15px 55px;
    border: 1px solid #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.box-vino .cta:hover {
    background-color: #798981;
    color: #f4f0e2;
    text-decoration: none;
}

/*--------------------------------------------------------------
## Mapa
--------------------------------------------------------------*/
.section.mapa {
    background-color: #798981;
}

.mapa::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-04.png);
}

.mapa::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 1547px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(../../assets/img/shape-03.png);
}