@charset "UTF-8";
.TFManim {
  opacity: 0;
}

@keyframes slideup {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes fromleft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromright {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 rgb(255, 255, 255);
  }
  to {
    box-shadow: 0 0 20px rgb(255, 255, 255);
  }
}
.fadein7 {
  animation: fadein2 2s;
  animation-fill-mode: forwards;
}

.carousel-fade {
  animation-name: carouselFade;
  animation-duration: 1.5s;
}

.carousel-left {
  animation-name: carouselLeft;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}

.anim-pulse-white {
  box-shadow: none;
  animation: pulse 1.5s ease-out 0s infinite normal forwards;
}

.anim-arrow-down {
  animation: arrowDown 1.5s ease-out 0s infinite normal forwards;
}

@keyframes carouselFade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes carouselLeft {
  from {
    opacity: 0.3;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/Avenir/Avenir-LT-Std-65-Medium_5175.ttf");
}
@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: bold;
  src: url("./fonts/Avenir/Avenir-LT-Std-95-Black_5179.ttf");
}
@font-face {
  font-family: "Avenir";
  font-style: normal;
  font-weight: lighter;
  src: url("./fonts/Avenir/Avenir-LT-Std-35-Light_5169.ttf");
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
@media only screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Avenir", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

main {
  overflow: hidden;
}

.header-primary {
  font-size: 4rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 800px) {
  .header-primary {
    font-size: 4rem;
  }
}
.header-secondary {
  font-size: 3rem;
  line-height: 1.2;
}

.paragraph {
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  max-width: 72ch;
  margin-bottom: 1rem;
}

.text-color--white {
  color: #fff;
}
.text-color--white:link, .text-color--white:visited {
  color: #fff;
  text-decoration: none;
}
.text-color--primary-dark {
  color: #000852;
}
.text-color--primary-dark:link, .text-color--primary-dark:visited {
  color: #000852;
  text-decoration: none;
}

.text-short {
  max-width: 30ch;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-overflow {
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-uppercase {
  text-transform: uppercase;
}

.margin-top-md {
  margin-top: 4rem;
}

.margin-top-big {
  margin-top: 6rem;
}

.margin-bottom-sm {
  margin-bottom: 2rem;
}

.margin-bottom-md {
  margin-bottom: 4rem;
}

.margin-bottom-big {
  margin-bottom: 8rem;
}

.margin-top-sm {
  margin-top: 2rem;
}

.padding-sides-sm {
  padding: 0 2rem;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 0 5px #979797;
  height: 8rem;
  background: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: left;
  align-items: center;
}
.navbar__content {
  height: 100%;
  max-width: 1200px;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__submenu-box {
  display: none;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .navbar__submenu-box {
    display: block;
  }
}
.navbar__submenu {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 0 5px #979797;
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.navbar__submenu--active {
  opacity: 1;
  transform: scale(1);
}
.navbar__submenu-list {
  list-style: none;
}
.navbar__submenu-list-item:not(:last-child) {
  margin-bottom: 1rem;
}
.navbar__submenu-link, .navbar__submenu-link:link, .navbar__submenu-link:visited {
  text-decoration: none;
  color: #000852;
  font-size: 2rem;
  position: relative;
}
.navbar__submenu-link--active::before, .navbar__submenu-link--active:link::before, .navbar__submenu-link--active:visited::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  margin: 0 auto;
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 50%;
  background-color: #000852;
}
.navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 600px) {
  .navbar__list {
    display: none;
  }
}
.navbar__link, .navbar__link:link, .navbar__link:visited {
  text-decoration: none;
  color: #000852;
  font-size: 2rem;
  position: relative;
  width: max-content;
}
.navbar__link::before, .navbar__link:link::before, .navbar__link:visited::before {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  height: 0.8rem;
  width: 0.8rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  background-color: #000852;
  transition: all 0.3s;
}
.navbar__link:hover::before, .navbar__link:link:hover::before, .navbar__link:visited:hover::before {
  opacity: 1;
  visibility: visible;
}
.navbar__link--active::before, .navbar__link--active:link::before, .navbar__link--active:visited::before {
  opacity: 1;
  visibility: visible;
}
.navbar__logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
}
.navbar__logo {
  height: 100%;
  width: auto;
}

.burger-btn {
  background-color: transparent;
  color: #000;
  height: 4.5rem;
  width: 4.5rem;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}

.burger-icon {
  border-radius: 100%;
  position: relative;
  display: inline-block;
  height: 2px;
  width: 2.5rem;
  background: #000852;
  top: -0.4rem;
  left: 0;
  transition: all 0.3s;
}
.burger-icon::before, .burger-icon::after {
  width: 2.5rem;
  height: 2px;
  background-color: #000852;
  display: inline-block;
}
.burger-icon::before, .burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.burger-icon::before {
  top: -0.8rem;
}
.burger-icon::after {
  top: 0.8rem;
}
.burger-icon--pressed {
  background-color: transparent;
}
.burger-icon--pressed::before {
  top: 0;
  transform: rotate(135deg);
}
.burger-icon--pressed::after {
  top: 0;
  transform: rotate(-135deg);
}

.btn,
.btn:link,
.btn:visited,
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  padding: 1rem 4rem;
  width: fit-content;
  transition: all 0.3s;
}
@media only screen and (max-width: 800px) {
  .btn,
  .btn:link,
  .btn:visited,
  .btn-outline,
  .btn-outline:link,
  .btn-outline:visited {
    font-size: 2rem;
  }
}

.btn {
  color: #fff;
  background-color: #000852;
  border: 2px solid transparent;
}
.btn:hover {
  transform: scale(1.1);
}

.btn-outline-white {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
}

.btn-outline-primary {
  color: #000852;
  background-color: transparent;
  border: 2px solid #000852;
}
.btn-outline-primary:hover {
  transform: scale(1.1);
}

.slider-container {
  overflow-x: hidden;
}

.slide-home--active {
  display: block;
}
.slide-home--hidden {
  display: none;
}

.slider-testimony {
  height: 20rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .slider-testimony {
    height: 30rem;
  }
}
.slider-testimony__control {
  background: transparent;
  color: #fff;
  font-size: 4rem;
  outline: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider-testimony__control--left {
  left: 0;
}
.slider-testimony__control--right {
  right: 0;
}

.slide-testimony {
  margin: auto;
  max-width: 600px;
}
@media only screen and (max-width: 800px) {
  .slide-testimony {
    max-width: 350px;
  }
}
@media only screen and (max-width: 600px) {
  .slide-testimony {
    max-width: 200px;
  }
}
.slide-testimony--active {
  display: block;
}
.slide-testimony--hidden {
  display: none;
}

.icon-box-rounded {
  border-radius: 50%;
  padding: 1rem;
  display: flex;
}

.icon__navbar {
  height: 3.2rem;
  width: 3.2rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 800px) {
  .icon__navbar {
    height: 3rem;
    width: 3rem;
  }
}
.icon__whatsapp {
  fill: #25D366;
}
.icon__slide, .icon__btn, .icon__footer {
  height: 3rem;
  width: 3rem;
  fill: #fff;
  vertical-align: sub;
}
.icon__hero {
  height: 4rem;
  width: 4rem;
}
.icon__form {
  height: 3rem;
  width: 3rem;
  fill: #000852;
}
.icon__list {
  height: 3rem;
  width: 3rem;
  fill: #000852;
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 5%;
  max-width: 800px;
  margin: auto;
}
.form__control {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  position: relative;
}
.form__control:hover > .form__input {
  outline: none;
}
.form__control:not(:last-child) {
  margin-bottom: 1rem;
}
.form__control--name, .form__control--phone {
  flex: 1 1 45%;
}
@media only screen and (max-width: 800px) {
  .form__control--name, .form__control--phone {
    flex: 1 1 90%;
  }
}
.form__control--message {
  flex: 1 1 100%;
}
.form__input {
  font-size: 2.5rem;
  font-family: inherit;
  color: #000852;
  padding: 1rem 1rem 1rem 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 8, 82, 0.5);
  display: block;
  transition: all 0.3s;
  width: 100%;
  border-radius: 20px;
}
.form__input::placeholder {
  color: #000852;
}
.form__input:focus, .form__input:hover, .form__input:not(.form__input:placeholder-shown) {
  background-color: white;
  outline: none;
  border: 2px solid #000852;
}
.form__label {
  font-size: 1.5rem;
  font-family: inherit;
  color: #000;
  padding: 1rem 1rem 0 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.form__label--message {
  align-self: flex-start;
}
.form__icon {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  display: inline-block;
}

.footer {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  background-color: #000852;
  padding: 2rem;
}
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
  height: 4rem;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s;
  vertical-align: middle;
}
.footer__logo:hover {
  filter: brightness(100%) invert(0);
}

.contact--bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/shared/abstract-blur-hotel-interior.jpg");
}
.contact__form {
  padding: 8rem 5%;
}
.contact__info {
  border-top: 5px solid #0008e6;
  padding: 4rem 5%;
}
.contact__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: max-content;
  grid-template-areas: "schedule . phones places";
  align-items: start;
  justify-items: left;
  row-gap: 4rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .contact__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, max-content);
    grid-template-areas: "schedule schedule" "phones   places";
    justify-items: center;
  }
}
.contact__schedule {
  grid-area: schedule;
  align-self: center;
}
.contact__logo {
  height: 8rem;
  width: auto;
}
.contact__phones {
  grid-area: phones;
}
.contact__header {
  border-bottom: 2px solid #0008e6;
  width: max-content;
}
.contact__link, .contact__link:link, .contact__link:visited {
  text-decoration: none;
  color: inherit;
  vertical-align: middle;
}
.contact__places {
  grid-area: places;
}

