/*///////////////////////// GENERALES /////////////////////////*/

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #101820 !important;
}

body::before {
  content: "";
  width: 100%;
  height: 8px;
  background: rgb(105, 73, 62);
  background: linear-gradient(153deg, rgba(105, 73, 62, 1) 0%, rgba(181, 146, 43, 1) 100%);
  position: absolute;
  top: 0;
}

* {
  scroll-behavior: smooth;
}

section {
  overflow: hidden !important;
}

h1 {
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-size: 40px;
  line-height: 1;
}

h3 {
  font-size: 28px;
  line-height: 1;
}

p {
  line-height: 1;
}

.lh-100 {
  line-height: 1;
}

.lh-125 {
  line-height: 1.2 !important;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.py-100 {
  padding: 100px 0px;
}

.ls-25 {
  letter-spacing: 2px;
}

.ls-75 {
  letter-spacing: 7px;
}

.z-5 {
  z-index: 5;
}

.btn {
  border-radius: 5px;
  font-size: 16px;
  padding: 12px 20px;
  text-transform: uppercase;
}

.btn-primary {
  background: transparent !important;
  color: #fff;
  border: 1px solid #fff !important;
  transition: all ease .25s;
  position: relative;
  padding-right: 50px;
}

.btn-primary::after {
  content: url("../images/arrow.svg");
  position: absolute;
  right: 20px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #B5922B !important;
  color: #000 !important;
  border: 1px solid #B5922B !important;
  transition: all ease .25s;
  box-shadow: none !important;

}

.primary {
  color: #B5922B !important;
}

.primary-bg {
  background: #B5922B !important;
}

.secondary {
  color: #69493E !important;
}

.secondary-bg {
  background: #69493E !important;
}

.secondary-border {
  border-color: #69493E !important;
}

.gray {
  color: #D9D9D9;
}

.gray-border {
  border-color: #D9D9D9 !important;
}

.border {
  border: 2px solid !important;
}

.w-fit {
  width: fit-content;
}

/* HEADER  */
.menu {
  background-color: transparent;
  -webkit-transition: background 0.3s 0s linear;
  -moz-transition: background 0.3s 0s linear;
  -o-transition: background 0.3s 0s linear;
  transition: background 0.3s 0s linear;
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
}

.header-logo {
  background-image: url("../images/logo.svg");
  width: 150px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  transition: .3s;
}

.header-color-logo {
  background-image: url("../images/dark-logo.svg");
  height: 90px;
}

.navbar {
  z-index: 5;
  width: 100%;
  padding: 1.8rem 0rem 1.4rem 0rem;
}

.nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #fff !important;
  padding-bottom: 0px;
  position: relative;
  transition: linear 0.2s;
  padding: 0px 20px !important;
}

.nav-link:hover {
  color: #B5922B !important;
}

.nav-item:not(:last-child) {
  border-right: 1px solid #bbbbbb77;
}

.header-social-media {
  padding: 0px 20px !important;
}

.header-social-media a {
  width: 30px;
  height: 30px;
  color: #B5922B;
  border: 1px solid #B5922B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 16px;
  padding: 5px;
  transition: .3s;
}

.header-social-media a:hover {
  text-decoration: none;
  background-color: #B5922B;
  color: white;
}

.header-phone {
  position: absolute;
  right: 30px;
  top: 25px;
}

.phone-link {
  color: white;
  transition: .3s;
}

.phone-link:hover {
  text-decoration: none;
  color: #B5922B;
}

.phone-icon {
  filter: brightness(9);
  transition: .3s;
}

.menu.bg-white .nav-link {
  color: #534B51 !important;
}

.menu.bg-white .phone-link {
  color: #B5922B;
}

.nav-item.active .nav-link {
  color: #B5922B !important;
}

.menu.bg-white .phone-icon {
  filter: none;
}

/* Bs nav para el menú mobile */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  background-color: #B5922B !important;
  transition: .3s;
}

.bsnav-mobile .navbar {
  left: 0 !important;
  transform: translate3d(-300px, 0, 0) !important;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
}

.bsnav-mobile .navbar {
  padding: 20px 0 15px;
  background-color: #B5922B !important;
}

.bsnav-mobile .navbar .nav-item {
  border: none;
}

.bsnav-mobile .navbar .nav-link {
  color: #fff !important;
}

