@font-face {
  src: url('Oswald.ttf');
  font-family: Oswald;
}
:root{
  --primary : #00B2B1;
  --danger : #DE2929;
  --gray-topp : #414142;
  --celeste : #E1F8F7;
}
html {
  scroll-behavior: smooth;
}
body{
  margin: 0;
  padding: 0;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
  overflow-x: hidden;
}

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

a:hover{ color: tomato; }
.logo > img{
  width: 200px;
  height: auto;
  margin-left: 50px;
  z-index: 300;
}
.letters{
  font-family: Oswald;
  color: white;
  font-weight: 700;
}
.letters > #a{
  position:absolute;
  top: 0;
  right: 40%;
  font-size: 100px;
  opacity: 0.5;
  z-index: 0;
}
.letters > #b{
  position:absolute;
  bottom: 20%;
  left: 10%;
  font-size: 100px;
  opacity: 0.5;
}
.letters > #c{
  transform: rotate(-90deg);
  position:absolute;
  top: 35%;
  right: 0%;
  font-size: 80px;
  opacity: 0.7;
}
.letters > #d{
  transform: rotate(-90deg);
  position:absolute;
  bottom: 40%;
  right: -5%;
  font-size: 80px;
  opacity: 0.7;
}
#menuToggle{
    margin-top: 20px;
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
  -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: var(--primary);
  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: #232323;
}

/*
* 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);
}

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

/*
* Make this absolute positioned
* at the top left of the screen
*/
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -50px;

  background: #ededed;
  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: scale(1.0, 1.0);
  opacity: 1;
}
#home{
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(4,4,4,0.46682422969187676) 43%, rgba(0,212,255,0) 100%), url('/assets/img/back.jpg');
  height: 85vh;
  background-size: cover;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  z-index: 300;
}
body{
  background: var( --primary );
}
.item{
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Oswald;
  font-size: 20px;
  font-weight: 200;
}
.selected{
  border: 1px solid white;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 25px;
}

.item:hover{
  text-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
}
#about{
  background: url( '/assets/img/people.jpg');
  background-size: cover;
  height: 100vh;
}
.rectangular-info{
  height: 60vh;
  width: 100px;
  background: var( --primary );
  position:absolute;
  right: 10vh;
  margin-top: 10vw;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.rectangular-info > span{
  transform: rotate(90deg);
  transform-origin: top left;
  width: 400px;
  position: absolute;
  top: 30px;
  left: 80px;
  color: white;
  font-family: Oswald;
  font-size: 30px;
}
.card-complete{
  height: 60vh;
  margin-top: 10vw;
  width: 60vw;
  position: absolute;
  background: white;
  right: calc( 10vh + 80px ) ;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
}
.info{
  color: black;
  margin-left: 30vw;
  margin-right: 50px;
}
.btn-contacto{
  margin-top: 80px;
  border-radius: 40px;
  color: var( --danger ) !important;
}
.btn-contacto:hover{
  color: white !important;
  background: var( --danger ) !important;
}
#services{
  background: white;
  height: 700px;
}
.title{
  text-transform: uppercase;
  color: black;
  font-family: Oswald;
  font-size: 40px;
  font-weight: 700;
  margin-left: 200px;
  padding-top: 50px;
  display: flex;
  justify-content:flex-start;
  align-items: center;
}
.circle{
  color: white !important;
  background: var( --primary );
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
}
.services-card{
  margin: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.card-item{
  margin-top: 80px;
  width: calc( (100vw -  (100vw * 0.2))/3 );
  height: 250px;
  color: white;
  background: var(--primary);
  border-radius: 10px;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Oswald;
}
.card-item > ion-icon {
  zoom: 4;
}
.card-item:hover{
  background: rgba(0, 0, 0, 0);
  border: 5px solid var(--primary);
}
.card-item:hover > *{
  color: var(--primary);
}
#data{
  background: white;
  height: 600px;
}
.content-data{
  margin-top: 50px;
  height: 300px;
  width: 100vw;
  background: var( --gray-topp );
  position: absolute;
  z-index: 0;
}

