/***
 *
 * RRT @cgomez 2021
 *
 */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
/* ==========================================================================
   @zkar13
   ========================================================================== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOkCnqEu92Fr1MmgWxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Me5Q.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmYUtvAw.ttf) format('truetype');
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
:root {
  font-size: 16px;
}
html::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#c8522b), to(#79321a));
  background: linear-gradient(180deg, #c8522b, #79321a);
  border-radius: 30px;
  box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}
html::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #201c29, #201c29 1px, #100e17 0, #100e17);
}
html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
body {
  margin: 0;
  --color-text: #111;
  --color-number: #999;
  --color-link: #1352d1;
  --color-link-hover: #111;
  color: var(--color-text);
  background: #eee url(../img/background.jpg) no-repeat center center fixed;
  background-size: container;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
}
a:hover {
  color: var(--color-link-hover);
  outline: none;
}
/* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
  /* Provide a fallback style for browsers
	 that don't support :focus-visible */
  outline: none;
  background: lightgrey;
}
a:focus:not(:focus-visible) {
  /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
  background: transparent;
}
a:focus-visible {
  /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
  outline: 2px solid red;
  background: transparent;
}
.link {
  cursor: pointer;
  font-size: 16px;
  position: relative;
  white-space: nowrap;
  color: var(--color-text);
}
.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}
.link::before {
  content: "";
  /* show by default */
}
.link--elara::before {
  transform-origin: 50% 100%;
  transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara:hover::before {
  transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}
.link--elara span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}
.link--elara:hover span {
  transform: translate3d(0, -2px, 0);
}
.link--metis {
  font-family: bely-display, sans-serif;
  text-transform: lowercase;
}
.link--metis::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.link--metis:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
header {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 9;
}
@media only screen and (max-width: 529px) {
  header {
    height: auto;
    text-align: center;
  }
}
header a {
  display: inline-block;
}
header nav {
  height: 100%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 529px) {
  header nav ul {
    overflow: auto;
    padding: 25px;
  }
}
header nav ul li {
  margin-right: 18px;
}
header nav ul li a {
  font-size: 16px;
  font-weight: 600;
}
.headroom {
  will-change: transform;
  transition: all 200ms linear;
}
.headroom--top {
  opacity: 0;
  transform: translateY(-100%);
}
.headroom--pinned {
  transform: translateY(0%);
}
.headroom--unpinned {
  transform: translateY(-100%);
}
footer {
  background: #2a2422;
  color: #fff;
  border-top: 5px solid #ff5439;
  padding: 35px 0;
}
footer iframe {
  width: 100%;
}
.swiper-container {
  width: 100%;
  height: 100vh;
  background: #eee;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 529px) {
  .swiper-slide img {
    width: 50%;
  }
}
.slide-1 {
  background: #ccc url(../img/slider-1.jpg) no-repeat center center;
  background-size: cover;
}
.slide-2 {
  background: #ccc url(../img/slider-2.jpg) no-repeat center center;
  background-size: cover;
}
.slide-3 {
  background: #ccc url(../img/slider-3.jpg) no-repeat center center;
  background-size: cover;
}
.slide-4 {
  background: #ccc url(../img/slider-4.jpg) no-repeat center center;
  background-size: cover;
}
.section {
  position: relative;
  padding: 35px;
}
@media only screen and (max-width: 529px) {
  .section {
    padding: 15px;
  }
}
.section-body {
  padding: 35px;
}
@media only screen and (max-width: 529px) {
  .section-body {
    padding: 15px;
  }
}
.section-title {
  text-align: center;
  margin: 25px 0;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  margin: 25px 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 4px solid #ff5439;
  padding-bottom: 6px;
}
.galeria {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: #fff;
}
@media only screen and (max-width: 529px) {
  .galeria {
    grid-template-columns: 1fr;
  }
}
.galeria.galeria-2columnas {
  grid-template-columns: 1fr 1fr;
}
.galeria-img {
  width: 100%;
  background: #dcdcdc;
  padding: 15px;
  border-radius: 10px;
  box-shadow: inset 0px 0px 0px 5px #ffd7d1;
  animation: flipInX 2s linear;
  transition: all 0.2s linear;
  transform: translateY(0);
}
.galeria-img:hover {
  transform: translateY(-5px);
  box-shadow: inset 0px 0px 0px 5px #ff5439;
}
.servicios {
  background: #fff;
  display: flex;
  padding: 35px;
}
.servicios-title {
  font-weight: 900;
  font-size: 32px;
  margin: 15px 0 35px 0;
  text-transform: uppercase;
}
.trabajos {
  overflow-x: auto;
  white-space: pre-line;
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media only screen and (max-width: 529px) {
  .trabajos {
    flex-direction: column;
  }
}
.trabajo {
  background: #eee;
  color: #000;
  border-radius: 5px;
  width: 320px;
  white-space: normal;
  border: 2px solid #c9c9c9;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 529px) {
  .trabajo {
    width: 100%;
  }
}
.trabajo:hover {
  background-color: #ff5439;
}
.trabajo:hover .trabajo-titulo {
  color: #100e17;
}
.trabajo-titulo {
  color: #dc3545;
  font-weight: 900;
  text-align: center;
  font-size: 18px;
  min-height: 2em;
  margin: 15px 0;
  transition: all 0.1s linear;
}
.trabajo ul {
  margin: 0;
  padding: 15px;
  list-style: none;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.trabajo ul li {
  margin-bottom: 12px;
  font-weight: 600;
}
#contacto {
  background: #fff;
}
#cotizar {
  background: #fff;
}
.sc-7dvmpp-1.dfBDQI {
  display: none !important;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
