/* Colors */
:root {
  --color-default: #FFFFFF;
  --color-primary: #08364E;
  --color-secondary: #BF0D0B;
  --color-bg: #CCCCCC;
  --color-simple-text: #141414d2;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-secondary);
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.z-depth-1, 
nav, 
.card-panel, 
.card, 
.toast, 
.btn, 
.btn-large, 
.btn-small, 
.btn-floating, 
.dropdown-content, 
.collapsible, 
.sidenav{
box-shadow: none;
}

  /*--------------------------------------------------------------
# scrooll bar
--------------------------------------------------------------*/
body::-webkit-scrollbar{
  width: 13px;
}

body::-webkit-scrollbar-thumb{
  background: var(--color-primary);
}

body::-webkit-scrollbar-thumb:hover{
  background: var(--color-secondary);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px hsla(0, 0%, 75%, 0.5);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0px;
  padding-top: 20px;
  color: transparent;
  background: transparent;
  width: auto;
  height: auto;
  line-height: normal;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  color: #08364E;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #151515;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-secondary);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden; /* Añadido para evitar desbordamiento de imágenes más grandes */
}

#hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(8,54,78,.50) 0%, rgba(191,13,11,.70) 110%);
  z-index: 1;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.background-container.fade-out::before {
  opacity: 1;
}

#hero.fade-out .background-container {
  opacity: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  z-index: 1; /* Añadido para asegurarse de que el contenido esté encima del fondo */
}

#hero .hero-logo {
  margin-bottom: 30px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: var(--color-primary);
}

#hero .btn-get-started:hover {
  transition: background 0.5s, color 0.5s; /* Modificado para incluir transición de color */
  background: #fff;
  color: var(--color-primary);
}
.logo-Alupresa{
  width: 75%;
  height: auto;
}

@media ( max-width: 1700px ) {


  #hero h1 {
    margin: 0 0 30px 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    color: #fff;
  }

  #hero h2 {
    color: #aeaeae;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
  }
}

@media (max-width: 1400px) {
  
#hero h1 {
  margin: 0 0 30px 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}
};

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    background-size: cover;
    background-repeat: no-repeat;
  }
  #hero img.logo {
    width: 300px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    line-height: 22px;
  }
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 500px) {

  #hero {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden; /* Añadido para evitar desbordamiento de imágenes más grandes */
  }

  #hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px;
    margin: 10px;
    color: #fff;
    background: var(--color-primary);
  }

  #hero {
    background-size: cover;
    background-repeat: no-repeat;
  }
  #hero img.logo {
    width: 250px;
    height: 110px;
  }
  #hero h1 {
    font-size: 10px;
    line-height: 8px;
  }

  #hero h2 {
    line-height: 22px;
  }
}
/*----------------------------------------------------------------
# Landing config
----------------------------------------------------------------*/  
@media (max-width: 1400px ){

  .cristalonRegalo{
    width: 250px;
  }

  .imgGift{
    width: 350px;
  }
  
  section {
    padding: 30px;
    overflow: hidden;
  }

  .section-title h2 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #151515;
  }
  .section-title p {
    font-size: 18px;
    margin-bottom: 0;
    color: #aeaeae;
  }

  .col-lg-8{
    flex: 0 0 auto;
    width: 100%;

  }
    
  .section-title {
    text-align: center;
    padding-bottom: 20px;
  }

  .imgForm{
    width: 700px;
    height: 550px;
  }

  .landingPage{
    height: 550px;
    background: url("../img/bg.webp") center center no-repeat;
  }

  .landingPage::before{  
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(8,54,78,.50) 0%, rgba(191,13,11,.70) 110%);
    z-index: 1;
    
  }

  .landingForm{
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
  }

  .buttonForm{
    margin-top: 20px;
    background: var(--color-primary);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }

  .buttonForm:hover{
    background: var(--color-secondary);
  }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px;
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.contactLanding{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 92%;
  background-color: whitesmoke;
  border-radius: 5px;
}

