* {
  max-width: 99.9%;
  border: solid 0px rgb(129, 6, 243);
  padding: 0%;
  margin: 0%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgb(0, 0, 0);
  box-sizing: border-box;
  /*overflow-x:hidden;  me sale un scroll horizontal rarisimo */
  scroll-behavior: smooth;
}
html {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background-color: rgb(0, 0, 0);
  justify-content: center;
  align-items: center;
  font-family: arial;
}
/* ESTILOS TEXTO */
a {
  text-decoration: none;
}
/* ESTILOS IMAGENES */
.favicon {
  /* k morada */
  height: 3rem;
  margin-left: 0.3rem;
}
.main_logo {
  /* sukki logo principal */
  width: 75%;
  padding: 0.3rem 0.3rem;
}
.main_icon {
  /* sukki logos de animalitos */
  width: 30%;
  padding: 0.3rem 0.3rem;
}
/*BOTTON PARA TOP*/
#go_up_bttn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.8rem;
  z-index: 99;
  font-size: 1.2rem;
  border: none;
  outline: none;
  background-color: rgba(43, 255, 0, 0);
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.25rem;
  transition: 2s; /* creo que no me funciona porque esta implementado en js*/
}
.goupbttn {
  height: 8rem;
  opacity: 0.5;
}
.goupbttn:hover {
  height: 8rem;
  opacity: 1;
}
#go_up_bttn:hover {
  background-color: rgba(85, 85, 85, 0);
}
/* NAV */
.collapsible_menu {
  background: rgb(0, 0, 0);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0rem;
  padding: 1rem 0.5rem;
  width: 100vw;
  height: 4rem;
  top: 0rem;
  /* revisar pa soluciona scroll*/
}
.a_container {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 3.5rem;
}
.a_nav {
  color: azure;
}
.menu_items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-right: 1.8rem 0rem;
}
.menu_items li,
.menu_items li a {
  margin: 0rem 0rem 0rem 0.3rem;
  padding-right: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: rgba(175, 111, 219, 255);
}
.menu_items li:hover,
.menu_items li:active {
  margin: 0rem 0rem 0rem 0.3rem;
  font-weight: 900;
  color: rgba(161, 232, 4, 255);
  border-bottom: solid rgba(175, 111, 219, 255);
  transition: 0.4s;
}
.menu_items li a:hover,
a:active {
  font-weight: 900;
  color: rgba(161, 232, 4, 255);
  transition: 0.4s;
}
.menu_items li a {
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-align: center;
}
/* MAIN */
.logos_main {
  padding: 0.6rem 0.12rem;
  min-width: 100vw;
  background-image: url("images/PORTFOLIO\ \ Nayla\ Gonzalez.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: rgba(161, 232, 4, 255);
}
.intro_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main_button {
  position: relative;
  display: inline-block;
  padding: 2.5rem 3rem;
  margin: 1.5rem 0rem;
  color: rgba(175, 111, 219, 255);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.5s;
  letter-spacing: 0.5rem;
  overflow: hidden;
}
.main_button:hover {
  background: rgba(175, 111, 219, 255);
  color: #050801;
  box-shadow: 0 0 5px rgba(175, 111, 219, 255),
    0 0 25px rgba(175, 111, 219, 255), 0 0 50px rgba(175, 111, 219, 255),
    0 0 200px rgba(175, 111, 219, 255);
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}
.main_button span {
  position: absolute;
  display: block;
}
/* Main button animation*/
.main_button span:nth-child(1) {
  /*topline*/
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 0.12rem;
  background: linear-gradient(90deg, transparent, rgba(175, 111, 219, 255));
  animation: animate1 3s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}
.main_button span:nth-child(2) {
  /*rightline*/
  top: -100%;
  right: 0rem;
  width: 0.12rem;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(175, 111, 219, 255));
  animation: animate2 3s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
.main_button span:nth-child(3) {
  /*botline*/
  bottom: 0rem;
  right: 0rem;
  width: 100%;
  height: 0.12rem;
  background: linear-gradient(270deg, transparent, rgba(175, 111, 219, 255));
  animation: animate3 3s linear infinite;
  animation-delay: 1.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
.main_button span:nth-child(4) {
  /*leftline*/
  bottom: -100%;
  left: 0rem;
  width: 0.12rem;
  height: 100%;
  background: linear-gradient(360deg, transparent, rgba(175, 111, 219, 255));
  animation: animate4 3s linear infinite;
  animation-delay: 2.25s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}

/*section1*/
.main_section1 {
  padding: 0.6rem 0.12rem;
  width: 100vw;
  background-color: rgb(255, 255, 255);
}
.text_sect1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bold_design {
  color: black;
  margin-top: 3.5rem;
  font-size: 4rem;
  width: 80%;
  max-width: 46.25rem;
  text-align: right;
}
.bold_divider {
  border: solid 0.25rem black;
  width: 80%;
  max-width: 46.25rem;
  margin-top: 1.3rem;
  padding-left: 1.25rem;
}
.this_wb {
  color: black;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: right;
  width: 22.5rem;
  margin-top: 1.3rem;
}
.bttn_box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.go_to_bttn {
  color: black;
  background-color: rgba(161, 232, 4, 255);
  border-radius: 9.3rem;
  margin: 2rem 3rem;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}
/*section2*/
.areas_sect2 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.6rem 0.12rem;
  width: 100vw;
  background-color: rgb(255, 255, 255);
}
.area_box {
  width: 22.5rem;
  padding: 0.6rem;
}
.area_box:hover {
  font-size: 1.5rem;
  width: 22.5rem;
  color: azure;
  background-color: rgb(2, 2, 2);
  border-radius: 1.5rem;
  transition: 0.5s;
}
.area_box:hover img {
  transition: 1s;
}
.area_box:hover h1 {
  font-size: 2rem;
  color: azure;
  transition: 1s;
}
/* section3 gallery */
.grid_sect3 {
  margin: 2rem;
  background-color: #050801;
}
.img_grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: baseline;
}
.sum_title {
  color: white;
  font-size: 5rem;
}
.art_title {
  color: rgba(175, 111, 219, 255);
  font-size: 5rem;
}
.flex-items {
  width: 25rem;
}
.flex_img1 {
  column-gap: 0mm;
}
/*section 4*/
.introduction_sect4 {
  background-color: rgba(161, 232, 4, 255);
  padding: 5rem;
}
.intro_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 114rem;
}
.intro_text4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem;
}
.intro {
  width: 25rem;
  font-size: 3rem;
  color: white;
  font-weight: 800;
}
.subintro {
  width: 25rem;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
}
/*section 5*/
.who_sect5 {
  background-color: white;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  height: 40rem;
}
.who_container {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  width: 60%;
  height: 37rem;
  margin-top: -3rem;
  margin-right: -17rem;
  margin-bottom: -2rem;
  padding: 3rem 2rem;
  background-color: black;
}
.who_text5 {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
}
.who_text5 img {
  align-self: center;
  margin-top: 3rem;
  width: 70%;
  opacity: 0.2;
  transition: 0.5s;
}
.who_text5 img:hover {
  align-self: center;
  margin-top: 3rem;
  width: 70%;
  opacity: 1;
  transition: 0.5s;
}
.who {
  margin: 3rem 1rem;
  font-size: 4rem;
  font-weight: 900;
  color: white;
}
.whoisukki {
  margin: 0.25rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
}
.sukkiface {
  width: 50%;
  margin: 1.5rem;
}
/*section 6           picado de codepen https://codepen.io/Supha/pen/OQvLEj */
.method_animation6 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#meth_slider,
#meth_slider ul {
  color: white;
  height: 12.5rem;
}
#meth_slider {
  margin: auto;
  padding: 1.25rem;
  margin: 8rem 0rem 5rem;
  position: relative;
  width: 37.5rem;
}
#meth_slider h1 {
  color: rgba(156, 71, 201, 255);
  font-size: 4rem;
  font-weight: 800;
  position: relative;
  left: -15rem;
  top: -6rem;
}
#meth_slider p {
  color: white;
  font-size: 1.25rem;
  width: 22.8rem;
}
#meth_slider strong {
  color: white;
  font-size: 2rem;
}
#meth_slider b {
  color: white;
  font-size: 1.55rem;
}
#meth_slider li {
  float: left;
  position: relative;
  width: 37.5rem;
  display: inline-block;
  height: 12.5rem;
}
#meth_slider ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  position: absolute;
  left: 0rem;
  top: 0rem;
  width: 562.5rem;
  transition: left 0.4s linear;
  -moz-transition: left 0.4s linear;
  -o-transition: left 0.4s linear;
  -webkit-transition: left 0.4s linear;
  margin-left: -1.5rem;
  color: rgb(255, 255, 255);
}
.meth_slider-container {
  margin: 2rem auto;
  padding: 0;
  width: 16rem;
  min-height: 11.25rem;
  text-align: center;
}
.meth_slider-container p {
  color: rgb(255, 255, 255);
  margin: 1.8rem 1.5rem;
  font-weight: semi-bold;
  line-height: 150%;
}

