/* Sticky footer styles
-------------------------------------------------- */
:root {
  --pico-font-family: "K2D", sans-serif;
}

html {
  position: relative;
  min-height: 100%;
  font-size: 16px;

  @media (min-width: 1024px) {
    font-size: 21px;
  }
}

body {
  font-family: "K2D", sans-serif !important;
}

.container {
  max-width: 910px;
  padding: 0 15px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

h1 {
  text-align: center;
  font-size: 52px;
}

h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
}

a {
  color: #000;
  transition: .3s color;
}

a:hover {
  text-decoration: none;
  color: #6BC754;
}

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

.btn {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 20px;
  background-color: #6BC754;
  border: 1px solid #6BC754;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: .3s background-color, .3s color;
  min-width: 290px;
}

.btn:hover {
  background-color: #fff;
  color: #6BC754;
}

.preview-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;

  @media(min-width: 768px) {
    grid-template-columns: 1fr 330px;
  }
}

.preview-section ul {
  margin: 0;
}

.color-box {
  box-shadow: 0px 0px 40px 0px #6BC75466;
  border-radius: 20px;
  padding: 20px 40px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.page-heading {
  text-align: center;
  margin-bottom: 70px;
}

details summary {
  padding: 10px 0;
}

table {
  border: 1px solid #CFD5E2;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
}

table thead tr:first-child th:first-child {
  border-top-left-radius: 20px;
}

table thead tr:first-child th:last-child {
  border-top-right-radius: 20px;
}

table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

table thead th {
  background: #646B79;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

table tbody td {
  text-align: center;
}

table tbody td:first-child {
  text-align: left;
}

table th,
table td {
  border: none;
  border-right: 1px solid #CFD5E2;
}

table th:last-child,
table td:last-child {
  border-right: none;
}

#faq {
  padding: 60px 0 30px;
}

label {
  color: #646B79;
  display: block;
}

input:not([type="checkbox"]):not([type="radio"]) {
  border-radius: 20px;
  border: 1px solid #CFD5E2;
  background-color: #FBFBFC;
  height: 56px;
  width: 100%;
  color: #646B79;
}

article {
  background: #646B79;
  color: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  position: relative;
}

article::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 14px;
  background-image: url("../images/tail.a7244360f7ec.svg");
  background-repeat: no-repeat;
}

article header {
  background: #646B79;
  display: flex;
  flex-direction: column-reverse;
  border: none;
  margin: 0;
  padding: 0;

  @media(min-width: 768px) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

article p {
  color: inherit;
  margin: 0;
}

.helptext {
  margin-bottom: 10px;
}

nav {
  align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 !important;
}

.menu li {
  padding: 0;
  display: block;
}

.menu li a {
  padding: 0;
  display: block;
  margin: 0;
}

.menu li::before {
  content: none;
}