.content-data  > h3 {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  font-size:  50px;
  margin-left: 150px;
  margin-top: 20px;
  font-family: Oswald;

}
.card-item-data{
  width: 200px;
  margin-right: 60px;
  height: 250px;
  background: white;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  border-radius: 20px;
  padding: 10px;
}
.card-data{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.card-item-data > h3 {
  font-family: Oswald;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
}

.card-item-data > h3 > span{
  font-size: 50px !important;
}

.card-item-data > ion-icon{
  zoom: 4;
}
#comments{
  background: white;
  height: 500px;
}
.content-commit{
  margin-top: 50px;
  height: 300px;
  width: 100vw;
  background: url('/assets/img/hands.jpg');
  background-size: cover;
   background-position: center;
  position: absolute;
  z-index: 0;
}

.content-commit  > h3 {
  text-transform: uppercase;
  color: black;
  font-weight: 700;
  font-size:  50px;
  margin-left: 150px;
  margin-top: 20px;
  font-family: Oswald;

}
.card-item-comments{
  width: 320px;
  margin-right: 60px;
  height: 240px;
  background: white;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  border-radius: 20px;
  padding: 10px;
}
.card-item-comments > p {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 200;
  color: black;
    padding-left: 10px;
}
.card-item-comments > h4 {
  font-weight: 600;
  color: black;
  font-family: Oswald;
  padding-right: 20px;
}
#contact{
  background: white;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items:center;
}
.react{
  border-radius: 35px;
  width: 60vw;
  height: 574px;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  position: absolute;

}
.rect-blue{
  transform: rotate(-25deg);
  background: var( --primary );
}
.rect-white{
  background: white;
}
.rect-white > h2{
  text-transform: uppercase;
  color: black;
  font-size: 30px;
  font-family: Oswald;
  margin-top: 40px;
  margin-right: 10vw;
}
.form-contacto{
  margin-top: calc( 40px + 30px + 50px );
  margin-left: calc( 100vw * 0.1 );
  margin-right: calc( 100vw * 0.1 );
}
.form-contacto > div{
  margin-bottom: 20px;

}
::placeholder {
  color: var( --primary );
  font-family: Oswald;
}
.form-contacto > div > input, .form-contacto > div > textarea{
  background: var( --celeste );
  border-radius: 0px !important;
  border: none !important;
}
.btn-enviar{
  margin-top: 20px;
  border-radius: 40px;
  color: var( --danger ) !important;
  padding-left: 70px;
  padding-right: 70px;
}
.btn-enviar:hover{
  color: white !important;
  background: var( --danger ) !important;
}

.phrase{
    font-family: Oswald;
    width: 400px;
    color: #f8f9fa;
    margin-left: 50px;
    margin-top: 60px;
    font-weight: 300;
    font-size: 25px;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
    z-index: 1000;
    width: 80px;
    height: 80px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top ion-icon {
    color: var( --primary );
    margin: 0;
    position: relative;
    left: 3.5px;
    top: 6px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    zoom: 3;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover ion-icon {
    color: #fff;
    top: 5px;
}
#video{
  height: auto;
  width: 600px;
  position: absolute;
  display: inline;
  top:130vh;
  left: calc( 10vw - ( 10vw * 0.2 ) );
}
#video > *{
  z-index: 800;
}
#videoc{
  background: white;
  /* height: 800px; */
}
.miniatura > img{
  border-radius: 20px;
  box-shadow: 3px 10px 25px -10px rgba(0,0,0,0.75);
  cursor: pointer;
}
.miniatura:hover{
   transform: translateY(-10px);
}
#carousell{
    background: white;
}
.slick-slide  > div{
    margin-left: 10px;
     margin-right: 10px;
}

