:root{--bs-border-radius: 20px!important;}

*{font-family: 'Proxima Nova';color: white;}



/* General */
body{background-color: black;}
section{min-height: 10vw;max-width: 100vw;overflow-x: hidden;}
.shadow{box-shadow: 5px 5px 35px rgba(250, 131, 2, 0.4)!important}

/* Textos */
.tx-bold, h1, h2, h3, h4{font-weight: 600!important;}
h2{font-size: 30px;}
.tx-general{font-size: 20px;}
.tx-balance{text-wrap-style: balance;}

/* Background */
.bg-orange{background-color: #F98300;}
.tx-orange{color: #F98300;}
.separator{min-height: 35px;}

/* Nav Infobae */
.navbar {
    overflow: hidden;
    background-color: #fff;
    padding: 12px;
    z-index: 99;
}

button {
    background: #222222;
    color: white;
    padding: 5px 30px;
    font-weight: bold;
    border-radius: 5px;
}

button.feature-btn.active{color: #F98300}

.feature-section {min-height: 27vw;}

.navbar.sticky {
    position: fixed;
    top: 50px;
    width: 156px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: var(--static-shadow);
    transition: all 0.1s cubic-bezier(.25, .8, .25, 1);
}

.navbar-link {
    display: flex;
}

.navbar .navbar-logo {
    width: 100%;
    height: auto;
    max-height: 24px;
}

/* Sitio general */

.bg-slider{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
}

#content-general{
  background-color: black;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#content-general::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url(../img/logo.webp);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center top 50%;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: -1;
}

#content-footer{
  background-color: #F98300;
  position: relative;
  z-index: 0;
  min-height: 50vw;
}

#content-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url(../img/logo.webp);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center top 50%;
  background-attachment: fixed;
  opacity: 1;
  z-index: -1;
}

.title-img{width: 50%;}
.carousel-inner{border-radius: var(--bs-border-radius)!important;}


@media screen and (max-width: 768px) {
  
  h2{font-size: 23px;}
  .tx-general{font-size: 17px;}

  #content-general::before, #content-footer::before {background-size: 80%;}
    
  .carousel{
    width: 90%;
    margin: auto;
  }

  #content-footer{
    min-height: 100vh;
  }
  
  .zoom{
    transform: scale(1.7);
    transition: transform 1s ease;
    object-fit: cover;
    padding: 7vw 0px;
  }
}