.bsnav-mobile .navbar .header-social-media {
  position: absolute;
  bottom: 30px;
}

.bsnav-mobile .navbar .header-social-media a {
  color: #fff !important;
  border-color: #fff;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar-nav .nav-item .nav-link {
  padding: 10px 20px !important;
}

.nav-shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* MAIN */
.float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 4px 4px 6px rgb(14, 14, 14);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn:hover {
  text-decoration: none;
}

.float-btn i {
  transition: .3s;
}

.float-btn:hover i {
  transform: scale(1.1);
  color: #fff;
}

.main-section {
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.carousel-inner,
.carousel-item,
.carousel-item .active,
.carousel-item img,
.carousel-item .active img {
  height: 100%;
  object-fit: cover;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 4;
  background: transparent;
  border: 0;
}

h1.border-bottom {
  border-bottom: 4px solid #AF9340 !important;
}

/* NOSOTROS */
.about {
  background: #B5922B;
  padding: 100px 0px 75px 0px;
  position: relative;
}

.about-img {
  width: 47%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.about-img img {
  height: 100%;
  object-fit: cover;
}

/* PRODUCTOS */
.products {
  background: #D9D9D9;
  padding: 100px 0px;
  position: relative;
  overflow: visible !important;
}

.deco {
  position: absolute;
  bottom: 50%;
  width: 100%;
  z-index: 0;
}

.deco img {
  width: 100%;
}

.products .owl-carousel .owl-stage-outer {
  margin: 0rem 3rem;
}

.owl-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
}

.products .owl-nav {
  transform: translateY(-150px);
}


.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 35px;
  height: 35px;
  border: 2px solid !important;
  border-radius: 50%;
  font-size: 14px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .owl-nav button {
  border-color: #644A40 !important;
  color: #644A40 !important;
}

/* EQUIPO */
.team {
  background: url(../images/team-deco.svg) #69493E;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0px;
}

.team .owl-item img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 7px solid #AF9340;
  margin: 0 auto;
}

.team .owl-nav {
  transform: translateY(-250px);
}

.team .owl-nav button {
  border-color: #B5922B !important;
  color: #B5922B !important;
}

/* PREMIOS */
.awards {
  color: #534B51 !important;
  background-color: #F4F4F4;
}

/* FOOTER */
footer {
  background: url(../images/footer-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px 0px 0px;
  position: relative;
}

footer .container {
  position: relative;
  z-index: 5;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: .2rem;
}

footer h5 {
  font-weight: 700;
  color: #B5922B;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer ul li a {
  color: white;
  font-weight: 300;
  transition: .3s;
}

footer ul li a:hover {
  text-decoration: none;
  color: #B5922B;
}

footer .copy {
  border-top: 1px solid #ffffff33;
}

footer .copy p {
  font-size: 14px;
}

footer .social-media a {
  width: 40px;
  height: 40px;
  color: #B5922B;
  border: 1px solid #B5922B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 20px;
  padding: 5px;
  transition: .3s;
}

footer .social-media a:hover {
  text-decoration: none;
  background-color: #B5922B;
  color: white;
}

footer .footer-deco {
  width: 100%;
  position: absolute;
  bottom: 55%;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1240px) {
  .nav-link {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .main-section {
    text-align: center;
  }

  .main-section .row {
    justify-content: center;
  }

  .products .owl-carousel .owl-stage-outer {
    margin: 0rem;
  }

  .products .owl-nav,
  .team .owl-nav {
    transform: none;
    margin-top: 30px;
  }

  .team .owl-nav {
    margin-top: 0px;
  }

  .owl-nav {
    width: 100px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 46px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1;
  }

  h3, .h3 {
    font-size: 24px;
    line-height: 1;
  }

}

@media (max-width: 525px) {
  h1 {
    font-size: 36px;
    line-height: 1;
  }

  h2 {
    font-size: 28px;
    line-height: 1;
  }

  h3, .h3 {
    font-size: 20px;
    line-height: 1;
  }

  .deco {
    display: none;
  }
  .carousel-control-next, .carousel-control-prev {
    display: none;
}

  .about-img {
    width: 100%;
    height: 100%;
position: relative;
    right: 0px;
    bottom: 0;
    margin-top: 35px;
  }
  .about {
    padding: 100px 0px 0px 0px;
}
}