.phone-list {
  list-style-position: outside;
  color: #000;
}
.phone-list__header {
  max-width: 20ch;
}
.phone-list__item::marker {
  content: "〉 ";
  font-size: inherit;
  color: #000852;
}

.location-list {
  list-style: none;
  color: #000;
}
.location-list__item:not(:last-child) {
  margin-bottom: 2rem;
}
.location-list__link, .location-list__link:link, .location-list__link:visited {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
}
.location-list__link .icon__list, .location-list__link:link .icon__list, .location-list__link:visited .icon__list {
  flex-shrink: 0;
  align-self: flex-start;
}

.list {
  list-style: outside;
  font-size: 2rem;
}
.list__item::marker {
  content: "- ";
}
.list__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1000px) {
  .list {
    text-align: center;
  }
  .list + .btn-box {
    text-align: center;
  }
}

.hero-image {
  position: relative;
  height: 70vh;
}
.hero-image--home {
  display: grid;
  grid-template-columns: minmax(2rem, min-content) repeat(3, 1fr) minmax(2rem, min-content);
  grid-template-rows: 1fr 6rem 30% 5rem 1fr;
  grid-template-areas: " . .       .      .      ." " . btn     btn    btn    ." " . slider  slider slider ." " . arrow   arrow  arrow  ." " . .       .      .      .";
  justify-items: center;
  align-items: center;
  row-gap: 2rem;
}
@media only screen and (max-height: 450px) and (orientation: landscape) {
  .hero-image--home {
    grid-template-rows: 1fr 6rem 12rem 5rem 1fr;
  }
}
@media (max-device-width: 800px) and (max-height: 1280px) and (min-height: 800px) and (orientation: portrait) {
  .hero-image {
    height: 40vh;
  }
}
.hero-image--static {
  display: grid;
  grid-template-columns: minmax(2rem, min-content) repeat(3, 1fr) minmax(2rem, min-content);
  grid-template-rows: 1fr repeat(3, max-content) 1fr;
  grid-template-areas: " . .       .      .      ." " . slogan  slogan slogan ." " . btn     btn    btn    ." " . arrow   arrow  arrow  ." " . .       .      .      .";
  justify-items: center;
  align-items: center;
  row-gap: 2rem;
}
.hero-image--workers {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/LinkTrabajadores/Backround1.jpg");
}
.hero-image--company {
  background-position: 15% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/LinkEmpresas/Backround1.jpg");
}
.hero-image__gradient {
  grid-column: 1/-1;
  grid-row: 1/-1;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to left, rgba(0, 8, 82, 0.6), rgba(0, 8, 230, 0.6));
  z-index: 1;
}
.hero-image__btn-box {
  grid-area: btn;
  z-index: 2;
}
.hero-image__slider-container {
  grid-area: slider;
  align-self: start;
  z-index: 2;
  padding: 1rem 0;
}
.hero-image__header {
  font-size: 4rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  max-width: 42ch;
  line-height: 1.2;
}
@media only screen and (max-width: 800px) {
  .hero-image__header {
    font-size: 3rem;
  }
}
.hero-image__arrow {
  grid-area: arrow;
  align-self: start;
  color: #fff;
  z-index: 2;
}
.hero-image__slogan {
  grid-area: slogan;
  text-align: center;
}
.hero-image__logo {
  height: 8rem;
  width: auto;
}

