/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/

  --first-color: hsl(0, 100%, 40%);
  --gradient-color: linear-gradient(90deg,
                  hsl(23, 4%, 28%) 0%,
                  hsl(23, 4%, 8%) 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(23, 4%, 8%, 100%);
  --text-color: hsl(23, 4%, 60%);
  --body-color: hsl(0, 96%, 20%);
  --logo-color: hsl(52, 100%, 51%);
  --container-color: hsl(23, 4%, 10%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 10rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 25rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}


.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  margin-top: 5rem;
  width: 10rem;
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}

.nav__toggle,
.nav__close {
  display: flex;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}




/* Navigation for mobile devices */
@media screen and (max-width: 1290px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: hsla(23, 12%, 4%, .2);
    width: 100%;
    padding-block: 5.5rem 4.5rem;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    transition: top .4s;
  }
}

.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}


/* Add blur header */
.blur-header::after {
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(23, 12%, 4%, .2);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== INICIO ===============*/
.inicio__container {
  position: relative;
  padding-block: 7rem 1rem;
  row-gap: 2.5rem;
}

.inicio__content {
  position: relative;
  display: grid;
  justify-self: center;
}


/* NAVAJA */
.inicio__img {
  width: 500px;
}

.inicio__title {
  font-size: var(--biggest-font-size);
  display: flex;
  column-gap: .25rem;
  color: var(--first-color);
  position: absolute;
  top: -2rem;
  justify-self: center;
}

.inicio__title a {
  width: 800px;
  height: 250px;
  position: relative;
  color: transparent;
}

.inicio__title a:nth-child(1) {
  z-index: -1;
}

.inicio__tooltip {
  position: absolute;
  top: 8rem;
  right: 15rem;
}

.inicio__tooltip-img {
  width: 150px;
}

.inicio__tooltip-text {
  background: var(--gradient-color);
  padding: .50rem .75rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 4rem;
  font-size: var(--small-font-size);
  position: absolute;
  transform: translate(80px, -80px);
  white-space: nowrap;
}

.inicio__social {
  display: grid;
  justify-items: center;
  row-gap: 6rem;
  position: absolute;
  top: 11rem;
  left: -1.5rem;
}

.inicio__social-text {
  position: relative;
  rotate: 90deg;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.inicio__social-text::after {
  content: '';
  width: 48px;
  height: 1px;
  background-color: var(--text-color);
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: -64px;
}

.inicio__social-links {
  display: grid;
  row-gap: .75rem;
}

.inicio__social-link {
  font-size: 3rem;
  color: var(--text-color);
  transition: color .4s;
}

.inicio__social-link:hover {
  color: var(--first-color);
}

.inicio__button {
  justify-self: center;
}

/*=============== BOTONES ===============*/
.button {
  background: var(--gradient-color);
  padding: .75rem 1.5rem;
  border-radius: 4rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  transition: box-shadow .4s;
}

.button i {
 
  font-size: 2rem;
  font-weight: initial;
  color: var(--first-color);
}

.button:hover {
  box-shadow: 0 12px 32px hsla(23, 100%, 50%, .12);
}

/*=============== NOSOTROS ===============*/
.nosotros__container {
  row-gap: 3.5rem;
}

.nosotros__data {
  text-align: justify;
}

.nosotros__description {
  margin-bottom: 2.5rem;
}

.nosotros__img {
  width: 480px;
  justify-self: center;
}

/*=============== NAVAJAS ===============*/
.navajas__container {
  padding-top: 2rem;
}

.navajas__article {
  width: 220px;
  display: grid;
  justify-items: center;
  filter: blur(8px);
  scale: .8;
  transition: filter .3s, scale .3s;
}

.navajas__img {
  width: 420px;
  margin-bottom: 1.5rem;
}

.navajas__model {
  background: var(--gradient-color);
  padding: .5rem 1.5rem;
  border-radius: 4rem;
  color: var(--white-color);
}

/* Swiper class */
.swiper-slide-active,
.swiper-slide-duplicate-active {
  filter: blur(0);
  scale: 1;
}

/*=============== ACCESORIOS ===============*/
.access__container {
  padding-top: 2rem;
  row-gap: 2.5rem;
}

.access__content {
  position: relative;
  justify-self: center;
}

.access__img {
  width: 580px;
}

.access__tooltip-img {
  width: 60px;
}

.access__tooltip-text {
  background: var(--gradient-color);
  padding: .25rem .75rem;
  border-radius: 4rem;
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  position: absolute;
  transform: translate(60px, -40px);
  white-space: nowrap;
}

.access__tooltip-1,
.access__tooltip-2 {
  transform: scaleX(-1);
}

.access__tooltip-1 .access__tooltip-text,
.access__tooltip-2 .access__tooltip-text {
  transform: translate(60px, -40px) scaleX(-1);
}

.access__tooltip {
  position: absolute;
}

.access__tooltip-1 {
  top: 5rem;
  left: 4rem;
}

.access__tooltip-2 {
  top: 3rem;
  right: 8rem;
}

.access__tooltip-3 {
  bottom: 5rem;
  left: 9rem;
}

.access__tooltip-4 {
  bottom: 8rem;
  right: 6rem;
}

.access__button {
  justify-self: center;
}




/*=============== GALLOS ===============*/
.gallos__img {
  width: 300px;
  transition: transform .4s;
}

.gallos__img:hover {
  transform: scale(1.1);
}

.gallos__container {
  padding-block: .5rem 4.5rem;
  grid-template-columns: repeat(1, max-content);
  justify-content: center;
  align-items: center;
  gap: 5rem 4rem;
}

.gallos__container a img {
  align-items: center;
}

/*=============== FOOTER ===============*/
.validation {
	display:none;
	margin: 0 0 20px;
	font-weight:400;
	font-size:13px;
}

#sendmessage {
	border:1px solid #fff;
	display:none;
	text-align:center;
	padding:15px 12px 15px;
	margin:10px 0;
	font-weight:600;
	margin-bottom:30px;
}

#sendmessage.show,.show  {
	display:block;
}

