:root {
  --clr-primary: #1d1a46;
  --clr-bright-green: #99e721;
  --clr-bright-blue: #0090c4;
  --clr-white: #ffffff;
  --clr-light-blue: #4c8dbf;
  --clr-light-gray: #8c8c8c;

  --fs-Logo: 5rem;
  --fs-h1: 3.125rem;
  --lh-h1: 3.21rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.08rem;
  --lh-h5: 1.38rem;
  --fs-body: 1.375rem;
  --lh-body: 1.74rem;
  --fs-small: 1.06rem;
  --lh-small: 1.244rem;
  --fs-ultra-small: .8rem;
  --fs-icon: 1.625rem;
  --fs-button: 1.675rem;
  --lh-button: 1.619rem;
  --size-icon: 2.925rem;

  --br-planCard: 12px;
}

@font-face {
  font-family: 'Helvetica LT Std';
  src: url('../assets/fonts/HelveticaLTStd-Bold.woff2') format('woff2'), url('../assets/fonts/HelveticaLTStd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Std';
  src: url('../assets/fonts/HelveticaLTStd-Blk.woff2') format('woff2'), url('../assets/fonts/HelveticaLTStd-Blk.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica LT Std';
  src: url('../assets/fonts/HelveticaLTStd-Roman.woff2') format('woff2'), url('../assets/fonts/HelveticaLTStd-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica LT Std', Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
}

html{
  /* overflow-x: hidden; */
  width: 100vw;
}

body {
  width: 100vw;
  overflow-x: hidden;
}

/**------------Common-------------**/

a {
  color: var(--clr-white);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

section {
  min-height: 100vh;
  height: fit-content;
  width: 100%;
}

strong {
  font-weight: 900;
}

h1 {
  line-height: var(--lh-h1);
  font-size: var(--fs-h1);
  font-weight: 900;
}

.infinitics-logo {
  width: 9.125rem;
  height: auto;
}

.text--green {
  color: var(--clr-bright-green);
}

.text--blue {
  color: var(--clr-bright-blue);
}

.text--purple {
  color: var(--clr-primary);
}

.text--white {
  color: var(--clr-white);
}

.text--small {
  font-size: var(--fs-small) !important;
  line-height: var(--lh-small) !important;
}

.floating-circle {
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  border: 0.2em solid;
  position: absolute;
}

.floating-circle-big {
  width: 50vw;
  height: 50vw;
}

.floating-circle-small {
  width: 35vw;
  height: 35vw;
}

.border-green {
  border-color: var(--clr-bright-green);
}

.border-blue {
  border-color: var(--clr-bright-blue);
}

.border-white {
  border-color: var(--clr-white);
}

.top-right {
  top: -23%;
  right: -13%;
}

.top-center{
  top: 0;
  right: 50%;
}

.middle-right{
  top: 0;
  right: 0;
  transform: translate(25%, 50%);
}

.top-right-inner {
  transform: translate(-15%, -20%);
}

.top-left {
  top: 0;
  left: 0;
}

.bottom-left {
  bottom: -20%;
  left: 9%;
}

.floating-circle.active{
  transform: scale(1, 1);
}

.bottom-right {
  bottom: 0;
  right: 0;
}

.main--button {
  padding: 0.5em 1em;
  color: var(--clr-primary);
  font-weight: bold;
  background-color: var(--clr-bright-green);
  border: none;
  border-radius: 0.5em;
  font-size: var(--fs-button);
  line-height: var(--lh-button);
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}

.main--button:hover {
  text-decoration: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-active{
  overflow: hidden;
}

/**--------------Loader----------------**/

.loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: 100vw;
  
  background-color: var(--clr-primary);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  
  transition: .5s ease-in-out;
  z-index: 2000;
}

.loader img {
  max-width: 450px;
  width: 60%;
  min-width: 250px;
  height: auto;
}

.loader h2 {
  color: white;
  font-size: var(--fs-h1);
  font-weight: 900;
}

.loader--construction{
  max-width: 500px;
  margin-left: 4rem;
}

/**--------------Hero section----------**/

#hero--section {
  position: relative;
  background-color: var(--clr-primary);
  height: 200vh;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 2em;
  z-index: 4;
}

#hero--section .top-left{
  left: -29%;
  top: -24%;
}

#hero--section .border-white{
  display: none;
}

.hero--container {
  top: 0;
  height: 100vh;
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
}

.hero--SubContent {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.hero--content {
  min-width: 60%;
  max-width: 80%;
  max-height: 80vh;
  position: sticky;
}

.hero--image {
  width: 50%;
  margin-right: 1.5em;
}

.heroScroll--fixed {
  position: fixed;
}

.hero--text {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 415px;
}

.hero--text>p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.hero--title {
  margin: 2em 0;
}

.carousel--container {
  position: relative;
}

.carousel--item {
  position: absolute;
  min-height: 6em;
  top: 0;
  left: 0;
  transition: 1s ease-in-out;
  opacity: 0;
}

.carousel--item-selected {
  position: unset;
  top: unset;
  left: unset;
  opacity: 1;
}

.hero--items-container {
  display: flex;
  margin: 1.71rem 0;
}

.hero--item {
  width: 2.5em;
  height: 0.2em;
  background-color: var(--clr-white);
  margin: 0 0.25em;
  transition: 1s ease-in-out;
  cursor: pointer;
}

.hero--item:nth-child(1) {
  margin-left: 0;
}

.hero--item-selected {
  background-color: var(--clr-bright-green);
}

.hero--law-text {
  font-size: var(--fs-small);
}

.hero--text .main--button {
  align-self: flex-start;
  margin-top: 1em;
  transition: .5s ease-in-out;
}

.hero--button-disabled {
  opacity: 0;
  cursor: unset;
}

/**-----------Plans section---------**/

#plans--section {
  background-color: var(--clr-bright-blue);
  position: relative;
  align-items: flex-start;
  min-height: 110vh;
  overflow-y: visible;
  padding: 5em;
  z-index: 4;
}

#plans--section .border-white {
  right: 4%;
  top: -15%;
}