.img-round {
  width: 100%;
  max-width: 48rem;
  min-width: 25rem;
}
@media only screen and (max-width: 1000px) {
  .img-round {
    width: 35%;
  }
}
.img-round-sm {
  width: 60%;
  max-width: 32rem;
  min-width: 18rem;
}
@media only screen and (max-width: 800px) {
  .img-round-sm {
    width: 25%;
  }
}

.section-logo {
  width: 50%;
  height: auto;
  max-width: 20rem;
  min-width: 15rem;
}

.img-box {
  width: 100%;
}
.img-box-flex {
  display: inline-flex;
  justify-content: center;
}

.img-row {
  width: 100%;
  height: auto;
  max-width: 42rem;
  min-width: 24rem;
}
@media only screen and (max-width: 800px) {
  .img-row {
    width: 50%;
  }
}

.section-icon {
  height: 8rem;
  width: auto;
}
.section-icon-big {
  height: 12rem;
  width: auto;
}

.img-flex-end {
  align-self: end;
  display: inline-flex;
  justify-content: center;
}

.cards-box {
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 24rem);
  grid-template-rows: max-content;
  grid-auto-rows: max-content;
  align-items: start;
  justify-items: center;
  justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 800px) {
  .cards-box {
    grid-template-columns: 24rem;
  }
}

