/*
Autor: DznBox - Willy Cruz
www.dznbox.com
*/

body{
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  cursor: default;
  scroll-behavior: smooth;
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--bgColor);
  color: var(--txtColor);
  transition: .3s;
  padding-top: 50px;
  font-size: 18px;
}
::selection {
  background-color: #fff;
  color: #444;
}


a,
a:link,
a:focus,
a:active,
a:visited{
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.2s;
}
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}
h1, h2, h3, h4, h5, strong{
  font-weight: 700;
}
.btn01{
  font-size: 15px;
  letter-spacing: 0px;
  padding: 9px 18px;
  color: var(--txtColor);
  border-radius: 16px;
  border: var(--btnWhatsBorder);
  font-weight: 400;
}
.btn01:hover{
  padding: 9px 25px;
}
.btnPfolio{
  font-size: 14px;
  letter-spacing: 0px;
  padding: 5px 12px;
  color: var(--txtColor);
  border-radius: 7px;
  border: var(--btnWhatsBorder);
  font-weight: 400;
}
.btnPfolio:hover{
  padding: 5px 20px;
}




/* MENU */
.logotipo{
  width: 100%;
  max-width: 300px;
  transition: .3s;
  filter: var(--logoColor);
  background-color: rgba(255,255,255,.7);
}
.logotipo:hover{
  background-color: rgba(255,255,255,1);
}
.logotipo2{
  background-color: rgba(255,255,255,.1);
}
.btnTemaImg{
  filter: invert(.5);
  width: 100%;
  max-width: 44px;
  transition: .4s, rotate 0s;
  rotate: var(--rotateIconColor);
}
.btnTema:hover img{
  cursor: pointer;
  filter: var(--btnMenuColorHover);
}
/* END MENU */


/* CONTEUDO INICIAL */
.txtInicio{
  font-size: 30px;
  font-weight: 600;
  padding-top: 40px;
  padding-bottom: 50px;
}
.txtInicio p:first-child{
  margin-bottom: 0px;
}
.txtInicio p:last-child{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.1px;
}
/* END CONTEUDO INICIAL */




/* PORTFOLIO */
.imgsFotos img{
   width: 100%;
   transition: .4s;
}
.imgsFotos > div{
  margin-bottom: 90px;
}
.imgsFotos > div > div{
   overflow: hidden;
}
.imgsFotos a:hover img{
   transform: scale(1.04);
}
.imgsFotos div div{
   border-radius: 20px;
}
.imgsFotos > div > p{
  text-align: right;
  margin: 4px 15px;
}
.imgsFotos > div > p > span{
  font-size: 26px;
  font-weight: 500;
}

/* END PORTFOLIO */


/* FOOTER */
footer{
  font-size: 29px;
  padding-top: 250px;
}
.iconsFooter{
  font-size: 20px;
  padding-top: 150px;
  padding-bottom: 100px;
}
.iconsFooter i{
  font-size: 24px;
}
/* END FOOTER */


@media (min-width: 992px){
.txtInicio{
  font-size: 50px;
}
.txtInicio p:last-child{
  font-size: 24px;
}
}




@media (max-width: 575px) {

}
@media (min-width: 576px) {

}