.landingForm{
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.buttonForm{
  margin-top: 20px;
  background: var(--color-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.buttonForm:hover{
  background: var(--color-secondary);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}

@media( max-width: 1700px ){
  
  .contactLanding{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75%;
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 5px;
  }
}

@media( max-width:767px ){
  
  .contactLanding{
    display: flex;
    flex-direction: column;
    height: 75%;
    background-color: whitesmoke;
    border-radius: 5px; 
    position: absolute;
    left: 10%;
    width: 350px;
  }
}

/*----------------------------------------------------------------
# Mobile Devices
----------------------------------------------------------------*/
@media (max-width: 500px){

  section {
    padding: 40px;
    overflow: hidden;
  }
  
  .section-title h2 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 0;
    color: #151515;
  }

  .section-title p {
    font-size: 12px;
    margin-bottom: 0;
    color: #aeaeae;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .image {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  font-size: 25px;
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 40px;
  padding: 2px 6px 0 0;
  color: var(--color-primary);
}

.about .content ul i:hover{
  color: var(--color-secondary);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*----------------------------------------------------------------
# Mobile Devices 
----------------------------------------------------------------*/

@media (max-width: 500px) {

  .about .content h3 {
    font-weight: 600;
    font-size: 22px;
  }
  
  .about .content ul i {
    font-size: 25px;
    padding: 4px 6px 0 0;
    color: var(--color-primary);
  }
  
  .about .content ul li {
    font-size: 20px;
    padding-bottom: 0px;
    display: flex;
    align-items: flex-start;
  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.services .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--color-primary);
}

.services .icon-box i:hover{
  color: var(--color-secondary);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.services .icon-box p {
  padding-left: 10px;
  font-size: 15px;
  color: #959595;
  margin-left: 50px;
  margin-right: 20px;
  text-align: justify;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}

.services a{
  background: var(--color-primary);
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  font-size: 20px;
  padding: 15px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}

.services a:hover{
  background: var(--color-secondary);
}

/*----------------------------------------------------------------
# Services
----------------------------------------------------------------*/

@media (max-width: 500px ){

  .services .icon-box p {
    padding-left: 10px;
    font-size: 13px;
    color: #959595;
    margin-left: 50px;
    margin-right: 20px;
    text-align: justify;
  }

  .services .image{
    height: 50%;
  }

  .services a{
    background: var(--color-primary);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    font-size: 20px;
    padding: 15px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
  }

}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  padding: 40px 0 0 0;
  background: white;
}

.featured iframe {
  width: 100%;
  height: 500px;
  display: block;
  margin: 0 auto;
}

.featured .nav-tabs {
  border: 0;
}

.featured .nav-link {
  border: 0;
  padding: 20px;
  color: #151515;
  transition: 0.3s;
}

.featured .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.featured .nav-link:hover h4 {
  color: var(--color-primary);
}

.featured .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.featured .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.featured .nav-link.active h4 {
  color: var(--color-primary);
}

.featured .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .featured iframe {
    margin: 0 20px;
    width: 90%;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: var(--color-primary);
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: var(--color-secondary);
  border: 3px solid var(--color-secondary);
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: whitesmoke;
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #959595;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--color-primary);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(139, 5, 5, 0.754)2%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(139, 5, 5, 0.754);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: whitesmoke;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--color-primary);
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Carrusel

.carousel {
  min-height: 500px;
}

.carousel .carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
  width: 500px;
  height: 500px;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 15px;
}

.carousel .indicators .indicator-item {
  border-radius: 0;
  transform: rotate(45deg);
  margin: 0 15px;
  background: #36221c;
}
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  position: relative;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 500px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 0, 0, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item .testimonial-img {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-item .testimonial-img{
    width: 70%;
    height: auto;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: whitesmoke;
  padding: 15px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(139, 5, 5, 0.754);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #fff;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #151515;
}

.pricing .box h4 {
  font-size: 42px;
  color: #151515;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #151515;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: var(--color-primary);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .recommended {
  border-color: var(--color-primary);
}

.pricing .recommended .btn-buy {
  background: var(--color-primary);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.pricing .recommended-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12px;
  padding: 4px 25px 6px 25px;
  background: #eaf6e9;
  color: var(--color-primary);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: var(--color-primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--color-primary);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .info i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeeeedd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--color-primary);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-secondary);
}

.landingPage{
  height: 1080px;
  background: url("../img/bg.webp") center center no-repeat;
}

.landingPage::before{  
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(8,54,78,.50) 0%, rgba(191,13,11,.70) 110%);
  z-index: 1;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Script
--------------------------------------------------------------*/
#script{
  margin-top: 30px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 30px;
}

#script h1{
  color: var(--color-secondary);
  font-weight: bolder;
  font-size: 50px;
}

#script h3{
  color: var(--color-primary);
  font-weight: bold;
}