@-webkit-keyframes slide-animation {
  0% {opacity: 0;}
  2% {opacity: 1;}
  20% {left: 0px; opacity: 1;}
  22.5% {opacity: 0.6;}
  25% {left: -600px; opacity: 1;}
  45% {left: -600px;opacity: 1;}
  47.5% {opacity: 0.6;}
  50% {left: -1200px; opacity: 1;}
  70% {left: -1200px; opacity: 1;}
  72.5% { opacity: 0.6;}
  75% {  left: -1800px; opacity: 1;}
  95% { opacity: 1;}
  98% {left: -1800px; opacity: 0;}
  100% {left: 0px; opacity: 0;}
}
#meth_slider ul {
  -webkit-animation: slide-animation 20s infinite;
}
#meth_slider ul:hover {
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
#meth_slider li:hover {
  border-bottom: rgba(161, 232, 4, 255) 0.5rem solid;
}
/*section 7  Como no me da tiempo he dejado la nomenclatura del css horrible losiento :c */
.shop_sect7 {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #e0e0e0;
  overflow: hidden;
  padding-right: 8rem;
  padding: 1rem 8rem 5rem 5rem;
}
.shop_sect7 h1 {
  font-size: 5rem;
  color: #000000;
  font-weight: 800;
  margin: 3rem 2rem 1.5rem;
}
.shop_sect7 p {
  font-size: 3rem;
  color: #000000;
  font-weight: 600;
  margin: 3rem 2rem 1.5rem;
  width: 50rem;
}
.shop_sect7 hr {
  border: solid black 0.5rem;
  width: 89%;
  margin-bottom: 1.75rem;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
}
.media {
  width: 350px;
  height: 270px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media img {
  max-width: 100%;
  height: auto;
}
.layer {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 90%;
  background: rgba(211, 211, 211, 0.568);
  color: #151e3f;
  transition: all 0.9s ease;
}
.layer p {
  transition: all 0.9s ease;
  transform: scale(0.1);
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}
.media:hover .layer {
  opacity: 0.8;
  width: 90%;
  transition: all 0.5s ease;
  font-size: 1.75rem;
}
.media:hover .layer p {
  transform: scale(1);
  transition: all 0.9s ease;
  font-size: 1.75rem;
}
@media (max-width: 800px) {
  body {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .wrapper {
    display: block;
    margin: 10px;
  }
}


/* FOOTER */

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #ffffff;
  background-color: rgb(0, 0, 0);
  border-top: 3px solid #a1e804;
}
.footer > * {
  flex:  1 100%;
}
.footer__addr {
  margin-right: 1.25rem;
  margin-bottom: 2rem;
}
.footer__logo {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 3rem;
}

.footer__addr h2 {
  color: #a1e804;
  margin-top: 1.3rem;
  font-size:1.5rem;
  font-weight: 700;
}

.nav__title {
  color: #af6fdb;
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
  font-size:1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer address {
  font-size:1.25rem;
  color: rgb(219, 219, 219);
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  max-width: max-content;
  background: rgb(175,111,219);
  background: linear-gradient(14deg, rgba(175,111,219,1) 46%, rgba(161,232,4,1) 53%);
  border-radius: 100px;
  color: #ffffff;
  line-height: 0;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 1.3rem;
}
.heart {
  color: #af6fdb;
  font-size: 2rem;
  margin-left: 1rem;
}
.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2rem;
}

.footer a {
  color: #050801;
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25rem;
}

.nav__ul a {
  color:aliceblue;
}
.nav__ul a :hover{
  color:#a1e804;
  font-weight: 500;
}
.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25rem;
}


  




@media screen and (min-width: 40.375rem) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}