.plans--content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: min-content;
  width: 80%;
  max-width: 1100px;
  min-width: 280px;
  z-index: 1;
}

.plans--plans-title {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  min-width: 300px;
  align-items: flex-start;
}

.plans--extra-info {
  display: flex;
  width: 20%;
  max-width: 250px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.plans--extra-info-p {
  margin-top: 0.5em;
  max-width: 100%;
  text-align: right;
  margin-bottom: 7rem;
}

.plans--image {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  max-height: 756.5px;
  max-width: 807px;
  margin: 0;
  padding: 0;
  z-index: 0;
}

.plans--image>img {
  height: auto;
  width: 100%;
  z-index: 0;
}

/**------------Planes popup section--------**/

.planesContainer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 100vw;
  height: 100vh;

  background-color: var(--clr-primary);
  transform: translateX(100%);
  transition: .5s ease;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 20000;
}

.planesContainer.active {
  transform: translateX(0);
}

.planesContainer--scrollable{
  width: 100%;
  max-height: 100%;
  height: max-content;
  overflow-y: auto;

  padding: 5% 0;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.planesContainer .planes{
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  width: 90%;
  padding: 5rem 1rem 1rem 1rem;
  background-color: var(--clr-white);
  border-radius: 32.1px;
  flex-wrap: wrap;
  overflow-y: unset;
}

.planes .close-button{
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.closeButton{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: .5s ease;
  background-color: var(--clr-primary);
  border-radius: 50%;
}

.closeButton:hover{
  transform: scale(1.1) rotate(1turn);
}

.closeButton::before, .closeButton::after{
  content: "";
  position: absolute;
  width: 25px;
  height: 4px;
  background-color: var(--clr-bright-green);
  border-radius: 4px;
  transform: rotate(45deg);
}

.closeButton::after{
  transform: rotate(-45deg);
}

.planes--plan {
  --clr-plan-background: var(--clr-bright-green);
  --clr-plan-subtitle: var(--clr-bright-green);
  --clr-plan-subtitleBackground: var(--clr-primary);
  --clr-plan-titles: var(--clr-primary);
  --clr-button: var(--clr-bright-blue);

  display: flex;
  flex-direction: column;
  width: 260px;
  height: 100%;
  max-height: 594px;
  border-radius: 32.1px;
  /* margin-right: 2rem; */
  margin-bottom: 3rem;
}

.planes--plan > * {
  text-align: center;
}

.planes--plan h2{
  color: inherit;
  font-weight: 900;
  font-size: var(--fs-h2);
}

.planes--plan > .planes--plan--title{
  width: 100%;
  background-color: var(--clr-plan-subtitleBackground);
  color: var(--clr-plan-subtitle);
  text-transform: uppercase;
  border-top-right-radius: var(--br-planCard);
  border-top-left-radius: var(--br-planCard);
  padding: .8rem;
}

.planes--plan--title > h4{
  font-size: 1.425rem;
  font-weight: 900;
}

.planes--plan > .planes--plan--hero{
  width: 100%;
  background-color: var(--clr-plan-background);
  padding: 1rem 1.6rem;
  color: var(--clr-plan-titles);
}

.planes--plan--hero p {
  font-weight: bold;
}

.planes--plan--body{
  padding: 1rem;
  border: 2px solid #d6d6d6;
}

.planes--plan > .planes--plan--body.subida{
  border-bottom: 0;
}

.planes--plan--body > h4 {
  font-size: 2rem;
  line-height: 47.3px;
  color: var(--clr-primary);
  /* letter-spacing: -4.34px; */
  font-weight: 900;
}

.planes--plan--body > p {
  color: var(--clr-light-gray);
  font-size: 18.6px;
  line-height: 22.7px;
  letter-spacing: 0.37px;
}

.planes--plan--price{
  background-color: var(--clr-plan-background);
  color: var(--clr-plan-titles);
  padding: 0.7rem 1.56rem ;
}

.planes--plan--footer{
  padding: 1.56rem .8rem;
  border-bottom-right-radius: var(--br-planCard);
  border-bottom-left-radius: var(--br-planCard);
  border: 2px solid #d6d6d6;
}

.writeButton{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-button);
  color: var(--clr-white);
  font-size: 22.7px;
  font-weight: normal;
}

.writeButton span{
  padding-left: .5rem;
}

.writePencil{
  position: relative;
  padding-bottom: 2px;
}

.writePencil::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--clr-white);
  transform: scaleX(0);
  transition: .3s ease-in;
  transform-origin: left;
}