#script p{
  font-size: 17px;
}

#script ul{
  list-style: none;
  font-size: 17px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/Perfilaluminio-1900.webp") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(8,54,78,.50) 0%, rgba(191,13,11,.70) 110%);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #fbf7f7;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}

#footer .credits a:hover{
  color: #FFFFFF;
}

.privacy-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold !important;
}

.privacy-link:hover {
  color: #ccc !important;
}

.footer-location a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-location a:hover {
  color: #ccc; /* Cambia a un tono gris al pasar el mouse */
}

#footer .footer-location i {
  font-size: 24px;  /* Tamaño del icono */
  display: inline-block;
  background: var(--color-primary);  /* Usa el mismo color que el de redes */
  color: #fff;
  line-height: 1;
  padding: 12px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 48px;
  height: 48px;
  transition: background 0.3s ease;
}

#footer .footer-location i:hover {
  background: var(--color-secondary);  /* Cambio de color al pasar el mouse */
}

@media (max-width: 768px) {
  #footer .footer-top .footer-logo img {
    width: 40%;
    height: auto;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-logo img {
    width: 50%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Whatsapp
--------------------------------------------------------------*/
#whatsapp {
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 9999;
}

svg {
  width: 80px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .4));
  width: 42px;
  height: 42px;
  margin-top: 12px;
  margin-left: 14.5px;
}

path {
  fill: #25d366;
}

.message {
  display: none;
  font-size: 20px;
  color: #fff;
  background-color: #25d366;
  padding: 15px;
  border-radius: 25px;
  position: absolute;
  bottom: 0px;
  left: 70px;
  white-space: nowrap;
  transition: left 0.5s ease;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

#whatsapp:hover .message {
  left: 0; /* Muestra el mensaje moviéndolo a la posición izquierda */
}

@media (max-width: 767px){
  .message {
    font-size: 15px;
    color: #fff;
    background-color: var(--color-primary);
    padding: 10px;
  }
}

@media (max-width: 450px){
  .message {
    font-size: 15px;
    color: #fff;
    background-color: var(--color-primary);
    padding: 10px;
  }
}

/*-------------------------------
  #popup 
-------------------------------*/
#popup-container {
  z-index: 99;
  position: fixed;
  top: 120px;
  right: -500px; /* El pop-up estará inicialmente fuera de la pantalla */
  width: 300px;
  height: 100vh;
  transition: right 0.5s ease-in-out;
}

#popup-content-pelea {
  padding: 20px;
}

#close-btn {
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
  color: var(--color-secondary);
  font-weight: bolder;
  background-color: var(--color-bg);
  border-radius: 50%;
  padding: 5px 10px 5px 10px;
}

.profLanding{
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  left: 0;
  margin-top: 5%;
  gap: 0;
}

.closeProf {
  position: absolute;
  top: -18px;
  left: 30px;
  cursor: pointer;
  color: var(--color-secondary);
  font-weight: bolder;
  background-color: var(--color-bg);
  border-radius: 50%;
  padding: 5px 10px 5px 10px;
}

.popImg{
  width: 200px;
}

img.pelea {
  max-width: 100%;
  height: auto;
}

@media (min-width: 769px) and (max-width: 900px){
  #popup-container {
    z-index: 1;
    position: fixed;
    top: 0px;
    right: -150px; /* El pop-up estará inicialmente fuera de la pantalla */
    width: 300px;
    height: 100vh;
    transition: right 0.5s ease-in-out;
  }
  
  #popup-content-pelea {
    padding: 20px;
  }
  
  img.pelea {
    max-width: 80%;
    height: auto;
  }
}

