@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --transparent-white: #ffffff3c;
  --transparent-black: #0000003c;
  --lighter-gray: #787878;
  --darker-gray: #111111;
  --wine-red: #722F37;
  --carmine-red: #FF0038;
  --box-shadow: -2px -2px 10px #ffffff33, 10px 10px 12px #000000, inset -2px -2px 5px #ffffff33, inset 4px 4px 3px #000000b3;
}

body {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.4666666667)), url("../Assets/algoBackground.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
body .primary_button {
  padding: 12px 27px;
  background: linear-gradient(135deg, var(--wine-red), var(--carmine-red), var(--wine-red));
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0.8rem;
  border-top-left-radius: 0;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
body .primary_button button {
  border: none;
  outline: none;
  background: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--white);
  cursor: pointer;
}
body .primary_button button span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}
body .primary_button:hover {
  background: linear-gradient(-135deg, var(--wine-red), var(--carmine-red), var(--wine-red));
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0.8rem;
}
body .social-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .social-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background: linear-gradient(135deg, var(--wine-red), var(--carmine-red), var(--wine-red));
  border-radius: 100%;
  box-shadow: -2px -2px 3px rgba(255, 255, 255, 0.2), 2px 2px 12px #000000, inset -2px -2px 3px rgba(255, 255, 255, 0.2), inset 2px 2px 3px rgba(0, 0, 0, 0.7019607843);
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
body .social-container a ion-icon {
  font-size: 1.2rem;
}
body .social-container a:hover {
  scale: 1.2;
}
body .title-bar {
  width: 100%;
  height: 5rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .title-bar .back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--white);
  transition: all 0.3s linear;
}
body .title-bar .back-button:hover {
  gap: 0.8rem;
  letter-spacing: 1px;
}
body .title-bar img {
  height: 50%;
}
body .algo-landing-section {
  width: 100%;
  min-height: 100vh;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .algo-landing-section .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.2rem;
}
body .algo-landing-section .text h1 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--lighter-gray);
}
body .algo-landing-section .text h1 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--white);
}
body .algo-landing-section .text .others {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
}
body .algo-landing-section .text .others .sub-heading {
  font-size: 1.2rem;
  color: var(--lighter-gray);
  font-weight: 300;
}
body .algo-landing-section .text .others .desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--lighter-gray);
  letter-spacing: 1px;
}
body .algo-landing-section .text .others .desc span {
  font-weight: 300;
  color: var(--white);
}
body .algo-landing-section .text .action-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
body .algo-landing-section .graphics {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .algo-landing-section .graphics img {
  width: 80%;
}
body .features {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
body .features .box {
  width: 30%;
  height: 240px;
  padding: 1.6rem 2rem;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--transparent-black);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.2), 10px 10px 12px #000000, inset -2px -2px 5px rgba(255, 255, 255, 0.2), inset 4px 4px 3px rgba(0, 0, 0, 0.7019607843);
}
body .features .box .desc {
  color: var(--lighter-gray);
  font-size: 0.9rem;
}
body .features .box .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1.2rem;
}
body .about {
  width: 100%;
  min-height: 60vh;
  margin-top: 3rem;
  padding: 3rem 4rem;
  background: linear-gradient(to bottom, transparent, var(--black), transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .about .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: static;
}
body .about .container .col {
  flex: 1;
}
body .about .container .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}
body .about .container .text .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body .about .container .text .row .title {
  margin-left: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  position: relative;
}
body .about .container .text .row .title::before {
  content: "";
  width: 2px;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to bottom, var(--carmine-red), var(--wine-red));
  box-shadow: 0 0 12px var(--carmine-red);
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
  0% {
    box-shadow: 0 0 12px var(--carmine-red);
  }
  50% {
    box-shadow: 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 12px var(--carmine-red);
  }
}
body .about .container .text .row .graphics-container-mob {
  display: none;
}
body .about .container .text .row .desc {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--lighter-gray);
}
body .about .container .graphics {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .about .container .graphics img {
  width: 90%;
  border-radius: 100%;
  box-shadow: 0 0 0 transparent, 0 10px 12px var(--transparent-white);
}
body .points-to-consider {
  width: 100%;
  padding: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.4666666667), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
body .points-to-consider .box {
  width: 23%;
  height: 200px;
  padding: 1.6rem 2rem;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--transparent-black);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.2), 10px 10px 12px #000000, inset -2px -2px 5px rgba(255, 255, 255, 0.2), inset 4px 4px 3px rgba(0, 0, 0, 0.7019607843);
}
body .points-to-consider .box .desc {
  color: var(--lighter-gray);
  font-size: 0.9rem;
}
body .points-to-consider .box .points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 1px;
}
body .call-to-action {
  width: 100%;
  min-height: 40vh;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .call-to-action .container {
  width: 100%;
  height: 100%;
  padding: 4rem 3rem;
  background: linear-gradient(to bottom, var(--wine-red), var(--black));
  border-radius: 0.6rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
body .call-to-action .container .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
body .call-to-action .container .main p {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: var(--white);
}
body .declaration {
  width: 100%;
  padding: 0.4rem 2rem;
  background: var(--wine-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .declaration p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6470588235);
}
body .declaration .nexpace {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
body .declaration .nexpace a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--white);
  transition: all 0.3s linear;
}
body .declaration .nexpace a:hover {
  letter-spacing: 3px;
}

@media all and (max-width: 999px) {
  body {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.4666666667)), url("../Assets/algoBackground.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  body .title-bar {
    height: 7rem;
    padding: 0 2rem;
  }
  body .title-bar img {
    height: 35%;
  }
  body .algo-landing-section {
    width: 100%;
    min-height: 80vh;
    padding: 0 2rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  body .algo-landing-section .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  body .algo-landing-section .text h1 {
    font-size: 2rem;
    font-weight: 400;
  }
  body .algo-landing-section .text .action-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  body .algo-landing-section .graphics {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .algo-landing-section .graphics img {
    width: 100%;
  }
  body .features {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  body .features .box {
    width: 100%;
    height: 240px;
  }
  body .features .box .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 1.2rem;
  }
  body .about {
    width: 100%;
    min-height: 60vh;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, transparent, var(--black), transparent);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  body .about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: static;
  }
  body .about .container .col {
    flex: 1;
  }
  body .about .container .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
  }
  body .about .container .text .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  body .about .container .text .row .title {
    margin-left: 2rem;
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    position: relative;
  }
  body .about .container .text .row .title::before {
    content: "";
    width: 2px;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(to bottom, var(--carmine-red), var(--wine-red));
    box-shadow: 0 0 12px var(--carmine-red);
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    animation: blink 1s ease-in-out infinite;
  }
  @keyframes blink {
    0% {
      box-shadow: 0 0 12px var(--carmine-red);
    }
    50% {
      box-shadow: 0 0 12px transparent;
    }
    100% {
      box-shadow: 0 0 12px var(--carmine-red);
    }
  }
  body .about .container .text .row .graphics-container-mob {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .about .container .text .row .graphics-container-mob img {
    width: 100%;
    border-radius: 100%;
    box-shadow: 0 0 0 transparent, 0 10px 12px var(--transparent-white);
  }
  body .about .container .text .row .desc {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--lighter-gray);
  }
  body .about .container .graphics {
    display: none;
  }
  body .points-to-consider {
    padding: 3rem 2rem;
  }
  body .points-to-consider .box {
    width: 100%;
  }
  body .call-to-action {
    width: 100%;
    min-height: 40vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .call-to-action .container {
    width: 100%;
    height: 100%;
    padding: 2.6rem 1.6rem;
    gap: 3rem;
  }
  body .call-to-action .container .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
  }
  body .call-to-action .container .main p {
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    color: var(--white);
  }
  body .declaration {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }
  body .declaration p {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6470588235);
  }
  body .declaration .nexpace {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  body .declaration .nexpace a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--white);
    transition: all 0.3s linear;
  }
  body .declaration .nexpace a:hover {
    letter-spacing: 3px;
  }
}/*# sourceMappingURL=algoStyle.css.map */