#contact-form {
	position: relative;
	z-index: 999;
}

#contact-form input[type=text],#contact-form input[type=email], .contactForm textarea {
	width: 100%;
	background: rgba(227, 231, 228, 1);
	font-family: 'Lato', sans-serif;
	border: 0;
	font-size:14px;
	text-align: left;
	vertical-align: middle;
	padding:0 10px;
}
#contact-form input[type=text]:focus,#contact-form input[type=email]:focus, .contactForm textarea:focus {
	background: rgba(101, 106, 100, 1);
	color: #eff1ef;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
}
#contact-form input[type=text],#contact-form input[type=email] {
	height: 60px;
	margin-bottom:30px;
}
#contact-form input[type=submit] {
	color: #fff;
	width: 185px;
	height: 60px;
	text-shadow: none;
	font-size: 14px;
	padding:0.5em;
	letter-spacing: 0.05em;
	margin: 0 0 20px 0;
	display: block;
	border: 0;
	text-transform: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
#contact-form input[type=submit]:hover, #contact-form input[type=submit]:active {
	background: #43413e !important;
}
#contact-form textarea {
	padding-top: 1em;
}

textarea.form-control {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

div.cform-response-output {
	max-width: 60%;
	text-align: center;
	margin-left: 40% !important;
	margin-top: 0.5em !important;
	padding: 0.5em !important;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.cform-not-valid-tip {
	color: #888;
	border: 1px dotted #ad3729 !important;
	width: 100% !important;
	left: 0 !important;
	padding: 0.5em !important;
	font-family: 'Lato', sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.btn.btn-theme {
	color: #fff;
}

.validation {
    color: red;
    display:none;
    margin: 0 0 20px;
    font-weight:400;
    font-size:13px;
}

#sendmessage {
    color: green;
    border:1px solid green;
    display:none;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#errormessage {
    color: red;
    display:none;
    border:1px solid red;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
	display:block;
}


/* google map */

/* google map */
#google-map{
    position:relative;
    height: 400px;
}

/* Footer */

footer{
	background: #EC0D0D;
	padding: 60px 0 30px 0;
	margin: auto;
	overflow: hidden;
}

.contenedor-footer{
	display: flex;
	width: 90%;
	justify-content: space-evenly;
	margin: auto;
	padding-bottom: 50px;
	border-bottom: 1px solid #ccc;
}

.content-foo{
	text-align: center;
}

.content-foo h4{
	color: #fff;
	border-bottom: 3px solid #fc0000;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.content-foo p{
	color:#ccc;
}

.content-foo p a:hover{
	color: #920000;
}

.titulo-final{
	text-align: center;
	font-size: 15px;
	margin: 20px 0 0 0;
	color: #FFFFFF;
}



/*  FOOTER ENTREGALLOS */

.titulo-contacto {
	
	text-align: center;
	margin-bottom: 50px;
	color: #ffffff;
	font-size: 30px;
	
}


.contenedor-footer2{
	display: flex;
	width: 90%;
	justify-content: space-evenly;
	margin: auto;
	padding-bottom: 50px;
	border-bottom: 1px solid #ccc;
}

.content-foo2{
	text-align: center;
}

.content-foo2 h4{
	text-decoration: none;
	
	color: #fff;
	border-bottom: 3px solid #fc0000;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.content-foo2 p a {
	color: #ffffff;
}

.content-foo2 p a:hover{
	color: #000000;
}

.content-foo2 h4 p{
	color:rgb(229, 255, 0);
}


/*  FOOTER */





/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(23, 4%, 15%);
}

