@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&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");
/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(css/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
body {
  --google-font-color-materialiconstwotone: none;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  color: white;
}
:root {
  --bg: #1f1d2c;
  --green: #47b291;
  --gray: #262837;
  --os: "Oswald", sans-serif;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
button {
  cursor: pointer;
}
.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}
.container-fluid {
  width: 100%;
  padding: 0 3rem;
}
body {
  background: var(--bg);
}
p {
  font-size: 1.6rem;
}
/* header section */
.logo {
  width: 12rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
}
.links a {
  font-size: 1.6rem;
}
.logins {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.btn {
  font-size: 1.6rem;
  height: 5rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  background: var(--green);
  font-weight: 600;
}
.logins a {
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 600;
}
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 2rem 0;
  z-index: 99999;
  background: transparent;
  transition: 0.3s;
}
.on {
  background: var(--bg);
}
/* hero section */
.banner {
  background: url(images/bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin-top: 12rem;
}
.starting {
  text-align: center;
  padding-top: 5rem;
}
.title {
  font-family: var(--os);
  font-size: 6rem;
  font-weight: 700;
}
.title span {
  color: var(--green);
  font-family: var(--os);
}
.starting p {
  font-size: 2rem;
  margin: 2rem 0;
}
.cta {
  font-family: var(--os);
  font-size: 2rem;
  margin-top: 1rem;
}
.banner-img {
  width: 30%;
  margin: auto;
  margin-top: 10rem;
  position: relative;
}
.point {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-family: var(--os);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  width: 24rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  justify-content: center;
}
.point i,
.point span {
  font-size: 4rem;
  color: var(--green);
}
.point:nth-child(2) {
  position: absolute;
  top: 0;
  left: -25rem;
}
.point:nth-child(3) {
  position: absolute;
  top: 25rem;
  left: -35rem;
}
.point:nth-child(4) {
  position: absolute;
  top: 50rem;
  left: -25rem;
}
.point:nth-child(5) {
  position: absolute;
  top: 50rem;
  right: -25rem;
}
.point:nth-child(6) {
  position: absolute;
  top: 25rem;
  right: -35rem;
}
.point:nth-child(7) {
  position: absolute;
  top: 0;
  right: -25rem;
}
/* why section */
.sp {
  padding: 10rem 0;
}
.section-title {
  text-align: center;
  padding-top: 5rem;
  font-size: 4.5rem;
  font-family: var(--os);
  font-weight: 700;
}
.section-title span {
  color: var(--green);
  font-family: var(--os);
}
.des {
  font-size: 1.6rem;
}
.content .des {
  width: 55%;
  margin: auto;
  text-align: center;
  font-weight: 400;
  margin-top: 3rem;
}
/* Features section */
.text h1 {
  text-align: left;
  margin-bottom: 3rem;
}
.wraper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 0;
}
.card {
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  text-align: center;
  height: 18rem;
  transition: 0.3s;
}
.card img {
  height: 10rem;
}
.card p {
  font-size: 1.3rem;
  margin-top: 1rem;
}
.card:nth-child(2),
.card:nth-child(5) {
  margin-top: 2rem;
}
.card:hover {
  background: var(--green);
  transform: translateY(-10px);
  box-shadow: #47b29025 0px 1px 1px 0px inset, #47b29046 0px 50px 100px -20px,
    #47b29082 0px 30px 60px -30px;
}
/* steps section */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
  width: 70%;
  margin: 0 auto;
  margin-top: 10rem;
}
.img {
  width: 12rem;
  aspect-ratio: 1/1;
  margin: auto;
}
.step {
  text-align: center;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid var(--green);
  position: relative;
  display: flex;
}
.number {
  position: absolute;
  width: 6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--green);
  top: 0rem;
  left: 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--os);
  font-weight: 600;
  border: 1rem solid var(--bg);
}
.main h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 2rem;
  font-family: var(--os);
  text-transform: uppercase;
  text-align: center;
}
/* PROTECT ALL YOUR DEVICES */
.wrap2 {
  align-items: center;
  margin-top: 10rem;
}
.t2 {
  text-align: left;
  font-size: 3rem;
}
.points {
  margin: 3rem 0;
}
.list {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.list i {
  font-size: 3rem;
  color: var(--green);
}
.list p {
  font-size: 2rem;
  font-weight: 600;
}
footer {
  padding: 10rem 0;
  margin-top: 10rem;
  background: var(--gray);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
.grid-4 h3 {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--os);
  text-transform: uppercase;
}
.grid-4 p {
  font-size: 1.3rem;
  margin-top: 1rem;
}
.ending {
  background: var(--bg);
  padding: 3rem 0;
}
.ending p {
  font-size: 1.5rem;
  color: #70738d;
}
.ending a {
  color: var(--green);
}
.menu {
  display: none;
}

/* signup */
.signup .banner {
  padding: 10rem 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  align-items: center;
}
.flex h3 {
  font-size: 2rem;
}
.gridd {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background: var(--gray);
  padding: 4rem 2rem;
  border-radius: 1rem;
  align-items: center;
}
.texts h3 {
  font-size: 2rem;
}
.texts p {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.price h3 {
  font-size: 2rem;
}
.price small {
  font-size: 1.3rem;
}
.right {
  height: 100%;
  text-align: right;
}
.logos img {
  width: 5rem;
}
.total {
  margin-top: 5rem;
  font-size: 1.8rem;
}

/* form */
input,
select {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  height: 6rem;
  padding: 0 2rem;
  background: var(--bg);
  font-size: 1.8rem;
  border-radius: 1rem;
}
.form .logos img {
  width: 10rem;
}
.form .logos {
  margin: 3rem 0;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form .btn {
  width: 100%;
  height: 6rem;
}
input::placeholder {
  color: white;
}
.condition {
  display: grid;
  grid-template-columns: 1fr 10fr;
  gap: 1rem;
  margin-top: 3rem;
}
.condition input {
  height: 2rem;
}
.condition p {
  font-size: 1.3rem;
}

/* privacy */
.paper {
  background: var(--gray);
  width: 100%;
  padding: 5rem;
  border-radius: 1rem;
}
.paper .title {
  font-size: 2.5rem;
  color: var(--green);
}
.policy {
  margin-top: 2rem;
}
.policy .des {
  font-size: 1.5rem;
  color: #bdbfd0;
}
.policy .des span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}
.mb {
  display: none;
}
.ttt {
  font-size: 2.5rem !important;
  margin-bottom: 3rem;
}
.unstall {
  width: 70%;
  margin-top: 5rem;
}
.flink {
  margin-top: 5rem;
}
.flink a {
  font-size: 1.3rem;
  color: white;
}
.unsubs {
  width: 60%;
  margin: auto;
  background: var(--gray);
  padding: 5rem;
  border-radius: 1rem;
}
.unsubs .btn {
  width: 100%;
}
.unsubs h3 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.form-hidden {
  display: none !important;
}

.payment-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2.5rem;
}
.row > div label {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.row3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  html {
    font-size: 45%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 40%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 57%;
  }
  header {
    background: var(--gray);
    height: 10vh;
    padding: 0;
  }
  .logo {
    width: 8rem;
  }
  header .btn {
    height: 4rem;
  }
  header .container-fluid {
    height: 100%;
  }
  header .nav {
    height: 100%;
  }
  .container-fluid {
    padding: 0 2rem;
  }
  .links {
    flex-direction: column;
    position: fixed;
    height: 90vh;
    left: 0;
    top: 10vh;
    width: 100%;
    background: #1f1d2cdc;
    backdrop-filter: blur(10px);
    justify-content: space-around;
    padding: 5rem 0;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .active {
    transform: translateX(0) !important;
  }
  .content .des {
    width: 100%;
  }
  .wraper,
  .steps,
  .grid-4,
  .gridd,
  .grid-2,
  .row {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 1rem;
    height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .card img {
    height: 5rem;
  }
  .sp {
    padding: 5rem 0;
  }
  .text h1 {
    text-align: center;
  }
  .text p {
    text-align: center;
  }
  .section-title {
    font-size: 3rem;
  }
  .t2 {
    font-size: 2rem;
  }
  .list p {
    font-size: 1.6rem;
  }
  .cta {
    width: 100%;
  }
  .menu {
    font-size: 3rem;
    display: inline-block;
  }
  .logins {
    gap: 1rem;
  }
  .banner-img img {
    width: 50%;
    display: block;
    margin: auto;
  }
  .banner-img {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 2rem;
  }
  .point,
  .point:nth-child(2),
  .point:nth-child(3),
  .point:nth-child(4),
  .point:nth-child(5),
  .point:nth-child(6),
  .point:nth-child(7) {
    position: unset;
    width: 100%;
  }
  .point i,
  .point span {
    font-size: 3rem;
  }
  .pont {
    font-size: 1.5rem !important;
  }
  .mb {
    display: block;
  }
  .flex {
    flex-direction: column;
    gap: 2rem;
  }
  .row {
    gap: 0;
  }
  .right {
    text-align: left;
  }
  .fix {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .flink {
    position: unset;
    height: unset;
    transform: unset;
    padding: 0;
  }
  .f1 {
    flex-direction: unset;
  }
  .paper {
    padding: 5rem 2rem;
  }
  .unstall {
    width: 100%;
  }
  .unsubs {
    width: 100%;
    padding: 3rem;
  }
  .unsubs h3 {
    font-size: 2.5rem;
  }
}
