@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Great+Vibes');

* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body,html{
  margin: 0;
  padding: 0;
}

    h1, h2, h3, p{
       color: #512b1c;   
     }


    h1{
        font-family: Garamond;
        display: block;
    }

    h2{
        font-family: 'Great Vibes', cursive;
        display: block;
        margin-bottom: 30px;
    }

    h3{
    font-family: 'open sans';
    font-size: 20px;
    font-weight: 400;
    }

    p{
    font-family: 'open sans';
    font-size: 20px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                             Wrapper Style 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

.wrapper {
  /* The height needs to be set to a fixed value for the effect to work.
   * 100vh is the full height of the viewport. */
  height: 100vh;
  /* The scaling of the images would add a horizontal scrollbar, so disable x overflow. overflow-x: hidden;*/
  overflow-x: hidden;
  /* Enable scrolling on the page. */
  overflow-y: auto;
  /* Set the perspective to 2px. This is essentailly the simulated distance from the viewport to transformed objects.*/
  perspective: 2px;

}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                             Header Style 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

header{
    margin-top: 0;
    width: 100%;
    height: 60px;
    background-color: #512b1c;
    position: fixed;
    z-index: 20000;
    justify-content: space-between;
}

    header a{
        text-decoration: none;
        color: #f3d09b;
        transition: color 0.3s ease;
    }

        a:hover{
            color: white;
            }

    #menuToggle{
      display: block;
      position: relative;
      top: 20px;
      left: 30px;
      z-index: 1;
      -webkit-user-select: none;
      user-select: none;
    }

    #menuToggle input{
      display: block;
      width: 30px;
      height: 32px;
      position: absolute;
      top: -7px;
      left: -5px;

      cursor: pointer;

      opacity: 0; /* hide this */
      z-index: 2; /* and place it over the hamburger */

      -webkit-touch-callout: none;
    }

    #menuToggle span{
          display: block;
          width: 33px;
          height: 4px;
          margin-bottom: 4px;
          position: relative;
          background:  #f3d09b;
          border-radius: 3px;
          z-index: 1;
          transform-origin: 4px 0px;
          transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                      background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                      opacity 0.55s ease;
        }

    #menuToggle span:first-child{
      transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2){
      transform-origin: 0% 100%;
    }

    /* 
     * Transform all the slices of hamburger
     * into a crossmark.
     */
    #menuToggle input:checked ~ span{
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #f3d09b;
        }

/*
 * But let's hide the middle one.
 */
    #menuToggle input:checked ~ span:nth-last-child(3){
      opacity: 0;
      transform: rotate(0deg) scale(0.2, 0.2);
    }

    /*
     *the last one should go the other direction
     */
    #menuToggle input:checked ~ span:nth-last-child(2)
    {
      transform: rotate(-45deg) translate(0, -1px);
    }

    /*
     * Make this absolute positioned
     * at the top left of the screen
     */
  #menu{
      position: absolute;
      width:90%;
      height: 800px;
      margin: 16px 0 0 -30px;
      padding: 0px;
      opacity: 2,5;
      background: #512b1c;
      list-style-type: none;
      -webkit-font-smoothing: antialiased;
      /* to stop flickering of text in safari */

      transform-origin: 0% 0%;
      transform: translate(-100%, 0);

      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

    }
    #menu li{
        width: 100%;     
        padding: 0 0 0 20px;
        font-size: 38px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

 #menu li a{
     font-family: 'open sans';
     font-size: 15px;
     font-weight: 400;
padding-top: -10px;
}

    /*
     * And let's slide it in from the left
     */
    #menuToggle input:checked ~ ul
    {
      transform: none;
    }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                             Social Header  
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

    #redes_sociales{
        z-index: 10000;
        float:right;
        width: 288px;
        height: 30px;
        padding-right: 30px;
        margin-top: -10px;
}

        #redes_sociales a{
                display:inline;
                float:right;
                color: #f3d09b;
                font-size: 30px;
                text-decoration:none;
                padding-right:10px;
                list-style-type:none;
                position: relative;
                
             }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                             Section 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
.section {
      /* Needed for children to be absolutely positioned relative to the parent. */
     position: relative;
      /* The height of the container. Must be set, but it doesn't really matter what the value is. */
      height: 100vh;

      /* For text formatting. */
      display: block;
      align-items: center;
      justify-content: center;
      color: white;
      padding: 0;
      margin: 0;
    }

        .parallax::after {
          content: " ";
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
            
  /* Move the pseudo-element back away from the camera,
   * then scale it back up to fill the viewport.
   * Because the pseudo-element is further away, it appears to move more slowly, like in real life. */
          transform: none;
  /* Force the background image to fill the whole element. */
          background-size: 100%;
  /* Keep the image from overlapping sibling elements. */ 
          z-index: -1;
        }

