/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 6.25rem;
  --offSet-Phone: 18rem;
  --sactionSpace: 40px;
}

/*===== Colores =====*/
:root {
  --first-color: #0af534;
  --Dark-first-color: #0f661e;
  --second-color: #6e22f5;
  --Dark-second-color: #260a58;
  --Black-color: #121212;
  --Gray-color: #211e26;
}

/*===== Fuente y tipografia =====*/
:root {
  --body-font: "Poppins", sans-serif;
  --last-font: "Fredoka One", cursive;
  --big-font-size: 2rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
}
@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 3.125rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}
/*===== Border Radius =====*/

:root {
  --br-easy: 5px;
  --br-normal: 10px;
  --br-Avg: 20px;
  --br-Big: 35px;
  --br-Circle: 50%;
}

/*===== Font Wight =====*/
:root {
  --fw-light: 300;
  --fw-Led: 400;
  --fw-normal: 500;
  --fw-bold: 600;
  --fw-bolder: 700;
  --fw-Extra: 900;
}

/*===== Margenes =====*/
:root {
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}


body {
    margin: 0 auto;
    padding:0;
    font-family: "Monument Extended", sans-serif;
    height: 90vh;
    overflow-x: hidden;
    background: #000;
  }


  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
   position:absolute;
   z-index:1;
   background:#000;
   width:100%;
    padding: 25px;
  }

  .logo {
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .logo h2 {
    color:#fff;
    cursor:pointer;
  }

  .logo img{
   
  }
  

  #loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #loader > span {
    margin: 1rem 0.5rem 0.5rem;
    background: var(--Dark-first-color);
    border-radius: 50%;
    animation: spin-Loader-3 1.4s infinite alternate;
  }

  .slide {
    width:100%;
    height:auto;

  }
  .two {
    height:700px;
    position:absolute;
    bottom:0;
    right:0;

    
    }
  
  #loader > span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  #loader > span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 2rem;
  }
  @keyframes spin-Loader-3 {
    from {
      width: 4rem;
      height: 4rem;
      line-hight: 0.1rem;
      opacity: 1;
      transform: translate3d(0);
    }
    to {
      width: 4.5em;
      height: 4.5rem;
      line-hight: 1.5rem;
      opacity: 0.1;
      transform: translate3d(0.5, -1.5rem, 0);
    }
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .hover-link {
    margin: 0 auto;
    border: none;
    background: none;
    color: #fff;
    border: solid 1px rgba(255, 255, 255, 0.2);
    padding: 0 0.5 0.5rem;
    font-family: "Monument Extended",sans-serif;
    font-size: 3em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    cursor: pointer;
  }

  .smooth-scroller {
    overflow: hidden;
  }
  
  .hero-scroller {
    height: 250vh;
    overflow: hidden;
  }
  
  section {
    min-height: 90vh;
    padding: 50px;
  }
  
  .copy {
    background: #d4cfc0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .section-wrapper {
    max-width: 1400px;
  }
  
  .content {
    width: 100%;
    max-width: 840px;
    margin-right: auto;
    margin-left: auto;
  }
  

  
  .image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 50%;
  }
  
  .image {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .smooth-scroll {
  
    width:100%;
  }
  
  .hover-link > span {
    overflow: hidden;
    display: block;
    position: relative;
    pointer-events: none;
  }
  
  .hover-link > span > span {
    display: inline-block;
  }
  
  .hover-link > span > span:nth-of-type(1) {
    transition: 0.4s ease all;
  }
  
  .hover-link > span > span:nth-of-type(2) {
    transition: 0.4s ease all;
    transition-delay: 0.07s;
  }
  .hover-link > span > span:nth-of-type(3) {
    transition: 0.4s ease all;
    transition-delay: 0.09s;
  }
  
  .hover-link > span > span > span {
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(200%);
  }
  
  .hover-link:hover > span > span,
  .hover-link:focus > span > span {
    transform: translateY(-200%);
  }

  
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: var(--header-height);
  z-index: var(--z-fixed);
}

.Navbar_Toggle {
  background: transparent;
  border: none;
  outline: none;
  width: 42px;
  font-size: 24px;
  height: 42px;
  border-radius: 4px;
  display: none;
}
.Navbar_Toggle:before,
.Navbar_Toggle:after,
.Navbar_Toggle div {
  background: #000;
  content: "";
  display: block;
  height: 4px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}
