/************************************************************************************

    INITIALIZE

************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Raleway:wght@400;500;600;700;800&display=swap");
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style-position: inside;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

/************************************************************************************

    CORE

************************************************************************************/
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #242424;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: #111f25;
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
}
.skip-link:focus {
  top: 16px;
}

*:focus-visible {
  outline: 3px solid #2edcff;
  outline-offset: 2px;
}

::-moz-focus-inner {
  border: 0;
}

h1.hero__headline {
  font-weight: 500;
}

/************************************************************************************

    NAVIGATION

************************************************************************************/
.site-header {
  position: fixed;
  width: 100%;
  z-index: 10000;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.nav-on-scroll {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.content-site-header {
  max-width: 1348px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 114px;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  .content-site-header {
    padding: 48px 64px;
  }
}
@media (max-width: 840px) {
  .content-site-header {
    padding: 48px 40px;
  }
}

.logo {
  width: 190px;
  height: 44px;
  opacity: 0;
  pointer-events: none;
}

.nav-main ul {
  display: flex;
  gap: 64px;
}
.nav-main a,
.nav-main button.contacto_nav {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 40px;
  color: #242424;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1060px) {
  .nav-main ul {
    gap: 40px;
  }
  .nav-main a {
    letter-spacing: 1px;
  }
}
@media (max-width: 840px) {
  .nav-main ul {
    gap: 32px;
  }
  .nav-main a {
    letter-spacing: 0px;
  }
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: url("images/icon-menu.svg") no-repeat center/contain;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header.nav-is-open .nav-toggle {
  background-image: url("images/icon-menu-close.svg");
}

@media (max-width: 730px) {
  .content-site-header {
    padding: 24px 32px;
  }

  .logo {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-main {
    display: none;
  }
  .nav-main ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 48px;
    padding: 0 40px;
  }
  .nav-main a {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 2px;
  }

  .site-header.nav-is-open {
    height: 100dvh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
  }
  .site-header.nav-is-open .nav-main {
    display: block;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
  }
  .site-header.nav-is-open .nav-main a {
    font-size: 20px;
  }
}
/************************************************************************************

    HERO

************************************************************************************/
.hero {
  height: 1000px;
  overflow: hidden;
  background: url("images/bg-hero.jpg") no-repeat center bottom;
  background-size: cover;
}

.hero__content {
  max-width: 1348px;
  justify-content: space-between;
  padding: 240px 80px 0;
  margin: 0 auto;
}

.hero__logo {
  width: 430px;
  height: 100px;
  background: url("images/logo-full-xinergia.svg") no-repeat center center;
  background-size: cover;
  margin-bottom: 160px;
}

.hero__headline {
  max-width: 640px;
  width: 72%;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 40px;
}
.hero__headline strong {
  font-weight: 800;
}

.hero__subline {
  max-width: 640px;
  width: 72%;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #242424;
  margin: 40px 0;
  font-weight: 500;
}
.hero__subline strong {
  font-weight: 800;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 60px 24px 24px;
  background: #111f25 url("images/icon-arrow.svg") no-repeat center right 24px;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 32px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero__cta:hover {
  background: #1e3641 url("images/icon-arrow.svg") no-repeat center right 24px;
  opacity: 1;
}

@media (max-width: 729px) {
  .hero {
    height: 800px;
  }

  .hero__content {
    max-width: auto;
    justify-content: space-between;
    padding: 80px 8% 0;
    margin: 0 auto;
  }

  .hero__headline {
    font-size: 18px;
    line-height: 24px;
    max-width: auto;
    width: auto;
  }

  .hero__cta {
    font-size: 18px;
    padding: 16px 60px 16px 16px;
  }
}
/************************************************************************************

    ABOUT

************************************************************************************/
.about__image {
  background: url("images/pic-about.jpg") no-repeat center 50%/cover;
}

.panoramic {
  background: url("images/pic-sector.jpg") no-repeat center 50%/cover;
}

.about {
  background: #ffffff;
  padding: 200px 46px 120px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 46px;
}
.about__intro {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 200px;
  align-items: start;
  margin-bottom: 120px;
}
.about__media .about__image {
  width: 100%;
  height: 687px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.about__media .about__caption {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  background: #f7f7f7;
  padding: 24px;
  border-radius: 16px;
}
.about__text h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 48px;
}
.about__text p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  padding: 0 0 40px;
}
.about__text p strong {
  font-weight: 700;
}

@media (max-width: 1180px) {
  .about__intro {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 80px;
    align-items: start;
  }
}
.stats-bar {
  max-width: 100%;
  margin: 100px 4px;
  height: 1px;
  background: #1a212b;
}

.ambitos {
  text-align: center;
  margin-bottom: 100px;
}
.ambitos__title {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 64px;
}
.ambitos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.ambito-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-right: 24px;
  text-align: left;
}
.ambito-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #222;
}
.ambito-card__text {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.ambito-card__text strong {
  font-weight: 700;
}

.panoramic {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 100px;
}

.sectores {
  text-align: center;
  margin-bottom: 120px;
}
.sectores__title {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #242424;
  margin-bottom: 64px;
}
.sectores__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.sector-card {
  border: 1px solid #90a8b9;
  border-radius: 8px;
  padding: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background: no-repeat top 28px right 20px;
  background-size: 16px;
  transition: all 0.25s ease-in-out;
}
.sector-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  padding: 0 0 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #242424;
}
.sector-card__desc {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #242424;
}

