/*
==================
WORK
==================
*/

:root {
  --primary-color: rgba(239, 82, 100, 1);
  --overlay-color: rgba(114, 190, 68, 0.95);
  --third-color: rgba(189, 64, 150);
  --menu-speed: 0.75s;
}

* {
  box-sizing: border-box;
}

/*
==============
Custom Styles
==============
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0; 
}

/*
==============
Navigation
==============
*/

/* Logo Index */

.logo-img {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 25;
  display: flex;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.logo-img:hover {
  transform: rotateY(180deg);
}

/* Hamburger Menu */

.menu-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 15;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  width: 40px;
  height: 40px;
  padding: 7px;
  background: #EF5264;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 15;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 100vh;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 25px;
  padding: 6px;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li > a:hover{
  color: #EF5264;
}

 .social-media-menu a .fa-facebook,
 .social-media-menu a .fa-instagram,
 .social-media-menu a .fa-twitter,
 .social-media-menu a .fa-linkedin {
  color: white;
  transition: 0.4s;
}

  .social-media-menu ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
}

 .social-media-menu ul li {
  font-size: 20px;
  padding: 16px;
  transition:0.4s;
}

.social-media-menu ul li:hover a .fa-facebook{
  color: #3b5998;
}
  
.social-media-menu ul li:hover a .fa-instagram{
  color: #e4405f;
}

.social-media-menu ul li:hover a .fa-twitter{
  color: #00aced;
}
  
.social-media-menu ul li:hover a .fa-linkedin{
  color: #2867B2;
}

/******** Navigation ********/

#navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #eaeaea;
  height: 110px;
  align-content: normal;
}

.title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  justify-content: center;
  color: var(--primary-color);
  letter-spacing: 2px;
} 

.title h1 {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
}

.secundary-nav {
  font-family: "Noto Sans", Arial, sans-serif;
  padding: 30px;
  font-size: 15px;
  font-weight: 0;
  word-spacing: 30px;
  text-align: center;
  cursor:pointer;
  text-decoration: none;
}

.tab img {
  position: relative;
  top: 11px;
  left: -10px;
  width: 3%;
}

.tab2 img {
  position: relative;
  top: 11px;
  left: -10px;
  width: 3%;
}

.secundary-nav a:link {
  text-decoration: none;
  color: #EF5264;
  padding: 25px 20px 16px 20px;
  border-style: solid;
  border-color: #EF5264;
  border-width: 2px;
  border-radius: 80px;
}

.secundary-nav a:hover{
  text-decoration: none;
  color: #fff;
  background-color: #EF5264;
  transition: all .4s ease-in-out;
}

.secundary-nav a:visited {
  color: #fff;
  background-color: rgba(114, 190, 68, 0.95);
}

.secundary-nav a:active {
  color: #fff;
  background-color: rgba(114, 190, 68, 0.95);
}

.hero-image {

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  position: relative;
  padding-top: 100px;
  }
  
  .description {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 85px;
  }
  
  .description-right {
    font-size: 20px;
    font-family: "Noto Sans", Arial, sans-serif;
    color: #000000;
    width: 650px;
    font-weight: normal;
  }
  
  .description-left-juicyholic {
  font-size: 18px;
  font-family: "Noto Sans", Arial, sans-serif;
  color:#292929;
}

.description-left-juicyholic ul {
  list-style-type: none;
}