.Navbar_Toggle.open:before {
  transform: translateY(12px) rotate(135deg);
}
.Navbar_Toggle.open:after {
  transform: translateY(-10px) rotate(-135deg);
}
.Navbar_Toggle.open div {
  transform: scale(0);
}

.footer {
  position:absolute;
  display:flex;
  justify-content:center;
  color:#fff;
  align-items:center;
  text-align:center;

  bottom:0;
}

a {
  text-decoration:none;
}


.menu-open {
  color: #fff;
}

.menu-open,
.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 40px;
  font-size: 20px;
  cursor: pointer;
}

.nav-container {
  position: fixed;
  left: -101%;
  width: 100%;
  z-index:2;
  height: 100vh;
  background: #fff;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navx {
  display:flex;
  justify-content:space-between;
 align-items:center;
 padding: 10px;
 padding-left:30px;
 font-size: 20px;
 width:100%;
}

.navxx {
  display:flex;
  justify-content:space-between;
 align-items:center;

position: absolute;
width: 100%;
top: 0;
left: 0;
height: var(--header-height);
z-index: var(--z-fixed);

 font-size: 20px;
 width:100%;
}

.hero-image {
	width: 100%;
	margin-top: -300px;
}

.hero-image::after {
	content: "";
	display: table;
	clear: both;
}

.hero-image .hero-image-container {
	width: 40%;
	float: right;
}

.hero-image .hero-image-container img {
	width: 100%;
}

@media (max-width: 900px) {
	.hero-image {
		margin-top: 40px;
	}
	.hero-image .hero-image-container {
		width: 100%;
	}
}

#myVideo {
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
.header-container h2 {
  color:#DFE8E0;
  line-height:1;
}
.header-container h1 {
  line-height:1;
}


#home video {
  width: 100%;
  position:absolute;
}
.text-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: -1;
}

.text-wrapper {
  position: fixed;
  width: 100%;
  height: 789px;
  display: flex;
  cursor: default;
}

.text {
  display: flex;
    text-align: center;
    justify-content: center;
  width: 100%;
  font-size: 3vw;
  color: #DFE8E0;
  text-transform: uppercase;
  opacity: 0.1;
}

.btn_download {
  background:#fff;
  border-radius: 80%;
  color: #000;
  font-weight: 700;
  font-size: calc(var(--normal-font-size) + 2px);
  padding: 10px 14px;
  transition:0.5s;

}

.btn_download:focus,
.btn_download:hover {
  
  border:1px solid #fff;
  background-color:transparent;
  color:#fff;
  transition:0.5s;

}


.header__button {
	z-index: 2;
	width: 200px;
	height: 200px;
	clip-path: circle(calc(100% - 50%) at  47px);
  position:absolute;
  left:0;
	background-color: #fff;
    animation: pulsate 2s ease-in-out infinite;

  color:#000;
	border: 0;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: -18px;
	outline: none;
	animation-duration: 300ms;
	animation-timing-function: ease;
}

.line {

}

.header {
	margin: 76px 0;
}

#about {
  background:#fff;
}

.roundedx {
  border:1px solid #fff;
}

.roundedxx {
  border:1px solid #000;
}

.header .header-container h1 {
   color:#fff;
	font-size: 7rem;
}

.animation{
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background-color: black;
  color: white;
  overflow: hidden;
  justify-content: center;
  z-index: 100;
  width: 100%;
}
.animate{
  font-size: 100px;
  text-transform: uppercase;
  color: #e0e0e0;
  animation: animate 10s linear infinite;
}
@keyframes animate {
  0%{
      transform: translateX(-100%);
     
  }
  100%{
      transform: translateX(100%);
  }
}
.animate span{

  margin-left: 10px;
  margin-right: 10px;
}


@media (max-width: 900px) {
	.header .header-container h1 {
		font-size: 5.4rem;
	}
}



 .chiclets picture {
  opacity: 1;
  transform: none;
  animation: none;
}

 .chiclets .overview-chiclets-hero-14-2 {
  --row: 2;
  --col: 14;
  --delay: 900ms;
  --offset: 22px;
  height:95px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets .overview-chiclets-hero-10-2 {
  --row: 2;
  --col: 10;
  --delay: 1300ms;
  --offset: 0px;
  height:95px;

  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}
.chiclets .overview-chiclets-hero-10-3 {
  --row: 3;
  --col: 10;
  --delay: 1450ms;
  height:95px;

  --offset: 0px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets .overview-chiclets-hero-10-4 {
  --row: 4;
  --col: 10;
  --delay: 1600ms;
  height:95px;

  --offset: 0px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

 .chiclets .overview-chiclets-hero-11-3 {
  --row: 3;
  --col: 11;
  --delay: 1350ms;
  height:95px;

  --offset: -37px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets .overview-chiclets-hero-11-4 {
  --row: 4;
  --col: 11;
  --delay: 1500ms;
  --offset: -37px;
  height:95px;

  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets .overview-chiclets-hero-09-3 {
  --row: 3;
  --col: 9;
  --delay: 1350ms;
  height:95px;

  --offset: -37px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets .overview-chiclets-hero-09-4 {
  --row: 4;
  --col: 9;
  --delay: 1500ms;
  --offset: -37px;
  height:95px;

  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.chiclets {
	--chiclet-size: 96px;
display: grid;
grid-gap: 22px;
grid-template-rows: repeat(5, var(--chiclet-size));
grid-template-columns: repeat(19, var(--chiclet-size));
justify-content: center;
margin-top: -94px;
margin-bottom: -38px;
}

.chiclets .overview-chiclets-hero-12-4 {
  --row: 4;
  height:95px;

  --col: 12;
  --delay: 1400ms;
  --offset: 12px;
  grid-row: var(--row);
  grid-column: var(--col);
  margin-top: var(--offset);
}

.header__button > span {
  overflow: hidden;
  display: block;
  position: relative;
  pointer-events: none;
}

.header-container p {
  max-width:50rem;
}

.header__button > span > span {
  display: inline-block;
}

.header__button > span > span:nth-of-type(1) {
  transition: 0.4s ease all;
}

.header__button > span > span:nth-of-type(2) {
  transition: 0.4s ease all;
  transition-delay: 0.07s;
}
.header__button > span > span:nth-of-type(3) {
  transition: 0.4s ease all;
  transition-delay: 0.09s;
}

.header__button > span > span > span {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(200%);
}

.header__button:hover > span > span,
.header__button:focus > span > span {
  transform: translateY(-200%);
}
.header__button[data-open="true"] {
	background-color: #000;
	animation-name: scale;
}

.header__button[data-open="false"] {
	transition: background-color 250ms linear;
}

@keyframes scale {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(100%);
	}
}
.navxx h2 {
  padding:15px;
}
.menu {
  padding: 12vh 0 24vh;
}

.menu__item-link {
  display: inline-block;
  font-size: 5vw;
  cursor: pointer;
  transition: opacity 0.1s;
  line-height: 100px;
  text-decoration: none;
  color: #000;
}

.menu__item  a{
  color:#000;
}


.menu__item-link:after {
  display      : block;
  content      : '';
  border-bottom: solid 5px #000;
  transform    : scaleX(0);
  transition   : transform 300ms ease-in-out;
}

.menu__item-link:hover:after {
  transform: scaleX(1);
}

.menu__item-link.fromright:after {
    transform-origin: 100% 50%;
}

.menu__item-link.fromleft:after {
  transform-origin: 0 50%;
}

.menu__item-img {
  position: relative;
  top: 15px;
  padding: 0 20px;
  z-index: 2;
  pointer-events: none;
  height: 10vh;
  max-height: 600px;
  opacity: 1;
  transform: scale(0);
}

.menu__item:hover > .menu__item-img {
  opacity: 1;
  transform: scale(1);
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .menu__item-link {
    font-size: 8vw;
    line-height: 70px;
  }
}

section {
  padding: var(--sactionSpace) 0;
}

.footer h3 {
  color:#fff;
   font-family: "Monument Extended";

}

.footer a {
  color:#fff;
}

.navbar .navbar-brand {
  font-family: "Monument Extended";
  color:#fff; 
  font-size: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #fff;
  opacity: 0.9;
}

.navbar-light .navbar-brand:focus-visible {
  outline: 0;
  border: 0;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--first-color);
  font-weight: 700;
}
.navbar-nav {
  gap: 1.25rem;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--Black-color);
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .Navbar_Toggle {
    display: block;
  }
  #navbar_collapse {
    height: 0;
  }
}

header-hamburger {
  padding: 1em;
}

.header-hamburger span {
  display: block;
  height: 2px;
  width: 60px;
  background: #fff;
}


.header-hamburger span:nth-child(2) {
  margin-top: 0.5em;
}

.header-hamburger span:nth-child(3) {
  margin-top: 0.9em;
}

header-hamburgexr {
  padding: 1em;
}

.header-hamburgerx span {
  display: block;
  height: 2px;
  width: 50px;
  background: #000;
  transform: translateY(10px) rotate(135deg);

}

.p {
  color:#99A1A6;
  
}

.px {
  font-size:50px;
}


.logo h2 {
  font-size:40px;
}


.silxlogo img {
  height:90px;
  width:90px;
}


.header-hamburgerx span:nth-child(2) {
  transform: translateY(-10px) rotate(-135deg);
  margin-top:0.80em;

}

.video {
  object-fit:cover;
  height:100%;
  width:100%;


}

.hover-this {
  transition: all 0.3s ease;
}
.video img {
  object-fit:cover;
  margin-top:3px;

  height:100%;
  width:100%;
}
.cursor {
  pointer-events: none;
  position: fixed;
  padding: 0.3rem;
  background-color: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: transform 0.3s ease;
}

.hover-this:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(8);
}

#home {
  padding-top:40px;
  padding-bottom:0px
}

.text_content h2 {
  font-weight: 700;
  color: #000;
  animation: fadeIn 1s;
  font-size: 32vw;
  line-height: 350px;
}
.text_contentx h2 {
  font-weight: 700;
  color: #fff;
  animation: fadeIn 1s;
  font-size: 22vw;
  line-height: 380px;
}

.background-image {
  height:400px;
  width:100%;
}

.background-image img {
  height:100%;
  width:100%;
  object-fit:cover;

}
  
.info {
  width:100%;
  display:flex;
  justify-content:space-evenly;
  gap:1rem;
  align-items:center;
}

#shotinfo {
  background:#fff;
}

.spacex {
  display:flex;
  justify-content:center;
  align-items:center;

}

.spacexx {
  display:flex;
  color:#fff;
  justify-content:center;
  align-items:center;

}

.site-footer
{
  background-color:#000;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}

.kl {

 height:60px;
 display:flex;
 justify-content:center;
 align-items:center;
 width:50%;
 border:5px solid #fff;
 border-radius: 150px;
}

.circle-image {
  height:400px;

}

.div {
  height:100%;
  border-radius:80%;
  object-fit:cover;
  width:100%;
  background:#000;  
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffff;
  transform: rotate(10deg);

}

.divx {
  height:100%;
  border-radius:80%;
  object-fit:cover;
  width:100%;
  display: flex;
  border:2px solid #000;
  color:#000;
  justify-content: center;
  align-items: center;
  color: #ffff;
  transform: rotate(-10deg);

}

.twitter-timeline {
  display:flex;
  justify-content: center;
  align-items: center;
}

.welcome {
  color:#fff;
}

.divx h2 {
  color:#000;
}

.toptext {
  width: 600px;
}
.toptext h2 {
  width:100%;
}



.circle-image img {
  height:100%;
  border-radius:100%;
  object-fit:cover;
  width:100%;
}


.users h2 {
  font-size:40px;
}

  #cursor {
    pointer-events: none;
    width: 3rem;
    height: 3rem;
    border: solid 1.5px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    mix-blend-mode: difference;

    position: fixed;
    top: 0;
    left: 0;
    transition: 0.35s ease width, 0.35s ease height, 0.35s ease border,
      0.35s ease background;
    transform: translate(-50%, -50%);
  }


  
  #cursor.button {
    width: 5rem;
    height: 5rem;
    border: solid 1px transparent;
    background: rgba(255, 255, 255, 0.5);
  }

  #cursor.nav {
    width: 5rem;
    height: 5rem;
    border: solid 1px transparent;
    background: rgba(255, 255, 255, 0.5);
  }

    
  @media(max-width: 900px) {


    .hover-this {
          width: 100%;
          padding: 20px 0;
          display: inline-block;
    }
}