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

body {
  font-family: 'League Spartan', sans-serif;
  color: #fff;
}

* {
  scroll-behavior: smooth;
}

section {
  overflow: hidden !important;
}


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

.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;
}


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

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

b {
  font-weight: 700;
}

.btn {
  border-radius: 0px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 24px;
}

.btn-primary {
  background: transparent !important;
  color: #fff;
  border: 2px solid #fff !important;
  transition: all ease .25s;
}

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

.primary {
  color: #E3AC22 !important;
}

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

/* HEADER  */

.menu {
  background-color: #000000;
  -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%;
  padding: 15px 0px;
}

.navbar {
  z-index: 5;
  width: 100%;
  padding: 0.8rem 0rem;
  border-radius: 0px !important;

}


.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: white !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  padding-bottom: 0px;
  position: relative;
  transition: linear 0.2s;
  padding: 10px 24px !important;
}


.nav-link:hover {
  background-color: #3B3B3B;
}

.nav-item.active .nav-link {
  background-color: #3B3B3B;
}

/* Bs nav para el menú mobile */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  background-color: white !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);
  padding: 40px 0 15px;
}

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

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

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


/* MAIN */

.hero {
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero p {
  font-size: 26px;
  line-height: 1.2;
}

.carousel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -5;
  height: 100%;
  width: 100%;
  padding-top: 6.5rem;
}

.carousel-inner {
  height: 100%;
}

.carousel-item,
.carousel-item.active {
  height: 100%;
}

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

.words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.words-wrapper span {
  opacity: 0;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.words-wrapper .is-visible {
  position: relative;
  opacity: 1;
  -webkit-animation: push-in 0.6s;
  -moz-animation: push-in 0.6s;
  animation: push-in 0.6s;
  color: #E3AC22;
}

.words-wrapper .is-hidden {
  -webkit-animation: push-out 0.6s;
  -moz-animation: push-out 0.6s;
  animation: push-out 0.6s;
}


@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    filter: blur(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes push-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
}

@-moz-keyframes push-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
}

@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    filter: blur(7px);
  }
}


/* NOSOTROS */

.nosotros {
  background-color: #222222;
  padding: 100px 0px;
}

.text-deco {
  outline: 3px solid #E3AC22;
  padding: 50px;
  position: relative;
  outline-offset: -4px;
  font-size: 24px;
  line-height: 1.2;
  transition: .3s;
}


.text-deco-square {
  background-color: #222222;
  width: 40px;
  height: 40px;
  position: absolute;
}

.text-deco-square.top-right {
  top: 0;
  right: 0;
}

.text-deco-square.bottom-left {
  bottom: 0;
  left: 0;
}

.text-deco:hover {
  outline-color: white;
}

.title-deco {
  width: 175px;
  height: 3px;
  background-color: #E3AC22;
  margin: 20px auto;
}

/* Unidades de negocio */

.unidades-img {
  opacity: .35;
  transition: all .3s;
}

.unidades-img:hover {
  opacity: 1;
}

.hover-effect:hover h4 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.651);
}

.hover-effect h4 {
  transition: .3s;
}

.unidades-text {
  position: absolute;
  z-index: 5;
  padding: 20px;
  bottom: 0;
}

.unidades-text h4 {
  font-size: 32px !important;
  line-height: 1;
  margin-bottom: 0;
}

/* ASESORAMIENTO */

.asesoramiento {
  background-image: url(../images/asesoramiento-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0px;
  position: relative;
  z-index: 5;
  box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
}

.asesoramiento span {
  text-decoration: underline;
}

.asesoramiento .img-container {
  position: relative;
  height: 240px;
  margin-bottom: 1.5rem;
}

.asesoramiento .img-container::after {
  content: "";
  width: 120%;
  height: 3px;
  background-color: white;
  position: absolute;
  left: 0;
  bottom: 0;
}

.asesoramiento .img-container img,
.asesoramiento .img-container h4 {
  transition: .3s;
}

.asesoramiento .img-container:hover img {
  transform: scale(1.1);
}

.asesoramiento .img-container:hover h4 {
  color: #E3AC22;
}

.text-link {
  color: #E3AC22;
  font-weight: 700;
  font-size: 20px;
  transition: .3s;
  padding: 10px 16px;
}

.text-link:hover {
  background-color: #E3AC22;
  color: #000;
  padding: 10px 16px;
  text-decoration: none;
}

/* QUIENES SOMOS */

.quienes-somos {
  color: #000;
  min-height: 600px;
  background: url(../images/quienes-somos-bg.png) #fff;
  background-position: center right;
  background-position-x: 101%;
  background-size: auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  line-height: 1.3;
  position: relative;
}

.quienes-somos .container {
  position: relative;
  z-index: 2;
}

.quienes-somos p,
.quienes-somos ul li {
  font-size: 20px;
}

.quienes-somos ul {
  padding-left: 0rem;
  list-style: none;
}

.quienes-somos ul li:before {
  content: "•";
  font-size: 26px;
  color: #E3AC22;
  font-weight: 800;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: .7;
  position: absolute;
  z-index: 1;
}

/* FOOTER */
footer {
  background: #1D1D1D;
  padding: 40px 0px 100px 0px;
  position: relative;
  line-height: 1.2;
}

footer a,
footer p {
  font-size: 18px;
  transition: .3s;
}

footer a:not(.social-icons a):hover {
  color: #E3AC22 !important;
  text-decoration: none;
}


footer .social-icons a {
  font-size: 21px;
  color: #000;
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

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

.copyright {
  background: #262626;
  position: absolute;
  bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

/* FLOAT BTN */
.wsp-float {
  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: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.52);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}



/* RESPONSIVE */



@media (max-width: 1440px) {
  .quienes-somos {
    background-position-x: 160px;
  }
}

@media (max-width: 1200px) {
  .quienes-somos {
    background-position-x: 100px;
  }
}

@media (max-width: 1024px) {
  .quienes-somos {
    background-position-x: 15%;
  }
}

@media (max-width: 768px) {
  .nav-item {
    margin: 10px 0px !important;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 36px;
  }

  .unidades-text h4 {
    font-size: 24px !important;
    ;
  }

  .quienes-somos {
    background-position-x: 25%;
  }

}

@media (max-width: 525px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  .quienes-somos {
    background-position-x: 35%;
  }

  footer {
    text-align: center;
  }

  footer .info>div,
  footer .social-icons {
    justify-content: center;
  }

  .copyright {
    font-size: 16px;
  }

}

@media (max-width: 525px) {
  .navbar img {
    max-width: 260px;
  }

  .carousel {
    padding-top: 3rem;
  }

}

@media (max-width: 375px) {
  h1 {
    font-size: 40px;
  }

  .navbar img {
    max-width: 220px;
  }

}