.description-left-juicyholic h5{
  font-family: "Kallisto Light", Helvetica, Arial, sans-serif;
  color: #EF5264;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  }
  
 .work-tagline {
     font-size: 25px;
     padding: 20px 0px;
 }


container{
    display: flex;
    flex-direction: column;
    background-color:white;
}


h1 {
  font-size: 30px;
  font-family: "Noto Sans", Arial, sans-serif;
  color: #292929;
  margin:10px 0px 0px 0px;
  text-align: left;
}


h2 {
  font-family: "Noto Sans", Arial, sans-serif;
  color: #292929;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: normal;
  font-size: 18px;
}


p {
  font-size: 25px;
  font-family: "Noto Sans", Arial, sans-serif;
  color: #292929;
  margin-top:10px;
}

.container {
  position: relative;
  overflow: hidden;
  width: 100%;
  
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.complete-frame {
  margin: 30px 85px;
}

.frame-overview {
  margin: 30px 85px;
}

.frame-overview-myjournal {
  margin: 30px 85px;
}

.frame-overview-banner {
  padding:90px 0px 0px 0px;
}

.frame2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.responsive-frame {
  display: flex;
  width: 100%;
  height: auto;
}

.responsive-frame2 {
  display: flex;
  width: 100%;
  height: auto;
}

.responsive-frame-myjournal {
  display: flex;
  width: 100%;
  height: auto;
}

.bocetos {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.previous-ghg {
  font-size: 25px;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  color: #EF5264;
  padding: 50px 50px 80px 50px;
  text-decoration: none;
  letter-spacing: 3px;
}

.next-ghg {
  font-size: 25px;
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  color: #EF5264;
  padding: 50px 50px 80px 50px;
  text-decoration: none;
  letter-spacing: 3px;
}

.previous-ghg:hover {
    color: rgba(114, 190, 68, 0.95);
}

.next-ghg:hover {
    color: rgba(114, 190, 68, 0.95);
}

.flechas {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0px 40px;
    align-items: center;
}

.accordion-work {
    color: var(--overlay-color);
    cursor: pointer;
    padding: 0px;
    width: 100%;
    border: none;
    text-align: left;
    font-weight: bolder;
    outline: none;
    font-size: 15px;
    transition: color 0.4s;
}

.accordion-work:hover {
  color: var(--primary-color); 
  transition: max-height 0.6s ease;
}

.accordion-work:after {
  content: ' \002B'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  color: var(--overlay-color);
  margin-left: 15px;
}

.active .accordion-work:after {
  color: var(--primary-color);
  content: ' \002D'; /* Unicode character for "minus" sign (-) */
}

.panel-work {
  padding: 0;
  display: none;
  background-color: white;
  overflow: hidden;
}


/* Footer */

footer {
  background: #EF5264;
  margin:0;
  color: #eee;
  display: flex;
  padding: 20px;
}

footer a {
  font-family: "Noto Sans", Arial, sans-serif;
  text-decoration: none;
  color:#fff;
}

footer a:hover{
  color:#72BE44;
}

footer #left-footer {
  flex: 1;
  border-right: 1px #EF5264;
  padding-left: 92px;
}

footer #left-footer h3 {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: white;
  letter-spacing: 2px;
}

footer #left-footer ul{
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

footer #right-footer {
  flex: 2;
  padding: 10px;
  text-align: center;
  font-size: 15px;
}

footer #right-footer h3 {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: white;
  letter-spacing: 2px;
}

footer #social-media-footer a .fa-facebook,
footer #social-media-footer a .fa-instagram,
footer #social-media-footer a .fa-twitter,
footer #social-media-footer a .fa-linkedin {
  color: white;
  transition: 0.4s;
}

footer #social-media-footer ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
}

footer #social-media-footer ul li {
  font-size: 25px;
  padding: 16px;
  transition:0.4s;
}

footer #social-media-footer ul li:hover a .fa-facebook{
  color: #3b5998;
}
  
footer #social-media-footer ul li:hover a .fa-instagram{
  color: #e4405f;
}

footer #social-media-footer ul li:hover a .fa-twitter{
  color: #00aced;
}
  
footer #social-media-footer ul li:hover a .fa-linkedin{
  color: #2867B2;
}

.bottom-footer{
font-family: "Noto Sans", Arial, sans-serif;
background-color: var(--primary-color);
height: 20%;
width: 100%;
padding: 5px;
text-align: center;
color: #fff;
letter-spacing: 1px;
}

/******** Privacy Policy *********/

.policy {
  font-family: "Helvetica", Arial, sans-serif;
  color: #000000;
  font-size: 20px; 
  padding: 0px 100px 60px 100px;
  font-weight: lighter;
}

.policy h2 {
  font-size: 25px;
  text-align: left;
  margin-left: 0px;
  color: #292929;
  margin-bottom: 0px;
}

.privacy {
   text-decoration: underline;
   color: #fff;
   font-weight: bold;
}

.privacy:hover {
  color: #892F6B;
  font-weight: bold;
}


.project-process-vinoteca  {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: "Helvetica", Arial, sans-serif;
  background-color: #d6c277;
  color: #87232f;
  font-size: 20px;
  list-style-type: none;
}


/* --------------------------------- */


/*==============
  Media Query
==============*/


/* ============== Mobile ============== */

   


@media screen and (max-width: 320px) {
    
        .complete-frame {
        margin: 15px 15px;
    }
    
    h1 {
      font-size: 20px;  
    }
    
    h2 {
        font-size: 12px;
    }
       .frame-overview {
    margin: 10px 15px;
 }
 
        .frame-overview-myjornal {
    margin: 10px 15px;
 }
 
 .responsive-frame-myjournal {
  display: flex;
  width: 100%;
  height: auto;
}
 
 p {
     font-size: 18px;
 }
 
  .work-tagline {
      font-size: 15px;
  }
 
 /*footer*/
  footer {
      flex-direction: column;
      text-align: center;
      padding: 0px;
  }

  footer #left-footer {
      flex: 1;
      border-right: 0;
      padding-left: 0;
  }
  
    footer #left-footer h3 {
      margin-top: 40px;
  }

  footer #right-footer {
      background: #EF5264;
      color: white;
  }

  footer #right-footer a{
      color: white;
  }

  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-instagram {
      color: white;
      transition:0.4s;
  }
    
   .previous-ghg {
      padding: 30px 0px 40px 0px;
      text-align: left;
      font-size: 12px;
  }
  
  .next-ghg {
      padding: 30px 0px 40px 0px;
      text-align: right;
      font-size: 12px;
  }
  
  .flechas {
    margin: 0px 10px;  
  }
  

  .description {
      margin: 20px 20px 25px 20px;
  }
  
  .frame-overview-banner {
  padding:80px 0px 0px 0px;
  }
  
   .desciption-left-juicyholic img{
    width: 40%;  
  }
   
    
}