@media (min-width: 250px) and (max-width: 768px){
  #popup-container {
    padding: 0;
    z-index: 99;
    position: fixed;
    top: 150px;
    right: -300px; /* El pop-up estará inicialmente fuera de la pantalla */
    height: 100vh;
    transition: right 0.5s ease-in-out;
  }
  
  #popup-content-pelea {
    padding: 20px;
  }
  
  img.pelea {
    max-width: 50%;
    height: auto;
  }
}

/*----------------------------------------------------------------
 Mobile Devices 
 ----------------------------------------------------------------*/
 @media (max-width: 500px){

  #popup-container {
    z-index: 99;
    position: fixed;
    top: 120px;
    right: -400px; /* El pop-up estará inicialmente fuera de la pantalla */
    width: 300px;
    height: 100vh;
    transition: right 0.5s ease-in-out;
  }
  
  #popup-content-pelea {
    padding: 20px;
  }
  
  #close-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    cursor: pointer;
    color: var(--color-secondary);
    font-weight: bolder;
    background-color: var(--color-bg);
    border-radius: 50%;
    padding: 5px 10px 5px 10px;
  }

  .profLanding{
    top: 30%;
    left: -3%;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    margin-top: 5%;
    gap: 0;
  }

  .closeProf {
    position: absolute;
    top: -11px;
    left: 10px;
    cursor: pointer;
    color: var(--color-secondary);
    font-weight: bolder;
    background-color: var(--color-bg);
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 12px;
  }
  
  .popImg{
    width: 35%;
  }
  
  img.pelea {
    max-width: 28%;
    height: auto;
  }
 }

.cristalon{
  width: 40%;
  height: 40%;
}

.descargas{
  margin-top: 8px;
  border: none;
  border-radius: 25px;
  padding: 8px 16px 8px 16px;
  background-color: #555555;
  color: #fbf7f7;
  display: flex;
  justify-content: center;
  align-items: center;
};

.descargas:hover{
  background-color: #bf0d0b;
  color: #555555;
};

/* Redes sociales en el top */
#redesTop .redesSociales a {
  z-index: 9999;
  left: 10;
  top: 50;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  background: var(--color-primary);
  color: var(--color-default);
  line-height: 1;
  position: fixed;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.iconosRedesUp{
  background-color: var(--color-primary);
  color: var(--color-default);
  border-radius: 50%;
  margin: 16px;
  width: 60px;
  height: 60px;
  font-weight: 300;
  font-size: 30px;
  display: flex; justify-content: center;
  align-items: center;
}

/* 
@media (max-width: 1920px){  
  .logo-Alupresa{
    width: 1200px;
    height: 276px;
  };
}

@media (max-width: 1400px){
  .logo-Alupresa{
    width: 800px;
    height: 176px;
  };
} */

@media (max-width: 500px){
  /* .logo-Alupresa{
    width: 300px;
    height: 90px;
  } */

  .iconosRedesUp{
    background-color: var(--color-primary);
    color: var(--color-default);
    border-radius: 50%;
    margin: 6px;
    width: 40px;
    height: 40px;
    font-weight: 100;
    font-size: 20px;
    display: flex; justify-content: center;
    align-items: center;
  }
}

.iconosRedesUp:hover{
  background-color: var(--color-secondary);
  color: var(--color-default);
}


/*----------------------------------------------
 Formulario descarga catálogo
 -----------------------------------------------*/

#thankfulls{
  display: flex;
  height: 100%;
  background: url("../img/bg.webp") center center no-repeat;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 14px;
  position: relative;
};

#thanksfulls::before{
  background: linear-gradient(0deg, rgba(8,54,78,.50) 0%, rgba(191,13,11,.70) 110%);
  z-index: 1;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.thanks-content{
  background-color: #fff;
  width: 70%;
  height: 100%;
  padding: 8%;
}

.imgForm{
  width: 1000px;
  height: 700px;
}

.cristalonRegalo{
  width: 400px;
}
