:root {
    --padding-container: 100px 0;
    --color-title: #691C32;
    --primary:#ffffff;
    --secondary:#BC955C;
    --black-text:#98989A;
    --cuarto:#9F2241;
    --quinto:#000;
}



/* Hero container */

.hero__container {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 200px;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
}

.hero__paragraph {
    margin-bottom: 120px;
}

.cta {
    display: inline-block;
    background-color: var(--color-title);
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
    padding-top: 150px;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr;
    color: #fff;
    z-index: 1000;
    transition: opacity 1s ease;
}

header.hidden{
    opacity: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top,hsla(342.857, 58%, 26%), hsla(0, 0%, 0%, 0.868)), url('cofepr.jpg');
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 50%, 0 50%);
    z-index: -1;    
   
}

.inf{
    display: flex;
    justify-content: space-evenly;
}

.GO img{
    position: relative;
    width: 90%;
    height: 400px;
    margin-top: 350px;
}
/***********NAV************/
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    border: none;
}

nav{
    background-color: var(--secondary);
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;

}



.drop-down-menu .drop-down-button{
    font-size: 1.2rem;
    outline: none;
    color: var(--primary);
    padding: 1rem 1rem;
    background-color: inherit;
    font-family: Montserrat-light;
}

.drop-down-menu-content{
    display: none;
    position: absolute;
    background-color: var(--primary);
    min-width: 10rem;
    box-shadow: 0 .8rem 1rem 0 rgba(0,0,00.2);
    z-index: 1;
    font-family: Montserrat-light;
}

.drop-down-menu-content a{
    text-decoration: none;
    float: none;
    color: var(--secondary);
    padding: 1rem 1rem;
    display: block;
    font-family: Montserrat-light;
}

.drop-down-menu-content a:hover{
    background-color: var(--cuarto);
    color: var(--primary);
}

.drop-down-menu:hover .drop-down-menu-content{
    display: block;
}

nav ul{
    display: flex;
}

.drawer{
    font-size: 1rem;
    color: var(--primary);
    float: left;
    cursor: pointer;
    display: none;
    margin-left: 1rem;
    border: solid .1rem var(--primary);
    padding: .1rem;
    border-radius: .1rem;
}

#ckbox{
    display: none;
}
/************MAIN***********/

.fot{
    width: 100%;
    height: 375px;
    background-image: url(../PAEM/CN_7650.jpg); 
    background-repeat: no-repeat;
    background-size: cover ;
}

.fot2{

    width: 100%;
    height: 375px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 4rem;
    background-color: rgb(0 0 0 /80%);

   
}

a{
    color: var(--primary);
    text-decoration: none;
}

.text{
    width: 50%;
   display: flex;
   text-align: justify;
   justify-content: right;
   align-items: flex-end;
   font-size: large;
 
}


/* Footer */

.footer{
    background: linear-gradient(to top, hsla(342.857, 58%, 26%), hsla(0, 0%, 0%, 0.868));
}

.footer p{
    color: var(--primary);
}

.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__title, .footer__newsletter{
    color: #fff;
}


.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}

/*.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}*/

.footer__input{
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px ;
    background-color: var(--cuarto);
    border: none;
    font-size: 1rem;
    color: var(--primary);
    border-radius: 6px;
    cursor: pointer;
}

.footer__copy{
    --padding-container: 30px 0;
    text-align: center;
    color: var(--primary);
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
    margin-bottom: 10px;
}

.footer__img{
    width: 30px;
}

/********MEDIA QUERY*******/

@media screen and (min-width:320px){
    .fot h2{
        display: block;
        font-size: 30px;
    }
   .text{
    display: flex;
    justify-content: center;
    text-align: justify;
   }
   .GO img{
    display: none;
   }
   .menu-box{
    display: block;
   }
   nav{
      height: 40vh;
   }
   
   .hero__container{
    padding-top: 50vh;
   }
}

@media screen and (min-width:390px){
    .fot h2{
        display: block;
        font-size: 30px;
    }
   .text{
    display: flex;
    justify-content: center;
    text-align: justify;
   }
   .GO img{
    display: none;
   }
   .menu-box{
    display: block;
   }
   nav{
      height: 40vh;
   }
   
   .hero__container{
    padding-top: 50vh;
   }
}

@media screen and (min-width:412px){
    .fot h2{
        display: block;
        font-size: 30px;
    }
   .text{
    display: flex;
    justify-content: center;
    text-align: justify;
   }
   .GO img{
    display: none;
   }
   .menu-box{
    display: block;
   }
   nav{
      height: 40vh;
   }
   
   .hero__container{
    padding-top: 50vh;
   }
}



@media(min-width:768px){
    .fot h2{
        font-size: 4rem;
    }
    .menu-box{
        display: flex;
    }
    nav{
        height: 20vh;
    }
}

@media(min-width:1440px){
    .fot h2{
        font-size: 4rem;
    }
}