.writeButton:hover .writePencil::after{
  transform: scaleX(1);
}

.planes--plan--secondary{
  --clr-plan-background: var(--clr-light-blue);
  --clr-plan-subtitle: var(--clr-primary);
  --clr-button: var(--clr-primary);
  --clr-plan-subtitleBackground: var(--clr-bright-green);
  --clr-plan-titles: var(--clr-white);
}

#plans--section .floating-circle.border-green{
  width: 35vw;
  height: 35vw;
}

#IVAText{
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}

/**------------Test section--------**/

#test--section {
  min-height: 100vh;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--clr-primary);
  z-index: 3;
}

#test--section .floating-circle--container.white--ring{
  position: absolute;
  bottom: calc(-50% - -7.5vw);
  height: 35vw;
  left: 0;
  width: 100vw;
  overflow-x: hidden;
}

#test--section .border-white {
  /* bottom: calc(-50% - -7.5vw); */
  right: -23%;
  z-index: 1;
}

.test--content-container {
  width: 100%;
  max-width: 1200px;
  align-items: flex-end;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.test--information {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  margin: 5rem 2rem 0 0;
  height: 100%;
  max-width: 400px;
}

.test--information>p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 2em 0;
}

.test--information>.main--button {
  margin: 2rem 0;
}

.test--image {
  min-width: 320px;
  /* width: 70%; */
  max-height: 690px;
  /* margin-left: 10rem; */
}

/**--------------Download section-----------**/

#download--section {
  width: 100vw;
  background-color: var(--clr-bright-blue);
  padding: 3.83rem 5em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 110vh;
  z-index: 2;
}

