@font-face {
  font-family: "ClashGrotesk-Extralight";
  src: url("../fonts/ClashGrotesk-Extralight.woff2") format("woff2"), url("../fonts/ClashGrotesk-Extralight.woff") format("woff"), url("../fonts/ClashGrotesk-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Light";
  src: url("../fonts/ClashGrotesk-Light.woff2") format("woff2"), url("../fonts/ClashGrotesk-Light.woff") format("woff"), url("../fonts/ClashGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Regular";
  src: url("../fonts/ClashGrotesk-Regular.woff2") format("woff2"), url("../fonts/ClashGrotesk-Regular.woff") format("woff"), url("../fonts/ClashGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Medium";
  src: url("../fonts/ClashGrotesk-Medium.woff2") format("woff2"), url("../fonts/ClashGrotesk-Medium.woff") format("woff"), url("../fonts/ClashGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Semibold";
  src: url("../fonts/ClashGrotesk-Semibold.woff2") format("woff2"), url("../fonts/ClashGrotesk-Semibold.woff") format("woff"), url("../fonts/ClashGrotesk-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Bold";
  src: url("../fonts/ClashGrotesk-Bold.woff2") format("woff2"), url("../fonts/ClashGrotesk-Bold.woff") format("woff"), url("../fonts/ClashGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.menu #video_escritorio {
  -o-object-fit: cover;
     object-fit: cover;
  width: 1920px;
}
.menu #video_movil {
  display: none;
}

@media (max-width: 600px) {
  .menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .menu #video_movil {
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .menu #video_escritorio {
    display: none;
  }
}
.header_container_index {
  position: fixed;
  width: 100%;
  top: -100%;
  animation: anim 3s ease-out forwards -1.7s;
  z-index: 1;
}
.header_container_index .header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background-color: rgb(0, 0, 0);
  position: sticky;
  box-shadow: 0px 3px 20px 0px rgb(134, 134, 134);
  filter: invert(100%);
  transition: all ease 1s;
}
.header_container_index .header .header_holder {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_container_index .header .header_holder .header_brand {
  margin-left: 3rem;
}
.header_container_index .header .header_holder .header_brand a .logo {
  width: 100px;
  margin-top: 0.2rem;
}
.header_container_index .header .header_navi {
  display: flex;
  align-items: center;
  height: 35px;
}
.header_container_index .header .header_navi ul.header_navigation_items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 1rem;
  font-family: "ClashGrotesk-Regular";
}
.header_container_index .header .header_navi ul.header_navigation_items li.header_navigation_item {
  margin-right: 3rem;
}
.header_container_index .header .header_navi ul.header_navigation_items li.header_navigation_item a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 15px;
  opacity: 100%;
  transition: all ease 0.8s;
}
.header_container_index .header .header_navi ul.header_navigation_items li.header_navigation_item a:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 17px;
  opacity: 60%;
}
.header_container_index .header .header_navi .mostrar-menu {
  float: right;
}
.header_container_index .header .header_navi .mostrar-menu img {
  height: 20px;
  margin-top: 5px;
  filter: invert(100%);
  cursor: pointer;
  display: none;
}
.header_container_index .header .header_navi #check {
  display: none;
}
.header_container_index .header:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background-color: rgb(0, 0, 0);
  position: sticky;
  box-shadow: 0px 3px 20px 0px rgb(119, 119, 119);
  filter: invert(0%);
}

