/* Navegation Menu */

body{
  margin: 0;
  padding: 0;
  
  background-image: url(../imgs/3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
  }

  
a {
  text-decoration: none;
  color: #383838;
}
  li{
  text-decoration: none;
  color: #ffffff;
  
  transition: color 0.3s ease;
  }

li:hover{
  color: rgb(255, 251, 131);
  }

#menuToggle{
  display: block;
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 100;
  
  -webkit-user-select: none;
  user-select: none;
  }

#menuToggle input{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0;
  z-index: 2;
  
  -webkit-touch-callout: none;
  }

#menuToggle span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: rgb(255, 250, 100);
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 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%;
  }

#menuToggle input:checked ~ span{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: rgb(255, 250, 100);
  }

#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
  }

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
  }

#menu{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #717171;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

#menu li{
  padding: 10px 0;
  font-size: 22px;
  }

#menuToggle input:checked ~ ul {
  transform: none;
  }

/* SlideShow1 */

body {
  text-align: center;
  }
  
#slideshow {
  overflow: hidden;
  height: 20vw;
  width: 20vw;
  margin-left: 10vw;
  margin-top: 20vw;
  filter: blur(2px);
  }
  
#slideshow:hover {
    filter: blur(0px);
  }
  
  
.slide-wrapper {
  width: 60vw;
  -webkit-animation: slide 5s ease infinite;
  }
  
.slide {
  float: left;
  height: 20vw;
  width: 20vw;
  }
  
.slide-photo {
  width: 20vw;
  }
  
  
@-webkit-keyframes slide {
  20% {margin-left: 0vw;}
  30% {margin-left: -20vw;}
  50% {margin-left: -20vw;}
  60% {margin-left: -40vw;}
  70% {margin-left: -40vw;}
  }

/* SlideShow2 */

#slideshow2 {
  overflow: hidden;
  height: 20vw;
  width: 20vw;
  margin-left: 40vw;
  margin-top: -27vw;
  filter: blur(2px);
  }

  #slideshow2:hover {
    filter: blur(0px);
  }

.slide-wrapper2 {
  width: 60vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide2 {
  float: left;
  height: 20vw;
  width: 20vw;
  }

.slide-photo2 {
  width: 20vw;
}

@-webkit-keyframes slide2 {
  20% {margin-left: 0vw;}
  30% {margin-left: -20vw;}
  50% {margin-left: -20vw;}
  60% {margin-left: -40vw;}
  70% {margin-left: -40vw;}
  }


/* SlideShow3 */

#slideshow3 {
  overflow: hidden;
  height: 20vw;
  width: 20vw;
  margin-left: 70vw;
  margin-top: -30vw;
  filter: blur(2px);
  }

.slide-wrapper3 {
  width: 60vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide3 {
  float: left;
  height: 20vw;
  width: 20vw;
  }

.slide-photo3 {
  width: 20vw;
  }

@-webkit-keyframes slide3 {
  20% {margin-left: 0vw;}
  30% {margin-left: -20vw;}
  50% {margin-left: -20vw;}
  60% {margin-left: -40vw;}
  70% {margin-left: -40vw;}
  }

  #slideshow3:hover {
    filter: blur(0px);
  }

/* ABOUT */

.about {
  margin-top: 30vw;
  font-size: 5vw;
  color: rgb(255, 251, 136);
}
.design {
  font-size: 1vw;
  color: rgb(255, 251, 136);
}

h2{
  font-size: 2vw;
  color: rgb(255, 251, 136);
}

.paginate {
  align-content: left;
  margin-left: 5vw;
  margin-right: 5vw;
}

#paginate {
  width:100%;
  border-style:solid;
  border-color:yellow;
  height:210px;
  }
  
  #box1 {
  float:left;
  margin-left:22vw;
  font-size: 1vw;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  }
  
  #box2 {
  float:right;
  }
  
  .bx {
  width:20vw;
  height:auto;
  text-align: left;
  color:rgb(0, 0, 0);
  }

  .aboutimg {
  min-width:20vw;
  height:auto;
  width: auto;
  height: auto;
  margin-left:-22vw;
  }
  
/* WORKS */

.child-page-listing {
  margin-top: 80vh;
  margin-left: 5vw;
  margin-right: 5vw;
}

img {
  width: 100%;
  height: auto;
}
h1 {
  margin-bottom: .5em;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1em;
  margin-top: 20vh;
}

.works {
  font-size: 5vw;
  font-family: "Lilita One";
  color: rgb(255, 251, 136);
}
.location-listing {
  position: relative;
}

.location-image {
  line-height: 0;
  overflow: hidden;
}

.location-image img {
  filter: blur(0px);
  transition: filter 0.3s ease-in;
  transform: scale(1.1);
}

.location-title {
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s;
  background: rgba(255, 247, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-listing:hover .location-title {
  opacity: 1;
}

.location-listing:hover .location-image img {
  filter: blur(2px);
}

/* responsive works */
@media (hover: none) { 
  .location-title {
    opacity: 1;
    z-index: -100;
  }
  .location-image img {
    filter: blur(2px);
    z-index: -100;
  }
}


/* CONTACTS */

.contacts {
  margin-top: 20vh;
  margin-bottom: 10vh;

}

.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/* RESPONSIVE */

@media only screen and (max-width: 1024px) {
  .about, .works {
    font-size: 10vw;
  }

  .about {
    margin-top: 30vh;
  }

  .works {
    margin-bottom: -10vh;
  }

  #box1 {
    font-size: 1.8vh;
    width: 40vw;
    margin-left: 5vw;
    margin-top: 8vh;
  }

  #box2 {
    margin-top: 8vh;
  }

  .aboutimage {
    width:50vw;
  } 

/* SlideShow1 */

body {
  text-align: center;
  }
  
#slideshow {
  overflow: hidden;
  height: 30vw;
  width: 30vw;
  margin-left: 35vw;
  margin-top: 20vw;
  filter: blur(2px);
  }
  
