@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500&display=swap");
/*
0 - 600px: Phone
600 - 900px: Tablet Portrait
900 - 1200px: Tablet Landscape
1800px: Big Desktop
*/
/*BREAKPOINT ARGUMENT CHOICES
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: "Work Sans", sans-serif;
  font-size: 62.5%;
}
@media (max-width: 74.94em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 75em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  background-color: #D5D5D5;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: inherit;
}

#wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#content {
  overflow: hidden;
  width: 100%;
  /* set a height because the contents are position: absolute, thus natively there's no height */
  height: fit-content;
}

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

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

.loading__screen {
  width: 100%;
  height: 100%;
  background: 50% 50%/128px auto no-repeat #1a1e21;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 1;
}

.header {
  position: fixed;
  opacity: 0;
  height: 18.5rem;
  width: 100%;
  z-index: 10;
}

.header-diff {
  position: fixed;
  opacity: 0;
  height: 18.5rem;
  width: 100%;
  z-index: 10;
  mix-blend-mode: difference;
}

.navbar {
  position: relative;
  height: 18.5rem;
  width: 100%;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 8.2rem;
}

.mobile-menu-open {
  position: relative;
  width: 5rem;
  height: 5rem;
  top: 3rem;
  left: 3rem;
}
@media (max-width: 74.94em) {
  .mobile-menu-open {
    display: none;
  }
}
@media (max-width: 56.25em) {
  .mobile-menu-open {
    display: block;
  }
}
@media (min-width: 75em) {
  .mobile-menu-open {
    display: none;
  }
}

.menu-mobile-hide {
  display: none;
}

