@import url('fonts.css');
:root {
    --color-primary: #A0A0A0;
    --color-white: #fff;
    --color-black: #000;
    --color-bg: rgb(29, 29, 29);
    --color-gold: #d4991b;
    --color-wheat: #f2dcb3;
    --color-red: #C90B1C;
    --color-red--alternative: #720912;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-size: 16px;
    font-family: 'Roboto Serif', sans-serif;
    color: var(--color-primary);
    background-color: var(--color-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 2rem;
    overflow-x: hidden !important;
}
.no-webp body,
.no-js body {
    background-image: url('../assets/images/fondo-pan-mobile-compress.png');
}
.webp body {
    background-image: url('../assets/images/webp/fondo-pan-mobile-compress.webp');
}

html {
    scroll-behavior: smooth;
}

/* Utility classes */
.none {
    display: none;
}
.button {
    background-color: var(--color-red);
    border: 1px solid var(--color-red--alternative);
    color: var(--color-white);
    font-size: 1.25rem;
    width: 300px;
    max-width: 100%;
    height: 65px;
    margin: auto;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    font-family: 'Open Sans', sans-serif;
}

.main {
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
}

/* Splash */
/*.splash {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
}
.splash__logo {
    margin-bottom: 1rem;
    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.splash__text {
    color: var(--color-primary);
    font-size: .9rem;
    font-family: 'Helvetica';
    letter-spacing: 1px;
}
@keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}*/

/* Header */
.header {
    padding: 7rem 0 2rem;
    
}
.header__logotipo {
    max-width: 1080px;
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
}

/* Features section */
.features {
    padding-bottom: 2rem;
}
.features__header {
    margin: auto;
    margin-bottom: 2rem;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.features__title {
    font-family: 'Ecosmith Script Regular';
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: normal;
    width: 825px;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(var(--color-wheat), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features__header::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}
.features__header::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}
.features__video {
    max-width: 100%;
    width: 768px;
    height: 220px;
    display: block;
    margin: auto;
    margin-bottom: 1.5rem;
}
.features__description {
    line-height: 1.5;
    text-align: center;
    font-size: 1rem;
    max-width: 1080px;
    margin: auto;
    margin-bottom: 1rem;
}
.features__slides {
    margin: 3rem 0;
    position: relative;
    overflow-x: hidden;
    height: calc(200px + 3rem);
}
.feature__slide {
    width: 100%;
    height: 200px;
}
.features__info {
    margin-bottom: 2rem;
}

/* Credentials section */
.credentials__header {
    margin: auto;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.credentials__title {
    font-family: 'Ecosmith Script Regular';
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: normal;
    width: 825px;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(var(--color-wheat), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credentials__header::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}
.credentials__header::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}
.credentials__subtitle {
    color: var(--color-white);
    text-align: center;
    font-size: 1rem;
    font-family: 'Ecosmith Script Regular';
    font-weight: normal;
    margin-bottom: 6rem;
}
.credentials__card {
    margin-bottom: 5rem;
    text-align: justify;
}
.credentials__card-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto 5rem;
    transform: rotate(8deg);
}
.credentials .credentials__card:nth-of-type(2) .credentials__card-image {
    transform: rotate(-8deg);
}
.credentials__card-info {
    margin-bottom: 3rem;
}
.credentials__card-title {
    color: var(--color-white);
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.credentials__card-description {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1rem;
}
.copyright {
    padding-top: 20px;
    text-align: center;
}
.copyright a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none; 
}
.footer_link {
    display: block;
    margin: 0 auto 15px;
    color: var(--color-primary);
}
/* Learn more */
.learn_more__header {
    margin: auto;
    margin-bottom: 2rem;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.learn_more__title {
    font-family: 'Ecosmith Script Regular';
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: normal;
    width: 1000px;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(var(--color-wheat), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.learn_more__header::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}
.learn_more__header::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--color-white);
    opacity: .2;
}

/* Swiper */
.swiper {
    max-width: 100%;
    height: 200px;
    overflow: visible !important;
}
.swiper-pagination {
    position: absolute !important;
    bottom: -2rem !important;
    width: 200px !important;
    right: 0 !important;
    left: inherit !important;
    text-align: right !important;
}
.swiper-pagination-bullet {
    background-color: var(--color-primary) !important;
    height: .8rem !important;
    width: .8rem !important;
    margin-left: .5rem !important;
    margin-right: .5rem !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--color-white) !important;
}
.swiper-nav {
    position: absolute !important;
    bottom: -2rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50px;
}
.swiper-button-prev, .swiper-button-next {
    position: static !important;
    margin: 0 !important;
    height: auto !important;
    width: auto !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    color: var(--color-gold) !important;
}

/* Footer */
.footer {
    margin-bottom: 12rem;
}

/* Hamburger Menu Icon */
.menu__toggler {
    position: fixed;
    top: 18px;
    left: 28px;
    height: 30px;
    width: 35px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    /*background-color: var(--color-white);*/
    justify-content: center;
    transition: all .5s;
    border-radius: .25rem;
    z-index: 30;
}
.menu__toggler.active {
    background-color: transparent;
}
.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
    position: fixed;
    content: '';
    width: 28px;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 20px;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
    top: 2rem;
    left: 2rem;
    z-index: 30;
}
.menu__toggler span::before {
    top: calc(2rem - 8px);
}
.menu__toggler span::after {
    top: calc(2rem + 8px);
}
.menu__toggler.active > span  {
    background: transparent;
}
.menu__toggler.active > span::before,
.menu__toggler.active > span::after {
    position: fixed;
    background: var(--color-white);
    top: 2rem; 
    left: 2rem;
    z-index: 30;
}
.menu__toggler.active > span::before  {
    transform: rotate(-225deg);
}
.menu__toggler.active > span::after  {
    transform: rotate(225deg);
}
.menu__bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--color-bg);
    z-index: 10;
}

/* Sidebar Menu */
.menu {
    position: fixed;
    left: -30%;
    z-index: 20;
    /*background: linear-gradient(var(--color-wheat), var(--color-gold));*/
   
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    width: 30%;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
    width: 250px;
    left: -250px;
    padding: 2rem;
}
.no-webp .menu,
.no-js .menu {
    background-image: url('../assets/images/fondo-mobile-compress.png');
}
.webp .menu {
    background-image: url('../assets/images/webp/fondo-mobile-compress.webp');
}
.menu li {
    margin-bottom: 2rem;
}
.menu a {
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1.5;
    transition: all .3s;
    font-family: 'Ecosmith Script Regular';
    background: linear-gradient(var(--color-wheat), var(--color-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu a:hover {
    /* color: var(--color-white); */
    background: linear-gradient(var(--color-wheat), var(--color-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu.active {
    left: 0;
}

.lazy-youtube-embed {
    background: none !important;
    padding-top: 0 !important;
    overflow: hidden;
    color: #fff;
    
}