@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/*COLORES*/
:root {

  --light-grey: #F3F2F1;
  --dark-grey: #64666B;
  --gold: #D7D2C2;
  --blue: #3E4147;
  --black: #2A2A29;

}

::-moz-selection {
  /* Code for Firefox */
  color: var(--light-grey);
  background: var(--blue);
}

::selection {
    color: var(--light-grey);
    background: var(--blue);
}

.bg-black{
  background: var(--black);
  color: var(--light-grey);
}

.bg-blue {
  background: var(--blue);
  color: var(--light-grey);
}

.bg-gold {
  background: var(--gold);
  color: var(--black);
}

.bg-grey {
  background: var(--light-grey);
  color: var(--black);
}

.text-dark-grey{
  color: var(--dark-grey);
}

body{
  font-family: 'Space Grotesk', sans-serif;
  background: var(--light-grey);
  color: var(--black);
}

h1 {
  font-size: 182px;
}

h2 {
  font-size: 121px;
  line-height: 1;
}

@media (max-width:1650px) {
  h2 {
    font-size: 100px;
  }
}

h3 {
  font-size: 81px;
}

h4 {
  font-size: 54px;
  font-weight: 400;
}

h5 {
  font-size: 36px;
  font-weight: 400;
}

h6 {
  font-size: 24px;
}

p {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

@media (min-width: 1400px){
  .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl{
      max-width: 1550px;
    }
}

@media (min-width: 1200px){
  .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
      max-width: 1200px;
    }
}


.fw-regular{
  font-weight: 300;
}
/*HERO*/
.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 95%;
}

@media(max-width: 64em) {
  .wrapper {
    max-width: 90%;
  }
}

.wrapper.navbar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-style: none solid solid;
  border-width: 1px;
  border-color: rgba(243, 246, 252, 0) #f3f6fc #f3f6fc;
}

.wrapper.no-padding {
  padding-right: 0px;
  padding-left: 0px;
}

.stripe-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: auto;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.stripe-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pin-stripe {
  width: 2px;
  background-color: #6C6C6C3D;
  opacity: .3;
}

