:root {
  --primary-fonts: "Inter", sans-serif;
  --primary-gray: #d3d3d3;
  --inter-tight: "Inter Tight", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: black;
}
li {
  list-style-type: none;
}
.btn-outline {
  border: 1px solid gainsboro;
  padding: 6px 12px !important;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all ease-in-out 0.25s;
}
.btn-outline:hover {
  background-color: #eee;
  border: 1px solid gainsboro !important;
  border: none;
}
.btn-primary {
  border: 1px solid #f0abfc;
  background-color: #f5d0fe;
  padding: 6px 12px !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  font-family: var(--primary-fonts);
  transition: all ease-in-out 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  border: 1px solid #e879f9 !important;
  background-color: #f0abfc;
}
.btn-primary--large {
  font-size: 16px;
  padding: 8px 16px !important;
}
.btn-blue {
  border: 1px solid #93c5fd;
  background-color: #bfdbfe;
}
.btn-blue:hover {
  background-color: #93c5fd;
  border: 1px solid #60a5fa !important;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}
fieldset {
  border: none;
}
fieldset label {
  display: block;
  padding-bottom: 8px;
  font-size: 14px;
}
.input-primary {
  width: 100%;
  padding: 0.4em 0.8em;
  font-family: var(--primary-fonts);
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid gainsboro;
}
.input-primary:focus {
  outline-color: var(--primary-gray);
}
.section-title {
  font-size: 40px;
  font-family: var(--inter-tight);
  font-weight: 900;
}
.section-desc {
  margin-bottom: 8em;
  text-align: center;
}
.section-outline {
  font-size: 18px;
  font-weight: 600;
  margin-top: 14px;
}
section {
  margin: 14em 0;
}
body {
  font-family: var(--primary-fonts);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  align-items: center;
  margin: 24px auto;
  margin-bottom: 6rem;
}
.h-links {
  display: flex;
  gap: 44px;
}
.h-links li a {
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 4px;
}
.h-links li a:hover {
  border-bottom: 2px solid black;
}
.h-logo img {
  width: 60px;
}
.hero {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-text {
  width: 900px;
  text-align: center;
  margin-bottom: 4em;
}
.hero-text h1 {
  font-family: var(--inter-tight);
  font-weight: 900;
  font-size: 56px;
}
.hero-text p {
  margin: 28px 0;
  font-size: 24px;
  font-weight: 500;
}
.bg-anime {
  background: linear-gradient(
    -45deg,
    #67e8f9,
    #a5f3fc,
    #a5b4fc,
    #c7d2fe,
    #f5d0fe,
    #f0abfc
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 180px;
  width: 480px;
  position: absolute;
  top: 20%;
  left: 38%;
  z-index: -1;
  filter: blur(80px);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.quick-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 25px;
}
.card {
  width: max-content;
  padding: 1.4em;
  font-size: 18px;
  border-radius: 1.4em;
  width: 400px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border: 1px solid transparent;
  position: relative;
  border: 1px solid gainsboro;
}
.card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 1.4em;
  background: linear-gradient(45deg, #f5d0fe, #c7d2fe, #a5f3fc);
  filter: blur(5px);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
}
.card:hover::before {
  opacity: 1;
}
.card-footer {
  text-align: right;
}
.card-icon {
  margin-bottom: 14px;
}
.card-icon img {
  width: 32px;
}
.card-text h4 {
  margin-bottom: 8px;
}
.features {
  margin-bottom: 14rem;
}
.features-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-preview {
  width: 560px;
  background-color: #d3d3d3;
  height: 300px; /* Adjust based on your needs */
}
.features-list {
  width: 600px;
}
.features-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid gainsboro;
  margin: 14px;
}
.features-list li:last-of-type {
  border-bottom: none;
}
.features-list li div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.features-list li div:hover {
  cursor: pointer;
}
.features-list li h4 {
  font-size: 22px;
  font-weight: 500;
}
.features-list li p {
  font-size: 18px;
  margin-top: 12px;
}
.ft-reverse {
  flex-direction: row-reverse;
}
.features .section-desc {
  text-align: start;
  margin-bottom: 2.5em;
}
.features .section-title {
  font-size: 28px;
}
.features .section-outline {
  margin-top: 4px;
  font-weight: 500;
}
.api-showcase {
  display: flex;
  justify-content: space-between;
  padding: 1.4em;
  border-radius: 1.4em;
  border: 1px solid gainsboro;
}
.api-sh-media img {
  width: 600px;
}
.api-sh-text h1 {
  font-weight: 800;
  margin-bottom: 8px;
}
.api-sh-buttons {
  margin-top: 4em;
  display: flex;
  gap: 40px;
}
.api-sh-buttons a {
  display: block;
}
.question-banner {
  text-align: center;
  border-radius: 1.4em;
  padding: 2.5em 1.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(194, 173, 255, 0.8),
    rgba(226, 218, 255, 0.2)
  );
}
.question-banner h1 {
  font-weight: 800;
  font-size: 28px;
}
.question-banner p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 24px;
}
.email-box {
  background-color: black;
  color: white;
  width: max-content;
  padding: 0.8em 1.8em;
  border-radius: 0.4em;
  font-size: 18px;
}
footer {
  border-top: 1px solid gainsboro;
  padding: 4em 0;
  font-size: 14px;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
.ft-link-block {
  display: flex;
  gap: 80px;
}
.ft-links-wrapper ul li {
  margin: 1.4em 0;
}
.ft-links-wrapper ul li a {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 2.5px;
  transition: all ease 0.15s;
}
.ft-links-wrapper ul li a:hover {
  border-color: #4d4d4d;
}
.ft-logo {
  font-size: 24px;
  font-weight: 900;
}
.ft-social-icons {
  display: flex;
  align-items: center;
  gap: 4 px;
}
.ft-social-icons img {
  width: 36px;
}
.ft-social-icons img:first-child {
  width: 28px;
}
.ft-social-icons img:nth-child(2) {
  width: 32px;
}
.newsletter {
  margin-top: 4em;
}
.newsletter input {
  padding: 0.4em;
  border: 2px solid gainsboro;
  border-radius: 0.4em;
  font-size: 16px;
  font-family: var(--primary-fonts);
}
.newsletter button {
  padding: 0.5em;
  border: 2px solid black;
  border-radius: 0.4em;
  background-color: black;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}
.newsletter form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.accordion__item {
  border: 1px solid gainsboro;
  border-radius: 0.4em;
  overflow: hidden;
}
.accordion__header {
  padding: 1.2em;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
.accordion__header::after {
  content: "";
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat
    center;
  width: 20px;
  height: 20px;
  transition: 0.4s;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.accordion__header.active::after {
  transform: rotateX(180deg);
}
.accordion__content {
  padding: 0 1.4em;
  max-height: 0;
  transition: 0.5s;
}
.accordion__content p {
  padding-bottom: 20px !important;
}
.pre-header {
  text-align: center;
  padding: 0.8em;
  background-color: crimson;
  font-weight: 600;
  color: white;
}
.hero-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #eee;
  margin: 0 auto;
  width: 80%;
  border-radius: 1.4em;
}
.diff-controls {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.diff-options {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1.4em;
}
.img-comp-container {
  position: relative;
  height: 700px;
}
.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}
.img-comp-img img {
  display: block;
  width: 680px;
  vertical-align: middle;
  object-fit: cover;
  border-top-left-radius: 1.4em;
  border-bottom-left-radius: 1.4em;
}
.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  background-color: #2196f3;
  opacity: 0.7;
  border-radius: 50%;
}
.diff-imgs img {
  width: 120px;
  border-radius: 1.4em;
  object-fit: cover;
  height: 120px;
}
.diff-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  cursor: pointer;
}
.text-img {
  border: 2px solid gainsboro;
  border-radius: 1.4em;
  padding: 0.4em;
}
.text-img p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: violet;
}
input:focus + .slider {
  box-shadow: 0 0 1px violet;
}
input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.sw-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.sw-opt.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hero-text a {
  max-width: max-content;
  align-items: center;
  display: flex;
  gap: 6px;
  margin: 0 auto;
}
.hero-text a img {
  display: block;
  width: 16px;
  margin-bottom: -2px;
}