.menu-mobile-show {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3F3F3E;
  position: fixed;
  z-index: 11;
}
.menu-mobile-show .logo {
  position: absolute;
  left: 50%;
  top: 5.2rem;
  transform: translate(-50%, 0);
}
.menu-mobile-show .menu-mobile-options {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 25%;
  transform: translate(-50%, 0);
}
.menu-mobile-show .menu-mobile-item {
  font-size: 4rem;
  color: #D5D5D5;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
.menu-mobile-show .menu-mobile-copyright {
  position: absolute;
  width: 100%;
  left: 3rem;
  bottom: 5.5rem;
  font-size: 2rem;
  color: #D5D5D5;
  text-align: left;
}

.mobile-menu-close {
  position: relative;
  width: 5rem;
  height: 5rem;
  top: 3rem;
  left: 3rem;
}

.menu ul {
  list-style-type: none;
}

.menu {
  height: 18.5rem;
  font-size: 1.5rem;
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 74.94em) {
  .menu {
    display: blobk;
  }
}
@media (max-width: 56.25em) {
  .menu {
    display: none;
  }
}
@media (min-width: 75em) {
  .menu {
    display: block;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.primary-nav {
  position: absolute;
  top: 40%;
  left: 5%;
  display: flex;
}
.primary-nav li {
  margin-right: 3rem;
}

.secondary-nav {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  display: flex;
  align-items: center;
  right: 5%;
}

.get-contact-label {
  font-size: 1.2rem;
}

.get-contact {
  border-color: #D5D5D5;
  border-width: 0.1rem;
  border-style: solid;
  width: 19rem;
  height: 5.5rem;
  margin-left: 3rem;
  border-radius: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

.get-contact:hover {
  border-color: #FFF;
  border-width: 0.2rem;
}

.menu-underline-animation {
  display: inline-block;
  position: relative;
}

.menu-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #FFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.menu-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
  background-color: #3F3F3E;
}
.footer .call-contact {
  font-size: 6rem;
  padding-left: 5%;
  padding-top: 18rem;
  color: #D5D5D5;
}
@media (max-width: 56.25em) {
  .footer .call-contact {
    font-size: 3rem;
    padding-top: 9rem;
  }
}
.footer .call-contact .get-contact-footer {
  color: #FFF;
  text-decoration: underline;
  cursor: pointer;
}

.contact-section {
  padding-top: 18.5rem;
}
@media (max-width: 56.25em) {
  .contact-section {
    padding-top: 9rem;
  }
}
.social-links {
  padding-left: 5%;
}
.social-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  left: 5%;
}
.social-links li {
  font-size: 3rem;
  color: #FFF;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .social-links li {
    font-size: 2rem;
  }
}
.social-links li .social-img {
  padding-left: 3rem;
  padding-right: 3rem;
  height: 2rem;
}

.adress {
  display: flex;
  flex-direction: column;
  padding: 5%;
}
@media (max-width: 74.94em) {
  .adress {
    position: absolute;
    font-size: 1.8rem;
    color: #A2A2A2;
    text-align: left;
  }
}
@media (max-width: 56.25em) {
  .adress {
    position: relative;
    font-size: 1.8rem;
    color: #A2A2A2;
    text-align: left;
    font-size: 2rem;
  }
}
@media (min-width: 75em) {
  .adress {
    position: absolute;
    right: 0;
    bottom: 5rem;
    font-size: 1.8rem;
    color: #A2A2A2;
    text-align: left;
  }
}
.adress .adress-street {
  font-family: "Work Sans Light", sans-serif;
}
.adress .adress-telef {
  font-family: "Work Sans Light", sans-serif;
}
.adress .adress-telef-alert {
  font-family: "Work Sans Light", sans-serif;
  font-size: 1rem;
}

.copyright-dev {
  padding-top: 4rem;
  color: #666666;
  padding-left: 5%;
}
.copyright-dev span {
  text-decoration: underline;
}

.copyright {
  padding-left: 5%;
  padding-top: 4rem;
  display: flex;
  align-items: flex-end;
  font-size: 1.6rem;
  color: #666666;
}
@media (max-width: 56.25em) {
  .copyright {
    font-size: 1rem;
  }
}
.copyright .copyright-privacity {
  margin-left: 3rem;
  color: #D5D5D5;
  text-decoration: underline;
}

.hero {
  background-color: #3F3F3E;
  z-index: 8;
}

.head {
  position: relative;
  width: 100%;
}
@media (max-width: 74.94em) {
  .head {
    height: 100vh;
  }
}
@media (max-width: 56.25em) {
  .head {
    height: 75vh;
  }
}
@media (min-width: 75em) {
  .head {
    height: 100vh;
  }
}
.head .overlay {
  background: #1a1e21;
  opacity: 0.3;
  width: 100%;
}
@media (max-width: 74.94em) {
  .head .overlay {
    height: 100vh;
  }
}
@media (max-width: 56.25em) {
  .head .overlay {
    height: 75vh;
  }
}
@media (min-width: 75em) {
  .head .overlay {
    height: 100vh;
  }
}
.head .subhead-text {
  position: absolute;
  display: none;
  bottom: 5%;
  left: 5%;
  color: #D5D5D5;
  opacity: 1;
  z-index: 2;
}
.head .subhead-text .tit {
  width: 100%;
  text-align: left;
  font-size: 2rem;
  padding-bottom: 1rem;
  font-weight: 600;
}
.head .subhead-text .subtitle {
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: lighter;
  color: #D5D5D5;
}

.head-tit {
  position: absolute;
  width: 80%;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 74.94em) {
  .head-tit {
    bottom: 5%;
    right: 5%;
  }
}
@media (max-width: 56.25em) {
  .head-tit {
    width: 90%;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 75em) {
  .head-tit {
    bottom: 5%;
    right: 5%;
  }
}

/*
.features-section {
  position: relative;
  height: 29rem;
  background-color: $bg-color;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  .container {
    position: relative;
    color: $text-light;
    width: 100%;
    height: 29rem;
    .features-tit {
      position: absolute;
      top: 50%;
      transform: translate(0%, -50%);
      font-size: 2rem;
      left: 0;
    }
    .feature-list {
      position: absolute;
      top: 50%;
      transform: translate(0%, -50%);
      width: max-content;
    }
    .item {
      font-size: 6rem;
      text-transform: uppercase;
      float: left;
    }
    .line {
      padding-left: 6rem;
      padding-right: 6rem;
      padding-top: 3rem;
      float: left;
    }
  }
}
*/
.features-project {
  z-index: 8;
}

.features-project__container {
  position: relative;
  width: 100%;
  background-color: #d5d5d5;
}
@media (max-width: 74.94em) {
  .features-project__container {
    height: 75rem;
  }
}
@media (max-width: 56.25em) {
  .features-project__container {
    height: 75rem;
  }
}
@media (max-width: 37.5em) {
  .features-project__container {
    height: 75rem;
  }
}
@media (min-width: 75em) {
  .features-project__container {
    height: 75rem;
  }
}

.features-project__container__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 74.94em) {
  .features-project__container__text {
    top: 15rem;
    width: 50%;
    padding-left: 10%;
    gap: 7rem;
  }
}
@media (max-width: 56.25em) {
  .features-project__container__text {
    top: 15rem;
    width: 50%;
    padding-left: 10%;
    gap: 4rem;
  }
}
@media (max-width: 37.5em) {
  .features-project__container__text {
    top: 5rem;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    gap: 1rem;
  }
}
@media (min-width: 75em) {
  .features-project__container__text {
    top: 15rem;
    width: 50%;
    padding-left: 10%;
    gap: 7rem;
  }
}

.title {
  color: #3F3F3E;
}
@media (max-width: 74.94em) {
  .title {
    font-size: 2rem;
  }
}
@media (max-width: 56.25em) {
  .title {
    font-size: 2rem;
  }
}
@media (max-width: 37.5em) {
  .title {
    font-size: 4rem;
  }
}
@media (min-width: 75em) {
  .title {
    font-size: 2rem;
  }
}

.subtitle {
  text-transform: uppercase;
  color: #3F3F3E;
}
@media (max-width: 74.94em) {
  .subtitle {
    font-size: 4.5rem;
  }
}
@media (max-width: 56.25em) {
  .subtitle {
    font-size: 2.5rem;
  }
}
@media (min-width: 75em) {
  .subtitle {
    font-size: 4.5rem;
  }
}

.description {
  color: #3F3F3E;
}
@media (max-width: 74.94em) {
  .description {
    font-size: 1.6rem;
  }
}
@media (max-width: 56.25em) {
  .description {
    font-size: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .description {
    font-size: 2rem;
  }
}
@media (min-width: 75em) {
  .description {
    font-size: 1.8rem;
    padding-right: 10%;
  }
}

.projet-image {
  background-image: url("/media/2/20220117-ENNE-TJA-013.jpg");
  background-size: cover;
  background-position: center;
  z-index: 8;
}
@media (max-width: 74.94em) {
  .projet-image {
    position: absolute;
    width: 50%;
    height: 82rem;
    right: 0;
    top: 15rem;
  }
}
@media (max-width: 56.25em) {
  .projet-image {
    position: absolute;
    width: 50%;
    height: 82rem;
    right: 0;
    top: 15rem;
  }
}
@media (max-width: 37.5em) {
  .projet-image {
    position: relative;
    width: 90%;
    height: 50rem;
    left: 5%;
  }
}
@media (min-width: 75em) {
  .projet-image {
    position: absolute;
    width: 50%;
    height: 82rem;
    right: 0;
    top: 15rem;
  }
}

.features-durability .container {
  position: relative;
  width: 100%;
  height: 82rem;
  background-image: url("/media/3/torresmondego35_editada.jpg");
  background-size: cover;
  background-position: middle;
}
@media (max-width: 37.5em) {
  .features-durability .container {
    height: 50rem;
  }
}
.features-durability .container .overlay {
  background: #1a1e21;
  opacity: 0.3;
  width: 100%;
  height: 82rem;
}
@media (max-width: 37.5em) {
  .features-durability .container .overlay {
    height: 50rem;
  }
}
.features-durability .container .features-durability__title {
  font-size: 5rem;
  color: #D5D5D5;
  left: 50%;
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide .overlay-img {
  background: #1a1e21;
  opacity: 0;
  width: 100%;
  height: 100vh;
}
.swiper-slide figure {
  width: 100%;
}
.swiper-slide .proj-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide .proj-name {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 2rem;
  color: #FFF;
  font-weight: 300;
}
.swiper-slide .link-project {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 92%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  border-color: #FFF;
  border-width: 0.15rem;
  border-style: solid;
  padding: 1rem;
  font-weight: 500;
  color: #FFF;
}
@media (max-width: 74.94em) {
  .swiper-slide .link-project {
    font-size: 1.2rem;
  }
}
@media (max-width: 56.25em) {
  .swiper-slide .link-project {
    font-size: 1.2rem;
  }
}
@media (max-width: 37.5em) {
  .swiper-slide .link-project {
    font-size: 1rem;
  }
}
@media (min-width: 75em) {
  .swiper-slide .link-project {
    font-size: 1.2rem;
  }
}
.swiper-slide .link-project:hover {
  background-color: white;
  color: #3F3F3E;
  transition: background 0.2s ease-in;
}

.swiper-button-prev {
  color: white !important;
}

.swiper-button-next {
  color: white !important;
}

.swiper-pagination-bullet-active {
  background-color: white !important;
}

.projects-head {
  position: relative;
  background-color: #D5D5D5;
}
.projects-head .menu-space {
  width: 100%;
  height: 19rem;
}
.projects-head .project-filters {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  height: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 2rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
.projects-head .project-img {
  margin-left: 5%;
  margin-right: 5%;
}
.projects-head .project-img img {
  object-fit: cover;
  top: 0px;
  left: 0px;
  width: 100%;
}
@media (max-width: 74.94em) {
  .projects-head .project-img img {
    height: 95vh;
  }
}
@media (max-width: 56.25em) {
  .projects-head .project-img img {
    height: 55vh;
  }
}
@media (min-width: 75em) {
  .projects-head .project-img img {
    height: 95vh;
  }
}
.projects-head .project-list-info {
  margin-top: 7rem;
  margin-bottom: 7rem;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  justify-content: space-between;
}
.projects-head .project-list-info .project-list-text .project-list-category {
  font-size: 2rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-head .project-list-info .project-list-text .project-list-category {
    font-size: 1.5rem;
  }
}
.projects-head .project-list-info .project-list-text .project-list-title {
  font-size: 4.5rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-head .project-list-info .project-list-text .project-list-title {
    font-size: 2.5rem;
  }
}
.projects-head .project-list-info .project-list-text .project-list-subtitle {
  font-size: 4.5rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-head .project-list-info .project-list-text .project-list-subtitle {
    font-size: 2.5rem;
  }
}
.projects-head .project-list-info .project-list-arrow {
  align-self: flex-end;
}
.projects-head .project-list-info .project-list-arrow .arrow {
  width: 4.2rem;
  height: 4.2rem;
}

.projects-list {
  position: relative;
  width: 100%;
}
.projects-list .projects-list-container {
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 10rem;
  width: 90%;
  display: flex;
}
@media (max-width: 74.94em) {
  .projects-list .projects-list-container {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 56.25em) {
  .projects-list .projects-list-container {
    flex-direction: column;
    margin-top: 5rem;
  }
}
@media (min-width: 75em) {
  .projects-list .projects-list-container {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
.projects-list .project-item {
  opacity: 1;
}
@media (max-width: 74.94em) {
  .projects-list .project-item {
    width: 48%;
  }
}
@media (max-width: 56.25em) {
  .projects-list .project-item {
    width: 100%;
  }
}
@media (min-width: 75em) {
  .projects-list .project-item {
    width: 48%;
  }
}
.projects-list .item {
  width: 100%;
}
.projects-list .item .proj__list__img {
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 70rem;
}
.projects-list .item .project-list0-info {
  margin-top: 7rem;
  margin-bottom: 7rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.projects-list .item .project-list0-info .project-list-text .project-list-category {
  font-size: 2rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-list .item .project-list0-info .project-list-text .project-list-category {
    font-size: 1.5rem;
  }
}
.projects-list .item .project-list0-info .project-list-text .project-list-title {
  font-size: 4.5rem;
  padding-top: 1rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-list .item .project-list0-info .project-list-text .project-list-title {
    font-size: 2.5rem;
  }
}
.projects-list .item .project-list0-info .project-list-text .project-list-subtitle {
  font-size: 4.5rem;
  color: #3F3F3E;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .projects-list .item .project-list0-info .project-list-text .project-list-subtitle {
    font-size: 2.5rem;
  }
}
.projects-list .item .project-list0-info .project-list-arrow {
  align-self: flex-end;
}
.projects-list .item .project-list0-info .project-list-arrow .arrow {
  width: 4.2rem;
  height: 4.2rem;
}

.project-details-hero {
  position: relative;
  z-index: 8;
}
@media (max-width: 74.94em) {
  .project-details-hero {
    height: 100vh;
  }
}
@media (max-width: 56.25em) {
  .project-details-hero {
    height: 75vh;
  }
}
@media (min-width: 75em) {
  .project-details-hero {
    height: 100vh;
  }
}

.project-details-gallery {
  position: relative;
  width: 100%;
}

.gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gallery:hover .overlay-img {
  opacity: 0.35;
}

.overlay-img {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #1a1e21;
  opacity: 0.3;
  width: 100%;
  height: 100vh;
  z-index: 2;
}

.gallery-container {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.gallery-container .gallery-img {
  object-fit: cover;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
}

.project-details-info {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  font-size: 8rem;
  color: #FFF;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 3;
  line-height: 8rem;
  text-align: center;
}

.image-copy {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: left;
  left: 5%;
  bottom: 5%;
}
.image-copy .tit {
  font-size: 1.8rem;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 100;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75), 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.image-copy .name {
  font-size: 2rem;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75), 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.slide {
  display: none;
}

.plant-caption {
  display: flex;
  flex-basis: column wrap;
  position: absolute;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  width: 100%;
  height: 100%;
  text-align: center;
  color: white;
  text-shadow: 0.15em 0.15em 0em black;
}

.plant-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-project {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 74.94em) {
  .image-project {
    height: 100vh;
  }
}
@media (max-width: 56.25em) {
  .image-project {
    height: 75vh;
  }
}
@media (min-width: 75em) {
  .image-project {
    height: 100vh;
  }
}

.project-details-pagination {
  position: absolute;
  z-index: 3;
  font-size: 1.5rem;
  color: #FFF;
  display: flex;
  flex-direction: row wrap;
  justify-content: center;
  width: 100%;
  bottom: 5%;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75), 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.project-details-pagination .left-pag .arrow-left {
  width: 5.7rem;
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}
.project-details-pagination .right-pag .arrow-right {
  width: 5.7rem;
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.next {
  padding-left: 6rem;
  transition: padding-left 0.5s;
}

.prev {
  padding-right: 6rem;
  transition: padding-right 0.5s;
}

.next:hover {
  padding-left: 6rem;
}

.prev:hover {
  padding-right: 6rem;
}

.active,
.dot:hover {
  opacity: 1;
}

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

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.project__description {
  width: 100%;
  background-color: #D5D5D5;
  display: flex;
  justify-content: center;
}

.project__description__content {
  width: 100%;
  padding-bottom: 5rem;
}

.project__description__content__title {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 3.5rem;
  text-align: left;
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 74.94em) {
  .project__description__content__title {
    padding-top: 13rem;
  }
}
@media (max-width: 56.25em) {
  .project__description__content__title {
    padding-top: 5rem;
    font-size: 2.5rem;
  }
}
@media (min-width: 75em) {
  .project__description__content__title {
    padding-top: 13rem;
  }
}

.project__description__homevita {
  background-image: url("/images/textura.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 65rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
}
.project__description__homevita .project__description__homevita__row1 {
  display: flex;
  flex-grow: 1;
}
@media (min-width: 75em) {
  .project__description__homevita .project__description__homevita__row1 {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 56.25em) {
  .project__description__homevita .project__description__homevita__row1 {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 74.94em) {
  .project__description__homevita .project__description__homevita__row1 {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row1 {
    flex-direction: column;
    justify-content: center;
  }
}
.project__description__homevita .project__description__homevita__row1 .homevita__tipologias {
  padding-top: 4rem;
  width: 40.5rem;
  display: flex;
  flex-direction: column;
  align-self: right;
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias {
    align-self: center;
  }
}
.project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__tit {
  font-size: 2rem;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 75em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__tit {
    text-align: right;
  }
}
@media (max-width: 56.25em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__tit {
    text-align: right;
  }
}
@media (max-width: 74.94em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__tit {
    text-align: right;
  }
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__tit {
    text-align: center;
  }
}
.project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__subtit {
  font-size: 7rem;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 75em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__subtit {
    text-align: right;
  }
}
@media (max-width: 56.25em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__subtit {
    text-align: right;
  }
}
@media (max-width: 74.94em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__subtit {
    text-align: right;
  }
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__tipologias .homevita__tipologias__subtit {
    text-align: center;
  }
}
.project__description__homevita .project__description__homevita__row1 .homevita__name {
  padding-top: 4rem;
  width: 41.05rem;
  display: flex;
  align-self: left;
  flex-direction: column;
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row1 .homevita__name {
    align-self: center;
  }
}
.project__description__homevita .project__description__homevita__row1 .homevita__name .homevita__name__1 {
  font-size: 1.8rem;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 100;
}
.project__description__homevita .project__description__homevita__row1 .homevita__name .homevita__name__2 {
  font-size: 8rem;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 200;
}
.project__description__homevita .project__description__homevita__row1 .homevita__name .homevita__name__2 .homevita__name__2__b {
  font-weight: 900;
}
.project__description__homevita .project__description__homevita__row1 .homevita__name .homevita__name__3 {
  font-size: 2rem;
  text-align: right;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 400;
}
.project__description__homevita .project__description__homevita__row2 {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.project__description__homevita .project__description__homevita__row2 .homevita__contacts {
  text-align: center;
  color: #3F3F3E;
  text-transform: uppercase;
  font-weight: 400;
}
.project__description__homevita .project__description__homevita__row2 .homevita__contacts .homevita__contacts_t1 {
  font-size: 2rem;
}
.project__description__homevita .project__description__homevita__row2 .homevita__contacts .homevita__contacts_t2 {
  padding-top: 1rem;
  font-size: 3rem;
}
@media (max-width: 37.5em) {
  .project__description__homevita .project__description__homevita__row2 .homevita__contacts .homevita__contacts_t2 {
    font-size: 2.5rem;
  }
}
.project__description__homevita .project__description__homevita__row2 .homevita__contacts .homevita__contacts_t2 span {
  font-weight: 700;
}

.project__description__content_specs {
  padding-top: 4.5rem;
  width: 100%;
  padding-left: 5%;
  padding-right: 10%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 56.25em) {
  .project__description__content_specs {
    padding-top: 2.5rem;
  }
}
.project__description__content_specs .spec {
  display: table;
}
.project__description__content_specs .spec .spec__title {
  font-size: 1.8rem;
  font-weight: 100;
  text-align: left;
  color: #3F3F3E;
}
@media (max-width: 56.25em) {
  .project__description__content_specs .spec .spec__title {
    font-size: 1.5rem;
  }
}
.project__description__content_specs .spec .spec__value {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .project__description__content_specs .spec .spec__value {
    font-size: 1.1rem;
  }
}
.project__share__social {
  width: 100%;
  height: 52rem;
  background-color: #D5D5D5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 56.25em) {
  .project__share__social {
    height: 26rem;
  }
}
.project__share__social__content {
  height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 56.25em) {
  .project__share__social__content {
    height: 11rem;
  }
}
.share__title {
  font-size: 1.8rem;
  font-weight: 100;
  text-align: left;
  color: #3F3F3E;
  text-align: center;
}

.share__subtitle {
  font-size: 4.5rem;
  font-weight: 300;
  text-align: left;
  color: #3F3F3E;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 56.25em) {
  .share__subtitle {
    font-size: 2.5rem;
  }
}
.share__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.share__links div {
  font-size: 2.5rem;
  font-weight: 200;
  text-align: left;
  color: #3F3F3E;
  text-transform: uppercase;
  text-align: center;
  margin-left: 2rem;
  margin-right: 2rem;
}

.project__next {
  position: relative;
  width: 100%;
  height: 90rem;
  background-color: aqua;
}

.project__next_image {
  position: absolute;
  width: 100%;
  height: 90rem;
  object-fit: cover;
  z-index: 1;
}

.project__next_overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.project__next_title {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 9rem;
  font-weight: 300;
  text-align: left;
  color: #D5D5D5;
  text-transform: uppercase;
  text-align: center;
}

.contact-form-hide {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
}

@keyframes fade-in-bg {
  from {
    background-color: rgba(63, 63, 62, 0);
  }
  to {
    background-color: #3f3f3e;
  }
}
.contact-form-show {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: #3f3f3e;
  animation-name: fade-in-bg;
  animation-duration: 1s;
  display: block;
}

@keyframes opacity-in-title {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.form-left {
  position: relative;
  float: left;
  display: flex;
  justify-content: center;
  animation-name: opacity-in-title;
  animation-duration: 1s;
}
@media (max-width: 74.94em) {
  .form-left {
    width: 50%;
    height: 100%;
  }
}
@media (max-width: 56.25em) {
  .form-left {
    width: 50%;
    height: 100%;
  }
}
@media (max-width: 37.5em) {
  .form-left {
    width: 100%;
    height: 30%;
  }
}
@media (min-width: 75em) {
  .form-left {
    width: 50%;
    height: 100%;
  }
}

@keyframes opacity-in-form {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.form-right {
  position: relative;
  float: left;
  display: flex;
  justify-content: flex-start;
  animation-name: opacity-in-form;
  animation-duration: 1s;
}
@media (max-width: 74.94em) {
  .form-right {
    width: 50%;
    height: 100%;
  }
}
@media (max-width: 56.25em) {
  .form-right {
    width: 100%;
    height: 50%;
  }
}
@media (min-width: 75em) {
  .form-right {
    width: 50%;
    height: 100%;
  }
}

.form-title {
  position: absolute;
  width: 80%;
  left: 10%;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.form-title .title {
  font-size: 6rem;
  font-weight: 400;
  color: #A2A2A2;
  text-align: left;
}
@media (max-width: 56.25em) {
  .form-title .title {
    font-size: 3rem;
  }
}
.form-title .sub-title {
  font-size: 6rem;
  font-weight: 400;
  color: #FFF;
  text-align: left;
}
@media (max-width: 56.25em) {
  .form-title .sub-title {
    font-size: 3rem;
  }
}
.form-fields {
  position: absolute;
  width: 80%;
  left: 10%;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.form-fields .field-100 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.form-fields .field-50-left {
  width: 48%;
  float: left;
}
.form-fields .field-50-right {
  width: 48%;
  float: right;
}
.form-fields .field-btn {
  width: 100%;
}
.form-fields .field-btn .btn-submit {
  position: relative;
  width: 19rem;
  height: 5.5rem;
  border-radius: 19rem;
  border: 1px solid #FFF;
  float: right;
  margin-left: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .form-fields .field-btn .btn-submit {
    width: 12rem;
  }
}
.form-fields .field-btn .btn-submit .lbl {
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
}

.inp {
  border: none;
  background-color: #3F3F3E;
  width: 100%;
  color: #FFF;
  font-weight: 200;
  font-size: 2rem;
  border-bottom: 1px solid #FFF;
  padding: 5px 10px;
  outline: none;
}

[placeholder]:focus::-webkit-input-placeholder {
  transition: text-indent 0.4s 0.4s ease;
  text-indent: -100%;
  opacity: 1;
}

.company__head {
  background-color: #D5D5D5;
  width: 100%;
}

.company__head__title {
  padding-top: 30rem;
  padding-bottom: 15rem;
  padding-left: 5%;
  padding-right: 5%;
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 74.94em) {
  .company__head__title {
    font-size: 8rem;
  }
}
@media (max-width: 56.25em) {
  .company__head__title {
    font-size: 4rem;
    padding-top: 20rem;
    padding-bottom: 10rem;
  }
}
@media (min-width: 75em) {
  .company__head__title {
    font-size: 8rem;
  }
}

.company__head__text {
  padding-top: 10rem;
  padding-bottom: 15rem;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.8rem;
  font-weight: 200;
  color: #3F3F3E;
}
@media (max-width: 74.94em) {
  .company__head__text {
    width: 50%;
  }
}
@media (max-width: 56.25em) {
  .company__head__text {
    width: 100%;
  }
}
@media (min-width: 75em) {
  .company__head__text {
    width: 50%;
  }
}

.company__banner {
  position: relative;
  width: 100%;
  background-image: url("../images/company_banner.jpg");
  background-size: cover;
  background-position: top;
}
@media (max-width: 74.94em) {
  .company__banner {
    height: 100vh;
  }
}
@media (max-width: 56.25em) {
  .company__banner {
    height: 50vh;
  }
}
@media (min-width: 75em) {
  .company__banner {
    height: 100vh;
  }
}
.company__banner .company__banner_overlay {
  width: 100%;
  height: 100%;
  background-color: #1a1e21;
  opacity: 0.3;
}
.company__banner .company__banner_title {
  position: absolute;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
  color: #D5D5D5;
  margin: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 74.94em) {
  .company__banner .company__banner_title {
    font-size: 9rem;
  }
}
@media (max-width: 56.25em) {
  .company__banner .company__banner_title {
    font-size: 4rem;
  }
}
@media (min-width: 75em) {
  .company__banner .company__banner_title {
    font-size: 9rem;
  }
}

.company__whatwedo {
  width: 100%;
  background-color: #3F3F3E;
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 56.25em) {
  .company__whatwedo {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.company__whatwedo .whatwedo__tit {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #D5D5D5;
}
.company__whatwedo .whatwedo__name {
  width: 100%;
  text-align: center;
  font-size: 6rem;
  color: #D5D5D5;
}
@media (max-width: 56.25em) {
  .company__whatwedo .whatwedo__name {
    font-size: 4rem;
  }
}
.company__clients {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company__clients__separatorV {
  align-self: left;
  padding-left: 10%;
  padding-right: 10%;
  height: 12rem;
  border-left: 1px solid #3F3F3E;
}

.company__clients_title {
  align-self: left;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.8rem;
  color: #3F3F3E;
}

.company__clients__list {
  align-self: left;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.company__clients__list__item {
  display: flex;
  height: 12rem;
  flex-basis: 25%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 56.25em) {
  .company__clients__list__item {
    height: 7rem;
  }
}
.company__clients__list__item .clients__img {
  filter: grayscale(1);
  cursor: pointer;
}
@media (max-width: 74.94em) {
  .company__clients__list__item .clients__img {
    height: 80%;
  }
}
@media (max-width: 56.25em) {
  .company__clients__list__item .clients__img {
    height: 80%;
  }
}
@media (min-width: 75em) {
  .company__clients__list__item .clients__img {
    height: 80%;
  }
}
.company__clients__list__item .clients__img:hover {
  filter: none;
}

.contacts__head {
  position: relative;
  background-color: #D5D5D5;
  padding-left: 5%;
  padding-right: 5%;
}
.contacts__head .contacts__adress {
  width: 100%;
  padding-top: 25rem;
  font-size: 6rem;
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .contacts__head .contacts__adress {
    font-size: 4rem;
  }
}
.contacts__head .contacts__data {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: row;
  gap: 18rem;
}
@media (max-width: 56.25em) {
  .contacts__head .contacts__data {
    gap: 7.5rem;
  }
}
.contacts__head .contacts__data .contacts__data__container {
  display: flex;
  flex-direction: column;
}
.contacts__head .contacts__data .contacts__data__container .contacts__data_tit {
  font-size: 2rem;
  color: #3F3F3E;
  text-transform: uppercase;
}
.contacts__head .contacts__data .contacts__data__container .contacts__data_value {
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 74.94em) {
  .contacts__head .contacts__data .contacts__data__container .contacts__data_value {
    font-size: 4.5rem;
  }
}
@media (max-width: 56.25em) {
  .contacts__head .contacts__data .contacts__data__container .contacts__data_value {
    font-size: 2rem;
  }
}
@media (min-width: 75em) {
  .contacts__head .contacts__data .contacts__data__container .contacts__data_value {
    font-size: 4.5rem;
  }
}
.contacts__head .contacts__data .contacts__data__container .contacts__data_value_alert {
  color: #3F3F3E;
  font-size: 1rem;
}
.contacts__head .contacts__head__scroll {
  position: absolute;
  width: 8.6rem;
  right: 5%;
  bottom: -2px;
}

.contacts__map {
  position: relative;
  display: none;
  height: 80rem;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 10rem;
  background: linear-gradient(0deg, #3F3F3E 50%, #D5D5D5 50%);
}
.contacts__map .contacts__map__img {
  z-index: 10;
  position: absolute;
  left: 5%;
  height: 80rem;
  width: 80rem;
  background-image: url("../images/mapa.jpg");
  background-size: cover;
  background-position: top;
}
.contacts__map .contacts__map__img__right {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  height: 40rem;
}
.contacts__map .get-directions {
  z-index: 10;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: #3F3F3E;
  border-width: 0.1rem;
  border-style: solid;
  width: 19rem;
  height: 5.5rem;
  border-radius: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

.politica__head {
  position: relative;
  background-color: #D5D5D5;
  padding-left: 5%;
  padding-right: 5%;
}
.politica__head .politica {
  width: 100%;
  padding-top: 25rem;
  font-size: 6rem;
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .politica__head .politica {
    font-size: 4rem;
  }
}
.politica__head .politica__data {
  width: 80%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: row;
  gap: 18rem;
  font-size: 1.5rem;
  color: #3F3F3E;
}
@media (max-width: 56.25em) {
  .politica__head .politica__data {
    gap: 7.5rem;
  }
}
.politica__head .politica__data .contacts__data__container {
  display: flex;
  flex-direction: column;
}
.politica__head .politica__data .contacts__data__container .contacts__data_tit {
  font-size: 2rem;
  color: #3F3F3E;
  text-transform: uppercase;
}
.politica__head .politica__data .contacts__data__container .contacts__data_value {
  color: #3F3F3E;
  text-transform: uppercase;
}
@media (max-width: 74.94em) {
  .politica__head .politica__data .contacts__data__container .contacts__data_value {
    font-size: 4.5rem;
  }
}
@media (max-width: 56.25em) {
  .politica__head .politica__data .contacts__data__container .contacts__data_value {
    font-size: 2rem;
  }
}
@media (min-width: 75em) {
  .politica__head .politica__data .contacts__data__container .contacts__data_value {
    font-size: 4.5rem;
  }
}
.politica__head .contacts__head__scroll {
  position: absolute;
  width: 8.6rem;
  right: 5%;
  bottom: -2px;
}

.contacts__map {
  position: relative;
  display: none;
  height: 80rem;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 10rem;
  background: linear-gradient(0deg, #3F3F3E 50%, #D5D5D5 50%);
}
.contacts__map .contacts__map__img {
  z-index: 10;
  position: absolute;
  left: 5%;
  height: 80rem;
  width: 80rem;
  background-image: url("../images/mapa.jpg");
  background-size: cover;
  background-position: top;
}
.contacts__map .contacts__map__img__right {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  height: 40rem;
}
.contacts__map .get-directions {
  z-index: 10;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: #3F3F3E;
  border-width: 0.1rem;
  border-style: solid;
  width: 19rem;
  height: 5.5rem;
  border-radius: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

.homevita__head {
  position: relative;
  background-color: #D5D5D5;
  padding-left: 5%;
  padding-right: 5%;
}
.homevita__head .homevita__title {
  width: 100%;
  padding-top: 25rem;
  font-size: 6rem;
  color: #3F3F3E;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 56.25em) {
  .homevita__head .homevita__title {
    font-size: 4rem;
  }
}
.homevita__head .homevita__subtitle {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-size: 3rem;
  color: #3F3F3E;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 56.25em) {
  .homevita__head .homevita__subtitle {
    font-size: 2rem;
  }
}

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