#download--section .border-white {
  width: 35vw;
  height: 35vw;
  bottom: -30%;
  right: 15%;
}

#download--section .border-green {
  width: 35vw;
  height: 35vw;
  top: unset;
  right: unset;
  bottom: -15%;
  left: -10%;
}

.download--content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-right: 200px;
  width: fit-content;
  position: relative;
  z-index: 3;
}

.downloadTitle {
  margin-bottom: 1em;
}

#download--section .hero--items-container {
  margin: 1rem 0;
}

.buttons--container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.download--buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 3em;
}

.download--buttons--storeButtons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.download--button--item {
  margin: 1rem 0;
}

.download--button-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  margin-top: 2rem;
}

.download--button-image>img {
  width: 100%;
  height: auto;
}

.phoneImage {
  width: 40vw;
  max-width: 694px;
  margin: 0 0.5em;
}

.download--extra-images {
  margin: 3em 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}

#firstImage {
  position: absolute;
  right: 12.5%;
  top: 16%;
}

#secondImage {
  position: absolute;
  right: 20%;
  top: 45%;
}

#thirdImage {
  position: absolute;
  left: 13%;
  top: 59%;
}

.phoneImage>img {
  width: 100%;
  height: auto;
}

.download--footer {
  align-self: flex-end;
  position: absolute;
  right: 29%;
  bottom: 3.5rem;
  height: 75px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.download--footer>p {
  margin-right: 1rem;
  max-width: 230px;
  text-align: end;
  color: var(--clr-white);
  font-size: var(--fs-body);
  line-height: 1.49rem;
}

.download--footer>img {
  width: 81.1px;
  height: auto;
}

/**-------------Footer section---------------**/

footer {
  min-height: 637px;
  height: 60vh;
  display: flex;
  /* background-color: var(--clr-primary); */
  padding: 1em 2em;
  position: relative;
  overflow-y: hidden;
  z-index: 1;
}

.rif{
  color: white;
  padding-left: 1rem;
  text-align: start;
}

footer .floating-circle-big{
  display: none;
}

.footer--content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 60%;
  min-width: 300px;
}

#footer--blue--title {
  color: var(--clr-light-blue);
}

.footerl--title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-right: 6rem;
}

#footerLogo {
  width: 146px;
}

.footer--content>.hero--items-container {
  margin: 2.5em 0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.footer--social-media-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  height: 3em;
  margin-right: 1em;
  cursor: pointer;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}

.footer--social-media-item>.footer--social-media-item--icon {
  height: var(--size-icon);
  width: var(--size-icon);
  border: 5px solid var(--clr-white);
  background-color: var(--clr-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.2rem;
  margin: 0;
  border-radius: 50%;
  margin-right: .5rem;
}

/* .footer--social-media-item--icon a {
  display: inline;
} */

.social--media-text {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  display: block;
}

.footer--social-media-item--icon>i {
  color: var(--clr-primary);
  font-size: var(--fs-icon);
  margin: .5rem;
}

#whatsapp-icon {
  border: 0;
  padding: 0;
  background-color: transparent;
}

#whatsapp-icon:hover {
  text-decoration: none !important;
}

#whatsapp-icon>i {
  font-size: var(--size-icon);
  color: var(--clr-white);
}

.footer--address {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 35%;
}

.footer--download-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer--download-button {
  margin-bottom: 1em;
  cursor: pointer;
}

.footer--copyright {
  position: absolute;
  bottom: .8rem;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
}

.footer-video {
  position: absolute;
  background-color: black;
  z-index: -1;
  width: 100vw;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  justify-content: center;
}

.footer-video::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(29,26,70);
  background: radial-gradient(circle, rgba(29,26,70,0.45) 0%, rgba(29,26,70,0.8) 70%, rgba(29,26,70,1) 100%);
}

.footer-video video{
  position: absolute;
  top: 20%;
  width: 100%;
  max-width: 1200px;
  /* transform: translateY(-50%); */
}