.card {
  text-align: center;
  box-shadow: 0 0 5px 5px #979797;
  min-height: 26rem;
  padding: 2rem;
}
.card__icon {
  height: 12rem;
  width: auto;
}
.card__caption {
  font-size: 2rem;
  font-weight: bold;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fancy-line {
  width: 80%;
  height: 3px;
  margin: 2rem auto;
  background: #0008e6;
}
.fancy-line--short {
  width: 40%;
}

[class^=container] {
  max-width: 1400px;
  margin: 0 auto;
}

[class^=row] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  padding: 4rem 5%;
}

.container--no-padding {
  padding: 0;
}

.row-flex {
  flex-wrap: wrap;
  gap: 2rem 0;
  margin-left: auto;
  margin-right: auto;
}
.row-flex--reverse {
  flex-wrap: wrap-reverse;
}
.row-flex--align-end {
  align-items: flex-end;
}
.row-flex .col-min {
  flex-grow: 0;
}
.row-flex .col-1-2 {
  flex: 0 1 50%;
}
@media only screen and (max-width: 1000px) {
  .row-flex .col-1-2 {
    flex: 0 1 100%;
  }
}
.row-flex .col-60 {
  flex: 1 1 55%;
}
@media only screen and (max-width: 800px) {
  .row-flex .col-60 {
    flex: 1 1 80%;
  }
}
.row-flex .col-40 {
  flex: 1 1 35%;
}
@media only screen and (max-width: 800px) {
  .row-flex .col-40 {
    flex: 1 1 80%;
  }
}
.row-flex .col-1-of-1 {
  flex: 0 1 80%;
}

@media only screen and (max-width: 1000px) {
  .row-reverse {
    flex-direction: column-reverse;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: [center-start] repeat(4, [col] 1fr) [center-end];
  grid-template-rows: max-content;
  grid-auto-rows: max-content;
  justify-items: center;
  align-items: center;
  row-gap: 4rem;
}
@media only screen and (max-width: 800px) {
  .grid-4 {
    row-gap: 2rem;
  }
}

.grid-col-center {
  grid-column: center-start/center-end;
}
.grid-col-1-2 {
  grid-column: col/col 3;
}
@media only screen and (max-width: 1000px) {
  .grid-col-1-2 {
    grid-column: center-start/center-end;
  }
}
.grid-col-3-4 {
  grid-column: col 3/center-end;
}
@media only screen and (max-width: 1000px) {
  .grid-col-3-4 {
    grid-column: center-start/center-end;
  }
}

.about__text {
  text-align: left;
}
@media only screen and (max-width: 1000px) {
  .about__text {
    text-align: center;
  }
}

.service {
  margin-top: 4rem;
  padding: 4rem 5% 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service--workers {
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/Home/Back1-services.jpg");
}
.service--company {
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/Home/Back2-services.jpg");
}
@media only screen and (max-width: 1000px) {
  .service {
    text-align: center;
  }
}
.service__img {
  margin-top: 6rem;
}
@media only screen and (max-width: 1000px) {
  .service__img {
    margin-top: 0rem;
  }
}

.testimony {
  margin-top: 4rem;
}
.testimony-container {
  padding: 10rem 5%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-image: linear-gradient(to left, rgba(0, 8, 230, 0.5), rgba(0, 8, 230, 0.5)), url("../assets/Home/BackTestimonios.jpg");
}
@media only screen and (max-width: 1200px) {
  .testimony-container {
    padding: 8rem 5%;
  }
}
@media only screen and (max-width: 800px) {
  .testimony-container {
    padding: 4rem 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
