@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: var(--sub);
}
:root {
  --primary: #000000;
  --sub: #707070;
}
[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%;
}
.container {
  max-width: 60rem;
  padding: 0 1.5rem;
  width: 100%;
  margin: auto;
}
.container-max {
  max-width: 95rem;
  padding: 0 1.5rem;
  width: 100%;
  margin: auto;
}
p,
a,
input,
select,
textarea,
button {
  font-size: 1.6rem;
  font-weight: 500;
}
p {
  color: var(--sub);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}
button {
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: 5rem;
  cursor: pointer;
}
a {
  width: fit-content;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
header .container {
  max-width: 100%;
  padding: 0 5rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo img {
  height: 3rem;
}
main {
  min-height: 100vh;
  padding-top: 15rem;
  padding-bottom: 10rem;
}
.text-block :is(h1, h2, h3, h4) {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--sub);
  margin-bottom: 5rem;
  letter-spacing: -1.3px;
}
.text-block :is(h1, h2, h3, h4) span {
  color: var(--primary);
}
.text-block p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
}

section {
  padding: 10rem 0;
}
section:nth-of-type(odd) {
  background: #f8f8f8;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mt-3 {
  margin-top: 3rem;
}
.grid-2 p {
  color: var(--primary);
}
.grid-2 p:last-child {
  color: var(--sub);
}
.card {
  border: 1px solid #00000038;
  border-radius: 1rem;
  overflow: hidden;
}
.card :is(.body, .header) {
  padding: 2rem;
}
.card .package :is(h3, span) {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}
.card .package {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.card .package span {
  color: var(--sub);
}
.card .header {
  display: grid;
  gap: 2rem;
}
.card .body {
  padding: 2rem;
  background: #f9f9f9;
}
.card .body p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 1rem;
}
.card .body svg {
  width: unset;
  height: 2.3rem;
}
.card p {
  color: var(--sub);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.card .body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.faq-wrap .question {
  padding: 1.5rem 0px;
  border-bottom: 1px solid #0000001a;
  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);
  position: relative;
  cursor: pointer;
  border-radius: 5rem;
}
.question p {
  color: var(--primary);
}
.ico span {
  position: absolute;
  width: 60%;
  height: 2px;
  background: white;
  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 p {
  font-weight: 400;
  line-height: 1.7;
}
.ans.show {
  max-height: 50rem;
  transition: max-height 0.3s ease-in 0s;
}
footer {
  text-align: center;
  padding: 3rem 0;
}
footer p {
  font-size: 1.5rem;
  font-weight: 400;
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #00000066;
  z-index: 9999;
}
.modal-content {
  background-color: transparent !important;
  width: 90%;
  max-width: 70rem;
  position: relative;
  height: fit-content;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2rem;
  overflow: hidden;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.close-btn svg {
  width: 100%;
  height: 100%;
}
iframe {
  height: 80vh;
}

@media (max-width: 660px) {
  header {
    background: white;
  }
  header .container {
    padding: 0 1.5rem;
  }
  main {
    height: fit-content;
    padding-bottom: 5rem;
    padding-top: 10rem;
  }
  .text-block :is(h1, h2, h3, h4) {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
  .text-block p {
    font-size: 1.6rem;
  }
  section {
    padding: 5rem 0;
  }
  .container-max .grid-2 {
    grid-template-columns: 1fr;
  }
  .faq-wrap .question p {
    font-size: 2rem;
  }
}
section:first-of-type {
  background: #f8f8f8;
}