@media (min-width: 320px) and (max-width: 480px) {
    #about{
        height: 120vh;
    }

  .content-commit > h3{
    margin-left: 0px;
  }
  .letters{
    display: none ;
  }
  .logo > img{
    width: 100px;
  }
  #menuToggle{
    margin-top: 0px;
  }
  .title{
    margin-left: 10px;
    font-size: 30px;
  }

  .services-card{
    flex-direction: column;
  }
  .card-item{
    margin-top: 40px;
    width: calc( (100vw -  (100vw * 0.2)) );
    height: 250px;
  }
  #services{
    height: 160vh;
  }
  .content-data > h3{
    margin-left: 20px;
  }
  .card-data{
    flex-direction: column;
 
  }
  #data{
        height: 140vh;
  }
  .card-item-data{
    width: 250px;
    margin-right: 0px;
    margin-top: 10px;

  }

  .card-item-comments{
      margin-right: 0px;
      margin-top: 20px;
      padding: 0px;

  }
  #comments{
    background: white;
    height: 130vh;
  }
  .form-contacto{
    margin-top: calc( 40px + 30px + 50px );
    margin-left: 0px;
    margin-right: 0px;
  }
  .react{
    width: 80vw;
    height: 90vh;
  }
  .rect-blue{
    transform: rotate(-6deg);
  }
  #video{
    width: 300px;
    top: 110vh;
    left: calc( (100vw - 300px)/2 );
  }
  .info{
    margin-left: 10vw;
    margin-right: 10px;
  }
  .card-complete {
    height: 60vh;
    margin-top: 80vw;
    right: calc( 10px + 80px ) ;
      width: 75vw;
  }
  .rectangular-info{
      margin-top: 80vw;
      right: 10px;
          height: 60vh;
  }
  .fb-class{
          display: none;
  }
  .phrase{
       font-family: Oswald;
    width: 200px;
    color: #f8f9fa;
    margin-left: 20px;
   margin-top: 150px;
    font-weight: 300;
    font-size: 25px;
  }
  #home{
    background-position: center;
  }

}
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) 
{
    #about{
        height: 200vh;
    }
    
  .content-commit > h3{
    margin-left: 0px;
  }
  .letters{
    display: none ;
  }
  .logo > img{
    width: 100px;
  }
  #menuToggle{
    margin-top: 0px;
  }
  .title{
    margin-left: 10px;
    font-size: 30px;
  }

  .services-card{
    flex-direction: column;
  }
  .card-item{
    margin-top: 40px;
    width: calc( (100vw -  (100vw * 0.2)) );
    height: 250px;
  }
  #services{
    height: 320vh;
  }
  .content-data > h3{
    margin-left: 20px;
  }
  .card-data{
    flex-direction: column;
  }
  #data{
    height: 180vh;
  }
  .card-item-data{
    width: 250px;
    margin-right: 0px;
    margin-top: 10px;

  }

  .card-item-comments{
      margin-right: 0px;
      margin-top: 20px;
      padding: 0px;

  }
  #comments{
    background: white;
    height: 100vh;
  }
  .form-contacto{
    margin-top: calc( 40px + 30px + 50px );
    margin-left: 0px;
    margin-right: 0px;
  }
  .react{
    width: 80vw;
    height: 190vh;
  }
  .rect-blue{
    transform: rotate(-6deg);
  }
  #video{
    width: 300px;
    top: 130vh;
    left: calc( (100vw - 300px)/2 );
  }
  .info{
    margin-left: 10vw;
    margin-right: 10px;
  }
  .card-complete {
    margin-top: 40vw;
    right: calc( 10px + 80px ) ;
      width: 75vw;
       height: 100vh;
  }
  .rectangular-info{
      margin-top: 40vw;
      right: 10px;
      height: 100vh;
  }
  #data > .content-data > .card-data{
       flex-direction: row;
       margin.bottom: 20px;
  }
  #videoc{
      height : 190vh;
  }
  #videoc > .row > .d-flex{
       flex-direction: column;
  }
  
  #videoc > .row > .justify-content-center{
      justify-content: none;
  }
  .fb-class{
          display: none;
  }

    #comments{
        height : 190vh;
    }
    #contact{
        height: 220vh;
    }
    
}