@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--primary-text);
}

:root {
  --primary: #2E8C26;
  --primary-2: #2CCA22;
  --denger: #DE3232;
  --denger-text: #dc2626;
  --red-bg: #fff2f2;
  --primary-text: #1B1C1C;
  --bg: #F6F6F6;
  --sub-text: #3c4646;
  --border: 1px solid #e8eaeb;
}

[class*="grid"] {
  display: grid;
}

.align-center {
  align-items: center;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

i svg {
  width: unset;
  height: 1.8rem;
  fill: white;
}

p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 400;
}

p {
  color: var(--sub-text);
}

h1,
h2,
h3 {
  text-transform: capitalize;
}

img,
video {
  max-width: 100%;
}

.container {
  max-width: 1240px;
  padding: 0 2rem;
  margin: auto;
  width: 100%;
}

.container-max {
  max-width: 1540px;
  padding: 0 2rem;
  margin: auto;
  width: 100%;
}

button,
.btn {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 1rem;
  background: var(--primary-text);
  color: white;
  border-radius: 0.5rem;
  text-transform: capitalize;
  line-height: 1;
  transition: 0.3s;
}

button:hover {
  background: var(--primary);
  border-color: transparent;
}

section {
  padding: 8rem 0;
}

/* header section */
header {
  height: 8rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background: transparent;
  transition: 0.3s;
}

header.sticky {
  background: white;
  transition: 0.3s;
  border: unset;
}

.logo img {
  height: 3rem;
}

header .container {
  height: 100%;
  max-width: 100%;
  padding: 0 5rem;
}

header .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

header .links a {
  transition: 0.3s;
  font-weight: 600;
}

header .links a:hover {
  color: var(--primary);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.menu {
  font-size: 3rem;
  display: none;
}

main {
  background: white;
  /* height: 80rem; */
  width: calc(100% - 5rem);
  margin: auto;
  margin-top: 8rem;
  border-radius: 2rem;
  padding-top: 5rem;
  padding-bottom: 0;
  overflow: hidden;
  text-align: center;
  position: relative;
}

main .glow {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 70%;
  pointer-events: none;
  user-select: none;
  /* opacity: 0.5; */
}

main .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 5rem;
  height: 100%;
  position: relative;
  z-index: 2;
}

main .frame {
  max-width: 70rem;
  width: 100%;
  margin: auto;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
  margin-bottom: -1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

main .title {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  max-width: 80rem;
}

main .title h1 {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 600;
}

main .title span {
  color: var(--primary-2);
}

.trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.trusted .stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trusted .stars i {
  color: var(--primary-2);
  font-size: 1.8rem;
}

.trusted p {
  font-size: 1.4rem;
  color: var(--primary-text);
  font-weight: 500;
  line-height: 1;
}

.tag {
  padding: 0.5rem 1.5rem;
  border-radius: 5rem;
  border: 1px solid var(--primary);
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  background: white;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  max-width: 80rem;
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 5rem;
}

.title h2 {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 600;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  border-radius: 2rem;
  overflow: hidden;
  background: white;
  border: var(--border);
}

.card .frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: var(--border);
}

.card .body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card h3 {
  font-size: 2.3rem;
  font-weight: 600;
}

