@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Ubuntu';
}

:root{
 --black:#2f2f2f;
 --white:#fff;
 --red:#f83038;
}

.content img{
width: 10 rem;
height: 5 rem;
}

.main{
 display: flex;
 position: relative;
 min-height: 100vh;
 min-width: fit-content;
 background:linear-gradient(#1c1c1c,#323232);
 padding: 2rem 2rem;
 justify-content: space-around;
 align-items: center;
 flex-direction: column;

}

.main::before{
 content: 'CHIHUAHUA';
 position: absolute;
 top: 20%;
 left: 20%;
 /* transform:translate(-50%,-50%); */
 font-size: 10vw;
 font-weight: 700;
 color: rgba(255,255,255,0.05);
 animation: backcanrs 15s ;
 animation-delay: 5s;
}

@keyframes backcanrs {
20% { transform: rotateX(150deg) }
} 

header{
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 padding: 30px 100px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 }


.logo{
 max-width: 80px;
 border-radius: 50%;
 animation: logomove 45s;
}

@keyframes logomove {
  50% {transform: rotate(360deg);}
}



.navigation{
 display: flex;
 }
.navigation li{
 list-style: none;
}
.navigation li a{
 position: relative;
 color: var(--white);
 margin-left: 40px;
 text-decoration: none;
 transition: 0.25s;
 }
.navigation li a:hover{
 color: var(--red);
}

.content{
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 margin-top: 100px;
 z-index: 1;
}

.content h2{
 font-size:5rem;
 font-weight: 300;
 color: var(--white);
 text-align: center;
}
.content h2 span{
 font-weight: 700;
}
.btn {
 display: inline-block;
 background: var(--red);
 color:var(--white);
 text-decoration: none;
 padding: 16px 36px;
 margin-top: 20px;
 border-radius: 50px;
 font-size: 1.25rem;
 transition: 0.25s;
margin-bottom: 2rem;
 }
.btn:hover{
 letter-spacing: 4px;
 }

.cente{
      max-width: 80%;
      animation: renewa ;
      animation-duration: 5s;
 }
 
@keyframes renewa {
  40% {transform: rotate(90deg); }
  90% { transform: rotate(-80deg);}
}

.footer{
 position: absolute;
 bottom: 0;
 width: 100%;
 padding: 30px 100px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.sci{
 display: flex;
 }
.sci li{
 list-style: none;
 }
.sci li a{
 color: var(--white);
 font-size: 3rem;
 margin-right: 1.1rem;
 transition:  0.5s;
 }

.sci li a:hover{
 color: var(--red);
}

.dots{
 display: flex;
 
 border-color: #ffffff42;
}
.dots .dot{
 width:1rem;
 height: 1rem;
 background: rgba(155, 128, 121, 0.062);
 border-radius: 50%;
 border-style: dashed;
 cursor: pointer;
 margin-left: 10px;
}

.dots .dot.active{
 background: var(--white);
}



.slider .slides
{
 position: absolute;
 top: 70%;
 left: 0;
 transform: translateY(-30%);
 z-index: 10;
 width: 100%;
 display: flex;
 justify-content: space-between;
 padding: 0 100px;
 transition: 0.45s;
 opacity: 0;
 pointer-events: none;
  }
.slider .slides.active{
 opacity: 1;

 top: 50%;
}
.slider .slides h2{
 color: var(--white);
 font-size: 4rem;
}

.slider .slides h2:last-child{
 text-align: end;
 }

.slider .slides h2 span{
 color: var(--red);
 font-size: 1.5rem;
 font-weight: 400;
 font-style:italic;
}
ion-icon{ color: #fff;}



@media(max-width:991px){
 .main{
  padding: 40px;
 }
 header{
  padding: 20px 40px;
 }
 
 footer{
  padding: 20px 40px;
 
 }
 
 .slider{
  position: relative;
  width: 100%;
 }
 
 .slider .slides{
  position: absolute;
  top: 50%;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  }
 .slider .slides h2{
  font-size: 2.5em;
  text-align: center;
  }
 
 .slider .slides h2:last-child{
  text-align: center;
 }
 
 
 .cente{
  max-width: 100%;
 
  }
 
 .footer {
  position: relative;
  margin-top: 10rem;
  flex-direction: column-reverse;
  padding: 0 40px;
   }
 
 .sci{
  margin-top: 40px;
   }
 .content h2{
  font-size: 3em;
 }
 

 
 .toggle{
  position: relative;
  width: 32px;
  height: 40px;
 justify-content: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 25;
  }
 
 
 .toggle.active{
  position:fixed;
  top: 30px;
  right: 40px;
  
  
 }
 
 
 
 .toggle::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: translateY(-10px);
  transition: 0.25s;
  box-shadow: 0 10px 0 var(--white);
   }
   .toggle.active::before{
  transform: translateY(0) rotate(-45deg);
    box-shadow: 0 0 0 var(--white);
 }
 
 
 
 .toggle::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: translateY(10px);
  transition: 0.25s;
  }
 
 .toggle.active::after{
  transform: translateY(0) rotate(45deg);
 }
 
 
  .navigation{
  display: none;
 }
 
 .navigation.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 20;
  background: var(--rgba(0, 0, 0, 0.12));
   
 }
 
 .navigation li a{
  font-size: 1.5em;
  margin: 10px 0;
  display: inline-block;
 }
 
}






