.pin-stripe.white {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-wrapper {
  position: relative;
  z-index: 15;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.hero-section{
  position: relative;
  z-index: 6;
  overflow: hidden;
}


.letter {
  display: inline-block;
  line-height: 1em;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transform: translateY(-50px);
}

.hero-wrapper{
  background-image: url("../img/prueba/bg2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  color: var(--light-grey);
  padding-top: 1rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: .8rem;
  height: 95vh;
}

@media (max-width:64em) {
  .hero-wrapper{
    background-attachment:inherit;
  }
}

.menu-button{
  display: none !important;
}

.hero-wrapper hr{
  height: 3px;
  opacity: 1;
}

.hero-wrapper h1{
  letter-spacing: -4px;
  font-size: 121px;
  line-height: 1;
}

.hero-wrapper a{
  color: white;
  text-decoration: none;
}

.links ul li {
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
  margin-right: 6px;
  margin-bottom: 20px;
}

.links ul li a {
  color: white;
  text-decoration: none;
}

.links ul li span {
  margin-left: 15px;
  font-size: 12px;
  position: relative;
  top: -3px;
}

.social ul li {
  display: inline-block;
  margin-left: 15px;
}

.social ul li a {
  color: white;
}

.social ul li a ion-icon {
  font-size: 20px;
}

section{
  position: relative;
  z-index: 6;
  display: block;
}

.section-mb-3 {
  margin-bottom: 5rem;
}

@media (max-width:64em) {
  .section-mb-3{
    margin-bottom: 2rem;
  }
  .big-letter{
    margin-bottom: 0!important;
  }

  .projects-section{
    padding-top: 2rem!important;
  }
}

.section-mb-4 {
  margin-bottom: 10rem;
}

.section-mb-5{
  margin-bottom: 15rem;
}

@media (max-width:64em) {
  .section-mb-4 {
    margin-bottom: 5rem;
  }

  .section-mb-5 {
    margin-bottom: 2rem;
  }
}

.footer {
  position: relative;
  z-index: 15;
}

/*FOTOS*/
.fotosSwiper .swiper-wrapper {
  align-items: center;
}

.fotosSwiper .swiper-wrapper{
  cursor: url('../img/d.png'), auto !important;
}

.fotosSwiper .swiper-pagination{
  display: none;
}

.fotosSwiper .swiper-button-prev,
.swiper-rtl .swiper-button-next{
  left: 40px;
}

.fotosSwiper .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 40px;
}

.fotosSwiper .swiper-button-next,
.fotosSwiper .swiper-button-prev{
  width: 50px;
  height: 50px;
  background: #3E4147;
  color: var(--light-grey);
}

.fotosSwiper .swiper-button-next::after,
.fotosSwiper .swiper-button-prev::after {
  font-size: 20px !important;
}

/*PROCESO*/
.process-section .container {
  position: relative;
  z-index: 8;
  color: var(--light-grey);
}

.process-section .container .row{
  padding-bottom: 2.5rem;
}

.process-section .container h1{
  transform: rotate(-90deg);
  -webkit-text-stroke: 1px var(--dark-grey);
  color: transparent;
  position: absolute;
  top: -110px;
  right: -190px;
}
.process-section .grid-image{
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url('../img/services-bg.png');
}

/*Value SECTION*/
.smallToBig{
  width: 100%;
  background: var(--blue);
  height: 100vh;
}
.bigSmall {
  transition: all 4s ease-in-out;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: 50vh;
}


.scroll-left {
  width: 8000px;
  left: -10%;
}

.scroll-left span{
  -webkit-text-stroke: 1px var(--dark-grey);
  color: transparent;
}

.scroll-right {
  width: 8000px;
  left: -50%;
}

/*PROJECTS SWIPER
.projectsSwiper .swiper-wrapper{
  padding-left: 70px;
}
*/
.projectsSwiper .swiper-pagination {
  display: none;
}

@media (max-width:1300px) {
  .projects-section .ps-3{
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
  }
  .projectsSwiper .swiper-wrapper {
      padding-left: 0px;
    }
}

.projectsSwiper .swiper-slide{
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  color: var(--light-grey);
  display: flex;
  justify-content: end;
  align-items: flex-end;
  text-decoration: none;
}

.projectsSwiper .swiper-slide h6{
  text-transform: uppercase;
  transform: rotate(-90deg) translate(160px, 90px);
  position: relative;
  z-index: 2;
  transition: all .3s ease-in-out;
  font-size: 30px;
  margin-bottom: 0;
}

.projectsSwiper .swiper-slide .arrow-icon {
  transform: rotate(90deg);
  margin-left: 10px;
  height: 22px;
  position: relative;
  top: -2px;
}

.projectsSwiper .swiper-slide .bg-project {
  position: absolute;
  height: 150%;
  width: auto;
  bottom: 0;
  left: 0;
  transform: translate(-20%, 20%);
  transition: all .3s ease-in-out;
}

.projectsSwiper .swiper-slide .project-overlay{
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: var(--black);
  opacity: 0;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.projectsSwiper .swiper-slide:hover h6 {
  letter-spacing: 2px;
  transform: rotate(-90deg) translate(190px, 80px);
}

.projectsSwiper .swiper-slide:hover .bg-project {
  height: 140%;
  transform: translate(-15%, 15%);
}

.projectsSwiper .swiper-slide:hover .project-overlay{
  opacity: .4;
}

.projectsSwiper .button-wrapper{
  position: absolute;
  bottom: 0;
  left: 70px;
  z-index: 10;
  height: auto;
}

.projectsSwiper .button-wrapper .swiper-button-next,
.projectsSwiper .button-wrapper .swiper-button-prev {
  position: relative;
  width: 60px;
  height: 60px;
  background: #3E4147;
  color: var(--light-grey);
  right: 0;
  left: 0;
}

.projectsSwiper .button-wrapper .swiper-button-next::after,
.projectsSwiper .button-wrapper .swiper-button-prev::after {
  font-size: 20px !important;
}

.projectsSwiper .button-wrapper .swiper-button-next.swiper-button-disabled,
.projectsSwiper .button-wrapper .swiper-button-prev.swiper-button-disabled{
  background: #2A2A29;opacity: 1;
  cursor: none;
}

@media (max-width:64em) {

  .projectsSwiper .button-wrapper .swiper-button-next,
  .projectsSwiper .button-wrapper .swiper-button-prev {
    opacity: .8;
  }

  .projectsSwiper .button-wrapper .swiper-button-next.swiper-button-disabled,
  .projectsSwiper .button-wrapper .swiper-button-prev.swiper-button-disabled {
    opacity: .3;
  }
}

.modal-dialog{
  max-width: 1200px;
  margin: 2.75rem auto;
}

.modal-content{
  border-radius: 0;
  background-color: #F3F2F1;
}

.modal-close:hover{
  color: var(--black);
  background: var(--gold) !important;
}

.close-modal{
  background: #D7D2C2;
  color: #3E4147;
  border-radius: 100px;
  width: 90px;
  height: 90px;
  font-size: 40px;
  border: 0;
  top: -30px;
  right: -30px;
  z-index: 10;
  cursor:pointer;
}

.pic-1{
  background-image: url("../img/prueba/tabela9.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.pic-2 {
  background-image: url("../img/prueba/tabela8.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width:69em) {
  .pic-1{
    background-size: contain;
  }
  .pic-2{
    background-size: contain;
  }
}

/*SERVICIOS SECTION*/
.servicios-section .accordion-item {
  background: none;
  border: none;
}

.servicios-section h5{
  font-size: 30px;
}

@media (max-width:64em) {
  .servicios-section h5 {
    font-size: 21px;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-top: 6rem;
    margin-bottom: 4rem !important;
  }
}

.servicios-section .accordion-button {
    background: none;
    box-shadow: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.servicios-section .accordion-button:focus{
  color: var(--black);
}
.accordion-button::after {
  transform: rotate(-90deg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.servicios-section .accordion-button .service-number {
  position: absolute;
  left: -15px;
  bottom: 40%;
  font-size: 13px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bg-image-sec {
  background-image: url("../img/prueba/tabela7.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*Seccion contacto*/
.contact-image{
  background-image: url("../img/prueba/tabela18.jpg");
  background-position: center;
  background-size: cover;
  height: 350px;
}

@media (max-width:64em) {
  .contact-i{
    padding-top: 2rem;
  }
  .contact-c{
    padding-bottom: 6rem!important;
  }
}

.footer {
  padding-top: 4rem;
  padding-bottom: 13rem;
  overflow: hidden;
  position: relative;
}

.footer .footer-link ul li{
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
  margin-left: 6.5rem;
  margin-right: 1rem;
}

@media (max-width:1800px) {
  .footer .footer-link ul li {
    margin-left: 4rem;
  }
}

.footer .footer-link ul li a{
  color: white;
  text-decoration: none;
}

.footer .footer-link ul li span{
  margin-left: 6px;
  font-size: 12px;
  position: absolute;
  top: 3px;
}

.footer .footer-social ul{
  margin-left: 0;
  padding-left: 0;
}

.footer .footer-social ul li{
  display: inline-block;
  margin-right: 15px;
}

.footer .footer-social ul li a{
  color: white;
}

.footer .footer-social ul li a ion-icon{
  font-size: 20px;
}

.footer .footer-terms ul li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  margin-left: 5.5rem;
}

.footer .footer-terms ul li a{
  color: white;
  font-size: 12px;
}

.footer .footer-h1{
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -10%;
  height: 40%;
  background-image: url("../img/logo/text.png");
  background-position: center;
  background-size: cover;
}

@media (max-width:64em) {
  .footer .footer-h1 {
    height: 30%;
  }

  .footer .logo-f img{
    width: 85%;
  }
}

.responsive-nav{
  display: none;
}
.show-responsive {
  display: none;
}

.show-responsive-flex {
  display: none !important;
}

.show-desktop{
  display: block;
}

@media screen and (min-width: 1280px) {

}

@media screen and (min-width: 1440px) {

}

@media screen and (min-width: 1920px) {

}

@media (max-width:64em) {
  .title {
    align-items: center !important;
  }
  .contact-image{
    height: 300px;
  }

  .show-responsive{
    display: block;
  }

  .show-responsive-flex {
    display: flex !important;
  }

  .show-desktop {
    display: none !important;
  }

  .nav{
    display: none;
  }
  .responsive-nav {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: var(--black);
    overflow: hidden;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    padding: 20px;
    transition: all .3s ease;
  }

  .off {
    top: -100vh;
    transition: all .3s ease;
  }

  .page-wrapper {
    overflow: hidden;
  }

  .hero-wrapper {
    height: 100vh;
    padding: 2rem !important;
  }

  .hero-wrapper h1{
    text-align: center;
    padding: 0 10px;
    letter-spacing: 0px;
    font-size: 49px;
  }

  .menu-button {
    display: flex !important;
  }

  .menu-button {
    color: white !important;
    text-decoration: none;
  }

  .menu-button:hover{
    color: var(--gold);
  }

  .value-section h5{
    padding:0 30px;
    font-size: 24px;
  }

  .value-section .overflow-hidden {
    overflow: visible !important;
  }

  .value-section .swiper-slide {
    overflow: hidden;
  }

    .value-section .swiper-pagination {
      bottom: -50px;
    }

  .value-section .px-5{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  h2 {
    font-size: 49px;
  }

  h3 {
    font-size: 35px;
  }


  /*FOTOS SWIPER*/
  .swiper{
    overflow: visible;
  }
  .fotosSwiper .swiper-pagination {
    display: inherit;
  }

  .fotosSwiper .swiper-pagination-bullet{
    background: white;
    border: 2px solid var(--black);
    opacity: 1;
    width: 15px;
    height: 15px;
  }

  .fotosSwiper .swiper-pagination-bullet-active{
    background: var(--black);
  }

  .fotosSwiper .swiper-button-prev,
  .swiper-rtl .swiper-button-next{
    left: -15px;
  }

  .fotosSwiper .swiper-button-next,
  .swiper-rtl .swiper-button-prev{
    right: -15px;
  }

  /*PROCESO*/
  .numero1-r h5{
    font-size: 30px;
  }

  .numero2-r h5{
    font-size: 30px;
  }

  .numero3-r h5 {
    font-size: 30px;
  }

  .red-box{
    padding: 0 2rem;
    text-align: center;
  }

  .process-section .container h1 {
    right: -60px;
    z-index: -1;
  }

  /*PROJECTS*/
  .projects-section h6{
    font-size: 30px;
  }

  .projects-section .overflow-hidden {
    overflow: visible !important;
  }

  .projects-section .swiper-pagination {
    bottom: -50px;
  }

  .projectsSwiper .button-wrapper{
    bottom: 0;
    width: 107%;
    left: -15px;
    justify-content: space-between !important;
  }

  .projectsSwiper .swiper-pagination {
    display: inherit;
  }

  .projectsSwiper .swiper-pagination-bullet {
    background: white;
    border: 2px solid var(--black);
    opacity: 1;
    width: 15px;
    height: 15px;
  }

  .projectsSwiper .swiper-pagination-bullet-active {
    background: var(--black);
  }


  /*servicios*/
  .service-image{
    height: 350px;
  }

  .servicios-section h6{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 6rem !important;
    padding: 0 30px;
  }

  .servicios-section .accordion-button .service-number{
    left: 0px;
  }

  .footer .ps-5{
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
  }
  .footer .pe-5{
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
  }

  .footer ul{
    text-align: center;
    padding-left: 0;
  }
  .footer .footer-link{
    margin-top: 3rem;
  }

  .footer .footer-link ul li {
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1.4rem;
  }

  .footer .footer-terms{
    margin-bottom: 4rem;
  }

  .footer .footer-terms ul li {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.6rem;
  }

  .footer .social {
    align-items: center !important;
    text-align: center;
  }

  .footer .footer-social ul li{
    margin-left: 15px;
    margin-right: 15px;
  }

  .footer .row.last-footer{
    flex-direction: column-reverse;
  }

  .footer .text-end {
    margin-top: 3rem;
  }

  .text-end {
    text-align: center !important;
  }

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

  .ps-5{
    padding-left: 0 !important;
  }

  .col-12.col-md-5.r-t-center{
    margin-bottom: 2rem;
  }

  .scroll-right {
    left: -100%;
  }

  .logo-r{
    display: flex !important;
  }
}

@media screen and (max-width: 991px) {
  .pin-stripe.hide-tablet {
    display: none;
  }

}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 479px) {

}

.cursor {
  position: absolute;
  background: white;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  user-select: none;
  pointer-events: none;
  transform: scale(0.8);
}

.cursor::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../img/prueba/tabela1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  opacity: 0;
}

.cursor.active {
  opacity: 1;
  transform: scale(12);
}

.cursor.active::before {
  opacity: 1;
}

.cursor-follower {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  user-select: none;
  pointer-events: none;
  transform: translate(4px, 4px);
}

.cursor-follower.active {
  opacity: 0.3;
  transform: scale(0);
}


.overlay-cookie {
  position: fixed;
  width: 750px;
  background: var(--light-grey);
  color: var(--black);
  padding: 15px;
  bottom: 40px;
  left: 30%;
  z-index: 99;
  display: none;
  border-radius: 50px;
}

.overlay-cookie .close-cookie {
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  padding: 8px 20px;
}

.show-cookie {
  display: block;
}

.overlay-cookie h5 {
  font-size: 1.1em;
}

.overlay-cookie p {
  font-size: .9em;
}

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

.close-icon {
  color: white;
  border: none;
  background-color: transparent;
}

@media (max-width: 760px) {
  .overlay-cookie {
    position: fixed;
    width: 90%;
    background: var(--light-grey);
    color: var(--black);
    padding: 20px;
    bottom: 20px;
    left: 5%;
    z-index: 99;
  }

  .modal-dialog{
    max-width: 400px;
  }

  .modal-dialog-scrollable{
    height: calc(95% - 1rem);
  }
}