@keyframes anim {
  from {
    top: -100%;
  }
  to {
    top: 0%;
  }
}
@media (max-width: 585px) {
  .header_container_index .header {
    margin: 0;
    padding: 0;
  }
  .header_container_index .header .header_holder .header_brand {
    margin-left: 0.7rem;
  }
  .header_container_index .header .header_holder .header_brand a .logo {
    padding: 0.8rem;
  }
  .header_container_index .header .header_navi ul.header_navigation_items {
    display: block;
    position: fixed;
    width: 110%;
    height: 100vh;
    background-color: black;
    right: -120%;
    transition: all ease 0.5s;
    top: 3.2em;
    text-align: center;
  }
  .header_container_index .header .header_navi ul.header_navigation_items li.header_navigation_item {
    display: block;
    margin-top: 4rem;
    margin-left: 2.5rem;
  }
  .header_container_index .header .header_navi .mostrar-menu img {
    display: block;
    height: 20px;
    margin-top: 5px;
    filter: invert(100%);
    cursor: pointer;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 1.6rem;
  }
  .header_container_index .header .header_navi #check:checked ~ ul {
    right: -10%;
  }
  .header_container_index .header:hover {
    margin: 0;
    padding: 0;
  }
  @keyframes anim {
    from {
      top: -100%;
    }
    to {
      top: 0%;
    }
  }
}
.header_container_2 {
  position: fixed;
  width: 100%;
  top: 0%;
  z-index: 1;
}
.header_container_2 .header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background-color: rgb(0, 0, 0);
  position: sticky;
  box-shadow: 0px 3px 20px 0px rgb(134, 134, 134);
  filter: invert(100%);
  transition: all ease 1s;
}
.header_container_2 .header .header_holder {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_container_2 .header .header_holder .header_brand {
  margin-left: 3rem;
}
.header_container_2 .header .header_holder .header_brand a .logo {
  width: 100px;
  margin-top: 0.2rem;
}
.header_container_2 .header .header_navi {
  display: flex;
  align-items: center;
  height: 35px;
}
.header_container_2 .header .header_navi ul.header_navigation_items {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 1rem;
  font-family: "ClashGrotesk-Regular";
}
.header_container_2 .header .header_navi ul.header_navigation_items li.header_navigation_item {
  margin-right: 3rem;
}
.header_container_2 .header .header_navi ul.header_navigation_items li.header_navigation_item a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 15px;
  opacity: 100%;
  transition: all ease 0.8s;
}
.header_container_2 .header .header_navi ul.header_navigation_items li.header_navigation_item a:hover {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 17px;
  opacity: 60%;
}
.header_container_2 .header .header_navi .mostrar-menu {
  float: right;
}
.header_container_2 .header .header_navi .mostrar-menu img {
  height: 20px;
  margin-top: 5px;
  filter: invert(100%);
  cursor: pointer;
  display: none;
}
.header_container_2 .header .header_navi #check {
  display: none;
}
.header_container_2 .header:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background-color: rgb(0, 0, 0);
  position: sticky;
  box-shadow: 0px 3px 20px 0px rgb(119, 119, 119);
  filter: invert(0%);
}

@media (max-width: 585px) {
  .header_container_2 .header {
    margin: 0;
    padding: 0;
  }
  .header_container_2 .header .header_holder .header_brand {
    margin-left: 0.7rem;
  }
  .header_container_2 .header .header_holder .header_brand a .logo {
    padding: 0.8rem;
  }
  .header_container_2 .header .header_navi ul.header_navigation_items {
    display: block;
    position: fixed;
    width: 110%;
    height: 100vh;
    background-color: black;
    right: -120%;
    transition: all ease 0.5s;
    top: 3.2rem;
    text-align: center;
  }
  .header_container_2 .header .header_navi ul.header_navigation_items li.header_navigation_item {
    display: block;
    margin-top: 4rem;
    margin-left: 2.5rem;
  }
  .header_container_2 .header .header_navi .mostrar-menu img {
    display: block;
    height: 20px;
    margin-top: 5px;
    filter: invert(100%);
    cursor: pointer;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 1.6rem;
  }
  .header_container_2 .header .header_navi #check:checked ~ ul {
    right: -10%;
  }
  .header_container_2 .header:hover {
    margin: 0;
    padding: 0;
  }
}
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.menu .cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 1920px;
}
.menu .cover_movil {
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 1920px;
}
.menu .play_link {
  position: absolute;
  top: 45%;
  left: 45%;
}
.menu .play_link .play {
  width: 100px;
  position: absolute;
  filter: invert(100%);
  opacity: 40%;
  top: 45%;
}
.menu .play_link .play:hover {
  width: 100px;
  position: absolute;
  filter: invert(100%);
  opacity: 100%;
  top: 45%;
  cursor: pointer;
  transition: ease-out 1s;
}