.popup--container{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  opacity: 0;
  transition: .3s ease-in-out;
  background-color: rgb(0,0,0,.5);
}

.popup--container.active{
  transform: scale(1);
  opacity: 1;
  z-index: 500000;
}

.speedtest--mesage{
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  padding-bottom: 2rem;
  max-width: 600px;
  position: relative;
}

.speedtest--mesage strong {
  color: var(--clr-bright-green);
}

#speedTestLinkButton{
  margin-top: 3rem;
}

#closeSpeedtest{
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@media screen and (max-width: 1350px) {
  :root{

  }
  /**--------------Hero section---------------**/

  /**--------------Planes section-------------**/

  /**--------------Test Section---------------**/

  /**--------------Download Section-----------**/
  #download--section{
    flex-direction: column;
  }

  .download--extra-images {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  #download--section .border-white{
    right: 5%;
  }

  #download--section .border-white{
    bottom: -8%;
  }

  #firstImage {
    position: relative;
    right: unset;
    top: unset;
    width: 100%;
    height: auto;
  }

  #firstImage > picture {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  #firstImage img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  
  #secondImage {
    display: none;
  }
  
  #thirdImage {
    display: none;
  }

  .download--footer{
    display: none;
  }

  .download--buttons--storeButtons {
    flex-direction: row;
    align-items: flex-start;
  }

  .download--buttons--storeButtons .download--button-image{
    margin: 2rem;
  }

  .download--buttons--storeButtons .download--button-image:first-child{
    margin-left: 0;
  }

  /**--------------Footer----------------**/
  .footer--content{
    width: 90%;
  }

}