::-webkit-scrollbar-thumb {
  border-radius: .5rem;
  background-color: hsl(23, 4%, 30%);
}

::-webkit-scrollbar-thumb:hover {
  border-radius: .5rem;
  background-color: hsl(23, 4%, 40%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background: var(--gradient-color);
  display: inline-flex;
  color: var(--white-color);
  font-size: 1.25rem;
  padding: 6px;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
  @media (max-width: 360px) {
  .container {
    margin-inline: 1rem;
  }

  .inicio__content h1 {
    width: 300px;
    align-items: center;
  }

  .inicio__img {
    width: 100px;
  }

  .inicio-title {
    font-size: 8rem;
  }

  .inicio__tooltip {
  position: absolute;
  top: 5rem;
  right: -70rem;
}

.inicio__tooltip-img {
  width: 40px;
}

.inicio__tooltip-text {
  background: var(--gradient-color);
  padding: .25rem .75rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 4rem;
  font-size: var(--small-font-size);
  position: absolute;
  transform: translate(4px, -1px);
  white-space: nowrap;
}

  .navajas__img {
  width: 120px;
  margin-bottom: 1.5rem;
}

.access__img {
  width: 440px;
}

.gallos__container img {
  width: 200px;
}

.footer__links {
  display: grid;
  row-gap: 1rem;
}

.footer__link {
  color: var(--text-color);
  transition: color .4s;
}

.footer__data .grid {
  width: .25rem;
  text-align: center;
}

.footer__social {
  align-items: center;
  width: 75px;
}
  
  
  }

@media (max-width: 767px) {
  .inicio__img {
  width: 400px;
}

.inicio__tooltip {
  position: absolute;
  top: 5rem;
  right: 13rem;
}

.inicio__tooltip-img {
  width: 80px;
}

.inicio__tooltip-text {
  background: var(--gradient-color);
  padding: .25rem .75rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 4rem;
  font-size: var(--small-font-size);
  position: absolute;
  transform: translate(80px, -50px);
  white-space: nowrap;
}

.inicio__title a {
  width: 600px;
  height: 250px;
  position: relative;
  color: transparent;
}

.navajas__img {
  width: 700px;
  margin-bottom: 5%rem;
}

.access__content img {
  width: 3000px;
}

.access__tooltip-1 img,
.access__tooltip-2 img,
.access__tooltip-3 img,
.access__tooltip-4 img {
  display: none;
}

.access__tooltip-1 span,
.access__tooltip-2 span,
.access__tooltip-3 span,
.access__tooltip-4 span {
  display: none;
}

.gallos__container img {
  width: 300px;
}

.footer__container .grid {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

}

  
/* For large devices */
@media screen and (min-width: 1150px)  {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .section__title {
    font-size: var(--h1-font-size);
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 4.5rem;
  }

  .inicio__container {
    position: relative;
  }

  .inicio__img {
    width: 500px;
  }

}



/*
@media (min-width: 768px) and (max-width: 1149px)