#slideshow:hover {
    filter: blur(0px);
  }
  
  
.slide-wrapper {
  width: 90vw;
  -webkit-animation: slide 5s ease infinite;
  }
  
.slide {
  float: left;
  height: 30vw;
  width: 30vw;
  }
  
.slide-photo {
  width: 30vw;
  }
  
  
@-webkit-keyframes slide {
  20% {margin-left: 0vw;}
  30% {margin-left: -30vw;}
  50% {margin-left: -30vw;}
  60% {margin-left: -60vw;}
  70% {margin-left: -60vw;}
  }

/* SlideShow2 */

#slideshow2 {
  overflow: hidden;
  height: 30vw;
  width: 30vw;
  margin-left: 35vw;
  margin-top: 10vw;
  filter: blur(2px);
  }

  #slideshow2:hover {
    filter: blur(0px);
  }

.slide-wrapper2 {
  width: 90vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide2 {
  float: left;
  height: 30vw;
  width: 30vw;
  }

.slide-photo2 {
  width: 30vw;
}

@-webkit-keyframes slide2 {
  20% {margin-left: 0vw;}
  30% {margin-left: -30vw;}
  50% {margin-left: -30vw;}
  60% {margin-left: -60vw;}
  70% {margin-left: -60vw;}
  }


/* SlideShow3 */

#slideshow3 {
  overflow: hidden;
  height: 30vw;
  width: 30vw;
  margin-left: 35vw;
  margin-top: 5vw;
  filter: blur(2px);
  }

.slide-wrapper3 {
  width: 90vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide3 {
  float: left;
  height: 30vw;
  width: 30vw;
  }

.slide-photo3 {
  width: 30vw;
  }

@-webkit-keyframes slide3 {
  20% {margin-left: 0vw;}
  30% {margin-left: -30vw;}
  50% {margin-left: -30vw;}
  60% {margin-left: -60vw;}
  70% {margin-left: -60vw;}
  }

  #slideshow3:hover {
    filter: blur(0px);
  }
}

@media only screen and (max-width: 740px){
  #box1{
    font-size: 1vh;
  }
}

@media only screen and (max-width: 430px) {
  
  #box1 {
    font-size: 1.5vh;
    width: auto;
    height: auto;
    margin-left: 2vw;
    margin-top: 8vh;
  }

  #box2 {
    margin-top: 9vh;
    margin-left: 19vw;
    float: left;
    }

  .aboutimage {
    width:20vw;
    float: left;
  } 

  .works {
    margin-top: 120vh;
    margin-bottom: 20vh;
  }

  /* SlideShow1 */

body {
  text-align: center;
  }
  
#slideshow {
  overflow: hidden;
  height: 50vw;
  width: 50vw;
  margin-left: 25vw;
  margin-top: 30vw;
  filter: blur(2px);
  }
  
#slideshow:hover {
    filter: blur(0px);
  }
  
  
.slide-wrapper {
  width: 150vw;
  -webkit-animation: slide 5s ease infinite;
  }
  
.slide {
  float: left;
  height: 50vw;
  width: 50vw;
  }
  
.slide-photo {
  width: 50vw;
  }
  
  
@-webkit-keyframes slide {
  20% {margin-left: 0vw;}
  30% {margin-left: -50vw;}
  50% {margin-left: -50vw;}
  60% {margin-left: -100vw;}
  70% {margin-left: -100vw;}
  }

/* SlideShow2 */

#slideshow2 {
  overflow: hidden;
  height: 50vw;
  width: 50vw;
  margin-left: 25vw;
  margin-top: 10vw;
  filter: blur(2px);
  }

  #slideshow2:hover {
    filter: blur(0px);
  }

.slide-wrapper2 {
  width: 150vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide2 {
  float: left;
  height: 50vw;
  width: 50vw;
  }

.slide-photo2 {
  width: 50vw;
}

@-webkit-keyframes slide2 {
  20% {margin-left: 0vw;}
  30% {margin-left: -50vw;}
  50% {margin-left: -50vw;}
  60% {margin-left: -100vw;}
  70% {margin-left: -100vw;}
  }


/* SlideShow3 */

#slideshow3 {
  overflow: hidden;
  height: 50vw;
  width: 50vw;
  margin-left: 25vw;
  margin-top: 5vw;
  filter: blur(2px);
  }

.slide-wrapper3 {
  width: 150vw;
  -webkit-animation: slide 5s ease infinite;
  }

.slide3 {
  float: left;
  height: 50vw;
  width: 50vw;
  }

.slide-photo3 {
  width: 50vw;
  }

@-webkit-keyframes slide3 {
  20% {margin-left: 0vw;}
  30% {margin-left: -50vw;}
  50% {margin-left: -50vw;}
  60% {margin-left: -100vw;}
  70% {margin-left: -100vw;}
  }

  #slideshow3:hover {
    filter: blur(0px);
  }
}