@media screen and (max-width: 550px) {
  :root {
    --fs-h1-hero: 1.55rem;
    --lh-h1-hero: 1.64rem;

    --fs-body-hero: 0.75rem;
    --lh-body-hero: .86rem;

    --fs-h1: 1.55rem;
    --lh-h1: 1.51rem;
    --fs-h2: 1.875rem;
    --lh-h2: 1.88rem;

    --fs-h5: 0.43rem;
    --lh-h5: 0.543rem;

    --fs-body: 0.75rem;
    --lh-body: 0.86rem;

    
    --fs-small: 0.65rem;
    --lh-small: 0.76rem;

    --fs-ultra-small: .8rem;

    --size-icon: 18.75px;
    --fs-icon: 9.325px;

    --fs-button: 0.7475rem;
    --lh-button: 0.7243rem;
  }

  .border-white, .border-blue, .border-green{
    border-width: .15rem;
  }

  /**--------------Hero section----------**/
  /* #hero--section{
    overflow-x: hidden;
  } */

  .hero--content {
    flex-direction: column;
    min-width: 300px;
    max-width: 600px;
    padding: 2rem;
  }
  #hero--section .infinitics-logo {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    top: -10%;
  }
  .hero--text {
    width: 100%;
  }
  #hero--section h1 {
    font-size: var(--fs-h1-hero);
    line-height: var(--lh-h1-hero);
  }

  /* #hero--section .hero--SubContent {
    overflow-x: hidden;
  } */

  #hero--section .border-green{
    width: 450px;
    height: 450px;
    top: -45%;
    left: calc(50% - 225px);
  }

  #hero--section .border-white{
    display: block;
    right: -23%;
    top: 27%;
  }
  
  #hero--section .border-blue{
    left: -29%;
    top: 22%;
  }

  .carousel--item{
    min-height: 4em;
  }
  
  .hero--title{
    margin: 1rem 0;
  }

  .hero--text p {
    font-size: var(--fs-body-hero);
    line-height: var(--lh-body-hero);
  }
  .hero--image {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-top: 1rem;
  }
  .hero--law-text {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
  }

  #canvas3d{
    width: 126.65px !important;
    height: 200.33px !important;
  }

  /*-------------Planes section-----------------*/
  #plans--section {
    padding: 3rem 2rem;
    overflow-x: hidden;
  }
  .plans--content{
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .plans--content h1 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
  }

  #plans--section .plans--extra-info {
    width: 60%;
    align-items: flex-start;
  }

  #plans--section .plans--extra-info-p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    text-align: left;
    margin: 1rem 0;
  }

  #plans--section .infinitics-logo{
    width: 50.68px;
  }

  #plans--section .hero--items-container{
    margin: 0;
  }

  #plans--section .border-white{
    width: 176px;
    height: 176px;
    top: 56%;
    left: -33%;
    border-width: .15em;
  }

  #plans--section .floating-circle.border-green {
    bottom: 25%;
    left: 65%;
    width: 420px;
    height: 420px;
    border-width: .15em;
  }


  .plans--image{
    width: 90%;
  }

  /*-------------Test Section-----------------*/

  #test--section{
    overflow-x: hidden;
    background-color: transparent;
    z-index: 4;
  }

  #test--section .border-white {
    bottom: calc(50% - 1.5vw);
    width: 330px;
    height: 330px;
    right: -65%;
  }

  body{
    background-color: var(--clr-primary);
  }

  .test--image{
    /* transform: scale(.5) */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .test--image canvas {
    width: 169.5px !important;
    height: 324px !important;
  }

  /*-------------Download Section-----------------*/

  #download--section{
    flex-direction: column-reverse;
    flex-wrap: wrap;
    padding: 50px 34px
  }

  .download--content {
    width: 100%;
    margin: 0;
  }

  .floating-circle--container{
    position: absolute;
    width: 100vw;
    overflow-x: hidden;
    left: 0;
  }
  
  .floating-circle--container.green--ring{
    top: -25%;
    height: 175vh;
  }

  .floating-circle--container.white--ring{
    height: 250px;
    bottom: 20%;
  }

  #download--section .floating-circle{
    border-width: .15rem;
  }

  #download--section .floating-circle.border-green{
    width: 175vw;
    height: 175vw;
    top: 0;
    right: calc(50% - 87.5vw);
    bottom: unset;
    left: unset;
    z-index: 0;
  }

  #download--section .floating-circle.border-white{
    min-width: 250px;
    min-height: 250px;
    z-index: 2;
    bottom: 0%;
    right: calc(-50% - 20px);
  }

  .downloadTitle{
    margin-top: 4rem;
    max-width: 55%;
    min-width: 150px;
  }

  .download--buttons{
    margin: 0;
  }

  .download--content .download--buttons--storeButtons{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .download--button-image {
    width: 45%;
    margin: 0;
  }

  .download--buttons--storeButtons .download--button-image{
    margin: .5rem 0;
  }

  /**-------------Footer---------------**/
  footer {
    min-height: unset;
    max-height: unset;
    height: unset;
    width: 100vw;
    display: flex;
    /* background-color: var(--clr-primary); */
    padding: 2rem 2rem 10rem 2rem;
    position: relative;
    justify-content: center;
    overflow-x: hidden;
  }

  footer .floating-circle-big{
    border-width: .15rem;
    display: inline;
  }

  .footer--content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    width: 100%;
    /* min-width: 300px; */
  }
  #footer--blue--title {
    color: var(--clr-light-blue);
  }
  .footerl--title {
    padding-right: 0;
  }
  .footer--content>.hero--items-container {
    margin: 1.5em 0;
  }
  .footer-links {
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer--download-buttons-container {
    height: 100%;
  }
  .footer--address {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 60%;
  }
  .footer--download-buttons-container {
    width: 100%;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
  }
  .footer--download-button {
    margin-bottom: 1em;
    cursor: pointer;
    width: 105px;
  }

  .footer--download-button img {
    width: 100%;
    height: auto;
  }

  #footerLogo{
    position: absolute;
    bottom: -4rem;
    width: 148.5px;
    width: 60px;
    left: calc(50% - 30px);
  }

  .footer-video::after{
    background: rgb(29,26,70);
    background: linear-gradient(0deg, rgba(29,26,70,0.50) 0%, rgba(29,26,70,0.80) 40%, rgba(29,26,70,1) 100%);
  }

  .footer-video video{
    top: 100%;
    transform: translateY(-50%);
  }

  .footer--copyright{
    bottom: 2rem;
  }
}