@charset "UTF-8";
@font-face {
  font-family: "GRegular";
  src: url(../fonts/Gantari-Regular.ttf);
}
@font-face {
  font-family: "GBold";
  src: url(../fonts/Gantari-Bold.ttf);
}
@font-face {
  font-family: "GBlack";
  src: url(../fonts/Gantari-Black.ttf);
}
@font-face {
  font-family: "GMedium";
  src: url(../fonts/Gantari-Medium.ttf);
}
@font-face {
  font-family: "GLight";
  src: url(../fonts/Gantari-Light.ttf);
}
@font-face {
  font-family: "GSBold";
  src: url(../fonts/Gantari-SemiBold.ttf);
}
div {
  font-family: "GRegular";
}

.display-1,
h5,
h3,
h2, h1, p, ul, li, span, small {
  cursor: default;
}

b {
  font-family: "GBold";
}

strong {
  font-family: "GBlack";
}

.fw-light {
  font-family: "GLight";
}

.fw-regular {
  font-family: "GRegular";
}

.fw-bold {
  font-family: "GSBold";
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-header .nav-link {
  color: #000;
}
.main-header .nav-link:hover {
  color: #ebc33e;
}
.main-header .btn-top {
  border-color: #ebc33e;
  color: #ebc33e;
}
.main-header .btn-top:hover {
  background: #ebc33e;
  color: #fff;
}

/* Sección principal */
.section-principal {
  min-height: 90vh;
  position: relative;
}
.section-principal .circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.section-principal .circles div {
  position: absolute;
  border-radius: 50%;
  background: #ebc33e;
  opacity: 0.3;
}
.section-principal .container {
  position: relative;
  z-index: 1;
}

/* Fondo negro */
.section-black {
  background: #000;
  color: #fff;
}

/* Mosaico */
.section-mosaico {
  height: 200vh;
  position: relative;
}
.section-mosaico .floating-images img {
  position: absolute;
  border-radius: 12px;
}

/* Footer */
.footer {
  overflow: hidden;
}
.footer .footer-floating {
  position: absolute;
  top: -50px;
  left: 10%;
  opacity: 0.2;
}

.animate {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.section-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .nav-link {
  font-family: "GRegular";
  font-size: 0.85rem;
  position: relative;
}
header nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 3px;
  -webkit-transition: width 700ms ease-in-out;
  transition: width 700ms ease-in-out;
  background-color: #ebc33e;
}
header nav .nav-link:hover:after {
  width: 100%;
}
header nav .nav-link.active {
  font-family: "GSBold";
}

.btn-underline-warning {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  font-family: "GSBold";
  padding-bottom: 4px;
  font-size: 1rem;
  border-bottom: 1px solid #ebc33d;
}
.btn-underline-warning img {
  width: 8px;
}
.btn-underline-warning:hover {
  color: #ebc33e;
  letter-spacing: 0.3px;
}
.btn-underline-black {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  font-family: "GSBold";
  color: #000;
    font-size: 1rem;
  border-bottom: 1px solid #ebc33d;
  text-decoration: none;
  /* padding-bottom: 4px; */
}
.btn-underline-black img {
  width: 8px;
}
.btn-underline-black:hover {
  color: #ebc33e;
  letter-spacing: 0.3px;
}
#mosaico picture img {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
#mosaico picture img:hover {
  -webkit-filter: grayscale(10);
          filter: grayscale(10);
}

#servicios #listado .col {
  border-left: 1px solid rgb(250, 250, 250) !important;
}
#servicios #listado .col:first-of-type {
  border-left: unset !important;
}

#testimonios .orbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
#testimonios .orbs picture {
  max-width: 50px;
  max-height: 50px;
  width: 50px;
  height: 50px;
  margin-left: -10px;
}
#testimonios .orbs picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
#testimonios .orbs picture img:hover {
  rotate: 27deg;
}
#testimonios figure {
  margin-left: -10px;
  width: 50px;
  height: 50px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  background-color: #ebc33e;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
#testimonios figure img {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
#testimonios figure:hover img {
  rotate: 67deg;
}

#clientes .logo {
  margin: 0px;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  border: 1px solid #fcfcfc;
}
#clientes .logo img {
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
  width: 100px;
  -webkit-transition: -webkit-filter 500ms ease-in-out;
  transition: -webkit-filter 500ms ease-in-out;
  transition: filter 500ms ease-in-out;
  transition: filter 500ms ease-in-out, -webkit-filter 500ms ease-in-out;
}
#clientes .logo:hover {
  background-color: #ebc33e;
}
#clientes .logo:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}