.sector-card:hover {
  background-color: #F4F3F2;
}

.icon-res {
  background-image: url("images/icon-res.svg");
}

.icon-ind {
  background-image: url("images/icon-ind.svg");
}

.icon-tra {
  background-image: url("images/icon-tra.svg");
}

.icon-ter {
  background-image: url("images/icon-ter.svg");
}

.icon-agr {
  background-image: url("images/icon-agr.svg");
}

.ambito-card__icon {
  background: no-repeat center center;
  background-size: 20px;
}

.icon-past {
  background-image: url("images/icon-past.svg");
}

.icon-present {
  background-image: url("images/icon-present.svg");
}

.icon-future {
  background-image: url("images/icon-future.svg");
}

@media (max-width: 960px) {
  .ambitos__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ambito-card {
    padding: 16px 24px 16px 8px;
    display: flex;
    align-items: center;
  }
  .ambito-card__icon {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 1242px) {
  .sectores__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-card {
    min-height: 280px;
  }
}
@media (max-width: 800px) {
  .about__intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__media {
    order: 1;
  }

  .about__image {
    height: 320px !important;
  }

  .sectores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .about__image {
    height: 200px !important;
  }

  .ambitos__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sectores__grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: auto;
  }

  .panoramic {
    height: 200px;
  }
}
/************************************************************************************

    PROCESS

************************************************************************************/
.process {
  background: #16181f;
  color: #ffffff;
  padding-bottom: 200px;
}
.process .process-content {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 46px;
  padding-top: 200px;
  padding-bottom: 200px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 0 80px;
  align-items: start;
}
.process__header {
  position: sticky;
  top: 200px;
}
.process__header h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 48px;
}
.process__header p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #fdfdfd;
}

.timeline {
  display: flex;
  flex-direction: column;
  padding-top: 130px;
}
.timeline__step {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
}
.timeline__indicator {
  align-self: stretch;
}
.timeline__number {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  padding: 16px 0;
  color: #757575;
  text-align: center;
  width: 100%;
  position: sticky;
  top: 300px;
  background: #16181f;
  z-index: 1;
}
.timeline__number--active {
  color: #2edcff;
}
.timeline__line {
  position: fixed;
  width: 2px;
  background: #424242;
  overflow: hidden;
  pointer-events: none;
  display: none;
}
.timeline__line__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #2edcff;
}
.timeline__content {
  padding: 6px 0 160px;
  max-width: 520px;
}
.timeline__content h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.timeline__content h3 .accent {
  color: #2edcff;
}
.timeline__content p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #f5f5f5;
}

.timeline__step:last-child .timeline__content {
  padding-bottom: 0;
}

@media (max-width: 1100px) {
  .process .process-content {
    grid-template-columns: 380px 1fr;
    gap: 0 60px;
  }
}
@media (max-width: 900px) {
  .process .process-content {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 60px 0;
  }
  .process__header {
    position: static;
  }

  .timeline__number {
    top: 90px;
  }
  .timeline__step {
    grid-template-columns: 80px 1fr;
  }
  .timeline__content {
    padding-bottom: 80px;
  }

  .timeline__step:last-child .timeline__content {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .timeline__step {
    grid-template-columns: 60px 1fr;
  }
  .timeline__number {
    font-size: 32px;
    padding: 12px 0;
  }
  .timeline__content {
    padding-bottom: 60px;
    padding-top: 12px;
  }
}
/************************************************************************************

    COMPROMISO

************************************************************************************/
.compromiso {
  height: 1080px;
  background: url("images/bg-commitment.jpg") no-repeat center center/cover;
}
.compromiso__content {
  padding: 240px 160px 0;
  max-width: 1440px;
  margin-inline: auto;
}
.compromiso__label {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 24px;
  color: #5c5c5c;
  margin-bottom: 24px;
}
.compromiso__quote {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -2px;
  color: #181818;
  max-width: 1200px;
  margin-bottom: 40px;
}
.compromiso__box {
  max-width: 664px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}
.compromiso__box p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.32px;
  color: #242424;
}

