/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root{
  --header-height: 3rem;
  --font-semi: 600;
}

/* default browser settings */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*===== Colors =====*/
:root{
  --first-color: blue;
  --second-color: #fff;
}

/*===== Fuente y tipografia =====*/
:root{
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
}

@media screen and (min-width: 768px){
  :root{
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
  }
}

/*===== Margenes =====*/
:root{
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root{
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
  overflow-x: hidden;
  background-color: #181818;
}
h1,h2,p{
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
  height: auto;
  display: block;
}

.section-title{
  position: relative;
  font-size: var(--h2-font-size);
  margin: var(--mb-2) 0;
  text-align: center;
}

.section-title::after{
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  border-bottom: 3px solid ;
  border-image: linear-gradient(45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
  border-image-slice: 1;
}
.section-para,.about-para {
  width: 100%;
  max-width: 1000px;
  font-size: 14px;  
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  margin: 15px auto 20px;
  color: #dddddd;
}

/*===== LAYOUT =====*/
.bd-grid{
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 1rem;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}
.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #000;
  box-shadow: 8px 4px 8px rgba(146,161,176,.25);
}

.text-highlight{
  background: linear-gradient(45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.text-highlight-2{
  background: linear-gradient(45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-highlight-2:hover{
  background: linear-gradient(-45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-highlight-3{
 color: #39ff14;
}

/*===== NAV =====*/
.my_name{
  font-size: 1.2rem;
}

.my_name:hover{
  letter-spacing: 0.1rem;
  transition: letter-spacing 1s ease-in-out;
}
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);
}
@media screen and (max-width: 768px){
  .nav__menu{
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: #000;
    transition: .5s;
  }
}
.nav__item{
  margin-bottom: var(--mb-4);
}
.nav__link{
  position: relative;
  color: #fff;
}

.nav__link:hover{
  position: relative;
  color: #fff;
}
.nav__link:hover::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  border-bottom: 2px solid ;
  height: 8%;
  border-image: linear-gradient(45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
  border-image-slice: 1;
  transition: transform 1ms ease-in-out,-webkit-transform 1ms ease-in-out;
}
.nav__logo{
  color: var(--second-color);
}
.nav__toggle{
  color: var(--second-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  /* background-color: var(--first-color); */
  border-bottom: 2px solid ;
  height: 8%;
  border-image: linear-gradient(45deg, #fff400, #ffa601 ,#f3503c, #d53567, #A7489B);
  border-image-slice: 1;
}

/*=== Show menu ===*/
.show{
  right: 0;
}


/*BUTTONS*/
.button{
  display: inline-block;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg, #fff400, #ffa601,#f3503c, #d53567);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #181818 inset;
  color: #fff;
  padding: .5rem 1.5rem;
  font-weight: var(--font-semi);
  border-radius: .5rem;
}

.button:hover{
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
  color: #fff;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg, #d53567,#f3503c, #ffa601, #fff400 );
  transition: background-image 2s ease-in-out;
  box-shadow: 2px 1000px 1px #181818 inset;
}


/* ===== FOOTER =====*/
.footer{
  background-color: #000;
  color: grey;
  box-shadow: 8px -4px 8px rgba(146,161,176,.25);
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__title{
  font-size: 2rem;
}

.footer-name:hover{
  letter-spacing: 0.1rem;
  transition: letter-spacing 1s ease-out;
}

.footer__social{
  margin: 20px auto 30px;
}

.footer__icon:nth-child(4n+1){
  font-size: 1.5rem;
  padding: 8px 13px;
  font-size: 1.3rem;
  width: max-content;
  color: #fff;
  background: linear-gradient(90deg, #fff400, #ffa601);
  border-radius: 50%;
  margin: 0 var(--mb-2)
}

.footer__icon:nth-child(4n+2){
  font-size: 1.5rem;
  padding: 8px 11px;
  font-size: 1.3rem;
  width: max-content;
  color: #fff;
  background: linear-gradient(90deg, #ff9f05 ,#f3503c);
  border-radius: 100%;
  margin: 0 var(--mb-2)
}

.footer__icon:nth-child(4n+3){
  font-size: 1.5rem;
  padding: 8px 11px;
  font-size: 1.3rem;
  width: max-content;
  color: #fff;
  background: linear-gradient(90deg,  #ee4248, #d53567);
  border-radius: 100%;
  margin: 0 var(--mb-2)
}

.footer__icon:nth-child(4n+4){
  font-size: 1.5rem;
  padding: 8px 11px;
  font-size: 1.3rem;
  width: max-content;
  margin-bottom: var(--mb-2);
  color: #fff;
  background:linear-gradient(90deg,  #d23369, #a01495);
  border-radius: 100%;
  margin: 0 var(--mb-2)
}

.footer__icon:nth-child(4n+5){
  font-size: 1.5rem;
  padding: 8px 11px;
  font-size: 1.3rem;
  width: max-content;
  margin-bottom: var(--mb-2);
  color: #fff;
  background:linear-gradient(90deg, #a01495, #405DE6);
  border-radius: 100%;
  margin: 0 var(--mb-2)
}

.footer__icon:hover{
  background: linear-gradient(90deg, #fff400, #ffa601, #ff9f05 ,#f3503c, #ee4248, #d53567);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  transition: 5s ease-in-out;
}

/* ===== MEDIA QUERIES=====*/
@media screen and (max-width: 768px){
   .section{
    padding:2rem  0;
  }

  .section-para{
    font-size:12px;
    font-weight: 400;
    line-height: 1.6;
    width: 100%;
    padding: 0 10px;
    text-align: justify;
  }
  .about-para{
  font-size:12px;
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  text-align: justify;
  }
}

@media screen and (min-width: 768px){
  body{
    margin: 0;
  }

  .section{
    padding: 3rem 0 1.5rem 0;
  }
  .section-title{
    /* margin-top: var(--mb-6); */
  }
  .section-title::after{
    width: 80px;
    top: 3rem;
  }

  .nav{
    height: calc(var(--header-height) + 1rem);
  }
  .nav__list{
    display: flex;
    padding-top: 0;
  }
  .nav__item{
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }
  .nav__link{
    color: var(--second-color);
  }

}

@media screen and (min-width: 1024px){
  .bd-grid{
    margin-left: auto;
    margin-right: auto;
  }

}