.card .frame img {
  width: unset;
  height: 80%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.list i {
  font-size: 2rem;
}

.list.denger i {
  color: var(--denger);
}

.list.list.denger p {
  color: var(--denger-text);
  font-weight: 500;
}

.list.safe i {
  color: var(--primary-2);
}

.list.list.safe p {
  color: var(--primary);
  font-weight: 500;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

section.bg {
  background: white;
}

.card-2 {
  background: var(--primary-text);
  padding: 3rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.card-2 h3 {
  color: white;
  font-size: 2.3rem;
  font-weight: 600;
}

.ico {
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-2);
  box-shadow: 0 10px 50px -10px #2CCA22;
}

.ico i {
  font-size: 2.5rem;
  color: white;
}

.card-2 p {
  color: #ffffff8c;
}

.card-2::before {
  content: "";
  width: 20rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary-2);
  position: absolute;
  right: -10rem;
  top: -10rem;
  filter: blur(130px);
  pointer-events: none;
  user-select: none;
}


/* flow card */
.card-3 {
  background: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: #959da533 0px 8px 24px;
}

.card-3::before {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1 / 1;
  background: var(--primary);
  border-radius: 50%;
  border: 0.5rem solid white;
  left: 50%;
  transform: translateX(-50%);
}

.card-3 h3 {
  font-size: 2rem;
  font-weight: 700;
}

.card-3 .body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flow-card {
  position: relative;
  height: 40rem;
}

.flow-card .line {
  position: absolute;
  left: 0px;
  top: 0px;
}

.flow-card .card-3:nth-child(1) {
  top: 5rem;
}

.flow-card .card-3:nth-child(2) {
  top: 18rem;
}

.flow-card .card-3:nth-child(3) {
  top: 5.5rem;
}

.flow-card .card-3:nth-child(1)::before {
  top: -5.2rem;
}

.flow-card .card-3:nth-child(2)::before {
  top: -5.5rem;
}

.flow-card .card-3:nth-child(3)::before {
  bottom: -5rem;
}

/* faq */
.faq-wrap {
  max-width: 80rem;
  width: 100%;
  margin: auto;
  margin-top: 5rem;
}

.faq-wrap .question {
  padding: 1.5rem 0px;
  border-bottom: var(--border);
  display: grid;
  align-items: center;
  margin: 1.5rem 0px;
  cursor: pointer;
  grid-template-columns: 1fr auto;
}

.faq-wrap .question p {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  user-select: none;
}

.question .ico {
  width: 3rem;
  aspect-ratio: 1 / 1;
  background: var(--primary-text);
  position: relative;
  cursor: pointer;
  border-radius: 5rem;
}


.ico span {
  position: absolute;
  width: 60%;
  height: 2px;
  background: var(--primary-2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ico span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease 0s;
}

.ico.open span:last-child {
  transform: translate(-50%, -50%);
}

.ans {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease-out 0s;
}

.ans.show {
  max-height: 50rem;
  transition: max-height 0.3s ease-in 0s;
}

.cta-box {
  background: var(--primary-text);
  position: relative;
  max-width: 80rem;
  border-radius: 2rem;
  margin: auto;
  padding: 5rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-box .bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  pointer-events: none;
  user-select: none;
}

.cta-box h2 {
  font-size: 5rem;
  color: white;
  font-weight: 600;
}

.cta-box p {
  color: white;
}

.cta-box button {
  background: var(--primary);
  width: fit-content;
  margin: auto;
}

.cta-box .logo img {
  height: 6rem;
  width: unset;
}

.solutions .card .frame {
  background: var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.statics {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
}

.statics .static {
  border-right: var(--border);
  padding: 0 4rem;
}

.statics .static:last-child {
  border: unset;
}

.statics h2 {
  font-size: 5rem;
  color: var(--primary-2);
}

.statics p {
  color: var(--primary-text);
  font-weight: 600;
}

.ways .card .idintity {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 2rem;
}

.ways .card.old .ico {
  background: #ffd8d8;
  box-shadow: unset;
}

.ways .card.old .ico i {
  color: var(--denger-text);
}

.ways .card.new .ico i {
  color: var(--primary);
}

.ways .card.new .ico {
  background: #d8ffd9;
  box-shadow: unset;
}

.ways .card.new .frame {
  justify-content: flex-end;
}

.ways .card.new {
  border-color: var(--primary-2);
}

.ways .card.old {
  border-color: var(--denger-text);
}

.grid-2 .card .body {
  padding: 3rem;
}

.brand-slider img {
  width: unset;
  height: 5rem;
  margin: 0 5rem;
  filter: grayscale(1);
  opacity: 0.5;
}

section.p-1 {
  padding: 3rem 0;
}

/* footer */
footer {
  padding: 5rem 0;
  padding-bottom: 0;
  background: white;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
}

.link,
.contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.link h2,
.contact h2 {
  font-size: 2rem;
}

.link a,
.contact a {
  font-weight: 500;
}

footer p {
  font-size: 1.5rem;
}

footer p {
  margin: 2rem 0;
}

footer .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social i {
  font-size: 2.5rem;
  width: 5rem;
  aspect-ratio: 1/1;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.copy {
  padding: 2rem;
  text-align: center;
  margin-top: 5rem;
  font-size: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.046);
}

section a,
footer a {
  width: fit-content !important;
}

footer .logo img {
  height: 3rem;
}

@media (max-width: 1024px) {
  html {
    font-size: 45%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 40%;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 62%;
  }

  header {
    box-shadow: #959da533 0px 8px 24px;
  }

  /* nav bar */
  header .container {
    padding: 0 1.5rem;
  }

  .menu {
    display: block;
  }

  .menu {
    height: 2.5rem;
    width: 3.5rem;
    cursor: pointer;
  }

  .menu span:nth-child(1),
  .menu span:nth-child(1)::before,
  .menu span:nth-child(1)::after {
    background: var(--primary-text);
    content: "";
    position: absolute;
    width: 3.5rem;
    height: 3px;
    border-radius: 1rem;
    margin-top: 13px;

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .menu span:nth-child(1)::before {
    margin-top: -12px;
    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
  }

  .menu span:nth-child(1)::after {
    margin-top: 12px;

    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;
  }

  .menu span:nth-child(2) {
    background: var(--primary-text);
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    margin-top: 13px;
    border-radius: 1rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .menu.active span:nth-child(1)::before,
  .menu.active span:nth-child(1)::after {
    margin-top: 0;
  }

  .menu.active span:nth-child(1) {
    -webkit-transition: 0.3s ease-in-out 0.3s;
    -moz-transition: 0.3s ease-in-out 0.3s;
    -o-transition: 0.3s ease-in-out 0.3s;
    transition: 0.3s ease-in-out 0.3s;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu.active span:nth-child(2) {
    width: 3.5rem;
    -webkit-transition: 0.3s ease-in-out 0.5s;
    -moz-transition: 0.3s ease-in-out 0.5s;
    -o-transition: 0.3s ease-in-out 0.5s;
    transition: 0.3s ease-in-out 0.5s;
  }

  header {
    background: white;
  }

  header .links {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: calc(100vh - 8rem);
    position: fixed;
    top: 8rem;
    background: var(--bg);
    backdrop-filter: blur(15px);
    width: 100%;
    padding: 5rem 0;
    left: 0px;
    transition: 0.5s;
    transform: translateX(100%);
  }

  .active {
    transform: translateX(0%) !important;
  }

  header .links a {
    color: var(--primary-text);
  }

  [class*="grid"] {
    grid-template-columns: 1fr;
  }

  .flow-card {
    height: unset;
  }

  .flow-card .line {
    display: none;
  }

  .flow-card .card-3 {
    position: static;
  }

  .flow-card .card-3::before {
    display: none;
  }

  .cta-box h2 {
    font-size: 3rem;
  }

  .cta-box {
    padding: 3rem;
  }

  main .title h1 {
    font-size: 3rem;
  }

  .title h2 {
    font-size: 3rem;
  }

  .statics {
    flex-direction: column;
  }

  .statics .static {
    padding: 3rem 0rem;
    border-right: unset;
    border-bottom: var(--border);
    width: 100%;
  }

  .statics h2 {
    font-size: 3rem;
  }

  .brand-slider img {
    height: 3rem;
    margin: 0 1.5rem;
  }

  main {
    width: 100%;
    border-radius: unset;
  }

  .faq-wrap .question p {
    font-size: 1.8rem;
  }

  /* footer */
  footer .container {
    grid-template-columns: 1fr;
  }
}