@media (max-width: 940px) {
  .compromiso {
    height: 800px;
  }
  .compromiso__content {
    padding: 200px 40px 0;
  }
  .compromiso__label {
    font-size: 20px;
  }
  .compromiso__quote {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2px;
  }
}
@media (max-width: 600px) {
  .compromiso {
    height: 720px;
  }
  .compromiso__content {
    padding: 120px 24px 0;
  }
  .compromiso__label {
    font-size: 20px;
  }
  .compromiso__quote {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
  }
}
/************************************************************************************

    MODAL

************************************************************************************/
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(134deg, #f3f9fc 20%, white 80%);
  border-radius: 8px;
  padding: 48px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.is-active .modal {
  transform: translateY(0);
}
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.modal__title {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 36px;
  color: #242424;
  border-bottom: 1px solid #242424;
  padding-bottom: 0px;
}
.modal__title .accent {
  color: #242424;
  font-weight: 700;
  text-transform: none;
}
.modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: url("images/icon-menu-close.svg") no-repeat center center/28px;
  font-size: 24px;
  line-height: 1;
  color: #242424;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
  border: none;
  left: 12px;
  position: relative;
}
.modal__close:hover {
  opacity: 0.6;
}
.modal__text {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.32px;
  color: #242424;
  margin-bottom: 16px;
}
.modal__text strong {
  font-weight: 700;
}
.modal__form {
  margin-top: 32px;
}
.modal__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.modal__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.modal__field label {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #242424;
}
.modal__field input,
.modal__field textarea {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #242424;
  background: #ffffff;
  border: 1px solid #6b8394;
  border-radius: 4px;
  padding: 8px;
  transition: border-color 0.2s ease;
}
.modal__field input:focus-visible,
.modal__field textarea:focus-visible {
  border-color: #242424;
  outline: 3px solid #2edcff;
  outline-offset: 1px;
}
.modal__field textarea {
  resize: vertical;
  min-height: 160px;
}
.modal__form-row .modal__field {
  margin-bottom: 0;
}
.modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.modal__btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.modal__btn:hover {
  opacity: 0.8;
}
.modal__btn--cancel {
  background: #d9d9d9;
  color: #242424;
}
.modal__btn--submit {
  background: #111f25;
  color: #ffffff;
}

@media (max-width: 600px) {
  .modal {
    padding: 32px 24px;
  }
  .modal__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal__actions {
    grid-template-columns: 1fr 1fr;
  }
}
/************************************************************************************

    FOOTER

************************************************************************************/
.footer {
  background: #1a212b;
  padding: 200px 80px 100px;
}
.footer__inner {
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 48px 0;
  align-items: start;
}
.footer__brand .footer__logo {
  width: 285px;
  height: 48px;
  margin-bottom: 15px;
  background: url("images/logo-xinergia-inv.svg") no-repeat center center/cover;
}
.footer__brand .footer__tagline {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cadcdc;
  max-width: 340px;
}
.footer__contact {
  text-align: right;
}
.footer__contact .footer__contact-label {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}
.footer__contact .footer__phone {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.3px;
  color: #74d1f1;
}
.footer__copy {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a9a9a;
}
.footer__social {
  justify-self: end;
}
.footer__social ul {
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer__social a {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 40px;
}

#language-sel {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  background: none;
  border-radius: 6px;
  border: 1px solid #cadcdc;
  color: #ffffff;
  padding: 0 8px;
  height: 30px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .footer {
    padding: 100px 24px 60px;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .footer__brand {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand .footer__tagline {
    max-width: 100%;
  }
  .footer__contact {
    display: none;
  }
  .footer__social {
    order: 2;
    justify-self: auto;
  }
  .footer__social ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer__copy {
    order: 3;
  }
}
@media (max-width: 480px) {
  .footer__social ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
/************************************************************************************

    REDUCED MOTION (WCAG 2.3.3)

************************************************************************************/
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}