@media (max-width: 585px) {
  .menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .menu .cover {
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
    width: 1920px;
  }
  .menu .cover_movil {
    display: block;
    width: 100%;
    min-height: 100%;
  }
  .menu .play_link {
    position: absolute;
    top: 45%;
    left: 36%;
  }
  .menu .play_link .play {
    width: 100px;
    position: absolute;
    filter: invert(100%);
    opacity: 40%;
    top: 45%;
  }
  .menu .play_link .play:hover {
    width: 100px;
    position: absolute;
    filter: invert(100%);
    opacity: 100%;
    top: 45%;
    cursor: pointer;
    transition: ease-out 1s;
  }
}
.menu {
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.menu #page_video {
  display: block;
  width: 100%;
  min-height: 100%;
}

@media (max-width: 585px) {
  .container {
    width: 100vw;
    display: flex;
    justify-content: center;
  }
  .container .home {
    width: 100vw;
    display: flex;
    justify-content: center;
  }
  .container .home .menu {
    top: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
  }
  .container .home .menu #page_video {
    display: flex;
    padding-top: 55.5%;
    height: 0;
    max-height: 30%;
    max-width: 100%;
    min-height: 30%;
    min-width: 100%;
    width: 0;
    justify-items: center;
    float: right;
  }
}
.container_works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 4rem;
  padding-top: 4rem;
}
@media (max-width: 1024px) {
  .container_works {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .container_works {
    grid-template-columns: 1fr;
    padding: 2rem;
    padding-top: 3rem;
  }
}

.work {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-top: 2rem;
}
.work a {
  text-decoration: none;
}
.work a .work_title {
  text-decoration: none;
  color: black;
  padding-bottom: 0.5rem;
}
.work a .work_title .title {
  text-decoration: none;
  color: black;
  font-family: "ClashGrotesk-Semibold";
  margin: 0;
  font-size: 18px;
}
.work a .work_title .subtitle {
  text-decoration: none;
  color: black;
  font-family: "ClashGrotesk-Light";
  margin: 0;
  margin-top: 0.2rem;
  font-size: 14px;
}
.work a .container_img {
  position: relative;
  width: 100%;
  height: auto;
}
.work a .container_img img {
  width: 100%;
  height: auto;
  display: block;
}
.work a .container_img .work_desk {
  display: block;
}
.work a .container_img .work_movil {
  display: none;
}
.work a .container_img .work_gif {
  width: 100%;
  height: auto;
  display: none;
}
.work a .container_img:hover .work_desk {
  display: none;
}
.work a .container_img:hover .work_gif {
  width: 100%;
  height: auto;
  display: block;
}

.container_about .home .menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.container_about .home .menu .stills_gif_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container_about .home .menu .stills_gif_container .stills_gif {
  position: absolute;
  width: 20%;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
.container_about .home .menu .stills_gif_container .bts {
  position: absolute;
  width: 35%;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
.container_about .home .menu .text {
  position: absolute;
  color: rgb(0, 0, 0);
  bottom: 0;
  padding-bottom: 2rem;
  text-decoration: none;
  font-family: "ClashGrotesk-Light";
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.container_about .home .menu .text_2 {
  position: absolute;
  color: rgb(0, 0, 0);
  bottom: 0;
  padding-bottom: 2rem;
  text-decoration: none;
  font-family: "ClashGrotesk-Light";
  font-weight: 700;
  font-size: 18px;
}
.container_about .home .menu .link_ig {
  padding-left: 2rem;
  text-decoration: none;
  color: black;
  transition: all ease 0.8s;
}
.container_about .home .menu .link_ig:hover {
  padding-left: 2rem;
  text-decoration: none;
  color: black;
  opacity: 50%;
}
.container_about .home .menu .cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 1920px;
}
.container_about .home .menu .cover_Movil {
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 1920px;
}
.container_about .home .menu .video_staff {
  display: block;
  width: 100%;
  min-height: 100%;
}

@media (max-width: 1500px) {
  .container_about .home .menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .container_about .home .menu .stills_gif_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container_about .home .menu .stills_gif_container .stills_gif {
    position: absolute;
    width: 20%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .stills_gif_container .bts {
    position: absolute;
    width: 25%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .text {
    position: absolute;
    color: rgb(0, 0, 0);
    bottom: 0;
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
  .container_about .home .menu .text_2 {
    position: absolute;
    color: rgb(0, 0, 0);
    bottom: 0;
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    justify-content: flex-end;
  }
  .container_about .home .menu .link_ig {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    transition: all ease 0.8s;
  }
  .container_about .home .menu .link_ig:hover {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    opacity: 50%;
  }
  .container_about .home .menu .cover {
    -o-object-fit: cover;
       object-fit: cover;
    width: 1920px;
  }
  .container_about .home .menu .cover_Movil {
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
    width: 1920px;
  }
  .container_about .home .menu .video_staff {
    display: block;
    width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 1024px) {
  .container_about .home .menu {
    position: fixed;
    top: 0;
  }
  .container_about .home .menu .stills_gif_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container_about .home .menu .stills_gif_container .stills_gif {
    position: absolute;
    width: 70%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .stills_gif_container .bts {
    position: absolute;
    width: 50%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .text {
    position: absolute;
    color: rgb(0, 0, 0);
    bottom: 0;
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
  .container_about .home .menu .text_2 {
    position: absolute;
    color: rgb(0, 0, 0);
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    justify-content: center;
  }
  .container_about .home .menu .link_ig {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    transition: all ease 0.8s;
  }
  .container_about .home .menu .link_ig:hover {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    opacity: 50%;
  }
  .container_about .home .menu .cover {
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container_about .home .menu .cover_Movil {
    display: block;
    width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 600px) {
  .container_about .home .menu {
    position: fixed;
    top: 0;
  }
  .container_about .home .menu .stills_gif_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container_about .home .menu .stills_gif_container .stills_gif {
    position: absolute;
    width: 70%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .stills_gif_container .bts {
    position: absolute;
    width: 80%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .text {
    position: absolute;
    color: rgb(0, 0, 0);
    bottom: 0;
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
  .container_about .home .menu .text_2 {
    position: absolute;
    color: rgb(0, 0, 0);
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    justify-content: center;
  }
  .container_about .home .menu .link_ig {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    transition: all ease 0.8s;
  }
  .container_about .home .menu .link_ig:hover {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    opacity: 50%;
  }
  .container_about .home .menu .cover {
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container_about .home .menu .cover_Movil {
    display: block;
    width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 340px) {
  .container_about .home .menu {
    position: fixed;
    top: 0;
  }
  .container_about .home .menu .stills_gif_container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container_about .home .menu .stills_gif_container .stills_gif {
    position: absolute;
    width: 70%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .stills_gif_container .bts {
    position: absolute;
    width: 80%;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  .container_about .home .menu .text {
    position: absolute;
    color: rgb(0, 0, 0);
    bottom: 0;
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 12px;
    text-align: center;
  }
  .container_about .home .menu .text_2 {
    position: absolute;
    color: rgb(0, 0, 0);
    padding-bottom: 2rem;
    text-decoration: none;
    font-family: "ClashGrotesk-Light";
    font-weight: 700;
    font-size: 14px;
    justify-content: center;
  }
  .container_about .home .menu .link_ig {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    transition: all ease 0.8s;
  }
  .container_about .home .menu .link_ig:hover {
    padding-left: 2rem;
    text-decoration: none;
    color: black;
    opacity: 50%;
  }
  .container_about .home .menu .cover {
    display: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .container_about .home .menu .cover_Movil {
    display: block;
    width: 100%;
    min-height: 100%;
  }
}
html,
body {
  margin: 0;
  background-color: rgb(255, 255, 255);
  font-family: "ClashGrotesk-Regular";
}/*# sourceMappingURL=main.css.map */