@media screen and (min-width: 321px) and (max-width: 767px) {
        .complete-frame {
        margin: 15px 15px;
    }
    
     h1 {
      font-size: 28px;  
    }
    
      h2 {
        font-size: 15px;
    }
    
    p {
  font-size: 21px;
    }
    
    .work-tagline {
        font-size: 20px;
    }
    
    .frame-overview {
    margin: 10px 15px;
 }
 
    .frame-overview-myjournal {
    margin: 10px 15px;
 }
 
 .responsive-frame-myjournal {
  display: flex;
  width: 100%;
  height: auto;
}

 /*footer*/
  footer {
      flex-direction: column;
      text-align: center;
      padding: 0px;
  }

  footer #left-footer {
      flex: 1;
      border-right: 0;
      padding-left: 0;
  }
  
    footer #left-footer h3 {
      margin-top: 40px;
  }

  footer #right-footer {
      background: #EF5264;
      color: white;
  }

  footer #right-footer a{
      color: white;
  }

  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-instagram {
      color: white;
      transition:0.4s;
  }
  
  .previous-ghg {
      padding: 30px 0px 40px 0px;
      text-align: left;
      font-size: 12px;
  }
  
  .next-ghg {
      padding: 30px 0px 40px 0px;
      text-align: right;
      font-size: 12px;
  }
  
  .flechas {
    margin: 0px 20px;  
  }
  
  .description {
      margin: 25px 40px 35px 40px;
  }
  
  .frame-overview-banner {
  padding:100px 0px 0px 0px;
  }
  
  .desciption-left-juicyholic img{
    width: 40%;  
  }
  
    .accordion-work {
        font-size: 14px;
    }
    
    
}

/* ============== Tablet ============== */

@media screen and (min-width: 768px) and (max-width: 1025px) {
    
    h2 {
        font-size: 20px;
    }
        .complete-frame {
        margin: 20px 20px;
    }
    
        .frame-overview {
        margin: 20px 20px;
    }
    
         .frame-overview-myjoyrnal {
        margin: 20px 20px;
    }
    
 .responsive-frame-myjournal {
  display: flex;
  width: 100%;
  height: auto;
}
    
    .previous-ghg {
      font-size: 18px;
      text-align: left;
      padding: 50px 0px 60px 0px;
  }
  
  .next-ghg {
      font-size: 18px;
      text-align: right;
      padding: 50px 0px 60px 0px;
  }
  
    .accordion-work {
        font-size: 15px;
    }
    
         .description {
      margin: 30px 85px 45px 85px;
  }

}
 
/*============== Laptop ==============*/

@media screen and (min-width: 1026px) and (max-width: 1400px)  {
    
     h2 {
        font-size: 25px;
    }

        .complete-frame {
        margin: 20px 85px;
    }
        container{
        margin: 0px;
    }
    
     .accordion-work {
        font-size: 15px;
    }
    
        .responsive-frame-myjournal {
    display: flex;
    width: 40%;
    height: auto;
  }
    
    
}
 
@media screen and (min-width: 1401px) and (max-width: 1656px) {
          .complete-frame {
        margin: 20px 85px;
    }
    
     .accordion-work {
        font-size: 20px;
    }
    
        .responsive-frame-myjournal {
    display: flex;
    width: 40%;
    height: auto;
  }
}

/*============== Desktop ==============*/

@media screen and (min-width: 1657px) and (max-width: 2143px) {
    
        .complete-frame {
        margin: 20px 85px;
    }
    
    h1 {
        font-size: 50px;
    }
    
    .work-tagline {
        font-size: 25px;
    }
    
    p {
        font-size: 25px;
    }
    
    .accordion-work {
        font-size: 20px;
    }
    .previous-ghg {
     font-size: 30px;
    }
  
    .next-ghg {
      font-size: 30px;
    }
    
     .description-right {
    width: 880px;
  }
  
      .responsive-frame-myjournal {
    display: flex;
    width: 40%;
    height: auto;
  }
 
}

@media screen and (min-width: 2144px){
    
         .complete-frame {
        margin: 20px 85px;
    }
    
    h1 {
        font-size: 50px;
    }
    
    .work-tagline {
        font-size: 25px;
    }
    
    p {
        font-size: 25px;
    }
    
    .accordion-work {
        font-size: 25px;
    }
    
        .previous-ghg {
      font-size: 30px;
  }
  
  .next-ghg {
      font-size: 30px;
  }
  
  .description-right {
    width: 890px;
  }
  
    .frame-overview-myjoyrnal {
    margin: 20px 0px;
  }
    
    .responsive-frame-myjournal {
    display: flex;
    width: 40%;
    height: auto;
  }
  
}