/* The styling for the static div. */
            .static {
                width: 100%;    
                background: #fff;
                height:800px;
            }


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                       Parallax bg1 Banner
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
.bg1::after {
   width: 100%;
    display: block;
     margin: 0 auto;
    }


    .banner_contenedor {
				  justify-content: center;
				  align-items: center;
				  position: relative;
				  width: 80%;
				  text-align: center;
                  display: block;
                  margin-top:50px;
                  padding: 0;
        
			}

                #myVideo {
                    position: fixed;
                    right: 0;
                    bottom: 0;
                    height: 800px;
                    min-width: 100%; 
                    min-height: 100%;
                   margin: 0 auto;
                   background-size: cover;
                    background-position: center;
                }

                .content {
                    position: fixed;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.5);
                    color: #f1f1f1;
                    min-width: 100%; 
                    min-height: 100%;
                    padding: 20px;
                    margin: 0;
                    
                }

h1{
    font-size: 25pt;
    margin: 0 auto;
}
h2{
    font-size: 40pt;
    margin: 0 auto 30px auto;
}

    .logo{
       max-width: 100%;
       margin:140px auto 30px auto;
       position: relative;
       display: block;
       resize: both;
            }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                        Section Audiovisual
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
            #audiovisual{
                background-color: white;
                display:block;
                width: 100%;
                height: auto;
                margin:0 auto;
                padding:0;
                justify-content: center;
                align-content: center;
                align-items: center;
            }

                        .galeria{
                            width: 100%;
                            display: block;
                            color: #512b1c;
                            margin:60px auto;
                            text-align: center;
                            justify-content: center; 
                            max-width: 960px;
                            align-items: center;
                        }
.galeria h1{
margin-bottom: 20px;
}

.galeria p{
    font-color: #512b1c;
    font-size: 16pt;
    font-family: open sans;
    margin: 30px;
}

.tour_text{
    margin: 20px auto 90px auto;  
}
.tour_text li{
    padding: 30px;    
    font-weight: 500;
    font-size: 20pt;
    display: inline;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                                Footer
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

.footer {
        background-image: url(../img/paisaje.png);
        background-repeat: no-repeat;
        background-size: cover;
        color: #f3d09b;
		text-align: center;
        margin: 0 auto;
        display: inline-block;
        width: 100%;
        position: relative;
    	}

footer .contenedor{
    width: 100%;
    margin: 0 auto;
    
}
        .icon-chevron-with-circle-up{
    margin: 0 30px 30px;
    float: right;
    font-size: 40px;
    text-decoration: none;
    list-style-type:none;
}
        .footer a {
			color: #dd9933;
			text-decoration: none;
            font-size: 16px;
		}

        .footer li {
            font-size: 20px;
			display: inline;
			text-decoration: none;

		}

			.footer a:hover {
				color: #eee;
				text-decoration: underline;
			}
        
        .logo_upala img{
            position:relative;
            display:block;
            margin: 30px;
        }





/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                                Footer Menu
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
.foot_menu{
    margin: 30px;
}
.foot_menu ul{
    position: relative;
    display: inline;
    text-align: center;
    font-family: open sans;
}
 



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                                Footer Social
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
    #redes_soc{
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

        #redes_soc a{
                display:inline;
                color: #f3d09b;
                font-size: 30px;
                text-decoration:none;
                padding-right:10px;
                list-style-type:none;
                position: relative;
            }

                
         .logo_code{
            margin-right: 30px;
            float: right;  
            position:relative;
            display: block;
            max-width: 100%;
        }

        .copy_right p{
            margin-top: 100px;
            position: relative;
            color: #f3d09b;
            display: block;
            font-size: 14px;
		}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                                Responsive Style
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

@media(min-width:320px) {
    #menu{
        width: 90%;
    }
        #menu li{
        width: 100%;
    }
    
    .logo{
        margin-top:200px;
    }

.tour_text li{
    display: block;
    padding: 10px;
}
}

@media(min-width:480px) {
.tour_text li{
    display: inline;
}

 }
@media(min-width:480px) {
        #menu{
        width: 360px;
    }
            #menu li{
        width: 360px;
    }
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
                               End Responsive Style
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */