@import url('https://fonts.googleapis.com/css2?family=Belanosima&family=Rubik+Vinyl&display=swap');
   
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

:root {
  --background-gradien-color: linear-gradient(90deg,rgba(59, 254, 116, 1) 12%, rgba(44, 211, 107, 1) 24%, rgba(45, 185, 117, 1) 36%, rgb(29, 186, 155,1) 48%, rgba(29, 186, 155,1) 60%, rgba(45, 153, 131, 1) 72%, rgba(45, 133, 137,1) 84%, rgba(25, 96, 114, 1) 96%);
  --background-gradien-color-moz:-moz-linear-gradient(90deg,rgba(59, 254, 116, 1) 12%, rgba(44, 211, 107, 1) 24%, rgba(45, 185, 117, 1) 36%, rgba(29, 186, 155, 1) 48%, rgba(29, 186, 155, 1) 60%, rgba(45, 153, 131, 1) 72%, rgba(45, 133, 137, 1) 84%, rgba(25, 96, 114, 1) 96%);
  --background-gradien-color-webkit:-webkit-linear-gradient(90deg,rgba(59, 254, 116, 1) 12%, rgba(44, 211, 107, 1) 24%, rgba(45, 185, 117, 1) 36%, rgba(29, 186, 155, 1) 48%, rgba(29, 186, 155, 1) 60%, rgba(45, 153, 131, 1) 72%, rgba(45, 133, 137, 1) 84%, rgba(25, 96, 114, 1) 96%);
}

body{
    font-family: "Lilita One";
    color:white
    
}
#hero {
    min-height: 100vh;
    /* background-image: url(https://cssanimation.rocks/images/random/space2.jpg);
    background-size: cover;
    background-position: center center; */
    /* background: #141E30; */
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to right, #243B55, #141E30); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to right, #243B55, #141E30); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.navbar{
    padding:10%;
    background: #00000090;
}
.navbar a img{
  padding-left: 50%;
}
.container_nav {
    position: fixed;
    top: 2%;
    z-index: 40;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}
#navbarCollapse{
    flex-grow: 0;
}
.bg-gradient-theme{
    background: var(--background-gradien-color);
    background: var(--background-gradien-color-moz);
    background: var(--background-gradien-color-webkit);
}
.border-gradient {
  position: relative;
}
.border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5%; 
  padding: 4px; 
  background: linear-gradient(var(--gradient-angle),rgba(59, 254, 116, 1) 6%, rgba(44, 211, 107, 1) 12%, rgba(45, 185, 117, 1) 18%, rgba(29, 186, 155, 1) 24%, rgba(29, 186, 155, 1) 30%, rgba(45, 153, 131, 1) 36%, rgba(45, 133, 137, 1) 42%, rgba(25, 96, 114, 1) 48%, rgba(0, 0, 0, 0) 52%);
  mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: rotation 5s linear 0s infinite normal forwards; 
}
.seccion-card {
    display: flex;
    margin: 10%;
    justify-content: center;
    align-items: center;
    min-height: 50%;
}

.card-bg-dark {
    background-color: #00000080 !important;
    padding: 10%;
    border-radius: 5%;
    /* box-shadow: 20px 20px 50px 15px rgba(18, 206, 134, 0.192) */
}
.seccion-card .card-bg-dark {
  padding: 0% 10%;
  min-width: 50%;
}
.btn-theme{
    color: #fff;
    background: var(--background-gradien-color);
    background: var(--background-gradien-color-moz);
    background: var(--background-gradien-color-webkit);
    
}
.btn-theme-1{
    background: var(--background-gradien-color);
    background-clip: text;
    background: var(--background-gradien-color-moz);
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background: var(--background-gradien-color-webkit);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


    
    border: 1px solid rgba(59, 254, 116, 1);



}
.bg::before{
    background-color: transparent;
}
.robot_animation{
  width: 280%;
  margin: 0% -68%;
}
.bg{
    background-image: url(https://cssanimation.rocks/images/random/space2.jpg);
    background-size: cover;
    background-position: center center;
    height: auto;
    width: 100vw;
    overflow: hidden;
    position: relative;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    
}
/* background style */
.bg-zoom{
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}
.bg-zoom::before {
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  background-image: url(https://cssanimation.rocks/images/random/space2.jpg);
  background-size: cover;
  background-position: center center;
  animation: bg-animation 165s linear infinite;
  margin: 0;
  padding: 0;
  z-index: -1;
}
@keyframes rotation 
{
    0%
    {
        --gradient-angle : 0deg;
    }
    100%
    {
        --gradient-angle : 360deg;
    }
}
@property --gradient-angle
{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
@media only screen and (max-width: 600px) 
{
    body
{
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: rgb(13, 13, 13);
}
.spectacledcoder-gradient-card1, .spectacledcoder-gradient-card2, .spectacledcoder-gradient-card3
{
    margin: auto;
    width: 80%;
    min-height: 400px;
    margin-top: 10px;
    margin-bottom: 10px;
}

}
.disclaimer
{
    font-family: 'Belanosima', sans-serif;
    position: absolute;
    bottom: 0px; 
    left: 0; 
    margin-left: auto; 
    right: 0; 
    margin-right: auto; 
    width: fit-content;
    color: white;
    text-align: center;
}
.disclaimer a
{
    text-decoration: none;
    color: #0184ff;
}
.disclaimer a:hover
{
    font-weight: bolder;
}
::selection
{
    background-color: #000000;
    color: rgb(255, 255, 255);
}
@keyframes bg-animation {
  0% {
    transform: scale(1);
  }
  16.66667% {
    transform: scale(1.25);
  }
  33.33334% {
    transform: scale(1.5);
  }
  50.00001% {
    transform: scale(1.5);
  }
  66.66668% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sf-fly-by-1 {
    from {
        transform: translateZ(-600px);
        opacity: 0.5;
    }
    to {
        transform: translateZ(0);
        opacity: 0.5;
    }
}
@keyframes sf-fly-by-2 {
    from {
        transform: translateZ(-1200px);
        opacity: 0.5;
    }
    to {
        transform: translateZ(-600px);
        opacity: 0.5;
    }
}
@keyframes sf-fly-by-3 {
    from {
        transform: translateZ(-1800px);
        opacity: 0.5;
    }
    to {
        transform: translateZ(-1200px);
        opacity: 0.5;
    }
}
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 600px;
    -webkit-perspective: 600px;
    z-index: -1;
}
.star-field .layer {
    box-shadow: -411px -476px #cccccc, 777px -407px #d4d4d4, -387px -477px #fcfcfc, -91px -235px #d4d4d4, 491px -460px #f7f7f7, 892px -128px #f7f7f7, 758px -277px #ededed, 596px 378px #cccccc, 647px 423px whitesmoke, 183px 389px #c7c7c7,
        524px -237px #f0f0f0, 679px -535px #e3e3e3, 158px 399px #ededed, 157px 249px #ededed, 81px -450px #ebebeb, 719px -360px #c2c2c2, -499px 473px #e8e8e8, -158px -349px #d4d4d4, 870px -134px #cfcfcf, 446px 404px #c2c2c2,
        440px 490px #d4d4d4, 414px 507px #e6e6e6, -12px 246px #fcfcfc, -384px 369px #e3e3e3, 641px -413px #fcfcfc, 822px 516px #dbdbdb, 449px 132px #c2c2c2, 727px 146px #f7f7f7, -315px -488px #e6e6e6, 952px -70px #e3e3e3,
        -869px -29px #dbdbdb, 502px 80px #dedede, 764px 342px #e0e0e0, -150px -380px #dbdbdb, 654px -426px #e3e3e3, -325px -263px #c2c2c2, 755px -447px #c7c7c7, 729px -177px #c2c2c2, -682px -391px #e6e6e6, 554px -176px #ededed,
        -85px -428px #d9d9d9, 714px 55px #e8e8e8, 359px -285px #cfcfcf, -362px -508px #dedede, 468px -265px #fcfcfc, 74px -500px #c7c7c7, -514px 383px #dbdbdb, 730px -92px #cfcfcf, -112px 287px #c9c9c9, -853px 79px #d6d6d6,
        828px 475px #d6d6d6, -681px 13px #fafafa, -176px 209px #f0f0f0, 758px 457px #fafafa, -383px -454px #ededed, 813px 179px #d1d1d1, 608px 98px whitesmoke, -860px -65px #c4c4c4, -572px 272px #f7f7f7, 459px 533px #fcfcfc,
        624px -481px #e6e6e6, 790px 477px #dedede, 731px -403px #ededed, 70px -534px #cccccc, -23px 510px #cfcfcf, -652px -237px whitesmoke, -690px 367px #d1d1d1, 810px 536px #d1d1d1, 774px 293px #c9c9c9, -362px 97px #c2c2c2,
        563px 47px #dedede, 313px 475px #e0e0e0, 839px -491px #e3e3e3, -217px 377px #d4d4d4, -581px 239px #c2c2c2, -857px 72px #cccccc, -23px 340px #dedede, -837px 246px white, 170px -502px #cfcfcf, 822px -443px #e0e0e0, 795px 497px #e0e0e0,
        -814px -337px #cfcfcf, 206px -339px #f2f2f2, -779px 108px #e6e6e6, 808px 2px #d4d4d4, 665px 41px #d4d4d4, -564px 64px #cccccc, -380px 74px #cfcfcf, -369px -60px #f7f7f7, 47px -495px #e3e3e3, -383px 368px #f7f7f7, 419px 288px #d1d1d1,
        -598px -50px #c2c2c2, -833px 187px #c4c4c4, 378px 325px whitesmoke, -703px 375px #d6d6d6, 392px 520px #d9d9d9, -492px -60px #c4c4c4, 759px 288px #ebebeb, 98px -412px #c4c4c4, -911px -277px #c9c9c9;
    transform-style: preserve-3d;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 4px;
    width: 4px;
    border-radius: 2px;
}
.star-field .layer:nth-child(1) {
    animation: sf-fly-by-1 5s linear infinite;
}
.star-field .layer:nth-child(2) {
    animation: sf-fly-by-2 5s linear infinite;
}
.star-field .layer:nth-child(3) {
    animation: sf-fly-by-3 5s linear infinite;
}
.section-header{
    display: flex;
    background-color: #000;
    height: 15%;
    align-content: space-between;
    justify-content: space-around;
    align-items: center;

}
.waves-divider-seccions-down{
    display: block;
    width: 100%;
    height: 60px;
    max-height: 60px;
    margin: 0;
    z-index:5;
    bottom:0;
    position:absolute;
    left:0px;
    float:left;
  }
.waves-divider-seccions-top{
    display: block;
    width: 100%;
    height: 60px;
    max-height: 60px;
    margin: 0;
    z-index:5;
    top:0;
    position:absolute;
    left:0px;
    float:left;
    transform: rotate(180deg);
  } 
  .parallax0 > use {
    animation: move-forever1 10s linear infinite;
    &:nth-child(1) {
      animation-delay: -2s;
    }
  }
  .parallax1 > use {
    animation: move-forever1 10s linear infinite;
    &:nth-child(1) {
      animation-delay: -2s;
    }
  }
  .parallax2 > use {
    animation: move-forever2 8s linear infinite;
    &:nth-child(1) {
      animation-delay: -2s;
    }
  }
  .parallax3 > use {
    animation: move-forever3 6s linear infinite;
    &:nth-child(1) {
      animation-delay: -2s;
    }
  }
  .parallax4 > use {
    animation: move-forever4 4s linear infinite;
    &:nth-child(1) {
      animation-delay: -2s;
    }
  }
  @keyframes move-forever0 {
    0% {
        transform: translate(-90px, 0%);
      }
    100% {
        transform: translate(85px, 0%);
      }
  }
  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  @keyframes move-forever3 {
    0% {
      transform: translate(85px, 0%);
    }
    100% {
      transform: translate(-90px, 0%);
    }
  }
  @keyframes move-forever4 {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  .progress{
    width: 100%;
  }
  .embla {
    overflow: hidden;
  }
  .embla__container {
    display: flex;
  }
  .embla__slide {
    flex: 0 0 100%;
    min-width: 0;
  }
